From 747a0817f3db19c50869bc16b21944f50650400a Mon Sep 17 00:00:00 2001 From: Marius Stanciu Date: Wed, 1 May 2019 16:04:40 +0300 Subject: [PATCH] - made some mods to what can be translated as some of the translations interfered with the correct functioning of FlatCAM - updated the translations --- FlatCAMApp.py | 8 +- FlatCAMObj.py | 22 +- README.md | 2 + flatcamEditors/FlatCAMExcEditor.py | 2 +- flatcamEditors/FlatCAMGeoEditor.py | 6 +- flatcamEditors/FlatCAMGrbEditor.py | 2 +- flatcamGUI/FlatCAMGUI.py | 84 +- flatcamGUI/ObjectUI.py | 20 +- locale/de/LC_MESSAGES/strings.mo | Bin 290746 -> 293793 bytes locale/de/LC_MESSAGES/strings.po | 2863 ++++++++++++----------- locale/en/LC_MESSAGES/strings.mo | Bin 271106 -> 274041 bytes locale/en/LC_MESSAGES/strings.po | 3431 ++++++++++++---------------- locale/ro/LC_MESSAGES/strings.mo | Bin 289012 -> 292018 bytes locale/ro/LC_MESSAGES/strings.po | 2964 ++++++++++++------------ locale_template/strings.pot | 2696 +++++++++++----------- 15 files changed, 5992 insertions(+), 6108 deletions(-) diff --git a/FlatCAMApp.py b/FlatCAMApp.py index 833476e6..b8fd7393 100644 --- a/FlatCAMApp.py +++ b/FlatCAMApp.py @@ -5056,8 +5056,8 @@ class App(QtCore.QObject): action.triggered.connect(self.set_grid) self.ui.cmenu_gridmenu.addSeparator() - grid_add = self.ui.cmenu_gridmenu.addAction(QtGui.QIcon('share/plus32.png'), "Add") - grid_delete = self.ui.cmenu_gridmenu.addAction(QtGui.QIcon('share/delete32.png'), "Delete") + grid_add = self.ui.cmenu_gridmenu.addAction(QtGui.QIcon('share/plus32.png'), _("Add")) + grid_delete = self.ui.cmenu_gridmenu.addAction(QtGui.QIcon('share/delete32.png'), _("Delete")) grid_add.triggered.connect(self.on_grid_add) grid_delete.triggered.connect(self.on_grid_delete) @@ -5069,8 +5069,8 @@ class App(QtCore.QObject): ## Current application units in lower Case units = self.ui.general_defaults_form.general_app_group.units_radio.get_value().lower() - grid_add_popup = FCInputDialog(title="New Grid ...", - text='Enter a Grid VAlue:', + grid_add_popup = FCInputDialog(title=_("New Grid ..."), + text=_('Enter a Grid Value:'), min=0.0000, max=99.9999, decimals=4) grid_add_popup.setWindowIcon(QtGui.QIcon('share/plus32.png')) diff --git a/FlatCAMObj.py b/FlatCAMObj.py index b3196ef8..e2e7bb3f 100644 --- a/FlatCAMObj.py +++ b/FlatCAMObj.py @@ -2724,7 +2724,7 @@ class FlatCAMGeometry(FlatCAMObj, Geometry): # those elements are the ones used for generating GCode self.sel_tools = {} - self.offset_item_options = [_("Path"), _("In"), _("Out"), _("Custom")] + self.offset_item_options = ["Path", "In", "Out", "Custom"] self.type_item_options = [_("Iso"), _("Rough"), _("Finish")] self.tool_type_item_options = ["C1", "C2", "C3", "C4", "B", "V"] @@ -2966,7 +2966,7 @@ class FlatCAMGeometry(FlatCAMObj, Geometry): self.tools.update({ self.tooluid: { 'tooldia': float(self.options["cnctooldia"]), - 'offset': _('Path'), + 'offset': ('Path'), 'offset_value': 0.0, 'type': _('Rough'), 'tool_type': 'C1', @@ -3048,7 +3048,7 @@ class FlatCAMGeometry(FlatCAMObj, Geometry): tool_offset = self.ui.geo_tools_table.cellWidget(current_row, 2) if tool_offset is not None: tool_offset_txt = tool_offset.currentText() - if tool_offset_txt == _('Custom'): + if tool_offset_txt == ('Custom'): self.ui.tool_offset_entry.show() self.ui.tool_offset_lbl.show() else: @@ -3253,7 +3253,7 @@ class FlatCAMGeometry(FlatCAMObj, Geometry): self.tools.update({ self.tooluid: { 'tooldia': tooldia, - 'offset': _('Path'), + 'offset': ('Path'), 'offset_value': 0.0, 'type': _('Rough'), 'tool_type': 'C1', @@ -3622,7 +3622,7 @@ class FlatCAMGeometry(FlatCAMObj, Geometry): cb_txt = cw.currentText() if cw_col == 2: tooluid_value['offset'] = cb_txt - if cb_txt == _('Custom'): + if cb_txt == ('Custom'): self.ui.tool_offset_entry.show() self.ui.tool_offset_lbl.show() else: @@ -4095,13 +4095,13 @@ class FlatCAMGeometry(FlatCAMObj, Geometry): diadict_key: datadict }) - if dia_cnc_dict['offset'] == 'in': + if dia_cnc_dict['offset'] == ('in'): tool_offset = -dia_cnc_dict['tooldia'] / 2 offset_str = 'inside' - elif dia_cnc_dict['offset'].lower() == 'out': + elif dia_cnc_dict['offset'].lower() == ('out'): tool_offset = dia_cnc_dict['tooldia'] / 2 offset_str = 'outside' - elif dia_cnc_dict['offset'].lower() == 'path': + elif dia_cnc_dict['offset'].lower() == ('path'): offset_str = 'onpath' tool_offset = 0.0 else: @@ -4328,13 +4328,13 @@ class FlatCAMGeometry(FlatCAMObj, Geometry): diadict_key: datadict }) - if dia_cnc_dict['offset'] == 'in': + if dia_cnc_dict['offset'] == ('in'): tool_offset = -dia_cnc_dict['tooldia'] / 2 offset_str = 'inside' - elif dia_cnc_dict['offset'].lower() == 'out': + elif dia_cnc_dict['offset'].lower() == ('out'): tool_offset = dia_cnc_dict['tooldia'] / 2 offset_str = 'outside' - elif dia_cnc_dict['offset'].lower() == 'path': + elif dia_cnc_dict['offset'].lower() == ('path'): offset_str = 'onpath' tool_offset = 0.0 else: diff --git a/README.md b/README.md index 8b64f1c7..454961bc 100644 --- a/README.md +++ b/README.md @@ -16,6 +16,8 @@ CAD program, and create G-Code for Isolation routing. - Enable/Disable Object toggle key ("Space" key) will trigger also the datChanged signal for the Project MVC - added a new setting for the color of the Project items, the color when they are disabled. - fixed a crash when triggering 'Jump To' menu action (shortcut key 'J' worked ok) +- made some mods to what can be translated as some of the translations interfered with the correct functioning of FlatCAM +- updated the translations 30.04.2019 diff --git a/flatcamEditors/FlatCAMExcEditor.py b/flatcamEditors/FlatCAMExcEditor.py index c4541151..cd248a78 100644 --- a/flatcamEditors/FlatCAMExcEditor.py +++ b/flatcamEditors/FlatCAMExcEditor.py @@ -931,7 +931,7 @@ class FlatCAMExcEditor(QtCore.QObject): self.drill_axis_radio = RadioSet([{'label': 'X', 'value': 'X'}, {'label': 'Y', 'value': 'Y'}, - {'label': _('Angle'), 'value': 'A'}]) + {'label': 'Angle', 'value': 'A'}]) self.drill_axis_radio.set_value('X') self.linear_form.addRow(self.drill_axis_label, self.drill_axis_radio) diff --git a/flatcamEditors/FlatCAMGeoEditor.py b/flatcamEditors/FlatCAMGeoEditor.py index 3d3467ce..933e5b93 100644 --- a/flatcamEditors/FlatCAMGeoEditor.py +++ b/flatcamEditors/FlatCAMGeoEditor.py @@ -475,9 +475,9 @@ class PaintOptionsTool(FlatCAMTool): ) grid.addWidget(methodlabel, 3, 0) self.paintmethod_combo = RadioSet([ - {"label": _("Standard"), "value": "standard"}, - {"label": _("Seed-based"), "value": "seed"}, - {"label": _("Straight lines"), "value": "lines"} + {"label": "Standard", "value": "standard"}, + {"label": "Seed-based", "value": "seed"}, + {"label": "Straight lines", "value": "lines"} ], orientation='vertical', stretch=False) grid.addWidget(self.paintmethod_combo, 3, 1) diff --git a/flatcamEditors/FlatCAMGrbEditor.py b/flatcamEditors/FlatCAMGrbEditor.py index 4c1d3e99..37c1222f 100644 --- a/flatcamEditors/FlatCAMGrbEditor.py +++ b/flatcamEditors/FlatCAMGrbEditor.py @@ -1983,7 +1983,7 @@ class FlatCAMGrbEditor(QtCore.QObject): self.pad_axis_radio = RadioSet([{'label': 'X', 'value': 'X'}, {'label': 'Y', 'value': 'Y'}, - {'label': _('Angle'), 'value': 'A'}]) + {'label': 'Angle', 'value': 'A'}]) self.pad_axis_radio.set_value('X') self.linear_form.addRow(self.pad_axis_label, self.pad_axis_radio) diff --git a/flatcamGUI/FlatCAMGUI.py b/flatcamGUI/FlatCAMGUI.py index c3d3458b..92b96780 100644 --- a/flatcamGUI/FlatCAMGUI.py +++ b/flatcamGUI/FlatCAMGUI.py @@ -3734,8 +3734,8 @@ class GeneralAppPrefGroupUI(OptionsGroupUI): "ADVANCED level -> full functionality.\n\n" "The choice here will influence the parameters in\n" "the Selected Tab for all kinds of FlatCAM objects.")) - self.app_level_radio = RadioSet([{'label': _('Basic'), 'value': 'b'}, - {'label': _('Advanced'), 'value': 'a'}]) + self.app_level_radio = RadioSet([{'label': 'Basic', 'value': 'b'}, + {'label': 'Advanced', 'value': 'a'}]) # Languages for FlatCAM self.languagelabel = QtWidgets.QLabel(_('Languages:')) @@ -3794,14 +3794,14 @@ class GeneralAppPrefGroupUI(OptionsGroupUI): self.panbuttonlabel.setToolTip(_("Select the mouse button to use for panning:\n" "- MMB --> Middle Mouse Button\n" "- RMB --> Right Mouse Button")) - self.pan_button_radio = RadioSet([{'label': _('MMB'), 'value': '3'}, - {'label': _('RMB'), 'value': '2'}]) + self.pan_button_radio = RadioSet([{'label': 'MMB', 'value': '3'}, + {'label': 'RMB', 'value': '2'}]) # Multiple Selection Modifier Key self.mselectlabel = QtWidgets.QLabel(_('Multiple Sel:')) self.mselectlabel.setToolTip(_("Select the key used for multiple selection.")) - self.mselect_radio = RadioSet([{'label': _('CTRL'), 'value': 'Control'}, - {'label': _('SHIFT'), 'value': 'Shift'}]) + self.mselect_radio = RadioSet([{'label': 'CTRL', 'value': 'Control'}, + {'label': 'SHIFT', 'value': 'Shift'}]) # Project at StartUp CB self.project_startup_label = QtWidgets.QLabel(_('Project at StartUp:')) @@ -4029,8 +4029,8 @@ class GerberOptPrefGroupUI(OptionsGroupUI): "- conventional / useful when there is no backlash compensation") ) grid0.addWidget(milling_type_label, 3, 0) - self.milling_type_radio = RadioSet([{'label': _('Climb'), 'value': 'cl'}, - {'label': _('Conv.'), 'value': 'cv'}]) + self.milling_type_radio = RadioSet([{'label': 'Climb', 'value': 'cl'}, + {'label': 'Conv.', 'value': 'cv'}]) grid0.addWidget(self.milling_type_radio, 3, 1) # Combine passes @@ -4298,8 +4298,8 @@ class ExcellonGenPrefGroupUI(OptionsGroupUI): ) hlay3.addWidget(self.excellon_zeros_label) - self.excellon_zeros_radio = RadioSet([{'label': _('LZ'), 'value': 'L'}, - {'label': _('TZ'), 'value': 'T'}]) + self.excellon_zeros_radio = RadioSet([{'label': 'LZ', 'value': 'L'}, + {'label': 'TZ', 'value': 'T'}]) self.excellon_zeros_radio.setToolTip( _("This sets the default type of Excellon zeros.\n" "If it is not detected in the parsed file the value here\n" @@ -4326,8 +4326,8 @@ class ExcellonGenPrefGroupUI(OptionsGroupUI): ) hlay4.addWidget(self.excellon_units_label) - self.excellon_units_radio = RadioSet([{'label': _('INCH'), 'value': 'INCH'}, - {'label': _('MM'), 'value': 'METRIC'}]) + self.excellon_units_radio = RadioSet([{'label': 'INCH', 'value': 'INCH'}, + {'label': 'MM', 'value': 'METRIC'}]) self.excellon_units_radio.setToolTip( _("This sets the units of Excellon files.\n" "Some Excellon files don't have an header\n" @@ -4365,8 +4365,8 @@ class ExcellonGenPrefGroupUI(OptionsGroupUI): "Travelling Salesman algorithm for path optimization.") ) - self.excellon_optimization_radio = RadioSet([{'label': _('MH'), 'value': 'M'}, - {'label': _('Basic'), 'value': 'B'}]) + self.excellon_optimization_radio = RadioSet([{'label': 'MH', 'value': 'M'}, + {'label': 'Basic', 'value': 'B'}]) self.excellon_optimization_radio.setToolTip( _("This sets the optimization type for the Excellon drill path.\n" "If MH is checked then Google OR-Tools algorithm with MetaHeuristic\n" @@ -4531,9 +4531,9 @@ class ExcellonOptPrefGroupUI(OptionsGroupUI): "When choosing 'Slots' or 'Both', slots will be\n" "converted to drills.") ) - self.excellon_gcode_type_radio = RadioSet([{'label': _('Drills'), 'value': 'drills'}, - {'label': _('Slots'), 'value': 'slots'}, - {'label': _('Both'), 'value': 'both'}]) + self.excellon_gcode_type_radio = RadioSet([{'label': 'Drills', 'value': 'drills'}, + {'label': 'Slots', 'value': 'slots'}, + {'label': 'Both', 'value': 'both'}]) grid2.addWidget(excellon_gcode_type_label, 9, 0) grid2.addWidget(self.excellon_gcode_type_radio, 9, 1) @@ -4717,8 +4717,8 @@ class ExcellonExpPrefGroupUI(OptionsGroupUI): _("The units used in the Excellon file.") ) - self.excellon_units_radio = RadioSet([{'label': _('INCH'), 'value': 'INCH'}, - {'label': _('MM'), 'value': 'METRIC'}]) + self.excellon_units_radio = RadioSet([{'label': 'INCH', 'value': 'INCH'}, + {'label': 'MM', 'value': 'METRIC'}]) self.excellon_units_radio.setToolTip( _("The units used in the Excellon file.") ) @@ -4773,8 +4773,8 @@ class ExcellonExpPrefGroupUI(OptionsGroupUI): "Also it will have to be specified if LZ = leading zeros are kept\n" "or TZ = trailing zeros are kept.") ) - self.format_radio = RadioSet([{'label': _('Decimal'), 'value': 'dec'}, - {'label': _('No-Decimal'), 'value': 'ndec'}]) + self.format_radio = RadioSet([{'label': 'Decimal', 'value': 'dec'}, + {'label': 'No-Decimal', 'value': 'ndec'}]) self.format_radio.setToolTip( _("Select the kind of coordinates format used.\n" "Coordinates can be saved with decimal point or without.\n" @@ -4797,8 +4797,8 @@ class ExcellonExpPrefGroupUI(OptionsGroupUI): "and Leading Zeros are removed.") ) - self.zeros_radio = RadioSet([{'label': _('LZ'), 'value': 'LZ'}, - {'label': _('TZ'), 'value': 'TZ'}]) + self.zeros_radio = RadioSet([{'label': 'LZ', 'value': 'LZ'}, + {'label': 'TZ', 'value': 'TZ'}]) self.zeros_radio.setToolTip( _("This sets the default type of Excellon zeros.\n" "If LZ then Leading Zeros are kept and\n" @@ -5179,9 +5179,9 @@ class CNCJobGenPrefGroupUI(OptionsGroupUI): ) self.cncplot_method_radio = RadioSet([ - {"label": _("All"), "value": "all"}, - {"label": _("Travel"), "value": "travel"}, - {"label": _("Cut"), "value": "cut"} + {"label": "All", "value": "all"}, + {"label": "Travel", "value": "travel"}, + {"label": "Cut", "value": "cut"} ], stretch=False) grid0.addWidget(self.cncplot_method_label, 1, 0) @@ -5415,9 +5415,9 @@ class ToolsNCCPrefGroupUI(OptionsGroupUI): ) grid0.addWidget(methodlabel, 3, 0) self.ncc_method_radio = RadioSet([ - {"label": _("Standard"), "value": "standard"}, - {"label": _("Seed-based"), "value": "seed"}, - {"label": _("Straight lines"), "value": "lines"} + {"label": "Standard", "value": "standard"}, + {"label": "Seed-based", "value": "seed"}, + {"label": "Straight lines", "value": "lines"} ], orientation='vertical', stretch=False) grid0.addWidget(self.ncc_method_radio, 3, 1) @@ -5564,8 +5564,8 @@ class Tools2sidedPrefGroupUI(OptionsGroupUI): grid0.addWidget(self.drill_dia_entry, 0, 1) ## Axis - self.mirror_axis_radio = RadioSet([{'label': _('X'), 'value': 'X'}, - {'label': _('Y'), 'value': 'Y'}]) + self.mirror_axis_radio = RadioSet([{'label': 'X', 'value': 'X'}, + {'label': 'Y', 'value': 'Y'}]) self.mirax_label = QtWidgets.QLabel(_("Mirror Axis:")) self.mirax_label.setToolTip( _("Mirror vertically (X) or horizontally (Y).") @@ -5577,8 +5577,8 @@ class Tools2sidedPrefGroupUI(OptionsGroupUI): grid0.addWidget(self.mirror_axis_radio, 2, 1) ## Axis Location - self.axis_location_radio = RadioSet([{'label': _('Point'), 'value': 'point'}, - {'label': _('Box'), 'value': 'box'}]) + self.axis_location_radio = RadioSet([{'label': 'Point', 'value': 'point'}, + {'label': 'Box', 'value': 'box'}]) self.axloc_label = QtWidgets.QLabel(_("Axis Ref:")) self.axloc_label.setToolTip( _("The axis should pass through a point or cut\n " @@ -5655,9 +5655,9 @@ class ToolsPaintPrefGroupUI(OptionsGroupUI): ) grid0.addWidget(methodlabel, 3, 0) self.paintmethod_combo = RadioSet([ - {"label": _("Standard"), "value": "standard"}, - {"label": _("Seed-based"), "value": "seed"}, - {"label": _("Straight lines"), "value": "lines"} + {"label": "Standard", "value": "standard"}, + {"label": "Seed-based", "value": "seed"}, + {"label": "Straight lines", "value": "lines"} ], orientation='vertical', stretch=False) grid0.addWidget(self.paintmethod_combo, 3, 1) @@ -5688,8 +5688,8 @@ class ToolsPaintPrefGroupUI(OptionsGroupUI): ) grid0.addWidget(selectlabel, 6, 0) self.selectmethod_combo = RadioSet([ - {"label": _("Single"), "value": "single"}, - {"label": _("All"), "value": "all"}, + {"label": "Single", "value": "single"}, + {"label": "All", "value": "all"}, # {"label": "Rectangle", "value": "rectangle"} ]) grid0.addWidget(self.selectmethod_combo, 6, 1) @@ -5716,8 +5716,8 @@ class ToolsFilmPrefGroupUI(OptionsGroupUI): grid0 = QtWidgets.QGridLayout() self.layout.addLayout(grid0) - self.film_type_radio = RadioSet([{'label': _('Pos'), 'value': 'pos'}, - {'label': _('Neg'), 'value': 'neg'}]) + self.film_type_radio = RadioSet([{'label': 'Pos', 'value': 'pos'}, + {'label': 'Neg', 'value': 'neg'}]) ftypelbl = QtWidgets.QLabel(_('Film Type:')) ftypelbl.setToolTip( _("Generate a Positive black film or a Negative film.\n" @@ -5816,8 +5816,8 @@ class ToolsPanelizePrefGroupUI(OptionsGroupUI): grid0.addWidget(self.prows, 3, 1) ## Type of resulting Panel object - self.panel_type_radio = RadioSet([{'label': _('Gerber'), 'value': 'gerber'}, - {'label': _('Geo'), 'value': 'geometry'}]) + self.panel_type_radio = RadioSet([{'label': 'Gerber', 'value': 'gerber'}, + {'label': 'Geo', 'value': 'geometry'}]) self.panel_type_label = QtWidgets.QLabel(_("Panel Type:")) self.panel_type_label.setToolTip( _( "Choose the type of object for the panel object:\n" diff --git a/flatcamGUI/ObjectUI.py b/flatcamGUI/ObjectUI.py index d5cbac25..4bf18386 100644 --- a/flatcamGUI/ObjectUI.py +++ b/flatcamGUI/ObjectUI.py @@ -153,7 +153,7 @@ class GerberObjectUI(ObjectUI): grid0.addWidget(self.plot_options_label, 0, 0) # Solid CB - self.solid_cb = FCCheckBox(label=_('Solid ')) + self.solid_cb = FCCheckBox(label=_('Solid')) self.solid_cb.setToolTip( _("Solid color polygons.") ) @@ -161,7 +161,7 @@ class GerberObjectUI(ObjectUI): grid0.addWidget(self.solid_cb, 0, 1) # Multicolored CB - self.multicolored_cb = FCCheckBox(label=_('M-Color ')) + self.multicolored_cb = FCCheckBox(label=_('M-Color')) self.multicolored_cb.setToolTip( _("Draw polygons in different colors.") ) @@ -299,8 +299,8 @@ class GerberObjectUI(ObjectUI): "- conventional / useful when there is no backlash compensation") ) grid1.addWidget(self.milling_type_label, 3, 0) - self.milling_type_radio = RadioSet([{'label': _('Climb'), 'value': 'cl'}, - {'label': _('Conv.'), 'value': 'cv'}]) + self.milling_type_radio = RadioSet([{'label': 'Climb', 'value': 'cl'}, + {'label': 'Conv.', 'value': 'cv'}]) grid1.addWidget(self.milling_type_radio, 3, 1) # combine all passes CB @@ -749,9 +749,9 @@ class ExcellonObjectUI(ObjectUI): "When choosing 'Slots' or 'Both', slots will be\n" "converted to a series of drills.") ) - self.excellon_gcode_type_radio = RadioSet([{'label': _('Drills'), 'value': 'drills'}, - {'label': _('Slots'), 'value': 'slots'}, - {'label': _('Both'), 'value': 'both'}]) + self.excellon_gcode_type_radio = RadioSet([{'label': 'Drills', 'value': 'drills'}, + {'label': 'Slots', 'value': 'slots'}, + {'label': 'Both', 'value': 'both'}]) gcode_box.addRow(gcode_type_label, self.excellon_gcode_type_radio) self.tools_box.addLayout(gcode_box) @@ -1355,9 +1355,9 @@ class CNCObjectUI(ObjectUI): ) self.cncplot_method_combo = RadioSet([ - {"label": _("All"), "value": "all"}, - {"label": _("Travel"), "value": "travel"}, - {"label": _("Cut"), "value": "cut"} + {"label": "All", "value": "all"}, + {"label": "Travel", "value": "travel"}, + {"label": "Cut", "value": "cut"} ], stretch=False) ## Object name diff --git a/locale/de/LC_MESSAGES/strings.mo b/locale/de/LC_MESSAGES/strings.mo index c0e85a17fd9a7e8d3194c4baf94f4678bc15f9d0..9957d90e0e106cd64d30d8d9e6ccd88708821fc5 100644 GIT binary patch delta 41733 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

feciH>{s0*Gz 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 delta 39240 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" "" -#: FlatCAMApp.py:3038 +#: FlatCAMApp.py:3086 #, python-brace-format msgid "" "FlatCAM
Version {version} {beta} ({date}) - " @@ -188,32 +188,32 @@ msgstr "" "org/jpcgt/flatcam/src/Beta/\">hier.

DOWNLOAD-Bereich hier.
" -#: FlatCAMApp.py:3191 +#: FlatCAMApp.py:3239 msgid "[success] Defaults saved." msgstr "[success] Standardeinstellungen gespeichert." -#: FlatCAMApp.py:3212 +#: FlatCAMApp.py:3260 msgid "[ERROR_NOTCL] Could not load factory defaults file." msgstr "[ERROR_NOTCL] Factory-Standarddatei konnte nicht geladen werden." -#: FlatCAMApp.py:3221 +#: FlatCAMApp.py:3269 msgid "[ERROR_NOTCL] Failed to parse factory defaults file." msgstr "[ERROR_NOTCL] Fehler beim Parsen der Werksvorgaben-Datei." -#: FlatCAMApp.py:3235 +#: FlatCAMApp.py:3283 msgid "[ERROR_NOTCL] Failed to write factory defaults to file." msgstr "" "[ERROR_NOTCL] Fehler beim Schreiben der Werkseinstellungen in die Datei." -#: FlatCAMApp.py:3239 +#: FlatCAMApp.py:3287 msgid "Factory defaults saved." msgstr "Werkseinstellungen gespeichert." -#: FlatCAMApp.py:3244 flatcamGUI/FlatCAMGUI.py:3063 +#: FlatCAMApp.py:3292 flatcamGUI/FlatCAMGUI.py:3088 msgid "[WARNING_NOTCL] Application is saving the project. Please wait ..." msgstr "[WARNING_NOTCL] Anwendung speichert das Projekt. Warten Sie mal ..." -#: FlatCAMApp.py:3249 +#: FlatCAMApp.py:3297 msgid "" "There are files/objects modified in FlatCAM. \n" "Do you want to Save the project?" @@ -221,11 +221,11 @@ msgstr "" "In FlatCAM wurden Dateien / Objekte geändert.\n" "Möchten Sie das Projekt speichern?" -#: FlatCAMApp.py:3252 FlatCAMApp.py:5557 +#: FlatCAMApp.py:3300 FlatCAMApp.py:5659 msgid "Save changes" msgstr "Änderungen speichern" -#: FlatCAMApp.py:3319 +#: FlatCAMApp.py:3367 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 " @@ -243,73 +243,73 @@ msgstr "" "und das Ergebnis entspricht möglicherweise nicht dem, was erwartet wurde.\n" "Überprüfen Sie den generierten GCODE." -#: FlatCAMApp.py:3360 +#: FlatCAMApp.py:3408 msgid "[ERROR_NOTCL] Failed. Excellon joining works only on Excellon objects." msgstr "" "[ERROR_NOTCL] Gescheitert. Die Verbindung von Excellon funktioniert nur bei " "Excellon-Objekten." -#: FlatCAMApp.py:3382 +#: FlatCAMApp.py:3430 msgid "[ERROR_NOTCL] Failed. Gerber joining works only on Gerber objects." msgstr "" "[ERROR_NOTCL] Gescheitert. Das Gerber-Verbinden funktioniert nur bei Gerber-" "Objekten." -#: FlatCAMApp.py:3397 FlatCAMApp.py:3422 +#: FlatCAMApp.py:3445 FlatCAMApp.py:3470 msgid "[ERROR_NOTCL] Failed. Select a Geometry Object and try again." msgstr "" "[ERROR_NOTCL] Gescheitert. Wählen Sie ein Geometrieobjekt aus und versuchen " "Sie es erneut." -#: FlatCAMApp.py:3401 FlatCAMApp.py:3426 +#: FlatCAMApp.py:3449 FlatCAMApp.py:3474 #, python-format msgid "[ERROR_NOTCL] Expected a FlatCAMGeometry, got %s" msgstr "[ERROR_NOTCL] Erwartete eine FlatCAMGeometry, bekam % s" -#: FlatCAMApp.py:3414 +#: FlatCAMApp.py:3462 msgid "[success] A Geometry object was converted to MultiGeo type." msgstr "[success] Ein Geometrieobjekt wurde in den MultiGeo-Typ konvertiert." -#: FlatCAMApp.py:3440 +#: FlatCAMApp.py:3488 msgid "[success] A Geometry object was converted to SingleGeo type." msgstr "[success] Ein Geometrieobjekt wurde in den SingleGeo-Typ konvertiert." -#: FlatCAMApp.py:3587 FlatCAMApp.py:4352 FlatCAMApp.py:5824 FlatCAMApp.py:5835 -#: FlatCAMApp.py:6021 FlatCAMApp.py:6031 +#: FlatCAMApp.py:3635 FlatCAMApp.py:4444 FlatCAMApp.py:5926 FlatCAMApp.py:5937 +#: FlatCAMApp.py:6123 FlatCAMApp.py:6133 msgid "Ok" msgstr "Ok" -#: FlatCAMApp.py:3628 +#: FlatCAMApp.py:3676 #, python-format msgid "[success] Converted units to %s" msgstr "[success] Einheiten in umgerechnet %s" -#: FlatCAMApp.py:3639 +#: FlatCAMApp.py:3687 msgid "[WARNING_NOTCL] Units conversion cancelled." msgstr "[WARNING_NOTCL] Einheitenumrechnung abgebrochen." -#: FlatCAMApp.py:4221 +#: FlatCAMApp.py:4313 msgid "Open file" msgstr "Datei öffnen" -#: FlatCAMApp.py:4252 FlatCAMApp.py:4257 +#: FlatCAMApp.py:4344 FlatCAMApp.py:4349 msgid "Export G-Code ..." msgstr "G-Code exportieren ..." -#: FlatCAMApp.py:4260 +#: FlatCAMApp.py:4352 msgid "[WARNING_NOTCL] Export Code cancelled." msgstr "[WARNING_NOTCL] Exportcode wurde abgebrochen." -#: FlatCAMApp.py:4270 +#: FlatCAMApp.py:4362 msgid "[WARNING] No such file or directory" msgstr "[WARNING] Keine solche Datei oder Ordner" -#: FlatCAMApp.py:4277 +#: FlatCAMApp.py:4369 #, python-format msgid "Saved to: %s" msgstr "Gespeichert in: %s" -#: FlatCAMApp.py:4340 FlatCAMApp.py:4373 FlatCAMApp.py:4384 FlatCAMApp.py:4395 +#: FlatCAMApp.py:4432 FlatCAMApp.py:4465 FlatCAMApp.py:4476 FlatCAMApp.py:4487 #: flatcamTools/ToolNonCopperClear.py:489 flatcamTools/ToolSolderPaste.py:765 msgid "" "[WARNING_NOTCL] Please enter a tool diameter with non-zero value, in Float " @@ -318,12 +318,12 @@ msgstr "" "[WARNING_NOTCL] Bitte geben Sie einen Werkzeugdurchmesser mit einem Wert " "ungleich Null im Float-Format ein." -#: FlatCAMApp.py:4345 FlatCAMApp.py:4378 FlatCAMApp.py:4389 FlatCAMApp.py:4400 -#: flatcamGUI/FlatCAMGUI.py:2959 +#: FlatCAMApp.py:4437 FlatCAMApp.py:4470 FlatCAMApp.py:4481 FlatCAMApp.py:4492 +#: flatcamGUI/FlatCAMGUI.py:2983 msgid "[WARNING_NOTCL] Adding Tool cancelled ..." msgstr "[WARNING_NOTCL] Addierwerkzeug abgebrochen ..." -#: FlatCAMApp.py:4348 +#: FlatCAMApp.py:4440 msgid "" "Adding Tool works only when Advanced is checked.\n" "Go to Preferences -> General - Show Advanced Options." @@ -332,120 +332,147 @@ msgstr "" "ist.\n" "Gehen Sie zu Einstellungen -> Allgemein - Erweiterte Optionen anzeigen." -#: FlatCAMApp.py:4454 +#: FlatCAMApp.py:4546 msgid "Object(s) deleted ..." msgstr "Objekt (e) gelöscht ..." -#: FlatCAMApp.py:4458 +#: FlatCAMApp.py:4550 msgid "Failed. No object(s) selected..." msgstr "Gescheitert. Kein Objekt ausgewählt ..." -#: FlatCAMApp.py:4460 +#: FlatCAMApp.py:4552 msgid "Save the work in Editor and try again ..." msgstr "Speichern Sie die Arbeit im Editor und versuchen Sie es erneut ..." -#: FlatCAMApp.py:4473 +#: FlatCAMApp.py:4565 msgid "Click to set the origin ..." msgstr "Klicken Sie hier, um den Ursprung festzulegen ..." -#: FlatCAMApp.py:4485 +#: FlatCAMApp.py:4577 msgid "Jump to ..." msgstr "Springen zu ..." -#: FlatCAMApp.py:4486 +#: FlatCAMApp.py:4578 msgid "Enter the coordinates in format X,Y:" msgstr "Geben Sie die Koordinaten im Format X, Y ein:" -#: FlatCAMApp.py:4493 +#: FlatCAMApp.py:4585 msgid "Wrong coordinates. Enter coordinates in format: X,Y" msgstr "Falsche Koordinaten. Koordinaten im Format eingeben: X, Y" -#: FlatCAMApp.py:4511 flatcamEditors/FlatCAMGeoEditor.py:3413 +#: FlatCAMApp.py:4603 flatcamEditors/FlatCAMGeoEditor.py:3485 #: flatcamEditors/FlatCAMGrbEditor.py:790 #: flatcamEditors/FlatCAMGrbEditor.py:885 #: flatcamEditors/FlatCAMGrbEditor.py:1122 -#: flatcamEditors/FlatCAMGrbEditor.py:1343 -#: flatcamEditors/FlatCAMGrbEditor.py:3235 -#: flatcamEditors/FlatCAMGrbEditor.py:3248 flatcamGUI/FlatCAMGUI.py:2373 -#: flatcamGUI/FlatCAMGUI.py:2385 +#: flatcamEditors/FlatCAMGrbEditor.py:1350 +#: flatcamEditors/FlatCAMGrbEditor.py:3318 +#: flatcamEditors/FlatCAMGrbEditor.py:3332 flatcamGUI/FlatCAMGUI.py:2397 +#: flatcamGUI/FlatCAMGUI.py:2409 msgid "[success] Done." msgstr "[success] Erledigt." -#: FlatCAMApp.py:4670 +#: FlatCAMApp.py:4767 msgid "[success] Origin set ..." msgstr "[success] Ursprung gesetzt ..." -#: FlatCAMApp.py:4688 +#: FlatCAMApp.py:4786 msgid "Preferences" msgstr "Einstellungen" -#: FlatCAMApp.py:4708 +#: FlatCAMApp.py:4806 msgid "[WARNING_NOTCL] No object selected to Flip on Y axis." msgstr "[WARNING_NOTCL] Kein Objekt ausgewählt, um auf der Y-Achse zu kippen." -#: FlatCAMApp.py:4733 +#: FlatCAMApp.py:4831 msgid "[success] Flip on Y axis done." msgstr "[success] Y-Achse umdrehen fertig." -#: FlatCAMApp.py:4735 FlatCAMApp.py:4775 +#: FlatCAMApp.py:4833 FlatCAMApp.py:4873 #: flatcamEditors/FlatCAMGeoEditor.py:1354 -#: flatcamEditors/FlatCAMGrbEditor.py:4533 flatcamTools/ToolTransform.py:750 +#: flatcamEditors/FlatCAMGrbEditor.py:4631 flatcamTools/ToolTransform.py:750 #, 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." -#: FlatCAMApp.py:4748 +#: FlatCAMApp.py:4846 msgid "[WARNING_NOTCL] No object selected to Flip on X axis." msgstr "[WARNING_NOTCL] Kein Objekt ausgewählt, um auf der X-Achse zu kippen." -#: FlatCAMApp.py:4773 +#: FlatCAMApp.py:4871 msgid "[success] Flip on X axis done." msgstr "[success] Dreh auf der X-Achse fertig." -#: FlatCAMApp.py:4788 +#: FlatCAMApp.py:4886 msgid "[WARNING_NOTCL] No object selected to Rotate." msgstr "[WARNING_NOTCL] Kein Objekt zum Drehen ausgewählt." -#: FlatCAMApp.py:4791 FlatCAMApp.py:4836 FlatCAMApp.py:4867 +#: FlatCAMApp.py:4889 FlatCAMApp.py:4934 FlatCAMApp.py:4965 msgid "Transform" msgstr "Verwandeln" -#: FlatCAMApp.py:4791 FlatCAMApp.py:4836 FlatCAMApp.py:4867 +#: FlatCAMApp.py:4889 FlatCAMApp.py:4934 FlatCAMApp.py:4965 msgid "Enter the Angle value:" msgstr "Geben Sie den Winkelwert ein:" -#: FlatCAMApp.py:4821 +#: FlatCAMApp.py:4919 msgid "[success] Rotation done." msgstr "[success] Rotation erfolgt." -#: FlatCAMApp.py:4823 flatcamEditors/FlatCAMGeoEditor.py:1297 -#: flatcamEditors/FlatCAMGrbEditor.py:4476 flatcamTools/ToolTransform.py:678 +#: FlatCAMApp.py:4921 flatcamEditors/FlatCAMGeoEditor.py:1297 +#: flatcamEditors/FlatCAMGrbEditor.py:4574 flatcamTools/ToolTransform.py:678 #, python-format msgid "[ERROR_NOTCL] Due of %s, rotation movement was not executed." msgstr "" "[ERROR_NOTCL] Aufgrund von %s wurde keine Rotationsbewegung ausgeführt." -#: FlatCAMApp.py:4834 +#: FlatCAMApp.py:4932 msgid "[WARNING_NOTCL] No object selected to Skew/Shear on X axis." msgstr "" "[WARNING_NOTCL] Kein Objekt für Neigung / Scherung auf der X-Achse " "ausgewählt." -#: FlatCAMApp.py:4855 +#: FlatCAMApp.py:4953 msgid "[success] Skew on X axis done." msgstr "[success] Neigung auf der X-Achse fertig." -#: FlatCAMApp.py:4865 +#: FlatCAMApp.py:4963 msgid "[WARNING_NOTCL] No object selected to Skew/Shear on Y axis." msgstr "" "[WARNING_NOTCL] Kein Objekt für Neigung / Scherung auf der Y-Achse " "ausgewählt." -#: FlatCAMApp.py:4886 +#: FlatCAMApp.py:4984 msgid "[success] Skew on Y axis done." msgstr "[success] Neigung auf der Y-Achse fertig." -#: FlatCAMApp.py:4982 FlatCAMApp.py:5009 +#: FlatCAMApp.py:5059 flatcamEditors/FlatCAMGeoEditor.py:936 +#: flatcamEditors/FlatCAMGrbEditor.py:1830 +#: flatcamEditors/FlatCAMGrbEditor.py:4204 flatcamGUI/ObjectUI.py:988 +#: flatcamTools/ToolDblSided.py:160 flatcamTools/ToolDblSided.py:208 +#: flatcamTools/ToolNonCopperClear.py:134 flatcamTools/ToolPaint.py:131 +#: flatcamTools/ToolSolderPaste.py:115 flatcamTools/ToolSolderPaste.py:479 +#: flatcamTools/ToolTransform.py:337 +msgid "Add" +msgstr "Hinzufügen" + +#: FlatCAMApp.py:5060 FlatCAMObj.py:3008 +#: flatcamEditors/FlatCAMGrbEditor.py:1835 flatcamGUI/FlatCAMGUI.py:519 +#: flatcamGUI/FlatCAMGUI.py:713 flatcamGUI/FlatCAMGUI.py:1602 +#: flatcamGUI/FlatCAMGUI.py:1934 flatcamGUI/ObjectUI.py:1004 +#: flatcamTools/ToolNonCopperClear.py:146 flatcamTools/ToolPaint.py:143 +#: flatcamTools/ToolSolderPaste.py:121 flatcamTools/ToolSolderPaste.py:481 +msgid "Delete" +msgstr "Löschen" + +#: FlatCAMApp.py:5072 +msgid "New Grid ..." +msgstr "Neues Raster ..." + +#: FlatCAMApp.py:5073 +msgid "Enter a Grid Value:" +msgstr "Geben Sie einen Rasterwert ein:" + +#: FlatCAMApp.py:5081 FlatCAMApp.py:5108 msgid "" "[WARNING_NOTCL] Please enter a grid value with non-zero value, in Float " "format." @@ -453,48 +480,48 @@ msgstr "" "[WARNING_NOTCL] Bitte geben Sie im Float-Format einen Rasterwert mit einem " "Wert ungleich Null ein." -#: FlatCAMApp.py:4988 +#: FlatCAMApp.py:5087 msgid "[success] New Grid added ..." msgstr "[success] Neues Netz hinzugefügt ..." -#: FlatCAMApp.py:4991 +#: FlatCAMApp.py:5090 msgid "[WARNING_NOTCL] Grid already exists ..." msgstr "[WARNING_NOTCL] Netz existiert bereits ..." -#: FlatCAMApp.py:4994 +#: FlatCAMApp.py:5093 msgid "[WARNING_NOTCL] Adding New Grid cancelled ..." msgstr "[WARNING_NOTCL] Neues Netz wurde abgebrochen ..." -#: FlatCAMApp.py:5016 +#: FlatCAMApp.py:5115 msgid "[ERROR_NOTCL] Grid Value does not exist ..." msgstr "[ERROR_NOTCL] Rasterwert existiert nicht ..." -#: FlatCAMApp.py:5019 +#: FlatCAMApp.py:5118 msgid "[success] Grid Value deleted ..." msgstr "[success] Rasterwert gelöscht ..." -#: FlatCAMApp.py:5022 +#: FlatCAMApp.py:5121 msgid "[WARNING_NOTCL] Delete Grid value cancelled ..." msgstr "[WARNING_NOTCL] Rasterwert löschen abgebrochen ..." -#: FlatCAMApp.py:5061 +#: FlatCAMApp.py:5160 msgid "[WARNING_NOTCL] No object selected to copy it's name" msgstr "[WARNING_NOTCL] Kein Objekt zum Kopieren des Namens ausgewählt" -#: FlatCAMApp.py:5065 +#: FlatCAMApp.py:5164 msgid "Name copied on clipboard ..." msgstr "Name in Zwischenablage kopiert ..." -#: FlatCAMApp.py:5357 FlatCAMApp.py:5360 FlatCAMApp.py:5363 FlatCAMApp.py:5366 -#: FlatCAMApp.py:5380 FlatCAMApp.py:5383 FlatCAMApp.py:5386 FlatCAMApp.py:5389 -#: FlatCAMApp.py:5428 FlatCAMApp.py:5431 FlatCAMApp.py:5434 FlatCAMApp.py:5437 -#: ObjectCollection.py:711 ObjectCollection.py:714 ObjectCollection.py:717 -#: ObjectCollection.py:720 +#: FlatCAMApp.py:5457 FlatCAMApp.py:5460 FlatCAMApp.py:5463 FlatCAMApp.py:5466 +#: FlatCAMApp.py:5481 FlatCAMApp.py:5484 FlatCAMApp.py:5487 FlatCAMApp.py:5490 +#: FlatCAMApp.py:5530 FlatCAMApp.py:5533 FlatCAMApp.py:5536 FlatCAMApp.py:5539 +#: ObjectCollection.py:717 ObjectCollection.py:720 ObjectCollection.py:723 +#: ObjectCollection.py:726 #, python-brace-format msgid "[selected]{name} selected" msgstr "[selected]{name} ausgewählt" -#: FlatCAMApp.py:5554 +#: FlatCAMApp.py:5656 msgid "" "There are files/objects opened in FlatCAM.\n" "Creating a New project will delete them.\n" @@ -504,112 +531,112 @@ msgstr "" "Wenn Sie ein neues Projekt erstellen, werden diese gelöscht.\n" "Möchten Sie das Projekt speichern?" -#: FlatCAMApp.py:5575 +#: FlatCAMApp.py:5677 msgid "[success] New Project created..." msgstr "[success] Neues Projekt erstellt ..." -#: FlatCAMApp.py:5683 FlatCAMApp.py:5686 flatcamGUI/FlatCAMGUI.py:600 -#: flatcamGUI/FlatCAMGUI.py:1806 +#: FlatCAMApp.py:5785 FlatCAMApp.py:5788 flatcamGUI/FlatCAMGUI.py:600 +#: flatcamGUI/FlatCAMGUI.py:1817 msgid "Open Gerber" msgstr "Gerber öffnen" -#: FlatCAMApp.py:5691 +#: FlatCAMApp.py:5793 msgid "[WARNING_NOTCL] Open Gerber cancelled." msgstr "[WARNING_NOTCL] Offener Gerber abgebrochen." -#: FlatCAMApp.py:5712 FlatCAMApp.py:5715 flatcamGUI/FlatCAMGUI.py:601 -#: flatcamGUI/FlatCAMGUI.py:1807 +#: FlatCAMApp.py:5814 FlatCAMApp.py:5817 flatcamGUI/FlatCAMGUI.py:601 +#: flatcamGUI/FlatCAMGUI.py:1818 msgid "Open Excellon" msgstr "Excellon öffnen" -#: FlatCAMApp.py:5720 +#: FlatCAMApp.py:5822 msgid "[WARNING_NOTCL] Open Excellon cancelled." msgstr "[WARNING_NOTCL] Offener Excellon abgebrochen." -#: FlatCAMApp.py:5742 FlatCAMApp.py:5745 +#: FlatCAMApp.py:5844 FlatCAMApp.py:5847 msgid "Open G-Code" msgstr "G-Code öffnen" -#: FlatCAMApp.py:5750 +#: FlatCAMApp.py:5852 msgid "[WARNING_NOTCL] Open G-Code cancelled." msgstr "[WARNING_NOTCL] Geöffneter G-Code wurde abgebrochen." -#: FlatCAMApp.py:5768 FlatCAMApp.py:5771 +#: FlatCAMApp.py:5870 FlatCAMApp.py:5873 msgid "Open Project" msgstr "Offenes Projekt" -#: FlatCAMApp.py:5779 +#: FlatCAMApp.py:5881 msgid "[WARNING_NOTCL] Open Project cancelled." msgstr "[WARNING_NOTCL] Projekt abbrechen abgebrochen." -#: FlatCAMApp.py:5798 FlatCAMApp.py:5801 +#: FlatCAMApp.py:5900 FlatCAMApp.py:5903 msgid "Open Configuration File" msgstr "Offene Einstellungsdatei" -#: FlatCAMApp.py:5805 +#: FlatCAMApp.py:5907 msgid "[WARNING_NOTCL Open Config cancelled." msgstr "[WARNING_NOTCL] Open Config abgesagt." -#: FlatCAMApp.py:5820 FlatCAMApp.py:6017 FlatCAMApp.py:8103 FlatCAMApp.py:8123 -#: FlatCAMApp.py:8144 FlatCAMApp.py:8166 +#: FlatCAMApp.py:5922 FlatCAMApp.py:6119 FlatCAMApp.py:8206 FlatCAMApp.py:8226 +#: FlatCAMApp.py:8247 FlatCAMApp.py:8269 msgid "[WARNING_NOTCL] No object selected." msgstr "[WARNING_NOTCL] Kein Objekt ausgewählt" -#: FlatCAMApp.py:5821 FlatCAMApp.py:6018 +#: FlatCAMApp.py:5923 FlatCAMApp.py:6120 msgid "Please Select a Geometry object to export" msgstr "Bitte wählen Sie ein Geometrieobjekt zum Exportieren aus" -#: FlatCAMApp.py:5832 +#: FlatCAMApp.py:5934 msgid "[ERROR_NOTCL] Only Geometry, Gerber and CNCJob objects can be used." msgstr "" "[ERROR_NOTCL] Es können nur Geometrie-, Gerber- und CNCJob-Objekte verwendet " "werden." -#: FlatCAMApp.py:5845 FlatCAMApp.py:5849 +#: FlatCAMApp.py:5947 FlatCAMApp.py:5951 msgid "Export SVG" msgstr "SVG exportieren" -#: FlatCAMApp.py:5854 +#: FlatCAMApp.py:5956 msgid "[WARNING_NOTCL] Export SVG cancelled." msgstr "[WARNING_NOTCL] Export SVG abgebrochen." -#: FlatCAMApp.py:5868 +#: FlatCAMApp.py:5970 msgid "[[WARNING_NOTCL]] Data must be a 3D array with last dimension 3 or 4" msgstr "" "[WARNING_NOTCL] Daten müssen ein 3D-Array mit der letzten Dimension 3 oder 4 " "sein" -#: FlatCAMApp.py:5874 FlatCAMApp.py:5878 +#: FlatCAMApp.py:5976 FlatCAMApp.py:5980 msgid "Export PNG Image" msgstr "PNG-Bild exportieren" -#: FlatCAMApp.py:5883 +#: FlatCAMApp.py:5985 msgid "Export PNG cancelled." msgstr "Export PNG abgebrochen." -#: FlatCAMApp.py:5900 +#: FlatCAMApp.py:6002 msgid "" "[WARNING_NOTCL] No object selected. Please select an Gerber object to export." msgstr "" "[WARNING_NOTCL] Kein Objekt ausgewählt. Bitte wählen Sie ein Gerber-Objekt " "aus, das Sie exportieren möchten." -#: FlatCAMApp.py:5905 +#: FlatCAMApp.py:6007 msgid "" "[ERROR_NOTCL] Failed. Only Gerber objects can be saved as Gerber files..." msgstr "" "[ERROR_NOTCL] Fehlgeschlagen. Nur Gerber-Objekte können als Gerber-Dateien " "gespeichert werden ..." -#: FlatCAMApp.py:5917 +#: FlatCAMApp.py:6019 msgid "Save Gerber source file" msgstr "Gerber-Quelldatei speichern" -#: FlatCAMApp.py:5922 +#: FlatCAMApp.py:6024 msgid "[WARNING_NOTCL] Save Gerber source file cancelled." msgstr "[WARNING_NOTCL] Gerber Quelldatei speichern abgebrochen." -#: FlatCAMApp.py:5939 +#: FlatCAMApp.py:6041 msgid "" "[WARNING_NOTCL] No object selected. Please select an Excellon object to " "export." @@ -617,22 +644,22 @@ msgstr "" "[WARNING_NOTCL] Kein Objekt ausgewählt Bitte wählen Sie ein Excellon-Objekt " "zum Exportieren aus." -#: FlatCAMApp.py:5944 FlatCAMApp.py:5983 +#: FlatCAMApp.py:6046 FlatCAMApp.py:6085 msgid "" "[ERROR_NOTCL] Failed. Only Excellon objects can be saved as Excellon files..." msgstr "" "[ERROR_NOTCL] Fehlgeschlagen. Nur Excellon-Objekte können als Excellon-" "Dateien gespeichert werden ..." -#: FlatCAMApp.py:5952 FlatCAMApp.py:5956 +#: FlatCAMApp.py:6054 FlatCAMApp.py:6058 msgid "Save Excellon source file" msgstr "Speichern Sie die Excellon-Quelldatei" -#: FlatCAMApp.py:5961 +#: FlatCAMApp.py:6063 msgid "[WARNING_NOTCL] Saving Excellon source file cancelled." msgstr "[WARNING_NOTCL] Speichern der Excellon-Quelldatei abgebrochen." -#: FlatCAMApp.py:5978 +#: FlatCAMApp.py:6080 msgid "" "[WARNING_NOTCL] No object selected. Please Select an Excellon object to " "export." @@ -640,55 +667,55 @@ msgstr "" "[WARNING_NOTCL] Kein Objekt ausgewählt. Bitte wählen Sie ein Excellon-Objekt " "aus, das Sie exportieren möchten." -#: FlatCAMApp.py:5991 FlatCAMApp.py:5995 +#: FlatCAMApp.py:6093 FlatCAMApp.py:6097 msgid "Export Excellon" msgstr "Excellon exportieren" -#: FlatCAMApp.py:6000 +#: FlatCAMApp.py:6102 msgid "[WARNING_NOTCL] Export Excellon cancelled." msgstr "[WARNING_NOTCL] Export Excellon wurde abgebrochen." -#: FlatCAMApp.py:6028 +#: FlatCAMApp.py:6130 msgid "[ERROR_NOTCL] Only Geometry objects can be used." msgstr "[ERROR_NOTCL] Es können nur Geometrieobjekte verwendet werden." -#: FlatCAMApp.py:6042 FlatCAMApp.py:6046 +#: FlatCAMApp.py:6144 FlatCAMApp.py:6148 msgid "Export DXF" msgstr "DXF exportieren" -#: FlatCAMApp.py:6051 +#: FlatCAMApp.py:6153 msgid "[WARNING_NOTCL] Export DXF cancelled." msgstr "[WARNING_NOTCL] Export DXF wurde abgebrochen." -#: FlatCAMApp.py:6069 FlatCAMApp.py:6072 +#: FlatCAMApp.py:6171 FlatCAMApp.py:6174 msgid "Import SVG" msgstr "SVG importieren" -#: FlatCAMApp.py:6080 +#: FlatCAMApp.py:6182 msgid "[WARNING_NOTCL] Open SVG cancelled." msgstr "[WARNING_NOTCL] Open SVG abgebrochen." -#: FlatCAMApp.py:6099 FlatCAMApp.py:6102 +#: FlatCAMApp.py:6201 FlatCAMApp.py:6204 msgid "Import DXF" msgstr "Importieren Sie DXF" -#: FlatCAMApp.py:6110 +#: FlatCAMApp.py:6212 msgid "[WARNING_NOTCL] Open DXF cancelled." msgstr "[WARNING_NOTCL] Open DXF cancelled." -#: FlatCAMApp.py:6128 +#: FlatCAMApp.py:6230 #, python-format msgid "%s" msgstr "%s" -#: FlatCAMApp.py:6148 +#: FlatCAMApp.py:6250 msgid "" "[WARNING_NOTCL] Select an Gerber or Excellon file to view it's source file." msgstr "" "[WARNING_NOTCL] Wählen Sie eine Gerber- oder Excellon-Datei aus, um die " "Quelldatei anzuzeigen." -#: FlatCAMApp.py:6155 +#: FlatCAMApp.py:6257 msgid "" "[WARNING_NOTCL] There is no selected object for which to see it's source " "file code." @@ -696,24 +723,24 @@ msgstr "" "[WARNING_NOTCL] Es gibt kein ausgewähltes Objekt, für das man seinen " "Quelldateien sehen kann." -#: FlatCAMApp.py:6163 +#: FlatCAMApp.py:6265 msgid "Source Editor" msgstr "Quelleditor" -#: FlatCAMApp.py:6173 +#: FlatCAMApp.py:6275 #, python-format msgid "[ERROR]App.on_view_source() -->%s" msgstr "[ERROR]App.on_view_source() -->%s" -#: FlatCAMApp.py:6185 FlatCAMApp.py:7206 FlatCAMObj.py:5259 +#: FlatCAMApp.py:6287 FlatCAMApp.py:7308 FlatCAMObj.py:5266 msgid "Code Editor" msgstr "Code-Editor" -#: FlatCAMApp.py:6197 +#: FlatCAMApp.py:6299 msgid "Script Editor" msgstr "Script Editor" -#: FlatCAMApp.py:6200 +#: FlatCAMApp.py:6302 msgid "" "#\n" "# CREATE A NEW FLATCAM TCL SCRIPT\n" @@ -757,85 +784,85 @@ msgstr "" "#\n" "\n" -#: FlatCAMApp.py:6223 FlatCAMApp.py:6226 +#: FlatCAMApp.py:6325 FlatCAMApp.py:6328 msgid "Open TCL script" msgstr "Öffnen Sie das TCL-Skript" -#: FlatCAMApp.py:6234 +#: FlatCAMApp.py:6336 msgid "[WARNING_NOTCL] Open TCL script cancelled." msgstr "[WARNING_NOTCL] Open TCL-Skript wurde abgebrochen." -#: FlatCAMApp.py:6246 +#: FlatCAMApp.py:6348 #, python-format msgid "[ERROR]App.on_fileopenscript() -->%s" msgstr "[ERROR]App.on_fileopenscript() -->%s" -#: FlatCAMApp.py:6272 FlatCAMApp.py:6275 +#: FlatCAMApp.py:6374 FlatCAMApp.py:6377 msgid "Run TCL script" msgstr "Führen Sie das TCL-Skript aus" -#: FlatCAMApp.py:6283 +#: FlatCAMApp.py:6385 msgid "[WARNING_NOTCL] Run TCL script cancelled." msgstr "[WARNING_NOTCL] Das TCL-Skript wird abgebrochen." -#: FlatCAMApp.py:6329 FlatCAMApp.py:6333 +#: FlatCAMApp.py:6431 FlatCAMApp.py:6435 msgid "Save Project As ..." msgstr "Projekt speichern als ..." -#: FlatCAMApp.py:6330 +#: FlatCAMApp.py:6432 #, python-brace-format msgid "{l_save}/Project_{date}" msgstr "{l_save}/Projekt_{date}" -#: FlatCAMApp.py:6338 +#: FlatCAMApp.py:6440 msgid "[WARNING_NOTCL] Save Project cancelled." msgstr "[WARNING_NOTCL] Projekt speichern abgebrochen" -#: FlatCAMApp.py:6383 +#: FlatCAMApp.py:6485 msgid "Exporting SVG" msgstr "SVG exportieren" -#: FlatCAMApp.py:6416 FlatCAMApp.py:6521 FlatCAMApp.py:6635 +#: FlatCAMApp.py:6518 FlatCAMApp.py:6623 FlatCAMApp.py:6737 #, python-format msgid "[success] SVG file exported to %s" msgstr "[success] SVG-Datei in exportiert %s" -#: FlatCAMApp.py:6447 FlatCAMApp.py:6567 +#: FlatCAMApp.py:6549 FlatCAMApp.py:6669 #, python-format msgid "[WARNING_NOTCL] No object Box. Using instead %s" msgstr "[WARNING_NOTCL] Kein Objektfeld. Stattdessen verwenden %s" -#: FlatCAMApp.py:6524 FlatCAMApp.py:6638 +#: FlatCAMApp.py:6626 FlatCAMApp.py:6740 msgid "Generating Film ... Please wait." msgstr "Film wird erstellt ... Bitte warten Sie." -#: FlatCAMApp.py:6785 +#: FlatCAMApp.py:6887 #, python-format msgid "[success] Excellon file exported to %s" msgstr "[success] Excellon-Datei nach exportiert %s" -#: FlatCAMApp.py:6792 +#: FlatCAMApp.py:6894 msgid "Exporting Excellon" msgstr "Excellon exportieren" -#: FlatCAMApp.py:6797 FlatCAMApp.py:6804 +#: FlatCAMApp.py:6899 FlatCAMApp.py:6906 msgid "[ERROR_NOTCL] Could not export Excellon file." msgstr "[ERROR_NOTCL] Excellon-Datei konnte nicht exportiert werden." -#: FlatCAMApp.py:6843 +#: FlatCAMApp.py:6945 #, python-format msgid "[success] DXF file exported to %s" msgstr "[success] DXF-Datei in exportiert %s" -#: FlatCAMApp.py:6849 +#: FlatCAMApp.py:6951 msgid "Exporting DXF" msgstr "DXF exportieren" -#: FlatCAMApp.py:6854 FlatCAMApp.py:6861 +#: FlatCAMApp.py:6956 FlatCAMApp.py:6963 msgid "[[WARNING_NOTCL]] Could not export DXF file." msgstr "[WARNING_NOTCL] DXF-Datei konnte nicht exportiert werden." -#: FlatCAMApp.py:6881 FlatCAMApp.py:6923 FlatCAMApp.py:6964 +#: FlatCAMApp.py:6983 FlatCAMApp.py:7025 FlatCAMApp.py:7066 msgid "" "[ERROR_NOTCL] Not supported type is picked as parameter. Only Geometry and " "Gerber are supported" @@ -843,100 +870,100 @@ msgstr "" "[ERROR_NOTCL] Nicht unterstützte Art wird als Parameter ausgewählt. Nur " "Geometrie und Gerber werden unterstützt" -#: FlatCAMApp.py:6891 +#: FlatCAMApp.py:6993 msgid "Importing SVG" msgstr "SVG importieren" -#: FlatCAMApp.py:6902 FlatCAMApp.py:6944 FlatCAMApp.py:6984 FlatCAMApp.py:7060 -#: FlatCAMApp.py:7127 FlatCAMApp.py:7192 flatcamTools/ToolPDF.py:275 +#: FlatCAMApp.py:7004 FlatCAMApp.py:7046 FlatCAMApp.py:7086 FlatCAMApp.py:7162 +#: FlatCAMApp.py:7229 FlatCAMApp.py:7294 flatcamTools/ToolPDF.py:212 #, python-format msgid "[success] Opened: %s" msgstr "[success] Geöffnet: %s" -#: FlatCAMApp.py:6933 +#: FlatCAMApp.py:7035 msgid "Importing DXF" msgstr "DXF importieren" -#: FlatCAMApp.py:6972 +#: FlatCAMApp.py:7074 msgid "Importing Image" msgstr "Bild importieren" -#: FlatCAMApp.py:7013 FlatCAMApp.py:7015 +#: FlatCAMApp.py:7115 FlatCAMApp.py:7117 #, python-format msgid "[ERROR_NOTCL] Failed to open file: %s" msgstr "[ERROR_NOTCL] Datei konnte nicht geöffnet werden: %s" -#: FlatCAMApp.py:7018 +#: FlatCAMApp.py:7120 #, python-brace-format msgid "[ERROR_NOTCL] Failed to parse file: {name}. {error}" msgstr "[ERROR_NOTCL] Fehler beim Parsen der Datei: {name}. {error}" -#: FlatCAMApp.py:7024 FlatCAMObj.py:3963 -#: flatcamEditors/FlatCAMExcEditor.py:1977 -#: flatcamEditors/FlatCAMGrbEditor.py:3018 +#: FlatCAMApp.py:7126 FlatCAMObj.py:3970 +#: flatcamEditors/FlatCAMExcEditor.py:2035 +#: flatcamEditors/FlatCAMGrbEditor.py:3098 msgid "[ERROR] An internal error has ocurred. See shell.\n" msgstr "[ERROR] Ein interner Fehler ist aufgetreten. Siehe Shell.\n" -#: FlatCAMApp.py:7033 +#: FlatCAMApp.py:7135 msgid "" "[ERROR_NOTCL] Object is not Gerber file or empty. Aborting object creation." msgstr "" "[ERROR_NOTCL] Objekt ist keine Gerber-Datei oder leer. Abbruch der " "Objekterstellung" -#: FlatCAMApp.py:7041 +#: FlatCAMApp.py:7143 msgid "Opening Gerber" msgstr "Gerber öffnen" -#: FlatCAMApp.py:7051 +#: FlatCAMApp.py:7153 msgid "[ERROR_NOTCL] Open Gerber failed. Probable not a Gerber file." msgstr "" "[ERROR_NOTCL] Gerber öffnen ist fehlgeschlagen. Wahrscheinlich keine Gerber-" "Datei." -#: FlatCAMApp.py:7086 flatcamTools/ToolPcbWizard.py:421 +#: FlatCAMApp.py:7188 flatcamTools/ToolPcbWizard.py:421 msgid "[ERROR_NOTCL] This is not Excellon file." msgstr "[ERROR_NOTCL] Dies ist keine Excellon-Datei." -#: FlatCAMApp.py:7089 +#: FlatCAMApp.py:7191 #, python-format msgid "[ERROR_NOTCL] Cannot open file: %s" msgstr "[ERROR_NOTCL] Kann Datei nicht öffnen: %s" -#: FlatCAMApp.py:7094 flatcamTools/ToolPcbWizard.py:429 +#: FlatCAMApp.py:7196 flatcamTools/ToolPcbWizard.py:429 msgid "[ERROR_NOTCL] An internal error has occurred. See shell.\n" msgstr "[ERROR_NOTCL] Ein interner Fehler ist aufgetreten. Siehe Shell.\n" -#: FlatCAMApp.py:7110 flatcamTools/ToolPDF.py:238 +#: FlatCAMApp.py:7212 flatcamTools/ToolPDF.py:261 #: flatcamTools/ToolPcbWizard.py:442 #, python-format msgid "[ERROR_NOTCL] No geometry found in file: %s" msgstr "[ERROR_NOTCL] Keine Geometrie in der Datei gefunden: %s" -#: FlatCAMApp.py:7113 +#: FlatCAMApp.py:7215 msgid "Opening Excellon." msgstr "Eröffnung Excellon." -#: FlatCAMApp.py:7120 +#: FlatCAMApp.py:7222 msgid "[ERROR_NOTCL] Open Excellon file failed. Probable not an Excellon file." msgstr "" "[ERROR_NOTCL] Die Excellon-Datei konnte nicht geöffnet werden. " "Wahrscheinlich keine Excellon-Datei." -#: FlatCAMApp.py:7159 +#: FlatCAMApp.py:7261 #, python-format msgid "[ERROR_NOTCL] Failed to open %s" msgstr "[ERROR_NOTCL] Gescheitert zu öffnen %s" -#: FlatCAMApp.py:7169 +#: FlatCAMApp.py:7271 msgid "[ERROR_NOTCL] This is not GCODE" msgstr "[ERROR_NOTCL] Dies ist kein GCODE" -#: FlatCAMApp.py:7175 +#: FlatCAMApp.py:7277 msgid "Opening G-Code." msgstr "G-Code öffnen." -#: FlatCAMApp.py:7183 +#: FlatCAMApp.py:7285 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 " @@ -947,26 +974,26 @@ msgstr "" "Der Versuch, ein FlatCAM-CNCJob-Objekt aus einer G-Code-Datei zu erstellen, " "ist während der Verarbeitung fehlgeschlagen" -#: FlatCAMApp.py:7223 +#: FlatCAMApp.py:7325 #, python-format msgid "[ERROR_NOTCL] Failed to open config file: %s" msgstr "[ERROR_NOTCL] Fehler beim Öffnen der Konfigurationsdatei: %s" -#: FlatCAMApp.py:7248 FlatCAMApp.py:7264 +#: FlatCAMApp.py:7350 FlatCAMApp.py:7366 #, python-format msgid "[ERROR_NOTCL] Failed to open project file: %s" msgstr "[ERROR_NOTCL] Projektdatei konnte nicht geöffnet werden: %s" -#: FlatCAMApp.py:7290 +#: FlatCAMApp.py:7392 #, python-format msgid "[success] Project loaded from: %s" msgstr "[success] Projekt geladen von: %s" -#: FlatCAMApp.py:7420 +#: FlatCAMApp.py:7522 msgid "Available commands:\n" msgstr "Verfügbare Befehle:\n" -#: FlatCAMApp.py:7422 +#: FlatCAMApp.py:7524 msgid "" "\n" "\n" @@ -978,24 +1005,24 @@ msgstr "" "Geben Sie help für die Verwendung ein.\n" "Beispiel: help open_gerber" -#: FlatCAMApp.py:7570 +#: FlatCAMApp.py:7672 msgid "Shows list of commands." msgstr "Zeigt eine Liste von Befehlen an." -#: FlatCAMApp.py:7626 +#: FlatCAMApp.py:7729 msgid "[ERROR_NOTCL] Failed to load recent item list." msgstr "[ERROR_NOTCL] Fehler beim Laden der letzten Elementliste." -#: FlatCAMApp.py:7633 +#: FlatCAMApp.py:7736 msgid "[ERROR_NOTCL] Failed to parse recent item list." msgstr "" "[ERROR_NOTCL] Liste der letzten Artikel konnte nicht analysiert werden." -#: FlatCAMApp.py:7694 flatcamGUI/FlatCAMGUI.py:941 +#: FlatCAMApp.py:7797 flatcamGUI/FlatCAMGUI.py:957 msgid "Shortcut Key List" msgstr " Liste der Tastenkombinationen " -#: FlatCAMApp.py:7701 +#: FlatCAMApp.py:7804 msgid "" "\n" "

Selected Tab - Choose an Item from " @@ -1095,27 +1122,27 @@ msgstr "" "strong> oder über eine eigene Tastenkombination: F3. " "

" -#: FlatCAMApp.py:7805 +#: FlatCAMApp.py:7908 msgid "[WARNING_NOTCL] Failed checking for latest version. Could not connect." msgstr "" "[WARNING_NOTCL] Fehler bei der Suche nach der neuesten Version. Konnte keine " "Verbindung herstellen." -#: FlatCAMApp.py:7812 +#: FlatCAMApp.py:7915 msgid "[ERROR_NOTCL] Could not parse information about latest version." msgstr "" "[ERROR_NOTCL] Informationen zur neuesten Version konnten nicht analysiert " "werden." -#: FlatCAMApp.py:7822 +#: FlatCAMApp.py:7925 msgid "[success] FlatCAM is up to date!" msgstr "[success] FlatCAM ist auf dem neuesten Version!" -#: FlatCAMApp.py:7827 +#: FlatCAMApp.py:7930 msgid "Newer Version Available" msgstr "Neuere Version verfügbar" -#: FlatCAMApp.py:7828 +#: FlatCAMApp.py:7931 msgid "" "There is a newer version of FlatCAM available for download:\n" "\n" @@ -1123,85 +1150,85 @@ msgstr "" "Es gibt eine neuere Version von FlatCAM zum Download:\n" "\n" -#: FlatCAMApp.py:7830 +#: FlatCAMApp.py:7933 msgid "info" msgstr "Info" -#: FlatCAMApp.py:7849 +#: FlatCAMApp.py:7952 msgid "[success] All plots disabled." msgstr "[success] Alle Diagramme sind deaktiviert." -#: FlatCAMApp.py:7855 +#: FlatCAMApp.py:7958 msgid "[success] All non selected plots disabled." msgstr "[success] Alle nicht ausgewählten Diagramme sind deaktiviert." -#: FlatCAMApp.py:7861 +#: FlatCAMApp.py:7964 msgid "[success] All plots enabled." msgstr "[success] Alle Diagramme aktiviert." -#: FlatCAMApp.py:7972 +#: FlatCAMApp.py:8075 msgid "Saving FlatCAM Project" msgstr "FlatCAM-Projekt speichern" -#: FlatCAMApp.py:7993 FlatCAMApp.py:8024 +#: FlatCAMApp.py:8096 FlatCAMApp.py:8127 #, python-format msgid "[success] Project saved to: %s" msgstr "[success] Projekt gespeichert in: %s" -#: FlatCAMApp.py:8011 +#: FlatCAMApp.py:8114 #, python-format msgid "[ERROR_NOTCL] Failed to verify project file: %s. Retry to save it." msgstr "" "[ERROR_NOTCL] Fehler beim Überprüfen der Projektdatei:%s. Versuchen Sie es " "erneut zu speichern." -#: FlatCAMApp.py:8018 +#: FlatCAMApp.py:8121 #, python-format msgid "[ERROR_NOTCL] Failed to parse saved project file: %s. Retry to save it." msgstr "" "[ERROR_NOTCL] Die gespeicherte Projektdatei konnte nicht analysiert werden:" "%s. Versuchen Sie es erneut zu speichern." -#: FlatCAMApp.py:8026 +#: FlatCAMApp.py:8129 #, python-format msgid "[ERROR_NOTCL] Failed to save project file: %s. Retry to save it." msgstr "" "[ERROR_NOTCL] Projektdatei konnte nicht gespeichert werden:%s. Versuchen Sie " "es erneut zu speichern." -#: FlatCAMObj.py:194 +#: FlatCAMObj.py:195 #, python-brace-format msgid "[success] Name changed from {old} to {new}" msgstr "[success] Name geändert von {old} zu {new}" -#: FlatCAMObj.py:535 FlatCAMObj.py:1741 FlatCAMObj.py:3006 FlatCAMObj.py:5158 +#: FlatCAMObj.py:542 FlatCAMObj.py:1748 FlatCAMObj.py:3013 FlatCAMObj.py:5165 msgid "Basic" msgstr "Basic" -#: FlatCAMObj.py:547 FlatCAMObj.py:1757 FlatCAMObj.py:3028 FlatCAMObj.py:5164 +#: FlatCAMObj.py:554 FlatCAMObj.py:1764 FlatCAMObj.py:3035 FlatCAMObj.py:5171 msgid "Advanced" msgstr "Erweitert" -#: FlatCAMObj.py:902 FlatCAMObj.py:957 +#: FlatCAMObj.py:909 FlatCAMObj.py:964 #, python-format msgid "[success] Isolation geometry created: %s" msgstr "[success] Isolationsgeometrie erstellt: %s" -#: FlatCAMObj.py:1126 +#: FlatCAMObj.py:1133 msgid "Plotting Apertures" msgstr "Plotten Apertures" -#: FlatCAMObj.py:1580 flatcamEditors/FlatCAMExcEditor.py:1327 +#: FlatCAMObj.py:1587 flatcamEditors/FlatCAMExcEditor.py:1327 msgid "Total Drills" msgstr "Bohrungen insgesamt" -#: FlatCAMObj.py:1606 flatcamEditors/FlatCAMExcEditor.py:1359 +#: FlatCAMObj.py:1613 flatcamEditors/FlatCAMExcEditor.py:1359 msgid "Total Slots" msgstr "Schlitz insgesamt" -#: FlatCAMObj.py:1813 FlatCAMObj.py:3079 FlatCAMObj.py:3386 FlatCAMObj.py:3573 -#: FlatCAMObj.py:3586 FlatCAMObj.py:3703 FlatCAMObj.py:4111 FlatCAMObj.py:4344 -#: FlatCAMObj.py:4750 flatcamEditors/FlatCAMExcEditor.py:1434 +#: FlatCAMObj.py:1820 FlatCAMObj.py:3086 FlatCAMObj.py:3393 FlatCAMObj.py:3580 +#: FlatCAMObj.py:3593 FlatCAMObj.py:3710 FlatCAMObj.py:4118 FlatCAMObj.py:4351 +#: FlatCAMObj.py:4757 flatcamEditors/FlatCAMExcEditor.py:1434 #: flatcamTools/ToolCalculators.py:307 flatcamTools/ToolCalculators.py:318 #: flatcamTools/ToolCalculators.py:330 flatcamTools/ToolCalculators.py:345 #: flatcamTools/ToolCalculators.py:358 flatcamTools/ToolCalculators.py:372 @@ -1220,48 +1247,48 @@ msgstr "Schlitz insgesamt" msgid "[ERROR_NOTCL] Wrong value format entered, use a number." msgstr "[ERROR_NOTCL] Wrong value format entered, use a number." -#: FlatCAMObj.py:2037 FlatCAMObj.py:2128 FlatCAMObj.py:2243 +#: FlatCAMObj.py:2044 FlatCAMObj.py:2135 FlatCAMObj.py:2250 msgid "" "[ERROR_NOTCL] Please select one or more tools from the list and try again." msgstr "" "[ERROR_NOTCL] Bitte wählen Sie ein oder mehrere Werkzeuge aus der Liste aus " "und versuchen Sie es erneut." -#: FlatCAMObj.py:2044 +#: FlatCAMObj.py:2051 msgid "" "[ERROR_NOTCL] Milling tool for DRILLS is larger than hole size. Cancelled." msgstr "" "[ERROR_NOTCL] Das Fräswerkzeug für BOHRER ist größer als die Lochgröße. " "Abgebrochen." -#: FlatCAMObj.py:2058 FlatCAMObj.py:2152 FlatCAMObj.py:2263 +#: FlatCAMObj.py:2065 FlatCAMObj.py:2159 FlatCAMObj.py:2270 msgid "Tool_nr" msgstr "Werkzeugnummer" -#: FlatCAMObj.py:2058 FlatCAMObj.py:2152 FlatCAMObj.py:2263 +#: FlatCAMObj.py:2065 FlatCAMObj.py:2159 FlatCAMObj.py:2270 #: flatcamEditors/FlatCAMExcEditor.py:781 -#: flatcamEditors/FlatCAMExcEditor.py:1920 flatcamGUI/ObjectUI.py:556 +#: flatcamEditors/FlatCAMExcEditor.py:1978 flatcamGUI/ObjectUI.py:556 #: flatcamTools/ToolNonCopperClear.py:83 flatcamTools/ToolPaint.py:80 #: flatcamTools/ToolPcbWizard.py:78 flatcamTools/ToolSolderPaste.py:81 msgid "Diameter" msgstr "Durchmesser" -#: FlatCAMObj.py:2058 FlatCAMObj.py:2152 FlatCAMObj.py:2263 +#: FlatCAMObj.py:2065 FlatCAMObj.py:2159 FlatCAMObj.py:2270 msgid "Drills_Nr" msgstr "Bohrnummer" -#: FlatCAMObj.py:2058 FlatCAMObj.py:2152 FlatCAMObj.py:2263 +#: FlatCAMObj.py:2065 FlatCAMObj.py:2159 FlatCAMObj.py:2270 msgid "Slots_Nr" msgstr "Schlitznummer" -#: FlatCAMObj.py:2138 +#: FlatCAMObj.py:2145 msgid "" "[ERROR_NOTCL] Milling tool for SLOTS is larger than hole size. Cancelled." msgstr "" "[ERROR_NOTCL] Das Fräswerkzeug für SCHLITZ ist größer als die Lochgröße. " "Abgebrochen." -#: FlatCAMObj.py:2303 FlatCAMObj.py:3999 FlatCAMObj.py:4210 FlatCAMObj.py:4525 +#: FlatCAMObj.py:2310 FlatCAMObj.py:4006 FlatCAMObj.py:4217 FlatCAMObj.py:4532 msgid "" "[ERROR_NOTCL] Wrong value format for self.defaults[\"z_pdepth\"] or self." "options[\"z_pdepth\"]" @@ -1269,7 +1296,7 @@ msgstr "" "[ERROR_NOTCL] Falsches Wertformat für self.defaults [\"z_pdepth\"] oder self." "options [\"z_pdepth\"]" -#: FlatCAMObj.py:2315 FlatCAMObj.py:4011 FlatCAMObj.py:4222 FlatCAMObj.py:4537 +#: FlatCAMObj.py:2322 FlatCAMObj.py:4018 FlatCAMObj.py:4229 FlatCAMObj.py:4544 msgid "" "[ERROR_NOTCL] Wrong value format for self.defaults[\"feedrate_probe\"] or " "self.options[\"feedrate_probe\"]" @@ -1277,12 +1304,12 @@ msgstr "" "[ERROR_NOTCL] Falsches Wertformat für self.defaults [\"feedrate_probe\"] " "oder self.options [\"feedrate_probe\"]" -#: FlatCAMObj.py:2347 FlatCAMObj.py:4412 FlatCAMObj.py:4417 FlatCAMObj.py:4563 +#: FlatCAMObj.py:2354 FlatCAMObj.py:4419 FlatCAMObj.py:4424 FlatCAMObj.py:4570 msgid "Generating CNC Code" msgstr "CNC-Code generieren" -#: FlatCAMObj.py:2373 FlatCAMObj.py:4709 camlib.py:5204 camlib.py:5653 -#: camlib.py:5924 +#: FlatCAMObj.py:2380 FlatCAMObj.py:4716 camlib.py:5214 camlib.py:5672 +#: camlib.py:5943 msgid "" "[ERROR]The Toolchange X,Y field in Edit -> Preferences has to be in the " "format (x, y) \n" @@ -1292,87 +1319,62 @@ msgstr "" "muss das Format (x, y) haben.\n" "Aber jetzt gibt es nur einen Wert, nicht zwei." -#: FlatCAMObj.py:2720 FlatCAMObj.py:2962 FlatCAMObj.py:3249 -msgid "Path" -msgstr "Pfad" - -#: FlatCAMObj.py:2720 -msgid "In" -msgstr "Im" - -#: FlatCAMObj.py:2720 -msgid "Out" -msgstr "Aus" - -#: FlatCAMObj.py:2720 FlatCAMObj.py:3044 FlatCAMObj.py:3618 -msgid "Custom" -msgstr "Maßgeschneidert" - -#: FlatCAMObj.py:2721 FlatCAMObj.py:3629 FlatCAMObj.py:3630 FlatCAMObj.py:3639 +#: FlatCAMObj.py:2728 FlatCAMObj.py:3636 FlatCAMObj.py:3637 FlatCAMObj.py:3646 msgid "Iso" msgstr "Iso" -#: FlatCAMObj.py:2721 FlatCAMObj.py:2964 FlatCAMObj.py:3251 +#: FlatCAMObj.py:2728 FlatCAMObj.py:2971 FlatCAMObj.py:3258 msgid "Rough" msgstr "Rau" -#: FlatCAMObj.py:2721 +#: FlatCAMObj.py:2728 msgid "Finish" msgstr "Oberfläche" -#: FlatCAMObj.py:2999 flatcamGUI/FlatCAMGUI.py:518 flatcamGUI/FlatCAMGUI.py:710 -#: flatcamGUI/FlatCAMGUI.py:1580 flatcamGUI/FlatCAMGUI.py:1590 -#: flatcamGUI/FlatCAMGUI.py:1914 flatcamGUI/ObjectUI.py:996 +#: FlatCAMObj.py:3006 flatcamGUI/FlatCAMGUI.py:518 flatcamGUI/FlatCAMGUI.py:711 +#: flatcamGUI/FlatCAMGUI.py:1601 flatcamGUI/FlatCAMGUI.py:1932 +#: flatcamGUI/ObjectUI.py:996 msgid "Copy" msgstr "Kopieren" -#: FlatCAMObj.py:3001 flatcamEditors/FlatCAMGrbEditor.py:1825 -#: flatcamGUI/FlatCAMGUI.py:519 flatcamGUI/FlatCAMGUI.py:712 -#: flatcamGUI/FlatCAMGUI.py:1581 flatcamGUI/FlatCAMGUI.py:1591 -#: flatcamGUI/FlatCAMGUI.py:1916 flatcamGUI/ObjectUI.py:1004 -#: flatcamTools/ToolNonCopperClear.py:146 flatcamTools/ToolPaint.py:143 -#: flatcamTools/ToolSolderPaste.py:121 flatcamTools/ToolSolderPaste.py:481 -msgid "Delete" -msgstr "Löschen" - -#: FlatCAMObj.py:3221 +#: FlatCAMObj.py:3228 msgid "[ERROR_NOTCL] Please enter the desired tool diameter in Float format." msgstr "" "[ERROR_NOTCL] Bitte geben Sie den gewünschten Werkzeugdurchmesser im Real-" "Format ein." -#: FlatCAMObj.py:3296 +#: FlatCAMObj.py:3303 msgid "[success] Tool added in Tool Table." msgstr "[success] Werkzeug in der Werkzeugtabelle hinzugefügt." -#: FlatCAMObj.py:3301 +#: FlatCAMObj.py:3308 msgid "[ERROR_NOTCL] Default Tool added. Wrong value format entered." msgstr "" "[ERROR_NOTCL] Standardwerkzeug hinzugefügt Falsches Wertformat eingegeben." -#: FlatCAMObj.py:3331 FlatCAMObj.py:3341 +#: FlatCAMObj.py:3338 FlatCAMObj.py:3348 msgid "[WARNING_NOTCL] Failed. Select a tool to copy." msgstr "" "[WARNING_NOTCL] Fehlgeschlagen. Wählen Sie ein Werkzeug zum Kopieren aus." -#: FlatCAMObj.py:3370 +#: FlatCAMObj.py:3377 msgid "[success] Tool was copied in Tool Table." msgstr "[success] Das Werkzeug wurde in die Werkzeugtabelle kopiert." -#: FlatCAMObj.py:3403 +#: FlatCAMObj.py:3410 msgid "[success] Tool was edited in Tool Table." msgstr "[success] Das Werkzeug wurde in der Werkzeugtabelle bearbeitet." -#: FlatCAMObj.py:3434 FlatCAMObj.py:3444 +#: FlatCAMObj.py:3441 FlatCAMObj.py:3451 msgid "[WARNING_NOTCL] Failed. Select a tool to delete." msgstr "" "[WARNING_NOTCL] Fehlgeschlagen. Wählen Sie ein Werkzeug zum Löschen aus." -#: FlatCAMObj.py:3468 +#: FlatCAMObj.py:3475 msgid "[success] Tool was deleted in Tool Table." msgstr "[success] Werkzeug wurde in der Werkzeugtabelle gelöscht." -#: FlatCAMObj.py:3882 +#: FlatCAMObj.py:3889 #, python-format msgid "" "[WARNING_NOTCL] This Geometry can't be processed because it is %s geometry." @@ -1380,24 +1382,24 @@ msgstr "" "[WARNING_NOTCL] Diese Geometrie kann nicht verarbeitet werden, da es sich um " "%s Geometrie handelt." -#: FlatCAMObj.py:3899 +#: FlatCAMObj.py:3906 msgid "[ERROR_NOTCL] Wrong Tool Dia value format entered, use a number." msgstr "" "[ERROR_NOTCL] Falsches Werkzeug Dia-Wertformat eingegeben, verwenden Sie " "eine Zahl." -#: FlatCAMObj.py:3926 +#: FlatCAMObj.py:3933 msgid "[ERROR_NOTCL] Failed. No tool selected in the tool table ..." msgstr "" "[ERROR_NOTCL] Gescheitert. Kein Werkzeug in der Werkzeugtabelle " "ausgewählt ..." -#: FlatCAMObj.py:3964 +#: FlatCAMObj.py:3971 #, python-format msgid "FlatCAMObj.FlatCAMGeometry.mtool_gen_cncjob() --> %s" msgstr "FlatCAMObj.FlatCAMGeometry.mtool_gen_cncjob() --> %s" -#: FlatCAMObj.py:4120 FlatCAMObj.py:4353 +#: FlatCAMObj.py:4127 FlatCAMObj.py:4360 msgid "" "[WARNING] Tool Offset is selected in Tool Table but no value is provided.\n" "Add a Tool Offset or change the Offset Type." @@ -1406,22 +1408,22 @@ msgstr "" "jedoch kein Wert angegeben.\n" "Fügen Sie einen Werkzeugversatz hinzu oder ändern Sie den Versatztyp." -#: FlatCAMObj.py:4234 flatcamTools/ToolSolderPaste.py:1107 +#: FlatCAMObj.py:4241 flatcamTools/ToolSolderPaste.py:1107 #: flatcamTools/ToolSolderPaste.py:1162 msgid "[ERROR_NOTCL] Cancelled. Empty file, it has no geometry..." msgstr "[ERROR_NOTCL] Cancelled. Empty file, it has no geometry..." -#: FlatCAMObj.py:4596 FlatCAMObj.py:4606 camlib.py:3426 camlib.py:3435 +#: FlatCAMObj.py:4603 FlatCAMObj.py:4613 camlib.py:3436 camlib.py:3445 msgid "[ERROR_NOTCL] Scale factor has to be a number: integer or float." msgstr "" "[ERROR_NOTCL] Der Skalierungsfaktor muss eine Zahl sein: Ganzzahl oder " "Fließkommazahl." -#: FlatCAMObj.py:4644 +#: FlatCAMObj.py:4651 msgid "[success] Geometry Scale done." msgstr "[success] Geometrie Skalierung fertig." -#: FlatCAMObj.py:4661 camlib.py:3497 +#: FlatCAMObj.py:4668 camlib.py:3507 msgid "" "[ERROR_NOTCL] An (x,y) pair of values are needed. Probable you entered only " "one value in the Offset field." @@ -1429,29 +1431,29 @@ msgstr "" "[ERROR_NOTCL] Ein (x, y) Wertepaar wird benötigt. Wahrscheinlich haben Sie " "im Feld Offset nur einen Wert eingegeben." -#: FlatCAMObj.py:4681 +#: FlatCAMObj.py:4688 msgid "[success] Geometry Offset done." msgstr "[success] Geometrie Offset fertig." -#: FlatCAMObj.py:5226 FlatCAMObj.py:5231 flatcamTools/ToolSolderPaste.py:1361 +#: FlatCAMObj.py:5233 FlatCAMObj.py:5238 flatcamTools/ToolSolderPaste.py:1361 msgid "Export Machine Code ..." msgstr "Maschinencode exportieren ..." -#: FlatCAMObj.py:5237 flatcamTools/ToolSolderPaste.py:1364 +#: FlatCAMObj.py:5244 flatcamTools/ToolSolderPaste.py:1364 msgid "[WARNING_NOTCL] Export Machine Code cancelled ..." msgstr "[WARNING_NOTCL] Export Machine Code cancelled ..." -#: FlatCAMObj.py:5248 +#: FlatCAMObj.py:5255 #, python-format msgid "[success] Machine Code file saved to: %s" msgstr "[success] Maschinencode-Datei gespeichert in: %s" -#: FlatCAMObj.py:5270 +#: FlatCAMObj.py:5277 #, python-format msgid "[ERROR]FlatCAMCNNJob.on_edit_code_click() -->%s" msgstr "[ERROR]FlatCAMCNNJob.on_edit_code_click() -->%s" -#: FlatCAMObj.py:5387 +#: FlatCAMObj.py:5394 #, python-format msgid "" "[WARNING_NOTCL] This CNCJob object can't be processed because it is a %s " @@ -1460,11 +1462,11 @@ msgstr "" "[WARNING_NOTCL] Dieses CNC-Auftrag Objekt kann nicht verarbeitet werden, da " "es sich um ein %s CNC-Auftrag Objekt handelt." -#: FlatCAMObj.py:5440 +#: FlatCAMObj.py:5447 msgid "[ERROR_NOTCL] G-code does not have a units code: either G20 or G21" msgstr "[ERROR_NOTCL] G-Code hat keinen Einheitencode: entweder G20 oder G21" -#: FlatCAMObj.py:5453 +#: FlatCAMObj.py:5460 msgid "" "[ERROR_NOTCL] Cancelled. The Toolchange Custom code is enabled but it's " "empty." @@ -1472,17 +1474,17 @@ msgstr "" "[ERROR_NOTCL] Abgebrochen. Der benutzerdefinierte Code zum Ändern des " "Werkzeugs ist aktiviert, aber er ist leer." -#: FlatCAMObj.py:5460 +#: FlatCAMObj.py:5467 msgid "[success] Toolchange G-code was replaced by a custom code." msgstr "" "[success] Der Werkzeugwechsel-G-Code wurde durch einen benutzerdefinierten " "Code ersetzt." -#: FlatCAMObj.py:5475 flatcamTools/ToolSolderPaste.py:1390 +#: FlatCAMObj.py:5482 flatcamTools/ToolSolderPaste.py:1390 msgid "[WARNING_NOTCL] No such file or directory" msgstr "[WARNING_NOTCL] Keine solche Datei oder Ordner" -#: FlatCAMObj.py:5494 FlatCAMObj.py:5506 +#: FlatCAMObj.py:5501 FlatCAMObj.py:5513 msgid "" "[WARNING_NOTCL] The used postprocessor file has to have in it's name: " "'toolchange_custom'" @@ -1490,16 +1492,16 @@ msgstr "" "[WARNING_NOTCL] Die verwendete Postprozessor-Datei muss im Namen enthalten " "sein: 'toolchange_custom'" -#: FlatCAMObj.py:5512 +#: FlatCAMObj.py:5519 msgid "[ERROR] There is no postprocessor file." msgstr "[ERROR] Es gibt keine Postprozessor-Datei." -#: ObjectCollection.py:416 +#: ObjectCollection.py:419 #, python-brace-format -msgid "Object renamed from {old} to {new}" -msgstr "Objekt umbenannt von {old} zu {new}" +msgid "Object renamed from {old} to {new}" +msgstr "Objekt umbenannt von {old} zu {new}" -#: ObjectCollection.py:751 +#: ObjectCollection.py:757 #, python-format msgid "[ERROR] Cause of error: %s" msgstr "[ERROR] Fehlerursache: %s" @@ -1533,18 +1535,18 @@ msgstr "[success] Objekt war schief ..." msgid "[ERROR_NOTCL] Failed to skew. No object selected" msgstr "[ERROR_NOTCL] Fehler beim Neigen Kein Objekt ausgewählt" -#: camlib.py:2733 camlib.py:2837 +#: camlib.py:2741 camlib.py:2847 #, python-format msgid "[WARNING] Coordinates missing, line ignored: %s" msgstr "[WARNING] Koordinaten fehlen, Zeile wird ignoriert: %s" -#: camlib.py:2734 camlib.py:2838 +#: camlib.py:2742 camlib.py:2848 msgid "[WARNING_NOTCL] GERBER file might be CORRUPT. Check the file !!!" msgstr "" "[WARNING_NOTCL] Die GERBER-Datei könnte CORRUPT sein. Überprüfen Sie die " "Datei !!!" -#: camlib.py:2792 +#: camlib.py:2802 #, python-format msgid "" "[ERROR] Region does not have enough points. File will be processed but there " @@ -1553,7 +1555,7 @@ msgstr "" "[ERROR] Region hat nicht genug Punkte. Die Datei wird verarbeitet, es treten " "jedoch Parserfehler auf. Linien Nummer: %s" -#: camlib.py:3247 +#: camlib.py:3257 #, python-format msgid "" "[ERROR]Gerber Parser ERROR.\n" @@ -1562,20 +1564,20 @@ msgstr "" "[ERROR] Gerber Parser ERROR.\n" "%s:" -#: camlib.py:3464 +#: camlib.py:3474 msgid "[success] Gerber Scale done." msgstr "[success] Gerber-Skalierung abgeschlossen." -#: camlib.py:3521 +#: camlib.py:3531 msgid "[success] Gerber Offset done." msgstr "[success] Gerber Offset fertig." -#: camlib.py:3915 +#: camlib.py:3925 #, python-format msgid "[ERROR_NOTCL] This is GCODE mark: %s" msgstr "[ERROR_NOTCL] Dies ist die GCODE-Marke: %s" -#: camlib.py:4029 +#: camlib.py:4039 #, python-format msgid "" "[WARNING] No tool diameter info's. See shell.\n" @@ -1592,7 +1594,7 @@ msgstr "" "Der Benutzer muss das resultierende Excellon-Objekt bearbeiten und die " "Durchmesser ändern, um die tatsächlichen Durchmesser widerzuspiegeln." -#: camlib.py:4494 +#: camlib.py:4504 #, python-brace-format msgid "" "[ERROR] Excellon Parser error.\n" @@ -1601,7 +1603,7 @@ msgstr "" "[ERROR] Fehler beim Excellon-Parser.\n" "Parsing fehlgeschlagen. Zeile {l_nr}: {line}\n" -#: camlib.py:4571 +#: camlib.py:4581 msgid "" "[WARNING] Excellon.create_geometry() -> a drill location was skipped due of " "not having a tool associated.\n" @@ -1611,12 +1613,12 @@ msgstr "" "da kein Werkzeug zugeordnet wurde.\n" "Überprüfen Sie den resultierenden GCode." -#: camlib.py:5113 +#: camlib.py:5123 #, python-format msgid "[ERROR] There is no such parameter: %s" msgstr "[ERROR] Es gibt keinen solchen Parameter: %s" -#: camlib.py:5183 +#: camlib.py:5193 msgid "" "[WARNING] The Cut Z parameter has positive value. It is the depth value to " "drill into material.\n" @@ -1631,7 +1633,7 @@ msgstr "" "einen negativen Wert. \n" "Überprüfen Sie den resultierenden CNC-Code (Gcode usw.)." -#: camlib.py:5190 camlib.py:5676 camlib.py:5947 +#: camlib.py:5200 camlib.py:5695 camlib.py:5966 #, python-format msgid "" "[WARNING] The Cut Z parameter is zero. There will be no cut, skipping %s file" @@ -1639,15 +1641,15 @@ msgstr "" "[WARNING] Der Parameter Cut Z ist Null. Es wird kein Schnitt ausgeführt, da " "die %s Datei übersprungen wird" -#: camlib.py:5412 camlib.py:5507 camlib.py:5565 +#: camlib.py:5429 camlib.py:5526 camlib.py:5584 msgid "[ERROR_NOTCL] The loaded Excellon file has no drills ..." msgstr "[ERROR_NOTCL] Die geladene Excellon-Datei hat keine Bohrer ..." -#: camlib.py:5512 +#: camlib.py:5531 msgid "[ERROR_NOTCL] Wrong optimization type selected." msgstr "[ERROR_NOTCL] Falscher Optimierungstyp ausgewählt." -#: camlib.py:5664 camlib.py:5935 +#: camlib.py:5683 camlib.py:5954 msgid "" "[ERROR_NOTCL] Cut_Z parameter is None or zero. Most likely a bad " "combinations of other parameters." @@ -1655,7 +1657,7 @@ msgstr "" "[ERROR_NOTCL] Der Parameter Cut_Z ist None oder Null. Höchstwahrscheinlich " "eine schlechte Kombination anderer Parameter." -#: camlib.py:5669 camlib.py:5940 +#: camlib.py:5688 camlib.py:5959 msgid "" "[WARNING] The Cut Z parameter has positive value. It is the depth value to " "cut into material.\n" @@ -1670,11 +1672,11 @@ msgstr "" "einen negativen Wert. \n" "Überprüfen Sie den resultierenden CNC-Code (Gcode usw.)." -#: camlib.py:5681 camlib.py:5952 +#: camlib.py:5700 camlib.py:5971 msgid "[ERROR_NOTCL] Travel Z parameter is None or zero." msgstr "[ERROR_NOTCL] Der Parameter für den Travel Z ist Kein oder Null." -#: camlib.py:5685 camlib.py:5956 +#: camlib.py:5704 camlib.py:5975 msgid "" "[WARNING] The Travel Z parameter has negative value. It is the height value " "to travel between cuts.\n" @@ -1688,7 +1690,7 @@ msgstr "" "einen Tippfehler handelt, konvertiert die App den Wert in einen positiven " "Wert. Überprüfen Sie den resultierenden CNC-Code (Gcode usw.)." -#: camlib.py:5692 camlib.py:5963 +#: camlib.py:5711 camlib.py:5982 #, python-format msgid "" "[WARNING] The Z Travel parameter is zero. This is dangerous, skipping %s file" @@ -1696,12 +1698,12 @@ msgstr "" "[WARNING] Der Parameter Z-Weg ist Null. Dies ist gefährlich, da die %s Datei " "übersprungen wird" -#: camlib.py:5822 +#: camlib.py:5841 #, python-format msgid "[ERROR]Expected a Geometry, got %s" msgstr "[ERROR] Eine Geometrie erwartet,%s erhalten" -#: camlib.py:5828 +#: camlib.py:5847 msgid "" "[ERROR_NOTCL] Trying to generate a CNC Job from a Geometry object without " "solid_geometry." @@ -1709,7 +1711,7 @@ msgstr "" "[ERROR_NOTCL] Der Versuch, einen CNC-Auftrag aus einem Geometrieobjekt ohne " "solid_geometry zu generieren." -#: camlib.py:5867 +#: camlib.py:5886 msgid "" "[ERROR_NOTCL] The Tool Offset value is too negative to use for the " "current_geometry.\n" @@ -1719,7 +1721,7 @@ msgstr "" "current_geometry zu verwenden.\n" "Erhöhen Sie den Wert (im Modul) und versuchen Sie es erneut." -#: camlib.py:6089 +#: camlib.py:6108 msgid "[ERROR_NOTCL] There is no tool data in the SolderPaste geometry." msgstr "" "[ERROR_NOTCL] In der SolderPaste-Geometrie sind keine Werkzeugdaten " @@ -1735,8 +1737,8 @@ msgstr "" #: flatcamEditors/FlatCAMExcEditor.py:446 #: flatcamEditors/FlatCAMExcEditor.py:471 #: flatcamEditors/FlatCAMGrbEditor.py:287 -#: flatcamEditors/FlatCAMGrbEditor.py:1447 -#: flatcamEditors/FlatCAMGrbEditor.py:1471 +#: flatcamEditors/FlatCAMGrbEditor.py:1454 +#: flatcamEditors/FlatCAMGrbEditor.py:1478 msgid "Click on target location ..." msgstr "Klicken Sie auf den Zielort ..." @@ -1798,7 +1800,7 @@ msgstr "" "[WARNING_NOTCL] Abgebrochen. Keine Bohrer zur Größenänderung ausgewählt ..." #: flatcamEditors/FlatCAMExcEditor.py:448 -#: flatcamEditors/FlatCAMGrbEditor.py:1449 +#: flatcamEditors/FlatCAMGrbEditor.py:1456 msgid "Click on reference location ..." msgstr "Klicken Sie auf die Referenzposition ..." @@ -1815,7 +1817,7 @@ msgid "Excellon Editor" msgstr "Excellon Editor" #: flatcamEditors/FlatCAMExcEditor.py:761 -#: flatcamEditors/FlatCAMGrbEditor.py:1705 +#: flatcamEditors/FlatCAMGrbEditor.py:1715 msgid "Name:" msgstr "Name:" @@ -1900,7 +1902,7 @@ msgstr "Größe ändern" msgid "Resize drill(s)" msgstr "Bohrer verkleinern" -#: flatcamEditors/FlatCAMExcEditor.py:885 flatcamGUI/FlatCAMGUI.py:1586 +#: flatcamEditors/FlatCAMExcEditor.py:885 flatcamGUI/FlatCAMGUI.py:1598 msgid "Add Drill Array" msgstr "Bohrer-Array hinzufügen" @@ -1918,12 +1920,12 @@ msgstr "" "Es kann lineares X (Y) oder rund sein" #: flatcamEditors/FlatCAMExcEditor.py:896 -#: flatcamEditors/FlatCAMGrbEditor.py:1938 +#: flatcamEditors/FlatCAMGrbEditor.py:1948 msgid "Linear" msgstr "Linear" #: flatcamEditors/FlatCAMExcEditor.py:897 -#: flatcamEditors/FlatCAMGrbEditor.py:1939 +#: flatcamEditors/FlatCAMGrbEditor.py:1949 msgid "Circular" msgstr "Kreisförmig" @@ -1937,13 +1939,13 @@ msgstr "Geben Sie an, wie viele Drills im Array enthalten sein sollen." #: flatcamEditors/FlatCAMExcEditor.py:923 #: flatcamEditors/FlatCAMExcEditor.py:968 -#: flatcamEditors/FlatCAMGrbEditor.py:1965 -#: flatcamEditors/FlatCAMGrbEditor.py:2010 +#: flatcamEditors/FlatCAMGrbEditor.py:1975 +#: flatcamEditors/FlatCAMGrbEditor.py:2020 msgid "Direction:" msgstr "Richtung:" #: flatcamEditors/FlatCAMExcEditor.py:925 -#: flatcamEditors/FlatCAMGrbEditor.py:1967 +#: flatcamEditors/FlatCAMGrbEditor.py:1977 msgid "" "Direction on which the linear array is oriented:\n" "- 'X' - horizontal axis \n" @@ -1955,32 +1957,27 @@ msgstr "" "- 'Y' - vertikale Achse oder\n" "- 'Winkel' - ein benutzerdefinierter Winkel für die Neigung des Arrays" -#: flatcamEditors/FlatCAMExcEditor.py:934 -#: flatcamEditors/FlatCAMGrbEditor.py:1976 -msgid "Angle" -msgstr "Winkel" - #: flatcamEditors/FlatCAMExcEditor.py:938 -#: flatcamEditors/FlatCAMGrbEditor.py:1980 +#: flatcamEditors/FlatCAMGrbEditor.py:1990 msgid "Pitch:" msgstr "Abstand:" #: flatcamEditors/FlatCAMExcEditor.py:940 -#: flatcamEditors/FlatCAMGrbEditor.py:1982 +#: flatcamEditors/FlatCAMGrbEditor.py:1992 msgid "Pitch = Distance between elements of the array." msgstr "Abstand = Abstand zwischen Elementen des Arrays." #: flatcamEditors/FlatCAMExcEditor.py:947 #: flatcamEditors/FlatCAMExcEditor.py:983 #: flatcamEditors/FlatCAMGeoEditor.py:664 -#: flatcamEditors/FlatCAMGrbEditor.py:1989 -#: flatcamEditors/FlatCAMGrbEditor.py:2025 -#: flatcamEditors/FlatCAMGrbEditor.py:3833 flatcamTools/ToolTransform.py:68 +#: flatcamEditors/FlatCAMGrbEditor.py:1999 +#: flatcamEditors/FlatCAMGrbEditor.py:2035 +#: flatcamEditors/FlatCAMGrbEditor.py:3931 flatcamTools/ToolTransform.py:68 msgid "Angle:" msgstr "Winkel:" #: flatcamEditors/FlatCAMExcEditor.py:949 -#: flatcamEditors/FlatCAMGrbEditor.py:1991 +#: flatcamEditors/FlatCAMGrbEditor.py:2001 msgid "" "Angle at which the linear array is placed.\n" "The precision is of max 2 decimals.\n" @@ -1993,7 +1990,7 @@ msgstr "" "Maximalwert ist: 360.00 Grad." #: flatcamEditors/FlatCAMExcEditor.py:970 -#: flatcamEditors/FlatCAMGrbEditor.py:2012 +#: flatcamEditors/FlatCAMGrbEditor.py:2022 msgid "" "Direction for circular array.Can be CW = clockwise or CCW = counter " "clockwise." @@ -2002,7 +1999,7 @@ msgstr "" "Gegenuhrzeigersinn sein." #: flatcamEditors/FlatCAMExcEditor.py:985 -#: flatcamEditors/FlatCAMGrbEditor.py:2027 +#: flatcamEditors/FlatCAMGrbEditor.py:2037 msgid "Angle at which each element in circular array is placed." msgstr "" "Winkel, um den jedes Element in einer kreisförmigen Anordnung platziert wird." @@ -2017,7 +2014,7 @@ msgstr "" "Speichern und korrigieren Sie Excellon, wenn Sie dieses Tool hinzufügen " "möchten." -#: flatcamEditors/FlatCAMExcEditor.py:1456 flatcamGUI/FlatCAMGUI.py:2956 +#: flatcamEditors/FlatCAMExcEditor.py:1456 flatcamGUI/FlatCAMGUI.py:2980 #, python-brace-format msgid "[success] Added new tool with dia: {dia} {units}" msgstr "[success] Neues Werkzeug mit Durchmesser hinzugefügt: {dia} {units}" @@ -2031,7 +2028,7 @@ 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}" -#: flatcamEditors/FlatCAMExcEditor.py:1974 +#: flatcamEditors/FlatCAMExcEditor.py:2032 msgid "" "[ERROR_NOTCL] There are no Tools definitions in the file. Aborting Excellon " "creation." @@ -2039,34 +2036,34 @@ msgstr "" "[ERROR_NOTCL] Die Datei enthält keine Werkzeugdefinitionen. Abbruch der " "Excellon-Erstellung." -#: flatcamEditors/FlatCAMExcEditor.py:1983 +#: flatcamEditors/FlatCAMExcEditor.py:2041 msgid "Creating Excellon." msgstr "Excellon erstellen." -#: flatcamEditors/FlatCAMExcEditor.py:1992 +#: flatcamEditors/FlatCAMExcEditor.py:2050 msgid "[success] Excellon editing finished." msgstr "[success] Excellon-Bearbeitung abgeschlossen." -#: flatcamEditors/FlatCAMExcEditor.py:2009 +#: flatcamEditors/FlatCAMExcEditor.py:2067 msgid "[WARNING_NOTCL] Cancelled. There is no Tool/Drill selected" msgstr "[WARNING_NOTCL] Abgebrochen. Es ist kein Werkzeug / Bohrer ausgewählt" -#: flatcamEditors/FlatCAMExcEditor.py:2508 +#: flatcamEditors/FlatCAMExcEditor.py:2572 msgid "[success] Done. Drill(s) deleted." msgstr "[success] Erledigt. Bohrer gelöscht." -#: flatcamEditors/FlatCAMExcEditor.py:2578 -#: flatcamEditors/FlatCAMGrbEditor.py:3621 +#: flatcamEditors/FlatCAMExcEditor.py:2642 +#: flatcamEditors/FlatCAMGrbEditor.py:3719 msgid "Click on the circular array Center position" msgstr "Klicken Sie auf die kreisförmige Anordnung in der Mitte" #: flatcamEditors/FlatCAMGeoEditor.py:78 -#: flatcamEditors/FlatCAMGrbEditor.py:1855 +#: flatcamEditors/FlatCAMGrbEditor.py:1865 msgid "Buffer distance:" msgstr "Pufferabstand:" #: flatcamEditors/FlatCAMGeoEditor.py:79 -#: flatcamEditors/FlatCAMGrbEditor.py:1856 +#: flatcamEditors/FlatCAMGrbEditor.py:1866 msgid "Buffer corner:" msgstr "Pufferecke:" @@ -2086,17 +2083,17 @@ msgstr "" "der Ecke treffen, direkt verbindet" #: flatcamEditors/FlatCAMGeoEditor.py:87 -#: flatcamEditors/FlatCAMGrbEditor.py:1864 +#: flatcamEditors/FlatCAMGrbEditor.py:1874 msgid "Round" msgstr "Runden" #: flatcamEditors/FlatCAMGeoEditor.py:88 -#: flatcamEditors/FlatCAMGrbEditor.py:1865 +#: flatcamEditors/FlatCAMGrbEditor.py:1875 msgid "Square" msgstr "Quadrat" #: flatcamEditors/FlatCAMGeoEditor.py:89 -#: flatcamEditors/FlatCAMGrbEditor.py:1866 +#: flatcamEditors/FlatCAMGrbEditor.py:1876 msgid "Beveled" msgstr "Abgeschrägt" @@ -2113,17 +2110,17 @@ msgid "Full Buffer" msgstr "Voller Puffer" #: flatcamEditors/FlatCAMGeoEditor.py:125 -#: flatcamEditors/FlatCAMGeoEditor.py:2594 +#: flatcamEditors/FlatCAMGeoEditor.py:2609 msgid "Buffer Tool" msgstr "Pufferwerkzeug" #: flatcamEditors/FlatCAMGeoEditor.py:136 #: flatcamEditors/FlatCAMGeoEditor.py:153 #: flatcamEditors/FlatCAMGeoEditor.py:170 -#: flatcamEditors/FlatCAMGeoEditor.py:2612 -#: flatcamEditors/FlatCAMGeoEditor.py:2638 -#: flatcamEditors/FlatCAMGeoEditor.py:2664 -#: flatcamEditors/FlatCAMGrbEditor.py:3673 +#: flatcamEditors/FlatCAMGeoEditor.py:2627 +#: flatcamEditors/FlatCAMGeoEditor.py:2653 +#: flatcamEditors/FlatCAMGeoEditor.py:2679 +#: flatcamEditors/FlatCAMGrbEditor.py:3771 msgid "" "[WARNING_NOTCL] Buffer distance value is missing or wrong format. Add it and " "retry." @@ -2135,17 +2132,17 @@ msgstr "" msgid "Text Tool" msgstr "Textwerkzeug" -#: flatcamEditors/FlatCAMGeoEditor.py:399 flatcamGUI/FlatCAMGUI.py:776 +#: flatcamEditors/FlatCAMGeoEditor.py:399 flatcamGUI/FlatCAMGUI.py:792 msgid "Tool" msgstr "Werkzeug" -#: flatcamEditors/FlatCAMGeoEditor.py:430 flatcamGUI/FlatCAMGUI.py:3922 -#: flatcamGUI/FlatCAMGUI.py:5128 flatcamGUI/FlatCAMGUI.py:5404 -#: flatcamGUI/FlatCAMGUI.py:5544 flatcamGUI/ObjectUI.py:260 +#: flatcamEditors/FlatCAMGeoEditor.py:430 flatcamGUI/FlatCAMGUI.py:3996 +#: flatcamGUI/FlatCAMGUI.py:5202 flatcamGUI/FlatCAMGUI.py:5478 +#: flatcamGUI/FlatCAMGUI.py:5618 flatcamGUI/ObjectUI.py:260 msgid "Tool dia:" msgstr "Werkzeugdurchmesser:" -#: flatcamEditors/FlatCAMGeoEditor.py:432 flatcamGUI/FlatCAMGUI.py:5546 +#: flatcamEditors/FlatCAMGeoEditor.py:432 flatcamGUI/FlatCAMGUI.py:5620 msgid "" "Diameter of the tool to\n" "be used in the operation." @@ -2153,8 +2150,8 @@ msgstr "" "Durchmesser des Werkzeugs bis\n" "in der Operation verwendet werden." -#: flatcamEditors/FlatCAMGeoEditor.py:441 flatcamGUI/FlatCAMGUI.py:5310 -#: flatcamGUI/FlatCAMGUI.py:5555 flatcamTools/ToolNonCopperClear.py:165 +#: flatcamEditors/FlatCAMGeoEditor.py:441 flatcamGUI/FlatCAMGUI.py:5384 +#: flatcamGUI/FlatCAMGUI.py:5629 flatcamTools/ToolNonCopperClear.py:165 #: flatcamTools/ToolPaint.py:160 msgid "Overlap Rate:" msgstr "Überlappungsrate:" @@ -2188,14 +2185,14 @@ msgstr "" "Höhere Werte = langsame Bearbeitung und langsame Ausführung auf CNC\n" "wegen zu vieler Wege." -#: flatcamEditors/FlatCAMGeoEditor.py:459 flatcamGUI/FlatCAMGUI.py:5326 -#: flatcamGUI/FlatCAMGUI.py:5412 flatcamGUI/FlatCAMGUI.py:5565 +#: flatcamEditors/FlatCAMGeoEditor.py:459 flatcamGUI/FlatCAMGUI.py:5400 +#: flatcamGUI/FlatCAMGUI.py:5486 flatcamGUI/FlatCAMGUI.py:5639 #: flatcamTools/ToolCutOut.py:86 flatcamTools/ToolNonCopperClear.py:181 #: flatcamTools/ToolPaint.py:177 msgid "Margin:" msgstr "Marge:" -#: flatcamEditors/FlatCAMGeoEditor.py:461 flatcamGUI/FlatCAMGUI.py:5567 +#: flatcamEditors/FlatCAMGeoEditor.py:461 flatcamGUI/FlatCAMGUI.py:5641 #: flatcamTools/ToolPaint.py:179 msgid "" "Distance by which to avoid\n" @@ -2206,13 +2203,13 @@ msgstr "" "die Kanten des Polygons bis\n" "gemalt werden." -#: flatcamEditors/FlatCAMGeoEditor.py:470 flatcamGUI/FlatCAMGUI.py:5335 -#: flatcamGUI/FlatCAMGUI.py:5576 flatcamTools/ToolNonCopperClear.py:190 +#: flatcamEditors/FlatCAMGeoEditor.py:470 flatcamGUI/FlatCAMGUI.py:5409 +#: flatcamGUI/FlatCAMGUI.py:5650 flatcamTools/ToolNonCopperClear.py:190 #: flatcamTools/ToolPaint.py:188 msgid "Method:" msgstr "Methode:" -#: flatcamEditors/FlatCAMGeoEditor.py:472 flatcamGUI/FlatCAMGUI.py:5578 +#: flatcamEditors/FlatCAMGeoEditor.py:472 flatcamGUI/FlatCAMGUI.py:5652 msgid "" "Algorithm to paint the polygon:
Standard: Fixed step inwards." "
Seed-based: Outwards from seed." @@ -2220,29 +2217,14 @@ msgstr "" "Algorithmus zum Malen des Polygons:
Standard: Feststehender " "Schritt nach innen.
Samenbasiert: Aus dem Samen heraus." -#: flatcamEditors/FlatCAMGeoEditor.py:478 flatcamGUI/FlatCAMGUI.py:5344 -#: flatcamGUI/FlatCAMGUI.py:5584 -msgid "Standard" -msgstr "Standard" - -#: flatcamEditors/FlatCAMGeoEditor.py:479 flatcamGUI/FlatCAMGUI.py:5345 -#: flatcamGUI/FlatCAMGUI.py:5585 -msgid "Seed-based" -msgstr "Samenbasiert" - -#: flatcamEditors/FlatCAMGeoEditor.py:480 flatcamGUI/FlatCAMGUI.py:5346 -#: flatcamGUI/FlatCAMGUI.py:5586 -msgid "Straight lines" -msgstr "Gerade Linien" - -#: flatcamEditors/FlatCAMGeoEditor.py:485 flatcamGUI/FlatCAMGUI.py:5351 -#: flatcamGUI/FlatCAMGUI.py:5591 flatcamTools/ToolNonCopperClear.py:206 +#: flatcamEditors/FlatCAMGeoEditor.py:485 flatcamGUI/FlatCAMGUI.py:5425 +#: flatcamGUI/FlatCAMGUI.py:5665 flatcamTools/ToolNonCopperClear.py:206 #: flatcamTools/ToolPaint.py:204 msgid "Connect:" msgstr "Verbinden:" -#: flatcamEditors/FlatCAMGeoEditor.py:487 flatcamGUI/FlatCAMGUI.py:5353 -#: flatcamGUI/FlatCAMGUI.py:5593 flatcamTools/ToolNonCopperClear.py:208 +#: flatcamEditors/FlatCAMGeoEditor.py:487 flatcamGUI/FlatCAMGUI.py:5427 +#: flatcamGUI/FlatCAMGUI.py:5667 flatcamTools/ToolNonCopperClear.py:208 #: flatcamTools/ToolPaint.py:206 msgid "" "Draw lines between resulting\n" @@ -2251,14 +2233,14 @@ msgstr "" "Zeichnen Sie Linien zwischen den Ergebnissen\n" "Segmente, um Werkzeuglifte zu minimieren." -#: flatcamEditors/FlatCAMGeoEditor.py:494 flatcamGUI/FlatCAMGUI.py:5360 -#: flatcamGUI/FlatCAMGUI.py:5601 flatcamTools/ToolNonCopperClear.py:215 +#: flatcamEditors/FlatCAMGeoEditor.py:494 flatcamGUI/FlatCAMGUI.py:5434 +#: flatcamGUI/FlatCAMGUI.py:5675 flatcamTools/ToolNonCopperClear.py:215 #: flatcamTools/ToolPaint.py:213 msgid "Contour:" msgstr "Kontur:" -#: flatcamEditors/FlatCAMGeoEditor.py:496 flatcamGUI/FlatCAMGUI.py:5362 -#: flatcamGUI/FlatCAMGUI.py:5603 flatcamTools/ToolNonCopperClear.py:217 +#: flatcamEditors/FlatCAMGeoEditor.py:496 flatcamGUI/FlatCAMGUI.py:5436 +#: flatcamGUI/FlatCAMGUI.py:5677 flatcamTools/ToolNonCopperClear.py:217 #: flatcamTools/ToolPaint.py:215 msgid "" "Cut around the perimeter of the polygon\n" @@ -2272,7 +2254,7 @@ msgid "Paint" msgstr "Malen" #: flatcamEditors/FlatCAMGeoEditor.py:526 flatcamGUI/FlatCAMGUI.py:635 -#: flatcamGUI/FlatCAMGUI.py:1840 flatcamGUI/ObjectUI.py:1308 +#: flatcamGUI/FlatCAMGUI.py:1851 flatcamGUI/ObjectUI.py:1308 #: flatcamTools/ToolPaint.py:341 msgid "Paint Tool" msgstr "Werkzeug Malen" @@ -2307,62 +2289,62 @@ msgstr "" "hinzu und versuchen Sie es erneut." #: flatcamEditors/FlatCAMGeoEditor.py:605 -#: flatcamEditors/FlatCAMGeoEditor.py:2619 -#: flatcamEditors/FlatCAMGeoEditor.py:2645 -#: flatcamEditors/FlatCAMGeoEditor.py:2671 +#: flatcamEditors/FlatCAMGeoEditor.py:2634 +#: flatcamEditors/FlatCAMGeoEditor.py:2660 +#: flatcamEditors/FlatCAMGeoEditor.py:2686 #: flatcamTools/ToolNonCopperClear.py:813 flatcamTools/ToolProperties.py:104 msgid "Tools" msgstr "Werkzeuge" #: flatcamEditors/FlatCAMGeoEditor.py:616 #: flatcamEditors/FlatCAMGeoEditor.py:989 -#: flatcamEditors/FlatCAMGrbEditor.py:3785 -#: flatcamEditors/FlatCAMGrbEditor.py:4169 flatcamGUI/FlatCAMGUI.py:644 -#: flatcamGUI/FlatCAMGUI.py:1851 flatcamTools/ToolTransform.py:398 +#: flatcamEditors/FlatCAMGrbEditor.py:3883 +#: flatcamEditors/FlatCAMGrbEditor.py:4267 flatcamGUI/FlatCAMGUI.py:646 +#: flatcamGUI/FlatCAMGUI.py:1864 flatcamTools/ToolTransform.py:398 msgid "Transform Tool" msgstr "Werkzeug Umwandeln" #: flatcamEditors/FlatCAMGeoEditor.py:617 #: flatcamEditors/FlatCAMGeoEditor.py:678 -#: flatcamEditors/FlatCAMGrbEditor.py:3786 -#: flatcamEditors/FlatCAMGrbEditor.py:3847 flatcamTools/ToolTransform.py:24 +#: flatcamEditors/FlatCAMGrbEditor.py:3884 +#: flatcamEditors/FlatCAMGrbEditor.py:3945 flatcamTools/ToolTransform.py:24 #: flatcamTools/ToolTransform.py:82 msgid "Rotate" msgstr "Drehen" #: flatcamEditors/FlatCAMGeoEditor.py:618 -#: flatcamEditors/FlatCAMGrbEditor.py:3787 flatcamTools/ToolTransform.py:25 +#: flatcamEditors/FlatCAMGrbEditor.py:3885 flatcamTools/ToolTransform.py:25 msgid "Skew/Shear" msgstr "Neigung/Schere" #: flatcamEditors/FlatCAMGeoEditor.py:619 -#: flatcamEditors/FlatCAMGrbEditor.py:1910 -#: flatcamEditors/FlatCAMGrbEditor.py:3788 flatcamGUI/FlatCAMGUI.py:708 -#: flatcamGUI/FlatCAMGUI.py:1912 flatcamGUI/ObjectUI.py:100 +#: flatcamEditors/FlatCAMGrbEditor.py:1920 +#: flatcamEditors/FlatCAMGrbEditor.py:3886 flatcamGUI/FlatCAMGUI.py:709 +#: flatcamGUI/FlatCAMGUI.py:1930 flatcamGUI/ObjectUI.py:100 #: flatcamTools/ToolTransform.py:26 msgid "Scale" msgstr "Skalieren" #: flatcamEditors/FlatCAMGeoEditor.py:620 -#: flatcamEditors/FlatCAMGrbEditor.py:3789 flatcamTools/ToolTransform.py:27 +#: flatcamEditors/FlatCAMGrbEditor.py:3887 flatcamTools/ToolTransform.py:27 msgid "Mirror (Flip)" msgstr "Spiegeln (Flip)" #: flatcamEditors/FlatCAMGeoEditor.py:621 -#: flatcamEditors/FlatCAMGrbEditor.py:3790 flatcamGUI/ObjectUI.py:127 +#: flatcamEditors/FlatCAMGrbEditor.py:3888 flatcamGUI/ObjectUI.py:127 #: flatcamGUI/ObjectUI.py:888 flatcamGUI/ObjectUI.py:1446 #: flatcamTools/ToolTransform.py:28 msgid "Offset" msgstr "Versatz" #: flatcamEditors/FlatCAMGeoEditor.py:632 -#: flatcamEditors/FlatCAMGrbEditor.py:3801 +#: flatcamEditors/FlatCAMGrbEditor.py:3899 #, python-format msgid "Editor %s" msgstr "Editor %s" #: flatcamEditors/FlatCAMGeoEditor.py:666 -#: flatcamEditors/FlatCAMGrbEditor.py:3835 flatcamTools/ToolTransform.py:70 +#: flatcamEditors/FlatCAMGrbEditor.py:3933 flatcamTools/ToolTransform.py:70 msgid "" "Angle for Rotation action, in degrees.\n" "Float number between -360 and 359.\n" @@ -2375,7 +2357,7 @@ msgstr "" "Negative Zahlen für CCW-Bewegung." #: flatcamEditors/FlatCAMGeoEditor.py:680 -#: flatcamEditors/FlatCAMGrbEditor.py:3849 +#: flatcamEditors/FlatCAMGrbEditor.py:3947 msgid "" "Rotate the selected shape(s).\n" "The point of reference is the middle of\n" @@ -2386,14 +2368,14 @@ msgstr "" "der Begrenzungsrahmen für alle ausgewählten Formen." #: flatcamEditors/FlatCAMGeoEditor.py:703 -#: flatcamEditors/FlatCAMGrbEditor.py:3872 flatcamTools/ToolTransform.py:107 +#: flatcamEditors/FlatCAMGrbEditor.py:3970 flatcamTools/ToolTransform.py:107 msgid "Angle X:" msgstr "Winkel X:" #: flatcamEditors/FlatCAMGeoEditor.py:705 #: flatcamEditors/FlatCAMGeoEditor.py:723 -#: flatcamEditors/FlatCAMGrbEditor.py:3874 -#: flatcamEditors/FlatCAMGrbEditor.py:3892 flatcamTools/ToolTransform.py:109 +#: flatcamEditors/FlatCAMGrbEditor.py:3972 +#: flatcamEditors/FlatCAMGrbEditor.py:3990 flatcamTools/ToolTransform.py:109 #: flatcamTools/ToolTransform.py:127 msgid "" "Angle for Skew action, in degrees.\n" @@ -2403,14 +2385,14 @@ msgstr "" "Float-Nummer zwischen -360 und 359." #: flatcamEditors/FlatCAMGeoEditor.py:714 -#: flatcamEditors/FlatCAMGrbEditor.py:3883 flatcamTools/ToolTransform.py:118 +#: flatcamEditors/FlatCAMGrbEditor.py:3981 flatcamTools/ToolTransform.py:118 msgid "Skew X" msgstr "Neigung X" #: flatcamEditors/FlatCAMGeoEditor.py:716 #: flatcamEditors/FlatCAMGeoEditor.py:734 -#: flatcamEditors/FlatCAMGrbEditor.py:3885 -#: flatcamEditors/FlatCAMGrbEditor.py:3903 +#: flatcamEditors/FlatCAMGrbEditor.py:3983 +#: flatcamEditors/FlatCAMGrbEditor.py:4001 msgid "" "Skew/shear the selected shape(s).\n" "The point of reference is the middle of\n" @@ -2421,34 +2403,34 @@ msgstr "" "der Begrenzungsrahmen für alle ausgewählten Formen." #: flatcamEditors/FlatCAMGeoEditor.py:721 -#: flatcamEditors/FlatCAMGrbEditor.py:3890 flatcamTools/ToolTransform.py:125 +#: flatcamEditors/FlatCAMGrbEditor.py:3988 flatcamTools/ToolTransform.py:125 msgid "Angle Y:" msgstr "Winkel Y:" #: flatcamEditors/FlatCAMGeoEditor.py:732 -#: flatcamEditors/FlatCAMGrbEditor.py:3901 flatcamTools/ToolTransform.py:136 +#: flatcamEditors/FlatCAMGrbEditor.py:3999 flatcamTools/ToolTransform.py:136 msgid "Skew Y" msgstr "Neigung Y" #: flatcamEditors/FlatCAMGeoEditor.py:760 -#: flatcamEditors/FlatCAMGrbEditor.py:3929 flatcamTools/ToolTransform.py:164 +#: flatcamEditors/FlatCAMGrbEditor.py:4027 flatcamTools/ToolTransform.py:164 msgid "Factor X:" msgstr "Faktor X:" #: flatcamEditors/FlatCAMGeoEditor.py:762 -#: flatcamEditors/FlatCAMGrbEditor.py:3931 flatcamTools/ToolTransform.py:166 +#: flatcamEditors/FlatCAMGrbEditor.py:4029 flatcamTools/ToolTransform.py:166 msgid "Factor for Scale action over X axis." msgstr "Faktor für die Skalierungsaktion über der X-Achse." #: flatcamEditors/FlatCAMGeoEditor.py:770 -#: flatcamEditors/FlatCAMGrbEditor.py:3939 flatcamTools/ToolTransform.py:174 +#: flatcamEditors/FlatCAMGrbEditor.py:4037 flatcamTools/ToolTransform.py:174 msgid "Scale X" msgstr "Maßstab X" #: flatcamEditors/FlatCAMGeoEditor.py:772 #: flatcamEditors/FlatCAMGeoEditor.py:789 -#: flatcamEditors/FlatCAMGrbEditor.py:3941 -#: flatcamEditors/FlatCAMGrbEditor.py:3958 +#: flatcamEditors/FlatCAMGrbEditor.py:4039 +#: flatcamEditors/FlatCAMGrbEditor.py:4056 msgid "" "Scale the selected shape(s).\n" "The point of reference depends on \n" @@ -2459,28 +2441,28 @@ msgstr "" "das Kontrollkästchen Skalenreferenz." #: flatcamEditors/FlatCAMGeoEditor.py:777 -#: flatcamEditors/FlatCAMGrbEditor.py:3946 flatcamTools/ToolTransform.py:181 +#: flatcamEditors/FlatCAMGrbEditor.py:4044 flatcamTools/ToolTransform.py:181 msgid "Factor Y:" msgstr "Faktor Y:" #: flatcamEditors/FlatCAMGeoEditor.py:779 -#: flatcamEditors/FlatCAMGrbEditor.py:3948 flatcamTools/ToolTransform.py:183 +#: flatcamEditors/FlatCAMGrbEditor.py:4046 flatcamTools/ToolTransform.py:183 msgid "Factor for Scale action over Y axis." msgstr "Faktor für die Skalierungsaktion über der Y-Achse." #: flatcamEditors/FlatCAMGeoEditor.py:787 -#: flatcamEditors/FlatCAMGrbEditor.py:3956 flatcamTools/ToolTransform.py:191 +#: flatcamEditors/FlatCAMGrbEditor.py:4054 flatcamTools/ToolTransform.py:191 msgid "Scale Y" msgstr "Maßstab Y" #: flatcamEditors/FlatCAMGeoEditor.py:796 -#: flatcamEditors/FlatCAMGrbEditor.py:3965 flatcamGUI/FlatCAMGUI.py:5950 +#: flatcamEditors/FlatCAMGrbEditor.py:4063 flatcamGUI/FlatCAMGUI.py:6024 #: flatcamTools/ToolTransform.py:200 msgid "Link" msgstr "Verknüpfung" #: flatcamEditors/FlatCAMGeoEditor.py:798 -#: flatcamEditors/FlatCAMGrbEditor.py:3967 +#: flatcamEditors/FlatCAMGrbEditor.py:4065 msgid "" "Scale the selected shape(s)\n" "using the Scale Factor X for both axis." @@ -2489,13 +2471,13 @@ msgstr "" "Verwenden des Skalierungsfaktors X für beide Achsen." #: flatcamEditors/FlatCAMGeoEditor.py:804 -#: flatcamEditors/FlatCAMGrbEditor.py:3973 flatcamGUI/FlatCAMGUI.py:5958 +#: flatcamEditors/FlatCAMGrbEditor.py:4071 flatcamGUI/FlatCAMGUI.py:6032 #: flatcamTools/ToolTransform.py:208 msgid "Scale Reference" msgstr "Skalenreferenz" #: flatcamEditors/FlatCAMGeoEditor.py:806 -#: flatcamEditors/FlatCAMGrbEditor.py:3975 +#: flatcamEditors/FlatCAMGrbEditor.py:4073 msgid "" "Scale the selected shape(s)\n" "using the origin reference when checked,\n" @@ -2508,24 +2490,24 @@ msgstr "" "der ausgewählten Formen, wenn nicht markiert." #: flatcamEditors/FlatCAMGeoEditor.py:834 -#: flatcamEditors/FlatCAMGrbEditor.py:4004 flatcamTools/ToolTransform.py:238 +#: flatcamEditors/FlatCAMGrbEditor.py:4102 flatcamTools/ToolTransform.py:238 msgid "Value X:" msgstr "Wert X:" #: flatcamEditors/FlatCAMGeoEditor.py:836 -#: flatcamEditors/FlatCAMGrbEditor.py:4006 flatcamTools/ToolTransform.py:240 +#: flatcamEditors/FlatCAMGrbEditor.py:4104 flatcamTools/ToolTransform.py:240 msgid "Value for Offset action on X axis." msgstr "Wert für die Offset-Aktion auf der X-Achse." #: flatcamEditors/FlatCAMGeoEditor.py:844 -#: flatcamEditors/FlatCAMGrbEditor.py:4014 flatcamTools/ToolTransform.py:248 +#: flatcamEditors/FlatCAMGrbEditor.py:4112 flatcamTools/ToolTransform.py:248 msgid "Offset X" msgstr "Versatz X" #: flatcamEditors/FlatCAMGeoEditor.py:846 #: flatcamEditors/FlatCAMGeoEditor.py:864 -#: flatcamEditors/FlatCAMGrbEditor.py:4016 -#: flatcamEditors/FlatCAMGrbEditor.py:4034 +#: flatcamEditors/FlatCAMGrbEditor.py:4114 +#: flatcamEditors/FlatCAMGrbEditor.py:4132 msgid "" "Offset the selected shape(s).\n" "The point of reference is the middle of\n" @@ -2536,29 +2518,29 @@ msgstr "" "der Begrenzungsrahmen für alle ausgewählten Formen.\n" #: flatcamEditors/FlatCAMGeoEditor.py:852 -#: flatcamEditors/FlatCAMGrbEditor.py:4022 flatcamTools/ToolTransform.py:255 +#: flatcamEditors/FlatCAMGrbEditor.py:4120 flatcamTools/ToolTransform.py:255 msgid "Value Y:" msgstr "Wert Y:" #: flatcamEditors/FlatCAMGeoEditor.py:854 -#: flatcamEditors/FlatCAMGrbEditor.py:4024 flatcamTools/ToolTransform.py:257 +#: flatcamEditors/FlatCAMGrbEditor.py:4122 flatcamTools/ToolTransform.py:257 msgid "Value for Offset action on Y axis." msgstr "Wert für die Offset-Aktion auf der Y-Achse." #: flatcamEditors/FlatCAMGeoEditor.py:862 -#: flatcamEditors/FlatCAMGrbEditor.py:4032 flatcamTools/ToolTransform.py:265 +#: flatcamEditors/FlatCAMGrbEditor.py:4130 flatcamTools/ToolTransform.py:265 msgid "Offset Y" msgstr "Versatz Y" #: flatcamEditors/FlatCAMGeoEditor.py:893 -#: flatcamEditors/FlatCAMGrbEditor.py:4063 flatcamTools/ToolTransform.py:295 +#: flatcamEditors/FlatCAMGrbEditor.py:4161 flatcamTools/ToolTransform.py:295 msgid "Flip on X" msgstr "Flip auf X" #: flatcamEditors/FlatCAMGeoEditor.py:895 #: flatcamEditors/FlatCAMGeoEditor.py:903 -#: flatcamEditors/FlatCAMGrbEditor.py:4065 -#: flatcamEditors/FlatCAMGrbEditor.py:4073 +#: flatcamEditors/FlatCAMGrbEditor.py:4163 +#: flatcamEditors/FlatCAMGrbEditor.py:4171 msgid "" "Flip the selected shape(s) over the X axis.\n" "Does not create a new shape." @@ -2567,17 +2549,17 @@ msgstr "" "Erzeugt keine neue Form." #: flatcamEditors/FlatCAMGeoEditor.py:901 -#: flatcamEditors/FlatCAMGrbEditor.py:4071 flatcamTools/ToolTransform.py:303 +#: flatcamEditors/FlatCAMGrbEditor.py:4169 flatcamTools/ToolTransform.py:303 msgid "Flip on Y" msgstr "Flip auf Y" #: flatcamEditors/FlatCAMGeoEditor.py:910 -#: flatcamEditors/FlatCAMGrbEditor.py:4080 flatcamTools/ToolTransform.py:312 +#: flatcamEditors/FlatCAMGrbEditor.py:4178 flatcamTools/ToolTransform.py:312 msgid "Ref Pt" msgstr "Ref. Pt" #: flatcamEditors/FlatCAMGeoEditor.py:912 -#: flatcamEditors/FlatCAMGrbEditor.py:4082 +#: flatcamEditors/FlatCAMGrbEditor.py:4180 msgid "" "Flip the selected shape(s)\n" "around the point in Point Entry Field.\n" @@ -2601,12 +2583,12 @@ msgstr "" "Punkt-Eingabefeld und klicken Sie auf X (Y) drehen" #: flatcamEditors/FlatCAMGeoEditor.py:924 -#: flatcamEditors/FlatCAMGrbEditor.py:4094 flatcamTools/ToolTransform.py:325 +#: flatcamEditors/FlatCAMGrbEditor.py:4192 flatcamTools/ToolTransform.py:325 msgid "Point:" msgstr "Punkt:" #: flatcamEditors/FlatCAMGeoEditor.py:926 -#: flatcamEditors/FlatCAMGrbEditor.py:4096 +#: flatcamEditors/FlatCAMGrbEditor.py:4194 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" @@ -2617,18 +2599,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:936 -#: flatcamEditors/FlatCAMGrbEditor.py:1820 -#: flatcamEditors/FlatCAMGrbEditor.py:4106 flatcamGUI/ObjectUI.py:988 -#: flatcamTools/ToolDblSided.py:160 flatcamTools/ToolDblSided.py:208 -#: flatcamTools/ToolNonCopperClear.py:134 flatcamTools/ToolPaint.py:131 -#: flatcamTools/ToolSolderPaste.py:115 flatcamTools/ToolSolderPaste.py:479 -#: flatcamTools/ToolTransform.py:337 -msgid "Add" -msgstr "Hinzufügen" - #: flatcamEditors/FlatCAMGeoEditor.py:938 -#: flatcamEditors/FlatCAMGrbEditor.py:4108 flatcamTools/ToolTransform.py:339 +#: flatcamEditors/FlatCAMGrbEditor.py:4206 flatcamTools/ToolTransform.py:339 msgid "" "The point coordinates can be captured by\n" "left click on canvas together with pressing\n" @@ -2640,272 +2612,272 @@ msgstr "" "einzufügen." #: flatcamEditors/FlatCAMGeoEditor.py:1053 -#: flatcamEditors/FlatCAMGrbEditor.py:4233 +#: flatcamEditors/FlatCAMGrbEditor.py:4331 msgid "[WARNING_NOTCL] Transformation cancelled. No shape selected." msgstr "[WARNING_NOTCL] Transformation abgebrochen Keine Form ausgewählt" #: flatcamEditors/FlatCAMGeoEditor.py:1074 -#: flatcamEditors/FlatCAMGrbEditor.py:4253 flatcamTools/ToolTransform.py:468 +#: flatcamEditors/FlatCAMGrbEditor.py:4351 flatcamTools/ToolTransform.py:468 msgid "[ERROR_NOTCL] Wrong value format entered for Rotate, use a number." msgstr "" "[ERROR_NOTCL] Falsches Werteformat für Drehen eingegeben, verwenden Sie eine " "Zahl." #: flatcamEditors/FlatCAMGeoEditor.py:1111 -#: flatcamEditors/FlatCAMGrbEditor.py:4290 flatcamTools/ToolTransform.py:502 +#: flatcamEditors/FlatCAMGrbEditor.py:4388 flatcamTools/ToolTransform.py:502 msgid "[ERROR_NOTCL] Wrong value format entered for Skew X, use a number." msgstr "" "[ERROR_NOTCL] Falsches Werteformat für Skew X eingegeben, verwenden Sie eine " "Zahl." #: flatcamEditors/FlatCAMGeoEditor.py:1132 -#: flatcamEditors/FlatCAMGrbEditor.py:4311 flatcamTools/ToolTransform.py:520 +#: flatcamEditors/FlatCAMGrbEditor.py:4409 flatcamTools/ToolTransform.py:520 msgid "[ERROR_NOTCL] Wrong value format entered for Skew Y, use a number." msgstr "" "[ERROR_NOTCL] Falsches Werteformat für Skew Y eingegeben, verwenden Sie eine " "Zahl." #: flatcamEditors/FlatCAMGeoEditor.py:1153 -#: flatcamEditors/FlatCAMGrbEditor.py:4332 flatcamTools/ToolTransform.py:538 +#: flatcamEditors/FlatCAMGrbEditor.py:4430 flatcamTools/ToolTransform.py:538 msgid "[ERROR_NOTCL] Wrong value format entered for Scale X, use a number." msgstr "" "[ERROR_NOTCL] Falsches Wertformat für Waage X eingegeben, verwenden Sie eine " "Zahl." #: flatcamEditors/FlatCAMGeoEditor.py:1190 -#: flatcamEditors/FlatCAMGrbEditor.py:4369 flatcamTools/ToolTransform.py:572 +#: flatcamEditors/FlatCAMGrbEditor.py:4467 flatcamTools/ToolTransform.py:572 msgid "[ERROR_NOTCL] Wrong value format entered for Scale Y, use a number." msgstr "" "[ERROR_NOTCL] Falsches Werteformat für Skala Y eingegeben, verwenden Sie " "eine Zahl." #: flatcamEditors/FlatCAMGeoEditor.py:1222 -#: flatcamEditors/FlatCAMGrbEditor.py:4401 flatcamTools/ToolTransform.py:601 +#: flatcamEditors/FlatCAMGrbEditor.py:4499 flatcamTools/ToolTransform.py:601 msgid "[ERROR_NOTCL] Wrong value format entered for Offset X, use a number." msgstr "" "[ERROR_NOTCL] Falsches Wertformat für Offset X eingegeben, verwenden Sie " "eine Zahl." #: flatcamEditors/FlatCAMGeoEditor.py:1243 -#: flatcamEditors/FlatCAMGrbEditor.py:4422 flatcamTools/ToolTransform.py:619 +#: flatcamEditors/FlatCAMGrbEditor.py:4520 flatcamTools/ToolTransform.py:619 msgid "[ERROR_NOTCL] Wrong value format entered for Offset Y, use a number." msgstr "" "[ERROR_NOTCL] Falsches Wertformat für Offset Y eingegeben, verwenden Sie " "eine Zahl." #: flatcamEditors/FlatCAMGeoEditor.py:1261 -#: flatcamEditors/FlatCAMGrbEditor.py:4440 +#: flatcamEditors/FlatCAMGrbEditor.py:4538 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:1264 -#: flatcamEditors/FlatCAMGrbEditor.py:4443 flatcamTools/ToolTransform.py:640 +#: flatcamEditors/FlatCAMGrbEditor.py:4541 flatcamTools/ToolTransform.py:640 msgid "Appying Rotate" msgstr "Anwenden Drehen" #: flatcamEditors/FlatCAMGeoEditor.py:1292 -#: flatcamEditors/FlatCAMGrbEditor.py:4471 +#: flatcamEditors/FlatCAMGrbEditor.py:4569 msgid "[success] Done. Rotate completed." msgstr "[success] Erledigt. Drehen abgeschlossen." #: flatcamEditors/FlatCAMGeoEditor.py:1308 -#: flatcamEditors/FlatCAMGrbEditor.py:4487 +#: flatcamEditors/FlatCAMGrbEditor.py:4585 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:1311 -#: flatcamEditors/FlatCAMGrbEditor.py:4490 flatcamTools/ToolTransform.py:692 +#: flatcamEditors/FlatCAMGrbEditor.py:4588 flatcamTools/ToolTransform.py:692 msgid "Applying Flip" msgstr "Flip anwenden" #: flatcamEditors/FlatCAMGeoEditor.py:1341 -#: flatcamEditors/FlatCAMGrbEditor.py:4520 flatcamTools/ToolTransform.py:735 +#: flatcamEditors/FlatCAMGrbEditor.py:4618 flatcamTools/ToolTransform.py:735 msgid "[success] Flip on the Y axis done ..." msgstr "[success] Flip auf der Y-Achse erledigt ..." #: flatcamEditors/FlatCAMGeoEditor.py:1344 -#: flatcamEditors/FlatCAMGrbEditor.py:4523 flatcamTools/ToolTransform.py:745 +#: flatcamEditors/FlatCAMGrbEditor.py:4621 flatcamTools/ToolTransform.py:745 msgid "[success] Flip on the X axis done ..." msgstr "[success] Flip auf der X-Achse erledigt ..." #: flatcamEditors/FlatCAMGeoEditor.py:1363 -#: flatcamEditors/FlatCAMGrbEditor.py:4542 +#: flatcamEditors/FlatCAMGrbEditor.py:4640 msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to shear/skew!" msgstr "" "[WARNING_NOTCL] Keine Form ausgewählt. Bitte wählen Sie eine Form zum " "Scheren / Schrägstellen!" #: flatcamEditors/FlatCAMGeoEditor.py:1366 -#: flatcamEditors/FlatCAMGrbEditor.py:4545 flatcamTools/ToolTransform.py:762 +#: flatcamEditors/FlatCAMGrbEditor.py:4643 flatcamTools/ToolTransform.py:762 msgid "Applying Skew" msgstr "Anwenden von Skew" #: flatcamEditors/FlatCAMGeoEditor.py:1391 -#: flatcamEditors/FlatCAMGrbEditor.py:4570 flatcamTools/ToolTransform.py:793 +#: flatcamEditors/FlatCAMGrbEditor.py:4668 flatcamTools/ToolTransform.py:793 #, python-format msgid "[success] Skew on the %s axis done ..." msgstr "[success] Neigung auf der %s Achse abgeschlossen ..." #: flatcamEditors/FlatCAMGeoEditor.py:1395 -#: flatcamEditors/FlatCAMGrbEditor.py:4574 flatcamTools/ToolTransform.py:797 +#: flatcamEditors/FlatCAMGrbEditor.py:4672 flatcamTools/ToolTransform.py:797 #, 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:1406 -#: flatcamEditors/FlatCAMGrbEditor.py:4585 +#: flatcamEditors/FlatCAMGrbEditor.py:4683 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:1409 -#: flatcamEditors/FlatCAMGrbEditor.py:4588 flatcamTools/ToolTransform.py:811 +#: flatcamEditors/FlatCAMGrbEditor.py:4686 flatcamTools/ToolTransform.py:811 msgid "Applying Scale" msgstr "Maßstab anwenden" #: flatcamEditors/FlatCAMGeoEditor.py:1442 -#: flatcamEditors/FlatCAMGrbEditor.py:4621 flatcamTools/ToolTransform.py:849 +#: flatcamEditors/FlatCAMGrbEditor.py:4719 flatcamTools/ToolTransform.py:849 #, python-format msgid "[success] Scale on the %s axis done ..." msgstr "[success] Skalieren auf der %s Achse fertig ..." #: flatcamEditors/FlatCAMGeoEditor.py:1445 -#: flatcamEditors/FlatCAMGrbEditor.py:4624 flatcamTools/ToolTransform.py:852 +#: flatcamEditors/FlatCAMGrbEditor.py:4722 flatcamTools/ToolTransform.py:852 #, 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:1454 -#: flatcamEditors/FlatCAMGrbEditor.py:4633 +#: flatcamEditors/FlatCAMGrbEditor.py:4731 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:1457 -#: flatcamEditors/FlatCAMGrbEditor.py:4636 flatcamTools/ToolTransform.py:864 +#: flatcamEditors/FlatCAMGrbEditor.py:4734 flatcamTools/ToolTransform.py:864 msgid "Applying Offset" msgstr "Offsetdruck anwenden" #: flatcamEditors/FlatCAMGeoEditor.py:1481 -#: flatcamEditors/FlatCAMGrbEditor.py:4660 flatcamTools/ToolTransform.py:894 +#: flatcamEditors/FlatCAMGrbEditor.py:4758 flatcamTools/ToolTransform.py:894 #, python-format msgid "[success] Offset on the %s axis done ..." msgstr "[success] Offsetdruck auf der %s Achse fertiggestellt ..." #: flatcamEditors/FlatCAMGeoEditor.py:1485 -#: flatcamEditors/FlatCAMGrbEditor.py:4664 flatcamTools/ToolTransform.py:898 +#: flatcamEditors/FlatCAMGrbEditor.py:4762 flatcamTools/ToolTransform.py:898 #, 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:1489 -#: flatcamEditors/FlatCAMGrbEditor.py:4668 +#: flatcamEditors/FlatCAMGrbEditor.py:4766 msgid "Rotate ..." msgstr "Drehen ..." #: flatcamEditors/FlatCAMGeoEditor.py:1490 #: flatcamEditors/FlatCAMGeoEditor.py:1547 #: flatcamEditors/FlatCAMGeoEditor.py:1564 -#: flatcamEditors/FlatCAMGrbEditor.py:4669 -#: flatcamEditors/FlatCAMGrbEditor.py:4726 -#: flatcamEditors/FlatCAMGrbEditor.py:4743 +#: flatcamEditors/FlatCAMGrbEditor.py:4767 +#: flatcamEditors/FlatCAMGrbEditor.py:4824 +#: flatcamEditors/FlatCAMGrbEditor.py:4841 msgid "Enter an Angle Value (degrees):" msgstr "Geben Sie einen Winkelwert (Grad) ein:" #: flatcamEditors/FlatCAMGeoEditor.py:1499 -#: flatcamEditors/FlatCAMGrbEditor.py:4678 +#: flatcamEditors/FlatCAMGrbEditor.py:4776 msgid "[success] Geometry shape rotate done..." msgstr "[success] Geometrieform drehen fertig ..." #: flatcamEditors/FlatCAMGeoEditor.py:1504 -#: flatcamEditors/FlatCAMGrbEditor.py:4683 +#: flatcamEditors/FlatCAMGrbEditor.py:4781 msgid "[WARNING_NOTCL] Geometry shape rotate cancelled..." msgstr "[WARNING_NOTCL] Geometrieform drehen abgebrochen ..." #: flatcamEditors/FlatCAMGeoEditor.py:1510 -#: flatcamEditors/FlatCAMGrbEditor.py:4689 +#: flatcamEditors/FlatCAMGrbEditor.py:4787 msgid "Offset on X axis ..." msgstr "Versatz auf der X-Achse ..." #: flatcamEditors/FlatCAMGeoEditor.py:1511 #: flatcamEditors/FlatCAMGeoEditor.py:1530 -#: flatcamEditors/FlatCAMGrbEditor.py:4690 -#: flatcamEditors/FlatCAMGrbEditor.py:4709 +#: flatcamEditors/FlatCAMGrbEditor.py:4788 +#: flatcamEditors/FlatCAMGrbEditor.py:4807 #, python-format msgid "Enter a distance Value (%s):" msgstr "Geben Sie einen Abstand ein (%s):" #: flatcamEditors/FlatCAMGeoEditor.py:1520 -#: flatcamEditors/FlatCAMGrbEditor.py:4699 +#: flatcamEditors/FlatCAMGrbEditor.py:4797 msgid "[success] Geometry shape offset on X axis done..." msgstr "[success] Geometrieformversatz auf der X-Achse erfolgt ..." #: flatcamEditors/FlatCAMGeoEditor.py:1524 -#: flatcamEditors/FlatCAMGrbEditor.py:4703 +#: flatcamEditors/FlatCAMGrbEditor.py:4801 msgid "[WARNING_NOTCL] Geometry shape offset X cancelled..." msgstr "[WARNING_NOTCL] Geometrieformversatz X abgebrochen ..." #: flatcamEditors/FlatCAMGeoEditor.py:1529 -#: flatcamEditors/FlatCAMGrbEditor.py:4708 +#: flatcamEditors/FlatCAMGrbEditor.py:4806 msgid "Offset on Y axis ..." msgstr "Versatz auf der Y-Achse ..." #: flatcamEditors/FlatCAMGeoEditor.py:1539 -#: flatcamEditors/FlatCAMGrbEditor.py:4718 +#: flatcamEditors/FlatCAMGrbEditor.py:4816 msgid "[success] Geometry shape offset on Y axis done..." msgstr "[success] Geometrieformversatz auf Y-Achse erfolgt ..." #: flatcamEditors/FlatCAMGeoEditor.py:1543 -#: flatcamEditors/FlatCAMGrbEditor.py:4722 +#: flatcamEditors/FlatCAMGrbEditor.py:4820 msgid "[WARNING_NOTCL] Geometry shape offset Y cancelled..." msgstr "[WARNING_NOTCL] Geometrieformversatz Y abgebrochen ..." #: flatcamEditors/FlatCAMGeoEditor.py:1546 -#: flatcamEditors/FlatCAMGrbEditor.py:4725 +#: flatcamEditors/FlatCAMGrbEditor.py:4823 msgid "Skew on X axis ..." msgstr "Neigung auf der X-Achse ..." #: flatcamEditors/FlatCAMGeoEditor.py:1556 -#: flatcamEditors/FlatCAMGrbEditor.py:4735 +#: flatcamEditors/FlatCAMGrbEditor.py:4833 msgid "[success] Geometry shape skew on X axis done..." msgstr "[success] Geometrieformversatz auf X-Achse ..." #: flatcamEditors/FlatCAMGeoEditor.py:1560 -#: flatcamEditors/FlatCAMGrbEditor.py:4739 +#: flatcamEditors/FlatCAMGrbEditor.py:4837 msgid "[WARNING_NOTCL] Geometry shape skew X cancelled..." msgstr "[WARNING_NOTCL] Geometrieformversatz X abgebrochen ..." #: flatcamEditors/FlatCAMGeoEditor.py:1563 -#: flatcamEditors/FlatCAMGrbEditor.py:4742 +#: flatcamEditors/FlatCAMGrbEditor.py:4840 msgid "Skew on Y axis ..." msgstr "Neigung auf der Y-Achse ..." #: flatcamEditors/FlatCAMGeoEditor.py:1573 -#: flatcamEditors/FlatCAMGrbEditor.py:4752 +#: flatcamEditors/FlatCAMGrbEditor.py:4850 msgid "[success] Geometry shape skew on Y axis done..." msgstr "[success] Geometrieformversatz auf Y-Achse erfolgt ..." #: flatcamEditors/FlatCAMGeoEditor.py:1577 -#: flatcamEditors/FlatCAMGrbEditor.py:4756 +#: flatcamEditors/FlatCAMGrbEditor.py:4854 msgid "[WARNING_NOTCL] Geometry shape skew Y cancelled..." msgstr "[WARNING_NOTCL] Geometrieformversatz Y abgebrochen ..." #: flatcamEditors/FlatCAMGeoEditor.py:1942 #: flatcamEditors/FlatCAMGeoEditor.py:1943 -#: flatcamEditors/FlatCAMGeoEditor.py:1987 -#: flatcamEditors/FlatCAMGeoEditor.py:1988 +#: flatcamEditors/FlatCAMGeoEditor.py:1994 +#: flatcamEditors/FlatCAMGeoEditor.py:1995 #: flatcamEditors/FlatCAMGrbEditor.py:1081 #: flatcamEditors/FlatCAMGrbEditor.py:1082 -#: flatcamEditors/FlatCAMGrbEditor.py:1135 -#: flatcamEditors/FlatCAMGrbEditor.py:1136 +#: flatcamEditors/FlatCAMGrbEditor.py:1142 +#: flatcamEditors/FlatCAMGrbEditor.py:1143 msgid "Click on Center point ..." msgstr "Klicken Sie auf Mittelpunkt." @@ -2918,75 +2890,75 @@ msgstr "Klicken Sie auf Umfangspunkt, um den Vorgang abzuschließen." msgid "[success] Done. Adding Circle completed." msgstr "[success] Erledigt. Hinzufügen des Kreises abgeschlossen." -#: flatcamEditors/FlatCAMGeoEditor.py:2008 -#: flatcamEditors/FlatCAMGrbEditor.py:1161 +#: flatcamEditors/FlatCAMGeoEditor.py:2015 +#: flatcamEditors/FlatCAMGrbEditor.py:1168 msgid "Click on Start point ..." msgstr "Klicken Sie auf Startpunkt ..." -#: flatcamEditors/FlatCAMGeoEditor.py:2010 -#: flatcamEditors/FlatCAMGrbEditor.py:1163 +#: flatcamEditors/FlatCAMGeoEditor.py:2017 +#: flatcamEditors/FlatCAMGrbEditor.py:1170 msgid "Click on Point3 ..." msgstr "Klicken Sie auf Punkt3 ..." -#: flatcamEditors/FlatCAMGeoEditor.py:2012 -#: flatcamEditors/FlatCAMGrbEditor.py:1165 +#: flatcamEditors/FlatCAMGeoEditor.py:2019 +#: flatcamEditors/FlatCAMGrbEditor.py:1172 msgid "Click on Stop point ..." msgstr "Klicken Sie auf Haltepunkt ..." -#: flatcamEditors/FlatCAMGeoEditor.py:2017 -#: flatcamEditors/FlatCAMGrbEditor.py:1170 +#: flatcamEditors/FlatCAMGeoEditor.py:2024 +#: flatcamEditors/FlatCAMGrbEditor.py:1177 msgid "Click on Stop point to complete ..." msgstr "Klicken Sie auf Stopp, um den Vorgang abzuschließen." -#: flatcamEditors/FlatCAMGeoEditor.py:2019 -#: flatcamEditors/FlatCAMGrbEditor.py:1172 +#: flatcamEditors/FlatCAMGeoEditor.py:2026 +#: flatcamEditors/FlatCAMGrbEditor.py:1179 msgid "Click on Point2 to complete ..." msgstr "Klicken Sie auf Punkt2, um den Vorgang abzuschließen." -#: flatcamEditors/FlatCAMGeoEditor.py:2021 -#: flatcamEditors/FlatCAMGrbEditor.py:1174 +#: flatcamEditors/FlatCAMGeoEditor.py:2028 +#: flatcamEditors/FlatCAMGrbEditor.py:1181 msgid "Click on Center point to complete ..." msgstr "Klicken Sie auf Mittelpunkt, um den Vorgang abzuschließen." -#: flatcamEditors/FlatCAMGeoEditor.py:2033 -#: flatcamEditors/FlatCAMGrbEditor.py:1186 +#: flatcamEditors/FlatCAMGeoEditor.py:2040 +#: flatcamEditors/FlatCAMGrbEditor.py:1193 #, python-format msgid "Direction: %s" msgstr "Richtung: %s" -#: flatcamEditors/FlatCAMGeoEditor.py:2043 -#: flatcamEditors/FlatCAMGrbEditor.py:1196 +#: flatcamEditors/FlatCAMGeoEditor.py:2050 +#: flatcamEditors/FlatCAMGrbEditor.py:1203 msgid "Mode: Start -> Stop -> Center. Click on Start point ..." msgstr "Modus: Start -> Stopp -> Zentrieren. Klicken Sie auf Startpunkt ..." -#: flatcamEditors/FlatCAMGeoEditor.py:2046 -#: flatcamEditors/FlatCAMGrbEditor.py:1199 +#: flatcamEditors/FlatCAMGeoEditor.py:2053 +#: flatcamEditors/FlatCAMGrbEditor.py:1206 msgid "Mode: Point1 -> Point3 -> Point2. Click on Point1 ..." msgstr "Modus: Punkt 1 -> Punkt 3 -> Punkt 2. Klicken Sie auf Punkt1 ..." -#: flatcamEditors/FlatCAMGeoEditor.py:2049 -#: flatcamEditors/FlatCAMGrbEditor.py:1202 +#: flatcamEditors/FlatCAMGeoEditor.py:2056 +#: flatcamEditors/FlatCAMGrbEditor.py:1209 msgid "Mode: Center -> Start -> Stop. Click on Center point ..." msgstr "Modus: Mitte -> Start -> Stopp. Klicken Sie auf Mittelpunkt." -#: flatcamEditors/FlatCAMGeoEditor.py:2187 +#: flatcamEditors/FlatCAMGeoEditor.py:2194 msgid "[success] Done. Arc completed." msgstr "[success] Erledigt. Bogen abgeschlossen" -#: flatcamEditors/FlatCAMGeoEditor.py:2206 +#: flatcamEditors/FlatCAMGeoEditor.py:2213 msgid "Click on 1st corner ..." msgstr "Klicken Sie auf die 1. Ecke ..." -#: flatcamEditors/FlatCAMGeoEditor.py:2239 +#: flatcamEditors/FlatCAMGeoEditor.py:2246 msgid "[success] Done. Rectangle completed." msgstr "[success] Erledigt. Rechteck fertiggestellt." -#: flatcamEditors/FlatCAMGeoEditor.py:2258 +#: flatcamEditors/FlatCAMGeoEditor.py:2265 #: flatcamEditors/FlatCAMGrbEditor.py:627 msgid "Click on 1st point ..." msgstr "Klicken Sie auf den 1. Punkt ..." -#: flatcamEditors/FlatCAMGeoEditor.py:2265 +#: flatcamEditors/FlatCAMGeoEditor.py:2272 #: flatcamEditors/FlatCAMGrbEditor.py:637 #: flatcamEditors/FlatCAMGrbEditor.py:904 msgid "Click on next Point or click Right mouse button to complete ..." @@ -2994,47 +2966,47 @@ msgstr "" "Klicken Sie auf den nächsten Punkt oder klicken Sie mit der rechten " "Maustaste, um den Vorgang abzuschließen." -#: flatcamEditors/FlatCAMGeoEditor.py:2293 +#: flatcamEditors/FlatCAMGeoEditor.py:2300 msgid "[success] Done. Polygon completed." msgstr "[success] Erledigt. Polygon abgeschlossen" -#: flatcamEditors/FlatCAMGeoEditor.py:2303 -#: flatcamEditors/FlatCAMGeoEditor.py:2349 +#: flatcamEditors/FlatCAMGeoEditor.py:2310 +#: flatcamEditors/FlatCAMGeoEditor.py:2356 #: flatcamEditors/FlatCAMGrbEditor.py:808 #: flatcamEditors/FlatCAMGrbEditor.py:981 msgid "Backtracked one point ..." msgstr "Einen Punkt zurückverfolgt ..." -#: flatcamEditors/FlatCAMGeoEditor.py:2331 +#: flatcamEditors/FlatCAMGeoEditor.py:2338 msgid "[success] Done. Path completed." msgstr "[success] Erledigt. Pfad abgeschlossen" -#: flatcamEditors/FlatCAMGeoEditor.py:2443 -#: flatcamEditors/FlatCAMGeoEditor.py:3539 +#: flatcamEditors/FlatCAMGeoEditor.py:2450 +#: flatcamEditors/FlatCAMGeoEditor.py:3611 msgid "[WARNING_NOTCL] Move cancelled. No shape selected." msgstr "[WARNING_NOTCL] Umzug abgebrochen. Keine Form ausgewählt." -#: flatcamEditors/FlatCAMGeoEditor.py:2447 +#: flatcamEditors/FlatCAMGeoEditor.py:2454 msgid "Click on reference point." msgstr "Klicken Sie auf den Referenzpunkt." -#: flatcamEditors/FlatCAMGeoEditor.py:2450 +#: flatcamEditors/FlatCAMGeoEditor.py:2457 msgid "Click on destination point." msgstr "Klicken Sie auf den Zielpunkt." -#: flatcamEditors/FlatCAMGeoEditor.py:2481 +#: flatcamEditors/FlatCAMGeoEditor.py:2488 msgid "[success] Done. Geometry(s) Move completed." msgstr "[success] Erledigt. Geometrie(n) Bewegung abgeschlossen." -#: flatcamEditors/FlatCAMGeoEditor.py:2526 +#: flatcamEditors/FlatCAMGeoEditor.py:2533 msgid "[success] Done. Geometry(s) Copy completed." msgstr "[success] Erledigt. Geometrie(n) Kopieren abgeschlossen." -#: flatcamEditors/FlatCAMGeoEditor.py:2538 +#: flatcamEditors/FlatCAMGeoEditor.py:2553 msgid "Click on the Destination point..." msgstr "Klicken Sie auf den Zielpunkt ..." -#: flatcamEditors/FlatCAMGeoEditor.py:2552 +#: flatcamEditors/FlatCAMGeoEditor.py:2567 #, python-format msgid "" "[ERROR]Font not supported. Only Regular, Bold, Italic and BoldItalic are " @@ -3043,61 +3015,62 @@ msgstr "" "[ERROR] Schrift wird nicht unterstützt. Es werden nur Regular, Bold, Italic " "und BoldItalic unterstützt. Error: %s" -#: flatcamEditors/FlatCAMGeoEditor.py:2562 +#: flatcamEditors/FlatCAMGeoEditor.py:2577 msgid "[success] Done. Adding Text completed." msgstr "[success] Erledigt. Hinzufügen von Text abgeschlossen" -#: flatcamEditors/FlatCAMGeoEditor.py:2590 +#: flatcamEditors/FlatCAMGeoEditor.py:2605 msgid "Create buffer geometry ..." msgstr "Puffergeometrie erstellen ..." -#: flatcamEditors/FlatCAMGeoEditor.py:2601 -#: flatcamEditors/FlatCAMGeoEditor.py:2627 -#: flatcamEditors/FlatCAMGeoEditor.py:2653 +#: flatcamEditors/FlatCAMGeoEditor.py:2616 +#: flatcamEditors/FlatCAMGeoEditor.py:2642 +#: flatcamEditors/FlatCAMGeoEditor.py:2668 msgid "[WARNING_NOTCL] Buffer cancelled. No shape selected." msgstr "[WARNING_NOTCL] Puffer abgebrochen. Keine Form ausgewählt." -#: flatcamEditors/FlatCAMGeoEditor.py:2623 -#: flatcamEditors/FlatCAMGrbEditor.py:3709 +#: flatcamEditors/FlatCAMGeoEditor.py:2638 +#: flatcamEditors/FlatCAMGrbEditor.py:3807 msgid "[success] Done. Buffer Tool completed." msgstr "[success] Erledigt. Pufferwerkzeug abgeschlossen." -#: flatcamEditors/FlatCAMGeoEditor.py:2649 +#: flatcamEditors/FlatCAMGeoEditor.py:2664 msgid "[success] Done. Buffer Int Tool completed." msgstr "[success] Erledigt. Innenpufferwerkzeug abgeschlossen." -#: flatcamEditors/FlatCAMGeoEditor.py:2675 +#: flatcamEditors/FlatCAMGeoEditor.py:2690 msgid "[success] Done. Buffer Ext Tool completed." msgstr "[success] Erledigt. Außenpufferwerkzeug abgeschlossen." -#: flatcamEditors/FlatCAMGeoEditor.py:2708 +#: flatcamEditors/FlatCAMGeoEditor.py:2723 msgid "Create Paint geometry ..." msgstr "Malen geometrie erstellen ..." -#: flatcamEditors/FlatCAMGeoEditor.py:2722 -#: flatcamEditors/FlatCAMGrbEditor.py:1657 +#: flatcamEditors/FlatCAMGeoEditor.py:2737 +#: flatcamEditors/FlatCAMGrbEditor.py:1667 msgid "Shape transformations ..." msgstr "Formtransformationen ..." -#: flatcamEditors/FlatCAMGeoEditor.py:3174 +#: flatcamEditors/FlatCAMGeoEditor.py:3237 #, python-brace-format msgid "[WARNING] Editing MultiGeo Geometry, tool: {tool} with diameter: {dia}" msgstr "" "[WARNING] Bearbeiten von MultiGeo-Geometrie, Werkzeug: {tool} mit " "Durchmesser: {dia}" -#: flatcamEditors/FlatCAMGeoEditor.py:3546 +#: flatcamEditors/FlatCAMGeoEditor.py:3618 msgid "[WARNING_NOTCL] Copy cancelled. No shape selected." msgstr "[WARNING_NOTCL] Kopieren abgebrochen Keine Form ausgewählt" -#: flatcamEditors/FlatCAMGeoEditor.py:3553 flatcamGUI/FlatCAMGUI.py:2686 -#: flatcamGUI/FlatCAMGUI.py:2732 flatcamGUI/FlatCAMGUI.py:2750 -#: flatcamGUI/FlatCAMGUI.py:2881 flatcamGUI/FlatCAMGUI.py:2893 -#: flatcamGUI/FlatCAMGUI.py:2927 +#: flatcamEditors/FlatCAMGeoEditor.py:3625 flatcamGUI/FlatCAMGUI.py:2710 +#: flatcamGUI/FlatCAMGUI.py:2756 flatcamGUI/FlatCAMGUI.py:2774 +#: flatcamGUI/FlatCAMGUI.py:2905 flatcamGUI/FlatCAMGUI.py:2917 +#: flatcamGUI/FlatCAMGUI.py:2951 msgid "Click on target point." msgstr "Klicken Sie auf den Zielpunkt." -#: flatcamEditors/FlatCAMGeoEditor.py:3796 +#: flatcamEditors/FlatCAMGeoEditor.py:3868 +#: flatcamEditors/FlatCAMGeoEditor.py:3902 msgid "" "[WARNING_NOTCL] A selection of at least 2 geo items is required to do " "Intersection." @@ -3105,9 +3078,9 @@ msgstr "" "[WARNING_NOTCL] Eine Auswahl von mindestens 2 Geo-Elementen ist " "erforderlich, um die Kreuzung durchzuführen." -#: flatcamEditors/FlatCAMGeoEditor.py:3834 -#: flatcamEditors/FlatCAMGeoEditor.py:3871 -#: flatcamEditors/FlatCAMGeoEditor.py:3947 +#: flatcamEditors/FlatCAMGeoEditor.py:3986 +#: flatcamEditors/FlatCAMGeoEditor.py:4023 +#: flatcamEditors/FlatCAMGeoEditor.py:4099 msgid "" "[ERROR_NOTCL] Negative buffer value is not accepted. Use Buffer interior to " "generate an 'inside' shape" @@ -3115,54 +3088,54 @@ msgstr "" "[ERROR_NOTCL] Negativer Pufferwert wird nicht akzeptiert. Verwenden Sie den " "Pufferinnenraum, um eine Innenform zu erzeugen" -#: flatcamEditors/FlatCAMGeoEditor.py:3842 -#: flatcamEditors/FlatCAMGeoEditor.py:3880 -#: flatcamEditors/FlatCAMGeoEditor.py:3955 +#: flatcamEditors/FlatCAMGeoEditor.py:3994 +#: flatcamEditors/FlatCAMGeoEditor.py:4032 +#: flatcamEditors/FlatCAMGeoEditor.py:4107 msgid "[WARNING_NOTCL] Nothing selected for buffering." msgstr "[WARNING_NOTCL] Nichts ist für die Pufferung ausgewählt." -#: flatcamEditors/FlatCAMGeoEditor.py:3846 -#: flatcamEditors/FlatCAMGeoEditor.py:3884 -#: flatcamEditors/FlatCAMGeoEditor.py:3959 +#: flatcamEditors/FlatCAMGeoEditor.py:3998 +#: flatcamEditors/FlatCAMGeoEditor.py:4036 +#: flatcamEditors/FlatCAMGeoEditor.py:4111 msgid "[WARNING_NOTCL] Invalid distance for buffering." msgstr "[WARNING_NOTCL] Ungültige Entfernung für die Pufferung" -#: flatcamEditors/FlatCAMGeoEditor.py:3856 -#: flatcamEditors/FlatCAMGeoEditor.py:3968 +#: flatcamEditors/FlatCAMGeoEditor.py:4008 +#: flatcamEditors/FlatCAMGeoEditor.py:4120 msgid "" "[ERROR_NOTCL] Failed, the result is empty. Choose a different buffer value." msgstr "" "[ERROR_NOTCL] Fehlgeschlagen, das Ergebnis ist leer. Wählen Sie einen " "anderen Pufferwert." -#: flatcamEditors/FlatCAMGeoEditor.py:3864 +#: flatcamEditors/FlatCAMGeoEditor.py:4016 msgid "[success] Full buffer geometry created." msgstr "[success] Volle Puffergeometrie erstellt." -#: flatcamEditors/FlatCAMGeoEditor.py:3894 +#: flatcamEditors/FlatCAMGeoEditor.py:4046 msgid "" "[ERROR_NOTCL] Failed, the result is empty. Choose a smaller buffer value." msgstr "" "[ERROR_NOTCL] Fehlgeschlagen, das Ergebnis ist leer. Wählen Sie einen " "kleineren Pufferwert." -#: flatcamEditors/FlatCAMGeoEditor.py:3909 +#: flatcamEditors/FlatCAMGeoEditor.py:4061 msgid "[success] Interior buffer geometry created." msgstr "[success] Innere Puffergeometrie erstellt." -#: flatcamEditors/FlatCAMGeoEditor.py:3980 +#: flatcamEditors/FlatCAMGeoEditor.py:4132 msgid "[success] Exterior buffer geometry created." msgstr "[success] Außenpuffergeometrie erstellt." -#: flatcamEditors/FlatCAMGeoEditor.py:4044 +#: flatcamEditors/FlatCAMGeoEditor.py:4196 msgid "[WARNING_NOTCL] Nothing selected for painting." msgstr "[WARNING_NOTCL] Nichts zum Malen ausgewählt." -#: flatcamEditors/FlatCAMGeoEditor.py:4050 +#: flatcamEditors/FlatCAMGeoEditor.py:4202 msgid "[WARNING] Invalid value for {}" msgstr "[WARNING] Ungültiger Wert für {}" -#: flatcamEditors/FlatCAMGeoEditor.py:4056 +#: flatcamEditors/FlatCAMGeoEditor.py:4208 msgid "" "[ERROR_NOTCL] Could not do Paint. Overlap value has to be less than 1.00 " "(100%)." @@ -3170,7 +3143,7 @@ msgstr "" "[ERROR_NOTCL] Kann nicht Malen machen. Der Überlappungswert muss unter 1,00 " "(100%) liegen." -#: flatcamEditors/FlatCAMGeoEditor.py:4115 +#: flatcamEditors/FlatCAMGeoEditor.py:4267 #, python-format msgid "" "[ERROR] Could not do Paint. Try a different combination of parameters. Or a " @@ -3181,7 +3154,7 @@ msgstr "" "Kombination von Parametern. Oder eine andere Methode von Malen\n" "%s" -#: flatcamEditors/FlatCAMGeoEditor.py:4126 +#: flatcamEditors/FlatCAMGeoEditor.py:4278 msgid "[success] Paint done." msgstr "[success] Malen Sie fertig." @@ -3296,73 +3269,73 @@ msgstr "Spurmodus 4: Um 90 Grad umkehren ..." msgid "Track Mode 5: Free angle ..." msgstr "Spurmodus 5: Freiwinkel ..." -#: flatcamEditors/FlatCAMGrbEditor.py:1360 +#: flatcamEditors/FlatCAMGrbEditor.py:1367 msgid "Scale the selected Gerber apertures ..." msgstr "Skalieren Sie die ausgewählten Gerber-Öffnungen ..." -#: flatcamEditors/FlatCAMGrbEditor.py:1402 +#: flatcamEditors/FlatCAMGrbEditor.py:1409 msgid "Buffer the selected apertures ..." msgstr "Die ausgewählten Öffnungen puffern ..." -#: flatcamEditors/FlatCAMGrbEditor.py:1503 +#: flatcamEditors/FlatCAMGrbEditor.py:1510 msgid "[success] Done. Apertures Move completed." msgstr "[success] Erledigt. Öffnungsbewegung abgeschlossen." -#: flatcamEditors/FlatCAMGrbEditor.py:1558 +#: flatcamEditors/FlatCAMGrbEditor.py:1565 msgid "[success] Done. Apertures copied." msgstr "[success] Erledigt. Blende kopiert." -#: flatcamEditors/FlatCAMGrbEditor.py:1698 flatcamGUI/FlatCAMGUI.py:1574 +#: flatcamEditors/FlatCAMGrbEditor.py:1708 flatcamGUI/FlatCAMGUI.py:1590 msgid "Gerber Editor" msgstr "Gerber-Editor" -#: flatcamEditors/FlatCAMGrbEditor.py:1717 flatcamGUI/ObjectUI.py:192 +#: flatcamEditors/FlatCAMGrbEditor.py:1727 flatcamGUI/ObjectUI.py:192 msgid "Apertures:" msgstr " Blenden: " -#: flatcamEditors/FlatCAMGrbEditor.py:1719 flatcamGUI/ObjectUI.py:194 +#: flatcamEditors/FlatCAMGrbEditor.py:1729 flatcamGUI/ObjectUI.py:194 msgid "Apertures Table for the Gerber Object." msgstr "Blendentabelle für das Gerberobjekt." -#: flatcamEditors/FlatCAMGrbEditor.py:1730 -#: flatcamEditors/FlatCAMGrbEditor.py:2927 flatcamGUI/ObjectUI.py:228 +#: flatcamEditors/FlatCAMGrbEditor.py:1740 +#: flatcamEditors/FlatCAMGrbEditor.py:3007 flatcamGUI/ObjectUI.py:228 msgid "Code" msgstr "Code" -#: flatcamEditors/FlatCAMGrbEditor.py:1730 -#: flatcamEditors/FlatCAMGrbEditor.py:2927 flatcamGUI/ObjectUI.py:228 +#: flatcamEditors/FlatCAMGrbEditor.py:1740 +#: flatcamEditors/FlatCAMGrbEditor.py:3007 flatcamGUI/ObjectUI.py:228 #: flatcamGUI/ObjectUI.py:888 flatcamGUI/ObjectUI.py:1446 msgid "Type" msgstr "Typ" -#: flatcamEditors/FlatCAMGrbEditor.py:1730 -#: flatcamEditors/FlatCAMGrbEditor.py:2927 flatcamGUI/ObjectUI.py:228 +#: flatcamEditors/FlatCAMGrbEditor.py:1740 +#: flatcamEditors/FlatCAMGrbEditor.py:3007 flatcamGUI/ObjectUI.py:228 msgid "Size" msgstr "Größe" -#: flatcamEditors/FlatCAMGrbEditor.py:1730 -#: flatcamEditors/FlatCAMGrbEditor.py:2927 flatcamGUI/ObjectUI.py:228 +#: flatcamEditors/FlatCAMGrbEditor.py:1740 +#: flatcamEditors/FlatCAMGrbEditor.py:3007 flatcamGUI/ObjectUI.py:228 msgid "Dim" msgstr "Maße" -#: flatcamEditors/FlatCAMGrbEditor.py:1734 flatcamGUI/ObjectUI.py:232 +#: flatcamEditors/FlatCAMGrbEditor.py:1744 flatcamGUI/ObjectUI.py:232 msgid "Index" msgstr "Index" -#: flatcamEditors/FlatCAMGrbEditor.py:1736 flatcamGUI/ObjectUI.py:234 +#: flatcamEditors/FlatCAMGrbEditor.py:1746 flatcamGUI/ObjectUI.py:234 msgid "Aperture Code" msgstr "Öffnungscode" -#: flatcamEditors/FlatCAMGrbEditor.py:1738 flatcamGUI/ObjectUI.py:236 +#: flatcamEditors/FlatCAMGrbEditor.py:1748 flatcamGUI/ObjectUI.py:236 msgid "Type of aperture: circular, rectangle, macros etc" msgstr "Öffnungsart: kreisförmig, rechteckig, Makros usw" -#: flatcamEditors/FlatCAMGrbEditor.py:1740 -#: flatcamEditors/FlatCAMGrbEditor.py:1773 flatcamGUI/ObjectUI.py:238 +#: flatcamEditors/FlatCAMGrbEditor.py:1750 +#: flatcamEditors/FlatCAMGrbEditor.py:1783 flatcamGUI/ObjectUI.py:238 msgid "Aperture Size:" msgstr "Öffnungsgröße:" -#: flatcamEditors/FlatCAMGrbEditor.py:1742 flatcamGUI/ObjectUI.py:240 +#: flatcamEditors/FlatCAMGrbEditor.py:1752 flatcamGUI/ObjectUI.py:240 msgid "" "Aperture Dimensions:\n" " - (width, height) for R, O type.\n" @@ -3372,15 +3345,15 @@ msgstr "" "  - (Breite, Höhe) für R, O-Typ.\n" "  - (dia, nVertices) für P-Typ" -#: flatcamEditors/FlatCAMGrbEditor.py:1763 +#: flatcamEditors/FlatCAMGrbEditor.py:1773 msgid "Aperture Code:" msgstr "Öffnungscode:" -#: flatcamEditors/FlatCAMGrbEditor.py:1765 +#: flatcamEditors/FlatCAMGrbEditor.py:1775 msgid "Code for the new aperture" msgstr "Code für die neue Blende" -#: flatcamEditors/FlatCAMGrbEditor.py:1775 +#: flatcamEditors/FlatCAMGrbEditor.py:1785 msgid "" "Size for the new aperture.\n" "If aperture type is 'R' or 'O' then\n" @@ -3394,11 +3367,11 @@ msgstr "" "berechnet als:\n" "Quadrat (Breite ** 2 + Höhe ** 2)" -#: flatcamEditors/FlatCAMGrbEditor.py:1787 +#: flatcamEditors/FlatCAMGrbEditor.py:1797 msgid "Aperture Type:" msgstr "Blendentyp:" -#: flatcamEditors/FlatCAMGrbEditor.py:1789 +#: flatcamEditors/FlatCAMGrbEditor.py:1799 msgid "" "Select the type of new aperture. Can be:\n" "C = circular\n" @@ -3410,11 +3383,11 @@ msgstr "" "R = rechteckig\n" "O = länglich" -#: flatcamEditors/FlatCAMGrbEditor.py:1800 +#: flatcamEditors/FlatCAMGrbEditor.py:1810 msgid "Aperture Dim:" msgstr "Öffnungsmaße:" -#: flatcamEditors/FlatCAMGrbEditor.py:1802 +#: flatcamEditors/FlatCAMGrbEditor.py:1812 msgid "" "Dimensions for the new aperture.\n" "Active only for rectangular apertures (type R).\n" @@ -3424,31 +3397,31 @@ msgstr "" "Aktiv nur für rechteckige Öffnungen (Typ R).\n" "Das Format ist (Breite, Höhe)" -#: flatcamEditors/FlatCAMGrbEditor.py:1811 +#: flatcamEditors/FlatCAMGrbEditor.py:1821 msgid "Add/Delete Aperture:" msgstr "Blende hinzufügen / löschen:" -#: flatcamEditors/FlatCAMGrbEditor.py:1813 +#: flatcamEditors/FlatCAMGrbEditor.py:1823 msgid "Add/Delete an aperture in the aperture table" msgstr "Eine Blende in der Blendentabelle hinzufügen / löschen" -#: flatcamEditors/FlatCAMGrbEditor.py:1822 +#: flatcamEditors/FlatCAMGrbEditor.py:1832 msgid "Add a new aperture to the aperture list." msgstr "Fügen Sie der Blendenliste eine neue Blende hinzu." -#: flatcamEditors/FlatCAMGrbEditor.py:1827 +#: flatcamEditors/FlatCAMGrbEditor.py:1837 msgid "Delete a aperture in the aperture list" msgstr "Löschen Sie eine Blende in der Blendenliste" -#: flatcamEditors/FlatCAMGrbEditor.py:1843 +#: flatcamEditors/FlatCAMGrbEditor.py:1853 msgid "Buffer Aperture:" msgstr "Pufferblende:" -#: flatcamEditors/FlatCAMGrbEditor.py:1845 +#: flatcamEditors/FlatCAMGrbEditor.py:1855 msgid "Buffer a aperture in the aperture list" msgstr "Puffern Sie eine Blende in der Blendenliste" -#: flatcamEditors/FlatCAMGrbEditor.py:1858 +#: flatcamEditors/FlatCAMGrbEditor.py:1868 msgid "" "There are 3 types of corners:\n" " - 'Round': the corner is rounded.\n" @@ -3462,24 +3435,24 @@ msgstr "" "  - 'Abgeschrägt:' Die Ecke ist eine Linie, die die Features, die sich in " "der Ecke treffen, direkt verbindet" -#: flatcamEditors/FlatCAMGrbEditor.py:1873 flatcamGUI/FlatCAMGUI.py:707 -#: flatcamGUI/FlatCAMGUI.py:1911 +#: flatcamEditors/FlatCAMGrbEditor.py:1883 flatcamGUI/FlatCAMGUI.py:708 +#: flatcamGUI/FlatCAMGUI.py:1929 msgid "Buffer" msgstr "Puffer" -#: flatcamEditors/FlatCAMGrbEditor.py:1887 +#: flatcamEditors/FlatCAMGrbEditor.py:1897 msgid "Scale Aperture:" msgstr "Skalenöffnung:" -#: flatcamEditors/FlatCAMGrbEditor.py:1889 +#: flatcamEditors/FlatCAMGrbEditor.py:1899 msgid "Scale a aperture in the aperture list" msgstr "Skalieren Sie eine Blende in der Blendenliste" -#: flatcamEditors/FlatCAMGrbEditor.py:1897 +#: flatcamEditors/FlatCAMGrbEditor.py:1907 msgid "Scale factor:" msgstr "Skalierungsfaktor:" -#: flatcamEditors/FlatCAMGrbEditor.py:1899 +#: flatcamEditors/FlatCAMGrbEditor.py:1909 msgid "" "The factor by which to scale the selected aperture.\n" "Values can be between 0.0000 and 999.9999" @@ -3487,16 +3460,16 @@ msgstr "" "Der Faktor, um den die ausgewählte Blende skaliert werden soll.\n" "Die Werte können zwischen 0,0000 und 999,9999 liegen" -#: flatcamEditors/FlatCAMGrbEditor.py:1927 flatcamGUI/FlatCAMGUI.py:696 -#: flatcamGUI/FlatCAMGUI.py:1906 +#: flatcamEditors/FlatCAMGrbEditor.py:1937 flatcamGUI/FlatCAMGUI.py:698 +#: flatcamGUI/FlatCAMGUI.py:1919 msgid "Add Pad Array" msgstr "Pad-Array hinzufügen" -#: flatcamEditors/FlatCAMGrbEditor.py:1929 +#: flatcamEditors/FlatCAMGrbEditor.py:1939 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:1935 +#: flatcamEditors/FlatCAMGrbEditor.py:1945 msgid "" "Select the type of pads array to create.\n" "It can be Linear X(Y) or Circular" @@ -3504,16 +3477,16 @@ msgstr "" "Wählen Sie den zu erstellenden Pad-Array-Typ aus.\n" "Es kann lineares X (Y) oder rund sein" -#: flatcamEditors/FlatCAMGrbEditor.py:1946 +#: flatcamEditors/FlatCAMGrbEditor.py:1956 msgid "Nr of pads:" msgstr "Anzahl der Pads:" -#: flatcamEditors/FlatCAMGrbEditor.py:1948 +#: flatcamEditors/FlatCAMGrbEditor.py:1958 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:2420 -#: flatcamEditors/FlatCAMGrbEditor.py:2424 +#: flatcamEditors/FlatCAMGrbEditor.py:2431 +#: flatcamEditors/FlatCAMGrbEditor.py:2435 msgid "" "[WARNING_NOTCL] Aperture code value is missing or wrong format. Add it and " "retry." @@ -3521,7 +3494,7 @@ msgstr "" "[WARNING_NOTCL] Blendencodewert fehlt oder falsches Format. Fügen Sie es " "hinzu und versuchen Sie es erneut." -#: flatcamEditors/FlatCAMGrbEditor.py:2461 +#: flatcamEditors/FlatCAMGrbEditor.py:2472 msgid "" "[WARNING_NOTCL] Aperture dimensions value is missing or wrong format. Add it " "in format (width, height) and retry." @@ -3529,7 +3502,7 @@ msgstr "" "[WARNING_NOTCL] Wert für Blendenmaße fehlt oder falsches Format. Fügen Sie " "es im Format (Breite, Höhe) hinzu und versuchen Sie es erneut." -#: flatcamEditors/FlatCAMGrbEditor.py:2473 +#: flatcamEditors/FlatCAMGrbEditor.py:2484 msgid "" "[WARNING_NOTCL] Aperture size value is missing or wrong format. Add it and " "retry." @@ -3537,31 +3510,31 @@ msgstr "" "[WARNING_NOTCL] Blendengrößenwert fehlt oder falsches Format. Fügen Sie es " "hinzu und versuchen Sie es erneut." -#: flatcamEditors/FlatCAMGrbEditor.py:2485 +#: flatcamEditors/FlatCAMGrbEditor.py:2496 msgid "[WARNING_NOTCL] Aperture already in the aperture table." msgstr "[WARNING_NOTCL] Blende bereits in der Blendentabelle." -#: flatcamEditors/FlatCAMGrbEditor.py:2492 +#: flatcamEditors/FlatCAMGrbEditor.py:2503 #, python-brace-format msgid "[success] Added new aperture with code: {apid}" msgstr "[success] Neue Blende mit Code hinzugefügt: {apid}" -#: flatcamEditors/FlatCAMGrbEditor.py:2521 -#: flatcamEditors/FlatCAMGrbEditor.py:2527 +#: flatcamEditors/FlatCAMGrbEditor.py:2532 +#: flatcamEditors/FlatCAMGrbEditor.py:2538 msgid "[WARNING_NOTCL] Select an aperture in Aperture Table" msgstr "[WARNING_NOTCL] Wählen Sie in Blende Table eine Blende aus" -#: flatcamEditors/FlatCAMGrbEditor.py:2550 +#: flatcamEditors/FlatCAMGrbEditor.py:2561 #, python-brace-format msgid "[success] Deleted aperture with code: {del_dia}" msgstr "[success] Blende mit Code gelöscht: {del_dia}" -#: flatcamEditors/FlatCAMGrbEditor.py:2851 +#: flatcamEditors/FlatCAMGrbEditor.py:2931 #, python-format msgid "Adding aperture: %s geo ..." msgstr "Blende hinzufügen:%s geo ..." -#: flatcamEditors/FlatCAMGrbEditor.py:3015 +#: flatcamEditors/FlatCAMGrbEditor.py:3095 msgid "" "[ERROR_NOTCL] There are no Aperture definitions in the file. Aborting Gerber " "creation." @@ -3569,28 +3542,28 @@ msgstr "" "[ERROR_NOTCL] Die Datei enthält keine Aperture-Definitionen. Abbruch der " "Gerber-Erstellung." -#: flatcamEditors/FlatCAMGrbEditor.py:3024 +#: flatcamEditors/FlatCAMGrbEditor.py:3104 msgid "Creating Gerber." msgstr "Gerber erstellen." -#: flatcamEditors/FlatCAMGrbEditor.py:3032 +#: flatcamEditors/FlatCAMGrbEditor.py:3112 msgid "[success] Gerber editing finished." msgstr "[success] Gerber-Bearbeitung ist beendet." -#: flatcamEditors/FlatCAMGrbEditor.py:3049 +#: flatcamEditors/FlatCAMGrbEditor.py:3129 msgid "[WARNING_NOTCL] Cancelled. No aperture is selected" msgstr "[WARNING_NOTCL] Abgebrochen. Es ist keine Blende ausgewählt" -#: flatcamEditors/FlatCAMGrbEditor.py:3549 +#: flatcamEditors/FlatCAMGrbEditor.py:3649 msgid "[ERROR_NOTCL] Failed. No aperture geometry is selected." msgstr "" "[ERROR_NOTCL] ist fehlgeschlagen. Es ist keine Blendengeometrie ausgewählt." -#: flatcamEditors/FlatCAMGrbEditor.py:3557 +#: flatcamEditors/FlatCAMGrbEditor.py:3657 msgid "[success] Done. Apertures geometry deleted." msgstr "[success] Fertig. Blendengeometrie gelöscht." -#: flatcamEditors/FlatCAMGrbEditor.py:3694 +#: flatcamEditors/FlatCAMGrbEditor.py:3792 msgid "" "[WARNING_NOTCL] No aperture to buffer. Select at least one aperture and try " "again." @@ -3598,7 +3571,7 @@ msgstr "" "[WARNING_NOTCL] Keine Blende zum Puffern Wählen Sie mindestens eine Blende " "und versuchen Sie es erneut." -#: flatcamEditors/FlatCAMGrbEditor.py:3723 +#: flatcamEditors/FlatCAMGrbEditor.py:3821 msgid "" "[WARNING_NOTCL] Scale factor value is missing or wrong format. Add it and " "retry." @@ -3606,7 +3579,7 @@ msgstr "" "[WARNING_NOTCL] Der Skalierungsfaktor ist nicht vorhanden oder das Format " "ist falsch. Fügen Sie es hinzu und versuchen Sie es erneut." -#: flatcamEditors/FlatCAMGrbEditor.py:3741 +#: flatcamEditors/FlatCAMGrbEditor.py:3839 msgid "" "[WARNING_NOTCL] No aperture to scale. Select at least one aperture and try " "again." @@ -3614,7 +3587,7 @@ msgstr "" "[WARNING_NOTCL] Keine zu skalierende Blende Wählen Sie mindestens eine " "Blende und versuchen Sie es erneut." -#: flatcamEditors/FlatCAMGrbEditor.py:3757 +#: flatcamEditors/FlatCAMGrbEditor.py:3855 msgid "[success] Done. Scale Tool completed." msgstr "[success] Erledigt. Skalierungswerkzeug abgeschlossen." @@ -4148,7 +4121,6 @@ msgid "Add SemiDisc\tE" msgstr "Halbschibe hinzufügen\tE" #: flatcamGUI/FlatCAMGUI.py:478 -#| msgid "Add Drill\tD" msgid "Add Disc\tD" msgstr "Schibe hinzufügen\tD" @@ -4180,11 +4152,11 @@ msgstr "CNC generieren" msgid "View Source" msgstr "Quelltext anzeigen" -#: flatcamGUI/FlatCAMGUI.py:517 flatcamGUI/FlatCAMGUI.py:1592 +#: flatcamGUI/FlatCAMGUI.py:517 flatcamGUI/FlatCAMGUI.py:1603 msgid "Edit" msgstr "Bearbeiten" -#: flatcamGUI/FlatCAMGUI.py:523 flatcamGUI/FlatCAMGUI.py:1598 +#: flatcamGUI/FlatCAMGUI.py:523 flatcamGUI/FlatCAMGUI.py:1609 #: flatcamTools/ToolProperties.py:25 msgid "Properties" msgstr "Eigenschaften" @@ -4225,15 +4197,15 @@ msgstr "Gerber Editor-Symbolleiste" msgid "Grid Toolbar" msgstr "Raster-Symbolleiste" -#: flatcamGUI/FlatCAMGUI.py:603 flatcamGUI/FlatCAMGUI.py:1809 +#: flatcamGUI/FlatCAMGUI.py:603 flatcamGUI/FlatCAMGUI.py:1820 msgid "Open project" msgstr "Offenes Projekt" -#: flatcamGUI/FlatCAMGUI.py:604 flatcamGUI/FlatCAMGUI.py:1810 +#: flatcamGUI/FlatCAMGUI.py:604 flatcamGUI/FlatCAMGUI.py:1821 msgid "Save project" msgstr "Projekt speichern" -#: flatcamGUI/FlatCAMGUI.py:607 flatcamGUI/FlatCAMGUI.py:1813 +#: flatcamGUI/FlatCAMGUI.py:607 flatcamGUI/FlatCAMGUI.py:1824 msgid "New Blank Geometry" msgstr "Neue leere Geometrie" @@ -4241,215 +4213,220 @@ msgstr "Neue leere Geometrie" msgid "New Blank Gerber" msgstr "Neue leere Gerber" -#: flatcamGUI/FlatCAMGUI.py:609 flatcamGUI/FlatCAMGUI.py:1814 +#: flatcamGUI/FlatCAMGUI.py:609 flatcamGUI/FlatCAMGUI.py:1825 msgid "New Blank Excellon" msgstr "Neuer unbelegter Excellon" -#: flatcamGUI/FlatCAMGUI.py:611 flatcamGUI/FlatCAMGUI.py:1816 +#: flatcamGUI/FlatCAMGUI.py:611 flatcamGUI/FlatCAMGUI.py:1827 msgid "Editor" msgstr "Editor" -#: flatcamGUI/FlatCAMGUI.py:613 flatcamGUI/FlatCAMGUI.py:1818 +#: flatcamGUI/FlatCAMGUI.py:613 flatcamGUI/FlatCAMGUI.py:1829 msgid "Save Object and close the Editor" msgstr "Speichern Sie das Objekt und schließen Sie den Editor" -#: flatcamGUI/FlatCAMGUI.py:617 flatcamGUI/FlatCAMGUI.py:1822 +#: flatcamGUI/FlatCAMGUI.py:617 flatcamGUI/FlatCAMGUI.py:1833 msgid "&Delete" msgstr "&Löschen" -#: flatcamGUI/FlatCAMGUI.py:620 flatcamGUI/FlatCAMGUI.py:1825 +#: flatcamGUI/FlatCAMGUI.py:620 flatcamGUI/FlatCAMGUI.py:1836 msgid "&Replot" msgstr "&Replotieren" -#: flatcamGUI/FlatCAMGUI.py:621 flatcamGUI/FlatCAMGUI.py:1826 +#: flatcamGUI/FlatCAMGUI.py:621 flatcamGUI/FlatCAMGUI.py:1837 msgid "&Clear plot" msgstr "&Plot klar löschen" -#: flatcamGUI/FlatCAMGUI.py:622 flatcamGUI/FlatCAMGUI.py:1827 +#: flatcamGUI/FlatCAMGUI.py:622 flatcamGUI/FlatCAMGUI.py:1838 msgid "Zoom In" msgstr "Hineinzoomen" -#: flatcamGUI/FlatCAMGUI.py:623 flatcamGUI/FlatCAMGUI.py:1828 +#: flatcamGUI/FlatCAMGUI.py:623 flatcamGUI/FlatCAMGUI.py:1839 msgid "Zoom Out" msgstr "Rauszoomen" -#: flatcamGUI/FlatCAMGUI.py:624 flatcamGUI/FlatCAMGUI.py:1562 -#: flatcamGUI/FlatCAMGUI.py:1829 +#: flatcamGUI/FlatCAMGUI.py:624 flatcamGUI/FlatCAMGUI.py:1578 +#: flatcamGUI/FlatCAMGUI.py:1840 msgid "Zoom Fit" msgstr "Passenzoomen" -#: flatcamGUI/FlatCAMGUI.py:629 flatcamGUI/FlatCAMGUI.py:1834 +#: flatcamGUI/FlatCAMGUI.py:629 flatcamGUI/FlatCAMGUI.py:1845 msgid "&Command Line" msgstr "Befehlszeile" -#: flatcamGUI/FlatCAMGUI.py:632 flatcamGUI/FlatCAMGUI.py:1837 +#: flatcamGUI/FlatCAMGUI.py:632 flatcamGUI/FlatCAMGUI.py:1848 msgid "2Sided Tool" msgstr "2Seitiges Werkzeug" -#: flatcamGUI/FlatCAMGUI.py:633 flatcamGUI/FlatCAMGUI.py:1838 +#: flatcamGUI/FlatCAMGUI.py:633 flatcamGUI/FlatCAMGUI.py:1849 msgid "&Cutout Tool" msgstr "Ausschnittwerkzeug" -#: flatcamGUI/FlatCAMGUI.py:634 flatcamGUI/FlatCAMGUI.py:1839 +#: flatcamGUI/FlatCAMGUI.py:634 flatcamGUI/FlatCAMGUI.py:1850 #: flatcamGUI/ObjectUI.py:392 flatcamTools/ToolNonCopperClear.py:285 msgid "NCC Tool" msgstr "NCC Werkzeug" -#: flatcamGUI/FlatCAMGUI.py:638 flatcamGUI/FlatCAMGUI.py:1843 +#: flatcamGUI/FlatCAMGUI.py:638 flatcamGUI/FlatCAMGUI.py:1854 msgid "Panel Tool" msgstr "Platte Werkzeug" -#: flatcamGUI/FlatCAMGUI.py:639 flatcamGUI/FlatCAMGUI.py:1844 +#: flatcamGUI/FlatCAMGUI.py:639 flatcamGUI/FlatCAMGUI.py:1855 #: flatcamTools/ToolFilm.py:204 msgid "Film Tool" msgstr "Filmwerkzeug" -#: flatcamGUI/FlatCAMGUI.py:640 flatcamGUI/FlatCAMGUI.py:1846 +#: flatcamGUI/FlatCAMGUI.py:640 flatcamGUI/FlatCAMGUI.py:1857 msgid "SolderPaste Tool" msgstr "Lötpaste-Werkzeug" -#: flatcamGUI/FlatCAMGUI.py:643 flatcamGUI/FlatCAMGUI.py:1850 +#: flatcamGUI/FlatCAMGUI.py:641 flatcamGUI/FlatCAMGUI.py:1858 +#: flatcamTools/ToolSub.py:26 +msgid "Substract Tool" +msgstr "Abziehen Werkzeug " + +#: flatcamGUI/FlatCAMGUI.py:645 flatcamGUI/FlatCAMGUI.py:1863 msgid "Calculators Tool" msgstr "Rechnerwerkzeug" -#: flatcamGUI/FlatCAMGUI.py:647 flatcamGUI/FlatCAMGUI.py:661 -#: flatcamGUI/FlatCAMGUI.py:694 flatcamGUI/FlatCAMGUI.py:1854 -#: flatcamGUI/FlatCAMGUI.py:1904 +#: flatcamGUI/FlatCAMGUI.py:649 flatcamGUI/FlatCAMGUI.py:663 +#: flatcamGUI/FlatCAMGUI.py:696 flatcamGUI/FlatCAMGUI.py:1867 +#: flatcamGUI/FlatCAMGUI.py:1917 msgid "Select" msgstr "Wählen" -#: flatcamGUI/FlatCAMGUI.py:648 flatcamGUI/FlatCAMGUI.py:1855 +#: flatcamGUI/FlatCAMGUI.py:650 flatcamGUI/FlatCAMGUI.py:1868 msgid "Add Drill Hole" msgstr "Bohrloch hinzufügen" -#: flatcamGUI/FlatCAMGUI.py:650 flatcamGUI/FlatCAMGUI.py:1857 +#: flatcamGUI/FlatCAMGUI.py:652 flatcamGUI/FlatCAMGUI.py:1870 msgid "Add Drill Hole Array" msgstr "Bohrlochfeld hinzufügen" -#: flatcamGUI/FlatCAMGUI.py:651 flatcamGUI/FlatCAMGUI.py:1858 +#: flatcamGUI/FlatCAMGUI.py:653 flatcamGUI/FlatCAMGUI.py:1871 msgid "Resize Drill" msgstr "Bohrergröße ändern" -#: flatcamGUI/FlatCAMGUI.py:654 flatcamGUI/FlatCAMGUI.py:1861 +#: flatcamGUI/FlatCAMGUI.py:656 flatcamGUI/FlatCAMGUI.py:1874 msgid "Copy Drill" msgstr "Bohrer kopieren" -#: flatcamGUI/FlatCAMGUI.py:655 flatcamGUI/FlatCAMGUI.py:1863 +#: flatcamGUI/FlatCAMGUI.py:657 flatcamGUI/FlatCAMGUI.py:1876 msgid "Delete Drill" msgstr "Bohrer löschen" -#: flatcamGUI/FlatCAMGUI.py:658 flatcamGUI/FlatCAMGUI.py:1866 +#: flatcamGUI/FlatCAMGUI.py:660 flatcamGUI/FlatCAMGUI.py:1879 msgid "Move Drill" msgstr "Bohrer bewegen" -#: flatcamGUI/FlatCAMGUI.py:662 flatcamGUI/FlatCAMGUI.py:1870 +#: flatcamGUI/FlatCAMGUI.py:664 flatcamGUI/FlatCAMGUI.py:1883 msgid "Add Circle" msgstr "Kreis hinzufügen" -#: flatcamGUI/FlatCAMGUI.py:663 flatcamGUI/FlatCAMGUI.py:1871 +#: flatcamGUI/FlatCAMGUI.py:665 flatcamGUI/FlatCAMGUI.py:1884 msgid "Add Arc" msgstr "Bogen hinzufügen" -#: flatcamGUI/FlatCAMGUI.py:665 flatcamGUI/FlatCAMGUI.py:1873 +#: flatcamGUI/FlatCAMGUI.py:667 flatcamGUI/FlatCAMGUI.py:1886 msgid "Add Rectangle" msgstr "Rechteck hinzufügen" -#: flatcamGUI/FlatCAMGUI.py:668 flatcamGUI/FlatCAMGUI.py:1876 +#: flatcamGUI/FlatCAMGUI.py:670 flatcamGUI/FlatCAMGUI.py:1889 msgid "Add Path" msgstr "Pfad hinzufügen" -#: flatcamGUI/FlatCAMGUI.py:669 flatcamGUI/FlatCAMGUI.py:1878 +#: flatcamGUI/FlatCAMGUI.py:671 flatcamGUI/FlatCAMGUI.py:1891 msgid "Add Polygon" msgstr "Polygon hinzufügen" -#: flatcamGUI/FlatCAMGUI.py:671 flatcamGUI/FlatCAMGUI.py:1880 +#: flatcamGUI/FlatCAMGUI.py:673 flatcamGUI/FlatCAMGUI.py:1893 msgid "Add Text" msgstr "Text hinzufügen" -#: flatcamGUI/FlatCAMGUI.py:672 flatcamGUI/FlatCAMGUI.py:1882 +#: flatcamGUI/FlatCAMGUI.py:674 flatcamGUI/FlatCAMGUI.py:1895 msgid "Add Buffer" msgstr "Puffer hinzufügen" -#: flatcamGUI/FlatCAMGUI.py:673 flatcamGUI/FlatCAMGUI.py:1883 +#: flatcamGUI/FlatCAMGUI.py:675 flatcamGUI/FlatCAMGUI.py:1896 msgid "Paint Shape" msgstr "Malen Form" -#: flatcamGUI/FlatCAMGUI.py:676 flatcamGUI/FlatCAMGUI.py:1886 +#: flatcamGUI/FlatCAMGUI.py:678 flatcamGUI/FlatCAMGUI.py:1899 msgid "Polygon Union" msgstr "Polygon-Vereinigung" -#: flatcamGUI/FlatCAMGUI.py:678 flatcamGUI/FlatCAMGUI.py:1888 +#: flatcamGUI/FlatCAMGUI.py:680 flatcamGUI/FlatCAMGUI.py:1901 msgid "Polygon Intersection" msgstr "Polygonschnitt" -#: flatcamGUI/FlatCAMGUI.py:680 flatcamGUI/FlatCAMGUI.py:1890 +#: flatcamGUI/FlatCAMGUI.py:682 flatcamGUI/FlatCAMGUI.py:1903 msgid "Polygon Subtraction" msgstr "Polygon-Subtraktion" -#: flatcamGUI/FlatCAMGUI.py:683 flatcamGUI/FlatCAMGUI.py:1893 +#: flatcamGUI/FlatCAMGUI.py:685 flatcamGUI/FlatCAMGUI.py:1906 msgid "Cut Path" msgstr "Pfad ausschneiden" -#: flatcamGUI/FlatCAMGUI.py:684 +#: flatcamGUI/FlatCAMGUI.py:686 msgid "Copy Shape(s)" msgstr "Form kopieren" -#: flatcamGUI/FlatCAMGUI.py:687 +#: flatcamGUI/FlatCAMGUI.py:689 msgid "Delete Shape '-'" msgstr "Form löschen" -#: flatcamGUI/FlatCAMGUI.py:689 flatcamGUI/FlatCAMGUI.py:714 -#: flatcamGUI/FlatCAMGUI.py:1898 flatcamGUI/FlatCAMGUI.py:1918 +#: flatcamGUI/FlatCAMGUI.py:691 flatcamGUI/FlatCAMGUI.py:715 +#: flatcamGUI/FlatCAMGUI.py:1911 flatcamGUI/FlatCAMGUI.py:1936 msgid "Transformations" msgstr "Transformationen" -#: flatcamGUI/FlatCAMGUI.py:691 +#: flatcamGUI/FlatCAMGUI.py:693 msgid "Move Objects " msgstr "Objekte verschieben " -#: flatcamGUI/FlatCAMGUI.py:695 flatcamGUI/FlatCAMGUI.py:1905 +#: flatcamGUI/FlatCAMGUI.py:697 flatcamGUI/FlatCAMGUI.py:1918 msgid "Add Pad" msgstr "Pad hinzufügen" -#: flatcamGUI/FlatCAMGUI.py:697 flatcamGUI/FlatCAMGUI.py:1907 +#: flatcamGUI/FlatCAMGUI.py:699 flatcamGUI/FlatCAMGUI.py:1920 msgid "Add Track" msgstr "Track hinzufügen" -#: flatcamGUI/FlatCAMGUI.py:698 flatcamGUI/FlatCAMGUI.py:1908 +#: flatcamGUI/FlatCAMGUI.py:700 flatcamGUI/FlatCAMGUI.py:1921 msgid "Add Region" msgstr "Region hinzufügen" -#: flatcamGUI/FlatCAMGUI.py:700 +#: flatcamGUI/FlatCAMGUI.py:702 flatcamGUI/FlatCAMGUI.py:1923 msgid "Poligonize" msgstr "Polygonisieren" -#: flatcamGUI/FlatCAMGUI.py:703 +#: flatcamGUI/FlatCAMGUI.py:704 flatcamGUI/FlatCAMGUI.py:1925 msgid "SemiDisc" msgstr "Halbscheibe" -#: flatcamGUI/FlatCAMGUI.py:704 +#: flatcamGUI/FlatCAMGUI.py:705 flatcamGUI/FlatCAMGUI.py:1926 msgid "Disc" msgstr "Scheibe" -#: flatcamGUI/FlatCAMGUI.py:716 flatcamGUI/FlatCAMGUI.py:1572 -#: flatcamGUI/FlatCAMGUI.py:1582 flatcamGUI/FlatCAMGUI.py:1597 -#: flatcamGUI/FlatCAMGUI.py:1920 flatcamTools/ToolMove.py:26 +#: flatcamGUI/FlatCAMGUI.py:717 flatcamGUI/FlatCAMGUI.py:1588 +#: flatcamGUI/FlatCAMGUI.py:1608 flatcamGUI/FlatCAMGUI.py:1938 +#: flatcamTools/ToolMove.py:26 msgid "Move" msgstr "Bewegung" -#: flatcamGUI/FlatCAMGUI.py:722 flatcamGUI/FlatCAMGUI.py:1926 +#: flatcamGUI/FlatCAMGUI.py:723 flatcamGUI/FlatCAMGUI.py:1944 msgid "Snap to grid" msgstr "Am Raster ausrichten" -#: flatcamGUI/FlatCAMGUI.py:725 flatcamGUI/FlatCAMGUI.py:1929 +#: flatcamGUI/FlatCAMGUI.py:726 flatcamGUI/FlatCAMGUI.py:1947 msgid "Grid X snapping distance" msgstr "Raster X Fangdistanz" -#: flatcamGUI/FlatCAMGUI.py:730 flatcamGUI/FlatCAMGUI.py:1934 +#: flatcamGUI/FlatCAMGUI.py:731 flatcamGUI/FlatCAMGUI.py:1952 msgid "Grid Y snapping distance" msgstr "Raster Y Fangdistanz" -#: flatcamGUI/FlatCAMGUI.py:736 flatcamGUI/FlatCAMGUI.py:1940 +#: flatcamGUI/FlatCAMGUI.py:737 flatcamGUI/FlatCAMGUI.py:1958 msgid "" "When active, value on Grid_X\n" "is copied to the Grid_Y value." @@ -4457,64 +4434,64 @@ msgstr "" "Wenn aktiv, Wert auf Grid_X\n" "wird in den Wert von Grid_Y kopiert." -#: flatcamGUI/FlatCAMGUI.py:742 flatcamGUI/FlatCAMGUI.py:1946 +#: flatcamGUI/FlatCAMGUI.py:743 flatcamGUI/FlatCAMGUI.py:1964 msgid "Snap to corner" msgstr "In der Ecke ausrichten" -#: flatcamGUI/FlatCAMGUI.py:746 flatcamGUI/FlatCAMGUI.py:1950 -#: flatcamGUI/FlatCAMGUI.py:3286 +#: flatcamGUI/FlatCAMGUI.py:747 flatcamGUI/FlatCAMGUI.py:1968 +#: flatcamGUI/FlatCAMGUI.py:3311 msgid "Max. magnet distance" msgstr "Max. Magnetabstand" -#: flatcamGUI/FlatCAMGUI.py:760 flatcamGUI/FlatCAMGUI.py:1556 +#: flatcamGUI/FlatCAMGUI.py:775 flatcamGUI/FlatCAMGUI.py:1572 msgid "Project" msgstr "Projekt" -#: flatcamGUI/FlatCAMGUI.py:769 +#: flatcamGUI/FlatCAMGUI.py:785 msgid "Selected" msgstr "Ausgewählt" -#: flatcamGUI/FlatCAMGUI.py:788 flatcamGUI/FlatCAMGUI.py:796 +#: flatcamGUI/FlatCAMGUI.py:804 flatcamGUI/FlatCAMGUI.py:812 msgid "Plot Area" msgstr "Grundstücksfläche" -#: flatcamGUI/FlatCAMGUI.py:820 +#: flatcamGUI/FlatCAMGUI.py:836 msgid "General" msgstr "Allgemeines" -#: flatcamGUI/FlatCAMGUI.py:829 +#: flatcamGUI/FlatCAMGUI.py:845 msgid "APP. DEFAULTS" msgstr "Anwendungsvorgaben" -#: flatcamGUI/FlatCAMGUI.py:830 +#: flatcamGUI/FlatCAMGUI.py:846 msgid "PROJ. OPTIONS " msgstr "Projektoptionen" -#: flatcamGUI/FlatCAMGUI.py:841 +#: flatcamGUI/FlatCAMGUI.py:857 msgid "GERBER" msgstr "GERBER" -#: flatcamGUI/FlatCAMGUI.py:850 +#: flatcamGUI/FlatCAMGUI.py:866 msgid "EXCELLON" msgstr "EXCELLON" -#: flatcamGUI/FlatCAMGUI.py:859 +#: flatcamGUI/FlatCAMGUI.py:875 msgid "GEOMETRY" msgstr "GEOMETRY" -#: flatcamGUI/FlatCAMGUI.py:869 +#: flatcamGUI/FlatCAMGUI.py:885 msgid "CNC-JOB" msgstr "CNC-Auftrag" -#: flatcamGUI/FlatCAMGUI.py:878 +#: flatcamGUI/FlatCAMGUI.py:894 msgid "TOOLS" msgstr "WERKZEUGE" -#: flatcamGUI/FlatCAMGUI.py:895 +#: flatcamGUI/FlatCAMGUI.py:911 msgid "Import Preferences" msgstr "Importeinstellungen" -#: flatcamGUI/FlatCAMGUI.py:898 +#: flatcamGUI/FlatCAMGUI.py:914 msgid "" "Import a full set of FlatCAM settings from a file\n" "previously saved on HDD.\n" @@ -4529,11 +4506,11 @@ msgstr "" "FlatCAM speichert automatisch eine 'factory_defaults'-Datei\n" "beim ersten Start. Löschen Sie diese Datei nicht." -#: flatcamGUI/FlatCAMGUI.py:905 +#: flatcamGUI/FlatCAMGUI.py:921 msgid "Export Preferences" -msgstr "Voreinstellungen exportieren" +msgstr "Voreinstell. export." -#: flatcamGUI/FlatCAMGUI.py:908 +#: flatcamGUI/FlatCAMGUI.py:924 msgid "" "Export a full set of FlatCAM settings in a file\n" "that is saved on HDD." @@ -4542,20 +4519,20 @@ msgstr "" "Datei\n" "das ist auf der Festplatte gespeichert." -#: flatcamGUI/FlatCAMGUI.py:913 +#: flatcamGUI/FlatCAMGUI.py:929 msgid "Open Pref Folder" -msgstr "Öffnen Sie den Ordner \"Einstellungen\"" +msgstr "Öffnen Sie \"Einstell.\"" -#: flatcamGUI/FlatCAMGUI.py:916 +#: flatcamGUI/FlatCAMGUI.py:932 msgid "Open the folder where FlatCAM save the preferences files." msgstr "" "Öffnen Sie den Ordner, in dem FlatCAM die Voreinstellungsdateien speichert." -#: flatcamGUI/FlatCAMGUI.py:924 +#: flatcamGUI/FlatCAMGUI.py:940 msgid "Save Preferences" -msgstr "Voreinstellungen speichern" +msgstr "Voreinstell. speech." -#: flatcamGUI/FlatCAMGUI.py:927 +#: flatcamGUI/FlatCAMGUI.py:943 msgid "" "Save the current settings in the 'current_defaults' file\n" "which is the file storing the working default preferences." @@ -4563,7 +4540,7 @@ msgstr "" "Speichern Sie die aktuellen Einstellungen in der Datei 'current_defaults'\n" "Dies ist die Datei, in der die Arbeitseinstellungen gespeichert sind." -#: flatcamGUI/FlatCAMGUI.py:953 +#: flatcamGUI/FlatCAMGUI.py:969 msgid "" "General Shortcut list
\n" " Editor Shortcut list
\n" "
\n" @@ -5762,105 +5739,99 @@ msgstr "" "
\n" " " -#: flatcamGUI/FlatCAMGUI.py:1550 +#: flatcamGUI/FlatCAMGUI.py:1566 msgid "Disable" msgstr "Deaktivieren" -#: flatcamGUI/FlatCAMGUI.py:1552 +#: flatcamGUI/FlatCAMGUI.py:1568 msgid "New" msgstr "Neu" -#: flatcamGUI/FlatCAMGUI.py:1553 +#: flatcamGUI/FlatCAMGUI.py:1569 msgid "Geometry" msgstr "Geometrie" -#: flatcamGUI/FlatCAMGUI.py:1554 +#: flatcamGUI/FlatCAMGUI.py:1570 msgid "Excellon" msgstr "Excellon" -#: flatcamGUI/FlatCAMGUI.py:1559 +#: flatcamGUI/FlatCAMGUI.py:1575 msgid "Grids" msgstr "Raster" -#: flatcamGUI/FlatCAMGUI.py:1561 +#: flatcamGUI/FlatCAMGUI.py:1577 msgid "View" msgstr "Aussicht" -#: flatcamGUI/FlatCAMGUI.py:1563 +#: flatcamGUI/FlatCAMGUI.py:1579 msgid "Clear Plot" msgstr "Plot klar löschen" -#: flatcamGUI/FlatCAMGUI.py:1564 +#: flatcamGUI/FlatCAMGUI.py:1580 msgid "Replot" msgstr "Replotieren" -#: flatcamGUI/FlatCAMGUI.py:1567 +#: flatcamGUI/FlatCAMGUI.py:1583 msgid "Geo Editor" msgstr "Geo-Editor" -#: flatcamGUI/FlatCAMGUI.py:1568 +#: flatcamGUI/FlatCAMGUI.py:1584 msgid "Line" msgstr "Linie" -#: flatcamGUI/FlatCAMGUI.py:1569 +#: flatcamGUI/FlatCAMGUI.py:1585 msgid "Rectangle" msgstr "Rechteck" -#: flatcamGUI/FlatCAMGUI.py:1570 flatcamGUI/FlatCAMGUI.py:5110 -#: flatcamGUI/ObjectUI.py:1360 +#: flatcamGUI/FlatCAMGUI.py:1586 msgid "Cut" msgstr "Schnitt" -#: flatcamGUI/FlatCAMGUI.py:1575 +#: flatcamGUI/FlatCAMGUI.py:1591 msgid "Pad" msgstr "Pad" -#: flatcamGUI/FlatCAMGUI.py:1576 +#: flatcamGUI/FlatCAMGUI.py:1592 msgid "Pad Array" msgstr "Pad-Array" -#: flatcamGUI/FlatCAMGUI.py:1577 +#: flatcamGUI/FlatCAMGUI.py:1593 msgid "Track" msgstr "Track" -#: flatcamGUI/FlatCAMGUI.py:1578 +#: flatcamGUI/FlatCAMGUI.py:1594 msgid "Region" msgstr "Region" -#: flatcamGUI/FlatCAMGUI.py:1584 +#: flatcamGUI/FlatCAMGUI.py:1596 msgid "Exc Editor" msgstr "Exc-Editor" -#: flatcamGUI/FlatCAMGUI.py:1585 +#: flatcamGUI/FlatCAMGUI.py:1597 msgid "Add Drill" msgstr "Bohrer hinzufügen" -#: flatcamGUI/FlatCAMGUI.py:1587 -msgid "Copy Drill(s)" -msgstr "Bohrer kopieren" - -#: flatcamGUI/FlatCAMGUI.py:1618 +#: flatcamGUI/FlatCAMGUI.py:1629 msgid "Print Preview" msgstr "Druckvorschau" -#: flatcamGUI/FlatCAMGUI.py:1619 +#: flatcamGUI/FlatCAMGUI.py:1630 msgid "Print Code" msgstr "Code drucken" -#: flatcamGUI/FlatCAMGUI.py:1620 +#: flatcamGUI/FlatCAMGUI.py:1631 msgid "Find in Code" msgstr "Im Code suchen" -#: flatcamGUI/FlatCAMGUI.py:1625 +#: flatcamGUI/FlatCAMGUI.py:1636 msgid "Replace With" msgstr "Ersetzen mit" -#: flatcamGUI/FlatCAMGUI.py:1629 flatcamGUI/FlatCAMGUI.py:5108 -#: flatcamGUI/FlatCAMGUI.py:5618 flatcamGUI/ObjectUI.py:1358 +#: flatcamGUI/FlatCAMGUI.py:1640 msgid "All" msgstr "Alles" -#: flatcamGUI/FlatCAMGUI.py:1631 +#: flatcamGUI/FlatCAMGUI.py:1642 msgid "" "When checked it will replace all instances in the 'Find' box\n" "with the text in the 'Replace' box.." @@ -5869,15 +5840,15 @@ msgstr "" "ersetzt\n" "mit dem Text im Feld \"Ersetzen\" .." -#: flatcamGUI/FlatCAMGUI.py:1634 +#: flatcamGUI/FlatCAMGUI.py:1645 msgid "Open Code" msgstr "Code öffnen" -#: flatcamGUI/FlatCAMGUI.py:1635 +#: flatcamGUI/FlatCAMGUI.py:1646 msgid "Save Code" msgstr "Code speichern" -#: flatcamGUI/FlatCAMGUI.py:1670 +#: flatcamGUI/FlatCAMGUI.py:1681 msgid "" "Relative neasurement.\n" "Reference is last click position" @@ -5885,7 +5856,7 @@ msgstr "" "Relative Messung\n" "Referenz ist Position des letzten Klicks" -#: flatcamGUI/FlatCAMGUI.py:1676 +#: flatcamGUI/FlatCAMGUI.py:1687 msgid "" "Absolute neasurement.\n" "Reference is (X=0, Y= 0) position" @@ -5893,23 +5864,23 @@ msgstr "" "Absolute Messung.\n" "Referenz ist (X = 0, Y = 0)" -#: flatcamGUI/FlatCAMGUI.py:1869 +#: flatcamGUI/FlatCAMGUI.py:1882 msgid "Select 'Esc'" msgstr "Wählen" -#: flatcamGUI/FlatCAMGUI.py:1894 +#: flatcamGUI/FlatCAMGUI.py:1907 msgid "Copy Objects" msgstr "Objekte kopieren" -#: flatcamGUI/FlatCAMGUI.py:1896 +#: flatcamGUI/FlatCAMGUI.py:1909 msgid "Delete Shape" msgstr "Form löschen" -#: flatcamGUI/FlatCAMGUI.py:1901 +#: flatcamGUI/FlatCAMGUI.py:1914 msgid "Move Objects" msgstr "Objekte verschieben" -#: flatcamGUI/FlatCAMGUI.py:2319 +#: flatcamGUI/FlatCAMGUI.py:2343 msgid "" "Please first select a geometry item to be cutted\n" "then select the geometry item that will be cutted\n" @@ -5921,17 +5892,17 @@ msgstr "" "aus dem ersten Artikel. Zum Schluss drücken Sie die Taste ~ X ~ oder\n" "die Symbolleisten-Schaltfläche." -#: flatcamGUI/FlatCAMGUI.py:2326 flatcamGUI/FlatCAMGUI.py:2463 -#: flatcamGUI/FlatCAMGUI.py:2522 flatcamGUI/FlatCAMGUI.py:2542 +#: flatcamGUI/FlatCAMGUI.py:2350 flatcamGUI/FlatCAMGUI.py:2487 +#: flatcamGUI/FlatCAMGUI.py:2546 flatcamGUI/FlatCAMGUI.py:2566 msgid "Warning" msgstr "Warnung" -#: flatcamGUI/FlatCAMGUI.py:2393 flatcamGUI/FlatCAMGUI.py:2592 -#: flatcamGUI/FlatCAMGUI.py:2803 +#: flatcamGUI/FlatCAMGUI.py:2417 flatcamGUI/FlatCAMGUI.py:2616 +#: flatcamGUI/FlatCAMGUI.py:2827 msgid "[WARNING_NOTCL] Cancelled." msgstr "[WARNING_NOTCL] Abgebrochen." -#: flatcamGUI/FlatCAMGUI.py:2458 +#: flatcamGUI/FlatCAMGUI.py:2482 msgid "" "Please select geometry items \n" "on which to perform Intersection Tool." @@ -5939,7 +5910,7 @@ msgstr "" "Bitte wählen Sie Geometrieelemente aus\n" "auf dem das Verschneidungswerkzeug ausgeführt werden soll." -#: flatcamGUI/FlatCAMGUI.py:2517 +#: flatcamGUI/FlatCAMGUI.py:2541 msgid "" "Please select geometry items \n" "on which to perform Substraction Tool." @@ -5947,7 +5918,7 @@ msgstr "" "Bitte wählen Sie Geometrieelemente aus\n" "auf dem das Subtraktionswerkzeug ausgeführt werden soll." -#: flatcamGUI/FlatCAMGUI.py:2537 +#: flatcamGUI/FlatCAMGUI.py:2561 msgid "" "Please select geometry items \n" "on which to perform union." @@ -5955,55 +5926,55 @@ msgstr "" "Bitte wählen Sie Geometrieelemente aus\n" "auf dem die Polygonverbindung ausgeführt werden soll." -#: flatcamGUI/FlatCAMGUI.py:2608 flatcamGUI/FlatCAMGUI.py:2820 +#: flatcamGUI/FlatCAMGUI.py:2632 flatcamGUI/FlatCAMGUI.py:2844 msgid "[WARNING_NOTCL] Cancelled. Nothing selected to delete." msgstr "[WARNING_NOTCL] Abgebrochen. Nichts zum Löschen ausgewählt." -#: flatcamGUI/FlatCAMGUI.py:2692 flatcamGUI/FlatCAMGUI.py:2887 +#: flatcamGUI/FlatCAMGUI.py:2716 flatcamGUI/FlatCAMGUI.py:2911 msgid "[WARNING_NOTCL] Cancelled. Nothing selected to copy." msgstr "[WARNING_NOTCL] Abgebrochen. Nichts zum Kopieren ausgewählt." -#: flatcamGUI/FlatCAMGUI.py:2738 flatcamGUI/FlatCAMGUI.py:2933 +#: flatcamGUI/FlatCAMGUI.py:2762 flatcamGUI/FlatCAMGUI.py:2957 msgid "[WARNING_NOTCL] Cancelled. Nothing selected to move." msgstr "[WARNING_NOTCL] Abgebrochen. Nichts ausgewählt, um sich zu bewegen." -#: flatcamGUI/FlatCAMGUI.py:2947 +#: flatcamGUI/FlatCAMGUI.py:2971 msgid "New Tool ..." msgstr "Neues Werkzeug ..." -#: flatcamGUI/FlatCAMGUI.py:2948 +#: flatcamGUI/FlatCAMGUI.py:2972 msgid "Enter a Tool Diameter:" msgstr "Geben Sie einen Werkzeugdurchmesser ein:" -#: flatcamGUI/FlatCAMGUI.py:2990 +#: flatcamGUI/FlatCAMGUI.py:3014 msgid "Measurement Tool exit..." msgstr "Messwerkzeug beenden ..." -#: flatcamGUI/FlatCAMGUI.py:3271 +#: flatcamGUI/FlatCAMGUI.py:3296 msgid "Grid X value:" msgstr "Raster X-Wert:" -#: flatcamGUI/FlatCAMGUI.py:3273 +#: flatcamGUI/FlatCAMGUI.py:3298 msgid "This is the Grid snap value on X axis." msgstr "Dies ist der Rasterfangwert auf der X-Achse." -#: flatcamGUI/FlatCAMGUI.py:3278 +#: flatcamGUI/FlatCAMGUI.py:3303 msgid "Grid Y value:" msgstr "Raster Y-Wert:" -#: flatcamGUI/FlatCAMGUI.py:3280 +#: flatcamGUI/FlatCAMGUI.py:3305 msgid "This is the Grid snap value on Y axis." msgstr "Dies ist der Rasterfangwert auf der Y-Achse." -#: flatcamGUI/FlatCAMGUI.py:3285 +#: flatcamGUI/FlatCAMGUI.py:3310 msgid "Snap Max:" msgstr "Maximalwert:" -#: flatcamGUI/FlatCAMGUI.py:3290 +#: flatcamGUI/FlatCAMGUI.py:3315 msgid "Workspace:" msgstr "Arbeitsplatz:" -#: flatcamGUI/FlatCAMGUI.py:3292 +#: flatcamGUI/FlatCAMGUI.py:3317 msgid "" "Draw a delimiting rectangle on canvas.\n" "The purpose is to illustrate the limits for our work." @@ -6011,11 +5982,11 @@ msgstr "" "Zeichnen Sie ein begrenzendes Rechteck auf die Leinwand.\n" "Ziel ist es, die Grenzen unserer Arbeit aufzuzeigen." -#: flatcamGUI/FlatCAMGUI.py:3295 +#: flatcamGUI/FlatCAMGUI.py:3320 msgid "Wk. format:" msgstr "Arbeitsbereichformat:" -#: flatcamGUI/FlatCAMGUI.py:3297 +#: flatcamGUI/FlatCAMGUI.py:3322 msgid "" "Select the type of rectangle to be used on canvas,\n" "as valid workspace." @@ -6023,11 +5994,11 @@ msgstr "" "Wählen Sie den Typ des Rechtecks für die Leinwand aus.\n" "als gültiger Arbeitsbereich." -#: flatcamGUI/FlatCAMGUI.py:3310 +#: flatcamGUI/FlatCAMGUI.py:3335 msgid "Plot Fill:" msgstr "Plot füllen:" -#: flatcamGUI/FlatCAMGUI.py:3312 +#: flatcamGUI/FlatCAMGUI.py:3337 msgid "" "Set the fill color for plotted objects.\n" "First 6 digits are the color and the last 2\n" @@ -6037,28 +6008,28 @@ msgstr "" "Die ersten 6 Ziffern sind die Farbe und die letzten 2\n" "Ziffern sind für Alpha (Transparenz)." -#: flatcamGUI/FlatCAMGUI.py:3326 flatcamGUI/FlatCAMGUI.py:3376 -#: flatcamGUI/FlatCAMGUI.py:3426 +#: flatcamGUI/FlatCAMGUI.py:3351 flatcamGUI/FlatCAMGUI.py:3401 +#: flatcamGUI/FlatCAMGUI.py:3451 msgid "Alpha Level:" msgstr "Alpha-Ebene:" -#: flatcamGUI/FlatCAMGUI.py:3328 +#: flatcamGUI/FlatCAMGUI.py:3353 msgid "Set the fill transparency for plotted objects." msgstr "Legen Sie die Füllungstransparenz für geplottete Objekte fest." -#: flatcamGUI/FlatCAMGUI.py:3345 +#: flatcamGUI/FlatCAMGUI.py:3370 msgid "Plot Line:" msgstr "Handlungsstrang:" -#: flatcamGUI/FlatCAMGUI.py:3347 +#: flatcamGUI/FlatCAMGUI.py:3372 msgid "Set the line color for plotted objects." msgstr "Legen Sie die Linienfarbe für geplottete Objekte fest." -#: flatcamGUI/FlatCAMGUI.py:3359 +#: flatcamGUI/FlatCAMGUI.py:3384 msgid "Sel. Fill:" msgstr "Ausgewählte Füllung:" -#: flatcamGUI/FlatCAMGUI.py:3361 +#: flatcamGUI/FlatCAMGUI.py:3386 msgid "" "Set the fill color for the selection box\n" "in case that the selection is done from left to right.\n" @@ -6070,26 +6041,26 @@ msgstr "" "Die ersten 6 Ziffern sind die Farbe und die letzten 2\n" "Ziffern sind für Alpha (Transparenz)." -#: flatcamGUI/FlatCAMGUI.py:3378 +#: flatcamGUI/FlatCAMGUI.py:3403 msgid "Set the fill transparency for the 'left to right' selection box." msgstr "" "Legen Sie die Füllungstransparenz für das Auswahlfeld \"von links nach rechts" "\" fest." -#: flatcamGUI/FlatCAMGUI.py:3395 +#: flatcamGUI/FlatCAMGUI.py:3420 msgid "Sel. Line:" msgstr "Auswahlzeile:" -#: flatcamGUI/FlatCAMGUI.py:3397 +#: flatcamGUI/FlatCAMGUI.py:3422 msgid "Set the line color for the 'left to right' selection box." msgstr "" "Legen Sie die Linienfarbe für das Auswahlfeld \"von links nach rechts\" fest." -#: flatcamGUI/FlatCAMGUI.py:3409 +#: flatcamGUI/FlatCAMGUI.py:3434 msgid "Sel2. Fill:" msgstr "Auswahl2 Füllung:" -#: flatcamGUI/FlatCAMGUI.py:3411 +#: flatcamGUI/FlatCAMGUI.py:3436 msgid "" "Set the fill color for the selection box\n" "in case that the selection is done from right to left.\n" @@ -6101,45 +6072,65 @@ msgstr "" "Die ersten 6 Ziffern sind die Farbe und die letzten 2\n" "Ziffern sind für Alpha (Transparenz)." -#: flatcamGUI/FlatCAMGUI.py:3428 +#: flatcamGUI/FlatCAMGUI.py:3453 msgid "Set the fill transparency for selection 'right to left' box." msgstr "" "Legen Sie die Füllungstransparenz für die Auswahl von rechts nach links fest." -#: flatcamGUI/FlatCAMGUI.py:3445 +#: flatcamGUI/FlatCAMGUI.py:3470 msgid "Sel2. Line:" msgstr "Auswahl 2 Zeile:" -#: flatcamGUI/FlatCAMGUI.py:3447 +#: flatcamGUI/FlatCAMGUI.py:3472 msgid "Set the line color for the 'right to left' selection box." msgstr "" "Legen Sie die Linienfarbe für das Auswahlfeld 'von rechts nach links' fest." -#: flatcamGUI/FlatCAMGUI.py:3459 +#: flatcamGUI/FlatCAMGUI.py:3484 msgid "Editor Draw:" msgstr "Editor zeichnen:" -#: flatcamGUI/FlatCAMGUI.py:3461 +#: flatcamGUI/FlatCAMGUI.py:3486 msgid "Set the color for the shape." msgstr "Legen Sie die Farbe für die Form fest." -#: flatcamGUI/FlatCAMGUI.py:3473 +#: flatcamGUI/FlatCAMGUI.py:3498 msgid "Editor Draw Sel.:" msgstr "Editor Draw Sel.:" -#: flatcamGUI/FlatCAMGUI.py:3475 +#: flatcamGUI/FlatCAMGUI.py:3500 msgid "Set the color of the shape when selected." msgstr "Legt die Farbe der Form fest, wenn sie ausgewählt wird." -#: flatcamGUI/FlatCAMGUI.py:3522 +#: flatcamGUI/FlatCAMGUI.py:3512 +msgid "Project Items:" +msgstr "Projektelemente:" + +#: flatcamGUI/FlatCAMGUI.py:3514 +msgid "Set the color of the items in Project Tab Tree." +msgstr "Legen Sie die Farbe der Elemente im Projektregisterbaum fest." + +#: flatcamGUI/FlatCAMGUI.py:3525 +msgid "Proj. Dis. Items:" +msgstr "Proj. Deakt. Elemente" + +#: flatcamGUI/FlatCAMGUI.py:3527 +msgid "" +"Set the color of the items in Project Tab Tree,\n" +"for the case when the items are disabled." +msgstr "" +"Legen Sie die Farbe der Elemente in der Projektregisterkarte fest.\n" +"für den Fall, wenn die Elemente deaktiviert sind." + +#: flatcamGUI/FlatCAMGUI.py:3578 msgid "GUI Settings" msgstr "GUI-Einstellungen" -#: flatcamGUI/FlatCAMGUI.py:3529 +#: flatcamGUI/FlatCAMGUI.py:3585 msgid "Layout:" msgstr "Layout:" -#: flatcamGUI/FlatCAMGUI.py:3531 +#: flatcamGUI/FlatCAMGUI.py:3587 msgid "" "Select an layout for FlatCAM.\n" "It is applied immediately." @@ -6147,11 +6138,11 @@ msgstr "" "Wählen Sie ein Layout für FlatCAM.\n" "Es wird sofort angewendet." -#: flatcamGUI/FlatCAMGUI.py:3547 +#: flatcamGUI/FlatCAMGUI.py:3603 msgid "Style:" msgstr "Stil:" -#: flatcamGUI/FlatCAMGUI.py:3549 +#: flatcamGUI/FlatCAMGUI.py:3605 msgid "" "Select an style for FlatCAM.\n" "It will be applied at the next app start." @@ -6159,11 +6150,11 @@ msgstr "" "Wählen Sie einen Stil für FlatCAM.\n" "Es wird beim nächsten Start der App angewendet." -#: flatcamGUI/FlatCAMGUI.py:3560 +#: flatcamGUI/FlatCAMGUI.py:3616 msgid "HDPI Support:" msgstr "HDPI-Unterstützung:" -#: flatcamGUI/FlatCAMGUI.py:3562 +#: flatcamGUI/FlatCAMGUI.py:3618 msgid "" "Enable High DPI support for FlatCAM.\n" "It will be applied at the next app start." @@ -6171,11 +6162,11 @@ msgstr "" "Aktivieren Sie die High DPI-Unterstützung für FlatCAM.\n" "Es wird beim nächsten Start der App angewendet." -#: flatcamGUI/FlatCAMGUI.py:3575 +#: flatcamGUI/FlatCAMGUI.py:3631 msgid "Clear GUI Settings:" msgstr "GUI-Einstellungen löschen:" -#: flatcamGUI/FlatCAMGUI.py:3577 +#: flatcamGUI/FlatCAMGUI.py:3633 msgid "" "Clear the GUI settings for FlatCAM,\n" "such as: layout, gui state, style, hdpi support etc." @@ -6183,15 +6174,15 @@ msgstr "" "Löschen Sie die GUI-Einstellungen für FlatCAM.\n" "wie zum Beispiel: Layout, GUI-Status, Stil, HDPI-Unterstützung usw." -#: flatcamGUI/FlatCAMGUI.py:3580 +#: flatcamGUI/FlatCAMGUI.py:3636 msgid "Clear" msgstr "Klären" -#: flatcamGUI/FlatCAMGUI.py:3584 +#: flatcamGUI/FlatCAMGUI.py:3640 msgid "Hover Shape:" msgstr "Schwebeflug-Form:" -#: flatcamGUI/FlatCAMGUI.py:3586 +#: flatcamGUI/FlatCAMGUI.py:3642 msgid "" "Enable display of a hover shape for FlatCAM objects.\n" "It is displayed whenever the mouse cursor is hovering\n" @@ -6201,23 +6192,39 @@ msgstr "" "Es wird angezeigt, wenn sich der Mauszeiger in der Maus befindet\n" "über jede Art von nicht ausgewähltem Objekt." -#: flatcamGUI/FlatCAMGUI.py:3626 +#: flatcamGUI/FlatCAMGUI.py:3649 +msgid "Sel. Shape:" +msgstr "Auswahlform:" + +#: flatcamGUI/FlatCAMGUI.py:3651 +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 "" +"Aktivieren Sie die Anzeige einer Auswahlform für FlatCAM-Objekte.\n" +"Es wird angezeigt, wenn die Maus ein Objekt auswählt\n" +"entweder durch Klicken oder Ziehen der Maus von links nach rechts oder\n" +"rechts nach links." + +#: flatcamGUI/FlatCAMGUI.py:3693 msgid "Are you sure you want to delete the GUI Settings? \n" msgstr "Möchten Sie die GUI-Einstellungen wirklich löschen?\n" -#: flatcamGUI/FlatCAMGUI.py:3629 +#: flatcamGUI/FlatCAMGUI.py:3696 msgid "Clear GUI Settings" msgstr "Löschen Sie die GUI-Einstellungen" -#: flatcamGUI/FlatCAMGUI.py:3650 +#: flatcamGUI/FlatCAMGUI.py:3717 msgid "App Preferences" msgstr "App-Einstellungen" -#: flatcamGUI/FlatCAMGUI.py:3656 +#: flatcamGUI/FlatCAMGUI.py:3723 msgid "Units:" msgstr "Einheiten:" -#: flatcamGUI/FlatCAMGUI.py:3657 +#: flatcamGUI/FlatCAMGUI.py:3724 msgid "" "The default value for FlatCAM units.\n" "Whatever is selected here is set every time\n" @@ -6227,11 +6234,11 @@ msgstr "" "Was hier ausgewählt wird, wird jedes Mal eingestellt\n" "FLatCAM wird gestartet." -#: flatcamGUI/FlatCAMGUI.py:3664 +#: flatcamGUI/FlatCAMGUI.py:3731 msgid "APP. LEVEL:" msgstr "Bewerbungsebene:" -#: flatcamGUI/FlatCAMGUI.py:3665 +#: flatcamGUI/FlatCAMGUI.py:3732 msgid "" "Choose the default level of usage for FlatCAM.\n" "BASIC level -> reduced functionality, best for beginner's.\n" @@ -6247,31 +6254,42 @@ msgstr "" "Die Auswahl hier beeinflusst die Parameter in\n" "Die Registerkarte Ausgewählt für alle Arten von FlatCAM-Objekten." -#: flatcamGUI/FlatCAMGUI.py:3670 flatcamGUI/FlatCAMGUI.py:4295 -msgid "Basic" -msgstr "Basic" - -#: flatcamGUI/FlatCAMGUI.py:3671 -msgid "Advanced" -msgstr "Erweitert" - -#: flatcamGUI/FlatCAMGUI.py:3674 +#: flatcamGUI/FlatCAMGUI.py:3741 msgid "Languages:" msgstr "Sprachen:" -#: flatcamGUI/FlatCAMGUI.py:3675 +#: flatcamGUI/FlatCAMGUI.py:3742 msgid "Set the language used throughout FlatCAM." msgstr "Stellen Sie die Sprache ein, die in FlatCAM verwendet wird." -#: flatcamGUI/FlatCAMGUI.py:3678 +#: flatcamGUI/FlatCAMGUI.py:3745 msgid "Apply Language" -msgstr "Sprache anwenden" +msgstr "Sprache anwend." -#: flatcamGUI/FlatCAMGUI.py:3681 +#: flatcamGUI/FlatCAMGUI.py:3746 +msgid "" +"Set the language used throughout FlatCAM.\n" +"The app will restart after click.Windows: When FlatCAM is installed in " +"Program Files\n" +"directory, it is possible that the app will not\n" +"restart after the button is clicked due of Windows\n" +"security features. In this case the language will be\n" +"applied at the next app start." +msgstr "" +"Stellen Sie die Sprache ein, die in FlatCAM verwendet wird.\n" +"Die App wird nach einem Klick neu gestartet. Windows: Wenn FlatCAM in " +"Programme installiert ist\n" +"Verzeichnis, ist es möglich, dass die App nicht\n" +"Starten Sie neu, nachdem die Schaltfläche aufgrund von Windows angeklickt " +"wurde\n" +"Sicherheitsfunktionen. In diesem Fall wird die Sprache sein\n" +"Beim nächsten Start der App angewendet." + +#: flatcamGUI/FlatCAMGUI.py:3755 msgid "Shell at StartUp:" msgstr "Shell beim Start:" -#: flatcamGUI/FlatCAMGUI.py:3683 flatcamGUI/FlatCAMGUI.py:3688 +#: flatcamGUI/FlatCAMGUI.py:3757 flatcamGUI/FlatCAMGUI.py:3762 msgid "" "Check this box if you want the shell to\n" "start automatically at startup." @@ -6279,11 +6297,11 @@ msgstr "" "Aktivieren Sie dieses Kontrollkästchen, wenn die Shell gewünscht wird\n" "automatisch beim Start starten" -#: flatcamGUI/FlatCAMGUI.py:3693 +#: flatcamGUI/FlatCAMGUI.py:3767 msgid "Version Check:" msgstr "Versionsprüfung:" -#: flatcamGUI/FlatCAMGUI.py:3695 flatcamGUI/FlatCAMGUI.py:3700 +#: flatcamGUI/FlatCAMGUI.py:3769 flatcamGUI/FlatCAMGUI.py:3774 msgid "" "Check this box if you want to check\n" "for a new version automatically at startup." @@ -6292,11 +6310,11 @@ msgstr "" "wenn Sie das Kontrollkästchen aktivieren möchten\n" "für eine neue Version automatisch beim Start." -#: flatcamGUI/FlatCAMGUI.py:3705 +#: flatcamGUI/FlatCAMGUI.py:3779 msgid "Send Stats:" msgstr "Statistiken senden:" -#: flatcamGUI/FlatCAMGUI.py:3707 flatcamGUI/FlatCAMGUI.py:3712 +#: flatcamGUI/FlatCAMGUI.py:3781 flatcamGUI/FlatCAMGUI.py:3786 msgid "" "Check this box if you agree to send anonymous\n" "stats automatically at startup, to help improve FlatCAM." @@ -6305,11 +6323,11 @@ msgstr "" "zustimmen\n" "wird beim Start automatisch aktualisiert, um FlatCAM zu verbessern." -#: flatcamGUI/FlatCAMGUI.py:3719 +#: flatcamGUI/FlatCAMGUI.py:3793 msgid "Pan Button:" msgstr "Pan-Taste:" -#: flatcamGUI/FlatCAMGUI.py:3720 +#: flatcamGUI/FlatCAMGUI.py:3794 msgid "" "Select the mouse button to use for panning:\n" "- MMB --> Middle Mouse Button\n" @@ -6319,35 +6337,19 @@ msgstr "" "- MMB -> Mittlere Maustaste\n" "- RMB -> Rechte Maustaste" -#: flatcamGUI/FlatCAMGUI.py:3723 -msgid "MMB" -msgstr "MMB" - -#: flatcamGUI/FlatCAMGUI.py:3724 -msgid "RMB" -msgstr "RMB" - -#: flatcamGUI/FlatCAMGUI.py:3727 +#: flatcamGUI/FlatCAMGUI.py:3801 msgid "Multiple Sel:" msgstr "Mehrfachauswahl:" -#: flatcamGUI/FlatCAMGUI.py:3728 +#: flatcamGUI/FlatCAMGUI.py:3802 msgid "Select the key used for multiple selection." msgstr "Wählen Sie den Schlüssel für die Mehrfachauswahl aus." -#: flatcamGUI/FlatCAMGUI.py:3729 -msgid "CTRL" -msgstr "CTRL" - -#: flatcamGUI/FlatCAMGUI.py:3730 -msgid "SHIFT" -msgstr "SHIFT" - -#: flatcamGUI/FlatCAMGUI.py:3733 +#: flatcamGUI/FlatCAMGUI.py:3807 msgid "Project at StartUp:" msgstr "Projekt beim Start:" -#: flatcamGUI/FlatCAMGUI.py:3735 flatcamGUI/FlatCAMGUI.py:3740 +#: flatcamGUI/FlatCAMGUI.py:3809 flatcamGUI/FlatCAMGUI.py:3814 msgid "" "Check this box if you want the project/selected/tool tab area to\n" "to be shown automatically at startup." @@ -6357,11 +6359,11 @@ msgstr "" "angezeigt werden soll\n" "beim Start automatisch angezeigt werden." -#: flatcamGUI/FlatCAMGUI.py:3745 +#: flatcamGUI/FlatCAMGUI.py:3819 msgid "Project AutoHide:" msgstr "Projekt autoausblenden:" -#: flatcamGUI/FlatCAMGUI.py:3747 flatcamGUI/FlatCAMGUI.py:3753 +#: flatcamGUI/FlatCAMGUI.py:3821 flatcamGUI/FlatCAMGUI.py:3827 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" @@ -6373,11 +6375,11 @@ msgstr "" "keine Objekte geladen sind und anzeigen, wenn ein \n" "neues Objekt erstellt wird." -#: flatcamGUI/FlatCAMGUI.py:3759 +#: flatcamGUI/FlatCAMGUI.py:3833 msgid "Enable ToolTips:" msgstr " QuickInfos aktivieren: " -#: flatcamGUI/FlatCAMGUI.py:3761 flatcamGUI/FlatCAMGUI.py:3766 +#: flatcamGUI/FlatCAMGUI.py:3835 flatcamGUI/FlatCAMGUI.py:3840 msgid "" "Check this box if you want to have toolTips displayed\n" "when hovering with mouse over items throughout the App." @@ -6386,11 +6388,11 @@ msgstr "" "sollen\n" "wenn Sie mit der Maus über Elemente in der App fahren." -#: flatcamGUI/FlatCAMGUI.py:3769 +#: flatcamGUI/FlatCAMGUI.py:3843 msgid "Workers number:" msgstr "Arbeiter Nummer:" -#: flatcamGUI/FlatCAMGUI.py:3771 flatcamGUI/FlatCAMGUI.py:3780 +#: flatcamGUI/FlatCAMGUI.py:3845 flatcamGUI/FlatCAMGUI.py:3854 msgid "" "The number of Qthreads made available to the App.\n" "A bigger number may finish the jobs more quickly but\n" @@ -6406,11 +6408,11 @@ msgstr "" "Der Standardwert ist 2.\n" "Nach dem Ändern wird es beim nächsten Start der App angewendet." -#: flatcamGUI/FlatCAMGUI.py:3821 +#: flatcamGUI/FlatCAMGUI.py:3895 msgid "Save Compressed Project" msgstr "Speichern Sie das komprimierte Projekt" -#: flatcamGUI/FlatCAMGUI.py:3823 +#: flatcamGUI/FlatCAMGUI.py:3897 msgid "" "Whether to save a compressed or uncompressed project.\n" "When checked it will save a compressed FlatCAM project." @@ -6420,11 +6422,11 @@ msgstr "" "Wenn diese Option aktiviert ist, wird ein komprimiertes FlatCAM-Projekt " "gespeichert." -#: flatcamGUI/FlatCAMGUI.py:3834 +#: flatcamGUI/FlatCAMGUI.py:3908 msgid "Compression Level:" msgstr "Kompressionsstufe:" -#: flatcamGUI/FlatCAMGUI.py:3836 +#: flatcamGUI/FlatCAMGUI.py:3910 msgid "" "The level of compression used when saving\n" "a FlatCAM project. Higher value means better compression\n" @@ -6434,47 +6436,47 @@ msgstr "" "ein FlatCAM-Projekt. Ein höherer Wert bedeutet eine bessere Komprimierung\n" "erfordern jedoch mehr RAM-Auslastung und mehr Verarbeitungszeit." -#: flatcamGUI/FlatCAMGUI.py:3862 flatcamGUI/FlatCAMGUI.py:4103 -#: flatcamGUI/FlatCAMGUI.py:4758 flatcamGUI/FlatCAMGUI.py:5082 +#: flatcamGUI/FlatCAMGUI.py:3936 flatcamGUI/FlatCAMGUI.py:4177 +#: flatcamGUI/FlatCAMGUI.py:4832 flatcamGUI/FlatCAMGUI.py:5156 #: flatcamGUI/ObjectUI.py:150 flatcamGUI/ObjectUI.py:505 #: flatcamGUI/ObjectUI.py:830 flatcamGUI/ObjectUI.py:1344 msgid "Plot Options:" msgstr " Diagrammoptionen: " -#: flatcamGUI/FlatCAMGUI.py:3869 flatcamGUI/FlatCAMGUI.py:4115 -#: flatcamGUI/ObjectUI.py:506 +#: flatcamGUI/FlatCAMGUI.py:3943 flatcamGUI/FlatCAMGUI.py:4189 +#: flatcamGUI/ObjectUI.py:156 flatcamGUI/ObjectUI.py:506 msgid "Solid" msgstr "Solide" -#: flatcamGUI/FlatCAMGUI.py:3871 flatcamGUI/ObjectUI.py:158 +#: flatcamGUI/FlatCAMGUI.py:3945 flatcamGUI/ObjectUI.py:158 msgid "Solid color polygons." msgstr "Einfarbige Polygone." -#: flatcamGUI/FlatCAMGUI.py:3876 +#: flatcamGUI/FlatCAMGUI.py:3950 flatcamGUI/ObjectUI.py:164 msgid "M-Color" msgstr "M-farbig" -#: flatcamGUI/FlatCAMGUI.py:3878 flatcamGUI/ObjectUI.py:166 +#: flatcamGUI/FlatCAMGUI.py:3952 flatcamGUI/ObjectUI.py:166 msgid "Draw polygons in different colors." msgstr "Zeichnen Sie Polygone in verschiedenen Farben." -#: flatcamGUI/FlatCAMGUI.py:3883 flatcamGUI/FlatCAMGUI.py:4109 -#: flatcamGUI/FlatCAMGUI.py:4762 flatcamGUI/ObjectUI.py:172 +#: flatcamGUI/FlatCAMGUI.py:3957 flatcamGUI/FlatCAMGUI.py:4183 +#: flatcamGUI/FlatCAMGUI.py:4836 flatcamGUI/ObjectUI.py:172 msgid "Plot" msgstr "Zeichn" -#: flatcamGUI/FlatCAMGUI.py:3885 flatcamGUI/FlatCAMGUI.py:4764 +#: flatcamGUI/FlatCAMGUI.py:3959 flatcamGUI/FlatCAMGUI.py:4838 #: flatcamGUI/ObjectUI.py:174 flatcamGUI/ObjectUI.py:546 #: flatcamGUI/ObjectUI.py:876 flatcamGUI/ObjectUI.py:1431 msgid "Plot (show) this object." msgstr "Plotten (zeigen) dieses Objekt." -#: flatcamGUI/FlatCAMGUI.py:3890 flatcamGUI/FlatCAMGUI.py:4771 -#: flatcamGUI/FlatCAMGUI.py:5118 +#: flatcamGUI/FlatCAMGUI.py:3964 flatcamGUI/FlatCAMGUI.py:4845 +#: flatcamGUI/FlatCAMGUI.py:5192 msgid "Circle Steps:" msgstr "Kreisschritte:" -#: flatcamGUI/FlatCAMGUI.py:3892 +#: flatcamGUI/FlatCAMGUI.py:3966 msgid "" "The number of circle steps for Gerber \n" "circular aperture linear approximation." @@ -6482,15 +6484,15 @@ msgstr "" "Die Anzahl der Kreisschritte für Gerber\n" "lineare Approximation mit kreisförmiger Apertur." -#: flatcamGUI/FlatCAMGUI.py:3907 +#: flatcamGUI/FlatCAMGUI.py:3981 msgid "Gerber Options" msgstr "Gerber-Optionen" -#: flatcamGUI/FlatCAMGUI.py:3911 flatcamGUI/ObjectUI.py:251 +#: flatcamGUI/FlatCAMGUI.py:3985 flatcamGUI/ObjectUI.py:251 msgid "Isolation Routing:" msgstr " Isolierungsrouting: " -#: flatcamGUI/FlatCAMGUI.py:3913 flatcamGUI/ObjectUI.py:253 +#: flatcamGUI/FlatCAMGUI.py:3987 flatcamGUI/ObjectUI.py:253 msgid "" "Create a Geometry object with\n" "toolpaths to cut outside polygons." @@ -6499,17 +6501,17 @@ msgstr "" "Werkzeugwege zum Schneiden von \n" "äußeren Polygonen." -#: flatcamGUI/FlatCAMGUI.py:3924 flatcamGUI/FlatCAMGUI.py:4481 -#: flatcamGUI/FlatCAMGUI.py:5406 flatcamGUI/ObjectUI.py:785 +#: flatcamGUI/FlatCAMGUI.py:3998 flatcamGUI/FlatCAMGUI.py:4555 +#: flatcamGUI/FlatCAMGUI.py:5480 flatcamGUI/ObjectUI.py:785 #: flatcamGUI/ObjectUI.py:801 msgid "Diameter of the cutting tool." msgstr "Durchmesser des Schneidewerkzeugs." -#: flatcamGUI/FlatCAMGUI.py:3931 +#: flatcamGUI/FlatCAMGUI.py:4005 msgid "Width (# passes):" msgstr "Breite (# passt):" -#: flatcamGUI/FlatCAMGUI.py:3933 flatcamGUI/ObjectUI.py:275 +#: flatcamGUI/FlatCAMGUI.py:4007 flatcamGUI/ObjectUI.py:275 msgid "" "Width of the isolation gap in\n" "number (integer) of tool widths." @@ -6517,11 +6519,11 @@ msgstr "" "Breite der Isolationslücke in\n" "Anzahl (Ganzzahl) der Werkzeugbreiten." -#: flatcamGUI/FlatCAMGUI.py:3941 flatcamGUI/ObjectUI.py:283 +#: flatcamGUI/FlatCAMGUI.py:4015 flatcamGUI/ObjectUI.py:283 msgid "Pass overlap:" msgstr "Passüberlappung:" -#: flatcamGUI/FlatCAMGUI.py:3943 flatcamGUI/ObjectUI.py:285 +#: flatcamGUI/FlatCAMGUI.py:4017 flatcamGUI/ObjectUI.py:285 #, python-format msgid "" "How much (fraction) of the tool width to overlap each tool pass.\n" @@ -6535,11 +6537,11 @@ msgstr "" "Ein Wert von 0,25 bedeutet hier eine Überlappung von 25% \n" "vom oben angegebenen Werkzeugdurchmesser." -#: flatcamGUI/FlatCAMGUI.py:3951 flatcamGUI/ObjectUI.py:295 +#: flatcamGUI/FlatCAMGUI.py:4025 flatcamGUI/ObjectUI.py:295 msgid "Milling Type:" msgstr "Fräsart:" -#: flatcamGUI/FlatCAMGUI.py:3953 flatcamGUI/ObjectUI.py:297 +#: flatcamGUI/FlatCAMGUI.py:4027 flatcamGUI/ObjectUI.py:297 msgid "" "Milling type:\n" "- climb / best for precision milling and to reduce tool usage\n" @@ -6550,27 +6552,19 @@ msgstr "" "Werkzeugverbrauchs\n" "- konventionell / nützlich, wenn kein Spielausgleich vorliegt" -#: flatcamGUI/FlatCAMGUI.py:3958 flatcamGUI/ObjectUI.py:302 -msgid "Climb" -msgstr "Steigen" - -#: flatcamGUI/FlatCAMGUI.py:3959 flatcamGUI/ObjectUI.py:303 -msgid "Conv." -msgstr "Konv." - -#: flatcamGUI/FlatCAMGUI.py:3963 +#: flatcamGUI/FlatCAMGUI.py:4037 msgid "Combine Passes" msgstr "Kombinieren Sie Pässe" -#: flatcamGUI/FlatCAMGUI.py:3965 flatcamGUI/ObjectUI.py:309 +#: flatcamGUI/FlatCAMGUI.py:4039 flatcamGUI/ObjectUI.py:309 msgid "Combine all passes into one object" msgstr "Kombinieren Sie alle Durchgänge in einem Objekt" -#: flatcamGUI/FlatCAMGUI.py:3970 +#: flatcamGUI/FlatCAMGUI.py:4044 msgid "Clear non-copper:" msgstr " Nicht-Kupfer löschen: " -#: flatcamGUI/FlatCAMGUI.py:3972 flatcamGUI/FlatCAMGUI.py:5294 +#: flatcamGUI/FlatCAMGUI.py:4046 flatcamGUI/FlatCAMGUI.py:5368 #: flatcamGUI/ObjectUI.py:386 msgid "" "Create a Geometry object with\n" @@ -6579,12 +6573,12 @@ msgstr "" "Erstellen Sie ein Geometrieobjekt mit\n" "Werkzeugwege, um alle Nicht-Kupfer-Bereiche zu schneiden." -#: flatcamGUI/FlatCAMGUI.py:3981 flatcamGUI/FlatCAMGUI.py:4007 +#: flatcamGUI/FlatCAMGUI.py:4055 flatcamGUI/FlatCAMGUI.py:4081 #: flatcamGUI/ObjectUI.py:430 flatcamGUI/ObjectUI.py:464 msgid "Boundary Margin:" msgstr "Grenzmarge:" -#: flatcamGUI/FlatCAMGUI.py:3983 flatcamGUI/ObjectUI.py:432 +#: flatcamGUI/FlatCAMGUI.py:4057 flatcamGUI/ObjectUI.py:432 msgid "" "Specify the edge of the PCB\n" "by drawing a box around all\n" @@ -6596,11 +6590,11 @@ msgstr "" "Objekte mit diesem Minimum\n" "Entfernung." -#: flatcamGUI/FlatCAMGUI.py:3993 flatcamGUI/FlatCAMGUI.py:4016 +#: flatcamGUI/FlatCAMGUI.py:4067 flatcamGUI/FlatCAMGUI.py:4090 msgid "Rounded corners" msgstr "Abgerundete Ecken" -#: flatcamGUI/FlatCAMGUI.py:3995 +#: flatcamGUI/FlatCAMGUI.py:4069 msgid "" "Creates a Geometry objects with polygons\n" "covering the copper-free areas of the PCB." @@ -6608,11 +6602,11 @@ msgstr "" "Erzeugt ein Geometrieobjekt mit Polygonen\n" "bedeckt die kupferfreien Bereiche der Leiterplatte." -#: flatcamGUI/FlatCAMGUI.py:4001 flatcamGUI/ObjectUI.py:454 +#: flatcamGUI/FlatCAMGUI.py:4075 flatcamGUI/ObjectUI.py:454 msgid "Bounding Box:" msgstr " Begrenzungsbox: " -#: flatcamGUI/FlatCAMGUI.py:4009 flatcamGUI/ObjectUI.py:466 +#: flatcamGUI/FlatCAMGUI.py:4083 flatcamGUI/ObjectUI.py:466 msgid "" "Distance of the edges of the box\n" "to the nearest polygon." @@ -6620,7 +6614,7 @@ msgstr "" "Abstand der Kanten der Box\n" "zum nächsten Polygon." -#: flatcamGUI/FlatCAMGUI.py:4018 flatcamGUI/ObjectUI.py:476 +#: flatcamGUI/FlatCAMGUI.py:4092 flatcamGUI/ObjectUI.py:476 msgid "" "If the bounding box is \n" "to have rounded corners\n" @@ -6632,15 +6626,15 @@ msgstr "" "ihr Radius ist gleich\n" "der Abstand." -#: flatcamGUI/FlatCAMGUI.py:4032 +#: flatcamGUI/FlatCAMGUI.py:4106 msgid "Gerber Adv. Options" msgstr "Erweiterte Optionen von Gerber" -#: flatcamGUI/FlatCAMGUI.py:4036 +#: flatcamGUI/FlatCAMGUI.py:4110 msgid "Advanced Param.:" msgstr "Erweiterte Parameter:" -#: flatcamGUI/FlatCAMGUI.py:4038 +#: flatcamGUI/FlatCAMGUI.py:4112 msgid "" "A list of Gerber advanced parameters.\n" "Those parameters are available only for\n" @@ -6650,11 +6644,11 @@ msgstr "" "Diese Parameter sind nur für verfügbar\n" "Fortgeschrittene Anwendungsebene." -#: flatcamGUI/FlatCAMGUI.py:4048 flatcamGUI/ObjectUI.py:314 +#: flatcamGUI/FlatCAMGUI.py:4122 flatcamGUI/ObjectUI.py:314 msgid "\"Follow\"" msgstr "\"Folgen\"" -#: flatcamGUI/FlatCAMGUI.py:4050 flatcamGUI/ObjectUI.py:316 +#: flatcamGUI/FlatCAMGUI.py:4124 flatcamGUI/ObjectUI.py:316 msgid "" "Generate a 'Follow' geometry.\n" "This means that it will cut through\n" @@ -6664,11 +6658,11 @@ msgstr "" "Dies bedeutet, dass es durchschneiden wird\n" "die Mitte der Spur" -#: flatcamGUI/FlatCAMGUI.py:4058 +#: flatcamGUI/FlatCAMGUI.py:4132 msgid "Table Show/Hide" msgstr "Tabelle anzeigen / ausblenden" -#: flatcamGUI/FlatCAMGUI.py:4060 +#: flatcamGUI/FlatCAMGUI.py:4134 msgid "" "Toggle the display of the Gerber Apertures Table.\n" "Also, on hide, it will delete all mark shapes\n" @@ -6678,11 +6672,11 @@ msgstr "" "Beim Ausblenden werden auch alle Markierungsformen gelöscht\n" "das sind auf leinwand gezeichnet." -#: flatcamGUI/FlatCAMGUI.py:4068 +#: flatcamGUI/FlatCAMGUI.py:4142 msgid "Ap. Scale Factor:" msgstr "Öffnungsmaßstab:" -#: flatcamGUI/FlatCAMGUI.py:4070 +#: flatcamGUI/FlatCAMGUI.py:4144 msgid "" "Change the size of the selected apertures.\n" "Factor by which to multiply\n" @@ -6692,11 +6686,11 @@ msgstr "" "Faktor, mit dem sich multiplizieren soll\n" "geometrische Merkmale dieses Objekts." -#: flatcamGUI/FlatCAMGUI.py:4080 +#: flatcamGUI/FlatCAMGUI.py:4154 msgid "Ap. Buffer Factor:" msgstr "Blendenpufferfaktor:" -#: flatcamGUI/FlatCAMGUI.py:4082 +#: flatcamGUI/FlatCAMGUI.py:4156 msgid "" "Change the size of the selected apertures.\n" "Factor by which to expand/shrink\n" @@ -6706,15 +6700,15 @@ msgstr "" "Faktor, um den / das erweitert / verkleinert werden soll\n" "geometrische Merkmale dieses Objekts." -#: flatcamGUI/FlatCAMGUI.py:4100 +#: flatcamGUI/FlatCAMGUI.py:4174 msgid "Excellon General" msgstr "Excellon Allgemeines" -#: flatcamGUI/FlatCAMGUI.py:4122 +#: flatcamGUI/FlatCAMGUI.py:4196 msgid "Excellon Format:" msgstr "Excellon-Format:" -#: flatcamGUI/FlatCAMGUI.py:4124 +#: flatcamGUI/FlatCAMGUI.py:4198 msgid "" "The NC drill files, usually named Excellon files\n" "are files that can be found in different formats.\n" @@ -6756,16 +6750,16 @@ msgstr "" "Sprint-Layout 2: 4 ZOLL LZ\n" "KiCAD 3: 5 ZOLL TZ" -#: flatcamGUI/FlatCAMGUI.py:4149 +#: flatcamGUI/FlatCAMGUI.py:4223 msgid "INCH:" msgstr "ZOLL:" -#: flatcamGUI/FlatCAMGUI.py:4152 +#: flatcamGUI/FlatCAMGUI.py:4226 msgid "Default values for INCH are 2:4" msgstr "Die Standardwerte für ZOLL sind 2: 4" -#: flatcamGUI/FlatCAMGUI.py:4160 flatcamGUI/FlatCAMGUI.py:4193 -#: flatcamGUI/FlatCAMGUI.py:4670 +#: flatcamGUI/FlatCAMGUI.py:4234 flatcamGUI/FlatCAMGUI.py:4267 +#: flatcamGUI/FlatCAMGUI.py:4744 msgid "" "This numbers signify the number of digits in\n" "the whole part of Excellon coordinates." @@ -6773,8 +6767,8 @@ msgstr "" "Diese Zahlen geben die Anzahl der Ziffern in an\n" "der gesamte Teil der Excellon-Koordinaten." -#: flatcamGUI/FlatCAMGUI.py:4174 flatcamGUI/FlatCAMGUI.py:4207 -#: flatcamGUI/FlatCAMGUI.py:4684 +#: flatcamGUI/FlatCAMGUI.py:4248 flatcamGUI/FlatCAMGUI.py:4281 +#: flatcamGUI/FlatCAMGUI.py:4758 msgid "" "This numbers signify the number of digits in\n" "the decimal part of Excellon coordinates." @@ -6782,19 +6776,19 @@ msgstr "" "Diese Zahlen geben die Anzahl der Ziffern in an\n" "der Dezimalteil der Excellon-Koordinaten." -#: flatcamGUI/FlatCAMGUI.py:4182 +#: flatcamGUI/FlatCAMGUI.py:4256 msgid "METRIC:" msgstr "METRISCH:" -#: flatcamGUI/FlatCAMGUI.py:4185 +#: flatcamGUI/FlatCAMGUI.py:4259 msgid "Default values for METRIC are 3:3" msgstr "Die Standardwerte für METRISCH sind 3: 3" -#: flatcamGUI/FlatCAMGUI.py:4216 +#: flatcamGUI/FlatCAMGUI.py:4290 msgid "Default Zeros:" msgstr "Standard Nullen:" -#: flatcamGUI/FlatCAMGUI.py:4219 flatcamGUI/FlatCAMGUI.py:4719 +#: flatcamGUI/FlatCAMGUI.py:4293 flatcamGUI/FlatCAMGUI.py:4793 msgid "" "This sets the type of Excellon zeros.\n" "If LZ then Leading Zeros are kept and\n" @@ -6808,15 +6802,7 @@ msgstr "" "Wenn TZ aktiviert ist, werden nachfolgende Nullen beibehalten\n" "und führende Nullen werden entfernt." -#: flatcamGUI/FlatCAMGUI.py:4227 flatcamGUI/FlatCAMGUI.py:4726 -msgid "LZ" -msgstr "LZ" - -#: flatcamGUI/FlatCAMGUI.py:4228 flatcamGUI/FlatCAMGUI.py:4727 -msgid "TZ" -msgstr "TZ" - -#: flatcamGUI/FlatCAMGUI.py:4230 +#: flatcamGUI/FlatCAMGUI.py:4304 msgid "" "This sets the default type of Excellon zeros.\n" "If it is not detected in the parsed file the value here\n" @@ -6832,11 +6818,11 @@ msgstr "" "Wenn TZ aktiviert ist, werden nachfolgende Nullen beibehalten\n" "und führende Nullen werden entfernt." -#: flatcamGUI/FlatCAMGUI.py:4244 +#: flatcamGUI/FlatCAMGUI.py:4318 msgid "Default Units:" msgstr "Standard einheiten:" -#: flatcamGUI/FlatCAMGUI.py:4247 +#: flatcamGUI/FlatCAMGUI.py:4321 msgid "" "This sets the default units of Excellon files.\n" "If it is not detected in the parsed file the value here\n" @@ -6848,15 +6834,7 @@ msgstr "" "wird verwendet. Einige Excellon-Dateien haben keinen Header\n" "Daher wird dieser Parameter verwendet." -#: flatcamGUI/FlatCAMGUI.py:4255 flatcamGUI/FlatCAMGUI.py:4646 -msgid "INCH" -msgstr "ZOLL" - -#: flatcamGUI/FlatCAMGUI.py:4256 flatcamGUI/FlatCAMGUI.py:4647 -msgid "MM" -msgstr "MM" - -#: flatcamGUI/FlatCAMGUI.py:4258 +#: flatcamGUI/FlatCAMGUI.py:4332 msgid "" "This sets the units of Excellon files.\n" "Some Excellon files don't have an header\n" @@ -6866,15 +6844,15 @@ msgstr "" "Einige Excellon-Dateien haben keinen Header\n" "Daher wird dieser Parameter verwendet." -#: flatcamGUI/FlatCAMGUI.py:4274 +#: flatcamGUI/FlatCAMGUI.py:4348 msgid "Excellon Optimization:" msgstr "Optimierung der Excellons:" -#: flatcamGUI/FlatCAMGUI.py:4281 +#: flatcamGUI/FlatCAMGUI.py:4355 msgid "Algorithm: " msgstr "Algorithmus:" -#: flatcamGUI/FlatCAMGUI.py:4284 flatcamGUI/FlatCAMGUI.py:4297 +#: flatcamGUI/FlatCAMGUI.py:4358 flatcamGUI/FlatCAMGUI.py:4371 msgid "" "This sets the optimization type for the Excellon drill path.\n" "If MH is checked then Google OR-Tools algorithm with MetaHeuristic\n" @@ -6898,15 +6876,11 @@ msgstr "" "Wenn DEAKTIVIERT, arbeitet FlatCAM im 32-Bit-Modus und verwendet es\n" "Traveling Salesman-Algorithmus zur Pfadoptimierung." -#: flatcamGUI/FlatCAMGUI.py:4294 -msgid "MH" -msgstr "MH" - -#: flatcamGUI/FlatCAMGUI.py:4309 +#: flatcamGUI/FlatCAMGUI.py:4383 msgid "Optimization Time: " msgstr "Optimierungszeit:" -#: flatcamGUI/FlatCAMGUI.py:4312 +#: flatcamGUI/FlatCAMGUI.py:4386 msgid "" "When OR-Tools Metaheuristic (MH) is enabled there is a\n" "maximum threshold for how much time is spent doing the\n" @@ -6918,15 +6892,15 @@ msgstr "" "Pfadoptimierung. Diese maximale Dauer wird hier eingestellt.\n" "In Sekunden." -#: flatcamGUI/FlatCAMGUI.py:4353 +#: flatcamGUI/FlatCAMGUI.py:4427 msgid "Excellon Options" msgstr "Excellon-Optionen" -#: flatcamGUI/FlatCAMGUI.py:4356 flatcamGUI/ObjectUI.py:584 +#: flatcamGUI/FlatCAMGUI.py:4430 flatcamGUI/ObjectUI.py:584 msgid "Create CNC Job" msgstr "CNC-Job erstellen" -#: flatcamGUI/FlatCAMGUI.py:4358 +#: flatcamGUI/FlatCAMGUI.py:4432 msgid "" "Parameters used to create a CNC Job object\n" "for this drill object." @@ -6934,13 +6908,13 @@ msgstr "" "Parameter, die zum Erstellen eines CNC-Auftragsobjekts verwendet werden\n" "für dieses Bohrobjekt." -#: flatcamGUI/FlatCAMGUI.py:4366 flatcamGUI/FlatCAMGUI.py:4822 -#: flatcamGUI/FlatCAMGUI.py:5830 flatcamGUI/ObjectUI.py:595 +#: flatcamGUI/FlatCAMGUI.py:4440 flatcamGUI/FlatCAMGUI.py:4896 +#: flatcamGUI/FlatCAMGUI.py:5904 flatcamGUI/ObjectUI.py:595 #: flatcamGUI/ObjectUI.py:1059 flatcamTools/ToolCalculators.py:108 msgid "Cut Z:" msgstr "Schnitt Z:" -#: flatcamGUI/FlatCAMGUI.py:4368 flatcamGUI/ObjectUI.py:597 +#: flatcamGUI/FlatCAMGUI.py:4442 flatcamGUI/ObjectUI.py:597 msgid "" "Drill depth (negative)\n" "below the copper surface." @@ -6948,12 +6922,12 @@ msgstr "" "Bohrtiefe (negativ)\n" "unter der Kupferoberfläche." -#: flatcamGUI/FlatCAMGUI.py:4375 flatcamGUI/FlatCAMGUI.py:4855 +#: flatcamGUI/FlatCAMGUI.py:4449 flatcamGUI/FlatCAMGUI.py:4929 #: flatcamGUI/ObjectUI.py:605 flatcamGUI/ObjectUI.py:1095 msgid "Travel Z:" msgstr "Reise Z:" -#: flatcamGUI/FlatCAMGUI.py:4377 flatcamGUI/ObjectUI.py:607 +#: flatcamGUI/FlatCAMGUI.py:4451 flatcamGUI/ObjectUI.py:607 msgid "" "Tool height when travelling\n" "across the XY plane." @@ -6961,11 +6935,11 @@ msgstr "" "Werkzeughöhe auf Reisen\n" "über die XY-Ebene." -#: flatcamGUI/FlatCAMGUI.py:4385 flatcamGUI/FlatCAMGUI.py:4865 +#: flatcamGUI/FlatCAMGUI.py:4459 flatcamGUI/FlatCAMGUI.py:4939 msgid "Tool change:" msgstr "Werkzeugwechsel:" -#: flatcamGUI/FlatCAMGUI.py:4387 flatcamGUI/FlatCAMGUI.py:4867 +#: flatcamGUI/FlatCAMGUI.py:4461 flatcamGUI/FlatCAMGUI.py:4941 #: flatcamGUI/ObjectUI.py:617 msgid "" "Include tool-change sequence\n" @@ -6974,19 +6948,19 @@ msgstr "" "Werkzeugwechselfolge einbeziehen\n" "im G-Code (Pause für Werkzeugwechsel)." -#: flatcamGUI/FlatCAMGUI.py:4394 flatcamGUI/FlatCAMGUI.py:4875 +#: flatcamGUI/FlatCAMGUI.py:4468 flatcamGUI/FlatCAMGUI.py:4949 msgid "Toolchange Z:" msgstr "Werkzeugwechsel Z:" -#: flatcamGUI/FlatCAMGUI.py:4396 flatcamGUI/FlatCAMGUI.py:4877 +#: flatcamGUI/FlatCAMGUI.py:4470 flatcamGUI/FlatCAMGUI.py:4951 msgid "Toolchange Z position." msgstr "Toolchange Z position." -#: flatcamGUI/FlatCAMGUI.py:4402 +#: flatcamGUI/FlatCAMGUI.py:4476 msgid "Feedrate:" msgstr "Vorschubgeschwindigkeit:" -#: flatcamGUI/FlatCAMGUI.py:4404 +#: flatcamGUI/FlatCAMGUI.py:4478 msgid "" "Tool speed while drilling\n" "(in units per minute)." @@ -6994,11 +6968,11 @@ msgstr "" "Werkzeuggeschwindigkeit beim Bohren\n" "(in Einheiten pro Minute)." -#: flatcamGUI/FlatCAMGUI.py:4412 +#: flatcamGUI/FlatCAMGUI.py:4486 msgid "Spindle Speed:" msgstr "Spulengeschwindigkeit:" -#: flatcamGUI/FlatCAMGUI.py:4414 flatcamGUI/FlatCAMGUI.py:4907 +#: flatcamGUI/FlatCAMGUI.py:4488 flatcamGUI/FlatCAMGUI.py:4981 #: flatcamGUI/ObjectUI.py:681 msgid "" "Speed of the spindle\n" @@ -7007,12 +6981,12 @@ msgstr "" "Geschwindigkeit der Spindel\n" "in RPM (optional)" -#: flatcamGUI/FlatCAMGUI.py:4422 flatcamGUI/FlatCAMGUI.py:4915 +#: flatcamGUI/FlatCAMGUI.py:4496 flatcamGUI/FlatCAMGUI.py:4989 #: flatcamGUI/ObjectUI.py:689 flatcamGUI/ObjectUI.py:1218 msgid "Dwell:" msgstr "Wohnen:" -#: flatcamGUI/FlatCAMGUI.py:4424 flatcamGUI/FlatCAMGUI.py:4917 +#: flatcamGUI/FlatCAMGUI.py:4498 flatcamGUI/FlatCAMGUI.py:4991 #: flatcamGUI/ObjectUI.py:691 flatcamGUI/ObjectUI.py:1221 msgid "" "Pause to allow the spindle to reach its\n" @@ -7021,21 +6995,21 @@ msgstr "" "Pause, damit die Spindel ihre erreichen kann\n" "Geschwindigkeit vor dem Schneiden." -#: flatcamGUI/FlatCAMGUI.py:4427 flatcamGUI/FlatCAMGUI.py:4920 +#: flatcamGUI/FlatCAMGUI.py:4501 flatcamGUI/FlatCAMGUI.py:4994 msgid "Duration:" msgstr "Dauer:" -#: flatcamGUI/FlatCAMGUI.py:4429 flatcamGUI/FlatCAMGUI.py:4922 +#: flatcamGUI/FlatCAMGUI.py:4503 flatcamGUI/FlatCAMGUI.py:4996 #: flatcamGUI/ObjectUI.py:696 flatcamGUI/ObjectUI.py:1228 msgid "Number of milliseconds for spindle to dwell." msgstr "Anzahl der Millisekunden, die die Spindel halten soll." -#: flatcamGUI/FlatCAMGUI.py:4441 flatcamGUI/FlatCAMGUI.py:4932 +#: flatcamGUI/FlatCAMGUI.py:4515 flatcamGUI/FlatCAMGUI.py:5006 #: flatcamGUI/ObjectUI.py:704 msgid "Postprocessor:" msgstr "Postprozessor:" -#: flatcamGUI/FlatCAMGUI.py:4443 +#: flatcamGUI/FlatCAMGUI.py:4517 msgid "" "The postprocessor file that dictates\n" "gcode output." @@ -7043,11 +7017,11 @@ msgstr "" "Die Postprozessor-Datei, die diktiert\n" "gcode ausgabe." -#: flatcamGUI/FlatCAMGUI.py:4453 +#: flatcamGUI/FlatCAMGUI.py:4527 msgid "Gcode: " msgstr "Gcode:" -#: flatcamGUI/FlatCAMGUI.py:4455 +#: flatcamGUI/FlatCAMGUI.py:4529 msgid "" "Choose what to use for GCode generation:\n" "'Drills', 'Slots' or 'Both'.\n" @@ -7060,37 +7034,23 @@ msgstr "" "angezeigt\n" "in Bohrer umgewandelt." -#: flatcamGUI/FlatCAMGUI.py:4460 flatcamGUI/ObjectUI.py:556 -#: flatcamGUI/ObjectUI.py:752 -msgid "Drills" -msgstr "Bohrer" - -#: flatcamGUI/FlatCAMGUI.py:4461 flatcamGUI/ObjectUI.py:556 -#: flatcamGUI/ObjectUI.py:753 -msgid "Slots" -msgstr "Schlüssel" - -#: flatcamGUI/FlatCAMGUI.py:4462 flatcamGUI/ObjectUI.py:754 -msgid "Both" -msgstr "Both" - -#: flatcamGUI/FlatCAMGUI.py:4471 flatcamGUI/ObjectUI.py:769 +#: flatcamGUI/FlatCAMGUI.py:4545 flatcamGUI/ObjectUI.py:769 msgid "Mill Holes" msgstr " Löcher bohren " -#: flatcamGUI/FlatCAMGUI.py:4473 flatcamGUI/ObjectUI.py:771 +#: flatcamGUI/FlatCAMGUI.py:4547 flatcamGUI/ObjectUI.py:771 msgid "Create Geometry for milling holes." msgstr "Erstellen Sie Geometrie zum Fräsen von Löchern." -#: flatcamGUI/FlatCAMGUI.py:4479 +#: flatcamGUI/FlatCAMGUI.py:4553 msgid "Drill Tool dia:" msgstr "Bohrwerkzeug Durchmesser:" -#: flatcamGUI/FlatCAMGUI.py:4486 +#: flatcamGUI/FlatCAMGUI.py:4560 msgid "Slot Tool dia:" msgstr "Schlitzwerkzeug Durchmesser:" -#: flatcamGUI/FlatCAMGUI.py:4488 +#: flatcamGUI/FlatCAMGUI.py:4562 msgid "" "Diameter of the cutting tool\n" "when milling slots." @@ -7098,19 +7058,19 @@ msgstr "" "Durchmesser des Schneidewerkzeugs\n" "beim Fräsen von Schlitzen." -#: flatcamGUI/FlatCAMGUI.py:4500 +#: flatcamGUI/FlatCAMGUI.py:4574 msgid "Defaults" msgstr "Standardwerte" -#: flatcamGUI/FlatCAMGUI.py:4513 +#: flatcamGUI/FlatCAMGUI.py:4587 msgid "Excellon Adv. Options" msgstr "Excellon erweiterte Optionen" -#: flatcamGUI/FlatCAMGUI.py:4519 flatcamGUI/FlatCAMGUI.py:4955 +#: flatcamGUI/FlatCAMGUI.py:4593 flatcamGUI/FlatCAMGUI.py:5029 msgid "Advanced Options:" msgstr "Erweiterte Optionen:" -#: flatcamGUI/FlatCAMGUI.py:4521 +#: flatcamGUI/FlatCAMGUI.py:4595 msgid "" "Parameters used to create a CNC Job object\n" "for this drill object that are shown when App Level is Advanced." @@ -7119,11 +7079,11 @@ msgstr "" "für dieses Drill-Objekt, das angezeigt wird, wenn die App-Ebene Erweitert " "ist." -#: flatcamGUI/FlatCAMGUI.py:4529 +#: flatcamGUI/FlatCAMGUI.py:4603 msgid "Offset Z:" msgstr "Versatz Z:" -#: flatcamGUI/FlatCAMGUI.py:4531 flatcamGUI/ObjectUI.py:574 +#: flatcamGUI/FlatCAMGUI.py:4605 flatcamGUI/ObjectUI.py:574 msgid "" "Some drill bits (the larger ones) need to drill deeper\n" "to create the desired exit hole diameter due of the tip shape.\n" @@ -7134,20 +7094,20 @@ msgstr "" "erzeugen.\n" "Der Wert hier kann den Parameter Cut Z ausgleichen." -#: flatcamGUI/FlatCAMGUI.py:4538 flatcamGUI/FlatCAMGUI.py:4966 +#: flatcamGUI/FlatCAMGUI.py:4612 flatcamGUI/FlatCAMGUI.py:5040 msgid "Toolchange X,Y:" msgstr "Werkzeugwechsel X, Y:" -#: flatcamGUI/FlatCAMGUI.py:4540 flatcamGUI/FlatCAMGUI.py:4968 +#: flatcamGUI/FlatCAMGUI.py:4614 flatcamGUI/FlatCAMGUI.py:5042 msgid "Toolchange X,Y position." msgstr "Werkzeugwechsel X, Y Position." -#: flatcamGUI/FlatCAMGUI.py:4546 flatcamGUI/FlatCAMGUI.py:4975 +#: flatcamGUI/FlatCAMGUI.py:4620 flatcamGUI/FlatCAMGUI.py:5049 #: flatcamGUI/ObjectUI.py:634 msgid "Start move Z:" msgstr "Startbewegung Z:" -#: flatcamGUI/FlatCAMGUI.py:4548 +#: flatcamGUI/FlatCAMGUI.py:4622 msgid "" "Height of the tool just after start.\n" "Delete the value if you don't need this feature." @@ -7155,12 +7115,12 @@ msgstr "" "Höhe des Werkzeugs gleich nach dem Start.\n" "Löschen Sie den Wert, wenn Sie diese Funktion nicht benötigen." -#: flatcamGUI/FlatCAMGUI.py:4555 flatcamGUI/FlatCAMGUI.py:4985 +#: flatcamGUI/FlatCAMGUI.py:4629 flatcamGUI/FlatCAMGUI.py:5059 #: flatcamGUI/ObjectUI.py:644 flatcamGUI/ObjectUI.py:1141 msgid "End move Z:" msgstr "Bewegung beenden Z:" -#: flatcamGUI/FlatCAMGUI.py:4557 flatcamGUI/FlatCAMGUI.py:4987 +#: flatcamGUI/FlatCAMGUI.py:4631 flatcamGUI/FlatCAMGUI.py:5061 msgid "" "Height of the tool after\n" "the last move at the end of the job." @@ -7168,12 +7128,12 @@ msgstr "" "Höhe des Werkzeugs nach\n" "die letzte Bewegung am Ende des Jobs." -#: flatcamGUI/FlatCAMGUI.py:4564 flatcamGUI/FlatCAMGUI.py:4995 +#: flatcamGUI/FlatCAMGUI.py:4638 flatcamGUI/FlatCAMGUI.py:5069 #: flatcamGUI/ObjectUI.py:665 msgid "Feedrate Rapids:" msgstr "Vorschubgeschwindigkeit:" -#: flatcamGUI/FlatCAMGUI.py:4566 flatcamGUI/ObjectUI.py:667 +#: flatcamGUI/FlatCAMGUI.py:4640 flatcamGUI/ObjectUI.py:667 msgid "" "Tool speed while drilling\n" "(in units per minute).\n" @@ -7187,12 +7147,12 @@ msgstr "" "Es ist nur für Marlin nützlich,\n" "für andere Fälle ignorieren." -#: flatcamGUI/FlatCAMGUI.py:4577 flatcamGUI/FlatCAMGUI.py:5019 +#: flatcamGUI/FlatCAMGUI.py:4651 flatcamGUI/FlatCAMGUI.py:5093 #: flatcamGUI/ObjectUI.py:715 flatcamGUI/ObjectUI.py:1250 msgid "Probe Z depth:" msgstr "Sonde Z Tiefe:" -#: flatcamGUI/FlatCAMGUI.py:4579 flatcamGUI/FlatCAMGUI.py:5021 +#: flatcamGUI/FlatCAMGUI.py:4653 flatcamGUI/FlatCAMGUI.py:5095 #: flatcamGUI/ObjectUI.py:717 flatcamGUI/ObjectUI.py:1253 msgid "" "The maximum depth that the probe is allowed\n" @@ -7201,21 +7161,21 @@ msgstr "" "Die maximale Tiefe, in der die Sonde zulässig ist\n" "zu untersuchen. Negativer Wert in aktuellen Einheiten." -#: flatcamGUI/FlatCAMGUI.py:4587 flatcamGUI/FlatCAMGUI.py:5029 +#: flatcamGUI/FlatCAMGUI.py:4661 flatcamGUI/FlatCAMGUI.py:5103 #: flatcamGUI/ObjectUI.py:727 flatcamGUI/ObjectUI.py:1264 msgid "Feedrate Probe:" msgstr "Vorschubsonde:" -#: flatcamGUI/FlatCAMGUI.py:4589 flatcamGUI/FlatCAMGUI.py:5031 +#: flatcamGUI/FlatCAMGUI.py:4663 flatcamGUI/FlatCAMGUI.py:5105 #: flatcamGUI/ObjectUI.py:729 flatcamGUI/ObjectUI.py:1267 msgid "The feedrate used while the probe is probing." msgstr "Der Vorschub während der Sondenmessung." -#: flatcamGUI/FlatCAMGUI.py:4595 flatcamGUI/FlatCAMGUI.py:5038 +#: flatcamGUI/FlatCAMGUI.py:4669 flatcamGUI/FlatCAMGUI.py:5112 msgid "Fast Plunge:" msgstr "Schneller Sprung:" -#: flatcamGUI/FlatCAMGUI.py:4597 flatcamGUI/FlatCAMGUI.py:5040 +#: flatcamGUI/FlatCAMGUI.py:4671 flatcamGUI/FlatCAMGUI.py:5114 msgid "" "By checking this, the vertical move from\n" "Z_Toolchange to Z_move is done with G0,\n" @@ -7227,11 +7187,11 @@ msgstr "" "Das bedeutet die schnellste verfügbare Geschwindigkeit.\n" "WARNUNG: Die Verschiebung erfolgt bei Toolchange X, Y-Koordinaten." -#: flatcamGUI/FlatCAMGUI.py:4606 +#: flatcamGUI/FlatCAMGUI.py:4680 msgid "Fast Retract:" msgstr "Schneller Rückzug:" -#: flatcamGUI/FlatCAMGUI.py:4608 +#: flatcamGUI/FlatCAMGUI.py:4682 msgid "" "Exit hole strategy.\n" " - When uncheked, while exiting the drilled hole the drill bit\n" @@ -7247,15 +7207,15 @@ msgstr "" "  - Wenn Sie den Weg von Z-Schnitt (Schnitttiefe) nach Z_Move prüfen\n" "(Fahrhöhe) erfolgt so schnell wie möglich (G0) in einem Zug." -#: flatcamGUI/FlatCAMGUI.py:4627 +#: flatcamGUI/FlatCAMGUI.py:4701 msgid "Excellon Export" msgstr "Excellon Export" -#: flatcamGUI/FlatCAMGUI.py:4630 +#: flatcamGUI/FlatCAMGUI.py:4704 msgid "Export Options:" msgstr "Exportoptionen:" -#: flatcamGUI/FlatCAMGUI.py:4632 +#: flatcamGUI/FlatCAMGUI.py:4706 msgid "" "The parameters set here are used in the file exported\n" "when using the File -> Export -> Export Excellon menu entry." @@ -7264,19 +7224,19 @@ msgstr "" "bei Verwendung des Menüeintrags Datei -> Exportieren -> Exportieren von " "Excellon." -#: flatcamGUI/FlatCAMGUI.py:4641 +#: flatcamGUI/FlatCAMGUI.py:4715 msgid "Units:" msgstr "Einheiten:" -#: flatcamGUI/FlatCAMGUI.py:4643 flatcamGUI/FlatCAMGUI.py:4649 +#: flatcamGUI/FlatCAMGUI.py:4717 flatcamGUI/FlatCAMGUI.py:4723 msgid "The units used in the Excellon file." msgstr "Die in der Excellon-Datei verwendeten Einheiten." -#: flatcamGUI/FlatCAMGUI.py:4655 +#: flatcamGUI/FlatCAMGUI.py:4729 msgid "Int/Decimals:" msgstr "Ganzzahl / Dezimalzahl:" -#: flatcamGUI/FlatCAMGUI.py:4657 +#: flatcamGUI/FlatCAMGUI.py:4731 msgid "" "The NC drill files, usually named Excellon files\n" "are files that can be found in different formats.\n" @@ -7288,11 +7248,11 @@ msgstr "" "Hier legen wir das verwendete Format fest\n" "Koordinaten verwenden keine Periode." -#: flatcamGUI/FlatCAMGUI.py:4693 +#: flatcamGUI/FlatCAMGUI.py:4767 msgid "Format:" msgstr "Format:" -#: flatcamGUI/FlatCAMGUI.py:4695 flatcamGUI/FlatCAMGUI.py:4705 +#: flatcamGUI/FlatCAMGUI.py:4769 flatcamGUI/FlatCAMGUI.py:4779 msgid "" "Select the kind of coordinates format used.\n" "Coordinates can be saved with decimal point or without.\n" @@ -7309,19 +7269,11 @@ msgstr "" "Es muss auch angegeben werden, wenn LZ = führende Nullen beibehalten werden\n" "oder TZ = nachfolgende Nullen bleiben erhalten." -#: flatcamGUI/FlatCAMGUI.py:4702 -msgid "Decimal" -msgstr "Dezimal" - -#: flatcamGUI/FlatCAMGUI.py:4703 -msgid "No-Decimal" -msgstr "Keine Dezimalzahl" - -#: flatcamGUI/FlatCAMGUI.py:4716 +#: flatcamGUI/FlatCAMGUI.py:4790 msgid "Zeros:" msgstr "Nullen:" -#: flatcamGUI/FlatCAMGUI.py:4729 +#: flatcamGUI/FlatCAMGUI.py:4803 msgid "" "This sets the default type of Excellon zeros.\n" "If LZ then Leading Zeros are kept and\n" @@ -7335,11 +7287,11 @@ msgstr "" "Wenn TZ aktiviert ist, werden nachfolgende Nullen beibehalten\n" "und führende Nullen werden entfernt." -#: flatcamGUI/FlatCAMGUI.py:4755 +#: flatcamGUI/FlatCAMGUI.py:4829 msgid "Geometry General" msgstr "Geometrie Allgemein" -#: flatcamGUI/FlatCAMGUI.py:4773 +#: flatcamGUI/FlatCAMGUI.py:4847 msgid "" "The number of circle steps for Geometry \n" "circle and arc shapes linear approximation." @@ -7347,15 +7299,15 @@ msgstr "" "Die Anzahl der Kreisschritte für die Geometrie\n" "Kreis- und Bogenformen lineare Annäherung." -#: flatcamGUI/FlatCAMGUI.py:4781 +#: flatcamGUI/FlatCAMGUI.py:4855 msgid "Tools" msgstr "Werkzeuge" -#: flatcamGUI/FlatCAMGUI.py:4788 +#: flatcamGUI/FlatCAMGUI.py:4862 msgid "Tool dia: " msgstr "Werkzeugdurchmesser:" -#: flatcamGUI/FlatCAMGUI.py:4790 +#: flatcamGUI/FlatCAMGUI.py:4864 msgid "" "The diameter of the cutting\n" "tool.." @@ -7363,15 +7315,15 @@ msgstr "" "Der Durchmesser des Schnitts\n" "Werkzeug.." -#: flatcamGUI/FlatCAMGUI.py:4805 +#: flatcamGUI/FlatCAMGUI.py:4879 msgid "Geometry Options" msgstr "Geometrieoptionen" -#: flatcamGUI/FlatCAMGUI.py:4810 +#: flatcamGUI/FlatCAMGUI.py:4884 msgid "Create CNC Job:" msgstr "CNC-Auftrag erstellen:" -#: flatcamGUI/FlatCAMGUI.py:4812 +#: flatcamGUI/FlatCAMGUI.py:4886 msgid "" "Create a CNC Job object\n" "tracing the contours of this\n" @@ -7381,7 +7333,7 @@ msgstr "" "die Konturen davon nachzeichnen\n" "Geometrieobjekt." -#: flatcamGUI/FlatCAMGUI.py:4824 flatcamGUI/ObjectUI.py:1062 +#: flatcamGUI/FlatCAMGUI.py:4898 flatcamGUI/ObjectUI.py:1062 msgid "" "Cutting depth (negative)\n" "below the copper surface." @@ -7389,19 +7341,19 @@ msgstr "" "Schnitttiefe (negativ)\n" "unter der Kupferoberfläche." -#: flatcamGUI/FlatCAMGUI.py:4832 +#: flatcamGUI/FlatCAMGUI.py:4906 msgid "Multidepth" msgstr "Mehrere tiefe" -#: flatcamGUI/FlatCAMGUI.py:4834 +#: flatcamGUI/FlatCAMGUI.py:4908 msgid "Multidepth usage: True or False." msgstr "Mehrere Tiefe-Nutzung: Richtig oder Falsch." -#: flatcamGUI/FlatCAMGUI.py:4839 +#: flatcamGUI/FlatCAMGUI.py:4913 msgid "Depth/Pass:" msgstr "Tiefe / Pass:" -#: flatcamGUI/FlatCAMGUI.py:4841 +#: flatcamGUI/FlatCAMGUI.py:4915 msgid "" "The depth to cut on each pass,\n" "when multidepth is enabled.\n" @@ -7415,7 +7367,7 @@ msgstr "" "es ist ein Bruch aus der Tiefe\n" "was einen negativen Wert hat." -#: flatcamGUI/FlatCAMGUI.py:4857 flatcamGUI/ObjectUI.py:1098 +#: flatcamGUI/FlatCAMGUI.py:4931 flatcamGUI/ObjectUI.py:1098 msgid "" "Height of the tool when\n" "moving without cutting." @@ -7423,11 +7375,11 @@ msgstr "" "Höhe des Werkzeugs, wenn\n" "bewegen ohne zu schneiden" -#: flatcamGUI/FlatCAMGUI.py:4884 flatcamGUI/ObjectUI.py:1153 +#: flatcamGUI/FlatCAMGUI.py:4958 flatcamGUI/ObjectUI.py:1153 msgid "Feed Rate X-Y:" msgstr "Vorschubrate X-Y:" -#: flatcamGUI/FlatCAMGUI.py:4886 flatcamGUI/ObjectUI.py:1156 +#: flatcamGUI/FlatCAMGUI.py:4960 flatcamGUI/ObjectUI.py:1156 msgid "" "Cutting speed in the XY\n" "plane in units per minute" @@ -7435,11 +7387,11 @@ msgstr "" "Schnittgeschwindigkeit im XY\n" "Flugzeug in Einheiten pro Minute" -#: flatcamGUI/FlatCAMGUI.py:4894 +#: flatcamGUI/FlatCAMGUI.py:4968 msgid "Feed Rate Z:" msgstr "Vorschubrate Z:" -#: flatcamGUI/FlatCAMGUI.py:4896 +#: flatcamGUI/FlatCAMGUI.py:4970 msgid "" "Cutting speed in the XY\n" "plane in units per minute.\n" @@ -7449,12 +7401,12 @@ msgstr "" "Flugzeug in Einheiten pro Minute.\n" "Es heißt auch Sturz." -#: flatcamGUI/FlatCAMGUI.py:4905 flatcamGUI/ObjectUI.py:679 +#: flatcamGUI/FlatCAMGUI.py:4979 flatcamGUI/ObjectUI.py:679 #: flatcamGUI/ObjectUI.py:1205 msgid "Spindle speed:" msgstr "Spulengeschwindigkeit:" -#: flatcamGUI/FlatCAMGUI.py:4934 +#: flatcamGUI/FlatCAMGUI.py:5008 msgid "" "The postprocessor file that dictates\n" "Machine Code output." @@ -7462,11 +7414,11 @@ msgstr "" "Die Postprozessor-Datei, die diktiert\n" "Maschinencode-Ausgabe." -#: flatcamGUI/FlatCAMGUI.py:4950 +#: flatcamGUI/FlatCAMGUI.py:5024 msgid "Geometry Adv. Options" msgstr "Geometrie Erw. Optionen" -#: flatcamGUI/FlatCAMGUI.py:4957 +#: flatcamGUI/FlatCAMGUI.py:5031 msgid "" "Parameters to create a CNC Job object\n" "tracing the contours of a Geometry object." @@ -7474,7 +7426,7 @@ msgstr "" "Parameter zum Erstellen eines CNC-Auftragsobjekts\n" "Verfolgung der Konturen eines Geometrieobjekts." -#: flatcamGUI/FlatCAMGUI.py:4977 +#: flatcamGUI/FlatCAMGUI.py:5051 msgid "" "Height of the tool just after starting the work.\n" "Delete the value if you don't need this feature." @@ -7482,7 +7434,7 @@ msgstr "" "Höhe des Werkzeugs unmittelbar nach Beginn der Arbeit.\n" "Löschen Sie den Wert, wenn Sie diese Funktion nicht benötigen." -#: flatcamGUI/FlatCAMGUI.py:4997 +#: flatcamGUI/FlatCAMGUI.py:5071 msgid "" "Cutting speed in the XY plane\n" "(in units per minute).\n" @@ -7496,11 +7448,11 @@ msgstr "" "Es ist nur für Marlin nützlich,\n" "für andere Fälle ignorieren." -#: flatcamGUI/FlatCAMGUI.py:5009 +#: flatcamGUI/FlatCAMGUI.py:5083 msgid "Re-cut 1st pt." msgstr "1. Punkt erneut schneiden" -#: flatcamGUI/FlatCAMGUI.py:5011 flatcamGUI/ObjectUI.py:1196 +#: flatcamGUI/FlatCAMGUI.py:5085 flatcamGUI/ObjectUI.py:1196 msgid "" "In order to remove possible\n" "copper leftovers where first cut\n" @@ -7512,11 +7464,11 @@ msgstr "" "Beim letzten Schnitt treffen wir einen\n" "verlängerter Schnitt über dem ersten Schnittabschnitt." -#: flatcamGUI/FlatCAMGUI.py:5050 +#: flatcamGUI/FlatCAMGUI.py:5124 msgid "Seg. X size:" msgstr "Seg. X Größe:" -#: flatcamGUI/FlatCAMGUI.py:5052 +#: flatcamGUI/FlatCAMGUI.py:5126 msgid "" "The size of the trace segment on the X axis.\n" "Useful for auto-leveling.\n" @@ -7526,11 +7478,11 @@ msgstr "" "Nützlich für die automatische Nivellierung.\n" "Ein Wert von 0 bedeutet keine Segmentierung auf der X-Achse." -#: flatcamGUI/FlatCAMGUI.py:5061 +#: flatcamGUI/FlatCAMGUI.py:5135 msgid "Seg. Y size:" msgstr "Seg. Y Größe:" -#: flatcamGUI/FlatCAMGUI.py:5063 +#: flatcamGUI/FlatCAMGUI.py:5137 msgid "" "The size of the trace segment on the Y axis.\n" "Useful for auto-leveling.\n" @@ -7540,20 +7492,20 @@ msgstr "" "Nützlich für die automatische Nivellierung.\n" "Ein Wert von 0 bedeutet keine Segmentierung auf der Y-Achse." -#: flatcamGUI/FlatCAMGUI.py:5079 +#: flatcamGUI/FlatCAMGUI.py:5153 msgid "CNC Job General" msgstr "CNC-Job Allgemein" -#: flatcamGUI/FlatCAMGUI.py:5092 flatcamGUI/ObjectUI.py:544 +#: flatcamGUI/FlatCAMGUI.py:5166 flatcamGUI/ObjectUI.py:544 #: flatcamGUI/ObjectUI.py:874 flatcamGUI/ObjectUI.py:1428 msgid "Plot Object" msgstr "Plotobjekt" -#: flatcamGUI/FlatCAMGUI.py:5099 +#: flatcamGUI/FlatCAMGUI.py:5173 msgid "Plot kind:" msgstr "Darstellungsart:" -#: flatcamGUI/FlatCAMGUI.py:5101 flatcamGUI/ObjectUI.py:1350 +#: flatcamGUI/FlatCAMGUI.py:5175 flatcamGUI/ObjectUI.py:1350 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" @@ -7566,11 +7518,7 @@ msgstr "" "über dem Werkstück oder es kann vom Typ 'Ausschneiden' sein,\n" "was bedeutet, dass die Bewegungen, die in das Material geschnitten werden." -#: flatcamGUI/FlatCAMGUI.py:5109 flatcamGUI/ObjectUI.py:1359 -msgid "Travel" -msgstr "Reise" - -#: flatcamGUI/FlatCAMGUI.py:5120 +#: flatcamGUI/FlatCAMGUI.py:5194 msgid "" "The number of circle steps for GCode \n" "circle and arc shapes linear approximation." @@ -7578,7 +7526,7 @@ msgstr "" "Die Anzahl der Kreisschritte für GCode\n" "Kreis- und Bogenformen lineare Annäherung." -#: flatcamGUI/FlatCAMGUI.py:5130 +#: flatcamGUI/FlatCAMGUI.py:5204 msgid "" "Diameter of the tool to be\n" "rendered in the plot." @@ -7586,11 +7534,11 @@ msgstr "" "Durchmesser des Werkzeugs sein\n" "in der Handlung gerendert." -#: flatcamGUI/FlatCAMGUI.py:5138 +#: flatcamGUI/FlatCAMGUI.py:5212 msgid "Coords dec.:" msgstr "Koordinate Dezimalzahlen:" -#: flatcamGUI/FlatCAMGUI.py:5140 +#: flatcamGUI/FlatCAMGUI.py:5214 msgid "" "The number of decimals to be used for \n" "the X, Y, Z coordinates in CNC code (GCODE, etc.)" @@ -7598,11 +7546,11 @@ msgstr "" "Die Anzahl der Dezimalstellen, für die verwendet werden soll\n" "die X-, Y-, Z-Koordinaten im CNC-Code (GCODE usw.)" -#: flatcamGUI/FlatCAMGUI.py:5148 +#: flatcamGUI/FlatCAMGUI.py:5222 msgid "Feedrate dec.:" msgstr "Vorschub-Nachkommastellen:" -#: flatcamGUI/FlatCAMGUI.py:5150 +#: flatcamGUI/FlatCAMGUI.py:5224 msgid "" "The number of decimals to be used for \n" "the Feedrate parameter in CNC code (GCODE, etc.)" @@ -7610,15 +7558,15 @@ msgstr "" "Die Anzahl der Dezimalstellen, für die verwendet werden soll\n" "der Vorschubparameter im CNC-Code (GCODE usw.)" -#: flatcamGUI/FlatCAMGUI.py:5165 +#: flatcamGUI/FlatCAMGUI.py:5239 msgid "CNC Job Options" msgstr "CNC-Auftragsoptionen" -#: flatcamGUI/FlatCAMGUI.py:5168 flatcamGUI/FlatCAMGUI.py:5209 +#: flatcamGUI/FlatCAMGUI.py:5242 flatcamGUI/FlatCAMGUI.py:5283 msgid "Export G-Code:" msgstr "G-Code exportieren:" -#: flatcamGUI/FlatCAMGUI.py:5170 flatcamGUI/FlatCAMGUI.py:5211 +#: flatcamGUI/FlatCAMGUI.py:5244 flatcamGUI/FlatCAMGUI.py:5285 #: flatcamGUI/ObjectUI.py:1464 msgid "" "Export and save G-Code to\n" @@ -7627,11 +7575,11 @@ msgstr "" "Exportieren und speichern Sie den G-Code nach\n" "Machen Sie dieses Objekt in eine Datei." -#: flatcamGUI/FlatCAMGUI.py:5176 +#: flatcamGUI/FlatCAMGUI.py:5250 msgid "Prepend to G-Code:" msgstr "Voranstellen an G-Code:" -#: flatcamGUI/FlatCAMGUI.py:5178 +#: flatcamGUI/FlatCAMGUI.py:5252 msgid "" "Type here any G-Code commands you would\n" "like to add at the beginning of the G-Code file." @@ -7639,11 +7587,11 @@ msgstr "" "Geben Sie hier alle G-Code-Befehle ein\n" "gerne am Anfang der G-Code-Datei hinzufügen." -#: flatcamGUI/FlatCAMGUI.py:5187 +#: flatcamGUI/FlatCAMGUI.py:5261 msgid "Append to G-Code:" msgstr "An G-Code anhängen:" -#: flatcamGUI/FlatCAMGUI.py:5189 flatcamGUI/ObjectUI.py:1486 +#: flatcamGUI/FlatCAMGUI.py:5263 flatcamGUI/ObjectUI.py:1486 msgid "" "Type here any G-Code commands you would\n" "like to append to the generated file.\n" @@ -7653,15 +7601,15 @@ msgstr "" "gerne an die generierte Datei anhängen.\n" "I.e .: M2 (Programmende)" -#: flatcamGUI/FlatCAMGUI.py:5206 +#: flatcamGUI/FlatCAMGUI.py:5280 msgid "CNC Job Adv. Options" msgstr "Erw. CNC-Joboptionen" -#: flatcamGUI/FlatCAMGUI.py:5217 flatcamGUI/ObjectUI.py:1504 +#: flatcamGUI/FlatCAMGUI.py:5291 flatcamGUI/ObjectUI.py:1504 msgid "Toolchange G-Code:" msgstr "Werkzeugwechsel G-Code:" -#: flatcamGUI/FlatCAMGUI.py:5219 +#: flatcamGUI/FlatCAMGUI.py:5293 msgid "" "Type here any G-Code commands you would\n" "like to be executed when Toolchange event is encountered.\n" @@ -7673,11 +7621,11 @@ msgstr "" "Dies stellt einen benutzerdefinierten Werkzeugwechsel-GCode dar.\n" "oder ein Werkzeugwechsel-Makro." -#: flatcamGUI/FlatCAMGUI.py:5233 flatcamGUI/ObjectUI.py:1526 +#: flatcamGUI/FlatCAMGUI.py:5307 flatcamGUI/ObjectUI.py:1526 msgid "Use Toolchange Macro" -msgstr "Verwenden Sie das Werkzeug zum Ändern des Makros" +msgstr "Benutze das Werkzeugwechselmakro" -#: flatcamGUI/FlatCAMGUI.py:5235 flatcamGUI/ObjectUI.py:1529 +#: flatcamGUI/FlatCAMGUI.py:5309 flatcamGUI/ObjectUI.py:1529 msgid "" "Check this box if you want to use\n" "a Custom Toolchange GCode (macro)." @@ -7685,7 +7633,7 @@ msgstr "" "Aktivieren Sie dieses Kontrollkästchen, wenn Sie verwenden möchten\n" "ein benutzerdefiniertes Werkzeug ändert GCode (Makro)." -#: flatcamGUI/FlatCAMGUI.py:5247 flatcamGUI/ObjectUI.py:1538 +#: flatcamGUI/FlatCAMGUI.py:5321 flatcamGUI/ObjectUI.py:1538 msgid "" "A list of the FlatCAM variables that can be used\n" "in the Toolchange event.\n" @@ -7695,80 +7643,80 @@ msgstr "" "im Werkzeugwechselereignis.\n" "Sie müssen mit dem \"%\" -Symbol umgeben sein" -#: flatcamGUI/FlatCAMGUI.py:5254 flatcamGUI/ObjectUI.py:1545 +#: flatcamGUI/FlatCAMGUI.py:5328 flatcamGUI/ObjectUI.py:1545 msgid "Parameters" msgstr "Parameters" -#: flatcamGUI/FlatCAMGUI.py:5257 flatcamGUI/ObjectUI.py:1548 +#: flatcamGUI/FlatCAMGUI.py:5331 flatcamGUI/ObjectUI.py:1548 msgid "FlatCAM CNC parameters" msgstr "FlatCAM CNC-Parameter" -#: flatcamGUI/FlatCAMGUI.py:5258 flatcamGUI/ObjectUI.py:1549 +#: flatcamGUI/FlatCAMGUI.py:5332 flatcamGUI/ObjectUI.py:1549 msgid "tool = tool number" msgstr "tool = Werkzeugnummer" -#: flatcamGUI/FlatCAMGUI.py:5259 flatcamGUI/ObjectUI.py:1550 +#: flatcamGUI/FlatCAMGUI.py:5333 flatcamGUI/ObjectUI.py:1550 msgid "tooldia = tool diameter" msgstr "tooldia = Werkzeugdurchmesser" -#: flatcamGUI/FlatCAMGUI.py:5260 flatcamGUI/ObjectUI.py:1551 +#: flatcamGUI/FlatCAMGUI.py:5334 flatcamGUI/ObjectUI.py:1551 msgid "t_drills = for Excellon, total number of drills" msgstr "t_drills = für Excellon die Gesamtzahl der Bohrer" -#: flatcamGUI/FlatCAMGUI.py:5261 flatcamGUI/ObjectUI.py:1552 +#: flatcamGUI/FlatCAMGUI.py:5335 flatcamGUI/ObjectUI.py:1552 msgid "x_toolchange = X coord for Toolchange" msgstr "x_toolchange = X-Koord für Werkzeugwechsel" -#: flatcamGUI/FlatCAMGUI.py:5262 flatcamGUI/ObjectUI.py:1553 +#: flatcamGUI/FlatCAMGUI.py:5336 flatcamGUI/ObjectUI.py:1553 msgid "y_toolchange = Y coord for Toolchange" msgstr "y_toolchange = Y-Koord für Werkzeugwechsel" -#: flatcamGUI/FlatCAMGUI.py:5263 flatcamGUI/ObjectUI.py:1554 +#: flatcamGUI/FlatCAMGUI.py:5337 flatcamGUI/ObjectUI.py:1554 msgid "z_toolchange = Z coord for Toolchange" msgstr "z_toolchange = Z-Koord für Werkzeugwechsel" -#: flatcamGUI/FlatCAMGUI.py:5264 +#: flatcamGUI/FlatCAMGUI.py:5338 msgid "z_cut = Z depth for the cut" msgstr "z_cut = Z Tiefe für den Schnitt" -#: flatcamGUI/FlatCAMGUI.py:5265 +#: flatcamGUI/FlatCAMGUI.py:5339 msgid "z_move = Z height for travel" msgstr "z_move = Z Höhe für die Reise" -#: flatcamGUI/FlatCAMGUI.py:5266 flatcamGUI/ObjectUI.py:1557 +#: flatcamGUI/FlatCAMGUI.py:5340 flatcamGUI/ObjectUI.py:1557 msgid "z_depthpercut = the step value for multidepth cut" msgstr "z_depthpercut =der Schrittwert für den mehrstufigen Schnitt" -#: flatcamGUI/FlatCAMGUI.py:5267 flatcamGUI/ObjectUI.py:1558 +#: flatcamGUI/FlatCAMGUI.py:5341 flatcamGUI/ObjectUI.py:1558 msgid "spindlesspeed = the value for the spindle speed" msgstr "spindlesspeed =der Wert für die Spindeldrehzahl" -#: flatcamGUI/FlatCAMGUI.py:5268 flatcamGUI/ObjectUI.py:1559 +#: flatcamGUI/FlatCAMGUI.py:5342 flatcamGUI/ObjectUI.py:1559 msgid "dwelltime = time to dwell to allow the spindle to reach it's set RPM" msgstr "" "dwelltime = Zeit zum Verweilen, damit die Spindel ihre eingestellte Drehzahl " "erreicht" -#: flatcamGUI/FlatCAMGUI.py:5289 +#: flatcamGUI/FlatCAMGUI.py:5363 msgid "NCC Tool Options" msgstr "NCC-Tooloptionen" -#: flatcamGUI/FlatCAMGUI.py:5292 flatcamGUI/FlatCAMGUI.py:5393 -#: flatcamGUI/FlatCAMGUI.py:5472 flatcamGUI/FlatCAMGUI.py:5531 -#: flatcamGUI/FlatCAMGUI.py:5634 flatcamGUI/FlatCAMGUI.py:5695 -#: flatcamGUI/FlatCAMGUI.py:5894 flatcamGUI/FlatCAMGUI.py:6021 +#: flatcamGUI/FlatCAMGUI.py:5366 flatcamGUI/FlatCAMGUI.py:5467 +#: flatcamGUI/FlatCAMGUI.py:5546 flatcamGUI/FlatCAMGUI.py:5605 +#: flatcamGUI/FlatCAMGUI.py:5708 flatcamGUI/FlatCAMGUI.py:5769 +#: flatcamGUI/FlatCAMGUI.py:5968 flatcamGUI/FlatCAMGUI.py:6095 msgid "Parameters:" msgstr "Parameter:" -#: flatcamGUI/FlatCAMGUI.py:5302 flatcamGUI/FlatCAMGUI.py:6032 +#: flatcamGUI/FlatCAMGUI.py:5376 flatcamGUI/FlatCAMGUI.py:6106 msgid "Tools dia:" msgstr "Werkzeug durchmesser:" -#: flatcamGUI/FlatCAMGUI.py:5304 +#: flatcamGUI/FlatCAMGUI.py:5378 msgid "Diameters of the cutting tools, separated by ','" msgstr "Durchmesser der Schneidwerkzeuge, getrennt durch ','" -#: flatcamGUI/FlatCAMGUI.py:5312 flatcamTools/ToolNonCopperClear.py:167 +#: flatcamGUI/FlatCAMGUI.py:5386 flatcamTools/ToolNonCopperClear.py:167 #, python-format msgid "" "How much (fraction) of the tool width to overlap each tool pass.\n" @@ -7797,11 +7745,11 @@ msgstr "" "Höhere Werte = langsame Bearbeitung und langsame Ausführung auf der CNC\n" "wegen zu vieler Wege." -#: flatcamGUI/FlatCAMGUI.py:5328 flatcamTools/ToolNonCopperClear.py:183 +#: flatcamGUI/FlatCAMGUI.py:5402 flatcamTools/ToolNonCopperClear.py:183 msgid "Bounding box margin." msgstr "Begrenzungsrahmenrand." -#: flatcamGUI/FlatCAMGUI.py:5337 flatcamTools/ToolNonCopperClear.py:192 +#: flatcamGUI/FlatCAMGUI.py:5411 flatcamTools/ToolNonCopperClear.py:192 #: flatcamTools/ToolPaint.py:190 msgid "" "Algorithm for non-copper clearing:
Standard: Fixed step inwards." @@ -7812,12 +7760,12 @@ msgstr "" "Schritt nach innen. Seed-based : Ausgehend vom Saatgut.
" "Line-based: Parallele Linien." -#: flatcamGUI/FlatCAMGUI.py:5369 flatcamTools/ToolNonCopperClear.py:224 +#: flatcamGUI/FlatCAMGUI.py:5443 flatcamTools/ToolNonCopperClear.py:224 #: flatcamTools/ToolPaint.py:222 msgid "Rest M.:" msgstr "Rest M.:" -#: flatcamGUI/FlatCAMGUI.py:5371 +#: flatcamGUI/FlatCAMGUI.py:5445 msgid "" "If checked, use 'rest machining'.\n" "Basically it will clear copper outside PCB features,\n" @@ -7833,11 +7781,11 @@ msgstr "" "konnte nicht mit dem vorherigen Tool gelöscht werden.\n" "Wenn nicht aktiviert, verwenden Sie den Standardalgorithmus." -#: flatcamGUI/FlatCAMGUI.py:5390 +#: flatcamGUI/FlatCAMGUI.py:5464 msgid "Cutout Tool Options" msgstr "Ausschnittwerkzeug-Optionen" -#: flatcamGUI/FlatCAMGUI.py:5395 flatcamGUI/ObjectUI.py:402 +#: flatcamGUI/FlatCAMGUI.py:5469 flatcamGUI/ObjectUI.py:402 msgid "" "Create toolpaths to cut around\n" "the PCB and separate it from\n" @@ -7847,7 +7795,7 @@ msgstr "" "die PCB und trennen Sie es von\n" "das ursprüngliche Brett." -#: flatcamGUI/FlatCAMGUI.py:5414 +#: flatcamGUI/FlatCAMGUI.py:5488 msgid "" "Distance from objects at which\n" "to draw the cutout." @@ -7855,11 +7803,11 @@ msgstr "" "Entfernung von Objekten bei denen\n" "den Ausschnitt zeichnen." -#: flatcamGUI/FlatCAMGUI.py:5421 flatcamTools/ToolCutOut.py:96 +#: flatcamGUI/FlatCAMGUI.py:5495 flatcamTools/ToolCutOut.py:96 msgid "Gap size:" msgstr "Spaltgröße:" -#: flatcamGUI/FlatCAMGUI.py:5423 +#: flatcamGUI/FlatCAMGUI.py:5497 msgid "" "Size of the gaps in the toolpath\n" "that will remain to hold the\n" @@ -7869,11 +7817,11 @@ msgstr "" "das wird bleiben, um das zu halten\n" "Board an Ort und Stelle." -#: flatcamGUI/FlatCAMGUI.py:5431 flatcamTools/ToolCutOut.py:133 +#: flatcamGUI/FlatCAMGUI.py:5505 flatcamTools/ToolCutOut.py:133 msgid "Gaps:" msgstr "Spalt:" -#: flatcamGUI/FlatCAMGUI.py:5433 +#: flatcamGUI/FlatCAMGUI.py:5507 msgid "" "Number of bridge gaps used for the cutout.\n" "There can be maximum 8 bridges/gaps.\n" @@ -7895,19 +7843,19 @@ msgstr "" "- 2 tb \t- 2 * oben + 2 * unten\n" "- 8 \t- 2 * links + 2 * rechts + 2 * oben + 2 * unten" -#: flatcamGUI/FlatCAMGUI.py:5454 flatcamTools/ToolCutOut.py:115 +#: flatcamGUI/FlatCAMGUI.py:5528 flatcamTools/ToolCutOut.py:115 msgid "Convex Sh.:" msgstr "Konvexe Form .:" -#: flatcamGUI/FlatCAMGUI.py:5456 flatcamTools/ToolCutOut.py:117 +#: flatcamGUI/FlatCAMGUI.py:5530 flatcamTools/ToolCutOut.py:117 msgid "Create a convex shape surrounding the entire PCB." msgstr "Erstellen Sie eine konvexe Form, die die gesamte Leiterplatte umgibt." -#: flatcamGUI/FlatCAMGUI.py:5469 +#: flatcamGUI/FlatCAMGUI.py:5543 msgid "2Sided Tool Options" msgstr "2Seitige Werkzeugoptionen" -#: flatcamGUI/FlatCAMGUI.py:5474 +#: flatcamGUI/FlatCAMGUI.py:5548 msgid "" "A tool to help in creating a double sided\n" "PCB using alignment holes." @@ -7915,44 +7863,28 @@ msgstr "" "Ein Werkzeug, das beim Erstellen eines doppelseitigen Dokuments hilft\n" "PCB mit Ausrichtungslöchern." -#: flatcamGUI/FlatCAMGUI.py:5484 flatcamTools/ToolDblSided.py:235 +#: flatcamGUI/FlatCAMGUI.py:5558 flatcamTools/ToolDblSided.py:235 msgid "Drill diam.:" msgstr "Bohrdurchmesser:" -#: flatcamGUI/FlatCAMGUI.py:5486 flatcamTools/ToolDblSided.py:226 +#: flatcamGUI/FlatCAMGUI.py:5560 flatcamTools/ToolDblSided.py:226 #: flatcamTools/ToolDblSided.py:237 msgid "Diameter of the drill for the alignment holes." msgstr "Durchmesser des Bohrers für die Ausrichtungslöcher." -#: flatcamGUI/FlatCAMGUI.py:5493 -msgid "X" -msgstr "X" - -#: flatcamGUI/FlatCAMGUI.py:5494 -msgid "Y" -msgstr "Y" - -#: flatcamGUI/FlatCAMGUI.py:5495 flatcamTools/ToolDblSided.py:120 +#: flatcamGUI/FlatCAMGUI.py:5569 flatcamTools/ToolDblSided.py:120 msgid "Mirror Axis:" msgstr "Spiegelachse:" -#: flatcamGUI/FlatCAMGUI.py:5497 flatcamTools/ToolDblSided.py:122 +#: flatcamGUI/FlatCAMGUI.py:5571 flatcamTools/ToolDblSided.py:122 msgid "Mirror vertically (X) or horizontally (Y)." msgstr "Vertikal spiegeln (X) oder horizontal (Y)." -#: flatcamGUI/FlatCAMGUI.py:5506 -msgid "Point" -msgstr "Punkt" - -#: flatcamGUI/FlatCAMGUI.py:5507 -msgid "Box" -msgstr "Box" - -#: flatcamGUI/FlatCAMGUI.py:5508 flatcamTools/ToolDblSided.py:133 +#: flatcamGUI/FlatCAMGUI.py:5582 flatcamTools/ToolDblSided.py:133 msgid "Axis Ref:" msgstr "Achsenreferenz:" -#: flatcamGUI/FlatCAMGUI.py:5510 +#: flatcamGUI/FlatCAMGUI.py:5584 msgid "" "The axis should pass through a point or cut\n" " a specified box (in a Geometry object) in \n" @@ -7962,11 +7894,11 @@ msgstr "" "ein angegebenes Feld (in einem Geometrieobjekt) in\n" "die Mitte." -#: flatcamGUI/FlatCAMGUI.py:5526 +#: flatcamGUI/FlatCAMGUI.py:5600 msgid "Paint Tool Options" -msgstr "Optionen für das Paint werkzeug" +msgstr "Paint werkzeug-Optionen" -#: flatcamGUI/FlatCAMGUI.py:5533 flatcamGUI/ObjectUI.py:1299 +#: flatcamGUI/FlatCAMGUI.py:5607 flatcamGUI/ObjectUI.py:1299 msgid "" "Creates tool paths to cover the\n" "whole area of a polygon (remove\n" @@ -7978,7 +7910,7 @@ msgstr "" "alles Kupfer). Du wirst gefragt\n" "Klicken Sie auf das gewünschte Polygon." -#: flatcamGUI/FlatCAMGUI.py:5557 +#: flatcamGUI/FlatCAMGUI.py:5631 msgid "" "How much (fraction) of the tool\n" "width to overlap each tool pass." @@ -7986,23 +7918,19 @@ msgstr "" "Wie viel (Bruchteil) des Werkzeugs\n" "Breite, um jeden Werkzeugdurchgang zu überlappen." -#: flatcamGUI/FlatCAMGUI.py:5611 flatcamTools/ToolPaint.py:237 +#: flatcamGUI/FlatCAMGUI.py:5685 flatcamTools/ToolPaint.py:237 msgid "Selection:" msgstr "Auswahl:" -#: flatcamGUI/FlatCAMGUI.py:5613 +#: flatcamGUI/FlatCAMGUI.py:5687 msgid "How to select the polygons to paint." msgstr "So wählen Sie die Polygone zum Malen aus." -#: flatcamGUI/FlatCAMGUI.py:5617 -msgid "Single" -msgstr "Single" - -#: flatcamGUI/FlatCAMGUI.py:5631 +#: flatcamGUI/FlatCAMGUI.py:5705 msgid "Film Tool Options" msgstr "Filmwerkzeugoptionen" -#: flatcamGUI/FlatCAMGUI.py:5636 +#: flatcamGUI/FlatCAMGUI.py:5710 msgid "" "Create a PCB film from a Gerber or Geometry\n" "FlatCAM object.\n" @@ -8012,19 +7940,11 @@ msgstr "" "FlatCAM-Objekt\n" "Die Datei wird im SVG-Format gespeichert." -#: flatcamGUI/FlatCAMGUI.py:5645 -msgid "Pos" -msgstr "Positiv" - -#: flatcamGUI/FlatCAMGUI.py:5646 -msgid "Neg" -msgstr "Negativ" - -#: flatcamGUI/FlatCAMGUI.py:5647 flatcamTools/ToolFilm.py:116 +#: flatcamGUI/FlatCAMGUI.py:5721 flatcamTools/ToolFilm.py:116 msgid "Film Type:" msgstr "Filmtyp:" -#: flatcamGUI/FlatCAMGUI.py:5649 flatcamTools/ToolFilm.py:118 +#: flatcamGUI/FlatCAMGUI.py:5723 flatcamTools/ToolFilm.py:118 msgid "" "Generate a Positive black film or a Negative film.\n" "Positive means that it will print the features\n" @@ -8040,11 +7960,11 @@ msgstr "" "mit weiß auf einer schwarzen leinwand.\n" "Das Filmformat ist SVG." -#: flatcamGUI/FlatCAMGUI.py:5660 flatcamTools/ToolFilm.py:130 +#: flatcamGUI/FlatCAMGUI.py:5734 flatcamTools/ToolFilm.py:130 msgid "Border:" msgstr "Rand:" -#: flatcamGUI/FlatCAMGUI.py:5662 flatcamTools/ToolFilm.py:132 +#: flatcamGUI/FlatCAMGUI.py:5736 flatcamTools/ToolFilm.py:132 msgid "" "Specify a border around the object.\n" "Only for negative film.\n" @@ -8064,11 +7984,11 @@ msgstr "" "weiße Farbe wie der Rest und die mit der verwechseln kann\n" "Umgebung, wenn nicht für diese Grenze." -#: flatcamGUI/FlatCAMGUI.py:5675 flatcamTools/ToolFilm.py:144 +#: flatcamGUI/FlatCAMGUI.py:5749 flatcamTools/ToolFilm.py:144 msgid "Scale Stroke:" msgstr "Skalierungshub:" -#: flatcamGUI/FlatCAMGUI.py:5677 flatcamTools/ToolFilm.py:146 +#: flatcamGUI/FlatCAMGUI.py:5751 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 " @@ -8080,11 +8000,11 @@ msgstr "" "dünner ist.\n" "Daher können die Feinheiten von diesem Parameter stärker beeinflusst werden." -#: flatcamGUI/FlatCAMGUI.py:5692 +#: flatcamGUI/FlatCAMGUI.py:5766 msgid "Panelize Tool Options" msgstr "Panelize Werkzeugoptionen" -#: flatcamGUI/FlatCAMGUI.py:5697 +#: flatcamGUI/FlatCAMGUI.py:5771 msgid "" "Create an object that contains an array of (x, y) elements,\n" "each element is a copy of the source object spaced\n" @@ -8094,11 +8014,11 @@ msgstr "" "Jedes Element ist eine Kopie des Quellobjekts\n" "in einem X-Abstand, Y-Abstand voneinander." -#: flatcamGUI/FlatCAMGUI.py:5708 flatcamTools/ToolPanelize.py:113 +#: flatcamGUI/FlatCAMGUI.py:5782 flatcamTools/ToolPanelize.py:113 msgid "Spacing cols:" msgstr "Abstandspalten:" -#: flatcamGUI/FlatCAMGUI.py:5710 flatcamTools/ToolPanelize.py:115 +#: flatcamGUI/FlatCAMGUI.py:5784 flatcamTools/ToolPanelize.py:115 msgid "" "Spacing between columns of the desired panel.\n" "In current units." @@ -8106,11 +8026,11 @@ msgstr "" "Abstand zwischen den Spalten des gewünschten Bereichs.\n" "In aktuellen Einheiten." -#: flatcamGUI/FlatCAMGUI.py:5718 flatcamTools/ToolPanelize.py:122 +#: flatcamGUI/FlatCAMGUI.py:5792 flatcamTools/ToolPanelize.py:122 msgid "Spacing rows:" msgstr "Abstand Reihen:" -#: flatcamGUI/FlatCAMGUI.py:5720 flatcamTools/ToolPanelize.py:124 +#: flatcamGUI/FlatCAMGUI.py:5794 flatcamTools/ToolPanelize.py:124 msgid "" "Spacing between rows of the desired panel.\n" "In current units." @@ -8118,35 +8038,27 @@ msgstr "" "Abstand zwischen den Reihen des gewünschten Feldes.\n" "In aktuellen Einheiten." -#: flatcamGUI/FlatCAMGUI.py:5728 flatcamTools/ToolPanelize.py:131 +#: flatcamGUI/FlatCAMGUI.py:5802 flatcamTools/ToolPanelize.py:131 msgid "Columns:" msgstr "Säulen:" -#: flatcamGUI/FlatCAMGUI.py:5730 flatcamTools/ToolPanelize.py:133 +#: flatcamGUI/FlatCAMGUI.py:5804 flatcamTools/ToolPanelize.py:133 msgid "Number of columns of the desired panel" msgstr "Anzahl der Spalten des gewünschten Bereichs" -#: flatcamGUI/FlatCAMGUI.py:5737 flatcamTools/ToolPanelize.py:139 +#: flatcamGUI/FlatCAMGUI.py:5811 flatcamTools/ToolPanelize.py:139 msgid "Rows:" msgstr "Reihen:" -#: flatcamGUI/FlatCAMGUI.py:5739 flatcamTools/ToolPanelize.py:141 +#: flatcamGUI/FlatCAMGUI.py:5813 flatcamTools/ToolPanelize.py:141 msgid "Number of rows of the desired panel" msgstr "Anzahl der Zeilen des gewünschten Panels" -#: flatcamGUI/FlatCAMGUI.py:5745 -msgid "Gerber" -msgstr "Gerber" - -#: flatcamGUI/FlatCAMGUI.py:5746 -msgid "Geo" -msgstr "Geo" - -#: flatcamGUI/FlatCAMGUI.py:5747 flatcamTools/ToolPanelize.py:148 +#: flatcamGUI/FlatCAMGUI.py:5821 flatcamTools/ToolPanelize.py:148 msgid "Panel Type:" msgstr "Panel-Typ:" -#: flatcamGUI/FlatCAMGUI.py:5749 +#: flatcamGUI/FlatCAMGUI.py:5823 msgid "" "Choose the type of object for the panel object:\n" "- Gerber\n" @@ -8156,11 +8068,11 @@ msgstr "" "- Gerber\n" "- Geometrie" -#: flatcamGUI/FlatCAMGUI.py:5758 +#: flatcamGUI/FlatCAMGUI.py:5832 msgid "Constrain within:" msgstr "Beschränkung innerhalb:" -#: flatcamGUI/FlatCAMGUI.py:5760 flatcamTools/ToolPanelize.py:160 +#: flatcamGUI/FlatCAMGUI.py:5834 flatcamTools/ToolPanelize.py:160 msgid "" "Area define by DX and DY within to constrain the panel.\n" "DX and DY values are in current units.\n" @@ -8174,11 +8086,11 @@ msgstr "" "Das letzte Panel enthält so viele Spalten und Zeilen wie\n" "Sie passen vollständig in den ausgewählten Bereich." -#: flatcamGUI/FlatCAMGUI.py:5769 flatcamTools/ToolPanelize.py:169 +#: flatcamGUI/FlatCAMGUI.py:5843 flatcamTools/ToolPanelize.py:169 msgid "Width (DX):" msgstr "Breite (DX):" -#: flatcamGUI/FlatCAMGUI.py:5771 flatcamTools/ToolPanelize.py:171 +#: flatcamGUI/FlatCAMGUI.py:5845 flatcamTools/ToolPanelize.py:171 msgid "" "The width (DX) within which the panel must fit.\n" "In current units." @@ -8186,11 +8098,11 @@ msgstr "" "Die Breite (DX), in die das Panel passen muss.\n" "In aktuellen Einheiten." -#: flatcamGUI/FlatCAMGUI.py:5778 flatcamTools/ToolPanelize.py:177 +#: flatcamGUI/FlatCAMGUI.py:5852 flatcamTools/ToolPanelize.py:177 msgid "Height (DY):" msgstr "Höhe (DY):" -#: flatcamGUI/FlatCAMGUI.py:5780 flatcamTools/ToolPanelize.py:179 +#: flatcamGUI/FlatCAMGUI.py:5854 flatcamTools/ToolPanelize.py:179 msgid "" "The height (DY)within which the panel must fit.\n" "In current units." @@ -8198,15 +8110,15 @@ msgstr "" "Die Höhe (DY), in die die Platte passen muss.\n" "In aktuellen Einheiten." -#: flatcamGUI/FlatCAMGUI.py:5794 +#: flatcamGUI/FlatCAMGUI.py:5868 msgid "Calculators Tool Options" msgstr "Rechner-Tool-Optionen" -#: flatcamGUI/FlatCAMGUI.py:5797 +#: flatcamGUI/FlatCAMGUI.py:5871 msgid "V-Shape Tool Calculator:" msgstr " V-Shape-Werkzeug Rechner: " -#: flatcamGUI/FlatCAMGUI.py:5799 +#: flatcamGUI/FlatCAMGUI.py:5873 msgid "" "Calculate the tool diameter for a given V-shape tool,\n" "having the tip diameter, tip angle and\n" @@ -8217,11 +8129,11 @@ msgstr "" "mit dem Spitzendurchmesser, Spitzenwinkel und\n" "Schnitttiefe als Parameter." -#: flatcamGUI/FlatCAMGUI.py:5810 flatcamTools/ToolCalculators.py:94 +#: flatcamGUI/FlatCAMGUI.py:5884 flatcamTools/ToolCalculators.py:94 msgid "Tip Diameter:" msgstr "Spitzendurchmesser" -#: flatcamGUI/FlatCAMGUI.py:5812 +#: flatcamGUI/FlatCAMGUI.py:5886 msgid "" "This is the tool tip diameter.\n" "It is specified by manufacturer." @@ -8229,11 +8141,11 @@ msgstr "" "Dies ist der Werkzeugspitzendurchmesser.\n" "Es wird vom Hersteller angegeben." -#: flatcamGUI/FlatCAMGUI.py:5820 +#: flatcamGUI/FlatCAMGUI.py:5894 msgid "Tip angle:" msgstr "Spitzenwinkel:" -#: flatcamGUI/FlatCAMGUI.py:5822 +#: flatcamGUI/FlatCAMGUI.py:5896 msgid "" "This is the angle on the tip of the tool.\n" "It is specified by manufacturer." @@ -8241,7 +8153,7 @@ msgstr "" "Dies ist der Winkel an der Spitze des Werkzeugs.\n" "Es wird vom Hersteller angegeben." -#: flatcamGUI/FlatCAMGUI.py:5832 +#: flatcamGUI/FlatCAMGUI.py:5906 msgid "" "This is depth to cut into material.\n" "In the CNCJob object it is the CutZ parameter." @@ -8249,11 +8161,11 @@ msgstr "" "Dies ist die Tiefe zum Schneiden in Material.\n" "Im CNCJob-Objekt ist dies der Parameter CutZ." -#: flatcamGUI/FlatCAMGUI.py:5839 +#: flatcamGUI/FlatCAMGUI.py:5913 msgid "ElectroPlating Calculator:" msgstr " Galvano-Rechner: " -#: flatcamGUI/FlatCAMGUI.py:5841 flatcamTools/ToolCalculators.py:152 +#: flatcamGUI/FlatCAMGUI.py:5915 flatcamTools/ToolCalculators.py:152 msgid "" "This calculator is useful for those who plate the via/pad/drill holes,\n" "using a method like grahite ink or calcium hypophosphite ink or palladium " @@ -8264,27 +8176,27 @@ msgstr "" "unter Verwendung einer Methode wie Grahit-Tinte oder Calcium-Hypophosphit-" "Tinte oder Palladiumchlorid." -#: flatcamGUI/FlatCAMGUI.py:5851 flatcamTools/ToolCalculators.py:161 +#: flatcamGUI/FlatCAMGUI.py:5925 flatcamTools/ToolCalculators.py:161 msgid "Board Length:" msgstr "PCB Länge:" -#: flatcamGUI/FlatCAMGUI.py:5853 flatcamTools/ToolCalculators.py:165 +#: flatcamGUI/FlatCAMGUI.py:5927 flatcamTools/ToolCalculators.py:165 msgid "This is the board length. In centimeters." msgstr "Dies ist die Boardlänge. In Zentimeter" -#: flatcamGUI/FlatCAMGUI.py:5859 flatcamTools/ToolCalculators.py:167 +#: flatcamGUI/FlatCAMGUI.py:5933 flatcamTools/ToolCalculators.py:167 msgid "Board Width:" msgstr "PCB Breite:" -#: flatcamGUI/FlatCAMGUI.py:5861 flatcamTools/ToolCalculators.py:171 +#: flatcamGUI/FlatCAMGUI.py:5935 flatcamTools/ToolCalculators.py:171 msgid "This is the board width.In centimeters." msgstr "Dies ist die Breite der Platte in Zentimetern." -#: flatcamGUI/FlatCAMGUI.py:5866 flatcamTools/ToolCalculators.py:173 +#: flatcamGUI/FlatCAMGUI.py:5940 flatcamTools/ToolCalculators.py:173 msgid "Current Density:" msgstr "Stromdichte:" -#: flatcamGUI/FlatCAMGUI.py:5869 flatcamTools/ToolCalculators.py:177 +#: flatcamGUI/FlatCAMGUI.py:5943 flatcamTools/ToolCalculators.py:177 msgid "" "Current density to pass through the board. \n" "In Amps per Square Feet ASF." @@ -8292,11 +8204,11 @@ msgstr "" "Stromdichte durch die Platine.\n" "In Ampere pro Quadratfuß ASF." -#: flatcamGUI/FlatCAMGUI.py:5875 flatcamTools/ToolCalculators.py:181 +#: flatcamGUI/FlatCAMGUI.py:5949 flatcamTools/ToolCalculators.py:181 msgid "Copper Growth:" msgstr "Kupferwachstum:" -#: flatcamGUI/FlatCAMGUI.py:5878 flatcamTools/ToolCalculators.py:185 +#: flatcamGUI/FlatCAMGUI.py:5952 flatcamTools/ToolCalculators.py:185 msgid "" "How thick the copper growth is intended to be.\n" "In microns." @@ -8304,11 +8216,11 @@ msgstr "" "Wie dick soll das Kupferwachstum sein.\n" "In Mikrometern" -#: flatcamGUI/FlatCAMGUI.py:5891 +#: flatcamGUI/FlatCAMGUI.py:5965 msgid "Transform Tool Options" -msgstr "Optionen für das Umwandlungswerkzeug" +msgstr "Umwandlungswerkzeug-Optionen" -#: flatcamGUI/FlatCAMGUI.py:5896 +#: flatcamGUI/FlatCAMGUI.py:5970 msgid "" "Various transformations that can be applied\n" "on a FlatCAM object." @@ -8316,47 +8228,47 @@ msgstr "" "Verschiedene Transformationen, die angewendet werden können\n" "auf einem FlatCAM-Objekt." -#: flatcamGUI/FlatCAMGUI.py:5906 +#: flatcamGUI/FlatCAMGUI.py:5980 msgid "Rotate Angle:" msgstr "Winkel drehen:" -#: flatcamGUI/FlatCAMGUI.py:5908 +#: flatcamGUI/FlatCAMGUI.py:5982 msgid "Angle for rotation. In degrees." msgstr "Drehwinkel. In grad." -#: flatcamGUI/FlatCAMGUI.py:5915 +#: flatcamGUI/FlatCAMGUI.py:5989 msgid "Skew_X angle:" msgstr "Neigungswinkel X:" -#: flatcamGUI/FlatCAMGUI.py:5917 +#: flatcamGUI/FlatCAMGUI.py:5991 msgid "Angle for Skew/Shear on X axis. In degrees." msgstr "Winkel für Neigung / Scherung auf der X-Achse. In grad." -#: flatcamGUI/FlatCAMGUI.py:5924 +#: flatcamGUI/FlatCAMGUI.py:5998 msgid "Skew_Y angle:" msgstr "Neigungswinkel Y:" -#: flatcamGUI/FlatCAMGUI.py:5926 +#: flatcamGUI/FlatCAMGUI.py:6000 msgid "Angle for Skew/Shear on Y axis. In degrees." msgstr "Winkel für Neigung / Scherung auf der Y-Achse. In grad." -#: flatcamGUI/FlatCAMGUI.py:5933 +#: flatcamGUI/FlatCAMGUI.py:6007 msgid "Scale_X factor:" msgstr "Skalierung des X-Faktors:" -#: flatcamGUI/FlatCAMGUI.py:5935 +#: flatcamGUI/FlatCAMGUI.py:6009 msgid "Factor for scaling on X axis." msgstr "Faktor für die Skalierung auf der X-Achse." -#: flatcamGUI/FlatCAMGUI.py:5942 +#: flatcamGUI/FlatCAMGUI.py:6016 msgid "Scale_Y factor:" msgstr "Skalierung des Y-Faktors:" -#: flatcamGUI/FlatCAMGUI.py:5944 +#: flatcamGUI/FlatCAMGUI.py:6018 msgid "Factor for scaling on Y axis." msgstr "Faktor für die Skalierung auf der Y-Achse." -#: flatcamGUI/FlatCAMGUI.py:5952 +#: flatcamGUI/FlatCAMGUI.py:6026 msgid "" "Scale the selected object(s)\n" "using the Scale_X factor for both axis." @@ -8364,7 +8276,7 @@ msgstr "" "Skalieren Sie die ausgewählten Objekte\n" "Verwenden des Skalierungsfaktors X für beide Achsen." -#: flatcamGUI/FlatCAMGUI.py:5960 flatcamTools/ToolTransform.py:210 +#: flatcamGUI/FlatCAMGUI.py:6034 flatcamTools/ToolTransform.py:210 msgid "" "Scale the selected object(s)\n" "using the origin reference when checked,\n" @@ -8376,27 +8288,27 @@ msgstr "" "und die Mitte der größten Begrenzungsbox\n" "der ausgewählten Objekte, wenn sie nicht markiert sind." -#: flatcamGUI/FlatCAMGUI.py:5969 +#: flatcamGUI/FlatCAMGUI.py:6043 msgid "Offset_X val:" msgstr "Offset X Wert:" -#: flatcamGUI/FlatCAMGUI.py:5971 +#: flatcamGUI/FlatCAMGUI.py:6045 msgid "Distance to offset on X axis. In current units." msgstr "Abstand zum Offset auf der X-Achse. In aktuellen Einheiten." -#: flatcamGUI/FlatCAMGUI.py:5978 +#: flatcamGUI/FlatCAMGUI.py:6052 msgid "Offset_Y val:" msgstr "Offset Y-Wert:" -#: flatcamGUI/FlatCAMGUI.py:5980 +#: flatcamGUI/FlatCAMGUI.py:6054 msgid "Distance to offset on Y axis. In current units." msgstr "Abstand zum Offset auf der Y-Achse. In aktuellen Einheiten." -#: flatcamGUI/FlatCAMGUI.py:5986 +#: flatcamGUI/FlatCAMGUI.py:6060 msgid "Mirror Reference" msgstr "Spiegelreferenz" -#: flatcamGUI/FlatCAMGUI.py:5988 flatcamTools/ToolTransform.py:314 +#: flatcamGUI/FlatCAMGUI.py:6062 flatcamTools/ToolTransform.py:314 msgid "" "Flip the selected object(s)\n" "around the point in Point Entry Field.\n" @@ -8419,11 +8331,11 @@ msgstr "" "Oder geben Sie die Koordinaten im Format (x, y) in ein\n" "Punkt-Eingabefeld und klicken Sie auf X (Y) drehen" -#: flatcamGUI/FlatCAMGUI.py:5999 +#: flatcamGUI/FlatCAMGUI.py:6073 msgid " Mirror Ref. Point:" msgstr "Spiegelref. Punkt:" -#: flatcamGUI/FlatCAMGUI.py:6001 flatcamTools/ToolTransform.py:327 +#: flatcamGUI/FlatCAMGUI.py:6075 flatcamTools/ToolTransform.py:327 msgid "" "Coordinates in format (x, y) used as reference for mirroring.\n" "The 'x' in (x, y) will be used when using Flip on X and\n" @@ -8434,11 +8346,11 @@ msgstr "" "Das 'x' in (x, y) wird verwendet, wenn Sie bei X und\n" "Das 'y' in (x, y) wird verwendet, wenn Flip auf Y und verwendet wird" -#: flatcamGUI/FlatCAMGUI.py:6018 +#: flatcamGUI/FlatCAMGUI.py:6092 msgid "SolderPaste Tool Options" -msgstr "Optionen für das Lötpaste-Werkzeug" +msgstr "Lötpaste-Werkzeug-Optionen" -#: flatcamGUI/FlatCAMGUI.py:6023 +#: flatcamGUI/FlatCAMGUI.py:6097 msgid "" "A tool to create GCode for dispensing\n" "solder paste onto a PCB." @@ -8446,49 +8358,49 @@ msgstr "" "Ein Werkzeug zum Erstellen von GCode für die Ausgabe\n" "Lotpaste auf eine Leiterplatte." -#: flatcamGUI/FlatCAMGUI.py:6034 +#: flatcamGUI/FlatCAMGUI.py:6108 msgid "Diameters of nozzle tools, separated by ','" msgstr "Durchmesser der Düsenwerkzeuge, getrennt durch ','" -#: flatcamGUI/FlatCAMGUI.py:6041 +#: flatcamGUI/FlatCAMGUI.py:6115 msgid "New Nozzle Dia:" msgstr " Neuer Düsendurchmesser: " -#: flatcamGUI/FlatCAMGUI.py:6043 flatcamTools/ToolSolderPaste.py:103 +#: flatcamGUI/FlatCAMGUI.py:6117 flatcamTools/ToolSolderPaste.py:103 msgid "Diameter for the new Nozzle tool to add in the Tool Table" msgstr "" "Durchmesser für das neue Düsenwerkzeug, das in die Werkzeugtabelle eingefügt " "werden soll" -#: flatcamGUI/FlatCAMGUI.py:6051 flatcamTools/ToolSolderPaste.py:166 +#: flatcamGUI/FlatCAMGUI.py:6125 flatcamTools/ToolSolderPaste.py:166 msgid "Z Dispense Start:" msgstr "Z Dosierbeginn:" -#: flatcamGUI/FlatCAMGUI.py:6053 flatcamTools/ToolSolderPaste.py:168 +#: flatcamGUI/FlatCAMGUI.py:6127 flatcamTools/ToolSolderPaste.py:168 msgid "The height (Z) when solder paste dispensing starts." msgstr "Die Höhe (Z) bei der Lotpastendosierung." -#: flatcamGUI/FlatCAMGUI.py:6060 flatcamTools/ToolSolderPaste.py:174 +#: flatcamGUI/FlatCAMGUI.py:6134 flatcamTools/ToolSolderPaste.py:174 msgid "Z Dispense:" msgstr "Z-Abgabe:" -#: flatcamGUI/FlatCAMGUI.py:6062 flatcamTools/ToolSolderPaste.py:176 +#: flatcamGUI/FlatCAMGUI.py:6136 flatcamTools/ToolSolderPaste.py:176 msgid "The height (Z) when doing solder paste dispensing." msgstr "Die Höhe (Z) bei der Lotpastendosierung." -#: flatcamGUI/FlatCAMGUI.py:6069 flatcamTools/ToolSolderPaste.py:183 +#: flatcamGUI/FlatCAMGUI.py:6143 flatcamTools/ToolSolderPaste.py:183 msgid "Z Dispense Stop:" msgstr "Z Abgabestopp:" -#: flatcamGUI/FlatCAMGUI.py:6071 flatcamTools/ToolSolderPaste.py:185 +#: flatcamGUI/FlatCAMGUI.py:6145 flatcamTools/ToolSolderPaste.py:185 msgid "The height (Z) when solder paste dispensing stops." msgstr "Die Höhe (Z) bei der Lotpastendosierung stoppt." -#: flatcamGUI/FlatCAMGUI.py:6078 flatcamTools/ToolSolderPaste.py:191 +#: flatcamGUI/FlatCAMGUI.py:6152 flatcamTools/ToolSolderPaste.py:191 msgid "Z Travel:" msgstr "Z Reise:" -#: flatcamGUI/FlatCAMGUI.py:6080 flatcamTools/ToolSolderPaste.py:193 +#: flatcamGUI/FlatCAMGUI.py:6154 flatcamTools/ToolSolderPaste.py:193 msgid "" "The height (Z) for travel between pads\n" "(without dispensing solder paste)." @@ -8496,19 +8408,19 @@ msgstr "" "Die Höhe (Z) für den Weg zwischen Pads\n" "(ohne Lotpaste zu dosieren)." -#: flatcamGUI/FlatCAMGUI.py:6088 flatcamTools/ToolSolderPaste.py:200 +#: flatcamGUI/FlatCAMGUI.py:6162 flatcamTools/ToolSolderPaste.py:200 msgid "Z Toolchange:" msgstr "Z Werkzeugwechsel:" -#: flatcamGUI/FlatCAMGUI.py:6090 flatcamTools/ToolSolderPaste.py:202 +#: flatcamGUI/FlatCAMGUI.py:6164 flatcamTools/ToolSolderPaste.py:202 msgid "The height (Z) for tool (nozzle) change." msgstr "Die Höhe (Z) für Werkzeug (Düse) ändert sich." -#: flatcamGUI/FlatCAMGUI.py:6097 flatcamTools/ToolSolderPaste.py:208 +#: flatcamGUI/FlatCAMGUI.py:6171 flatcamTools/ToolSolderPaste.py:208 msgid "XY Toolchange:" msgstr "XY-Werkzeugwechsel:" -#: flatcamGUI/FlatCAMGUI.py:6099 flatcamTools/ToolSolderPaste.py:210 +#: flatcamGUI/FlatCAMGUI.py:6173 flatcamTools/ToolSolderPaste.py:210 msgid "" "The X,Y location for tool (nozzle) change.\n" "The format is (x, y) where x and y are real numbers." @@ -8516,19 +8428,19 @@ msgstr "" "Die X, Y-Position für Werkzeug (Düse) ändert sich.\n" "Das Format ist (x, y), wobei x und y reelle Zahlen sind." -#: flatcamGUI/FlatCAMGUI.py:6107 flatcamTools/ToolSolderPaste.py:217 +#: flatcamGUI/FlatCAMGUI.py:6181 flatcamTools/ToolSolderPaste.py:217 msgid "Feedrate X-Y:" msgstr "Vorschub X-Y:" -#: flatcamGUI/FlatCAMGUI.py:6109 flatcamTools/ToolSolderPaste.py:219 +#: flatcamGUI/FlatCAMGUI.py:6183 flatcamTools/ToolSolderPaste.py:219 msgid "Feedrate (speed) while moving on the X-Y plane." msgstr "Vorschub (Geschwindigkeit) während der Bewegung auf der X-Y-Ebene." -#: flatcamGUI/FlatCAMGUI.py:6116 flatcamTools/ToolSolderPaste.py:225 +#: flatcamGUI/FlatCAMGUI.py:6190 flatcamTools/ToolSolderPaste.py:225 msgid "Feedrate Z:" msgstr "Vorschub Z:" -#: flatcamGUI/FlatCAMGUI.py:6118 flatcamTools/ToolSolderPaste.py:227 +#: flatcamGUI/FlatCAMGUI.py:6192 flatcamTools/ToolSolderPaste.py:227 msgid "" "Feedrate (speed) while moving vertically\n" "(on Z plane)." @@ -8536,11 +8448,11 @@ msgstr "" "Vorschub (Geschwindigkeit) bei vertikaler Bewegung\n" "(auf der Z-Ebene)." -#: flatcamGUI/FlatCAMGUI.py:6126 flatcamTools/ToolSolderPaste.py:234 +#: flatcamGUI/FlatCAMGUI.py:6200 flatcamTools/ToolSolderPaste.py:234 msgid "Feedrate Z Dispense:" msgstr "Vorschub Z Dosierung:" -#: flatcamGUI/FlatCAMGUI.py:6128 flatcamTools/ToolSolderPaste.py:236 +#: flatcamGUI/FlatCAMGUI.py:6202 flatcamTools/ToolSolderPaste.py:236 msgid "" "Feedrate (speed) while moving up vertically\n" " to Dispense position (on Z plane)." @@ -8548,11 +8460,11 @@ msgstr "" "Vorschub (Geschwindigkeit) bei vertikaler Bewegung\n" "  zur Ausgabeposition (auf der Z-Ebene)." -#: flatcamGUI/FlatCAMGUI.py:6136 flatcamTools/ToolSolderPaste.py:243 +#: flatcamGUI/FlatCAMGUI.py:6210 flatcamTools/ToolSolderPaste.py:243 msgid "Spindle Speed FWD:" msgstr "Spindeldrehzahl FWD:" -#: flatcamGUI/FlatCAMGUI.py:6138 flatcamTools/ToolSolderPaste.py:245 +#: flatcamGUI/FlatCAMGUI.py:6212 flatcamTools/ToolSolderPaste.py:245 msgid "" "The dispenser speed while pushing solder paste\n" "through the dispenser nozzle." @@ -8560,19 +8472,19 @@ msgstr "" "Die Spendergeschwindigkeit beim Schieben der Lötpaste\n" "durch die Spenderdüse." -#: flatcamGUI/FlatCAMGUI.py:6146 flatcamTools/ToolSolderPaste.py:252 +#: flatcamGUI/FlatCAMGUI.py:6220 flatcamTools/ToolSolderPaste.py:252 msgid "Dwell FWD:" msgstr "Verweilzeit FWD:" -#: flatcamGUI/FlatCAMGUI.py:6148 flatcamTools/ToolSolderPaste.py:254 +#: flatcamGUI/FlatCAMGUI.py:6222 flatcamTools/ToolSolderPaste.py:254 msgid "Pause after solder dispensing." msgstr "Pause nach dem Löten." -#: flatcamGUI/FlatCAMGUI.py:6155 flatcamTools/ToolSolderPaste.py:260 +#: flatcamGUI/FlatCAMGUI.py:6229 flatcamTools/ToolSolderPaste.py:260 msgid "Spindle Speed REV:" msgstr "Spindeldrehzahl REV:" -#: flatcamGUI/FlatCAMGUI.py:6157 flatcamTools/ToolSolderPaste.py:262 +#: flatcamGUI/FlatCAMGUI.py:6231 flatcamTools/ToolSolderPaste.py:262 msgid "" "The dispenser speed while retracting solder paste\n" "through the dispenser nozzle." @@ -8580,11 +8492,11 @@ msgstr "" "Die Spendergeschwindigkeit beim Einfahren der Lötpaste\n" "durch die Spenderdüse." -#: flatcamGUI/FlatCAMGUI.py:6165 flatcamTools/ToolSolderPaste.py:269 +#: flatcamGUI/FlatCAMGUI.py:6239 flatcamTools/ToolSolderPaste.py:269 msgid "Dwell REV:" msgstr "Verweilen REV:" -#: flatcamGUI/FlatCAMGUI.py:6167 flatcamTools/ToolSolderPaste.py:271 +#: flatcamGUI/FlatCAMGUI.py:6241 flatcamTools/ToolSolderPaste.py:271 msgid "" "Pause after solder paste dispenser retracted,\n" "to allow pressure equilibrium." @@ -8592,23 +8504,23 @@ msgstr "" "Pause nachdem Lotpastendispenser eingefahren wurde,\n" "das Druckgleichgewicht zu ermöglichen." -#: flatcamGUI/FlatCAMGUI.py:6174 flatcamTools/ToolSolderPaste.py:277 +#: flatcamGUI/FlatCAMGUI.py:6248 flatcamTools/ToolSolderPaste.py:277 msgid "PostProcessors:" msgstr "Postprozessoren:" -#: flatcamGUI/FlatCAMGUI.py:6176 flatcamTools/ToolSolderPaste.py:279 +#: flatcamGUI/FlatCAMGUI.py:6250 flatcamTools/ToolSolderPaste.py:279 msgid "Files that control the GCode generation." msgstr "Dateien, die die GCode-Generierung steuern." -#: flatcamGUI/FlatCAMGUI.py:6206 flatcamGUI/FlatCAMGUI.py:6212 +#: flatcamGUI/FlatCAMGUI.py:6280 flatcamGUI/FlatCAMGUI.py:6286 msgid "Idle." msgstr "Untätig" -#: flatcamGUI/FlatCAMGUI.py:6236 +#: flatcamGUI/FlatCAMGUI.py:6310 msgid "Application started ..." msgstr "Bewerbung gestartet ..." -#: flatcamGUI/FlatCAMGUI.py:6237 +#: flatcamGUI/FlatCAMGUI.py:6311 msgid "Hello!" msgstr "Hello!" @@ -8686,14 +8598,6 @@ msgstr "Führen Sie den Versatzvorgang aus." msgid "Gerber Object" msgstr "Gerber-Objekt" -#: flatcamGUI/ObjectUI.py:156 -msgid "Solid " -msgstr "Solide" - -#: flatcamGUI/ObjectUI.py:164 -msgid "M-Color " -msgstr "Mehrfarbig" - #: flatcamGUI/ObjectUI.py:182 flatcamGUI/ObjectUI.py:517 #: flatcamGUI/ObjectUI.py:836 flatcamGUI/ObjectUI.py:1366 msgid "Name:" @@ -8903,6 +8807,14 @@ msgstr "Feste Kreise" msgid "Tools Table" msgstr " Werkzeugtabelle " +#: flatcamGUI/ObjectUI.py:556 +msgid "Drills" +msgstr "Bohrer" + +#: flatcamGUI/ObjectUI.py:556 +msgid "Slots" +msgstr "Schlüssel" + #: flatcamGUI/ObjectUI.py:557 msgid "Offset Z" msgstr "Versatz Z" @@ -9880,6 +9792,8 @@ msgstr "" #: flatcamTools/ToolCutOut.py:338 flatcamTools/ToolCutOut.py:483 #: flatcamTools/ToolNonCopperClear.py:666 flatcamTools/ToolPaint.py:764 #: flatcamTools/ToolPanelize.py:293 flatcamTools/ToolPanelize.py:307 +#: flatcamTools/ToolSub.py:234 flatcamTools/ToolSub.py:246 +#: flatcamTools/ToolSub.py:364 flatcamTools/ToolSub.py:376 #, python-format msgid "[ERROR_NOTCL] Could not retrieve object: %s" msgstr "[ERROR_NOTCL] Objekt konnte nicht abgerufen werden:%s" @@ -10799,32 +10713,36 @@ msgstr "" "[ERROR_NOTCL] NCC-Tool wurde beendet, das Objekt konnte jedoch nicht mit den " "aktuellen Einstellungen gelöscht werden." -#: flatcamTools/ToolPDF.py:37 +#: flatcamTools/ToolPDF.py:38 msgid "PDF Import Tool" msgstr "PDF-Importwerkzeug" -#: flatcamTools/ToolPDF.py:142 flatcamTools/ToolPDF.py:146 +#: flatcamTools/ToolPDF.py:152 flatcamTools/ToolPDF.py:156 msgid "Open PDF" msgstr "PDF öffnen" -#: flatcamTools/ToolPDF.py:149 +#: flatcamTools/ToolPDF.py:159 msgid "[WARNING_NOTCL] Open PDF cancelled." msgstr "[WARNING_NOTCL] Open PDF abgebrochen." -#: flatcamTools/ToolPDF.py:170 +#: flatcamTools/ToolPDF.py:186 msgid "Parsing PDF file ..." msgstr "PDF-Datei wird analysiert ..." -#: flatcamTools/ToolPDF.py:266 +#: flatcamTools/ToolPDF.py:264 flatcamTools/ToolPDF.py:300 #, python-format -#| msgid "Generating Film ..." msgid "Rendering PDF layer #%d ..." msgstr "PDF-Ebene rendern #%d ..." -#: flatcamTools/ToolPDF.py:270 +#: flatcamTools/ToolPDF.py:268 flatcamTools/ToolPDF.py:304 msgid "[ERROR_NOTCL] Open PDF file failed." msgstr "[ERROR_NOTCL] Fehler beim Öffnen der PDF-Datei." +#: flatcamTools/ToolPDF.py:273 flatcamTools/ToolPDF.py:309 +#, python-format +msgid "[success] Rendered: %s" +msgstr "[success] Gerendert: %s" + #: flatcamTools/ToolPaint.py:24 msgid "Paint Area" msgstr "Paint Bereich" @@ -11252,7 +11170,6 @@ msgstr "[ERROR_NOTCL] Import der Excellon-Datei ist fehlgeschlagen." #: flatcamTools/ToolPcbWizard.py:461 #, python-format -#| msgid "[success] Created: %s" msgid "[success] Imported: %s" msgstr "[success] Importiert: %s" @@ -11575,6 +11492,128 @@ msgstr "GCode exportieren ..." msgid "[success] Solder paste dispenser GCode file saved to: %s" msgstr "[success] GCode-Datei für Lötpastendispenser in gespeichert: %s" +#: flatcamTools/ToolSub.py:55 +msgid "Gerber Objects" +msgstr "Gerber Objekte" + +#: flatcamTools/ToolSub.py:64 flatcamTools/ToolSub.py:110 +msgid "Target:" +msgstr "Zielscheibe:" + +#: flatcamTools/ToolSub.py:66 +msgid "" +"Gerber object from which to substract\n" +"the substractor Gerber object." +msgstr "" +"Gerber-Objekt, von dem abgezogen werden soll\n" +"das Subtrahierer-Gerber-Objekt." + +#: flatcamTools/ToolSub.py:78 flatcamTools/ToolSub.py:124 +msgid "Substractor:" +msgstr "Subtraktor:" + +#: flatcamTools/ToolSub.py:80 +msgid "" +"Gerber object that will be substracted\n" +"from the target Gerber object." +msgstr "" +"Gerber-Objekt, das abgezogen wird\n" +"vom Zielobjekt Gerber." + +#: flatcamTools/ToolSub.py:87 +msgid "Substract Gerber" +msgstr "Gerber abziehen" + +#: flatcamTools/ToolSub.py:89 +msgid "" +"Will remove the area occupied by the substractor\n" +"Gerber from the Target Gerber.\n" +"Can be used to remove the overlapping silkscreen\n" +"over the soldermask." +msgstr "" +"Entfernt den vom Subtraktor belegten Bereich\n" +"Gerber vom Target Gerber.\n" +"Kann zum Entfernen des überlappenden Siebdrucks verwendet werden\n" +"über der Soldmaske." + +#: flatcamTools/ToolSub.py:101 +msgid "Geometry Objects" +msgstr "Geometrieobjekte" + +#: flatcamTools/ToolSub.py:112 +msgid "" +"Geometry object from which to substract\n" +"the substractor Geometry object." +msgstr "" +"Geometrieobjekt, von dem abgezogen werden soll\n" +"das Subtrahierer-Geometrieobjekt." + +#: flatcamTools/ToolSub.py:126 +msgid "" +"Geometry object that will be substracted\n" +"from the target Geometry object." +msgstr "" +"Geometrieobjekt, das abgezogen wird\n" +"vom Zielobjekt Geometrie." + +#: flatcamTools/ToolSub.py:133 +msgid "Substract Geometry" +msgstr "Geometrie abziehen" + +#: flatcamTools/ToolSub.py:135 +msgid "" +"Will remove the area occupied by the substractor\n" +"Geometry from the Target Geometry." +msgstr "" +"Entfernt den vom Subtraktor belegten Bereich\n" +"Geometrie aus der Zielgeometrie." + +#: flatcamTools/ToolSub.py:212 +msgid "Sub Tool" +msgstr "Sub. Werkzeug" + +#: flatcamTools/ToolSub.py:227 flatcamTools/ToolSub.py:357 +msgid "[ERROR_NOTCL] No Target object loaded." +msgstr "[ERROR_NOTCL]Kein Zielobjekt geladen." + +#: flatcamTools/ToolSub.py:239 flatcamTools/ToolSub.py:369 +msgid "[ERROR_NOTCL] No Substractor object loaded." +msgstr "[ERROR_NOTCL] Kein Substractor-Objekt geladen." + +#: flatcamTools/ToolSub.py:277 +#, python-format +msgid "Parsing aperture %s geometry ..." +msgstr "Analyse der Geometrie der Blende%s ..." + +#: flatcamTools/ToolSub.py:331 flatcamTools/ToolSub.py:475 +msgid "Generating new object ..." +msgstr "Neues Objekt erzeugen ..." + +#: flatcamTools/ToolSub.py:334 flatcamTools/ToolSub.py:478 +msgid "[ERROR_NOTCL] Generating new object failed." +msgstr "[ERROR_NOTCL] Das Generieren eines neuen Objekts ist fehlgeschlagen." + +#: flatcamTools/ToolSub.py:339 flatcamTools/ToolSub.py:483 +#, python-format +msgid "[success] Created: %s" +msgstr "[success] Erstellt: %s" + +#: flatcamTools/ToolSub.py:380 +msgid "" +"[ERROR_NOTCL] Currently, the Substractor geometry cannot be of type Multigeo." +msgstr "" +"[ERROR_NOTCL] Derzeit kann die Substractor-Geometrie nicht vom Typ Multigeo " +"sein." + +#: flatcamTools/ToolSub.py:425 +msgid "Parsing solid_geometry ..." +msgstr "Analyse von solid_geometry ..." + +#: flatcamTools/ToolSub.py:427 +#, python-format +msgid "Parsing tool %s geometry ..." +msgstr "Analyse-Tool %s-Geometrie ..." + #: flatcamTools/ToolTransform.py:23 msgid "Object Transform" msgstr "Objekttransformation" @@ -11691,6 +11730,126 @@ msgstr "" msgid "CNCJob objects can't be offseted." msgstr "CNCJob-Objekte können nicht versetzt werden." +#~ msgid "Path" +#~ msgstr "Pfad" + +#~ msgid "In" +#~ msgstr "Im" + +#~ msgid "Out" +#~ msgstr "Aus" + +#~ msgid "Custom" +#~ msgstr "Maßgeschn." + +#~ msgid "in" +#~ msgstr "Im" + +#~ msgid "out" +#~ msgstr "Aus" + +#~ msgid "path" +#~ msgstr "Pfad" + +#~ msgid "Angle" +#~ msgstr "Winkel" + +#~ msgid "Standard" +#~ msgstr "Standard" + +#~ msgid "Seed-based" +#~ msgstr "Samenbasiert" + +#~ msgid "Straight lines" +#~ msgstr "Gerade Linien" + +#~ msgid "Copy Drill(s)" +#~ msgstr "Bohrer kopieren" + +#~ msgid "Basic" +#~ msgstr "Basic" + +#~ msgid "Advanced" +#~ msgstr "Erweitert" + +#~ msgid "MMB" +#~ msgstr "MMB" + +#~ msgid "RMB" +#~ msgstr "RMB" + +#~ msgid "CTRL" +#~ msgstr "CTRL" + +#~ msgid "SHIFT" +#~ msgstr "SHIFT" + +#~ msgid "Climb" +#~ msgstr "Steigen" + +#~ msgid "Conv." +#~ msgstr "Konv." + +#~ msgid "LZ" +#~ msgstr "LZ" + +#~ msgid "TZ" +#~ msgstr "TZ" + +#~ msgid "INCH" +#~ msgstr "ZOLL" + +#~ msgid "MM" +#~ msgstr "MM" + +#~ msgid "MH" +#~ msgstr "MH" + +#~ msgid "Both" +#~ msgstr "Both" + +#~ msgid "Decimal" +#~ msgstr "Dezimal" + +#~ msgid "No-Decimal" +#~ msgstr "Keine Dezimalzahl" + +#~ msgid "Travel" +#~ msgstr "Reise" + +#~ msgid "X" +#~ msgstr "X" + +#~ msgid "Y" +#~ msgstr "Y" + +#~ msgid "Point" +#~ msgstr "Punkt" + +#~ msgid "Box" +#~ msgstr "Box" + +#~ msgid "Single" +#~ msgstr "Single" + +#~ msgid "Pos" +#~ msgstr "Positiv" + +#~ msgid "Neg" +#~ msgstr "Negativ" + +#~ msgid "Gerber" +#~ msgstr "Gerber" + +#~ msgid "Geo" +#~ msgstr "Geo" + +#~ msgid "Solid " +#~ msgstr "Solide" + +#~ msgid "M-Color " +#~ msgstr "Mehrfarbig" + #~ msgid "Done." #~ msgstr "Gemacht." diff --git a/locale/en/LC_MESSAGES/strings.mo b/locale/en/LC_MESSAGES/strings.mo index 60a2dbf56729eb992194dfb2259466124e0ab2ec..e2fbb2eb7a12bf724fc3a3d32f4507d9316e310c 100644 GIT binary patch delta 41327 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 L|9^j1Uh@ARo?vkG delta 38864 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 PyR3Iz?EhOR#{>Q!<{ry5 diff --git a/locale/en/LC_MESSAGES/strings.po b/locale/en/LC_MESSAGES/strings.po index 610bf45b..32ae3e54 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-04-23 17:50+0300\n" -"PO-Revision-Date: 2019-04-23 17:50+0300\n" +"POT-Creation-Date: 2019-05-01 16:01+0300\n" +"PO-Revision-Date: 2019-05-01 16:02+0300\n" "Last-Translator: \n" "Language-Team: \n" "Language: en\n" @@ -22,128 +22,128 @@ msgstr "" "X-Poedit-SearchPathExcluded-1: doc\n" "X-Poedit-SearchPathExcluded-2: tests\n" -#: FlatCAMApp.py:857 +#: FlatCAMApp.py:865 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:1889 ObjectCollection.py:80 flatcamTools/ToolImage.py:213 +#: FlatCAMApp.py:1921 ObjectCollection.py:80 flatcamTools/ToolImage.py:213 #: flatcamTools/ToolPcbWizard.py:299 flatcamTools/ToolPcbWizard.py:322 msgid "Open cancelled." msgstr "Open cancelled." -#: FlatCAMApp.py:1903 +#: FlatCAMApp.py:1935 msgid "Open Config file failed." msgstr "Open Config file failed." -#: FlatCAMApp.py:1917 +#: FlatCAMApp.py:1949 msgid "Open Script file failed." msgstr "Open Script file failed." -#: FlatCAMApp.py:2102 +#: FlatCAMApp.py:2140 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:2112 +#: FlatCAMApp.py:2150 msgid "" "[WARNING_NOTCL] Simultanoeus editing of tools geometry in a MultiGeo " "Geometry is not possible.\n" "Edit only one geometry at a time." msgstr "" -"[WARNING_NOTCL] Simultaneous editing of tools geometry in a MultiGeo " +"[WARNING_NOTCL] Simultanoeus editing of tools geometry in a MultiGeo " "Geometry is not possible.\n" -" Edit only one geometry at a time." +"Edit only one geometry at a time." -#: FlatCAMApp.py:2149 +#: FlatCAMApp.py:2188 msgid "[WARNING_NOTCL] Editor is activated ..." msgstr "[WARNING_NOTCL] Editor is activated ..." -#: FlatCAMApp.py:2168 +#: FlatCAMApp.py:2207 msgid "Do you want to save the edited object?" msgstr "Do you want to save the edited object?" -#: FlatCAMApp.py:2169 flatcamGUI/FlatCAMGUI.py:1593 +#: FlatCAMApp.py:2208 flatcamGUI/FlatCAMGUI.py:1604 msgid "Close Editor" msgstr "Close Editor" -#: FlatCAMApp.py:2172 FlatCAMApp.py:3254 FlatCAMApp.py:5559 -#: FlatCAMTranslation.py:89 flatcamGUI/FlatCAMGUI.py:3631 +#: FlatCAMApp.py:2211 FlatCAMApp.py:3302 FlatCAMApp.py:5661 +#: FlatCAMTranslation.py:89 flatcamGUI/FlatCAMGUI.py:3698 msgid "Yes" msgstr "Yes" -#: FlatCAMApp.py:2173 FlatCAMApp.py:3255 FlatCAMApp.py:5560 -#: FlatCAMTranslation.py:90 flatcamGUI/FlatCAMGUI.py:3632 +#: FlatCAMApp.py:2212 FlatCAMApp.py:3303 FlatCAMApp.py:5662 +#: FlatCAMTranslation.py:90 flatcamGUI/FlatCAMGUI.py:3699 msgid "No" msgstr "No" -#: FlatCAMApp.py:2174 FlatCAMApp.py:3256 FlatCAMApp.py:3588 FlatCAMApp.py:5561 +#: FlatCAMApp.py:2213 FlatCAMApp.py:3304 FlatCAMApp.py:3636 FlatCAMApp.py:5663 msgid "Cancel" msgstr "Cancel" -#: FlatCAMApp.py:2196 FlatCAMApp.py:2221 +#: FlatCAMApp.py:2235 FlatCAMApp.py:2260 msgid "[WARNING] Object empty after edit." msgstr "[WARNING] Object empty after edit." -#: FlatCAMApp.py:2230 FlatCAMApp.py:2244 FlatCAMApp.py:2256 +#: FlatCAMApp.py:2269 FlatCAMApp.py:2283 FlatCAMApp.py:2295 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:2233 +#: FlatCAMApp.py:2272 #, python-format msgid "[selected] %s is updated, returning to App..." msgstr "[selected] %s is updated, returning to App..." -#: FlatCAMApp.py:2592 +#: FlatCAMApp.py:2632 msgid "[ERROR] Could not load defaults file." msgstr "[ERROR] Could not load defaults file." -#: FlatCAMApp.py:2604 +#: FlatCAMApp.py:2644 msgid "[ERROR] Failed to parse defaults file." msgstr "[ERROR] Failed to parse defaults file." -#: FlatCAMApp.py:2625 FlatCAMApp.py:2628 +#: FlatCAMApp.py:2665 FlatCAMApp.py:2668 msgid "Import FlatCAM Preferences" msgstr "Import FlatCAM Preferences" -#: FlatCAMApp.py:2633 +#: FlatCAMApp.py:2673 msgid "[WARNING_NOTCL] FlatCAM preferences import cancelled." msgstr "[WARNING_NOTCL] FlatCAM preferences import cancelled." -#: FlatCAMApp.py:2641 FlatCAMApp.py:2688 FlatCAMApp.py:3133 +#: FlatCAMApp.py:2681 FlatCAMApp.py:2728 FlatCAMApp.py:3181 msgid "[ERROR_NOTCL] Could not load defaults file." msgstr "[ERROR_NOTCL] Could not load defaults file." -#: FlatCAMApp.py:2649 FlatCAMApp.py:3142 +#: FlatCAMApp.py:2689 FlatCAMApp.py:3190 msgid "[ERROR_NOTCL] Failed to parse defaults file." msgstr "[ERROR_NOTCL] Failed to parse defaults file." -#: FlatCAMApp.py:2652 +#: FlatCAMApp.py:2692 #, python-format msgid "[success] Imported Defaults from %s" msgstr "[success] Imported Defaults from %s" -#: FlatCAMApp.py:2662 FlatCAMApp.py:2666 +#: FlatCAMApp.py:2702 FlatCAMApp.py:2706 msgid "Export FlatCAM Preferences" msgstr "Export FlatCAM Preferences" -#: FlatCAMApp.py:2672 +#: FlatCAMApp.py:2712 msgid "[WARNING_NOTCL] FlatCAM preferences export cancelled." msgstr "[WARNING_NOTCL] FlatCAM preferences export cancelled." -#: FlatCAMApp.py:2707 FlatCAMApp.py:3187 +#: FlatCAMApp.py:2747 FlatCAMApp.py:3235 msgid "[ERROR_NOTCL] Failed to write defaults to file." msgstr "[ERROR_NOTCL] Failed to write defaults to file." -#: FlatCAMApp.py:2759 +#: FlatCAMApp.py:2799 msgid "[ERROR_NOTCL] Failed to open recent files file for writing." msgstr "[ERROR_NOTCL] Failed to open recent files file for writing." -#: FlatCAMApp.py:2844 camlib.py:4493 +#: FlatCAMApp.py:2884 camlib.py:4503 msgid "[ERROR_NOTCL] An internal error has ocurred. See shell.\n" msgstr "[ERROR_NOTCL] An internal error has ocurred. See shell.\n" -#: FlatCAMApp.py:2845 +#: FlatCAMApp.py:2885 #, python-brace-format msgid "" "Object ({kind}) failed because: {error} \n" @@ -152,11 +152,11 @@ msgstr "" "Object ({kind}) failed because: {error} \n" "\n" -#: FlatCAMApp.py:2865 +#: FlatCAMApp.py:2905 msgid "Converting units to " msgstr "Converting units to " -#: FlatCAMApp.py:2935 FlatCAMApp.py:2938 FlatCAMApp.py:2941 FlatCAMApp.py:2944 +#: FlatCAMApp.py:2983 FlatCAMApp.py:2986 FlatCAMApp.py:2989 FlatCAMApp.py:2992 #, python-brace-format msgid "" "[selected] {kind} created/selected: {name}{name}" -#: FlatCAMApp.py:3038 +#: FlatCAMApp.py:3086 #, python-brace-format msgid "" "FlatCAM
Version {version} {beta} ({date}) - " @@ -188,31 +188,31 @@ msgstr "" "a>
DOWNLOAD area
here.
" -#: FlatCAMApp.py:3191 +#: FlatCAMApp.py:3239 msgid "[success] Defaults saved." msgstr "[success] Defaults saved." -#: FlatCAMApp.py:3212 +#: FlatCAMApp.py:3260 msgid "[ERROR_NOTCL] Could not load factory defaults file." msgstr "[ERROR_NOTCL] Could not load factory defaults file." -#: FlatCAMApp.py:3221 +#: FlatCAMApp.py:3269 msgid "[ERROR_NOTCL] Failed to parse factory defaults file." msgstr "[ERROR_NOTCL] Failed to parse factory defaults file." -#: FlatCAMApp.py:3235 +#: FlatCAMApp.py:3283 msgid "[ERROR_NOTCL] Failed to write factory defaults to file." msgstr "[ERROR_NOTCL] Failed to write factory defaults to file." -#: FlatCAMApp.py:3239 +#: FlatCAMApp.py:3287 msgid "Factory defaults saved." msgstr "Factory defaults saved." -#: FlatCAMApp.py:3244 flatcamGUI/FlatCAMGUI.py:3063 +#: FlatCAMApp.py:3292 flatcamGUI/FlatCAMGUI.py:3088 msgid "[WARNING_NOTCL] Application is saving the project. Please wait ..." msgstr "[WARNING_NOTCL] Application is saving the project. Please wait ..." -#: FlatCAMApp.py:3249 +#: FlatCAMApp.py:3297 msgid "" "There are files/objects modified in FlatCAM. \n" "Do you want to Save the project?" @@ -220,11 +220,11 @@ msgstr "" "There are files/objects modified in FlatCAM. \n" "Do you want to Save the project?" -#: FlatCAMApp.py:3252 FlatCAMApp.py:5557 +#: FlatCAMApp.py:3300 FlatCAMApp.py:5659 msgid "Save changes" msgstr "Save changes" -#: FlatCAMApp.py:3319 +#: FlatCAMApp.py:3367 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 " @@ -240,67 +240,67 @@ msgstr "" "be lost and the result may not be what was expected. \n" "Check the generated GCODE." -#: FlatCAMApp.py:3360 +#: FlatCAMApp.py:3408 msgid "[ERROR_NOTCL] Failed. Excellon joining works only on Excellon objects." msgstr "[ERROR_NOTCL] Failed. Excellon joining works only on Excellon objects." -#: FlatCAMApp.py:3382 +#: FlatCAMApp.py:3430 msgid "[ERROR_NOTCL] Failed. Gerber joining works only on Gerber objects." msgstr "[ERROR_NOTCL] Failed. Gerber joining works only on Gerber objects." -#: FlatCAMApp.py:3397 FlatCAMApp.py:3422 +#: FlatCAMApp.py:3445 FlatCAMApp.py:3470 msgid "[ERROR_NOTCL] Failed. Select a Geometry Object and try again." msgstr "[ERROR_NOTCL] Failed. Select a Geometry Object and try again." -#: FlatCAMApp.py:3401 FlatCAMApp.py:3426 +#: FlatCAMApp.py:3449 FlatCAMApp.py:3474 #, python-format msgid "[ERROR_NOTCL] Expected a FlatCAMGeometry, got %s" msgstr "[ERROR_NOTCL] Expected a FlatCAMGeometry, got %s" -#: FlatCAMApp.py:3414 +#: FlatCAMApp.py:3462 msgid "[success] A Geometry object was converted to MultiGeo type." msgstr "[success] A Geometry object was converted to MultiGeo type." -#: FlatCAMApp.py:3440 +#: FlatCAMApp.py:3488 msgid "[success] A Geometry object was converted to SingleGeo type." msgstr "[success] A Geometry object was converted to SingleGeo type." -#: FlatCAMApp.py:3587 FlatCAMApp.py:4352 FlatCAMApp.py:5824 FlatCAMApp.py:5835 -#: FlatCAMApp.py:6021 FlatCAMApp.py:6031 +#: FlatCAMApp.py:3635 FlatCAMApp.py:4444 FlatCAMApp.py:5926 FlatCAMApp.py:5937 +#: FlatCAMApp.py:6123 FlatCAMApp.py:6133 msgid "Ok" msgstr "Ok" -#: FlatCAMApp.py:3628 +#: FlatCAMApp.py:3676 #, python-format msgid "[success] Converted units to %s" msgstr "[success] Converted units to %s" -#: FlatCAMApp.py:3639 +#: FlatCAMApp.py:3687 msgid "[WARNING_NOTCL] Units conversion cancelled." msgstr "[WARNING_NOTCL] Units conversion cancelled." -#: FlatCAMApp.py:4221 +#: FlatCAMApp.py:4313 msgid "Open file" msgstr "Open file" -#: FlatCAMApp.py:4252 FlatCAMApp.py:4257 +#: FlatCAMApp.py:4344 FlatCAMApp.py:4349 msgid "Export G-Code ..." msgstr "Export G-Code ..." -#: FlatCAMApp.py:4260 +#: FlatCAMApp.py:4352 msgid "[WARNING_NOTCL] Export Code cancelled." msgstr "[WARNING_NOTCL] Export Code cancelled." -#: FlatCAMApp.py:4270 +#: FlatCAMApp.py:4362 msgid "[WARNING] No such file or directory" msgstr "[WARNING] No such file or directory" -#: FlatCAMApp.py:4277 +#: FlatCAMApp.py:4369 #, python-format msgid "Saved to: %s" msgstr "Saved to: %s" -#: FlatCAMApp.py:4340 FlatCAMApp.py:4373 FlatCAMApp.py:4384 FlatCAMApp.py:4395 +#: FlatCAMApp.py:4432 FlatCAMApp.py:4465 FlatCAMApp.py:4476 FlatCAMApp.py:4487 #: flatcamTools/ToolNonCopperClear.py:489 flatcamTools/ToolSolderPaste.py:765 msgid "" "[WARNING_NOTCL] Please enter a tool diameter with non-zero value, in Float " @@ -309,12 +309,12 @@ msgstr "" "[WARNING_NOTCL] Please enter a tool diameter with non-zero value, in Float " "format." -#: FlatCAMApp.py:4345 FlatCAMApp.py:4378 FlatCAMApp.py:4389 FlatCAMApp.py:4400 -#: flatcamGUI/FlatCAMGUI.py:2959 +#: FlatCAMApp.py:4437 FlatCAMApp.py:4470 FlatCAMApp.py:4481 FlatCAMApp.py:4492 +#: flatcamGUI/FlatCAMGUI.py:2983 msgid "[WARNING_NOTCL] Adding Tool cancelled ..." msgstr "[WARNING_NOTCL] Adding Tool cancelled ..." -#: FlatCAMApp.py:4348 +#: FlatCAMApp.py:4440 msgid "" "Adding Tool works only when Advanced is checked.\n" "Go to Preferences -> General - Show Advanced Options." @@ -322,115 +322,144 @@ msgstr "" "Adding Tool works only when Advanced is checked.\n" "Go to Preferences -> General - Show Advanced Options." -#: FlatCAMApp.py:4454 +#: FlatCAMApp.py:4546 msgid "Object(s) deleted ..." msgstr "Object(s) deleted ..." -#: FlatCAMApp.py:4458 +#: FlatCAMApp.py:4550 msgid "Failed. No object(s) selected..." msgstr "Failed. No object(s) selected..." -#: FlatCAMApp.py:4460 +#: FlatCAMApp.py:4552 msgid "Save the work in Editor and try again ..." msgstr "Save the work in Editor and try again ..." -#: FlatCAMApp.py:4473 +#: FlatCAMApp.py:4565 msgid "Click to set the origin ..." msgstr "Click to set the origin ..." -#: FlatCAMApp.py:4485 +#: FlatCAMApp.py:4577 msgid "Jump to ..." msgstr "Jump to ..." -#: FlatCAMApp.py:4486 +#: FlatCAMApp.py:4578 msgid "Enter the coordinates in format X,Y:" msgstr "Enter the coordinates in format X,Y:" -#: FlatCAMApp.py:4493 +#: FlatCAMApp.py:4585 msgid "Wrong coordinates. Enter coordinates in format: X,Y" msgstr "Wrong coordinates. Enter coordinates in format: X,Y" -#: FlatCAMApp.py:4511 flatcamEditors/FlatCAMGeoEditor.py:3413 +#: FlatCAMApp.py:4603 flatcamEditors/FlatCAMGeoEditor.py:3485 #: flatcamEditors/FlatCAMGrbEditor.py:790 #: flatcamEditors/FlatCAMGrbEditor.py:885 #: flatcamEditors/FlatCAMGrbEditor.py:1122 -#: flatcamEditors/FlatCAMGrbEditor.py:1343 -#: flatcamEditors/FlatCAMGrbEditor.py:3235 -#: flatcamEditors/FlatCAMGrbEditor.py:3248 flatcamGUI/FlatCAMGUI.py:2373 -#: flatcamGUI/FlatCAMGUI.py:2385 +#: flatcamEditors/FlatCAMGrbEditor.py:1350 +#: flatcamEditors/FlatCAMGrbEditor.py:3318 +#: flatcamEditors/FlatCAMGrbEditor.py:3332 flatcamGUI/FlatCAMGUI.py:2397 +#: flatcamGUI/FlatCAMGUI.py:2409 msgid "[success] Done." msgstr "[success] Done." -#: FlatCAMApp.py:4670 +#: FlatCAMApp.py:4767 msgid "[success] Origin set ..." msgstr "[success] Origin set ..." -#: FlatCAMApp.py:4688 +#: FlatCAMApp.py:4786 msgid "Preferences" msgstr "Preferences" -#: FlatCAMApp.py:4708 +#: FlatCAMApp.py:4806 msgid "[WARNING_NOTCL] No object selected to Flip on Y axis." msgstr "[WARNING_NOTCL] No object selected to Flip on Y axis." -#: FlatCAMApp.py:4733 +#: FlatCAMApp.py:4831 msgid "[success] Flip on Y axis done." msgstr "[success] Flip on Y axis done." -#: FlatCAMApp.py:4735 FlatCAMApp.py:4775 +#: FlatCAMApp.py:4833 FlatCAMApp.py:4873 #: flatcamEditors/FlatCAMGeoEditor.py:1354 -#: flatcamEditors/FlatCAMGrbEditor.py:4533 flatcamTools/ToolTransform.py:750 +#: flatcamEditors/FlatCAMGrbEditor.py:4631 flatcamTools/ToolTransform.py:750 #, 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:4748 +#: FlatCAMApp.py:4846 msgid "[WARNING_NOTCL] No object selected to Flip on X axis." msgstr "[WARNING_NOTCL] No object selected to Flip on X axis." -#: FlatCAMApp.py:4773 +#: FlatCAMApp.py:4871 msgid "[success] Flip on X axis done." msgstr "[success] Flip on X axis done." -#: FlatCAMApp.py:4788 +#: FlatCAMApp.py:4886 msgid "[WARNING_NOTCL] No object selected to Rotate." msgstr "[WARNING_NOTCL] No object selected to Rotate." -#: FlatCAMApp.py:4791 FlatCAMApp.py:4836 FlatCAMApp.py:4867 +#: FlatCAMApp.py:4889 FlatCAMApp.py:4934 FlatCAMApp.py:4965 msgid "Transform" msgstr "Transform" -#: FlatCAMApp.py:4791 FlatCAMApp.py:4836 FlatCAMApp.py:4867 +#: FlatCAMApp.py:4889 FlatCAMApp.py:4934 FlatCAMApp.py:4965 msgid "Enter the Angle value:" msgstr "Enter the Angle value:" -#: FlatCAMApp.py:4821 +#: FlatCAMApp.py:4919 msgid "[success] Rotation done." msgstr "[success] Rotation done." -#: FlatCAMApp.py:4823 flatcamEditors/FlatCAMGeoEditor.py:1297 -#: flatcamEditors/FlatCAMGrbEditor.py:4476 flatcamTools/ToolTransform.py:678 +#: FlatCAMApp.py:4921 flatcamEditors/FlatCAMGeoEditor.py:1297 +#: flatcamEditors/FlatCAMGrbEditor.py:4574 flatcamTools/ToolTransform.py:678 #, 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:4834 +#: FlatCAMApp.py:4932 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:4855 +#: FlatCAMApp.py:4953 msgid "[success] Skew on X axis done." msgstr "[success] Skew on X axis done." -#: FlatCAMApp.py:4865 +#: FlatCAMApp.py:4963 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:4886 +#: FlatCAMApp.py:4984 msgid "[success] Skew on Y axis done." msgstr "[success] Skew on Y axis done." -#: FlatCAMApp.py:4982 FlatCAMApp.py:5009 +#: FlatCAMApp.py:5059 flatcamEditors/FlatCAMGeoEditor.py:936 +#: flatcamEditors/FlatCAMGrbEditor.py:1830 +#: flatcamEditors/FlatCAMGrbEditor.py:4204 flatcamGUI/ObjectUI.py:988 +#: flatcamTools/ToolDblSided.py:160 flatcamTools/ToolDblSided.py:208 +#: flatcamTools/ToolNonCopperClear.py:134 flatcamTools/ToolPaint.py:131 +#: flatcamTools/ToolSolderPaste.py:115 flatcamTools/ToolSolderPaste.py:479 +#: flatcamTools/ToolTransform.py:337 +msgid "Add" +msgstr "Add" + +#: FlatCAMApp.py:5060 FlatCAMObj.py:3008 +#: flatcamEditors/FlatCAMGrbEditor.py:1835 flatcamGUI/FlatCAMGUI.py:519 +#: flatcamGUI/FlatCAMGUI.py:713 flatcamGUI/FlatCAMGUI.py:1602 +#: flatcamGUI/FlatCAMGUI.py:1934 flatcamGUI/ObjectUI.py:1004 +#: flatcamTools/ToolNonCopperClear.py:146 flatcamTools/ToolPaint.py:143 +#: flatcamTools/ToolSolderPaste.py:121 flatcamTools/ToolSolderPaste.py:481 +msgid "Delete" +msgstr "Delete" + +#: FlatCAMApp.py:5072 +#| msgid "New Script ..." +msgid "New Grid ..." +msgstr "New Grid ..." + +#: FlatCAMApp.py:5073 +#| msgid "Enter a distance Value (%s):" +msgid "Enter a Grid Value:" +msgstr "Enter a Grid Value:" + +#: FlatCAMApp.py:5081 FlatCAMApp.py:5108 msgid "" "[WARNING_NOTCL] Please enter a grid value with non-zero value, in Float " "format." @@ -438,48 +467,48 @@ msgstr "" "[WARNING_NOTCL] Please enter a grid value with non-zero value, in Float " "format." -#: FlatCAMApp.py:4988 +#: FlatCAMApp.py:5087 msgid "[success] New Grid added ..." msgstr "[success] New Grid added ..." -#: FlatCAMApp.py:4991 +#: FlatCAMApp.py:5090 msgid "[WARNING_NOTCL] Grid already exists ..." msgstr "[WARNING_NOTCL] Grid already exists ..." -#: FlatCAMApp.py:4994 +#: FlatCAMApp.py:5093 msgid "[WARNING_NOTCL] Adding New Grid cancelled ..." msgstr "[WARNING_NOTCL] Adding New Grid cancelled ..." -#: FlatCAMApp.py:5016 +#: FlatCAMApp.py:5115 msgid "[ERROR_NOTCL] Grid Value does not exist ..." msgstr "[ERROR_NOTCL] Grid Value does not exist ..." -#: FlatCAMApp.py:5019 +#: FlatCAMApp.py:5118 msgid "[success] Grid Value deleted ..." msgstr "[success] Grid Value deleted ..." -#: FlatCAMApp.py:5022 +#: FlatCAMApp.py:5121 msgid "[WARNING_NOTCL] Delete Grid value cancelled ..." msgstr "[WARNING_NOTCL] Delete Grid value cancelled ..." -#: FlatCAMApp.py:5061 +#: FlatCAMApp.py:5160 msgid "[WARNING_NOTCL] No object selected to copy it's name" msgstr "[WARNING_NOTCL] No object selected to copy it's name" -#: FlatCAMApp.py:5065 +#: FlatCAMApp.py:5164 msgid "Name copied on clipboard ..." msgstr "Name copied on clipboard ..." -#: FlatCAMApp.py:5357 FlatCAMApp.py:5360 FlatCAMApp.py:5363 FlatCAMApp.py:5366 -#: FlatCAMApp.py:5380 FlatCAMApp.py:5383 FlatCAMApp.py:5386 FlatCAMApp.py:5389 -#: FlatCAMApp.py:5428 FlatCAMApp.py:5431 FlatCAMApp.py:5434 FlatCAMApp.py:5437 -#: ObjectCollection.py:711 ObjectCollection.py:714 ObjectCollection.py:717 -#: ObjectCollection.py:720 +#: FlatCAMApp.py:5457 FlatCAMApp.py:5460 FlatCAMApp.py:5463 FlatCAMApp.py:5466 +#: FlatCAMApp.py:5481 FlatCAMApp.py:5484 FlatCAMApp.py:5487 FlatCAMApp.py:5490 +#: FlatCAMApp.py:5530 FlatCAMApp.py:5533 FlatCAMApp.py:5536 FlatCAMApp.py:5539 +#: ObjectCollection.py:717 ObjectCollection.py:720 ObjectCollection.py:723 +#: ObjectCollection.py:726 #, python-brace-format msgid "[selected]{name} selected" msgstr "[selected]{name} selected" -#: FlatCAMApp.py:5554 +#: FlatCAMApp.py:5656 msgid "" "There are files/objects opened in FlatCAM.\n" "Creating a New project will delete them.\n" @@ -489,106 +518,106 @@ msgstr "" "Creating a New project will delete them.\n" "Do you want to Save the project?" -#: FlatCAMApp.py:5575 +#: FlatCAMApp.py:5677 msgid "[success] New Project created..." msgstr "[success] New Project created..." -#: FlatCAMApp.py:5683 FlatCAMApp.py:5686 flatcamGUI/FlatCAMGUI.py:600 -#: flatcamGUI/FlatCAMGUI.py:1806 +#: FlatCAMApp.py:5785 FlatCAMApp.py:5788 flatcamGUI/FlatCAMGUI.py:600 +#: flatcamGUI/FlatCAMGUI.py:1817 msgid "Open Gerber" msgstr "Open Gerber" -#: FlatCAMApp.py:5691 +#: FlatCAMApp.py:5793 msgid "[WARNING_NOTCL] Open Gerber cancelled." msgstr "[WARNING_NOTCL] Open Gerber cancelled." -#: FlatCAMApp.py:5712 FlatCAMApp.py:5715 flatcamGUI/FlatCAMGUI.py:601 -#: flatcamGUI/FlatCAMGUI.py:1807 +#: FlatCAMApp.py:5814 FlatCAMApp.py:5817 flatcamGUI/FlatCAMGUI.py:601 +#: flatcamGUI/FlatCAMGUI.py:1818 msgid "Open Excellon" msgstr "Open Excellon" -#: FlatCAMApp.py:5720 +#: FlatCAMApp.py:5822 msgid "[WARNING_NOTCL] Open Excellon cancelled." msgstr "[WARNING_NOTCL] Open Excellon cancelled." -#: FlatCAMApp.py:5742 FlatCAMApp.py:5745 +#: FlatCAMApp.py:5844 FlatCAMApp.py:5847 msgid "Open G-Code" msgstr "Open G-Code" -#: FlatCAMApp.py:5750 +#: FlatCAMApp.py:5852 msgid "[WARNING_NOTCL] Open G-Code cancelled." msgstr "[WARNING_NOTCL] Open G-Code cancelled." -#: FlatCAMApp.py:5768 FlatCAMApp.py:5771 +#: FlatCAMApp.py:5870 FlatCAMApp.py:5873 msgid "Open Project" msgstr "Open Project" -#: FlatCAMApp.py:5779 +#: FlatCAMApp.py:5881 msgid "[WARNING_NOTCL] Open Project cancelled." msgstr "[WARNING_NOTCL] Open Project cancelled." -#: FlatCAMApp.py:5798 FlatCAMApp.py:5801 +#: FlatCAMApp.py:5900 FlatCAMApp.py:5903 msgid "Open Configuration File" msgstr "Open Configuration File" -#: FlatCAMApp.py:5805 +#: FlatCAMApp.py:5907 msgid "[WARNING_NOTCL Open Config cancelled." msgstr "[WARNING_NOTCL Open Config cancelled." -#: FlatCAMApp.py:5820 FlatCAMApp.py:6017 FlatCAMApp.py:8103 FlatCAMApp.py:8123 -#: FlatCAMApp.py:8144 FlatCAMApp.py:8166 +#: FlatCAMApp.py:5922 FlatCAMApp.py:6119 FlatCAMApp.py:8206 FlatCAMApp.py:8226 +#: FlatCAMApp.py:8247 FlatCAMApp.py:8269 msgid "[WARNING_NOTCL] No object selected." msgstr "[WARNING_NOTCL] No object selected." -#: FlatCAMApp.py:5821 FlatCAMApp.py:6018 +#: FlatCAMApp.py:5923 FlatCAMApp.py:6120 msgid "Please Select a Geometry object to export" msgstr "Please Select a Geometry object to export" -#: FlatCAMApp.py:5832 +#: FlatCAMApp.py:5934 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:5845 FlatCAMApp.py:5849 +#: FlatCAMApp.py:5947 FlatCAMApp.py:5951 msgid "Export SVG" msgstr "Export SVG" -#: FlatCAMApp.py:5854 +#: FlatCAMApp.py:5956 msgid "[WARNING_NOTCL] Export SVG cancelled." msgstr "[WARNING_NOTCL] Export SVG cancelled." -#: FlatCAMApp.py:5868 +#: FlatCAMApp.py:5970 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:5874 FlatCAMApp.py:5878 +#: FlatCAMApp.py:5976 FlatCAMApp.py:5980 msgid "Export PNG Image" msgstr "Export PNG Image" -#: FlatCAMApp.py:5883 +#: FlatCAMApp.py:5985 msgid "Export PNG cancelled." msgstr "Export PNG cancelled." -#: FlatCAMApp.py:5900 +#: FlatCAMApp.py:6002 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:5905 +#: FlatCAMApp.py:6007 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:5917 +#: FlatCAMApp.py:6019 msgid "Save Gerber source file" msgstr "Save Gerber source file" -#: FlatCAMApp.py:5922 +#: FlatCAMApp.py:6024 msgid "[WARNING_NOTCL] Save Gerber source file cancelled." msgstr "[WARNING_NOTCL] Save Gerber source file cancelled." -#: FlatCAMApp.py:5939 +#: FlatCAMApp.py:6041 msgid "" "[WARNING_NOTCL] No object selected. Please select an Excellon object to " "export." @@ -596,21 +625,21 @@ msgstr "" "[WARNING_NOTCL] No object selected. Please select an Excellon object to " "export." -#: FlatCAMApp.py:5944 FlatCAMApp.py:5983 +#: FlatCAMApp.py:6046 FlatCAMApp.py:6085 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:5952 FlatCAMApp.py:5956 +#: FlatCAMApp.py:6054 FlatCAMApp.py:6058 msgid "Save Excellon source file" msgstr "Save Excellon source file" -#: FlatCAMApp.py:5961 +#: FlatCAMApp.py:6063 msgid "[WARNING_NOTCL] Saving Excellon source file cancelled." msgstr "[WARNING_NOTCL] Saving Excellon source file cancelled." -#: FlatCAMApp.py:5978 +#: FlatCAMApp.py:6080 msgid "" "[WARNING_NOTCL] No object selected. Please Select an Excellon object to " "export." @@ -618,54 +647,54 @@ msgstr "" "[WARNING_NOTCL] No object selected. Please Select an Excellon object to " "export." -#: FlatCAMApp.py:5991 FlatCAMApp.py:5995 +#: FlatCAMApp.py:6093 FlatCAMApp.py:6097 msgid "Export Excellon" msgstr "Export Excellon" -#: FlatCAMApp.py:6000 +#: FlatCAMApp.py:6102 msgid "[WARNING_NOTCL] Export Excellon cancelled." msgstr "[WARNING_NOTCL] Export Excellon cancelled." -#: FlatCAMApp.py:6028 +#: FlatCAMApp.py:6130 msgid "[ERROR_NOTCL] Only Geometry objects can be used." msgstr "[ERROR_NOTCL] Only Geometry objects can be used." -#: FlatCAMApp.py:6042 FlatCAMApp.py:6046 +#: FlatCAMApp.py:6144 FlatCAMApp.py:6148 msgid "Export DXF" msgstr "Export DXF" -#: FlatCAMApp.py:6051 +#: FlatCAMApp.py:6153 msgid "[WARNING_NOTCL] Export DXF cancelled." msgstr "[WARNING_NOTCL] Export DXF cancelled." -#: FlatCAMApp.py:6069 FlatCAMApp.py:6072 +#: FlatCAMApp.py:6171 FlatCAMApp.py:6174 msgid "Import SVG" msgstr "Import SVG" -#: FlatCAMApp.py:6080 +#: FlatCAMApp.py:6182 msgid "[WARNING_NOTCL] Open SVG cancelled." msgstr "[WARNING_NOTCL] Open SVG cancelled." -#: FlatCAMApp.py:6099 FlatCAMApp.py:6102 +#: FlatCAMApp.py:6201 FlatCAMApp.py:6204 msgid "Import DXF" msgstr "Import DXF" -#: FlatCAMApp.py:6110 +#: FlatCAMApp.py:6212 msgid "[WARNING_NOTCL] Open DXF cancelled." msgstr "[WARNING_NOTCL] Open DXF cancelled." -#: FlatCAMApp.py:6128 +#: FlatCAMApp.py:6230 #, python-format msgid "%s" msgstr "%s" -#: FlatCAMApp.py:6148 +#: FlatCAMApp.py:6250 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:6155 +#: FlatCAMApp.py:6257 msgid "" "[WARNING_NOTCL] There is no selected object for which to see it's source " "file code." @@ -673,24 +702,24 @@ msgstr "" "[WARNING_NOTCL] There is no selected object for which to see it's source " "file code." -#: FlatCAMApp.py:6163 +#: FlatCAMApp.py:6265 msgid "Source Editor" msgstr "Source Editor" -#: FlatCAMApp.py:6173 +#: FlatCAMApp.py:6275 #, python-format msgid "[ERROR]App.on_view_source() -->%s" msgstr "[ERROR]App.on_view_source() -->%s" -#: FlatCAMApp.py:6185 FlatCAMApp.py:7206 FlatCAMObj.py:5259 +#: FlatCAMApp.py:6287 FlatCAMApp.py:7308 FlatCAMObj.py:5266 msgid "Code Editor" msgstr "Code Editor" -#: FlatCAMApp.py:6197 +#: FlatCAMApp.py:6299 msgid "Script Editor" msgstr "Script Editor" -#: FlatCAMApp.py:6200 +#: FlatCAMApp.py:6302 msgid "" "#\n" "# CREATE A NEW FLATCAM TCL SCRIPT\n" @@ -734,85 +763,85 @@ msgstr "" "#\n" "\n" -#: FlatCAMApp.py:6223 FlatCAMApp.py:6226 +#: FlatCAMApp.py:6325 FlatCAMApp.py:6328 msgid "Open TCL script" msgstr "Open TCL script" -#: FlatCAMApp.py:6234 +#: FlatCAMApp.py:6336 msgid "[WARNING_NOTCL] Open TCL script cancelled." msgstr "[WARNING_NOTCL] Open TCL script cancelled." -#: FlatCAMApp.py:6246 +#: FlatCAMApp.py:6348 #, python-format msgid "[ERROR]App.on_fileopenscript() -->%s" msgstr "[ERROR]App.on_fileopenscript() -->%s" -#: FlatCAMApp.py:6272 FlatCAMApp.py:6275 +#: FlatCAMApp.py:6374 FlatCAMApp.py:6377 msgid "Run TCL script" msgstr "Run TCL script" -#: FlatCAMApp.py:6283 +#: FlatCAMApp.py:6385 msgid "[WARNING_NOTCL] Run TCL script cancelled." msgstr "[WARNING_NOTCL] Run TCL script cancelled." -#: FlatCAMApp.py:6329 FlatCAMApp.py:6333 +#: FlatCAMApp.py:6431 FlatCAMApp.py:6435 msgid "Save Project As ..." msgstr "Save Project As ..." -#: FlatCAMApp.py:6330 +#: FlatCAMApp.py:6432 #, python-brace-format msgid "{l_save}/Project_{date}" msgstr "{l_save}/Project_{date}" -#: FlatCAMApp.py:6338 +#: FlatCAMApp.py:6440 msgid "[WARNING_NOTCL] Save Project cancelled." msgstr "[WARNING_NOTCL] Save Project cancelled." -#: FlatCAMApp.py:6383 +#: FlatCAMApp.py:6485 msgid "Exporting SVG" msgstr "Exporting SVG" -#: FlatCAMApp.py:6416 FlatCAMApp.py:6521 FlatCAMApp.py:6635 +#: FlatCAMApp.py:6518 FlatCAMApp.py:6623 FlatCAMApp.py:6737 #, python-format msgid "[success] SVG file exported to %s" msgstr "[success] SVG file exported to %s" -#: FlatCAMApp.py:6447 FlatCAMApp.py:6567 +#: FlatCAMApp.py:6549 FlatCAMApp.py:6669 #, python-format msgid "[WARNING_NOTCL] No object Box. Using instead %s" msgstr "[WARNING_NOTCL] No object Box. Using instead %s" -#: FlatCAMApp.py:6524 FlatCAMApp.py:6638 +#: FlatCAMApp.py:6626 FlatCAMApp.py:6740 msgid "Generating Film ... Please wait." msgstr "Generating Film ... Please wait." -#: FlatCAMApp.py:6785 +#: FlatCAMApp.py:6887 #, python-format msgid "[success] Excellon file exported to %s" msgstr "[success] Excellon file exported to %s" -#: FlatCAMApp.py:6792 +#: FlatCAMApp.py:6894 msgid "Exporting Excellon" msgstr "Exporting Excellon" -#: FlatCAMApp.py:6797 FlatCAMApp.py:6804 +#: FlatCAMApp.py:6899 FlatCAMApp.py:6906 msgid "[ERROR_NOTCL] Could not export Excellon file." msgstr "[ERROR_NOTCL] Could not export Excellon file." -#: FlatCAMApp.py:6843 +#: FlatCAMApp.py:6945 #, python-format msgid "[success] DXF file exported to %s" msgstr "[success] DXF file exported to %s" -#: FlatCAMApp.py:6849 +#: FlatCAMApp.py:6951 msgid "Exporting DXF" msgstr "Exporting DXF" -#: FlatCAMApp.py:6854 FlatCAMApp.py:6861 +#: FlatCAMApp.py:6956 FlatCAMApp.py:6963 msgid "[[WARNING_NOTCL]] Could not export DXF file." msgstr "[[WARNING_NOTCL]] Could not export DXF file." -#: FlatCAMApp.py:6881 FlatCAMApp.py:6923 FlatCAMApp.py:6964 +#: FlatCAMApp.py:6983 FlatCAMApp.py:7025 FlatCAMApp.py:7066 msgid "" "[ERROR_NOTCL] Not supported type is picked as parameter. Only Geometry and " "Gerber are supported" @@ -820,96 +849,96 @@ msgstr "" "[ERROR_NOTCL] Not supported type is picked as parameter. Only Geometry and " "Gerber are supported" -#: FlatCAMApp.py:6891 +#: FlatCAMApp.py:6993 msgid "Importing SVG" msgstr "Importing SVG" -#: FlatCAMApp.py:6902 FlatCAMApp.py:6944 FlatCAMApp.py:6984 FlatCAMApp.py:7060 -#: FlatCAMApp.py:7127 FlatCAMApp.py:7192 flatcamTools/ToolPDF.py:275 +#: FlatCAMApp.py:7004 FlatCAMApp.py:7046 FlatCAMApp.py:7086 FlatCAMApp.py:7162 +#: FlatCAMApp.py:7229 FlatCAMApp.py:7294 flatcamTools/ToolPDF.py:212 #, python-format msgid "[success] Opened: %s" msgstr "[success] Opened: %s" -#: FlatCAMApp.py:6933 +#: FlatCAMApp.py:7035 msgid "Importing DXF" msgstr "Importing DXF" -#: FlatCAMApp.py:6972 +#: FlatCAMApp.py:7074 msgid "Importing Image" msgstr "Importing Image" -#: FlatCAMApp.py:7013 FlatCAMApp.py:7015 +#: FlatCAMApp.py:7115 FlatCAMApp.py:7117 #, python-format msgid "[ERROR_NOTCL] Failed to open file: %s" msgstr "[ERROR_NOTCL] Failed to open file: %s" -#: FlatCAMApp.py:7018 +#: FlatCAMApp.py:7120 #, python-brace-format msgid "[ERROR_NOTCL] Failed to parse file: {name}. {error}" msgstr "[ERROR_NOTCL] Failed to parse file: {name}. {error}" -#: FlatCAMApp.py:7024 FlatCAMObj.py:3963 -#: flatcamEditors/FlatCAMExcEditor.py:1977 -#: flatcamEditors/FlatCAMGrbEditor.py:3018 +#: FlatCAMApp.py:7126 FlatCAMObj.py:3970 +#: flatcamEditors/FlatCAMExcEditor.py:2035 +#: flatcamEditors/FlatCAMGrbEditor.py:3098 msgid "[ERROR] An internal error has ocurred. See shell.\n" msgstr "[ERROR] An internal error has ocurred. See shell.\n" -#: FlatCAMApp.py:7033 +#: FlatCAMApp.py:7135 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:7041 +#: FlatCAMApp.py:7143 msgid "Opening Gerber" msgstr "Opening Gerber" -#: FlatCAMApp.py:7051 +#: FlatCAMApp.py:7153 msgid "[ERROR_NOTCL] Open Gerber failed. Probable not a Gerber file." msgstr "[ERROR_NOTCL] Open Gerber failed. Probable not a Gerber file." -#: FlatCAMApp.py:7086 flatcamTools/ToolPcbWizard.py:421 +#: FlatCAMApp.py:7188 flatcamTools/ToolPcbWizard.py:421 msgid "[ERROR_NOTCL] This is not Excellon file." msgstr "[ERROR_NOTCL] This is not Excellon file." -#: FlatCAMApp.py:7089 +#: FlatCAMApp.py:7191 #, python-format msgid "[ERROR_NOTCL] Cannot open file: %s" msgstr "[ERROR_NOTCL] Cannot open file: %s" -#: FlatCAMApp.py:7094 flatcamTools/ToolPcbWizard.py:429 +#: FlatCAMApp.py:7196 flatcamTools/ToolPcbWizard.py:429 msgid "[ERROR_NOTCL] An internal error has occurred. See shell.\n" msgstr "[ERROR_NOTCL] An internal error has occurred. See shell.\n" -#: FlatCAMApp.py:7110 flatcamTools/ToolPDF.py:238 +#: FlatCAMApp.py:7212 flatcamTools/ToolPDF.py:261 #: flatcamTools/ToolPcbWizard.py:442 #, python-format msgid "[ERROR_NOTCL] No geometry found in file: %s" msgstr "[ERROR_NOTCL] No geometry found in file: %s" -#: FlatCAMApp.py:7113 +#: FlatCAMApp.py:7215 msgid "Opening Excellon." msgstr "Opening Excellon." -#: FlatCAMApp.py:7120 +#: FlatCAMApp.py:7222 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:7159 +#: FlatCAMApp.py:7261 #, python-format msgid "[ERROR_NOTCL] Failed to open %s" msgstr "[ERROR_NOTCL] Failed to open %s" -#: FlatCAMApp.py:7169 +#: FlatCAMApp.py:7271 msgid "[ERROR_NOTCL] This is not GCODE" msgstr "[ERROR_NOTCL] This is not GCODE" -#: FlatCAMApp.py:7175 +#: FlatCAMApp.py:7277 msgid "Opening G-Code." msgstr "Opening G-Code." -#: FlatCAMApp.py:7183 +#: FlatCAMApp.py:7285 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 " @@ -919,26 +948,26 @@ msgstr "" " Attempting to create a FlatCAM CNCJob Object from G-Code file failed during " "processing" -#: FlatCAMApp.py:7223 +#: FlatCAMApp.py:7325 #, python-format msgid "[ERROR_NOTCL] Failed to open config file: %s" msgstr "[ERROR_NOTCL] Failed to open config file: %s" -#: FlatCAMApp.py:7248 FlatCAMApp.py:7264 +#: FlatCAMApp.py:7350 FlatCAMApp.py:7366 #, python-format msgid "[ERROR_NOTCL] Failed to open project file: %s" msgstr "[ERROR_NOTCL] Failed to open project file: %s" -#: FlatCAMApp.py:7290 +#: FlatCAMApp.py:7392 #, python-format msgid "[success] Project loaded from: %s" msgstr "[success] Project loaded from: %s" -#: FlatCAMApp.py:7420 +#: FlatCAMApp.py:7522 msgid "Available commands:\n" msgstr "Available commands:\n" -#: FlatCAMApp.py:7422 +#: FlatCAMApp.py:7524 msgid "" "\n" "\n" @@ -950,23 +979,23 @@ msgstr "" "Type help for usage.\n" " Example: help open_gerber" -#: FlatCAMApp.py:7570 +#: FlatCAMApp.py:7672 msgid "Shows list of commands." msgstr "Shows list of commands." -#: FlatCAMApp.py:7626 +#: FlatCAMApp.py:7729 msgid "[ERROR_NOTCL] Failed to load recent item list." msgstr "[ERROR_NOTCL] Failed to load recent item list." -#: FlatCAMApp.py:7633 +#: FlatCAMApp.py:7736 msgid "[ERROR_NOTCL] Failed to parse recent item list." msgstr "[ERROR_NOTCL] Failed to parse recent item list." -#: FlatCAMApp.py:7694 flatcamGUI/FlatCAMGUI.py:941 +#: FlatCAMApp.py:7797 flatcamGUI/FlatCAMGUI.py:957 msgid "Shortcut Key List" msgstr "Shortcut Key List" -#: FlatCAMApp.py:7701 +#: FlatCAMApp.py:7804 msgid "" "\n" "

Selected Tab - Choose an Item from " @@ -1062,23 +1091,23 @@ msgstr "" "\n" " " -#: FlatCAMApp.py:7805 +#: FlatCAMApp.py:7908 msgid "[WARNING_NOTCL] Failed checking for latest version. Could not connect." msgstr "[WARNING_NOTCL] Failed checking for latest version. Could not connect." -#: FlatCAMApp.py:7812 +#: FlatCAMApp.py:7915 msgid "[ERROR_NOTCL] Could not parse information about latest version." msgstr "[ERROR_NOTCL] Could not parse information about latest version." -#: FlatCAMApp.py:7822 +#: FlatCAMApp.py:7925 msgid "[success] FlatCAM is up to date!" msgstr "[success] FlatCAM is up to date!" -#: FlatCAMApp.py:7827 +#: FlatCAMApp.py:7930 msgid "Newer Version Available" msgstr "Newer Version Available" -#: FlatCAMApp.py:7828 +#: FlatCAMApp.py:7931 msgid "" "There is a newer version of FlatCAM available for download:\n" "\n" @@ -1086,80 +1115,80 @@ msgstr "" "There is a newer version of FlatCAM available for download:\n" "\n" -#: FlatCAMApp.py:7830 +#: FlatCAMApp.py:7933 msgid "info" msgstr "info" -#: FlatCAMApp.py:7849 +#: FlatCAMApp.py:7952 msgid "[success] All plots disabled." msgstr "[success] All plots disabled." -#: FlatCAMApp.py:7855 +#: FlatCAMApp.py:7958 msgid "[success] All non selected plots disabled." msgstr "[success] All non selected plots disabled." -#: FlatCAMApp.py:7861 +#: FlatCAMApp.py:7964 msgid "[success] All plots enabled." msgstr "[success] All plots enabled." -#: FlatCAMApp.py:7972 +#: FlatCAMApp.py:8075 msgid "Saving FlatCAM Project" msgstr "Saving FlatCAM Project" -#: FlatCAMApp.py:7993 FlatCAMApp.py:8024 +#: FlatCAMApp.py:8096 FlatCAMApp.py:8127 #, python-format msgid "[success] Project saved to: %s" msgstr "[success] Project saved to: %s" -#: FlatCAMApp.py:8011 +#: FlatCAMApp.py:8114 #, 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:8018 +#: FlatCAMApp.py:8121 #, 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:8026 +#: FlatCAMApp.py:8129 #, 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." -#: FlatCAMObj.py:194 +#: FlatCAMObj.py:195 #, python-brace-format msgid "[success] Name changed from {old} to {new}" msgstr "[success] Name changed from {old} to {new}" -#: FlatCAMObj.py:535 FlatCAMObj.py:1741 FlatCAMObj.py:3006 FlatCAMObj.py:5158 +#: FlatCAMObj.py:542 FlatCAMObj.py:1748 FlatCAMObj.py:3013 FlatCAMObj.py:5165 msgid "Basic" msgstr "Basic" -#: FlatCAMObj.py:547 FlatCAMObj.py:1757 FlatCAMObj.py:3028 FlatCAMObj.py:5164 +#: FlatCAMObj.py:554 FlatCAMObj.py:1764 FlatCAMObj.py:3035 FlatCAMObj.py:5171 msgid "Advanced" msgstr "Advanced" -#: FlatCAMObj.py:902 FlatCAMObj.py:957 +#: FlatCAMObj.py:909 FlatCAMObj.py:964 #, python-format msgid "[success] Isolation geometry created: %s" msgstr "[success] Isolation geometry created: %s" -#: FlatCAMObj.py:1126 +#: FlatCAMObj.py:1133 msgid "Plotting Apertures" msgstr "Plotting Apertures" -#: FlatCAMObj.py:1580 flatcamEditors/FlatCAMExcEditor.py:1327 +#: FlatCAMObj.py:1587 flatcamEditors/FlatCAMExcEditor.py:1327 msgid "Total Drills" msgstr "Total Drills" -#: FlatCAMObj.py:1606 flatcamEditors/FlatCAMExcEditor.py:1359 +#: FlatCAMObj.py:1613 flatcamEditors/FlatCAMExcEditor.py:1359 msgid "Total Slots" msgstr "Total Slots" -#: FlatCAMObj.py:1813 FlatCAMObj.py:3079 FlatCAMObj.py:3386 FlatCAMObj.py:3573 -#: FlatCAMObj.py:3586 FlatCAMObj.py:3703 FlatCAMObj.py:4111 FlatCAMObj.py:4344 -#: FlatCAMObj.py:4750 flatcamEditors/FlatCAMExcEditor.py:1434 +#: FlatCAMObj.py:1820 FlatCAMObj.py:3086 FlatCAMObj.py:3393 FlatCAMObj.py:3580 +#: FlatCAMObj.py:3593 FlatCAMObj.py:3710 FlatCAMObj.py:4118 FlatCAMObj.py:4351 +#: FlatCAMObj.py:4757 flatcamEditors/FlatCAMExcEditor.py:1434 #: flatcamTools/ToolCalculators.py:307 flatcamTools/ToolCalculators.py:318 #: flatcamTools/ToolCalculators.py:330 flatcamTools/ToolCalculators.py:345 #: flatcamTools/ToolCalculators.py:358 flatcamTools/ToolCalculators.py:372 @@ -1178,45 +1207,45 @@ msgstr "Total Slots" msgid "[ERROR_NOTCL] Wrong value format entered, use a number." msgstr "[ERROR_NOTCL] Wrong value format entered, use a number." -#: FlatCAMObj.py:2037 FlatCAMObj.py:2128 FlatCAMObj.py:2243 +#: FlatCAMObj.py:2044 FlatCAMObj.py:2135 FlatCAMObj.py:2250 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:2044 +#: FlatCAMObj.py:2051 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:2058 FlatCAMObj.py:2152 FlatCAMObj.py:2263 +#: FlatCAMObj.py:2065 FlatCAMObj.py:2159 FlatCAMObj.py:2270 msgid "Tool_nr" msgstr "Tool_nr" -#: FlatCAMObj.py:2058 FlatCAMObj.py:2152 FlatCAMObj.py:2263 +#: FlatCAMObj.py:2065 FlatCAMObj.py:2159 FlatCAMObj.py:2270 #: flatcamEditors/FlatCAMExcEditor.py:781 -#: flatcamEditors/FlatCAMExcEditor.py:1920 flatcamGUI/ObjectUI.py:556 +#: flatcamEditors/FlatCAMExcEditor.py:1978 flatcamGUI/ObjectUI.py:556 #: flatcamTools/ToolNonCopperClear.py:83 flatcamTools/ToolPaint.py:80 #: flatcamTools/ToolPcbWizard.py:78 flatcamTools/ToolSolderPaste.py:81 msgid "Diameter" msgstr "Diameter" -#: FlatCAMObj.py:2058 FlatCAMObj.py:2152 FlatCAMObj.py:2263 +#: FlatCAMObj.py:2065 FlatCAMObj.py:2159 FlatCAMObj.py:2270 msgid "Drills_Nr" msgstr "Drills_Nr" -#: FlatCAMObj.py:2058 FlatCAMObj.py:2152 FlatCAMObj.py:2263 +#: FlatCAMObj.py:2065 FlatCAMObj.py:2159 FlatCAMObj.py:2270 msgid "Slots_Nr" msgstr "Slots_Nr" -#: FlatCAMObj.py:2138 +#: FlatCAMObj.py:2145 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:2303 FlatCAMObj.py:3999 FlatCAMObj.py:4210 FlatCAMObj.py:4525 +#: FlatCAMObj.py:2310 FlatCAMObj.py:4006 FlatCAMObj.py:4217 FlatCAMObj.py:4532 msgid "" "[ERROR_NOTCL] Wrong value format for self.defaults[\"z_pdepth\"] or self." "options[\"z_pdepth\"]" @@ -1224,7 +1253,7 @@ msgstr "" "[ERROR_NOTCL] Wrong value format for self.defaults[\"z_pdepth\"] or self." "options[\"z_pdepth\"]" -#: FlatCAMObj.py:2315 FlatCAMObj.py:4011 FlatCAMObj.py:4222 FlatCAMObj.py:4537 +#: FlatCAMObj.py:2322 FlatCAMObj.py:4018 FlatCAMObj.py:4229 FlatCAMObj.py:4544 msgid "" "[ERROR_NOTCL] Wrong value format for self.defaults[\"feedrate_probe\"] or " "self.options[\"feedrate_probe\"]" @@ -1232,12 +1261,12 @@ msgstr "" "[ERROR_NOTCL] Wrong value format for self.defaults[\"feedrate_probe\"] or " "self.options[\"feedrate_probe\"]" -#: FlatCAMObj.py:2347 FlatCAMObj.py:4412 FlatCAMObj.py:4417 FlatCAMObj.py:4563 +#: FlatCAMObj.py:2354 FlatCAMObj.py:4419 FlatCAMObj.py:4424 FlatCAMObj.py:4570 msgid "Generating CNC Code" msgstr "Generating CNC Code" -#: FlatCAMObj.py:2373 FlatCAMObj.py:4709 camlib.py:5204 camlib.py:5653 -#: camlib.py:5924 +#: FlatCAMObj.py:2380 FlatCAMObj.py:4716 camlib.py:5214 camlib.py:5672 +#: camlib.py:5943 msgid "" "[ERROR]The Toolchange X,Y field in Edit -> Preferences has to be in the " "format (x, y) \n" @@ -1247,102 +1276,77 @@ msgstr "" "format (x, y) \n" "but now there is only one value, not two. " -#: FlatCAMObj.py:2720 FlatCAMObj.py:2962 FlatCAMObj.py:3249 -msgid "Path" -msgstr "Path" - -#: FlatCAMObj.py:2720 -msgid "In" -msgstr "In" - -#: FlatCAMObj.py:2720 -msgid "Out" -msgstr "Out" - -#: FlatCAMObj.py:2720 FlatCAMObj.py:3044 FlatCAMObj.py:3618 -msgid "Custom" -msgstr "Custom" - -#: FlatCAMObj.py:2721 FlatCAMObj.py:3629 FlatCAMObj.py:3630 FlatCAMObj.py:3639 +#: FlatCAMObj.py:2728 FlatCAMObj.py:3636 FlatCAMObj.py:3637 FlatCAMObj.py:3646 msgid "Iso" msgstr "Iso" -#: FlatCAMObj.py:2721 FlatCAMObj.py:2964 FlatCAMObj.py:3251 +#: FlatCAMObj.py:2728 FlatCAMObj.py:2971 FlatCAMObj.py:3258 msgid "Rough" msgstr "Rough" -#: FlatCAMObj.py:2721 +#: FlatCAMObj.py:2728 msgid "Finish" msgstr "Finish" -#: FlatCAMObj.py:2999 flatcamGUI/FlatCAMGUI.py:518 flatcamGUI/FlatCAMGUI.py:710 -#: flatcamGUI/FlatCAMGUI.py:1580 flatcamGUI/FlatCAMGUI.py:1590 -#: flatcamGUI/FlatCAMGUI.py:1914 flatcamGUI/ObjectUI.py:996 +#: FlatCAMObj.py:3006 flatcamGUI/FlatCAMGUI.py:518 flatcamGUI/FlatCAMGUI.py:711 +#: flatcamGUI/FlatCAMGUI.py:1601 flatcamGUI/FlatCAMGUI.py:1932 +#: flatcamGUI/ObjectUI.py:996 msgid "Copy" msgstr "Copy" -#: FlatCAMObj.py:3001 flatcamEditors/FlatCAMGrbEditor.py:1825 -#: flatcamGUI/FlatCAMGUI.py:519 flatcamGUI/FlatCAMGUI.py:712 -#: flatcamGUI/FlatCAMGUI.py:1581 flatcamGUI/FlatCAMGUI.py:1591 -#: flatcamGUI/FlatCAMGUI.py:1916 flatcamGUI/ObjectUI.py:1004 -#: flatcamTools/ToolNonCopperClear.py:146 flatcamTools/ToolPaint.py:143 -#: flatcamTools/ToolSolderPaste.py:121 flatcamTools/ToolSolderPaste.py:481 -msgid "Delete" -msgstr "Delete" - -#: FlatCAMObj.py:3221 +#: FlatCAMObj.py:3228 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:3296 +#: FlatCAMObj.py:3303 msgid "[success] Tool added in Tool Table." msgstr "[success] Tool added in Tool Table." -#: FlatCAMObj.py:3301 +#: FlatCAMObj.py:3308 msgid "[ERROR_NOTCL] Default Tool added. Wrong value format entered." msgstr "[ERROR_NOTCL] Default Tool added. Wrong value format entered." -#: FlatCAMObj.py:3331 FlatCAMObj.py:3341 +#: FlatCAMObj.py:3338 FlatCAMObj.py:3348 msgid "[WARNING_NOTCL] Failed. Select a tool to copy." msgstr "[WARNING_NOTCL] Failed. Select a tool to copy." -#: FlatCAMObj.py:3370 +#: FlatCAMObj.py:3377 msgid "[success] Tool was copied in Tool Table." msgstr "[success] Tool was copied in Tool Table." -#: FlatCAMObj.py:3403 +#: FlatCAMObj.py:3410 msgid "[success] Tool was edited in Tool Table." msgstr "[success] Tool was edited in Tool Table." -#: FlatCAMObj.py:3434 FlatCAMObj.py:3444 +#: FlatCAMObj.py:3441 FlatCAMObj.py:3451 msgid "[WARNING_NOTCL] Failed. Select a tool to delete." msgstr "[WARNING_NOTCL] Failed. Select a tool to delete." -#: FlatCAMObj.py:3468 +#: FlatCAMObj.py:3475 msgid "[success] Tool was deleted in Tool Table." msgstr "[success] Tool was deleted in Tool Table." -#: FlatCAMObj.py:3882 +#: FlatCAMObj.py:3889 #, python-format 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:3899 +#: FlatCAMObj.py:3906 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:3926 +#: FlatCAMObj.py:3933 msgid "[ERROR_NOTCL] Failed. No tool selected in the tool table ..." msgstr "[ERROR_NOTCL] Failed. No tool selected in the tool table ..." -#: FlatCAMObj.py:3964 +#: FlatCAMObj.py:3971 #, python-format msgid "FlatCAMObj.FlatCAMGeometry.mtool_gen_cncjob() --> %s" msgstr "FlatCAMObj.FlatCAMGeometry.mtool_gen_cncjob() --> %s" -#: FlatCAMObj.py:4120 FlatCAMObj.py:4353 +#: FlatCAMObj.py:4127 FlatCAMObj.py:4360 msgid "" "[WARNING] Tool Offset is selected in Tool Table but no value is provided.\n" "Add a Tool Offset or change the Offset Type." @@ -1350,20 +1354,20 @@ msgstr "" "[WARNING] Tool Offset is selected in Tool Table but no value is provided.\n" "Add a Tool Offset or change the Offset Type." -#: FlatCAMObj.py:4234 flatcamTools/ToolSolderPaste.py:1107 +#: FlatCAMObj.py:4241 flatcamTools/ToolSolderPaste.py:1107 #: flatcamTools/ToolSolderPaste.py:1162 msgid "[ERROR_NOTCL] Cancelled. Empty file, it has no geometry..." msgstr "[ERROR_NOTCL] Cancelled. Empty file, it has no geometry..." -#: FlatCAMObj.py:4596 FlatCAMObj.py:4606 camlib.py:3426 camlib.py:3435 +#: FlatCAMObj.py:4603 FlatCAMObj.py:4613 camlib.py:3436 camlib.py:3445 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:4644 +#: FlatCAMObj.py:4651 msgid "[success] Geometry Scale done." msgstr "[success] Geometry Scale done." -#: FlatCAMObj.py:4661 camlib.py:3497 +#: FlatCAMObj.py:4668 camlib.py:3507 msgid "" "[ERROR_NOTCL] An (x,y) pair of values are needed. Probable you entered only " "one value in the Offset field." @@ -1371,29 +1375,29 @@ msgstr "" "[ERROR_NOTCL] An (x,y) pair of values are needed. Probable you entered only " "one value in the Offset field." -#: FlatCAMObj.py:4681 +#: FlatCAMObj.py:4688 msgid "[success] Geometry Offset done." msgstr "[success] Geometry Offset done." -#: FlatCAMObj.py:5226 FlatCAMObj.py:5231 flatcamTools/ToolSolderPaste.py:1361 +#: FlatCAMObj.py:5233 FlatCAMObj.py:5238 flatcamTools/ToolSolderPaste.py:1361 msgid "Export Machine Code ..." msgstr "Export Machine Code ..." -#: FlatCAMObj.py:5237 flatcamTools/ToolSolderPaste.py:1364 +#: FlatCAMObj.py:5244 flatcamTools/ToolSolderPaste.py:1364 msgid "[WARNING_NOTCL] Export Machine Code cancelled ..." msgstr "[WARNING_NOTCL] Export Machine Code cancelled ..." -#: FlatCAMObj.py:5248 +#: FlatCAMObj.py:5255 #, python-format msgid "[success] Machine Code file saved to: %s" msgstr "[success] Machine Code file saved to: %s" -#: FlatCAMObj.py:5270 +#: FlatCAMObj.py:5277 #, python-format msgid "[ERROR]FlatCAMCNNJob.on_edit_code_click() -->%s" msgstr "[ERROR]FlatCAMCNNJob.on_edit_code_click() -->%s" -#: FlatCAMObj.py:5387 +#: FlatCAMObj.py:5394 #, python-format msgid "" "[WARNING_NOTCL] This CNCJob object can't be processed because it is a %s " @@ -1402,11 +1406,11 @@ msgstr "" "[WARNING_NOTCL] This CNCJob object can't be processed because it is a %s " "CNCJob object." -#: FlatCAMObj.py:5440 +#: FlatCAMObj.py:5447 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:5453 +#: FlatCAMObj.py:5460 msgid "" "[ERROR_NOTCL] Cancelled. The Toolchange Custom code is enabled but it's " "empty." @@ -1414,15 +1418,15 @@ msgstr "" "[ERROR_NOTCL] Cancelled. The Toolchange Custom code is enabled but it's " "empty." -#: FlatCAMObj.py:5460 +#: FlatCAMObj.py:5467 msgid "[success] Toolchange G-code was replaced by a custom code." msgstr "[success] Toolchange G-code was replaced by a custom code." -#: FlatCAMObj.py:5475 flatcamTools/ToolSolderPaste.py:1390 +#: FlatCAMObj.py:5482 flatcamTools/ToolSolderPaste.py:1390 msgid "[WARNING_NOTCL] No such file or directory" msgstr "[WARNING_NOTCL] No such file or directory" -#: FlatCAMObj.py:5494 FlatCAMObj.py:5506 +#: FlatCAMObj.py:5501 FlatCAMObj.py:5513 msgid "" "[WARNING_NOTCL] The used postprocessor file has to have in it's name: " "'toolchange_custom'" @@ -1430,16 +1434,16 @@ msgstr "" "[WARNING_NOTCL] The used postprocessor file has to have in it's name: " "'toolchange_custom'" -#: FlatCAMObj.py:5512 +#: FlatCAMObj.py:5519 msgid "[ERROR] There is no postprocessor file." msgstr "[ERROR] There is no postprocessor file." -#: ObjectCollection.py:416 +#: ObjectCollection.py:419 #, python-brace-format -msgid "Object renamed from {old} to {new}" -msgstr "Object renamed from {old} to {new}" +msgid "Object renamed from {old} to {new}" +msgstr "Object renamed from {old} to {new}" -#: ObjectCollection.py:751 +#: ObjectCollection.py:757 #, python-format msgid "[ERROR] Cause of error: %s" msgstr "[ERROR] Cause of error: %s" @@ -1472,16 +1476,16 @@ msgstr "[success] Object was skewed ..." msgid "[ERROR_NOTCL] Failed to skew. No object selected" msgstr "[ERROR_NOTCL] Failed to skew. No object selected" -#: camlib.py:2733 camlib.py:2837 +#: camlib.py:2741 camlib.py:2847 #, python-format msgid "[WARNING] Coordinates missing, line ignored: %s" msgstr "[WARNING] Coordinates missing, line ignored: %s" -#: camlib.py:2734 camlib.py:2838 +#: camlib.py:2742 camlib.py:2848 msgid "[WARNING_NOTCL] GERBER file might be CORRUPT. Check the file !!!" msgstr "[WARNING_NOTCL] GERBER file might be CORRUPT. Check the file !!!" -#: camlib.py:2792 +#: camlib.py:2802 #, python-format msgid "" "[ERROR] Region does not have enough points. File will be processed but there " @@ -1490,7 +1494,7 @@ msgstr "" "[ERROR] Region does not have enough points. File will be processed but there " "are parser errors. Line number: %s" -#: camlib.py:3247 +#: camlib.py:3257 #, python-format msgid "" "[ERROR]Gerber Parser ERROR.\n" @@ -1499,20 +1503,20 @@ msgstr "" "[ERROR]Gerber Parser ERROR.\n" "%s:" -#: camlib.py:3464 +#: camlib.py:3474 msgid "[success] Gerber Scale done." msgstr "[success] Gerber Scale done." -#: camlib.py:3521 +#: camlib.py:3531 msgid "[success] Gerber Offset done." msgstr "[success] Gerber Offset done." -#: camlib.py:3915 +#: camlib.py:3925 #, python-format msgid "[ERROR_NOTCL] This is GCODE mark: %s" msgstr "[ERROR_NOTCL] This is GCODE mark: %s" -#: camlib.py:4029 +#: camlib.py:4039 #, python-format msgid "" "[WARNING] No tool diameter info's. See shell.\n" @@ -1529,7 +1533,7 @@ msgstr "" "The user needs to edit the resulting Excellon object and change the " "diameters to reflect the real diameters." -#: camlib.py:4494 +#: camlib.py:4504 #, python-brace-format msgid "" "[ERROR] Excellon Parser error.\n" @@ -1538,7 +1542,7 @@ msgstr "" "[ERROR] Excellon Parser error.\n" "Parsing Failed. Line {l_nr}: {line}\n" -#: camlib.py:4571 +#: camlib.py:4581 msgid "" "[WARNING] Excellon.create_geometry() -> a drill location was skipped due of " "not having a tool associated.\n" @@ -1548,12 +1552,12 @@ msgstr "" "not having a tool associated.\n" "Check the resulting GCode." -#: camlib.py:5113 +#: camlib.py:5123 #, python-format msgid "[ERROR] There is no such parameter: %s" msgstr "[ERROR] There is no such parameter: %s" -#: camlib.py:5183 +#: camlib.py:5193 msgid "" "[WARNING] The Cut Z parameter has positive value. It is the depth value to " "drill into material.\n" @@ -1567,22 +1571,22 @@ msgstr "" "therefore the app will convert the value to negative. Check the resulting " "CNC code (Gcode etc)." -#: camlib.py:5190 camlib.py:5676 camlib.py:5947 +#: camlib.py:5200 camlib.py:5695 camlib.py:5966 #, python-format msgid "" "[WARNING] The Cut Z parameter is zero. There will be no cut, skipping %s file" msgstr "" "[WARNING] The Cut Z parameter is zero. There will be no cut, skipping %s file" -#: camlib.py:5412 camlib.py:5507 camlib.py:5565 +#: camlib.py:5429 camlib.py:5526 camlib.py:5584 msgid "[ERROR_NOTCL] The loaded Excellon file has no drills ..." msgstr "[ERROR_NOTCL] The loaded Excellon file has no drills ..." -#: camlib.py:5512 +#: camlib.py:5531 msgid "[ERROR_NOTCL] Wrong optimization type selected." msgstr "[ERROR_NOTCL] Wrong optimization type selected." -#: camlib.py:5664 camlib.py:5935 +#: camlib.py:5683 camlib.py:5954 msgid "" "[ERROR_NOTCL] Cut_Z parameter is None or zero. Most likely a bad " "combinations of other parameters." @@ -1590,7 +1594,7 @@ msgstr "" "[ERROR_NOTCL] Cut_Z parameter is None or zero. Most likely a bad " "combinations of other parameters." -#: camlib.py:5669 camlib.py:5940 +#: camlib.py:5688 camlib.py:5959 msgid "" "[WARNING] The Cut Z parameter has positive value. It is the depth value to " "cut into material.\n" @@ -1604,11 +1608,11 @@ msgstr "" "therefore the app will convert the value to negative.Check the resulting CNC " "code (Gcode etc)." -#: camlib.py:5681 camlib.py:5952 +#: camlib.py:5700 camlib.py:5971 msgid "[ERROR_NOTCL] Travel Z parameter is None or zero." msgstr "[ERROR_NOTCL] Travel Z parameter is None or zero." -#: camlib.py:5685 camlib.py:5956 +#: camlib.py:5704 camlib.py:5975 msgid "" "[WARNING] The Travel Z parameter has negative value. It is the height value " "to travel between cuts.\n" @@ -1622,19 +1626,19 @@ msgstr "" "therefore the app will convert the value to positive.Check the resulting CNC " "code (Gcode etc)." -#: camlib.py:5692 camlib.py:5963 +#: camlib.py:5711 camlib.py:5982 #, python-format msgid "" "[WARNING] The Z Travel parameter is zero. This is dangerous, skipping %s file" msgstr "" "[WARNING] The Z Travel parameter is zero. This is dangerous, skipping %s file" -#: camlib.py:5822 +#: camlib.py:5841 #, python-format msgid "[ERROR]Expected a Geometry, got %s" msgstr "[ERROR]Expected a Geometry, got %s" -#: camlib.py:5828 +#: camlib.py:5847 msgid "" "[ERROR_NOTCL] Trying to generate a CNC Job from a Geometry object without " "solid_geometry." @@ -1642,7 +1646,7 @@ msgstr "" "[ERROR_NOTCL] Trying to generate a CNC Job from a Geometry object without " "solid_geometry." -#: camlib.py:5867 +#: camlib.py:5886 msgid "" "[ERROR_NOTCL] The Tool Offset value is too negative to use for the " "current_geometry.\n" @@ -1652,7 +1656,7 @@ msgstr "" "current_geometry.\n" "Raise the value (in module) and try again." -#: camlib.py:6089 +#: camlib.py:6108 msgid "[ERROR_NOTCL] There is no tool data in the SolderPaste geometry." msgstr "[ERROR_NOTCL] There is no tool data in the SolderPaste geometry." @@ -1664,8 +1668,8 @@ msgstr "[WARNING_NOTCL] To add a drill first select a tool" #: flatcamEditors/FlatCAMExcEditor.py:446 #: flatcamEditors/FlatCAMExcEditor.py:471 #: flatcamEditors/FlatCAMGrbEditor.py:287 -#: flatcamEditors/FlatCAMGrbEditor.py:1447 -#: flatcamEditors/FlatCAMGrbEditor.py:1471 +#: flatcamEditors/FlatCAMGrbEditor.py:1454 +#: flatcamEditors/FlatCAMGrbEditor.py:1478 msgid "Click on target location ..." msgstr "Click on target location ..." @@ -1723,7 +1727,7 @@ msgid "[WARNING_NOTCL] Cancelled. No drills selected for resize ..." msgstr "[WARNING_NOTCL] Cancelled. No drills selected for resize ..." #: flatcamEditors/FlatCAMExcEditor.py:448 -#: flatcamEditors/FlatCAMGrbEditor.py:1449 +#: flatcamEditors/FlatCAMGrbEditor.py:1456 msgid "Click on reference location ..." msgstr "Click on reference location ..." @@ -1740,7 +1744,7 @@ msgid "Excellon Editor" msgstr "Excellon Editor" #: flatcamEditors/FlatCAMExcEditor.py:761 -#: flatcamEditors/FlatCAMGrbEditor.py:1705 +#: flatcamEditors/FlatCAMGrbEditor.py:1715 msgid "Name:" msgstr "Name:" @@ -1825,7 +1829,7 @@ msgstr "Resize" msgid "Resize drill(s)" msgstr "Resize drill(s)" -#: flatcamEditors/FlatCAMExcEditor.py:885 flatcamGUI/FlatCAMGUI.py:1586 +#: flatcamEditors/FlatCAMExcEditor.py:885 flatcamGUI/FlatCAMGUI.py:1598 msgid "Add Drill Array" msgstr "Add Drill Array" @@ -1842,12 +1846,12 @@ msgstr "" "It can be Linear X(Y) or Circular" #: flatcamEditors/FlatCAMExcEditor.py:896 -#: flatcamEditors/FlatCAMGrbEditor.py:1938 +#: flatcamEditors/FlatCAMGrbEditor.py:1948 msgid "Linear" msgstr "Linear" #: flatcamEditors/FlatCAMExcEditor.py:897 -#: flatcamEditors/FlatCAMGrbEditor.py:1939 +#: flatcamEditors/FlatCAMGrbEditor.py:1949 msgid "Circular" msgstr "Circular" @@ -1861,13 +1865,13 @@ msgstr "Specify how many drills to be in the array." #: flatcamEditors/FlatCAMExcEditor.py:923 #: flatcamEditors/FlatCAMExcEditor.py:968 -#: flatcamEditors/FlatCAMGrbEditor.py:1965 -#: flatcamEditors/FlatCAMGrbEditor.py:2010 +#: flatcamEditors/FlatCAMGrbEditor.py:1975 +#: flatcamEditors/FlatCAMGrbEditor.py:2020 msgid "Direction:" msgstr "Direction:" #: flatcamEditors/FlatCAMExcEditor.py:925 -#: flatcamEditors/FlatCAMGrbEditor.py:1967 +#: flatcamEditors/FlatCAMGrbEditor.py:1977 msgid "" "Direction on which the linear array is oriented:\n" "- 'X' - horizontal axis \n" @@ -1879,32 +1883,27 @@ msgstr "" "- 'Y' - vertical axis or \n" "- 'Angle' - a custom angle for the array inclination" -#: flatcamEditors/FlatCAMExcEditor.py:934 -#: flatcamEditors/FlatCAMGrbEditor.py:1976 -msgid "Angle" -msgstr "Angle" - #: flatcamEditors/FlatCAMExcEditor.py:938 -#: flatcamEditors/FlatCAMGrbEditor.py:1980 +#: flatcamEditors/FlatCAMGrbEditor.py:1990 msgid "Pitch:" msgstr "Pitch:" #: flatcamEditors/FlatCAMExcEditor.py:940 -#: flatcamEditors/FlatCAMGrbEditor.py:1982 +#: flatcamEditors/FlatCAMGrbEditor.py:1992 msgid "Pitch = Distance between elements of the array." msgstr "Pitch = Distance between elements of the array." #: flatcamEditors/FlatCAMExcEditor.py:947 #: flatcamEditors/FlatCAMExcEditor.py:983 #: flatcamEditors/FlatCAMGeoEditor.py:664 -#: flatcamEditors/FlatCAMGrbEditor.py:1989 -#: flatcamEditors/FlatCAMGrbEditor.py:2025 -#: flatcamEditors/FlatCAMGrbEditor.py:3833 flatcamTools/ToolTransform.py:68 +#: flatcamEditors/FlatCAMGrbEditor.py:1999 +#: flatcamEditors/FlatCAMGrbEditor.py:2035 +#: flatcamEditors/FlatCAMGrbEditor.py:3931 flatcamTools/ToolTransform.py:68 msgid "Angle:" msgstr "Angle:" #: flatcamEditors/FlatCAMExcEditor.py:949 -#: flatcamEditors/FlatCAMGrbEditor.py:1991 +#: flatcamEditors/FlatCAMGrbEditor.py:2001 msgid "" "Angle at which the linear array is placed.\n" "The precision is of max 2 decimals.\n" @@ -1917,7 +1916,7 @@ msgstr "" "Max value is: 360.00 degrees." #: flatcamEditors/FlatCAMExcEditor.py:970 -#: flatcamEditors/FlatCAMGrbEditor.py:2012 +#: flatcamEditors/FlatCAMGrbEditor.py:2022 msgid "" "Direction for circular array.Can be CW = clockwise or CCW = counter " "clockwise." @@ -1926,7 +1925,7 @@ msgstr "" "clockwise." #: flatcamEditors/FlatCAMExcEditor.py:985 -#: flatcamEditors/FlatCAMGrbEditor.py:2027 +#: flatcamEditors/FlatCAMGrbEditor.py:2037 msgid "Angle at which each element in circular array is placed." msgstr "Angle at which each element in circular array is placed." @@ -1938,7 +1937,7 @@ msgstr "" "[WARNING_NOTCL] Tool already in the original or actual tool list.\n" "Save and reedit Excellon if you need to add this tool. " -#: flatcamEditors/FlatCAMExcEditor.py:1456 flatcamGUI/FlatCAMGUI.py:2956 +#: flatcamEditors/FlatCAMExcEditor.py:1456 flatcamGUI/FlatCAMGUI.py:2980 #, python-brace-format msgid "[success] Added new tool with dia: {dia} {units}" msgstr "[success] Added new tool with dia: {dia} {units}" @@ -1952,7 +1951,7 @@ msgstr "[WARNING_NOTCL] Select a tool in Tool Table" msgid "[success] Deleted tool with dia: {del_dia} {units}" msgstr "[success] Deleted tool with dia: {del_dia} {units}" -#: flatcamEditors/FlatCAMExcEditor.py:1974 +#: flatcamEditors/FlatCAMExcEditor.py:2032 msgid "" "[ERROR_NOTCL] There are no Tools definitions in the file. Aborting Excellon " "creation." @@ -1960,34 +1959,34 @@ msgstr "" "[ERROR_NOTCL] There are no Tools definitions in the file. Aborting Excellon " "creation." -#: flatcamEditors/FlatCAMExcEditor.py:1983 +#: flatcamEditors/FlatCAMExcEditor.py:2041 msgid "Creating Excellon." msgstr "Creating Excellon." -#: flatcamEditors/FlatCAMExcEditor.py:1992 +#: flatcamEditors/FlatCAMExcEditor.py:2050 msgid "[success] Excellon editing finished." msgstr "[success] Excellon editing finished." -#: flatcamEditors/FlatCAMExcEditor.py:2009 +#: flatcamEditors/FlatCAMExcEditor.py:2067 msgid "[WARNING_NOTCL] Cancelled. There is no Tool/Drill selected" msgstr "[WARNING_NOTCL] Cancelled. There is no Tool/Drill selected" -#: flatcamEditors/FlatCAMExcEditor.py:2508 +#: flatcamEditors/FlatCAMExcEditor.py:2572 msgid "[success] Done. Drill(s) deleted." msgstr "[success] Done. Drill(s) deleted." -#: flatcamEditors/FlatCAMExcEditor.py:2578 -#: flatcamEditors/FlatCAMGrbEditor.py:3621 +#: flatcamEditors/FlatCAMExcEditor.py:2642 +#: flatcamEditors/FlatCAMGrbEditor.py:3719 msgid "Click on the circular array Center position" msgstr "Click on the circular array Center position" #: flatcamEditors/FlatCAMGeoEditor.py:78 -#: flatcamEditors/FlatCAMGrbEditor.py:1855 +#: flatcamEditors/FlatCAMGrbEditor.py:1865 msgid "Buffer distance:" msgstr "Buffer distance:" #: flatcamEditors/FlatCAMGeoEditor.py:79 -#: flatcamEditors/FlatCAMGrbEditor.py:1856 +#: flatcamEditors/FlatCAMGrbEditor.py:1866 msgid "Buffer corner:" msgstr "Buffer corner:" @@ -2006,17 +2005,17 @@ msgstr "" "meeting in the corner" #: flatcamEditors/FlatCAMGeoEditor.py:87 -#: flatcamEditors/FlatCAMGrbEditor.py:1864 +#: flatcamEditors/FlatCAMGrbEditor.py:1874 msgid "Round" msgstr "Round" #: flatcamEditors/FlatCAMGeoEditor.py:88 -#: flatcamEditors/FlatCAMGrbEditor.py:1865 +#: flatcamEditors/FlatCAMGrbEditor.py:1875 msgid "Square" msgstr "Square" #: flatcamEditors/FlatCAMGeoEditor.py:89 -#: flatcamEditors/FlatCAMGrbEditor.py:1866 +#: flatcamEditors/FlatCAMGrbEditor.py:1876 msgid "Beveled" msgstr "Beveled" @@ -2033,17 +2032,17 @@ msgid "Full Buffer" msgstr "Full Buffer" #: flatcamEditors/FlatCAMGeoEditor.py:125 -#: flatcamEditors/FlatCAMGeoEditor.py:2594 +#: flatcamEditors/FlatCAMGeoEditor.py:2609 msgid "Buffer Tool" msgstr "Buffer Tool" #: flatcamEditors/FlatCAMGeoEditor.py:136 #: flatcamEditors/FlatCAMGeoEditor.py:153 #: flatcamEditors/FlatCAMGeoEditor.py:170 -#: flatcamEditors/FlatCAMGeoEditor.py:2612 -#: flatcamEditors/FlatCAMGeoEditor.py:2638 -#: flatcamEditors/FlatCAMGeoEditor.py:2664 -#: flatcamEditors/FlatCAMGrbEditor.py:3673 +#: flatcamEditors/FlatCAMGeoEditor.py:2627 +#: flatcamEditors/FlatCAMGeoEditor.py:2653 +#: flatcamEditors/FlatCAMGeoEditor.py:2679 +#: flatcamEditors/FlatCAMGrbEditor.py:3771 msgid "" "[WARNING_NOTCL] Buffer distance value is missing or wrong format. Add it and " "retry." @@ -2055,17 +2054,17 @@ msgstr "" msgid "Text Tool" msgstr "Text Tool" -#: flatcamEditors/FlatCAMGeoEditor.py:399 flatcamGUI/FlatCAMGUI.py:776 +#: flatcamEditors/FlatCAMGeoEditor.py:399 flatcamGUI/FlatCAMGUI.py:792 msgid "Tool" msgstr "Tool" -#: flatcamEditors/FlatCAMGeoEditor.py:430 flatcamGUI/FlatCAMGUI.py:3922 -#: flatcamGUI/FlatCAMGUI.py:5128 flatcamGUI/FlatCAMGUI.py:5404 -#: flatcamGUI/FlatCAMGUI.py:5544 flatcamGUI/ObjectUI.py:260 +#: flatcamEditors/FlatCAMGeoEditor.py:430 flatcamGUI/FlatCAMGUI.py:3996 +#: flatcamGUI/FlatCAMGUI.py:5202 flatcamGUI/FlatCAMGUI.py:5478 +#: flatcamGUI/FlatCAMGUI.py:5618 flatcamGUI/ObjectUI.py:260 msgid "Tool dia:" msgstr "Tool dia:" -#: flatcamEditors/FlatCAMGeoEditor.py:432 flatcamGUI/FlatCAMGUI.py:5546 +#: flatcamEditors/FlatCAMGeoEditor.py:432 flatcamGUI/FlatCAMGUI.py:5620 msgid "" "Diameter of the tool to\n" "be used in the operation." @@ -2073,8 +2072,8 @@ msgstr "" "Diameter of the tool to\n" "be used in the operation." -#: flatcamEditors/FlatCAMGeoEditor.py:441 flatcamGUI/FlatCAMGUI.py:5310 -#: flatcamGUI/FlatCAMGUI.py:5555 flatcamTools/ToolNonCopperClear.py:165 +#: flatcamEditors/FlatCAMGeoEditor.py:441 flatcamGUI/FlatCAMGUI.py:5384 +#: flatcamGUI/FlatCAMGUI.py:5629 flatcamTools/ToolNonCopperClear.py:165 #: flatcamTools/ToolPaint.py:160 msgid "Overlap Rate:" msgstr "Overlap Rate:" @@ -2104,14 +2103,14 @@ msgstr "" "Higher values = slow processing and slow execution on CNC\n" "due of too many paths." -#: flatcamEditors/FlatCAMGeoEditor.py:459 flatcamGUI/FlatCAMGUI.py:5326 -#: flatcamGUI/FlatCAMGUI.py:5412 flatcamGUI/FlatCAMGUI.py:5565 +#: flatcamEditors/FlatCAMGeoEditor.py:459 flatcamGUI/FlatCAMGUI.py:5400 +#: flatcamGUI/FlatCAMGUI.py:5486 flatcamGUI/FlatCAMGUI.py:5639 #: flatcamTools/ToolCutOut.py:86 flatcamTools/ToolNonCopperClear.py:181 #: flatcamTools/ToolPaint.py:177 msgid "Margin:" msgstr "Margin:" -#: flatcamEditors/FlatCAMGeoEditor.py:461 flatcamGUI/FlatCAMGUI.py:5567 +#: flatcamEditors/FlatCAMGeoEditor.py:461 flatcamGUI/FlatCAMGUI.py:5641 #: flatcamTools/ToolPaint.py:179 msgid "" "Distance by which to avoid\n" @@ -2122,13 +2121,13 @@ msgstr "" "the edges of the polygon to\n" "be painted." -#: flatcamEditors/FlatCAMGeoEditor.py:470 flatcamGUI/FlatCAMGUI.py:5335 -#: flatcamGUI/FlatCAMGUI.py:5576 flatcamTools/ToolNonCopperClear.py:190 +#: flatcamEditors/FlatCAMGeoEditor.py:470 flatcamGUI/FlatCAMGUI.py:5409 +#: flatcamGUI/FlatCAMGUI.py:5650 flatcamTools/ToolNonCopperClear.py:190 #: flatcamTools/ToolPaint.py:188 msgid "Method:" msgstr "Method:" -#: flatcamEditors/FlatCAMGeoEditor.py:472 flatcamGUI/FlatCAMGUI.py:5578 +#: flatcamEditors/FlatCAMGeoEditor.py:472 flatcamGUI/FlatCAMGUI.py:5652 msgid "" "Algorithm to paint the polygon:
Standard: Fixed step inwards." "
Seed-based: Outwards from seed." @@ -2136,29 +2135,14 @@ msgstr "" "Algorithm to paint the polygon:
Standard: Fixed step inwards." "
Seed-based: Outwards from seed." -#: flatcamEditors/FlatCAMGeoEditor.py:478 flatcamGUI/FlatCAMGUI.py:5344 -#: flatcamGUI/FlatCAMGUI.py:5584 -msgid "Standard" -msgstr "Standard" - -#: flatcamEditors/FlatCAMGeoEditor.py:479 flatcamGUI/FlatCAMGUI.py:5345 -#: flatcamGUI/FlatCAMGUI.py:5585 -msgid "Seed-based" -msgstr "Seed-based" - -#: flatcamEditors/FlatCAMGeoEditor.py:480 flatcamGUI/FlatCAMGUI.py:5346 -#: flatcamGUI/FlatCAMGUI.py:5586 -msgid "Straight lines" -msgstr "Straight lines" - -#: flatcamEditors/FlatCAMGeoEditor.py:485 flatcamGUI/FlatCAMGUI.py:5351 -#: flatcamGUI/FlatCAMGUI.py:5591 flatcamTools/ToolNonCopperClear.py:206 +#: flatcamEditors/FlatCAMGeoEditor.py:485 flatcamGUI/FlatCAMGUI.py:5425 +#: flatcamGUI/FlatCAMGUI.py:5665 flatcamTools/ToolNonCopperClear.py:206 #: flatcamTools/ToolPaint.py:204 msgid "Connect:" msgstr "Connect:" -#: flatcamEditors/FlatCAMGeoEditor.py:487 flatcamGUI/FlatCAMGUI.py:5353 -#: flatcamGUI/FlatCAMGUI.py:5593 flatcamTools/ToolNonCopperClear.py:208 +#: flatcamEditors/FlatCAMGeoEditor.py:487 flatcamGUI/FlatCAMGUI.py:5427 +#: flatcamGUI/FlatCAMGUI.py:5667 flatcamTools/ToolNonCopperClear.py:208 #: flatcamTools/ToolPaint.py:206 msgid "" "Draw lines between resulting\n" @@ -2167,14 +2151,14 @@ msgstr "" "Draw lines between resulting\n" "segments to minimize tool lifts." -#: flatcamEditors/FlatCAMGeoEditor.py:494 flatcamGUI/FlatCAMGUI.py:5360 -#: flatcamGUI/FlatCAMGUI.py:5601 flatcamTools/ToolNonCopperClear.py:215 +#: flatcamEditors/FlatCAMGeoEditor.py:494 flatcamGUI/FlatCAMGUI.py:5434 +#: flatcamGUI/FlatCAMGUI.py:5675 flatcamTools/ToolNonCopperClear.py:215 #: flatcamTools/ToolPaint.py:213 msgid "Contour:" msgstr "Contour:" -#: flatcamEditors/FlatCAMGeoEditor.py:496 flatcamGUI/FlatCAMGUI.py:5362 -#: flatcamGUI/FlatCAMGUI.py:5603 flatcamTools/ToolNonCopperClear.py:217 +#: flatcamEditors/FlatCAMGeoEditor.py:496 flatcamGUI/FlatCAMGUI.py:5436 +#: flatcamGUI/FlatCAMGUI.py:5677 flatcamTools/ToolNonCopperClear.py:217 #: flatcamTools/ToolPaint.py:215 msgid "" "Cut around the perimeter of the polygon\n" @@ -2188,7 +2172,7 @@ msgid "Paint" msgstr "Paint" #: flatcamEditors/FlatCAMGeoEditor.py:526 flatcamGUI/FlatCAMGUI.py:635 -#: flatcamGUI/FlatCAMGUI.py:1840 flatcamGUI/ObjectUI.py:1308 +#: flatcamGUI/FlatCAMGUI.py:1851 flatcamGUI/ObjectUI.py:1308 #: flatcamTools/ToolPaint.py:341 msgid "Paint Tool" msgstr "Paint Tool" @@ -2222,62 +2206,62 @@ msgstr "" "retry." #: flatcamEditors/FlatCAMGeoEditor.py:605 -#: flatcamEditors/FlatCAMGeoEditor.py:2619 -#: flatcamEditors/FlatCAMGeoEditor.py:2645 -#: flatcamEditors/FlatCAMGeoEditor.py:2671 +#: flatcamEditors/FlatCAMGeoEditor.py:2634 +#: flatcamEditors/FlatCAMGeoEditor.py:2660 +#: flatcamEditors/FlatCAMGeoEditor.py:2686 #: flatcamTools/ToolNonCopperClear.py:813 flatcamTools/ToolProperties.py:104 msgid "Tools" msgstr "Tools" #: flatcamEditors/FlatCAMGeoEditor.py:616 #: flatcamEditors/FlatCAMGeoEditor.py:989 -#: flatcamEditors/FlatCAMGrbEditor.py:3785 -#: flatcamEditors/FlatCAMGrbEditor.py:4169 flatcamGUI/FlatCAMGUI.py:644 -#: flatcamGUI/FlatCAMGUI.py:1851 flatcamTools/ToolTransform.py:398 +#: flatcamEditors/FlatCAMGrbEditor.py:3883 +#: flatcamEditors/FlatCAMGrbEditor.py:4267 flatcamGUI/FlatCAMGUI.py:646 +#: flatcamGUI/FlatCAMGUI.py:1864 flatcamTools/ToolTransform.py:398 msgid "Transform Tool" msgstr "Transform Tool" #: flatcamEditors/FlatCAMGeoEditor.py:617 #: flatcamEditors/FlatCAMGeoEditor.py:678 -#: flatcamEditors/FlatCAMGrbEditor.py:3786 -#: flatcamEditors/FlatCAMGrbEditor.py:3847 flatcamTools/ToolTransform.py:24 +#: flatcamEditors/FlatCAMGrbEditor.py:3884 +#: flatcamEditors/FlatCAMGrbEditor.py:3945 flatcamTools/ToolTransform.py:24 #: flatcamTools/ToolTransform.py:82 msgid "Rotate" msgstr "Rotate" #: flatcamEditors/FlatCAMGeoEditor.py:618 -#: flatcamEditors/FlatCAMGrbEditor.py:3787 flatcamTools/ToolTransform.py:25 +#: flatcamEditors/FlatCAMGrbEditor.py:3885 flatcamTools/ToolTransform.py:25 msgid "Skew/Shear" msgstr "Skew/Shear" #: flatcamEditors/FlatCAMGeoEditor.py:619 -#: flatcamEditors/FlatCAMGrbEditor.py:1910 -#: flatcamEditors/FlatCAMGrbEditor.py:3788 flatcamGUI/FlatCAMGUI.py:708 -#: flatcamGUI/FlatCAMGUI.py:1912 flatcamGUI/ObjectUI.py:100 +#: flatcamEditors/FlatCAMGrbEditor.py:1920 +#: flatcamEditors/FlatCAMGrbEditor.py:3886 flatcamGUI/FlatCAMGUI.py:709 +#: flatcamGUI/FlatCAMGUI.py:1930 flatcamGUI/ObjectUI.py:100 #: flatcamTools/ToolTransform.py:26 msgid "Scale" msgstr "Scale" #: flatcamEditors/FlatCAMGeoEditor.py:620 -#: flatcamEditors/FlatCAMGrbEditor.py:3789 flatcamTools/ToolTransform.py:27 +#: flatcamEditors/FlatCAMGrbEditor.py:3887 flatcamTools/ToolTransform.py:27 msgid "Mirror (Flip)" msgstr "Mirror (Flip)" #: flatcamEditors/FlatCAMGeoEditor.py:621 -#: flatcamEditors/FlatCAMGrbEditor.py:3790 flatcamGUI/ObjectUI.py:127 +#: flatcamEditors/FlatCAMGrbEditor.py:3888 flatcamGUI/ObjectUI.py:127 #: flatcamGUI/ObjectUI.py:888 flatcamGUI/ObjectUI.py:1446 #: flatcamTools/ToolTransform.py:28 msgid "Offset" msgstr "Offset" #: flatcamEditors/FlatCAMGeoEditor.py:632 -#: flatcamEditors/FlatCAMGrbEditor.py:3801 +#: flatcamEditors/FlatCAMGrbEditor.py:3899 #, python-format msgid "Editor %s" msgstr "Editor %s" #: flatcamEditors/FlatCAMGeoEditor.py:666 -#: flatcamEditors/FlatCAMGrbEditor.py:3835 flatcamTools/ToolTransform.py:70 +#: flatcamEditors/FlatCAMGrbEditor.py:3933 flatcamTools/ToolTransform.py:70 msgid "" "Angle for Rotation action, in degrees.\n" "Float number between -360 and 359.\n" @@ -2290,7 +2274,7 @@ msgstr "" "Negative numbers for CCW motion." #: flatcamEditors/FlatCAMGeoEditor.py:680 -#: flatcamEditors/FlatCAMGrbEditor.py:3849 +#: flatcamEditors/FlatCAMGrbEditor.py:3947 msgid "" "Rotate the selected shape(s).\n" "The point of reference is the middle of\n" @@ -2301,14 +2285,14 @@ msgstr "" "the bounding box for all selected shapes." #: flatcamEditors/FlatCAMGeoEditor.py:703 -#: flatcamEditors/FlatCAMGrbEditor.py:3872 flatcamTools/ToolTransform.py:107 +#: flatcamEditors/FlatCAMGrbEditor.py:3970 flatcamTools/ToolTransform.py:107 msgid "Angle X:" msgstr "Angle X:" #: flatcamEditors/FlatCAMGeoEditor.py:705 #: flatcamEditors/FlatCAMGeoEditor.py:723 -#: flatcamEditors/FlatCAMGrbEditor.py:3874 -#: flatcamEditors/FlatCAMGrbEditor.py:3892 flatcamTools/ToolTransform.py:109 +#: flatcamEditors/FlatCAMGrbEditor.py:3972 +#: flatcamEditors/FlatCAMGrbEditor.py:3990 flatcamTools/ToolTransform.py:109 #: flatcamTools/ToolTransform.py:127 msgid "" "Angle for Skew action, in degrees.\n" @@ -2318,14 +2302,14 @@ msgstr "" "Float number between -360 and 359." #: flatcamEditors/FlatCAMGeoEditor.py:714 -#: flatcamEditors/FlatCAMGrbEditor.py:3883 flatcamTools/ToolTransform.py:118 +#: flatcamEditors/FlatCAMGrbEditor.py:3981 flatcamTools/ToolTransform.py:118 msgid "Skew X" msgstr "Skew X" #: flatcamEditors/FlatCAMGeoEditor.py:716 #: flatcamEditors/FlatCAMGeoEditor.py:734 -#: flatcamEditors/FlatCAMGrbEditor.py:3885 -#: flatcamEditors/FlatCAMGrbEditor.py:3903 +#: flatcamEditors/FlatCAMGrbEditor.py:3983 +#: flatcamEditors/FlatCAMGrbEditor.py:4001 msgid "" "Skew/shear the selected shape(s).\n" "The point of reference is the middle of\n" @@ -2336,34 +2320,34 @@ msgstr "" "the bounding box for all selected shapes." #: flatcamEditors/FlatCAMGeoEditor.py:721 -#: flatcamEditors/FlatCAMGrbEditor.py:3890 flatcamTools/ToolTransform.py:125 +#: flatcamEditors/FlatCAMGrbEditor.py:3988 flatcamTools/ToolTransform.py:125 msgid "Angle Y:" msgstr "Angle Y:" #: flatcamEditors/FlatCAMGeoEditor.py:732 -#: flatcamEditors/FlatCAMGrbEditor.py:3901 flatcamTools/ToolTransform.py:136 +#: flatcamEditors/FlatCAMGrbEditor.py:3999 flatcamTools/ToolTransform.py:136 msgid "Skew Y" msgstr "Skew Y" #: flatcamEditors/FlatCAMGeoEditor.py:760 -#: flatcamEditors/FlatCAMGrbEditor.py:3929 flatcamTools/ToolTransform.py:164 +#: flatcamEditors/FlatCAMGrbEditor.py:4027 flatcamTools/ToolTransform.py:164 msgid "Factor X:" msgstr "Factor X:" #: flatcamEditors/FlatCAMGeoEditor.py:762 -#: flatcamEditors/FlatCAMGrbEditor.py:3931 flatcamTools/ToolTransform.py:166 +#: flatcamEditors/FlatCAMGrbEditor.py:4029 flatcamTools/ToolTransform.py:166 msgid "Factor for Scale action over X axis." msgstr "Factor for Scale action over X axis." #: flatcamEditors/FlatCAMGeoEditor.py:770 -#: flatcamEditors/FlatCAMGrbEditor.py:3939 flatcamTools/ToolTransform.py:174 +#: flatcamEditors/FlatCAMGrbEditor.py:4037 flatcamTools/ToolTransform.py:174 msgid "Scale X" msgstr "Scale X" #: flatcamEditors/FlatCAMGeoEditor.py:772 #: flatcamEditors/FlatCAMGeoEditor.py:789 -#: flatcamEditors/FlatCAMGrbEditor.py:3941 -#: flatcamEditors/FlatCAMGrbEditor.py:3958 +#: flatcamEditors/FlatCAMGrbEditor.py:4039 +#: flatcamEditors/FlatCAMGrbEditor.py:4056 msgid "" "Scale the selected shape(s).\n" "The point of reference depends on \n" @@ -2374,28 +2358,28 @@ msgstr "" "the Scale reference checkbox state." #: flatcamEditors/FlatCAMGeoEditor.py:777 -#: flatcamEditors/FlatCAMGrbEditor.py:3946 flatcamTools/ToolTransform.py:181 +#: flatcamEditors/FlatCAMGrbEditor.py:4044 flatcamTools/ToolTransform.py:181 msgid "Factor Y:" msgstr "Factor Y:" #: flatcamEditors/FlatCAMGeoEditor.py:779 -#: flatcamEditors/FlatCAMGrbEditor.py:3948 flatcamTools/ToolTransform.py:183 +#: flatcamEditors/FlatCAMGrbEditor.py:4046 flatcamTools/ToolTransform.py:183 msgid "Factor for Scale action over Y axis." msgstr "Factor for Scale action over Y axis." #: flatcamEditors/FlatCAMGeoEditor.py:787 -#: flatcamEditors/FlatCAMGrbEditor.py:3956 flatcamTools/ToolTransform.py:191 +#: flatcamEditors/FlatCAMGrbEditor.py:4054 flatcamTools/ToolTransform.py:191 msgid "Scale Y" msgstr "Scale Y" #: flatcamEditors/FlatCAMGeoEditor.py:796 -#: flatcamEditors/FlatCAMGrbEditor.py:3965 flatcamGUI/FlatCAMGUI.py:5950 +#: flatcamEditors/FlatCAMGrbEditor.py:4063 flatcamGUI/FlatCAMGUI.py:6024 #: flatcamTools/ToolTransform.py:200 msgid "Link" msgstr "Link" #: flatcamEditors/FlatCAMGeoEditor.py:798 -#: flatcamEditors/FlatCAMGrbEditor.py:3967 +#: flatcamEditors/FlatCAMGrbEditor.py:4065 msgid "" "Scale the selected shape(s)\n" "using the Scale Factor X for both axis." @@ -2404,13 +2388,13 @@ msgstr "" "using the Scale Factor X for both axis." #: flatcamEditors/FlatCAMGeoEditor.py:804 -#: flatcamEditors/FlatCAMGrbEditor.py:3973 flatcamGUI/FlatCAMGUI.py:5958 +#: flatcamEditors/FlatCAMGrbEditor.py:4071 flatcamGUI/FlatCAMGUI.py:6032 #: flatcamTools/ToolTransform.py:208 msgid "Scale Reference" msgstr "Scale Reference" #: flatcamEditors/FlatCAMGeoEditor.py:806 -#: flatcamEditors/FlatCAMGrbEditor.py:3975 +#: flatcamEditors/FlatCAMGrbEditor.py:4073 msgid "" "Scale the selected shape(s)\n" "using the origin reference when checked,\n" @@ -2423,24 +2407,24 @@ msgstr "" "of the selected shapes when unchecked." #: flatcamEditors/FlatCAMGeoEditor.py:834 -#: flatcamEditors/FlatCAMGrbEditor.py:4004 flatcamTools/ToolTransform.py:238 +#: flatcamEditors/FlatCAMGrbEditor.py:4102 flatcamTools/ToolTransform.py:238 msgid "Value X:" msgstr "Value X:" #: flatcamEditors/FlatCAMGeoEditor.py:836 -#: flatcamEditors/FlatCAMGrbEditor.py:4006 flatcamTools/ToolTransform.py:240 +#: flatcamEditors/FlatCAMGrbEditor.py:4104 flatcamTools/ToolTransform.py:240 msgid "Value for Offset action on X axis." msgstr "Value for Offset action on X axis." #: flatcamEditors/FlatCAMGeoEditor.py:844 -#: flatcamEditors/FlatCAMGrbEditor.py:4014 flatcamTools/ToolTransform.py:248 +#: flatcamEditors/FlatCAMGrbEditor.py:4112 flatcamTools/ToolTransform.py:248 msgid "Offset X" msgstr "Offset X" #: flatcamEditors/FlatCAMGeoEditor.py:846 #: flatcamEditors/FlatCAMGeoEditor.py:864 -#: flatcamEditors/FlatCAMGrbEditor.py:4016 -#: flatcamEditors/FlatCAMGrbEditor.py:4034 +#: flatcamEditors/FlatCAMGrbEditor.py:4114 +#: flatcamEditors/FlatCAMGrbEditor.py:4132 msgid "" "Offset the selected shape(s).\n" "The point of reference is the middle of\n" @@ -2451,29 +2435,29 @@ msgstr "" "the bounding box for all selected shapes.\n" #: flatcamEditors/FlatCAMGeoEditor.py:852 -#: flatcamEditors/FlatCAMGrbEditor.py:4022 flatcamTools/ToolTransform.py:255 +#: flatcamEditors/FlatCAMGrbEditor.py:4120 flatcamTools/ToolTransform.py:255 msgid "Value Y:" msgstr "Value Y:" #: flatcamEditors/FlatCAMGeoEditor.py:854 -#: flatcamEditors/FlatCAMGrbEditor.py:4024 flatcamTools/ToolTransform.py:257 +#: flatcamEditors/FlatCAMGrbEditor.py:4122 flatcamTools/ToolTransform.py:257 msgid "Value for Offset action on Y axis." msgstr "Value for Offset action on Y axis." #: flatcamEditors/FlatCAMGeoEditor.py:862 -#: flatcamEditors/FlatCAMGrbEditor.py:4032 flatcamTools/ToolTransform.py:265 +#: flatcamEditors/FlatCAMGrbEditor.py:4130 flatcamTools/ToolTransform.py:265 msgid "Offset Y" msgstr "Offset Y" #: flatcamEditors/FlatCAMGeoEditor.py:893 -#: flatcamEditors/FlatCAMGrbEditor.py:4063 flatcamTools/ToolTransform.py:295 +#: flatcamEditors/FlatCAMGrbEditor.py:4161 flatcamTools/ToolTransform.py:295 msgid "Flip on X" msgstr "Flip on X" #: flatcamEditors/FlatCAMGeoEditor.py:895 #: flatcamEditors/FlatCAMGeoEditor.py:903 -#: flatcamEditors/FlatCAMGrbEditor.py:4065 -#: flatcamEditors/FlatCAMGrbEditor.py:4073 +#: flatcamEditors/FlatCAMGrbEditor.py:4163 +#: flatcamEditors/FlatCAMGrbEditor.py:4171 msgid "" "Flip the selected shape(s) over the X axis.\n" "Does not create a new shape." @@ -2482,17 +2466,17 @@ msgstr "" "Does not create a new shape." #: flatcamEditors/FlatCAMGeoEditor.py:901 -#: flatcamEditors/FlatCAMGrbEditor.py:4071 flatcamTools/ToolTransform.py:303 +#: flatcamEditors/FlatCAMGrbEditor.py:4169 flatcamTools/ToolTransform.py:303 msgid "Flip on Y" msgstr "Flip on Y" #: flatcamEditors/FlatCAMGeoEditor.py:910 -#: flatcamEditors/FlatCAMGrbEditor.py:4080 flatcamTools/ToolTransform.py:312 +#: flatcamEditors/FlatCAMGrbEditor.py:4178 flatcamTools/ToolTransform.py:312 msgid "Ref Pt" msgstr "Ref Pt" #: flatcamEditors/FlatCAMGeoEditor.py:912 -#: flatcamEditors/FlatCAMGrbEditor.py:4082 +#: flatcamEditors/FlatCAMGrbEditor.py:4180 msgid "" "Flip the selected shape(s)\n" "around the point in Point Entry Field.\n" @@ -2515,12 +2499,12 @@ msgstr "" "Point Entry field and click Flip on X(Y)" #: flatcamEditors/FlatCAMGeoEditor.py:924 -#: flatcamEditors/FlatCAMGrbEditor.py:4094 flatcamTools/ToolTransform.py:325 +#: flatcamEditors/FlatCAMGrbEditor.py:4192 flatcamTools/ToolTransform.py:325 msgid "Point:" msgstr "Point:" #: flatcamEditors/FlatCAMGeoEditor.py:926 -#: flatcamEditors/FlatCAMGrbEditor.py:4096 +#: flatcamEditors/FlatCAMGrbEditor.py:4194 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" @@ -2530,18 +2514,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:936 -#: flatcamEditors/FlatCAMGrbEditor.py:1820 -#: flatcamEditors/FlatCAMGrbEditor.py:4106 flatcamGUI/ObjectUI.py:988 -#: flatcamTools/ToolDblSided.py:160 flatcamTools/ToolDblSided.py:208 -#: flatcamTools/ToolNonCopperClear.py:134 flatcamTools/ToolPaint.py:131 -#: flatcamTools/ToolSolderPaste.py:115 flatcamTools/ToolSolderPaste.py:479 -#: flatcamTools/ToolTransform.py:337 -msgid "Add" -msgstr "Add" - #: flatcamEditors/FlatCAMGeoEditor.py:938 -#: flatcamEditors/FlatCAMGrbEditor.py:4108 flatcamTools/ToolTransform.py:339 +#: flatcamEditors/FlatCAMGrbEditor.py:4206 flatcamTools/ToolTransform.py:339 msgid "" "The point coordinates can be captured by\n" "left click on canvas together with pressing\n" @@ -2552,247 +2526,247 @@ msgstr "" "SHIFT key. Then click Add button to insert." #: flatcamEditors/FlatCAMGeoEditor.py:1053 -#: flatcamEditors/FlatCAMGrbEditor.py:4233 +#: flatcamEditors/FlatCAMGrbEditor.py:4331 msgid "[WARNING_NOTCL] Transformation cancelled. No shape selected." msgstr "[WARNING_NOTCL] Transformation cancelled. No shape selected." #: flatcamEditors/FlatCAMGeoEditor.py:1074 -#: flatcamEditors/FlatCAMGrbEditor.py:4253 flatcamTools/ToolTransform.py:468 +#: flatcamEditors/FlatCAMGrbEditor.py:4351 flatcamTools/ToolTransform.py:468 msgid "[ERROR_NOTCL] Wrong value format entered for Rotate, use a number." msgstr "[ERROR_NOTCL] Wrong value format entered for Rotate, use a number." #: flatcamEditors/FlatCAMGeoEditor.py:1111 -#: flatcamEditors/FlatCAMGrbEditor.py:4290 flatcamTools/ToolTransform.py:502 +#: flatcamEditors/FlatCAMGrbEditor.py:4388 flatcamTools/ToolTransform.py:502 msgid "[ERROR_NOTCL] Wrong value format entered for Skew X, use a number." msgstr "[ERROR_NOTCL] Wrong value format entered for Skew X, use a number." #: flatcamEditors/FlatCAMGeoEditor.py:1132 -#: flatcamEditors/FlatCAMGrbEditor.py:4311 flatcamTools/ToolTransform.py:520 +#: flatcamEditors/FlatCAMGrbEditor.py:4409 flatcamTools/ToolTransform.py:520 msgid "[ERROR_NOTCL] Wrong value format entered for Skew Y, use a number." msgstr "[ERROR_NOTCL] Wrong value format entered for Skew Y, use a number." #: flatcamEditors/FlatCAMGeoEditor.py:1153 -#: flatcamEditors/FlatCAMGrbEditor.py:4332 flatcamTools/ToolTransform.py:538 +#: flatcamEditors/FlatCAMGrbEditor.py:4430 flatcamTools/ToolTransform.py:538 msgid "[ERROR_NOTCL] Wrong value format entered for Scale X, use a number." msgstr "[ERROR_NOTCL] Wrong value format entered for Scale X, use a number." #: flatcamEditors/FlatCAMGeoEditor.py:1190 -#: flatcamEditors/FlatCAMGrbEditor.py:4369 flatcamTools/ToolTransform.py:572 +#: flatcamEditors/FlatCAMGrbEditor.py:4467 flatcamTools/ToolTransform.py:572 msgid "[ERROR_NOTCL] Wrong value format entered for Scale Y, use a number." msgstr "[ERROR_NOTCL] Wrong value format entered for Scale Y, use a number." #: flatcamEditors/FlatCAMGeoEditor.py:1222 -#: flatcamEditors/FlatCAMGrbEditor.py:4401 flatcamTools/ToolTransform.py:601 +#: flatcamEditors/FlatCAMGrbEditor.py:4499 flatcamTools/ToolTransform.py:601 msgid "[ERROR_NOTCL] Wrong value format entered for Offset X, use a number." msgstr "[ERROR_NOTCL] Wrong value format entered for Offset X, use a number." #: flatcamEditors/FlatCAMGeoEditor.py:1243 -#: flatcamEditors/FlatCAMGrbEditor.py:4422 flatcamTools/ToolTransform.py:619 +#: flatcamEditors/FlatCAMGrbEditor.py:4520 flatcamTools/ToolTransform.py:619 msgid "[ERROR_NOTCL] Wrong value format entered for Offset Y, use a number." msgstr "[ERROR_NOTCL] Wrong value format entered for Offset Y, use a number." #: flatcamEditors/FlatCAMGeoEditor.py:1261 -#: flatcamEditors/FlatCAMGrbEditor.py:4440 +#: flatcamEditors/FlatCAMGrbEditor.py:4538 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:1264 -#: flatcamEditors/FlatCAMGrbEditor.py:4443 flatcamTools/ToolTransform.py:640 +#: flatcamEditors/FlatCAMGrbEditor.py:4541 flatcamTools/ToolTransform.py:640 msgid "Appying Rotate" msgstr "Appying Rotate" #: flatcamEditors/FlatCAMGeoEditor.py:1292 -#: flatcamEditors/FlatCAMGrbEditor.py:4471 +#: flatcamEditors/FlatCAMGrbEditor.py:4569 msgid "[success] Done. Rotate completed." msgstr "[success] Done. Rotate completed." #: flatcamEditors/FlatCAMGeoEditor.py:1308 -#: flatcamEditors/FlatCAMGrbEditor.py:4487 +#: flatcamEditors/FlatCAMGrbEditor.py:4585 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:1311 -#: flatcamEditors/FlatCAMGrbEditor.py:4490 flatcamTools/ToolTransform.py:692 +#: flatcamEditors/FlatCAMGrbEditor.py:4588 flatcamTools/ToolTransform.py:692 msgid "Applying Flip" msgstr "Applying Flip" #: flatcamEditors/FlatCAMGeoEditor.py:1341 -#: flatcamEditors/FlatCAMGrbEditor.py:4520 flatcamTools/ToolTransform.py:735 +#: flatcamEditors/FlatCAMGrbEditor.py:4618 flatcamTools/ToolTransform.py:735 msgid "[success] Flip on the Y axis done ..." msgstr "[success] Flip on the Y axis done ..." #: flatcamEditors/FlatCAMGeoEditor.py:1344 -#: flatcamEditors/FlatCAMGrbEditor.py:4523 flatcamTools/ToolTransform.py:745 +#: flatcamEditors/FlatCAMGrbEditor.py:4621 flatcamTools/ToolTransform.py:745 msgid "[success] Flip on the X axis done ..." msgstr "[success] Flip on the X axis done ..." #: flatcamEditors/FlatCAMGeoEditor.py:1363 -#: flatcamEditors/FlatCAMGrbEditor.py:4542 +#: flatcamEditors/FlatCAMGrbEditor.py:4640 msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to shear/skew!" msgstr "" "[WARNING_NOTCL] No shape selected. Please Select a shape to shear/skew!" #: flatcamEditors/FlatCAMGeoEditor.py:1366 -#: flatcamEditors/FlatCAMGrbEditor.py:4545 flatcamTools/ToolTransform.py:762 +#: flatcamEditors/FlatCAMGrbEditor.py:4643 flatcamTools/ToolTransform.py:762 msgid "Applying Skew" msgstr "Applying Skew" #: flatcamEditors/FlatCAMGeoEditor.py:1391 -#: flatcamEditors/FlatCAMGrbEditor.py:4570 flatcamTools/ToolTransform.py:793 +#: flatcamEditors/FlatCAMGrbEditor.py:4668 flatcamTools/ToolTransform.py:793 #, python-format msgid "[success] Skew on the %s axis done ..." msgstr "[success] Skew on the %s axis done ..." #: flatcamEditors/FlatCAMGeoEditor.py:1395 -#: flatcamEditors/FlatCAMGrbEditor.py:4574 flatcamTools/ToolTransform.py:797 +#: flatcamEditors/FlatCAMGrbEditor.py:4672 flatcamTools/ToolTransform.py:797 #, 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:1406 -#: flatcamEditors/FlatCAMGrbEditor.py:4585 +#: flatcamEditors/FlatCAMGrbEditor.py:4683 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:1409 -#: flatcamEditors/FlatCAMGrbEditor.py:4588 flatcamTools/ToolTransform.py:811 +#: flatcamEditors/FlatCAMGrbEditor.py:4686 flatcamTools/ToolTransform.py:811 msgid "Applying Scale" msgstr "Applying Scale" #: flatcamEditors/FlatCAMGeoEditor.py:1442 -#: flatcamEditors/FlatCAMGrbEditor.py:4621 flatcamTools/ToolTransform.py:849 +#: flatcamEditors/FlatCAMGrbEditor.py:4719 flatcamTools/ToolTransform.py:849 #, python-format msgid "[success] Scale on the %s axis done ..." msgstr "[success] Scale on the %s axis done ..." #: flatcamEditors/FlatCAMGeoEditor.py:1445 -#: flatcamEditors/FlatCAMGrbEditor.py:4624 flatcamTools/ToolTransform.py:852 +#: flatcamEditors/FlatCAMGrbEditor.py:4722 flatcamTools/ToolTransform.py:852 #, 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:1454 -#: flatcamEditors/FlatCAMGrbEditor.py:4633 +#: flatcamEditors/FlatCAMGrbEditor.py:4731 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:1457 -#: flatcamEditors/FlatCAMGrbEditor.py:4636 flatcamTools/ToolTransform.py:864 +#: flatcamEditors/FlatCAMGrbEditor.py:4734 flatcamTools/ToolTransform.py:864 msgid "Applying Offset" msgstr "Applying Offset" #: flatcamEditors/FlatCAMGeoEditor.py:1481 -#: flatcamEditors/FlatCAMGrbEditor.py:4660 flatcamTools/ToolTransform.py:894 +#: flatcamEditors/FlatCAMGrbEditor.py:4758 flatcamTools/ToolTransform.py:894 #, python-format msgid "[success] Offset on the %s axis done ..." msgstr "[success] Offset on the %s axis done ..." #: flatcamEditors/FlatCAMGeoEditor.py:1485 -#: flatcamEditors/FlatCAMGrbEditor.py:4664 flatcamTools/ToolTransform.py:898 +#: flatcamEditors/FlatCAMGrbEditor.py:4762 flatcamTools/ToolTransform.py:898 #, 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:1489 -#: flatcamEditors/FlatCAMGrbEditor.py:4668 +#: flatcamEditors/FlatCAMGrbEditor.py:4766 msgid "Rotate ..." msgstr "Rotate ..." #: flatcamEditors/FlatCAMGeoEditor.py:1490 #: flatcamEditors/FlatCAMGeoEditor.py:1547 #: flatcamEditors/FlatCAMGeoEditor.py:1564 -#: flatcamEditors/FlatCAMGrbEditor.py:4669 -#: flatcamEditors/FlatCAMGrbEditor.py:4726 -#: flatcamEditors/FlatCAMGrbEditor.py:4743 +#: flatcamEditors/FlatCAMGrbEditor.py:4767 +#: flatcamEditors/FlatCAMGrbEditor.py:4824 +#: flatcamEditors/FlatCAMGrbEditor.py:4841 msgid "Enter an Angle Value (degrees):" msgstr "Enter an Angle Value (degrees):" #: flatcamEditors/FlatCAMGeoEditor.py:1499 -#: flatcamEditors/FlatCAMGrbEditor.py:4678 +#: flatcamEditors/FlatCAMGrbEditor.py:4776 msgid "[success] Geometry shape rotate done..." msgstr "[success] Geometry shape rotate done..." #: flatcamEditors/FlatCAMGeoEditor.py:1504 -#: flatcamEditors/FlatCAMGrbEditor.py:4683 +#: flatcamEditors/FlatCAMGrbEditor.py:4781 msgid "[WARNING_NOTCL] Geometry shape rotate cancelled..." msgstr "[WARNING_NOTCL] Geometry shape rotate cancelled..." #: flatcamEditors/FlatCAMGeoEditor.py:1510 -#: flatcamEditors/FlatCAMGrbEditor.py:4689 +#: flatcamEditors/FlatCAMGrbEditor.py:4787 msgid "Offset on X axis ..." msgstr "Offset on X axis ..." #: flatcamEditors/FlatCAMGeoEditor.py:1511 #: flatcamEditors/FlatCAMGeoEditor.py:1530 -#: flatcamEditors/FlatCAMGrbEditor.py:4690 -#: flatcamEditors/FlatCAMGrbEditor.py:4709 +#: flatcamEditors/FlatCAMGrbEditor.py:4788 +#: flatcamEditors/FlatCAMGrbEditor.py:4807 #, python-format msgid "Enter a distance Value (%s):" msgstr "Enter a distance Value (%s):" #: flatcamEditors/FlatCAMGeoEditor.py:1520 -#: flatcamEditors/FlatCAMGrbEditor.py:4699 +#: flatcamEditors/FlatCAMGrbEditor.py:4797 msgid "[success] Geometry shape offset on X axis done..." msgstr "[success] Geometry shape offset on X axis done..." #: flatcamEditors/FlatCAMGeoEditor.py:1524 -#: flatcamEditors/FlatCAMGrbEditor.py:4703 +#: flatcamEditors/FlatCAMGrbEditor.py:4801 msgid "[WARNING_NOTCL] Geometry shape offset X cancelled..." msgstr "[WARNING_NOTCL] Geometry shape offset X cancelled..." #: flatcamEditors/FlatCAMGeoEditor.py:1529 -#: flatcamEditors/FlatCAMGrbEditor.py:4708 +#: flatcamEditors/FlatCAMGrbEditor.py:4806 msgid "Offset on Y axis ..." msgstr "Offset on Y axis ..." #: flatcamEditors/FlatCAMGeoEditor.py:1539 -#: flatcamEditors/FlatCAMGrbEditor.py:4718 +#: flatcamEditors/FlatCAMGrbEditor.py:4816 msgid "[success] Geometry shape offset on Y axis done..." msgstr "[success] Geometry shape offset on Y axis done..." #: flatcamEditors/FlatCAMGeoEditor.py:1543 -#: flatcamEditors/FlatCAMGrbEditor.py:4722 +#: flatcamEditors/FlatCAMGrbEditor.py:4820 msgid "[WARNING_NOTCL] Geometry shape offset Y cancelled..." msgstr "[WARNING_NOTCL] Geometry shape offset Y cancelled..." #: flatcamEditors/FlatCAMGeoEditor.py:1546 -#: flatcamEditors/FlatCAMGrbEditor.py:4725 +#: flatcamEditors/FlatCAMGrbEditor.py:4823 msgid "Skew on X axis ..." msgstr "Skew on X axis ..." #: flatcamEditors/FlatCAMGeoEditor.py:1556 -#: flatcamEditors/FlatCAMGrbEditor.py:4735 +#: flatcamEditors/FlatCAMGrbEditor.py:4833 msgid "[success] Geometry shape skew on X axis done..." msgstr "[success] Geometry shape skew on X axis done..." #: flatcamEditors/FlatCAMGeoEditor.py:1560 -#: flatcamEditors/FlatCAMGrbEditor.py:4739 +#: flatcamEditors/FlatCAMGrbEditor.py:4837 msgid "[WARNING_NOTCL] Geometry shape skew X cancelled..." msgstr "[WARNING_NOTCL] Geometry shape skew X cancelled..." #: flatcamEditors/FlatCAMGeoEditor.py:1563 -#: flatcamEditors/FlatCAMGrbEditor.py:4742 +#: flatcamEditors/FlatCAMGrbEditor.py:4840 msgid "Skew on Y axis ..." msgstr "Skew on Y axis ..." #: flatcamEditors/FlatCAMGeoEditor.py:1573 -#: flatcamEditors/FlatCAMGrbEditor.py:4752 +#: flatcamEditors/FlatCAMGrbEditor.py:4850 msgid "[success] Geometry shape skew on Y axis done..." msgstr "[success] Geometry shape skew on Y axis done..." #: flatcamEditors/FlatCAMGeoEditor.py:1577 -#: flatcamEditors/FlatCAMGrbEditor.py:4756 +#: flatcamEditors/FlatCAMGrbEditor.py:4854 msgid "[WARNING_NOTCL] Geometry shape skew Y cancelled..." msgstr "[WARNING_NOTCL] Geometry shape skew Y cancelled..." #: flatcamEditors/FlatCAMGeoEditor.py:1942 #: flatcamEditors/FlatCAMGeoEditor.py:1943 -#: flatcamEditors/FlatCAMGeoEditor.py:1987 -#: flatcamEditors/FlatCAMGeoEditor.py:1988 +#: flatcamEditors/FlatCAMGeoEditor.py:1994 +#: flatcamEditors/FlatCAMGeoEditor.py:1995 #: flatcamEditors/FlatCAMGrbEditor.py:1081 #: flatcamEditors/FlatCAMGrbEditor.py:1082 -#: flatcamEditors/FlatCAMGrbEditor.py:1135 -#: flatcamEditors/FlatCAMGrbEditor.py:1136 +#: flatcamEditors/FlatCAMGrbEditor.py:1142 +#: flatcamEditors/FlatCAMGrbEditor.py:1143 msgid "Click on Center point ..." msgstr "Click on Center point ..." @@ -2805,121 +2779,121 @@ msgstr "Click on Perimeter point to complete ..." msgid "[success] Done. Adding Circle completed." msgstr "[success] Done. Adding Circle completed." -#: flatcamEditors/FlatCAMGeoEditor.py:2008 -#: flatcamEditors/FlatCAMGrbEditor.py:1161 +#: flatcamEditors/FlatCAMGeoEditor.py:2015 +#: flatcamEditors/FlatCAMGrbEditor.py:1168 msgid "Click on Start point ..." msgstr "Click on Start point ..." -#: flatcamEditors/FlatCAMGeoEditor.py:2010 -#: flatcamEditors/FlatCAMGrbEditor.py:1163 +#: flatcamEditors/FlatCAMGeoEditor.py:2017 +#: flatcamEditors/FlatCAMGrbEditor.py:1170 msgid "Click on Point3 ..." msgstr "Click on Point3 ..." -#: flatcamEditors/FlatCAMGeoEditor.py:2012 -#: flatcamEditors/FlatCAMGrbEditor.py:1165 +#: flatcamEditors/FlatCAMGeoEditor.py:2019 +#: flatcamEditors/FlatCAMGrbEditor.py:1172 msgid "Click on Stop point ..." msgstr "Click on Stop point ..." -#: flatcamEditors/FlatCAMGeoEditor.py:2017 -#: flatcamEditors/FlatCAMGrbEditor.py:1170 +#: flatcamEditors/FlatCAMGeoEditor.py:2024 +#: flatcamEditors/FlatCAMGrbEditor.py:1177 msgid "Click on Stop point to complete ..." msgstr "Click on Stop point to complete ..." -#: flatcamEditors/FlatCAMGeoEditor.py:2019 -#: flatcamEditors/FlatCAMGrbEditor.py:1172 +#: flatcamEditors/FlatCAMGeoEditor.py:2026 +#: flatcamEditors/FlatCAMGrbEditor.py:1179 msgid "Click on Point2 to complete ..." msgstr "Click on Point2 to complete ..." -#: flatcamEditors/FlatCAMGeoEditor.py:2021 -#: flatcamEditors/FlatCAMGrbEditor.py:1174 +#: flatcamEditors/FlatCAMGeoEditor.py:2028 +#: flatcamEditors/FlatCAMGrbEditor.py:1181 msgid "Click on Center point to complete ..." msgstr "Click on Center point to complete ..." -#: flatcamEditors/FlatCAMGeoEditor.py:2033 -#: flatcamEditors/FlatCAMGrbEditor.py:1186 +#: flatcamEditors/FlatCAMGeoEditor.py:2040 +#: flatcamEditors/FlatCAMGrbEditor.py:1193 #, python-format msgid "Direction: %s" msgstr "Direction: %s" -#: flatcamEditors/FlatCAMGeoEditor.py:2043 -#: flatcamEditors/FlatCAMGrbEditor.py:1196 +#: flatcamEditors/FlatCAMGeoEditor.py:2050 +#: flatcamEditors/FlatCAMGrbEditor.py:1203 msgid "Mode: Start -> Stop -> Center. Click on Start point ..." msgstr "Mode: Start -> Stop -> Center. Click on Start point ..." -#: flatcamEditors/FlatCAMGeoEditor.py:2046 -#: flatcamEditors/FlatCAMGrbEditor.py:1199 +#: flatcamEditors/FlatCAMGeoEditor.py:2053 +#: flatcamEditors/FlatCAMGrbEditor.py:1206 msgid "Mode: Point1 -> Point3 -> Point2. Click on Point1 ..." msgstr "Mode: Point1 -> Point3 -> Point2. Click on Point1 ..." -#: flatcamEditors/FlatCAMGeoEditor.py:2049 -#: flatcamEditors/FlatCAMGrbEditor.py:1202 +#: flatcamEditors/FlatCAMGeoEditor.py:2056 +#: flatcamEditors/FlatCAMGrbEditor.py:1209 msgid "Mode: Center -> Start -> Stop. Click on Center point ..." msgstr "Mode: Center -> Start -> Stop. Click on Center point ..." -#: flatcamEditors/FlatCAMGeoEditor.py:2187 +#: flatcamEditors/FlatCAMGeoEditor.py:2194 msgid "[success] Done. Arc completed." msgstr "[success] Done. Arc completed." -#: flatcamEditors/FlatCAMGeoEditor.py:2206 +#: flatcamEditors/FlatCAMGeoEditor.py:2213 msgid "Click on 1st corner ..." msgstr "Click on 1st corner ..." -#: flatcamEditors/FlatCAMGeoEditor.py:2239 +#: flatcamEditors/FlatCAMGeoEditor.py:2246 msgid "[success] Done. Rectangle completed." msgstr "[success] Done. Rectangle completed." -#: flatcamEditors/FlatCAMGeoEditor.py:2258 +#: flatcamEditors/FlatCAMGeoEditor.py:2265 #: flatcamEditors/FlatCAMGrbEditor.py:627 msgid "Click on 1st point ..." msgstr "Click on 1st point ..." -#: flatcamEditors/FlatCAMGeoEditor.py:2265 +#: flatcamEditors/FlatCAMGeoEditor.py:2272 #: flatcamEditors/FlatCAMGrbEditor.py:637 #: flatcamEditors/FlatCAMGrbEditor.py:904 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:2293 +#: flatcamEditors/FlatCAMGeoEditor.py:2300 msgid "[success] Done. Polygon completed." msgstr "[success] Done. Polygon completed." -#: flatcamEditors/FlatCAMGeoEditor.py:2303 -#: flatcamEditors/FlatCAMGeoEditor.py:2349 +#: flatcamEditors/FlatCAMGeoEditor.py:2310 +#: flatcamEditors/FlatCAMGeoEditor.py:2356 #: flatcamEditors/FlatCAMGrbEditor.py:808 #: flatcamEditors/FlatCAMGrbEditor.py:981 msgid "Backtracked one point ..." msgstr "Backtracked one point ..." -#: flatcamEditors/FlatCAMGeoEditor.py:2331 +#: flatcamEditors/FlatCAMGeoEditor.py:2338 msgid "[success] Done. Path completed." msgstr "[success] Done. Path completed." -#: flatcamEditors/FlatCAMGeoEditor.py:2443 -#: flatcamEditors/FlatCAMGeoEditor.py:3539 +#: flatcamEditors/FlatCAMGeoEditor.py:2450 +#: flatcamEditors/FlatCAMGeoEditor.py:3611 msgid "[WARNING_NOTCL] Move cancelled. No shape selected." msgstr "[WARNING_NOTCL] Move cancelled. No shape selected." -#: flatcamEditors/FlatCAMGeoEditor.py:2447 +#: flatcamEditors/FlatCAMGeoEditor.py:2454 msgid "Click on reference point." msgstr "Click on reference point." -#: flatcamEditors/FlatCAMGeoEditor.py:2450 +#: flatcamEditors/FlatCAMGeoEditor.py:2457 msgid "Click on destination point." msgstr "Click on destination point." -#: flatcamEditors/FlatCAMGeoEditor.py:2481 +#: flatcamEditors/FlatCAMGeoEditor.py:2488 msgid "[success] Done. Geometry(s) Move completed." msgstr "[success] Done. Geometry(s) Move completed." -#: flatcamEditors/FlatCAMGeoEditor.py:2526 +#: flatcamEditors/FlatCAMGeoEditor.py:2533 msgid "[success] Done. Geometry(s) Copy completed." msgstr "[success] Done. Geometry(s) Copy completed." -#: flatcamEditors/FlatCAMGeoEditor.py:2538 +#: flatcamEditors/FlatCAMGeoEditor.py:2553 msgid "Click on the Destination point..." msgstr "Click on the Destination point..." -#: flatcamEditors/FlatCAMGeoEditor.py:2552 +#: flatcamEditors/FlatCAMGeoEditor.py:2567 #, python-format msgid "" "[ERROR]Font not supported. Only Regular, Bold, Italic and BoldItalic are " @@ -2928,59 +2902,60 @@ msgstr "" "[ERROR]Font not supported. Only Regular, Bold, Italic and BoldItalic are " "supported. Error: %s" -#: flatcamEditors/FlatCAMGeoEditor.py:2562 +#: flatcamEditors/FlatCAMGeoEditor.py:2577 msgid "[success] Done. Adding Text completed." msgstr "[success] Done. Adding Text completed." -#: flatcamEditors/FlatCAMGeoEditor.py:2590 +#: flatcamEditors/FlatCAMGeoEditor.py:2605 msgid "Create buffer geometry ..." msgstr "Create buffer geometry ..." -#: flatcamEditors/FlatCAMGeoEditor.py:2601 -#: flatcamEditors/FlatCAMGeoEditor.py:2627 -#: flatcamEditors/FlatCAMGeoEditor.py:2653 +#: flatcamEditors/FlatCAMGeoEditor.py:2616 +#: flatcamEditors/FlatCAMGeoEditor.py:2642 +#: flatcamEditors/FlatCAMGeoEditor.py:2668 msgid "[WARNING_NOTCL] Buffer cancelled. No shape selected." msgstr "[WARNING_NOTCL] Buffer cancelled. No shape selected." -#: flatcamEditors/FlatCAMGeoEditor.py:2623 -#: flatcamEditors/FlatCAMGrbEditor.py:3709 +#: flatcamEditors/FlatCAMGeoEditor.py:2638 +#: flatcamEditors/FlatCAMGrbEditor.py:3807 msgid "[success] Done. Buffer Tool completed." msgstr "[success] Done. Buffer Tool completed." -#: flatcamEditors/FlatCAMGeoEditor.py:2649 +#: flatcamEditors/FlatCAMGeoEditor.py:2664 msgid "[success] Done. Buffer Int Tool completed." msgstr "[success] Done. Buffer Int Tool completed." -#: flatcamEditors/FlatCAMGeoEditor.py:2675 +#: flatcamEditors/FlatCAMGeoEditor.py:2690 msgid "[success] Done. Buffer Ext Tool completed." msgstr "[success] Done. Buffer Ext Tool completed." -#: flatcamEditors/FlatCAMGeoEditor.py:2708 +#: flatcamEditors/FlatCAMGeoEditor.py:2723 msgid "Create Paint geometry ..." msgstr "Create Paint geometry ..." -#: flatcamEditors/FlatCAMGeoEditor.py:2722 -#: flatcamEditors/FlatCAMGrbEditor.py:1657 +#: flatcamEditors/FlatCAMGeoEditor.py:2737 +#: flatcamEditors/FlatCAMGrbEditor.py:1667 msgid "Shape transformations ..." msgstr "Shape transformations ..." -#: flatcamEditors/FlatCAMGeoEditor.py:3174 +#: flatcamEditors/FlatCAMGeoEditor.py:3237 #, python-brace-format msgid "[WARNING] Editing MultiGeo Geometry, tool: {tool} with diameter: {dia}" msgstr "[WARNING] Editing MultiGeo Geometry, tool: {tool} with diameter: {dia}" -#: flatcamEditors/FlatCAMGeoEditor.py:3546 +#: flatcamEditors/FlatCAMGeoEditor.py:3618 msgid "[WARNING_NOTCL] Copy cancelled. No shape selected." msgstr "[WARNING_NOTCL] Copy cancelled. No shape selected." -#: flatcamEditors/FlatCAMGeoEditor.py:3553 flatcamGUI/FlatCAMGUI.py:2686 -#: flatcamGUI/FlatCAMGUI.py:2732 flatcamGUI/FlatCAMGUI.py:2750 -#: flatcamGUI/FlatCAMGUI.py:2881 flatcamGUI/FlatCAMGUI.py:2893 -#: flatcamGUI/FlatCAMGUI.py:2927 +#: flatcamEditors/FlatCAMGeoEditor.py:3625 flatcamGUI/FlatCAMGUI.py:2710 +#: flatcamGUI/FlatCAMGUI.py:2756 flatcamGUI/FlatCAMGUI.py:2774 +#: flatcamGUI/FlatCAMGUI.py:2905 flatcamGUI/FlatCAMGUI.py:2917 +#: flatcamGUI/FlatCAMGUI.py:2951 msgid "Click on target point." msgstr "Click on target point." -#: flatcamEditors/FlatCAMGeoEditor.py:3796 +#: flatcamEditors/FlatCAMGeoEditor.py:3868 +#: flatcamEditors/FlatCAMGeoEditor.py:3902 msgid "" "[WARNING_NOTCL] A selection of at least 2 geo items is required to do " "Intersection." @@ -2988,9 +2963,9 @@ msgstr "" "[WARNING_NOTCL] A selection of at least 2 geo items is required to do " "Intersection." -#: flatcamEditors/FlatCAMGeoEditor.py:3834 -#: flatcamEditors/FlatCAMGeoEditor.py:3871 -#: flatcamEditors/FlatCAMGeoEditor.py:3947 +#: flatcamEditors/FlatCAMGeoEditor.py:3986 +#: flatcamEditors/FlatCAMGeoEditor.py:4023 +#: flatcamEditors/FlatCAMGeoEditor.py:4099 msgid "" "[ERROR_NOTCL] Negative buffer value is not accepted. Use Buffer interior to " "generate an 'inside' shape" @@ -2998,52 +2973,52 @@ msgstr "" "[ERROR_NOTCL] Negative buffer value is not accepted. Use Buffer interior to " "generate an 'inside' shape" -#: flatcamEditors/FlatCAMGeoEditor.py:3842 -#: flatcamEditors/FlatCAMGeoEditor.py:3880 -#: flatcamEditors/FlatCAMGeoEditor.py:3955 +#: flatcamEditors/FlatCAMGeoEditor.py:3994 +#: flatcamEditors/FlatCAMGeoEditor.py:4032 +#: flatcamEditors/FlatCAMGeoEditor.py:4107 msgid "[WARNING_NOTCL] Nothing selected for buffering." msgstr "[WARNING_NOTCL] Nothing selected for buffering." -#: flatcamEditors/FlatCAMGeoEditor.py:3846 -#: flatcamEditors/FlatCAMGeoEditor.py:3884 -#: flatcamEditors/FlatCAMGeoEditor.py:3959 +#: flatcamEditors/FlatCAMGeoEditor.py:3998 +#: flatcamEditors/FlatCAMGeoEditor.py:4036 +#: flatcamEditors/FlatCAMGeoEditor.py:4111 msgid "[WARNING_NOTCL] Invalid distance for buffering." msgstr "[WARNING_NOTCL] Invalid distance for buffering." -#: flatcamEditors/FlatCAMGeoEditor.py:3856 -#: flatcamEditors/FlatCAMGeoEditor.py:3968 +#: flatcamEditors/FlatCAMGeoEditor.py:4008 +#: flatcamEditors/FlatCAMGeoEditor.py:4120 msgid "" "[ERROR_NOTCL] Failed, the result is empty. Choose a different buffer value." msgstr "" "[ERROR_NOTCL] Failed, the result is empty. Choose a different buffer value." -#: flatcamEditors/FlatCAMGeoEditor.py:3864 +#: flatcamEditors/FlatCAMGeoEditor.py:4016 msgid "[success] Full buffer geometry created." msgstr "[success] Full buffer geometry created." -#: flatcamEditors/FlatCAMGeoEditor.py:3894 +#: flatcamEditors/FlatCAMGeoEditor.py:4046 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:3909 +#: flatcamEditors/FlatCAMGeoEditor.py:4061 msgid "[success] Interior buffer geometry created." msgstr "[success] Interior buffer geometry created." -#: flatcamEditors/FlatCAMGeoEditor.py:3980 +#: flatcamEditors/FlatCAMGeoEditor.py:4132 msgid "[success] Exterior buffer geometry created." msgstr "[success] Exterior buffer geometry created." -#: flatcamEditors/FlatCAMGeoEditor.py:4044 +#: flatcamEditors/FlatCAMGeoEditor.py:4196 msgid "[WARNING_NOTCL] Nothing selected for painting." msgstr "[WARNING_NOTCL] Nothing selected for painting." -#: flatcamEditors/FlatCAMGeoEditor.py:4050 +#: flatcamEditors/FlatCAMGeoEditor.py:4202 msgid "[WARNING] Invalid value for {}" msgstr "[WARNING] Invalid value for {}" -#: flatcamEditors/FlatCAMGeoEditor.py:4056 +#: flatcamEditors/FlatCAMGeoEditor.py:4208 msgid "" "[ERROR_NOTCL] Could not do Paint. Overlap value has to be less than 1.00 " "(100%)." @@ -3051,7 +3026,7 @@ msgstr "" "[ERROR_NOTCL] Could not do Paint. Overlap value has to be less than 1.00 " "(100%)." -#: flatcamEditors/FlatCAMGeoEditor.py:4115 +#: flatcamEditors/FlatCAMGeoEditor.py:4267 #, python-format msgid "" "[ERROR] Could not do Paint. Try a different combination of parameters. Or a " @@ -3062,7 +3037,7 @@ msgstr "" "different method of Paint\n" "%s" -#: flatcamEditors/FlatCAMGeoEditor.py:4126 +#: flatcamEditors/FlatCAMGeoEditor.py:4278 msgid "[success] Paint done." msgstr "[success] Paint done." @@ -3174,73 +3149,73 @@ msgstr "Track Mode 4: Reverse 90 degrees ..." msgid "Track Mode 5: Free angle ..." msgstr "Track Mode 5: Free angle ..." -#: flatcamEditors/FlatCAMGrbEditor.py:1360 +#: flatcamEditors/FlatCAMGrbEditor.py:1367 msgid "Scale the selected Gerber apertures ..." msgstr "Scale the selected Gerber apertures ..." -#: flatcamEditors/FlatCAMGrbEditor.py:1402 +#: flatcamEditors/FlatCAMGrbEditor.py:1409 msgid "Buffer the selected apertures ..." msgstr "Buffer the selected apertures ..." -#: flatcamEditors/FlatCAMGrbEditor.py:1503 +#: flatcamEditors/FlatCAMGrbEditor.py:1510 msgid "[success] Done. Apertures Move completed." msgstr "[success] Done. Apertures Move completed." -#: flatcamEditors/FlatCAMGrbEditor.py:1558 +#: flatcamEditors/FlatCAMGrbEditor.py:1565 msgid "[success] Done. Apertures copied." msgstr "[success] Done. Apertures copied." -#: flatcamEditors/FlatCAMGrbEditor.py:1698 flatcamGUI/FlatCAMGUI.py:1574 +#: flatcamEditors/FlatCAMGrbEditor.py:1708 flatcamGUI/FlatCAMGUI.py:1590 msgid "Gerber Editor" msgstr "Gerber Editor" -#: flatcamEditors/FlatCAMGrbEditor.py:1717 flatcamGUI/ObjectUI.py:192 +#: flatcamEditors/FlatCAMGrbEditor.py:1727 flatcamGUI/ObjectUI.py:192 msgid "Apertures:" msgstr "Apertures:" -#: flatcamEditors/FlatCAMGrbEditor.py:1719 flatcamGUI/ObjectUI.py:194 +#: flatcamEditors/FlatCAMGrbEditor.py:1729 flatcamGUI/ObjectUI.py:194 msgid "Apertures Table for the Gerber Object." msgstr "Apertures Table for the Gerber Object." -#: flatcamEditors/FlatCAMGrbEditor.py:1730 -#: flatcamEditors/FlatCAMGrbEditor.py:2927 flatcamGUI/ObjectUI.py:228 +#: flatcamEditors/FlatCAMGrbEditor.py:1740 +#: flatcamEditors/FlatCAMGrbEditor.py:3007 flatcamGUI/ObjectUI.py:228 msgid "Code" msgstr "Code" -#: flatcamEditors/FlatCAMGrbEditor.py:1730 -#: flatcamEditors/FlatCAMGrbEditor.py:2927 flatcamGUI/ObjectUI.py:228 +#: flatcamEditors/FlatCAMGrbEditor.py:1740 +#: flatcamEditors/FlatCAMGrbEditor.py:3007 flatcamGUI/ObjectUI.py:228 #: flatcamGUI/ObjectUI.py:888 flatcamGUI/ObjectUI.py:1446 msgid "Type" msgstr "Type" -#: flatcamEditors/FlatCAMGrbEditor.py:1730 -#: flatcamEditors/FlatCAMGrbEditor.py:2927 flatcamGUI/ObjectUI.py:228 +#: flatcamEditors/FlatCAMGrbEditor.py:1740 +#: flatcamEditors/FlatCAMGrbEditor.py:3007 flatcamGUI/ObjectUI.py:228 msgid "Size" msgstr "Size" -#: flatcamEditors/FlatCAMGrbEditor.py:1730 -#: flatcamEditors/FlatCAMGrbEditor.py:2927 flatcamGUI/ObjectUI.py:228 +#: flatcamEditors/FlatCAMGrbEditor.py:1740 +#: flatcamEditors/FlatCAMGrbEditor.py:3007 flatcamGUI/ObjectUI.py:228 msgid "Dim" msgstr "Dim" -#: flatcamEditors/FlatCAMGrbEditor.py:1734 flatcamGUI/ObjectUI.py:232 +#: flatcamEditors/FlatCAMGrbEditor.py:1744 flatcamGUI/ObjectUI.py:232 msgid "Index" msgstr "Index" -#: flatcamEditors/FlatCAMGrbEditor.py:1736 flatcamGUI/ObjectUI.py:234 +#: flatcamEditors/FlatCAMGrbEditor.py:1746 flatcamGUI/ObjectUI.py:234 msgid "Aperture Code" msgstr "Aperture Code" -#: flatcamEditors/FlatCAMGrbEditor.py:1738 flatcamGUI/ObjectUI.py:236 +#: flatcamEditors/FlatCAMGrbEditor.py:1748 flatcamGUI/ObjectUI.py:236 msgid "Type of aperture: circular, rectangle, macros etc" msgstr "Type of aperture: circular, rectangle, macros etc" -#: flatcamEditors/FlatCAMGrbEditor.py:1740 -#: flatcamEditors/FlatCAMGrbEditor.py:1773 flatcamGUI/ObjectUI.py:238 +#: flatcamEditors/FlatCAMGrbEditor.py:1750 +#: flatcamEditors/FlatCAMGrbEditor.py:1783 flatcamGUI/ObjectUI.py:238 msgid "Aperture Size:" msgstr "Aperture Size:" -#: flatcamEditors/FlatCAMGrbEditor.py:1742 flatcamGUI/ObjectUI.py:240 +#: flatcamEditors/FlatCAMGrbEditor.py:1752 flatcamGUI/ObjectUI.py:240 msgid "" "Aperture Dimensions:\n" " - (width, height) for R, O type.\n" @@ -3250,15 +3225,15 @@ msgstr "" " - (width, height) for R, O type.\n" " - (dia, nVertices) for P type" -#: flatcamEditors/FlatCAMGrbEditor.py:1763 +#: flatcamEditors/FlatCAMGrbEditor.py:1773 msgid "Aperture Code:" msgstr "Aperture Code:" -#: flatcamEditors/FlatCAMGrbEditor.py:1765 +#: flatcamEditors/FlatCAMGrbEditor.py:1775 msgid "Code for the new aperture" msgstr "Code for the new aperture" -#: flatcamEditors/FlatCAMGrbEditor.py:1775 +#: flatcamEditors/FlatCAMGrbEditor.py:1785 msgid "" "Size for the new aperture.\n" "If aperture type is 'R' or 'O' then\n" @@ -3272,11 +3247,11 @@ msgstr "" "calculated as:\n" "sqrt(width**2 + height**2)" -#: flatcamEditors/FlatCAMGrbEditor.py:1787 +#: flatcamEditors/FlatCAMGrbEditor.py:1797 msgid "Aperture Type:" msgstr "Aperture Type:" -#: flatcamEditors/FlatCAMGrbEditor.py:1789 +#: flatcamEditors/FlatCAMGrbEditor.py:1799 msgid "" "Select the type of new aperture. Can be:\n" "C = circular\n" @@ -3288,11 +3263,11 @@ msgstr "" "R = rectangular\n" "O = oblong" -#: flatcamEditors/FlatCAMGrbEditor.py:1800 +#: flatcamEditors/FlatCAMGrbEditor.py:1810 msgid "Aperture Dim:" msgstr "Aperture Dim:" -#: flatcamEditors/FlatCAMGrbEditor.py:1802 +#: flatcamEditors/FlatCAMGrbEditor.py:1812 msgid "" "Dimensions for the new aperture.\n" "Active only for rectangular apertures (type R).\n" @@ -3302,31 +3277,31 @@ msgstr "" "Active only for rectangular apertures (type R).\n" "The format is (width, height)" -#: flatcamEditors/FlatCAMGrbEditor.py:1811 +#: flatcamEditors/FlatCAMGrbEditor.py:1821 msgid "Add/Delete Aperture:" msgstr "Add/Delete Aperture:" -#: flatcamEditors/FlatCAMGrbEditor.py:1813 +#: flatcamEditors/FlatCAMGrbEditor.py:1823 msgid "Add/Delete an aperture in the aperture table" msgstr "Add/Delete an aperture in the aperture table" -#: flatcamEditors/FlatCAMGrbEditor.py:1822 +#: flatcamEditors/FlatCAMGrbEditor.py:1832 msgid "Add a new aperture to the aperture list." msgstr "Add a new aperture to the aperture list." -#: flatcamEditors/FlatCAMGrbEditor.py:1827 +#: flatcamEditors/FlatCAMGrbEditor.py:1837 msgid "Delete a aperture in the aperture list" msgstr "Delete a aperture in the aperture list" -#: flatcamEditors/FlatCAMGrbEditor.py:1843 +#: flatcamEditors/FlatCAMGrbEditor.py:1853 msgid "Buffer Aperture:" msgstr "Buffer Aperture:" -#: flatcamEditors/FlatCAMGrbEditor.py:1845 +#: flatcamEditors/FlatCAMGrbEditor.py:1855 msgid "Buffer a aperture in the aperture list" msgstr "Buffer a aperture in the aperture list" -#: flatcamEditors/FlatCAMGrbEditor.py:1858 +#: flatcamEditors/FlatCAMGrbEditor.py:1868 msgid "" "There are 3 types of corners:\n" " - 'Round': the corner is rounded.\n" @@ -3340,24 +3315,24 @@ msgstr "" " - 'Beveled:' the corner is a line that directly connects the features " "meeting in the corner" -#: flatcamEditors/FlatCAMGrbEditor.py:1873 flatcamGUI/FlatCAMGUI.py:707 -#: flatcamGUI/FlatCAMGUI.py:1911 +#: flatcamEditors/FlatCAMGrbEditor.py:1883 flatcamGUI/FlatCAMGUI.py:708 +#: flatcamGUI/FlatCAMGUI.py:1929 msgid "Buffer" msgstr "Buffer" -#: flatcamEditors/FlatCAMGrbEditor.py:1887 +#: flatcamEditors/FlatCAMGrbEditor.py:1897 msgid "Scale Aperture:" msgstr "Scale Aperture:" -#: flatcamEditors/FlatCAMGrbEditor.py:1889 +#: flatcamEditors/FlatCAMGrbEditor.py:1899 msgid "Scale a aperture in the aperture list" msgstr "Scale a aperture in the aperture list" -#: flatcamEditors/FlatCAMGrbEditor.py:1897 +#: flatcamEditors/FlatCAMGrbEditor.py:1907 msgid "Scale factor:" msgstr "Scale factor:" -#: flatcamEditors/FlatCAMGrbEditor.py:1899 +#: flatcamEditors/FlatCAMGrbEditor.py:1909 msgid "" "The factor by which to scale the selected aperture.\n" "Values can be between 0.0000 and 999.9999" @@ -3365,16 +3340,16 @@ msgstr "" "The factor by which to scale the selected aperture.\n" "Values can be between 0.0000 and 999.9999" -#: flatcamEditors/FlatCAMGrbEditor.py:1927 flatcamGUI/FlatCAMGUI.py:696 -#: flatcamGUI/FlatCAMGUI.py:1906 +#: flatcamEditors/FlatCAMGrbEditor.py:1937 flatcamGUI/FlatCAMGUI.py:698 +#: flatcamGUI/FlatCAMGUI.py:1919 msgid "Add Pad Array" msgstr "Add Pad Array" -#: flatcamEditors/FlatCAMGrbEditor.py:1929 +#: flatcamEditors/FlatCAMGrbEditor.py:1939 msgid "Add an array of pads (linear or circular array)" msgstr "Add an array of pads (linear or circular array)" -#: flatcamEditors/FlatCAMGrbEditor.py:1935 +#: flatcamEditors/FlatCAMGrbEditor.py:1945 msgid "" "Select the type of pads array to create.\n" "It can be Linear X(Y) or Circular" @@ -3382,16 +3357,16 @@ msgstr "" "Select the type of pads array to create.\n" "It can be Linear X(Y) or Circular" -#: flatcamEditors/FlatCAMGrbEditor.py:1946 +#: flatcamEditors/FlatCAMGrbEditor.py:1956 msgid "Nr of pads:" msgstr "Nr of pads:" -#: flatcamEditors/FlatCAMGrbEditor.py:1948 +#: flatcamEditors/FlatCAMGrbEditor.py:1958 msgid "Specify how many pads to be in the array." msgstr "Specify how many pads to be in the array." -#: flatcamEditors/FlatCAMGrbEditor.py:2420 -#: flatcamEditors/FlatCAMGrbEditor.py:2424 +#: flatcamEditors/FlatCAMGrbEditor.py:2431 +#: flatcamEditors/FlatCAMGrbEditor.py:2435 msgid "" "[WARNING_NOTCL] Aperture code value is missing or wrong format. Add it and " "retry." @@ -3399,7 +3374,7 @@ msgstr "" "[WARNING_NOTCL] Aperture code value is missing or wrong format. Add it and " "retry." -#: flatcamEditors/FlatCAMGrbEditor.py:2461 +#: flatcamEditors/FlatCAMGrbEditor.py:2472 msgid "" "[WARNING_NOTCL] Aperture dimensions value is missing or wrong format. Add it " "in format (width, height) and retry." @@ -3407,7 +3382,7 @@ msgstr "" "[WARNING_NOTCL] Aperture dimensions value is missing or wrong format. Add it " "in format (width, height) and retry." -#: flatcamEditors/FlatCAMGrbEditor.py:2473 +#: flatcamEditors/FlatCAMGrbEditor.py:2484 msgid "" "[WARNING_NOTCL] Aperture size value is missing or wrong format. Add it and " "retry." @@ -3415,31 +3390,31 @@ msgstr "" "[WARNING_NOTCL] Aperture size value is missing or wrong format. Add it and " "retry." -#: flatcamEditors/FlatCAMGrbEditor.py:2485 +#: flatcamEditors/FlatCAMGrbEditor.py:2496 msgid "[WARNING_NOTCL] Aperture already in the aperture table." msgstr "[WARNING_NOTCL] Aperture already in the aperture table." -#: flatcamEditors/FlatCAMGrbEditor.py:2492 +#: flatcamEditors/FlatCAMGrbEditor.py:2503 #, python-brace-format msgid "[success] Added new aperture with code: {apid}" msgstr "[success] Added new aperture with code: {apid}" -#: flatcamEditors/FlatCAMGrbEditor.py:2521 -#: flatcamEditors/FlatCAMGrbEditor.py:2527 +#: flatcamEditors/FlatCAMGrbEditor.py:2532 +#: flatcamEditors/FlatCAMGrbEditor.py:2538 msgid "[WARNING_NOTCL] Select an aperture in Aperture Table" msgstr "[WARNING_NOTCL] Select an aperture in Aperture Table" -#: flatcamEditors/FlatCAMGrbEditor.py:2550 +#: flatcamEditors/FlatCAMGrbEditor.py:2561 #, python-brace-format msgid "[success] Deleted aperture with code: {del_dia}" msgstr "[success] Deleted aperture with code: {del_dia}" -#: flatcamEditors/FlatCAMGrbEditor.py:2851 +#: flatcamEditors/FlatCAMGrbEditor.py:2931 #, python-format msgid "Adding aperture: %s geo ..." msgstr "Adding aperture: %s geo ..." -#: flatcamEditors/FlatCAMGrbEditor.py:3015 +#: flatcamEditors/FlatCAMGrbEditor.py:3095 msgid "" "[ERROR_NOTCL] There are no Aperture definitions in the file. Aborting Gerber " "creation." @@ -3447,27 +3422,27 @@ msgstr "" "[ERROR_NOTCL] There are no Aperture definitions in the file. Aborting Gerber " "creation." -#: flatcamEditors/FlatCAMGrbEditor.py:3024 +#: flatcamEditors/FlatCAMGrbEditor.py:3104 msgid "Creating Gerber." msgstr "Creating Gerber." -#: flatcamEditors/FlatCAMGrbEditor.py:3032 +#: flatcamEditors/FlatCAMGrbEditor.py:3112 msgid "[success] Gerber editing finished." msgstr "[success] Gerber editing finished." -#: flatcamEditors/FlatCAMGrbEditor.py:3049 +#: flatcamEditors/FlatCAMGrbEditor.py:3129 msgid "[WARNING_NOTCL] Cancelled. No aperture is selected" msgstr "[WARNING_NOTCL] Cancelled. No aperture is selected" -#: flatcamEditors/FlatCAMGrbEditor.py:3549 +#: flatcamEditors/FlatCAMGrbEditor.py:3649 msgid "[ERROR_NOTCL] Failed. No aperture geometry is selected." msgstr "[ERROR_NOTCL] Failed. No aperture geometry is selected." -#: flatcamEditors/FlatCAMGrbEditor.py:3557 +#: flatcamEditors/FlatCAMGrbEditor.py:3657 msgid "[success] Done. Apertures geometry deleted." msgstr "[success] Done. Apertures geometry deleted." -#: flatcamEditors/FlatCAMGrbEditor.py:3694 +#: flatcamEditors/FlatCAMGrbEditor.py:3792 msgid "" "[WARNING_NOTCL] No aperture to buffer. Select at least one aperture and try " "again." @@ -3475,7 +3450,7 @@ msgstr "" "[WARNING_NOTCL] No aperture to buffer. Select at least one aperture and try " "again." -#: flatcamEditors/FlatCAMGrbEditor.py:3723 +#: flatcamEditors/FlatCAMGrbEditor.py:3821 msgid "" "[WARNING_NOTCL] Scale factor value is missing or wrong format. Add it and " "retry." @@ -3483,7 +3458,7 @@ msgstr "" "[WARNING_NOTCL] Scale factor value is missing or wrong format. Add it and " "retry." -#: flatcamEditors/FlatCAMGrbEditor.py:3741 +#: flatcamEditors/FlatCAMGrbEditor.py:3839 msgid "" "[WARNING_NOTCL] No aperture to scale. Select at least one aperture and try " "again." @@ -3491,7 +3466,7 @@ msgstr "" "[WARNING_NOTCL] No aperture to scale. Select at least one aperture and try " "again." -#: flatcamEditors/FlatCAMGrbEditor.py:3757 +#: flatcamEditors/FlatCAMGrbEditor.py:3855 msgid "[success] Done. Scale Tool completed." msgstr "[success] Done. Scale Tool completed." @@ -4053,11 +4028,11 @@ msgstr "Generate CNC" msgid "View Source" msgstr "View Source" -#: flatcamGUI/FlatCAMGUI.py:517 flatcamGUI/FlatCAMGUI.py:1592 +#: flatcamGUI/FlatCAMGUI.py:517 flatcamGUI/FlatCAMGUI.py:1603 msgid "Edit" msgstr "Edit" -#: flatcamGUI/FlatCAMGUI.py:523 flatcamGUI/FlatCAMGUI.py:1598 +#: flatcamGUI/FlatCAMGUI.py:523 flatcamGUI/FlatCAMGUI.py:1609 #: flatcamTools/ToolProperties.py:25 msgid "Properties" msgstr "Properties" @@ -4098,15 +4073,15 @@ msgstr "Gerber Editor Toolbar" msgid "Grid Toolbar" msgstr "Grid Toolbar" -#: flatcamGUI/FlatCAMGUI.py:603 flatcamGUI/FlatCAMGUI.py:1809 +#: flatcamGUI/FlatCAMGUI.py:603 flatcamGUI/FlatCAMGUI.py:1820 msgid "Open project" msgstr "Open project" -#: flatcamGUI/FlatCAMGUI.py:604 flatcamGUI/FlatCAMGUI.py:1810 +#: flatcamGUI/FlatCAMGUI.py:604 flatcamGUI/FlatCAMGUI.py:1821 msgid "Save project" msgstr "Save project" -#: flatcamGUI/FlatCAMGUI.py:607 flatcamGUI/FlatCAMGUI.py:1813 +#: flatcamGUI/FlatCAMGUI.py:607 flatcamGUI/FlatCAMGUI.py:1824 msgid "New Blank Geometry" msgstr "New Blank Geometry" @@ -4114,215 +4089,220 @@ msgstr "New Blank Geometry" msgid "New Blank Gerber" msgstr "New Blank Gerber" -#: flatcamGUI/FlatCAMGUI.py:609 flatcamGUI/FlatCAMGUI.py:1814 +#: flatcamGUI/FlatCAMGUI.py:609 flatcamGUI/FlatCAMGUI.py:1825 msgid "New Blank Excellon" msgstr "New Blank Excellon" -#: flatcamGUI/FlatCAMGUI.py:611 flatcamGUI/FlatCAMGUI.py:1816 +#: flatcamGUI/FlatCAMGUI.py:611 flatcamGUI/FlatCAMGUI.py:1827 msgid "Editor" msgstr "Editor" -#: flatcamGUI/FlatCAMGUI.py:613 flatcamGUI/FlatCAMGUI.py:1818 +#: flatcamGUI/FlatCAMGUI.py:613 flatcamGUI/FlatCAMGUI.py:1829 msgid "Save Object and close the Editor" msgstr "Save Object and close the Editor" -#: flatcamGUI/FlatCAMGUI.py:617 flatcamGUI/FlatCAMGUI.py:1822 +#: flatcamGUI/FlatCAMGUI.py:617 flatcamGUI/FlatCAMGUI.py:1833 msgid "&Delete" msgstr "&Delete" -#: flatcamGUI/FlatCAMGUI.py:620 flatcamGUI/FlatCAMGUI.py:1825 +#: flatcamGUI/FlatCAMGUI.py:620 flatcamGUI/FlatCAMGUI.py:1836 msgid "&Replot" msgstr "&Replot" -#: flatcamGUI/FlatCAMGUI.py:621 flatcamGUI/FlatCAMGUI.py:1826 +#: flatcamGUI/FlatCAMGUI.py:621 flatcamGUI/FlatCAMGUI.py:1837 msgid "&Clear plot" msgstr "&Clear plot" -#: flatcamGUI/FlatCAMGUI.py:622 flatcamGUI/FlatCAMGUI.py:1827 +#: flatcamGUI/FlatCAMGUI.py:622 flatcamGUI/FlatCAMGUI.py:1838 msgid "Zoom In" msgstr "Zoom In" -#: flatcamGUI/FlatCAMGUI.py:623 flatcamGUI/FlatCAMGUI.py:1828 +#: flatcamGUI/FlatCAMGUI.py:623 flatcamGUI/FlatCAMGUI.py:1839 msgid "Zoom Out" msgstr "Zoom Out" -#: flatcamGUI/FlatCAMGUI.py:624 flatcamGUI/FlatCAMGUI.py:1562 -#: flatcamGUI/FlatCAMGUI.py:1829 +#: flatcamGUI/FlatCAMGUI.py:624 flatcamGUI/FlatCAMGUI.py:1578 +#: flatcamGUI/FlatCAMGUI.py:1840 msgid "Zoom Fit" msgstr "Zoom Fit" -#: flatcamGUI/FlatCAMGUI.py:629 flatcamGUI/FlatCAMGUI.py:1834 +#: flatcamGUI/FlatCAMGUI.py:629 flatcamGUI/FlatCAMGUI.py:1845 msgid "&Command Line" msgstr "&Command Line" -#: flatcamGUI/FlatCAMGUI.py:632 flatcamGUI/FlatCAMGUI.py:1837 +#: flatcamGUI/FlatCAMGUI.py:632 flatcamGUI/FlatCAMGUI.py:1848 msgid "2Sided Tool" msgstr "2Sided Tool" -#: flatcamGUI/FlatCAMGUI.py:633 flatcamGUI/FlatCAMGUI.py:1838 +#: flatcamGUI/FlatCAMGUI.py:633 flatcamGUI/FlatCAMGUI.py:1849 msgid "&Cutout Tool" msgstr "&Cutout Tool" -#: flatcamGUI/FlatCAMGUI.py:634 flatcamGUI/FlatCAMGUI.py:1839 +#: flatcamGUI/FlatCAMGUI.py:634 flatcamGUI/FlatCAMGUI.py:1850 #: flatcamGUI/ObjectUI.py:392 flatcamTools/ToolNonCopperClear.py:285 msgid "NCC Tool" msgstr "NCC Tool" -#: flatcamGUI/FlatCAMGUI.py:638 flatcamGUI/FlatCAMGUI.py:1843 +#: flatcamGUI/FlatCAMGUI.py:638 flatcamGUI/FlatCAMGUI.py:1854 msgid "Panel Tool" msgstr "Panel Tool" -#: flatcamGUI/FlatCAMGUI.py:639 flatcamGUI/FlatCAMGUI.py:1844 +#: flatcamGUI/FlatCAMGUI.py:639 flatcamGUI/FlatCAMGUI.py:1855 #: flatcamTools/ToolFilm.py:204 msgid "Film Tool" msgstr "Film Tool" -#: flatcamGUI/FlatCAMGUI.py:640 flatcamGUI/FlatCAMGUI.py:1846 +#: flatcamGUI/FlatCAMGUI.py:640 flatcamGUI/FlatCAMGUI.py:1857 msgid "SolderPaste Tool" msgstr "SolderPaste Tool" -#: flatcamGUI/FlatCAMGUI.py:643 flatcamGUI/FlatCAMGUI.py:1850 +#: flatcamGUI/FlatCAMGUI.py:641 flatcamGUI/FlatCAMGUI.py:1858 +#: flatcamTools/ToolSub.py:26 +msgid "Substract Tool" +msgstr "Substract Tool" + +#: flatcamGUI/FlatCAMGUI.py:645 flatcamGUI/FlatCAMGUI.py:1863 msgid "Calculators Tool" msgstr "Calculators Tool" -#: flatcamGUI/FlatCAMGUI.py:647 flatcamGUI/FlatCAMGUI.py:661 -#: flatcamGUI/FlatCAMGUI.py:694 flatcamGUI/FlatCAMGUI.py:1854 -#: flatcamGUI/FlatCAMGUI.py:1904 +#: flatcamGUI/FlatCAMGUI.py:649 flatcamGUI/FlatCAMGUI.py:663 +#: flatcamGUI/FlatCAMGUI.py:696 flatcamGUI/FlatCAMGUI.py:1867 +#: flatcamGUI/FlatCAMGUI.py:1917 msgid "Select" msgstr "Select" -#: flatcamGUI/FlatCAMGUI.py:648 flatcamGUI/FlatCAMGUI.py:1855 +#: flatcamGUI/FlatCAMGUI.py:650 flatcamGUI/FlatCAMGUI.py:1868 msgid "Add Drill Hole" msgstr "Add Drill Hole" -#: flatcamGUI/FlatCAMGUI.py:650 flatcamGUI/FlatCAMGUI.py:1857 +#: flatcamGUI/FlatCAMGUI.py:652 flatcamGUI/FlatCAMGUI.py:1870 msgid "Add Drill Hole Array" msgstr "Add Drill Hole Array" -#: flatcamGUI/FlatCAMGUI.py:651 flatcamGUI/FlatCAMGUI.py:1858 +#: flatcamGUI/FlatCAMGUI.py:653 flatcamGUI/FlatCAMGUI.py:1871 msgid "Resize Drill" msgstr "Resize Drill" -#: flatcamGUI/FlatCAMGUI.py:654 flatcamGUI/FlatCAMGUI.py:1861 +#: flatcamGUI/FlatCAMGUI.py:656 flatcamGUI/FlatCAMGUI.py:1874 msgid "Copy Drill" msgstr "Copy Drill" -#: flatcamGUI/FlatCAMGUI.py:655 flatcamGUI/FlatCAMGUI.py:1863 +#: flatcamGUI/FlatCAMGUI.py:657 flatcamGUI/FlatCAMGUI.py:1876 msgid "Delete Drill" msgstr "Delete Drill" -#: flatcamGUI/FlatCAMGUI.py:658 flatcamGUI/FlatCAMGUI.py:1866 +#: flatcamGUI/FlatCAMGUI.py:660 flatcamGUI/FlatCAMGUI.py:1879 msgid "Move Drill" msgstr "Move Drill" -#: flatcamGUI/FlatCAMGUI.py:662 flatcamGUI/FlatCAMGUI.py:1870 +#: flatcamGUI/FlatCAMGUI.py:664 flatcamGUI/FlatCAMGUI.py:1883 msgid "Add Circle" msgstr "Add Circle" -#: flatcamGUI/FlatCAMGUI.py:663 flatcamGUI/FlatCAMGUI.py:1871 +#: flatcamGUI/FlatCAMGUI.py:665 flatcamGUI/FlatCAMGUI.py:1884 msgid "Add Arc" msgstr "Add Arc" -#: flatcamGUI/FlatCAMGUI.py:665 flatcamGUI/FlatCAMGUI.py:1873 +#: flatcamGUI/FlatCAMGUI.py:667 flatcamGUI/FlatCAMGUI.py:1886 msgid "Add Rectangle" msgstr "Add Rectangle" -#: flatcamGUI/FlatCAMGUI.py:668 flatcamGUI/FlatCAMGUI.py:1876 +#: flatcamGUI/FlatCAMGUI.py:670 flatcamGUI/FlatCAMGUI.py:1889 msgid "Add Path" msgstr "Add Path" -#: flatcamGUI/FlatCAMGUI.py:669 flatcamGUI/FlatCAMGUI.py:1878 +#: flatcamGUI/FlatCAMGUI.py:671 flatcamGUI/FlatCAMGUI.py:1891 msgid "Add Polygon" msgstr "Add Polygon" -#: flatcamGUI/FlatCAMGUI.py:671 flatcamGUI/FlatCAMGUI.py:1880 +#: flatcamGUI/FlatCAMGUI.py:673 flatcamGUI/FlatCAMGUI.py:1893 msgid "Add Text" msgstr "Add Text" -#: flatcamGUI/FlatCAMGUI.py:672 flatcamGUI/FlatCAMGUI.py:1882 +#: flatcamGUI/FlatCAMGUI.py:674 flatcamGUI/FlatCAMGUI.py:1895 msgid "Add Buffer" msgstr "Add Buffer" -#: flatcamGUI/FlatCAMGUI.py:673 flatcamGUI/FlatCAMGUI.py:1883 +#: flatcamGUI/FlatCAMGUI.py:675 flatcamGUI/FlatCAMGUI.py:1896 msgid "Paint Shape" msgstr "Paint Shape" -#: flatcamGUI/FlatCAMGUI.py:676 flatcamGUI/FlatCAMGUI.py:1886 +#: flatcamGUI/FlatCAMGUI.py:678 flatcamGUI/FlatCAMGUI.py:1899 msgid "Polygon Union" msgstr "Polygon Union" -#: flatcamGUI/FlatCAMGUI.py:678 flatcamGUI/FlatCAMGUI.py:1888 +#: flatcamGUI/FlatCAMGUI.py:680 flatcamGUI/FlatCAMGUI.py:1901 msgid "Polygon Intersection" msgstr "Polygon Intersection" -#: flatcamGUI/FlatCAMGUI.py:680 flatcamGUI/FlatCAMGUI.py:1890 +#: flatcamGUI/FlatCAMGUI.py:682 flatcamGUI/FlatCAMGUI.py:1903 msgid "Polygon Subtraction" msgstr "Polygon Subtraction" -#: flatcamGUI/FlatCAMGUI.py:683 flatcamGUI/FlatCAMGUI.py:1893 +#: flatcamGUI/FlatCAMGUI.py:685 flatcamGUI/FlatCAMGUI.py:1906 msgid "Cut Path" msgstr "Cut Path" -#: flatcamGUI/FlatCAMGUI.py:684 +#: flatcamGUI/FlatCAMGUI.py:686 msgid "Copy Shape(s)" msgstr "Copy Shape(s)" -#: flatcamGUI/FlatCAMGUI.py:687 +#: flatcamGUI/FlatCAMGUI.py:689 msgid "Delete Shape '-'" msgstr "Delete Shape '-'" -#: flatcamGUI/FlatCAMGUI.py:689 flatcamGUI/FlatCAMGUI.py:714 -#: flatcamGUI/FlatCAMGUI.py:1898 flatcamGUI/FlatCAMGUI.py:1918 +#: flatcamGUI/FlatCAMGUI.py:691 flatcamGUI/FlatCAMGUI.py:715 +#: flatcamGUI/FlatCAMGUI.py:1911 flatcamGUI/FlatCAMGUI.py:1936 msgid "Transformations" msgstr "Transformations" -#: flatcamGUI/FlatCAMGUI.py:691 +#: flatcamGUI/FlatCAMGUI.py:693 msgid "Move Objects " msgstr "Move Objects " -#: flatcamGUI/FlatCAMGUI.py:695 flatcamGUI/FlatCAMGUI.py:1905 +#: flatcamGUI/FlatCAMGUI.py:697 flatcamGUI/FlatCAMGUI.py:1918 msgid "Add Pad" msgstr "Add Pad" -#: flatcamGUI/FlatCAMGUI.py:697 flatcamGUI/FlatCAMGUI.py:1907 +#: flatcamGUI/FlatCAMGUI.py:699 flatcamGUI/FlatCAMGUI.py:1920 msgid "Add Track" msgstr "Add Track" -#: flatcamGUI/FlatCAMGUI.py:698 flatcamGUI/FlatCAMGUI.py:1908 +#: flatcamGUI/FlatCAMGUI.py:700 flatcamGUI/FlatCAMGUI.py:1921 msgid "Add Region" msgstr "Add Region" -#: flatcamGUI/FlatCAMGUI.py:700 +#: flatcamGUI/FlatCAMGUI.py:702 flatcamGUI/FlatCAMGUI.py:1923 msgid "Poligonize" msgstr "Poligonize" -#: flatcamGUI/FlatCAMGUI.py:703 +#: flatcamGUI/FlatCAMGUI.py:704 flatcamGUI/FlatCAMGUI.py:1925 msgid "SemiDisc" msgstr "SemiDisc" -#: flatcamGUI/FlatCAMGUI.py:704 +#: flatcamGUI/FlatCAMGUI.py:705 flatcamGUI/FlatCAMGUI.py:1926 msgid "Disc" msgstr "Disc" -#: flatcamGUI/FlatCAMGUI.py:716 flatcamGUI/FlatCAMGUI.py:1572 -#: flatcamGUI/FlatCAMGUI.py:1582 flatcamGUI/FlatCAMGUI.py:1597 -#: flatcamGUI/FlatCAMGUI.py:1920 flatcamTools/ToolMove.py:26 +#: flatcamGUI/FlatCAMGUI.py:717 flatcamGUI/FlatCAMGUI.py:1588 +#: flatcamGUI/FlatCAMGUI.py:1608 flatcamGUI/FlatCAMGUI.py:1938 +#: flatcamTools/ToolMove.py:26 msgid "Move" msgstr "Move" -#: flatcamGUI/FlatCAMGUI.py:722 flatcamGUI/FlatCAMGUI.py:1926 +#: flatcamGUI/FlatCAMGUI.py:723 flatcamGUI/FlatCAMGUI.py:1944 msgid "Snap to grid" msgstr "Snap to grid" -#: flatcamGUI/FlatCAMGUI.py:725 flatcamGUI/FlatCAMGUI.py:1929 +#: flatcamGUI/FlatCAMGUI.py:726 flatcamGUI/FlatCAMGUI.py:1947 msgid "Grid X snapping distance" msgstr "Grid X snapping distance" -#: flatcamGUI/FlatCAMGUI.py:730 flatcamGUI/FlatCAMGUI.py:1934 +#: flatcamGUI/FlatCAMGUI.py:731 flatcamGUI/FlatCAMGUI.py:1952 msgid "Grid Y snapping distance" msgstr "Grid Y snapping distance" -#: flatcamGUI/FlatCAMGUI.py:736 flatcamGUI/FlatCAMGUI.py:1940 +#: flatcamGUI/FlatCAMGUI.py:737 flatcamGUI/FlatCAMGUI.py:1958 msgid "" "When active, value on Grid_X\n" "is copied to the Grid_Y value." @@ -4330,64 +4310,64 @@ msgstr "" "When active, value on Grid_X\n" "is copied to the Grid_Y value." -#: flatcamGUI/FlatCAMGUI.py:742 flatcamGUI/FlatCAMGUI.py:1946 +#: flatcamGUI/FlatCAMGUI.py:743 flatcamGUI/FlatCAMGUI.py:1964 msgid "Snap to corner" msgstr "Snap to corner" -#: flatcamGUI/FlatCAMGUI.py:746 flatcamGUI/FlatCAMGUI.py:1950 -#: flatcamGUI/FlatCAMGUI.py:3286 +#: flatcamGUI/FlatCAMGUI.py:747 flatcamGUI/FlatCAMGUI.py:1968 +#: flatcamGUI/FlatCAMGUI.py:3311 msgid "Max. magnet distance" msgstr "Max. magnet distance" -#: flatcamGUI/FlatCAMGUI.py:760 flatcamGUI/FlatCAMGUI.py:1556 +#: flatcamGUI/FlatCAMGUI.py:775 flatcamGUI/FlatCAMGUI.py:1572 msgid "Project" msgstr "Project" -#: flatcamGUI/FlatCAMGUI.py:769 +#: flatcamGUI/FlatCAMGUI.py:785 msgid "Selected" msgstr "Selected" -#: flatcamGUI/FlatCAMGUI.py:788 flatcamGUI/FlatCAMGUI.py:796 +#: flatcamGUI/FlatCAMGUI.py:804 flatcamGUI/FlatCAMGUI.py:812 msgid "Plot Area" msgstr "Plot Area" -#: flatcamGUI/FlatCAMGUI.py:820 +#: flatcamGUI/FlatCAMGUI.py:836 msgid "General" msgstr "General" -#: flatcamGUI/FlatCAMGUI.py:829 +#: flatcamGUI/FlatCAMGUI.py:845 msgid "APP. DEFAULTS" msgstr "APP. DEFAULTS" -#: flatcamGUI/FlatCAMGUI.py:830 +#: flatcamGUI/FlatCAMGUI.py:846 msgid "PROJ. OPTIONS " msgstr "PROJ. OPTIONS " -#: flatcamGUI/FlatCAMGUI.py:841 +#: flatcamGUI/FlatCAMGUI.py:857 msgid "GERBER" msgstr "GERBER" -#: flatcamGUI/FlatCAMGUI.py:850 +#: flatcamGUI/FlatCAMGUI.py:866 msgid "EXCELLON" msgstr "EXCELLON" -#: flatcamGUI/FlatCAMGUI.py:859 +#: flatcamGUI/FlatCAMGUI.py:875 msgid "GEOMETRY" msgstr "GEOMETRY" -#: flatcamGUI/FlatCAMGUI.py:869 +#: flatcamGUI/FlatCAMGUI.py:885 msgid "CNC-JOB" msgstr "CNC-JOB" -#: flatcamGUI/FlatCAMGUI.py:878 +#: flatcamGUI/FlatCAMGUI.py:894 msgid "TOOLS" msgstr "TOOLS" -#: flatcamGUI/FlatCAMGUI.py:895 +#: flatcamGUI/FlatCAMGUI.py:911 msgid "Import Preferences" msgstr "Import Preferences" -#: flatcamGUI/FlatCAMGUI.py:898 +#: flatcamGUI/FlatCAMGUI.py:914 msgid "" "Import a full set of FlatCAM settings from a file\n" "previously saved on HDD.\n" @@ -4401,11 +4381,11 @@ msgstr "" "FlatCAM automatically save a 'factory_defaults' file\n" "on the first start. Do not delete that file." -#: flatcamGUI/FlatCAMGUI.py:905 +#: flatcamGUI/FlatCAMGUI.py:921 msgid "Export Preferences" msgstr "Export Preferences" -#: flatcamGUI/FlatCAMGUI.py:908 +#: flatcamGUI/FlatCAMGUI.py:924 msgid "" "Export a full set of FlatCAM settings in a file\n" "that is saved on HDD." @@ -4413,19 +4393,19 @@ msgstr "" "Export a full set of FlatCAM settings in a file\n" "that is saved on HDD." -#: flatcamGUI/FlatCAMGUI.py:913 +#: flatcamGUI/FlatCAMGUI.py:929 msgid "Open Pref Folder" msgstr "Open Pref Folder" -#: flatcamGUI/FlatCAMGUI.py:916 +#: flatcamGUI/FlatCAMGUI.py:932 msgid "Open the folder where FlatCAM save the preferences files." msgstr "Open the folder where FlatCAM save the preferences files." -#: flatcamGUI/FlatCAMGUI.py:924 +#: flatcamGUI/FlatCAMGUI.py:940 msgid "Save Preferences" msgstr "Save Preferences" -#: flatcamGUI/FlatCAMGUI.py:927 +#: flatcamGUI/FlatCAMGUI.py:943 msgid "" "Save the current settings in the 'current_defaults' file\n" "which is the file storing the working default preferences." @@ -4433,286 +4413,7 @@ msgstr "" "Save the current settings in the 'current_defaults' file\n" "which is the file storing the working default preferences." -#: flatcamGUI/FlatCAMGUI.py:953 -#| msgid "" -#| "General Shortcut list
\n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| "
F3 SHOW SHORTCUT LIST
  
1 Switch to Project Tab
2 Switch to Selected Tab
3 Switch to Tool Tab
  
E Edit Object (if selected)
G Grid On/Off
J Jump to Coordinates
L New Excellon
M Move Obj
N New Geometry
O Set Origin
Q Change Units
P Open Properties Tool
R Rotate by 90 degree CW
S Shell Toggle
T Add a Tool (when in Geometry Selected " -#| "Tab or in Tools NCC or Tools Paint)
V Zoom Fit
X Flip on X_axis
Y Flip on Y_axis
'='\n" -#| "  Zoom Out
'-'\n" -#| "  Zoom In
  
CTRL+A Select All
CTRL+C Copy Obj
CTRL+E Open Excellon File
CTRL+G Open Gerber File
CTRL+N New Project
CTRL+M Measurement Tool
CTRL+O Open Project
CTRL+S Save Project As
CTRL+F10 Toggle Plot Area
  
SHIFT+C Copy Obj_Name
SHIFT+E Toggle Code Editor
SHIFT+G Toggle the axis
SHIFT+P Open Preferences Window
SHIFT+R Rotate by 90 degree CCW
SHIFT+S Run a Script
SHIFT+W Toggle the workspace
SHIFT+X Skew on X axis
SHIFT+Y Skew on Y axis
  
ALT+C Calculators Tool
ALT+D 2-Sided PCB Tool
ALT+K Solder Paste Dispensing Tool
ALT+L Film PCB Tool
ALT+N Non-Copper Clearing Tool
ALT+P Paint Area Tool
ALT+Q PDF Import Tool
ALT+R Transformations Tool
ALT+S View File Source
ALT+U Cutout PCB Tool
ALT+1 Enable all Plots
ALT+2 Disable all Plots
ALT+3 Disable Non-selected Plots
ALT+F10 Toggle Full Screen
  
F1 Open Online Manual
F4 Open Online Tutorials
Del Delete Object
Del Alternate: Delete Tool
'`' (left to Key_1)Toogle Notebook Area " -#| "(Left Side)
SPACE En(Dis)able Obj Plot
Escape Deselects all objects
\n" -#| " \n" -#| " " +#: flatcamGUI/FlatCAMGUI.py:969 msgid "" "General Shortcut list
\n" " Editor Shortcut list
\n" -#| "
\n" -#| " GEOMETRY EDITOR
\n" -#| " \n" -#| "
\n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| "
A Draw an Arc
B Buffer Tool
C Copy Geo Item
D Within Add Arc will toogle the ARC " -#| "direction: CW or CCW
E Polygon Intersection Tool
I Paint Tool
J Jump to Location (x, y)
K Toggle Corner Snap
M Move Geo Item
M Within Add Arc will cycle through the " -#| "ARC modes
N Draw a Polygon
O Draw a Circle
P Draw a Path
R Draw Rectangle
S Polygon Substraction Tool
T Add Text Tool
U Polygon Union Tool
X Flip shape on X axis
Y Flip shape on Y axis
  
SHIFT+X Skew shape on X axis
SHIFT+Y Skew shape on Y axis
  
ALT+R Editor Transformation Tool
ALT+X Offset shape on X axis
ALT+Y Offset shape on Y axis
  
CTRL+M Measurement Tool
CTRL+S Save Object and Exit Editor
CTRL+X Polygon Cut Tool
  
Space Rotate Geometry
ENTER Finish drawing for certain tools
ESC Abort and return to Select
Del Delete Shape
\n" -#| "
\n" -#| "
\n" -#| " EXCELLON EDITOR
\n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| "
A Add Drill Array
C Copy Drill(s)
D Add Drill
J Jump to Location (x, y)
M Move Drill(s)
R Resize Drill(s)
T Add a new Tool
  
Del Delete Drill(s)
Del Alternate: Delete Tool(s)
  
ESC Abort and return to Select
CTRL+S Save Object and Exit Editor
\n" -#| "
\n" -#| "
\n" -#| " GERBER EDITOR
\n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| " \n" -#| "
A Add Pad Array
B Buffer
C Copy
D Add Disc
E Add SemiDisc
J Jump to Location (x, y)
M Move
N Add Region
P Add Pad
R Within Track & Region Tools will cycle " -#| "in REVERSE the bend modes
S Scale
T Add Track
R Within Track & Region Tools will cycle " -#| "FORWARD the bend modes
  
Del Delete
Del Alternate: Delete Apertures
  
ESC Abort and return to Select
CTRL+S Save Object and Exit Editor
  
ALT+R Transformation Tool
\n" -#| " " +#: flatcamGUI/FlatCAMGUI.py:1254 msgid "" "Editor Shortcut list
\n" "
\n" @@ -6217,105 +5605,99 @@ msgstr "" " \n" " " -#: flatcamGUI/FlatCAMGUI.py:1550 +#: flatcamGUI/FlatCAMGUI.py:1566 msgid "Disable" msgstr "Disable" -#: flatcamGUI/FlatCAMGUI.py:1552 +#: flatcamGUI/FlatCAMGUI.py:1568 msgid "New" msgstr "New" -#: flatcamGUI/FlatCAMGUI.py:1553 +#: flatcamGUI/FlatCAMGUI.py:1569 msgid "Geometry" msgstr "Geometry" -#: flatcamGUI/FlatCAMGUI.py:1554 +#: flatcamGUI/FlatCAMGUI.py:1570 msgid "Excellon" msgstr "Excellon" -#: flatcamGUI/FlatCAMGUI.py:1559 +#: flatcamGUI/FlatCAMGUI.py:1575 msgid "Grids" msgstr "Grids" -#: flatcamGUI/FlatCAMGUI.py:1561 +#: flatcamGUI/FlatCAMGUI.py:1577 msgid "View" msgstr "View" -#: flatcamGUI/FlatCAMGUI.py:1563 +#: flatcamGUI/FlatCAMGUI.py:1579 msgid "Clear Plot" msgstr "Clear Plot" -#: flatcamGUI/FlatCAMGUI.py:1564 +#: flatcamGUI/FlatCAMGUI.py:1580 msgid "Replot" msgstr "Replot" -#: flatcamGUI/FlatCAMGUI.py:1567 +#: flatcamGUI/FlatCAMGUI.py:1583 msgid "Geo Editor" msgstr "Geo Editor" -#: flatcamGUI/FlatCAMGUI.py:1568 +#: flatcamGUI/FlatCAMGUI.py:1584 msgid "Line" msgstr "Line" -#: flatcamGUI/FlatCAMGUI.py:1569 +#: flatcamGUI/FlatCAMGUI.py:1585 msgid "Rectangle" msgstr "Rectangle" -#: flatcamGUI/FlatCAMGUI.py:1570 flatcamGUI/FlatCAMGUI.py:5110 -#: flatcamGUI/ObjectUI.py:1360 +#: flatcamGUI/FlatCAMGUI.py:1586 msgid "Cut" msgstr "Cut" -#: flatcamGUI/FlatCAMGUI.py:1575 +#: flatcamGUI/FlatCAMGUI.py:1591 msgid "Pad" msgstr "Pad" -#: flatcamGUI/FlatCAMGUI.py:1576 +#: flatcamGUI/FlatCAMGUI.py:1592 msgid "Pad Array" msgstr "Pad Array" -#: flatcamGUI/FlatCAMGUI.py:1577 +#: flatcamGUI/FlatCAMGUI.py:1593 msgid "Track" msgstr "Track" -#: flatcamGUI/FlatCAMGUI.py:1578 +#: flatcamGUI/FlatCAMGUI.py:1594 msgid "Region" msgstr "Region" -#: flatcamGUI/FlatCAMGUI.py:1584 +#: flatcamGUI/FlatCAMGUI.py:1596 msgid "Exc Editor" msgstr "Exc Editor" -#: flatcamGUI/FlatCAMGUI.py:1585 +#: flatcamGUI/FlatCAMGUI.py:1597 msgid "Add Drill" msgstr "Add Drill" -#: flatcamGUI/FlatCAMGUI.py:1587 -msgid "Copy Drill(s)" -msgstr "Copy Drill(s)" - -#: flatcamGUI/FlatCAMGUI.py:1618 +#: flatcamGUI/FlatCAMGUI.py:1629 msgid "Print Preview" msgstr "Print Preview" -#: flatcamGUI/FlatCAMGUI.py:1619 +#: flatcamGUI/FlatCAMGUI.py:1630 msgid "Print Code" msgstr "Print Code" -#: flatcamGUI/FlatCAMGUI.py:1620 +#: flatcamGUI/FlatCAMGUI.py:1631 msgid "Find in Code" msgstr "Find in Code" -#: flatcamGUI/FlatCAMGUI.py:1625 +#: flatcamGUI/FlatCAMGUI.py:1636 msgid "Replace With" msgstr "Replace With" -#: flatcamGUI/FlatCAMGUI.py:1629 flatcamGUI/FlatCAMGUI.py:5108 -#: flatcamGUI/FlatCAMGUI.py:5618 flatcamGUI/ObjectUI.py:1358 +#: flatcamGUI/FlatCAMGUI.py:1640 msgid "All" msgstr "All" -#: flatcamGUI/FlatCAMGUI.py:1631 +#: flatcamGUI/FlatCAMGUI.py:1642 msgid "" "When checked it will replace all instances in the 'Find' box\n" "with the text in the 'Replace' box.." @@ -6323,15 +5705,15 @@ msgstr "" "When checked it will replace all instances in the 'Find' box\n" "with the text in the 'Replace' box.." -#: flatcamGUI/FlatCAMGUI.py:1634 +#: flatcamGUI/FlatCAMGUI.py:1645 msgid "Open Code" msgstr "Open Code" -#: flatcamGUI/FlatCAMGUI.py:1635 +#: flatcamGUI/FlatCAMGUI.py:1646 msgid "Save Code" msgstr "Save Code" -#: flatcamGUI/FlatCAMGUI.py:1670 +#: flatcamGUI/FlatCAMGUI.py:1681 msgid "" "Relative neasurement.\n" "Reference is last click position" @@ -6339,7 +5721,7 @@ msgstr "" "Relative neasurement.\n" "Reference is last click position" -#: flatcamGUI/FlatCAMGUI.py:1676 +#: flatcamGUI/FlatCAMGUI.py:1687 msgid "" "Absolute neasurement.\n" "Reference is (X=0, Y= 0) position" @@ -6347,23 +5729,23 @@ msgstr "" "Absolute neasurement.\n" "Reference is (X=0, Y= 0) position" -#: flatcamGUI/FlatCAMGUI.py:1869 +#: flatcamGUI/FlatCAMGUI.py:1882 msgid "Select 'Esc'" msgstr "Select 'Esc'" -#: flatcamGUI/FlatCAMGUI.py:1894 +#: flatcamGUI/FlatCAMGUI.py:1907 msgid "Copy Objects" msgstr "Copy Objects" -#: flatcamGUI/FlatCAMGUI.py:1896 +#: flatcamGUI/FlatCAMGUI.py:1909 msgid "Delete Shape" msgstr "Delete Shape" -#: flatcamGUI/FlatCAMGUI.py:1901 +#: flatcamGUI/FlatCAMGUI.py:1914 msgid "Move Objects" msgstr "Move Objects" -#: flatcamGUI/FlatCAMGUI.py:2319 +#: flatcamGUI/FlatCAMGUI.py:2343 msgid "" "Please first select a geometry item to be cutted\n" "then select the geometry item that will be cutted\n" @@ -6375,17 +5757,17 @@ msgstr "" "out of the first item. In the end press ~X~ key or\n" "the toolbar button." -#: flatcamGUI/FlatCAMGUI.py:2326 flatcamGUI/FlatCAMGUI.py:2463 -#: flatcamGUI/FlatCAMGUI.py:2522 flatcamGUI/FlatCAMGUI.py:2542 +#: flatcamGUI/FlatCAMGUI.py:2350 flatcamGUI/FlatCAMGUI.py:2487 +#: flatcamGUI/FlatCAMGUI.py:2546 flatcamGUI/FlatCAMGUI.py:2566 msgid "Warning" msgstr "Warning" -#: flatcamGUI/FlatCAMGUI.py:2393 flatcamGUI/FlatCAMGUI.py:2592 -#: flatcamGUI/FlatCAMGUI.py:2803 +#: flatcamGUI/FlatCAMGUI.py:2417 flatcamGUI/FlatCAMGUI.py:2616 +#: flatcamGUI/FlatCAMGUI.py:2827 msgid "[WARNING_NOTCL] Cancelled." msgstr "[WARNING_NOTCL] Cancelled." -#: flatcamGUI/FlatCAMGUI.py:2458 +#: flatcamGUI/FlatCAMGUI.py:2482 msgid "" "Please select geometry items \n" "on which to perform Intersection Tool." @@ -6393,7 +5775,7 @@ msgstr "" "Please select geometry items \n" "on which to perform Intersection Tool." -#: flatcamGUI/FlatCAMGUI.py:2517 +#: flatcamGUI/FlatCAMGUI.py:2541 msgid "" "Please select geometry items \n" "on which to perform Substraction Tool." @@ -6401,7 +5783,7 @@ msgstr "" "Please select geometry items \n" "on which to perform Substraction Tool." -#: flatcamGUI/FlatCAMGUI.py:2537 +#: flatcamGUI/FlatCAMGUI.py:2561 msgid "" "Please select geometry items \n" "on which to perform union." @@ -6409,55 +5791,55 @@ msgstr "" "Please select geometry items \n" "on which to perform union." -#: flatcamGUI/FlatCAMGUI.py:2608 flatcamGUI/FlatCAMGUI.py:2820 +#: flatcamGUI/FlatCAMGUI.py:2632 flatcamGUI/FlatCAMGUI.py:2844 msgid "[WARNING_NOTCL] Cancelled. Nothing selected to delete." msgstr "[WARNING_NOTCL] Cancelled. Nothing selected to delete." -#: flatcamGUI/FlatCAMGUI.py:2692 flatcamGUI/FlatCAMGUI.py:2887 +#: flatcamGUI/FlatCAMGUI.py:2716 flatcamGUI/FlatCAMGUI.py:2911 msgid "[WARNING_NOTCL] Cancelled. Nothing selected to copy." msgstr "[WARNING_NOTCL] Cancelled. Nothing selected to copy." -#: flatcamGUI/FlatCAMGUI.py:2738 flatcamGUI/FlatCAMGUI.py:2933 +#: flatcamGUI/FlatCAMGUI.py:2762 flatcamGUI/FlatCAMGUI.py:2957 msgid "[WARNING_NOTCL] Cancelled. Nothing selected to move." msgstr "[WARNING_NOTCL] Cancelled. Nothing selected to move." -#: flatcamGUI/FlatCAMGUI.py:2947 +#: flatcamGUI/FlatCAMGUI.py:2971 msgid "New Tool ..." msgstr "New Tool ..." -#: flatcamGUI/FlatCAMGUI.py:2948 +#: flatcamGUI/FlatCAMGUI.py:2972 msgid "Enter a Tool Diameter:" msgstr "Enter a Tool Diameter:" -#: flatcamGUI/FlatCAMGUI.py:2990 +#: flatcamGUI/FlatCAMGUI.py:3014 msgid "Measurement Tool exit..." msgstr "Measurement Tool exit..." -#: flatcamGUI/FlatCAMGUI.py:3271 +#: flatcamGUI/FlatCAMGUI.py:3296 msgid "Grid X value:" msgstr "Grid X value:" -#: flatcamGUI/FlatCAMGUI.py:3273 +#: flatcamGUI/FlatCAMGUI.py:3298 msgid "This is the Grid snap value on X axis." msgstr "This is the Grid snap value on X axis." -#: flatcamGUI/FlatCAMGUI.py:3278 +#: flatcamGUI/FlatCAMGUI.py:3303 msgid "Grid Y value:" msgstr "Grid Y value:" -#: flatcamGUI/FlatCAMGUI.py:3280 +#: flatcamGUI/FlatCAMGUI.py:3305 msgid "This is the Grid snap value on Y axis." msgstr "This is the Grid snap value on Y axis." -#: flatcamGUI/FlatCAMGUI.py:3285 +#: flatcamGUI/FlatCAMGUI.py:3310 msgid "Snap Max:" msgstr "Snap Max:" -#: flatcamGUI/FlatCAMGUI.py:3290 +#: flatcamGUI/FlatCAMGUI.py:3315 msgid "Workspace:" msgstr "Workspace:" -#: flatcamGUI/FlatCAMGUI.py:3292 +#: flatcamGUI/FlatCAMGUI.py:3317 msgid "" "Draw a delimiting rectangle on canvas.\n" "The purpose is to illustrate the limits for our work." @@ -6465,11 +5847,11 @@ msgstr "" "Draw a delimiting rectangle on canvas.\n" "The purpose is to illustrate the limits for our work." -#: flatcamGUI/FlatCAMGUI.py:3295 +#: flatcamGUI/FlatCAMGUI.py:3320 msgid "Wk. format:" msgstr "Wk. format:" -#: flatcamGUI/FlatCAMGUI.py:3297 +#: flatcamGUI/FlatCAMGUI.py:3322 msgid "" "Select the type of rectangle to be used on canvas,\n" "as valid workspace." @@ -6477,11 +5859,11 @@ msgstr "" "Select the type of rectangle to be used on canvas,\n" "as valid workspace." -#: flatcamGUI/FlatCAMGUI.py:3310 +#: flatcamGUI/FlatCAMGUI.py:3335 msgid "Plot Fill:" msgstr "Plot Fill:" -#: flatcamGUI/FlatCAMGUI.py:3312 +#: flatcamGUI/FlatCAMGUI.py:3337 msgid "" "Set the fill color for plotted objects.\n" "First 6 digits are the color and the last 2\n" @@ -6491,28 +5873,28 @@ msgstr "" "First 6 digits are the color and the last 2\n" "digits are for alpha (transparency) level." -#: flatcamGUI/FlatCAMGUI.py:3326 flatcamGUI/FlatCAMGUI.py:3376 -#: flatcamGUI/FlatCAMGUI.py:3426 +#: flatcamGUI/FlatCAMGUI.py:3351 flatcamGUI/FlatCAMGUI.py:3401 +#: flatcamGUI/FlatCAMGUI.py:3451 msgid "Alpha Level:" msgstr "Alpha Level:" -#: flatcamGUI/FlatCAMGUI.py:3328 +#: flatcamGUI/FlatCAMGUI.py:3353 msgid "Set the fill transparency for plotted objects." msgstr "Set the fill transparency for plotted objects." -#: flatcamGUI/FlatCAMGUI.py:3345 +#: flatcamGUI/FlatCAMGUI.py:3370 msgid "Plot Line:" msgstr "Plot Line:" -#: flatcamGUI/FlatCAMGUI.py:3347 +#: flatcamGUI/FlatCAMGUI.py:3372 msgid "Set the line color for plotted objects." msgstr "Set the line color for plotted objects." -#: flatcamGUI/FlatCAMGUI.py:3359 +#: flatcamGUI/FlatCAMGUI.py:3384 msgid "Sel. Fill:" msgstr "Sel. Fill:" -#: flatcamGUI/FlatCAMGUI.py:3361 +#: flatcamGUI/FlatCAMGUI.py:3386 msgid "" "Set the fill color for the selection box\n" "in case that the selection is done from left to right.\n" @@ -6524,23 +5906,23 @@ msgstr "" "First 6 digits are the color and the last 2\n" "digits are for alpha (transparency) level." -#: flatcamGUI/FlatCAMGUI.py:3378 +#: flatcamGUI/FlatCAMGUI.py:3403 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:3395 +#: flatcamGUI/FlatCAMGUI.py:3420 msgid "Sel. Line:" msgstr "Sel. Line:" -#: flatcamGUI/FlatCAMGUI.py:3397 +#: flatcamGUI/FlatCAMGUI.py:3422 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:3409 +#: flatcamGUI/FlatCAMGUI.py:3434 msgid "Sel2. Fill:" msgstr "Sel2. Fill:" -#: flatcamGUI/FlatCAMGUI.py:3411 +#: flatcamGUI/FlatCAMGUI.py:3436 msgid "" "Set the fill color for the selection box\n" "in case that the selection is done from right to left.\n" @@ -6552,43 +5934,63 @@ msgstr "" "First 6 digits are the color and the last 2\n" "digits are for alpha (transparency) level." -#: flatcamGUI/FlatCAMGUI.py:3428 +#: flatcamGUI/FlatCAMGUI.py:3453 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:3445 +#: flatcamGUI/FlatCAMGUI.py:3470 msgid "Sel2. Line:" msgstr "Sel2. Line:" -#: flatcamGUI/FlatCAMGUI.py:3447 +#: flatcamGUI/FlatCAMGUI.py:3472 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:3459 +#: flatcamGUI/FlatCAMGUI.py:3484 msgid "Editor Draw:" msgstr "Editor Draw:" -#: flatcamGUI/FlatCAMGUI.py:3461 +#: flatcamGUI/FlatCAMGUI.py:3486 msgid "Set the color for the shape." msgstr "Set the color for the shape." -#: flatcamGUI/FlatCAMGUI.py:3473 +#: flatcamGUI/FlatCAMGUI.py:3498 msgid "Editor Draw Sel.:" msgstr "Editor Draw Sel.:" -#: flatcamGUI/FlatCAMGUI.py:3475 +#: flatcamGUI/FlatCAMGUI.py:3500 msgid "Set the color of the shape when selected." msgstr "Set the color of the shape when selected." -#: flatcamGUI/FlatCAMGUI.py:3522 +#: flatcamGUI/FlatCAMGUI.py:3512 +msgid "Project Items:" +msgstr "Project Items:" + +#: flatcamGUI/FlatCAMGUI.py:3514 +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:3525 +msgid "Proj. Dis. Items:" +msgstr "Proj. Dis. Items:" + +#: flatcamGUI/FlatCAMGUI.py:3527 +msgid "" +"Set the color of the items in Project Tab Tree,\n" +"for the case when the items are disabled." +msgstr "" +"Set the color of the items in Project Tab Tree,\n" +"for the case when the items are disabled." + +#: flatcamGUI/FlatCAMGUI.py:3578 msgid "GUI Settings" msgstr "GUI Settings" -#: flatcamGUI/FlatCAMGUI.py:3529 +#: flatcamGUI/FlatCAMGUI.py:3585 msgid "Layout:" msgstr "Layout:" -#: flatcamGUI/FlatCAMGUI.py:3531 +#: flatcamGUI/FlatCAMGUI.py:3587 msgid "" "Select an layout for FlatCAM.\n" "It is applied immediately." @@ -6596,11 +5998,11 @@ msgstr "" "Select an layout for FlatCAM.\n" "It is applied immediately." -#: flatcamGUI/FlatCAMGUI.py:3547 +#: flatcamGUI/FlatCAMGUI.py:3603 msgid "Style:" msgstr "Style:" -#: flatcamGUI/FlatCAMGUI.py:3549 +#: flatcamGUI/FlatCAMGUI.py:3605 msgid "" "Select an style for FlatCAM.\n" "It will be applied at the next app start." @@ -6608,11 +6010,11 @@ msgstr "" "Select an style for FlatCAM.\n" "It will be applied at the next app start." -#: flatcamGUI/FlatCAMGUI.py:3560 +#: flatcamGUI/FlatCAMGUI.py:3616 msgid "HDPI Support:" msgstr "HDPI Support:" -#: flatcamGUI/FlatCAMGUI.py:3562 +#: flatcamGUI/FlatCAMGUI.py:3618 msgid "" "Enable High DPI support for FlatCAM.\n" "It will be applied at the next app start." @@ -6620,11 +6022,11 @@ msgstr "" "Enable High DPI support for FlatCAM.\n" "It will be applied at the next app start." -#: flatcamGUI/FlatCAMGUI.py:3575 +#: flatcamGUI/FlatCAMGUI.py:3631 msgid "Clear GUI Settings:" msgstr "Clear GUI Settings:" -#: flatcamGUI/FlatCAMGUI.py:3577 +#: flatcamGUI/FlatCAMGUI.py:3633 msgid "" "Clear the GUI settings for FlatCAM,\n" "such as: layout, gui state, style, hdpi support etc." @@ -6632,15 +6034,15 @@ msgstr "" "Clear the GUI settings for FlatCAM,\n" "such as: layout, gui state, style, hdpi support etc." -#: flatcamGUI/FlatCAMGUI.py:3580 +#: flatcamGUI/FlatCAMGUI.py:3636 msgid "Clear" msgstr "Clear" -#: flatcamGUI/FlatCAMGUI.py:3584 +#: flatcamGUI/FlatCAMGUI.py:3640 msgid "Hover Shape:" msgstr "Hover Shape:" -#: flatcamGUI/FlatCAMGUI.py:3586 +#: flatcamGUI/FlatCAMGUI.py:3642 msgid "" "Enable display of a hover shape for FlatCAM objects.\n" "It is displayed whenever the mouse cursor is hovering\n" @@ -6650,23 +6052,39 @@ msgstr "" "It is displayed whenever the mouse cursor is hovering\n" "over any kind of not-selected object." -#: flatcamGUI/FlatCAMGUI.py:3626 +#: flatcamGUI/FlatCAMGUI.py:3649 +msgid "Sel. Shape:" +msgstr "Sel. Shape:" + +#: flatcamGUI/FlatCAMGUI.py:3651 +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:3693 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:3629 +#: flatcamGUI/FlatCAMGUI.py:3696 msgid "Clear GUI Settings" msgstr "Clear GUI Settings" -#: flatcamGUI/FlatCAMGUI.py:3650 +#: flatcamGUI/FlatCAMGUI.py:3717 msgid "App Preferences" msgstr "App Preferences" -#: flatcamGUI/FlatCAMGUI.py:3656 +#: flatcamGUI/FlatCAMGUI.py:3723 msgid "Units:" msgstr "Units:" -#: flatcamGUI/FlatCAMGUI.py:3657 +#: flatcamGUI/FlatCAMGUI.py:3724 msgid "" "The default value for FlatCAM units.\n" "Whatever is selected here is set every time\n" @@ -6676,11 +6094,11 @@ msgstr "" "Whatever is selected here is set every time\n" "FLatCAM is started." -#: flatcamGUI/FlatCAMGUI.py:3664 +#: flatcamGUI/FlatCAMGUI.py:3731 msgid "APP. LEVEL:" msgstr "APP. LEVEL:" -#: flatcamGUI/FlatCAMGUI.py:3665 +#: flatcamGUI/FlatCAMGUI.py:3732 msgid "" "Choose the default level of usage for FlatCAM.\n" "BASIC level -> reduced functionality, best for beginner's.\n" @@ -6696,31 +6114,41 @@ msgstr "" "The choice here will influence the parameters in\n" "the Selected Tab for all kinds of FlatCAM objects." -#: flatcamGUI/FlatCAMGUI.py:3670 flatcamGUI/FlatCAMGUI.py:4295 -msgid "Basic" -msgstr "Basic" - -#: flatcamGUI/FlatCAMGUI.py:3671 -msgid "Advanced" -msgstr "Advanced" - -#: flatcamGUI/FlatCAMGUI.py:3674 +#: flatcamGUI/FlatCAMGUI.py:3741 msgid "Languages:" msgstr "Languages:" -#: flatcamGUI/FlatCAMGUI.py:3675 +#: flatcamGUI/FlatCAMGUI.py:3742 msgid "Set the language used throughout FlatCAM." msgstr "Set the language used throughout FlatCAM." -#: flatcamGUI/FlatCAMGUI.py:3678 +#: flatcamGUI/FlatCAMGUI.py:3745 msgid "Apply Language" msgstr "Apply Language" -#: flatcamGUI/FlatCAMGUI.py:3681 +#: flatcamGUI/FlatCAMGUI.py:3746 +msgid "" +"Set the language used throughout FlatCAM.\n" +"The app will restart after click.Windows: When FlatCAM is installed in " +"Program Files\n" +"directory, it is possible that the app will not\n" +"restart after the button is clicked due of Windows\n" +"security features. In this case the language will be\n" +"applied at the next app start." +msgstr "" +"Set the language used throughout FlatCAM.\n" +"The app will restart after click.Windows: When FlatCAM is installed in " +"Program Files\n" +"directory, it is possible that the app will not\n" +"restart after the button is clicked due of Windows\n" +"security features. In this case the language will be\n" +"applied at the next app start." + +#: flatcamGUI/FlatCAMGUI.py:3755 msgid "Shell at StartUp:" msgstr "Shell at StartUp:" -#: flatcamGUI/FlatCAMGUI.py:3683 flatcamGUI/FlatCAMGUI.py:3688 +#: flatcamGUI/FlatCAMGUI.py:3757 flatcamGUI/FlatCAMGUI.py:3762 msgid "" "Check this box if you want the shell to\n" "start automatically at startup." @@ -6728,11 +6156,11 @@ msgstr "" "Check this box if you want the shell to\n" "start automatically at startup." -#: flatcamGUI/FlatCAMGUI.py:3693 +#: flatcamGUI/FlatCAMGUI.py:3767 msgid "Version Check:" msgstr "Version Check:" -#: flatcamGUI/FlatCAMGUI.py:3695 flatcamGUI/FlatCAMGUI.py:3700 +#: flatcamGUI/FlatCAMGUI.py:3769 flatcamGUI/FlatCAMGUI.py:3774 msgid "" "Check this box if you want to check\n" "for a new version automatically at startup." @@ -6740,11 +6168,11 @@ msgstr "" "Check this box if you want to check\n" "for a new version automatically at startup." -#: flatcamGUI/FlatCAMGUI.py:3705 +#: flatcamGUI/FlatCAMGUI.py:3779 msgid "Send Stats:" msgstr "Send Stats:" -#: flatcamGUI/FlatCAMGUI.py:3707 flatcamGUI/FlatCAMGUI.py:3712 +#: flatcamGUI/FlatCAMGUI.py:3781 flatcamGUI/FlatCAMGUI.py:3786 msgid "" "Check this box if you agree to send anonymous\n" "stats automatically at startup, to help improve FlatCAM." @@ -6752,11 +6180,11 @@ msgstr "" "Check this box if you agree to send anonymous\n" "stats automatically at startup, to help improve FlatCAM." -#: flatcamGUI/FlatCAMGUI.py:3719 +#: flatcamGUI/FlatCAMGUI.py:3793 msgid "Pan Button:" msgstr "Pan Button:" -#: flatcamGUI/FlatCAMGUI.py:3720 +#: flatcamGUI/FlatCAMGUI.py:3794 msgid "" "Select the mouse button to use for panning:\n" "- MMB --> Middle Mouse Button\n" @@ -6766,35 +6194,19 @@ msgstr "" "- MMB --> Middle Mouse Button\n" "- RMB --> Right Mouse Button" -#: flatcamGUI/FlatCAMGUI.py:3723 -msgid "MMB" -msgstr "MMB" - -#: flatcamGUI/FlatCAMGUI.py:3724 -msgid "RMB" -msgstr "RMB" - -#: flatcamGUI/FlatCAMGUI.py:3727 +#: flatcamGUI/FlatCAMGUI.py:3801 msgid "Multiple Sel:" msgstr "Multiple Sel:" -#: flatcamGUI/FlatCAMGUI.py:3728 +#: flatcamGUI/FlatCAMGUI.py:3802 msgid "Select the key used for multiple selection." msgstr "Select the key used for multiple selection." -#: flatcamGUI/FlatCAMGUI.py:3729 -msgid "CTRL" -msgstr "CTRL" - -#: flatcamGUI/FlatCAMGUI.py:3730 -msgid "SHIFT" -msgstr "SHIFT" - -#: flatcamGUI/FlatCAMGUI.py:3733 +#: flatcamGUI/FlatCAMGUI.py:3807 msgid "Project at StartUp:" msgstr "Project at StartUp:" -#: flatcamGUI/FlatCAMGUI.py:3735 flatcamGUI/FlatCAMGUI.py:3740 +#: flatcamGUI/FlatCAMGUI.py:3809 flatcamGUI/FlatCAMGUI.py:3814 msgid "" "Check this box if you want the project/selected/tool tab area to\n" "to be shown automatically at startup." @@ -6802,11 +6214,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:3745 +#: flatcamGUI/FlatCAMGUI.py:3819 msgid "Project AutoHide:" msgstr "Project AutoHide:" -#: flatcamGUI/FlatCAMGUI.py:3747 flatcamGUI/FlatCAMGUI.py:3753 +#: flatcamGUI/FlatCAMGUI.py:3821 flatcamGUI/FlatCAMGUI.py:3827 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" @@ -6816,11 +6228,11 @@ msgstr "" "hide automatically when there are no objects loaded and\n" "to show whenever a new object is created." -#: flatcamGUI/FlatCAMGUI.py:3759 +#: flatcamGUI/FlatCAMGUI.py:3833 msgid "Enable ToolTips:" msgstr "Enable ToolTips:" -#: flatcamGUI/FlatCAMGUI.py:3761 flatcamGUI/FlatCAMGUI.py:3766 +#: flatcamGUI/FlatCAMGUI.py:3835 flatcamGUI/FlatCAMGUI.py:3840 msgid "" "Check this box if you want to have toolTips displayed\n" "when hovering with mouse over items throughout the App." @@ -6828,11 +6240,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:3769 +#: flatcamGUI/FlatCAMGUI.py:3843 msgid "Workers number:" msgstr "Workers number:" -#: flatcamGUI/FlatCAMGUI.py:3771 flatcamGUI/FlatCAMGUI.py:3780 +#: flatcamGUI/FlatCAMGUI.py:3845 flatcamGUI/FlatCAMGUI.py:3854 msgid "" "The number of Qthreads made available to the App.\n" "A bigger number may finish the jobs more quickly but\n" @@ -6848,11 +6260,11 @@ msgstr "" "Default value is 2.\n" "After change, it will be applied at next App start." -#: flatcamGUI/FlatCAMGUI.py:3821 +#: flatcamGUI/FlatCAMGUI.py:3895 msgid "Save Compressed Project" msgstr "Save Compressed Project" -#: flatcamGUI/FlatCAMGUI.py:3823 +#: flatcamGUI/FlatCAMGUI.py:3897 msgid "" "Whether to save a compressed or uncompressed project.\n" "When checked it will save a compressed FlatCAM project." @@ -6860,11 +6272,11 @@ msgstr "" "Whether to save a compressed or uncompressed project.\n" "When checked it will save a compressed FlatCAM project." -#: flatcamGUI/FlatCAMGUI.py:3834 +#: flatcamGUI/FlatCAMGUI.py:3908 msgid "Compression Level:" msgstr "Compression Level:" -#: flatcamGUI/FlatCAMGUI.py:3836 +#: flatcamGUI/FlatCAMGUI.py:3910 msgid "" "The level of compression used when saving\n" "a FlatCAM project. Higher value means better compression\n" @@ -6874,47 +6286,47 @@ msgstr "" "a FlatCAM project. Higher value means better compression\n" "but require more RAM usage and more processing time." -#: flatcamGUI/FlatCAMGUI.py:3862 flatcamGUI/FlatCAMGUI.py:4103 -#: flatcamGUI/FlatCAMGUI.py:4758 flatcamGUI/FlatCAMGUI.py:5082 +#: flatcamGUI/FlatCAMGUI.py:3936 flatcamGUI/FlatCAMGUI.py:4177 +#: flatcamGUI/FlatCAMGUI.py:4832 flatcamGUI/FlatCAMGUI.py:5156 #: flatcamGUI/ObjectUI.py:150 flatcamGUI/ObjectUI.py:505 #: flatcamGUI/ObjectUI.py:830 flatcamGUI/ObjectUI.py:1344 msgid "Plot Options:" msgstr "Plot Options:" -#: flatcamGUI/FlatCAMGUI.py:3869 flatcamGUI/FlatCAMGUI.py:4115 -#: flatcamGUI/ObjectUI.py:506 +#: flatcamGUI/FlatCAMGUI.py:3943 flatcamGUI/FlatCAMGUI.py:4189 +#: flatcamGUI/ObjectUI.py:156 flatcamGUI/ObjectUI.py:506 msgid "Solid" msgstr "Solid" -#: flatcamGUI/FlatCAMGUI.py:3871 flatcamGUI/ObjectUI.py:158 +#: flatcamGUI/FlatCAMGUI.py:3945 flatcamGUI/ObjectUI.py:158 msgid "Solid color polygons." msgstr "Solid color polygons." -#: flatcamGUI/FlatCAMGUI.py:3876 +#: flatcamGUI/FlatCAMGUI.py:3950 flatcamGUI/ObjectUI.py:164 msgid "M-Color" msgstr "M-Color" -#: flatcamGUI/FlatCAMGUI.py:3878 flatcamGUI/ObjectUI.py:166 +#: flatcamGUI/FlatCAMGUI.py:3952 flatcamGUI/ObjectUI.py:166 msgid "Draw polygons in different colors." msgstr "Draw polygons in different colors." -#: flatcamGUI/FlatCAMGUI.py:3883 flatcamGUI/FlatCAMGUI.py:4109 -#: flatcamGUI/FlatCAMGUI.py:4762 flatcamGUI/ObjectUI.py:172 +#: flatcamGUI/FlatCAMGUI.py:3957 flatcamGUI/FlatCAMGUI.py:4183 +#: flatcamGUI/FlatCAMGUI.py:4836 flatcamGUI/ObjectUI.py:172 msgid "Plot" msgstr "Plot" -#: flatcamGUI/FlatCAMGUI.py:3885 flatcamGUI/FlatCAMGUI.py:4764 +#: flatcamGUI/FlatCAMGUI.py:3959 flatcamGUI/FlatCAMGUI.py:4838 #: flatcamGUI/ObjectUI.py:174 flatcamGUI/ObjectUI.py:546 #: flatcamGUI/ObjectUI.py:876 flatcamGUI/ObjectUI.py:1431 msgid "Plot (show) this object." msgstr "Plot (show) this object." -#: flatcamGUI/FlatCAMGUI.py:3890 flatcamGUI/FlatCAMGUI.py:4771 -#: flatcamGUI/FlatCAMGUI.py:5118 +#: flatcamGUI/FlatCAMGUI.py:3964 flatcamGUI/FlatCAMGUI.py:4845 +#: flatcamGUI/FlatCAMGUI.py:5192 msgid "Circle Steps:" msgstr "Circle Steps:" -#: flatcamGUI/FlatCAMGUI.py:3892 +#: flatcamGUI/FlatCAMGUI.py:3966 msgid "" "The number of circle steps for Gerber \n" "circular aperture linear approximation." @@ -6922,15 +6334,15 @@ msgstr "" "The number of circle steps for Gerber \n" "circular aperture linear approximation." -#: flatcamGUI/FlatCAMGUI.py:3907 +#: flatcamGUI/FlatCAMGUI.py:3981 msgid "Gerber Options" msgstr "Gerber Options" -#: flatcamGUI/FlatCAMGUI.py:3911 flatcamGUI/ObjectUI.py:251 +#: flatcamGUI/FlatCAMGUI.py:3985 flatcamGUI/ObjectUI.py:251 msgid "Isolation Routing:" msgstr "Isolation Routing:" -#: flatcamGUI/FlatCAMGUI.py:3913 flatcamGUI/ObjectUI.py:253 +#: flatcamGUI/FlatCAMGUI.py:3987 flatcamGUI/ObjectUI.py:253 msgid "" "Create a Geometry object with\n" "toolpaths to cut outside polygons." @@ -6938,17 +6350,17 @@ msgstr "" "Create a Geometry object with\n" "toolpaths to cut outside polygons." -#: flatcamGUI/FlatCAMGUI.py:3924 flatcamGUI/FlatCAMGUI.py:4481 -#: flatcamGUI/FlatCAMGUI.py:5406 flatcamGUI/ObjectUI.py:785 +#: flatcamGUI/FlatCAMGUI.py:3998 flatcamGUI/FlatCAMGUI.py:4555 +#: flatcamGUI/FlatCAMGUI.py:5480 flatcamGUI/ObjectUI.py:785 #: flatcamGUI/ObjectUI.py:801 msgid "Diameter of the cutting tool." msgstr "Diameter of the cutting tool." -#: flatcamGUI/FlatCAMGUI.py:3931 +#: flatcamGUI/FlatCAMGUI.py:4005 msgid "Width (# passes):" msgstr "Width (# passes):" -#: flatcamGUI/FlatCAMGUI.py:3933 flatcamGUI/ObjectUI.py:275 +#: flatcamGUI/FlatCAMGUI.py:4007 flatcamGUI/ObjectUI.py:275 msgid "" "Width of the isolation gap in\n" "number (integer) of tool widths." @@ -6956,11 +6368,11 @@ msgstr "" "Width of the isolation gap in\n" "number (integer) of tool widths." -#: flatcamGUI/FlatCAMGUI.py:3941 flatcamGUI/ObjectUI.py:283 +#: flatcamGUI/FlatCAMGUI.py:4015 flatcamGUI/ObjectUI.py:283 msgid "Pass overlap:" msgstr "Pass overlap:" -#: flatcamGUI/FlatCAMGUI.py:3943 flatcamGUI/ObjectUI.py:285 +#: flatcamGUI/FlatCAMGUI.py:4017 flatcamGUI/ObjectUI.py:285 #, python-format msgid "" "How much (fraction) of the tool width to overlap each tool pass.\n" @@ -6973,11 +6385,11 @@ msgstr "" "A value here of 0.25 means an overlap of 25%% from the tool diameter found " "above." -#: flatcamGUI/FlatCAMGUI.py:3951 flatcamGUI/ObjectUI.py:295 +#: flatcamGUI/FlatCAMGUI.py:4025 flatcamGUI/ObjectUI.py:295 msgid "Milling Type:" msgstr "Milling Type:" -#: flatcamGUI/FlatCAMGUI.py:3953 flatcamGUI/ObjectUI.py:297 +#: flatcamGUI/FlatCAMGUI.py:4027 flatcamGUI/ObjectUI.py:297 msgid "" "Milling type:\n" "- climb / best for precision milling and to reduce tool usage\n" @@ -6987,27 +6399,19 @@ msgstr "" "- climb / best for precision milling and to reduce tool usage\n" "- conventional / useful when there is no backlash compensation" -#: flatcamGUI/FlatCAMGUI.py:3958 flatcamGUI/ObjectUI.py:302 -msgid "Climb" -msgstr "Climb" - -#: flatcamGUI/FlatCAMGUI.py:3959 flatcamGUI/ObjectUI.py:303 -msgid "Conv." -msgstr "Conv." - -#: flatcamGUI/FlatCAMGUI.py:3963 +#: flatcamGUI/FlatCAMGUI.py:4037 msgid "Combine Passes" msgstr "Combine Passes" -#: flatcamGUI/FlatCAMGUI.py:3965 flatcamGUI/ObjectUI.py:309 +#: flatcamGUI/FlatCAMGUI.py:4039 flatcamGUI/ObjectUI.py:309 msgid "Combine all passes into one object" msgstr "Combine all passes into one object" -#: flatcamGUI/FlatCAMGUI.py:3970 +#: flatcamGUI/FlatCAMGUI.py:4044 msgid "Clear non-copper:" msgstr "Clear non-copper:" -#: flatcamGUI/FlatCAMGUI.py:3972 flatcamGUI/FlatCAMGUI.py:5294 +#: flatcamGUI/FlatCAMGUI.py:4046 flatcamGUI/FlatCAMGUI.py:5368 #: flatcamGUI/ObjectUI.py:386 msgid "" "Create a Geometry object with\n" @@ -7016,12 +6420,12 @@ msgstr "" "Create a Geometry object with\n" "toolpaths to cut all non-copper regions." -#: flatcamGUI/FlatCAMGUI.py:3981 flatcamGUI/FlatCAMGUI.py:4007 +#: flatcamGUI/FlatCAMGUI.py:4055 flatcamGUI/FlatCAMGUI.py:4081 #: flatcamGUI/ObjectUI.py:430 flatcamGUI/ObjectUI.py:464 msgid "Boundary Margin:" msgstr "Boundary Margin:" -#: flatcamGUI/FlatCAMGUI.py:3983 flatcamGUI/ObjectUI.py:432 +#: flatcamGUI/FlatCAMGUI.py:4057 flatcamGUI/ObjectUI.py:432 msgid "" "Specify the edge of the PCB\n" "by drawing a box around all\n" @@ -7033,11 +6437,11 @@ msgstr "" "objects with this minimum\n" "distance." -#: flatcamGUI/FlatCAMGUI.py:3993 flatcamGUI/FlatCAMGUI.py:4016 +#: flatcamGUI/FlatCAMGUI.py:4067 flatcamGUI/FlatCAMGUI.py:4090 msgid "Rounded corners" msgstr "Rounded corners" -#: flatcamGUI/FlatCAMGUI.py:3995 +#: flatcamGUI/FlatCAMGUI.py:4069 msgid "" "Creates a Geometry objects with polygons\n" "covering the copper-free areas of the PCB." @@ -7045,11 +6449,11 @@ msgstr "" "Creates a Geometry objects with polygons\n" "covering the copper-free areas of the PCB." -#: flatcamGUI/FlatCAMGUI.py:4001 flatcamGUI/ObjectUI.py:454 +#: flatcamGUI/FlatCAMGUI.py:4075 flatcamGUI/ObjectUI.py:454 msgid "Bounding Box:" msgstr "Bounding Box:" -#: flatcamGUI/FlatCAMGUI.py:4009 flatcamGUI/ObjectUI.py:466 +#: flatcamGUI/FlatCAMGUI.py:4083 flatcamGUI/ObjectUI.py:466 msgid "" "Distance of the edges of the box\n" "to the nearest polygon." @@ -7057,7 +6461,7 @@ msgstr "" "Distance of the edges of the box\n" "to the nearest polygon." -#: flatcamGUI/FlatCAMGUI.py:4018 flatcamGUI/ObjectUI.py:476 +#: flatcamGUI/FlatCAMGUI.py:4092 flatcamGUI/ObjectUI.py:476 msgid "" "If the bounding box is \n" "to have rounded corners\n" @@ -7069,15 +6473,15 @@ msgstr "" "their radius is equal to\n" "the margin." -#: flatcamGUI/FlatCAMGUI.py:4032 +#: flatcamGUI/FlatCAMGUI.py:4106 msgid "Gerber Adv. Options" msgstr "Gerber Adv. Options" -#: flatcamGUI/FlatCAMGUI.py:4036 +#: flatcamGUI/FlatCAMGUI.py:4110 msgid "Advanced Param.:" msgstr "Advanced Param.:" -#: flatcamGUI/FlatCAMGUI.py:4038 +#: flatcamGUI/FlatCAMGUI.py:4112 msgid "" "A list of Gerber advanced parameters.\n" "Those parameters are available only for\n" @@ -7087,11 +6491,11 @@ msgstr "" "Those parameters are available only for\n" "Advanced App. Level." -#: flatcamGUI/FlatCAMGUI.py:4048 flatcamGUI/ObjectUI.py:314 +#: flatcamGUI/FlatCAMGUI.py:4122 flatcamGUI/ObjectUI.py:314 msgid "\"Follow\"" msgstr "\"Follow\"" -#: flatcamGUI/FlatCAMGUI.py:4050 flatcamGUI/ObjectUI.py:316 +#: flatcamGUI/FlatCAMGUI.py:4124 flatcamGUI/ObjectUI.py:316 msgid "" "Generate a 'Follow' geometry.\n" "This means that it will cut through\n" @@ -7101,11 +6505,11 @@ msgstr "" "This means that it will cut through\n" "the middle of the trace." -#: flatcamGUI/FlatCAMGUI.py:4058 +#: flatcamGUI/FlatCAMGUI.py:4132 msgid "Table Show/Hide" msgstr "Table Show/Hide" -#: flatcamGUI/FlatCAMGUI.py:4060 +#: flatcamGUI/FlatCAMGUI.py:4134 msgid "" "Toggle the display of the Gerber Apertures Table.\n" "Also, on hide, it will delete all mark shapes\n" @@ -7115,11 +6519,11 @@ msgstr "" "Also, on hide, it will delete all mark shapes\n" "that are drawn on canvas." -#: flatcamGUI/FlatCAMGUI.py:4068 +#: flatcamGUI/FlatCAMGUI.py:4142 msgid "Ap. Scale Factor:" msgstr "Ap. Scale Factor:" -#: flatcamGUI/FlatCAMGUI.py:4070 +#: flatcamGUI/FlatCAMGUI.py:4144 msgid "" "Change the size of the selected apertures.\n" "Factor by which to multiply\n" @@ -7129,11 +6533,11 @@ msgstr "" "Factor by which to multiply\n" "geometric features of this object." -#: flatcamGUI/FlatCAMGUI.py:4080 +#: flatcamGUI/FlatCAMGUI.py:4154 msgid "Ap. Buffer Factor:" msgstr "Ap. Buffer Factor:" -#: flatcamGUI/FlatCAMGUI.py:4082 +#: flatcamGUI/FlatCAMGUI.py:4156 msgid "" "Change the size of the selected apertures.\n" "Factor by which to expand/shrink\n" @@ -7143,15 +6547,15 @@ msgstr "" "Factor by which to expand/shrink\n" "geometric features of this object." -#: flatcamGUI/FlatCAMGUI.py:4100 +#: flatcamGUI/FlatCAMGUI.py:4174 msgid "Excellon General" msgstr "Excellon General" -#: flatcamGUI/FlatCAMGUI.py:4122 +#: flatcamGUI/FlatCAMGUI.py:4196 msgid "Excellon Format:" msgstr "Excellon Format:" -#: flatcamGUI/FlatCAMGUI.py:4124 +#: flatcamGUI/FlatCAMGUI.py:4198 msgid "" "The NC drill files, usually named Excellon files\n" "are files that can be found in different formats.\n" @@ -7193,16 +6597,16 @@ msgstr "" "Sprint Layout 2:4 INCH LZ\n" "KiCAD 3:5 INCH TZ" -#: flatcamGUI/FlatCAMGUI.py:4149 +#: flatcamGUI/FlatCAMGUI.py:4223 msgid "INCH:" msgstr "INCH:" -#: flatcamGUI/FlatCAMGUI.py:4152 +#: flatcamGUI/FlatCAMGUI.py:4226 msgid "Default values for INCH are 2:4" msgstr "Default values for INCH are 2:4" -#: flatcamGUI/FlatCAMGUI.py:4160 flatcamGUI/FlatCAMGUI.py:4193 -#: flatcamGUI/FlatCAMGUI.py:4670 +#: flatcamGUI/FlatCAMGUI.py:4234 flatcamGUI/FlatCAMGUI.py:4267 +#: flatcamGUI/FlatCAMGUI.py:4744 msgid "" "This numbers signify the number of digits in\n" "the whole part of Excellon coordinates." @@ -7210,8 +6614,8 @@ msgstr "" "This numbers signify the number of digits in\n" "the whole part of Excellon coordinates." -#: flatcamGUI/FlatCAMGUI.py:4174 flatcamGUI/FlatCAMGUI.py:4207 -#: flatcamGUI/FlatCAMGUI.py:4684 +#: flatcamGUI/FlatCAMGUI.py:4248 flatcamGUI/FlatCAMGUI.py:4281 +#: flatcamGUI/FlatCAMGUI.py:4758 msgid "" "This numbers signify the number of digits in\n" "the decimal part of Excellon coordinates." @@ -7219,19 +6623,19 @@ msgstr "" "This numbers signify the number of digits in\n" "the decimal part of Excellon coordinates." -#: flatcamGUI/FlatCAMGUI.py:4182 +#: flatcamGUI/FlatCAMGUI.py:4256 msgid "METRIC:" msgstr "METRIC:" -#: flatcamGUI/FlatCAMGUI.py:4185 +#: flatcamGUI/FlatCAMGUI.py:4259 msgid "Default values for METRIC are 3:3" msgstr "Default values for METRIC are 3:3" -#: flatcamGUI/FlatCAMGUI.py:4216 +#: flatcamGUI/FlatCAMGUI.py:4290 msgid "Default Zeros:" msgstr "Default Zeros:" -#: flatcamGUI/FlatCAMGUI.py:4219 flatcamGUI/FlatCAMGUI.py:4719 +#: flatcamGUI/FlatCAMGUI.py:4293 flatcamGUI/FlatCAMGUI.py:4793 msgid "" "This sets the type of Excellon zeros.\n" "If LZ then Leading Zeros are kept and\n" @@ -7245,15 +6649,7 @@ msgstr "" "If TZ is checked then Trailing Zeros are kept\n" "and Leading Zeros are removed." -#: flatcamGUI/FlatCAMGUI.py:4227 flatcamGUI/FlatCAMGUI.py:4726 -msgid "LZ" -msgstr "LZ" - -#: flatcamGUI/FlatCAMGUI.py:4228 flatcamGUI/FlatCAMGUI.py:4727 -msgid "TZ" -msgstr "TZ" - -#: flatcamGUI/FlatCAMGUI.py:4230 +#: flatcamGUI/FlatCAMGUI.py:4304 msgid "" "This sets the default type of Excellon zeros.\n" "If it is not detected in the parsed file the value here\n" @@ -7269,11 +6665,11 @@ msgstr "" "If TZ is checked then Trailing Zeros are kept\n" "and Leading Zeros are removed." -#: flatcamGUI/FlatCAMGUI.py:4244 +#: flatcamGUI/FlatCAMGUI.py:4318 msgid "Default Units:" msgstr "Default Units:" -#: flatcamGUI/FlatCAMGUI.py:4247 +#: flatcamGUI/FlatCAMGUI.py:4321 msgid "" "This sets the default units of Excellon files.\n" "If it is not detected in the parsed file the value here\n" @@ -7285,15 +6681,7 @@ msgstr "" "will be used.Some Excellon files don't have an header\n" "therefore this parameter will be used." -#: flatcamGUI/FlatCAMGUI.py:4255 flatcamGUI/FlatCAMGUI.py:4646 -msgid "INCH" -msgstr "INCH" - -#: flatcamGUI/FlatCAMGUI.py:4256 flatcamGUI/FlatCAMGUI.py:4647 -msgid "MM" -msgstr "MM" - -#: flatcamGUI/FlatCAMGUI.py:4258 +#: flatcamGUI/FlatCAMGUI.py:4332 msgid "" "This sets the units of Excellon files.\n" "Some Excellon files don't have an header\n" @@ -7303,15 +6691,15 @@ msgstr "" "Some Excellon files don't have an header\n" "therefore this parameter will be used." -#: flatcamGUI/FlatCAMGUI.py:4274 +#: flatcamGUI/FlatCAMGUI.py:4348 msgid "Excellon Optimization:" msgstr "Excellon Optimization:" -#: flatcamGUI/FlatCAMGUI.py:4281 +#: flatcamGUI/FlatCAMGUI.py:4355 msgid "Algorithm: " msgstr "Algorithm: " -#: flatcamGUI/FlatCAMGUI.py:4284 flatcamGUI/FlatCAMGUI.py:4297 +#: flatcamGUI/FlatCAMGUI.py:4358 flatcamGUI/FlatCAMGUI.py:4371 msgid "" "This sets the optimization type for the Excellon drill path.\n" "If MH is checked then Google OR-Tools algorithm with MetaHeuristic\n" @@ -7331,15 +6719,11 @@ msgstr "" "If DISABLED, then FlatCAM works in 32bit mode and it uses \n" "Travelling Salesman algorithm for path optimization." -#: flatcamGUI/FlatCAMGUI.py:4294 -msgid "MH" -msgstr "MH" - -#: flatcamGUI/FlatCAMGUI.py:4309 +#: flatcamGUI/FlatCAMGUI.py:4383 msgid "Optimization Time: " msgstr "Optimization Time: " -#: flatcamGUI/FlatCAMGUI.py:4312 +#: flatcamGUI/FlatCAMGUI.py:4386 msgid "" "When OR-Tools Metaheuristic (MH) is enabled there is a\n" "maximum threshold for how much time is spent doing the\n" @@ -7351,15 +6735,15 @@ msgstr "" "path optimization. This max duration is set here.\n" "In seconds." -#: flatcamGUI/FlatCAMGUI.py:4353 +#: flatcamGUI/FlatCAMGUI.py:4427 msgid "Excellon Options" msgstr "Excellon Options" -#: flatcamGUI/FlatCAMGUI.py:4356 flatcamGUI/ObjectUI.py:584 +#: flatcamGUI/FlatCAMGUI.py:4430 flatcamGUI/ObjectUI.py:584 msgid "Create CNC Job" msgstr "Create CNC Job" -#: flatcamGUI/FlatCAMGUI.py:4358 +#: flatcamGUI/FlatCAMGUI.py:4432 msgid "" "Parameters used to create a CNC Job object\n" "for this drill object." @@ -7367,13 +6751,13 @@ msgstr "" "Parameters used to create a CNC Job object\n" "for this drill object." -#: flatcamGUI/FlatCAMGUI.py:4366 flatcamGUI/FlatCAMGUI.py:4822 -#: flatcamGUI/FlatCAMGUI.py:5830 flatcamGUI/ObjectUI.py:595 +#: flatcamGUI/FlatCAMGUI.py:4440 flatcamGUI/FlatCAMGUI.py:4896 +#: flatcamGUI/FlatCAMGUI.py:5904 flatcamGUI/ObjectUI.py:595 #: flatcamGUI/ObjectUI.py:1059 flatcamTools/ToolCalculators.py:108 msgid "Cut Z:" msgstr "Cut Z:" -#: flatcamGUI/FlatCAMGUI.py:4368 flatcamGUI/ObjectUI.py:597 +#: flatcamGUI/FlatCAMGUI.py:4442 flatcamGUI/ObjectUI.py:597 msgid "" "Drill depth (negative)\n" "below the copper surface." @@ -7381,12 +6765,12 @@ msgstr "" "Drill depth (negative)\n" "below the copper surface." -#: flatcamGUI/FlatCAMGUI.py:4375 flatcamGUI/FlatCAMGUI.py:4855 +#: flatcamGUI/FlatCAMGUI.py:4449 flatcamGUI/FlatCAMGUI.py:4929 #: flatcamGUI/ObjectUI.py:605 flatcamGUI/ObjectUI.py:1095 msgid "Travel Z:" msgstr "Travel Z:" -#: flatcamGUI/FlatCAMGUI.py:4377 flatcamGUI/ObjectUI.py:607 +#: flatcamGUI/FlatCAMGUI.py:4451 flatcamGUI/ObjectUI.py:607 msgid "" "Tool height when travelling\n" "across the XY plane." @@ -7394,11 +6778,11 @@ msgstr "" "Tool height when travelling\n" "across the XY plane." -#: flatcamGUI/FlatCAMGUI.py:4385 flatcamGUI/FlatCAMGUI.py:4865 +#: flatcamGUI/FlatCAMGUI.py:4459 flatcamGUI/FlatCAMGUI.py:4939 msgid "Tool change:" msgstr "Tool change:" -#: flatcamGUI/FlatCAMGUI.py:4387 flatcamGUI/FlatCAMGUI.py:4867 +#: flatcamGUI/FlatCAMGUI.py:4461 flatcamGUI/FlatCAMGUI.py:4941 #: flatcamGUI/ObjectUI.py:617 msgid "" "Include tool-change sequence\n" @@ -7407,19 +6791,19 @@ msgstr "" "Include tool-change sequence\n" "in G-Code (Pause for tool change)." -#: flatcamGUI/FlatCAMGUI.py:4394 flatcamGUI/FlatCAMGUI.py:4875 +#: flatcamGUI/FlatCAMGUI.py:4468 flatcamGUI/FlatCAMGUI.py:4949 msgid "Toolchange Z:" msgstr "Toolchange Z:" -#: flatcamGUI/FlatCAMGUI.py:4396 flatcamGUI/FlatCAMGUI.py:4877 +#: flatcamGUI/FlatCAMGUI.py:4470 flatcamGUI/FlatCAMGUI.py:4951 msgid "Toolchange Z position." msgstr "Toolchange Z position." -#: flatcamGUI/FlatCAMGUI.py:4402 +#: flatcamGUI/FlatCAMGUI.py:4476 msgid "Feedrate:" msgstr "Feedrate:" -#: flatcamGUI/FlatCAMGUI.py:4404 +#: flatcamGUI/FlatCAMGUI.py:4478 msgid "" "Tool speed while drilling\n" "(in units per minute)." @@ -7427,11 +6811,11 @@ msgstr "" "Tool speed while drilling\n" "(in units per minute)." -#: flatcamGUI/FlatCAMGUI.py:4412 +#: flatcamGUI/FlatCAMGUI.py:4486 msgid "Spindle Speed:" msgstr "Spindle Speed:" -#: flatcamGUI/FlatCAMGUI.py:4414 flatcamGUI/FlatCAMGUI.py:4907 +#: flatcamGUI/FlatCAMGUI.py:4488 flatcamGUI/FlatCAMGUI.py:4981 #: flatcamGUI/ObjectUI.py:681 msgid "" "Speed of the spindle\n" @@ -7440,12 +6824,12 @@ msgstr "" "Speed of the spindle\n" "in RPM (optional)" -#: flatcamGUI/FlatCAMGUI.py:4422 flatcamGUI/FlatCAMGUI.py:4915 +#: flatcamGUI/FlatCAMGUI.py:4496 flatcamGUI/FlatCAMGUI.py:4989 #: flatcamGUI/ObjectUI.py:689 flatcamGUI/ObjectUI.py:1218 msgid "Dwell:" msgstr "Dwell:" -#: flatcamGUI/FlatCAMGUI.py:4424 flatcamGUI/FlatCAMGUI.py:4917 +#: flatcamGUI/FlatCAMGUI.py:4498 flatcamGUI/FlatCAMGUI.py:4991 #: flatcamGUI/ObjectUI.py:691 flatcamGUI/ObjectUI.py:1221 msgid "" "Pause to allow the spindle to reach its\n" @@ -7454,21 +6838,21 @@ msgstr "" "Pause to allow the spindle to reach its\n" "speed before cutting." -#: flatcamGUI/FlatCAMGUI.py:4427 flatcamGUI/FlatCAMGUI.py:4920 +#: flatcamGUI/FlatCAMGUI.py:4501 flatcamGUI/FlatCAMGUI.py:4994 msgid "Duration:" msgstr "Duration:" -#: flatcamGUI/FlatCAMGUI.py:4429 flatcamGUI/FlatCAMGUI.py:4922 +#: flatcamGUI/FlatCAMGUI.py:4503 flatcamGUI/FlatCAMGUI.py:4996 #: flatcamGUI/ObjectUI.py:696 flatcamGUI/ObjectUI.py:1228 msgid "Number of milliseconds for spindle to dwell." msgstr "Number of milliseconds for spindle to dwell." -#: flatcamGUI/FlatCAMGUI.py:4441 flatcamGUI/FlatCAMGUI.py:4932 +#: flatcamGUI/FlatCAMGUI.py:4515 flatcamGUI/FlatCAMGUI.py:5006 #: flatcamGUI/ObjectUI.py:704 msgid "Postprocessor:" msgstr "Postprocessor:" -#: flatcamGUI/FlatCAMGUI.py:4443 +#: flatcamGUI/FlatCAMGUI.py:4517 msgid "" "The postprocessor file that dictates\n" "gcode output." @@ -7476,11 +6860,11 @@ msgstr "" "The postprocessor file that dictates\n" "gcode output." -#: flatcamGUI/FlatCAMGUI.py:4453 +#: flatcamGUI/FlatCAMGUI.py:4527 msgid "Gcode: " msgstr "Gcode: " -#: flatcamGUI/FlatCAMGUI.py:4455 +#: flatcamGUI/FlatCAMGUI.py:4529 msgid "" "Choose what to use for GCode generation:\n" "'Drills', 'Slots' or 'Both'.\n" @@ -7492,37 +6876,23 @@ msgstr "" "When choosing 'Slots' or 'Both', slots will be\n" "converted to drills." -#: flatcamGUI/FlatCAMGUI.py:4460 flatcamGUI/ObjectUI.py:556 -#: flatcamGUI/ObjectUI.py:752 -msgid "Drills" -msgstr "Drills" - -#: flatcamGUI/FlatCAMGUI.py:4461 flatcamGUI/ObjectUI.py:556 -#: flatcamGUI/ObjectUI.py:753 -msgid "Slots" -msgstr "Slots" - -#: flatcamGUI/FlatCAMGUI.py:4462 flatcamGUI/ObjectUI.py:754 -msgid "Both" -msgstr "Both" - -#: flatcamGUI/FlatCAMGUI.py:4471 flatcamGUI/ObjectUI.py:769 +#: flatcamGUI/FlatCAMGUI.py:4545 flatcamGUI/ObjectUI.py:769 msgid "Mill Holes" msgstr "Mill Holes" -#: flatcamGUI/FlatCAMGUI.py:4473 flatcamGUI/ObjectUI.py:771 +#: flatcamGUI/FlatCAMGUI.py:4547 flatcamGUI/ObjectUI.py:771 msgid "Create Geometry for milling holes." msgstr "Create Geometry for milling holes." -#: flatcamGUI/FlatCAMGUI.py:4479 +#: flatcamGUI/FlatCAMGUI.py:4553 msgid "Drill Tool dia:" msgstr "Drill Tool dia:" -#: flatcamGUI/FlatCAMGUI.py:4486 +#: flatcamGUI/FlatCAMGUI.py:4560 msgid "Slot Tool dia:" msgstr "Slot Tool dia:" -#: flatcamGUI/FlatCAMGUI.py:4488 +#: flatcamGUI/FlatCAMGUI.py:4562 msgid "" "Diameter of the cutting tool\n" "when milling slots." @@ -7530,19 +6900,19 @@ msgstr "" "Diameter of the cutting tool\n" "when milling slots." -#: flatcamGUI/FlatCAMGUI.py:4500 +#: flatcamGUI/FlatCAMGUI.py:4574 msgid "Defaults" msgstr "Defaults" -#: flatcamGUI/FlatCAMGUI.py:4513 +#: flatcamGUI/FlatCAMGUI.py:4587 msgid "Excellon Adv. Options" msgstr "Excellon Adv. Options" -#: flatcamGUI/FlatCAMGUI.py:4519 flatcamGUI/FlatCAMGUI.py:4955 +#: flatcamGUI/FlatCAMGUI.py:4593 flatcamGUI/FlatCAMGUI.py:5029 msgid "Advanced Options:" msgstr "Advanced Options:" -#: flatcamGUI/FlatCAMGUI.py:4521 +#: flatcamGUI/FlatCAMGUI.py:4595 msgid "" "Parameters used to create a CNC Job object\n" "for this drill object that are shown when App Level is Advanced." @@ -7550,11 +6920,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:4529 +#: flatcamGUI/FlatCAMGUI.py:4603 msgid "Offset Z:" msgstr "Offset Z:" -#: flatcamGUI/FlatCAMGUI.py:4531 flatcamGUI/ObjectUI.py:574 +#: flatcamGUI/FlatCAMGUI.py:4605 flatcamGUI/ObjectUI.py:574 msgid "" "Some drill bits (the larger ones) need to drill deeper\n" "to create the desired exit hole diameter due of the tip shape.\n" @@ -7564,20 +6934,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:4538 flatcamGUI/FlatCAMGUI.py:4966 +#: flatcamGUI/FlatCAMGUI.py:4612 flatcamGUI/FlatCAMGUI.py:5040 msgid "Toolchange X,Y:" msgstr "Toolchange X,Y:" -#: flatcamGUI/FlatCAMGUI.py:4540 flatcamGUI/FlatCAMGUI.py:4968 +#: flatcamGUI/FlatCAMGUI.py:4614 flatcamGUI/FlatCAMGUI.py:5042 msgid "Toolchange X,Y position." msgstr "Toolchange X,Y position." -#: flatcamGUI/FlatCAMGUI.py:4546 flatcamGUI/FlatCAMGUI.py:4975 +#: flatcamGUI/FlatCAMGUI.py:4620 flatcamGUI/FlatCAMGUI.py:5049 #: flatcamGUI/ObjectUI.py:634 msgid "Start move Z:" msgstr "Start move Z:" -#: flatcamGUI/FlatCAMGUI.py:4548 +#: flatcamGUI/FlatCAMGUI.py:4622 msgid "" "Height of the tool just after start.\n" "Delete the value if you don't need this feature." @@ -7585,12 +6955,12 @@ msgstr "" "Height of the tool just after start.\n" "Delete the value if you don't need this feature." -#: flatcamGUI/FlatCAMGUI.py:4555 flatcamGUI/FlatCAMGUI.py:4985 +#: flatcamGUI/FlatCAMGUI.py:4629 flatcamGUI/FlatCAMGUI.py:5059 #: flatcamGUI/ObjectUI.py:644 flatcamGUI/ObjectUI.py:1141 msgid "End move Z:" msgstr "End move Z:" -#: flatcamGUI/FlatCAMGUI.py:4557 flatcamGUI/FlatCAMGUI.py:4987 +#: flatcamGUI/FlatCAMGUI.py:4631 flatcamGUI/FlatCAMGUI.py:5061 msgid "" "Height of the tool after\n" "the last move at the end of the job." @@ -7598,12 +6968,12 @@ msgstr "" "Height of the tool after\n" "the last move at the end of the job." -#: flatcamGUI/FlatCAMGUI.py:4564 flatcamGUI/FlatCAMGUI.py:4995 +#: flatcamGUI/FlatCAMGUI.py:4638 flatcamGUI/FlatCAMGUI.py:5069 #: flatcamGUI/ObjectUI.py:665 msgid "Feedrate Rapids:" msgstr "Feedrate Rapids:" -#: flatcamGUI/FlatCAMGUI.py:4566 flatcamGUI/ObjectUI.py:667 +#: flatcamGUI/FlatCAMGUI.py:4640 flatcamGUI/ObjectUI.py:667 msgid "" "Tool speed while drilling\n" "(in units per minute).\n" @@ -7617,12 +6987,12 @@ msgstr "" "It is useful only for Marlin,\n" "ignore for any other cases." -#: flatcamGUI/FlatCAMGUI.py:4577 flatcamGUI/FlatCAMGUI.py:5019 +#: flatcamGUI/FlatCAMGUI.py:4651 flatcamGUI/FlatCAMGUI.py:5093 #: flatcamGUI/ObjectUI.py:715 flatcamGUI/ObjectUI.py:1250 msgid "Probe Z depth:" msgstr "Probe Z depth:" -#: flatcamGUI/FlatCAMGUI.py:4579 flatcamGUI/FlatCAMGUI.py:5021 +#: flatcamGUI/FlatCAMGUI.py:4653 flatcamGUI/FlatCAMGUI.py:5095 #: flatcamGUI/ObjectUI.py:717 flatcamGUI/ObjectUI.py:1253 msgid "" "The maximum depth that the probe is allowed\n" @@ -7631,21 +7001,21 @@ msgstr "" "The maximum depth that the probe is allowed\n" "to probe. Negative value, in current units." -#: flatcamGUI/FlatCAMGUI.py:4587 flatcamGUI/FlatCAMGUI.py:5029 +#: flatcamGUI/FlatCAMGUI.py:4661 flatcamGUI/FlatCAMGUI.py:5103 #: flatcamGUI/ObjectUI.py:727 flatcamGUI/ObjectUI.py:1264 msgid "Feedrate Probe:" msgstr "Feedrate Probe:" -#: flatcamGUI/FlatCAMGUI.py:4589 flatcamGUI/FlatCAMGUI.py:5031 +#: flatcamGUI/FlatCAMGUI.py:4663 flatcamGUI/FlatCAMGUI.py:5105 #: flatcamGUI/ObjectUI.py:729 flatcamGUI/ObjectUI.py:1267 msgid "The feedrate used while the probe is probing." msgstr "The feedrate used while the probe is probing." -#: flatcamGUI/FlatCAMGUI.py:4595 flatcamGUI/FlatCAMGUI.py:5038 +#: flatcamGUI/FlatCAMGUI.py:4669 flatcamGUI/FlatCAMGUI.py:5112 msgid "Fast Plunge:" msgstr "Fast Plunge:" -#: flatcamGUI/FlatCAMGUI.py:4597 flatcamGUI/FlatCAMGUI.py:5040 +#: flatcamGUI/FlatCAMGUI.py:4671 flatcamGUI/FlatCAMGUI.py:5114 msgid "" "By checking this, the vertical move from\n" "Z_Toolchange to Z_move is done with G0,\n" @@ -7657,11 +7027,11 @@ msgstr "" "meaning the fastest speed available.\n" "WARNING: the move is done at Toolchange X,Y coords." -#: flatcamGUI/FlatCAMGUI.py:4606 +#: flatcamGUI/FlatCAMGUI.py:4680 msgid "Fast Retract:" msgstr "Fast Retract:" -#: flatcamGUI/FlatCAMGUI.py:4608 +#: flatcamGUI/FlatCAMGUI.py:4682 msgid "" "Exit hole strategy.\n" " - When uncheked, while exiting the drilled hole the drill bit\n" @@ -7677,15 +7047,15 @@ 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:4627 +#: flatcamGUI/FlatCAMGUI.py:4701 msgid "Excellon Export" msgstr "Excellon Export" -#: flatcamGUI/FlatCAMGUI.py:4630 +#: flatcamGUI/FlatCAMGUI.py:4704 msgid "Export Options:" msgstr "Export Options:" -#: flatcamGUI/FlatCAMGUI.py:4632 +#: flatcamGUI/FlatCAMGUI.py:4706 msgid "" "The parameters set here are used in the file exported\n" "when using the File -> Export -> Export Excellon menu entry." @@ -7693,19 +7063,19 @@ msgstr "" "The parameters set here are used in the file exported\n" "when using the File -> Export -> Export Excellon menu entry." -#: flatcamGUI/FlatCAMGUI.py:4641 +#: flatcamGUI/FlatCAMGUI.py:4715 msgid "Units:" msgstr "Units:" -#: flatcamGUI/FlatCAMGUI.py:4643 flatcamGUI/FlatCAMGUI.py:4649 +#: flatcamGUI/FlatCAMGUI.py:4717 flatcamGUI/FlatCAMGUI.py:4723 msgid "The units used in the Excellon file." msgstr "The units used in the Excellon file." -#: flatcamGUI/FlatCAMGUI.py:4655 +#: flatcamGUI/FlatCAMGUI.py:4729 msgid "Int/Decimals:" msgstr "Int/Decimals:" -#: flatcamGUI/FlatCAMGUI.py:4657 +#: flatcamGUI/FlatCAMGUI.py:4731 msgid "" "The NC drill files, usually named Excellon files\n" "are files that can be found in different formats.\n" @@ -7717,11 +7087,11 @@ msgstr "" "Here we set the format used when the provided\n" "coordinates are not using period." -#: flatcamGUI/FlatCAMGUI.py:4693 +#: flatcamGUI/FlatCAMGUI.py:4767 msgid "Format:" msgstr "Format:" -#: flatcamGUI/FlatCAMGUI.py:4695 flatcamGUI/FlatCAMGUI.py:4705 +#: flatcamGUI/FlatCAMGUI.py:4769 flatcamGUI/FlatCAMGUI.py:4779 msgid "" "Select the kind of coordinates format used.\n" "Coordinates can be saved with decimal point or without.\n" @@ -7737,19 +7107,11 @@ msgstr "" "Also it will have to be specified if LZ = leading zeros are kept\n" "or TZ = trailing zeros are kept." -#: flatcamGUI/FlatCAMGUI.py:4702 -msgid "Decimal" -msgstr "Decimal" - -#: flatcamGUI/FlatCAMGUI.py:4703 -msgid "No-Decimal" -msgstr "No-Decimal" - -#: flatcamGUI/FlatCAMGUI.py:4716 +#: flatcamGUI/FlatCAMGUI.py:4790 msgid "Zeros:" msgstr "Zeros:" -#: flatcamGUI/FlatCAMGUI.py:4729 +#: flatcamGUI/FlatCAMGUI.py:4803 msgid "" "This sets the default type of Excellon zeros.\n" "If LZ then Leading Zeros are kept and\n" @@ -7763,11 +7125,11 @@ msgstr "" "If TZ is checked then Trailing Zeros are kept\n" "and Leading Zeros are removed." -#: flatcamGUI/FlatCAMGUI.py:4755 +#: flatcamGUI/FlatCAMGUI.py:4829 msgid "Geometry General" msgstr "Geometry General" -#: flatcamGUI/FlatCAMGUI.py:4773 +#: flatcamGUI/FlatCAMGUI.py:4847 msgid "" "The number of circle steps for Geometry \n" "circle and arc shapes linear approximation." @@ -7775,15 +7137,15 @@ msgstr "" "The number of circle steps for Geometry \n" "circle and arc shapes linear approximation." -#: flatcamGUI/FlatCAMGUI.py:4781 +#: flatcamGUI/FlatCAMGUI.py:4855 msgid "Tools" msgstr "Tools" -#: flatcamGUI/FlatCAMGUI.py:4788 +#: flatcamGUI/FlatCAMGUI.py:4862 msgid "Tool dia: " msgstr "Tool dia: " -#: flatcamGUI/FlatCAMGUI.py:4790 +#: flatcamGUI/FlatCAMGUI.py:4864 msgid "" "The diameter of the cutting\n" "tool.." @@ -7791,15 +7153,15 @@ msgstr "" "The diameter of the cutting\n" "tool.." -#: flatcamGUI/FlatCAMGUI.py:4805 +#: flatcamGUI/FlatCAMGUI.py:4879 msgid "Geometry Options" msgstr "Geometry Options" -#: flatcamGUI/FlatCAMGUI.py:4810 +#: flatcamGUI/FlatCAMGUI.py:4884 msgid "Create CNC Job:" msgstr "Create CNC Job:" -#: flatcamGUI/FlatCAMGUI.py:4812 +#: flatcamGUI/FlatCAMGUI.py:4886 msgid "" "Create a CNC Job object\n" "tracing the contours of this\n" @@ -7809,7 +7171,7 @@ msgstr "" "tracing the contours of this\n" "Geometry object." -#: flatcamGUI/FlatCAMGUI.py:4824 flatcamGUI/ObjectUI.py:1062 +#: flatcamGUI/FlatCAMGUI.py:4898 flatcamGUI/ObjectUI.py:1062 msgid "" "Cutting depth (negative)\n" "below the copper surface." @@ -7817,19 +7179,19 @@ msgstr "" "Cutting depth (negative)\n" "below the copper surface." -#: flatcamGUI/FlatCAMGUI.py:4832 +#: flatcamGUI/FlatCAMGUI.py:4906 msgid "Multidepth" msgstr "Multidepth" -#: flatcamGUI/FlatCAMGUI.py:4834 +#: flatcamGUI/FlatCAMGUI.py:4908 msgid "Multidepth usage: True or False." msgstr "Multidepth usage: True or False." -#: flatcamGUI/FlatCAMGUI.py:4839 +#: flatcamGUI/FlatCAMGUI.py:4913 msgid "Depth/Pass:" msgstr "Depth/Pass:" -#: flatcamGUI/FlatCAMGUI.py:4841 +#: flatcamGUI/FlatCAMGUI.py:4915 msgid "" "The depth to cut on each pass,\n" "when multidepth is enabled.\n" @@ -7843,7 +7205,7 @@ msgstr "" "it is a fraction from the depth\n" "which has negative value." -#: flatcamGUI/FlatCAMGUI.py:4857 flatcamGUI/ObjectUI.py:1098 +#: flatcamGUI/FlatCAMGUI.py:4931 flatcamGUI/ObjectUI.py:1098 msgid "" "Height of the tool when\n" "moving without cutting." @@ -7851,11 +7213,11 @@ msgstr "" "Height of the tool when\n" "moving without cutting." -#: flatcamGUI/FlatCAMGUI.py:4884 flatcamGUI/ObjectUI.py:1153 +#: flatcamGUI/FlatCAMGUI.py:4958 flatcamGUI/ObjectUI.py:1153 msgid "Feed Rate X-Y:" msgstr "Feed Rate X-Y:" -#: flatcamGUI/FlatCAMGUI.py:4886 flatcamGUI/ObjectUI.py:1156 +#: flatcamGUI/FlatCAMGUI.py:4960 flatcamGUI/ObjectUI.py:1156 msgid "" "Cutting speed in the XY\n" "plane in units per minute" @@ -7863,11 +7225,11 @@ msgstr "" "Cutting speed in the XY\n" "plane in units per minute" -#: flatcamGUI/FlatCAMGUI.py:4894 +#: flatcamGUI/FlatCAMGUI.py:4968 msgid "Feed Rate Z:" msgstr "Feed Rate Z:" -#: flatcamGUI/FlatCAMGUI.py:4896 +#: flatcamGUI/FlatCAMGUI.py:4970 msgid "" "Cutting speed in the XY\n" "plane in units per minute.\n" @@ -7877,12 +7239,12 @@ msgstr "" "plane in units per minute.\n" "It is called also Plunge." -#: flatcamGUI/FlatCAMGUI.py:4905 flatcamGUI/ObjectUI.py:679 +#: flatcamGUI/FlatCAMGUI.py:4979 flatcamGUI/ObjectUI.py:679 #: flatcamGUI/ObjectUI.py:1205 msgid "Spindle speed:" msgstr "Spindle speed:" -#: flatcamGUI/FlatCAMGUI.py:4934 +#: flatcamGUI/FlatCAMGUI.py:5008 msgid "" "The postprocessor file that dictates\n" "Machine Code output." @@ -7890,11 +7252,11 @@ msgstr "" "The postprocessor file that dictates\n" "Machine Code output." -#: flatcamGUI/FlatCAMGUI.py:4950 +#: flatcamGUI/FlatCAMGUI.py:5024 msgid "Geometry Adv. Options" msgstr "Geometry Adv. Options" -#: flatcamGUI/FlatCAMGUI.py:4957 +#: flatcamGUI/FlatCAMGUI.py:5031 msgid "" "Parameters to create a CNC Job object\n" "tracing the contours of a Geometry object." @@ -7902,7 +7264,7 @@ msgstr "" "Parameters to create a CNC Job object\n" "tracing the contours of a Geometry object." -#: flatcamGUI/FlatCAMGUI.py:4977 +#: flatcamGUI/FlatCAMGUI.py:5051 msgid "" "Height of the tool just after starting the work.\n" "Delete the value if you don't need this feature." @@ -7910,7 +7272,7 @@ msgstr "" "Height of the tool just after starting the work.\n" "Delete the value if you don't need this feature." -#: flatcamGUI/FlatCAMGUI.py:4997 +#: flatcamGUI/FlatCAMGUI.py:5071 msgid "" "Cutting speed in the XY plane\n" "(in units per minute).\n" @@ -7924,11 +7286,11 @@ msgstr "" "It is useful only for Marlin,\n" "ignore for any other cases." -#: flatcamGUI/FlatCAMGUI.py:5009 +#: flatcamGUI/FlatCAMGUI.py:5083 msgid "Re-cut 1st pt." msgstr "Re-cut 1st pt." -#: flatcamGUI/FlatCAMGUI.py:5011 flatcamGUI/ObjectUI.py:1196 +#: flatcamGUI/FlatCAMGUI.py:5085 flatcamGUI/ObjectUI.py:1196 msgid "" "In order to remove possible\n" "copper leftovers where first cut\n" @@ -7940,11 +7302,11 @@ msgstr "" "meet with last cut, we generate an\n" "extended cut over the first cut section." -#: flatcamGUI/FlatCAMGUI.py:5050 +#: flatcamGUI/FlatCAMGUI.py:5124 msgid "Seg. X size:" msgstr "Seg. X size:" -#: flatcamGUI/FlatCAMGUI.py:5052 +#: flatcamGUI/FlatCAMGUI.py:5126 msgid "" "The size of the trace segment on the X axis.\n" "Useful for auto-leveling.\n" @@ -7954,11 +7316,11 @@ msgstr "" "Useful for auto-leveling.\n" "A value of 0 means no segmentation on the X axis." -#: flatcamGUI/FlatCAMGUI.py:5061 +#: flatcamGUI/FlatCAMGUI.py:5135 msgid "Seg. Y size:" msgstr "Seg. Y size:" -#: flatcamGUI/FlatCAMGUI.py:5063 +#: flatcamGUI/FlatCAMGUI.py:5137 msgid "" "The size of the trace segment on the Y axis.\n" "Useful for auto-leveling.\n" @@ -7968,20 +7330,20 @@ msgstr "" "Useful for auto-leveling.\n" "A value of 0 means no segmentation on the Y axis." -#: flatcamGUI/FlatCAMGUI.py:5079 +#: flatcamGUI/FlatCAMGUI.py:5153 msgid "CNC Job General" msgstr "CNC Job General" -#: flatcamGUI/FlatCAMGUI.py:5092 flatcamGUI/ObjectUI.py:544 +#: flatcamGUI/FlatCAMGUI.py:5166 flatcamGUI/ObjectUI.py:544 #: flatcamGUI/ObjectUI.py:874 flatcamGUI/ObjectUI.py:1428 msgid "Plot Object" msgstr "Plot Object" -#: flatcamGUI/FlatCAMGUI.py:5099 +#: flatcamGUI/FlatCAMGUI.py:5173 msgid "Plot kind:" msgstr "Plot kind:" -#: flatcamGUI/FlatCAMGUI.py:5101 flatcamGUI/ObjectUI.py:1350 +#: flatcamGUI/FlatCAMGUI.py:5175 flatcamGUI/ObjectUI.py:1350 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" @@ -7993,11 +7355,7 @@ msgstr "" "above the work piece or it can be of type 'Cut',\n" "which means the moves that cut into the material." -#: flatcamGUI/FlatCAMGUI.py:5109 flatcamGUI/ObjectUI.py:1359 -msgid "Travel" -msgstr "Travel" - -#: flatcamGUI/FlatCAMGUI.py:5120 +#: flatcamGUI/FlatCAMGUI.py:5194 msgid "" "The number of circle steps for GCode \n" "circle and arc shapes linear approximation." @@ -8005,7 +7363,7 @@ msgstr "" "The number of circle steps for GCode \n" "circle and arc shapes linear approximation." -#: flatcamGUI/FlatCAMGUI.py:5130 +#: flatcamGUI/FlatCAMGUI.py:5204 msgid "" "Diameter of the tool to be\n" "rendered in the plot." @@ -8013,11 +7371,11 @@ msgstr "" "Diameter of the tool to be\n" "rendered in the plot." -#: flatcamGUI/FlatCAMGUI.py:5138 +#: flatcamGUI/FlatCAMGUI.py:5212 msgid "Coords dec.:" msgstr "Coords dec.:" -#: flatcamGUI/FlatCAMGUI.py:5140 +#: flatcamGUI/FlatCAMGUI.py:5214 msgid "" "The number of decimals to be used for \n" "the X, Y, Z coordinates in CNC code (GCODE, etc.)" @@ -8025,11 +7383,11 @@ msgstr "" "The number of decimals to be used for \n" "the X, Y, Z coordinates in CNC code (GCODE, etc.)" -#: flatcamGUI/FlatCAMGUI.py:5148 +#: flatcamGUI/FlatCAMGUI.py:5222 msgid "Feedrate dec.:" msgstr "Feedrate dec.:" -#: flatcamGUI/FlatCAMGUI.py:5150 +#: flatcamGUI/FlatCAMGUI.py:5224 msgid "" "The number of decimals to be used for \n" "the Feedrate parameter in CNC code (GCODE, etc.)" @@ -8037,15 +7395,15 @@ msgstr "" "The number of decimals to be used for \n" "the Feedrate parameter in CNC code (GCODE, etc.)" -#: flatcamGUI/FlatCAMGUI.py:5165 +#: flatcamGUI/FlatCAMGUI.py:5239 msgid "CNC Job Options" msgstr "CNC Job Options" -#: flatcamGUI/FlatCAMGUI.py:5168 flatcamGUI/FlatCAMGUI.py:5209 +#: flatcamGUI/FlatCAMGUI.py:5242 flatcamGUI/FlatCAMGUI.py:5283 msgid "Export G-Code:" msgstr "Export G-Code:" -#: flatcamGUI/FlatCAMGUI.py:5170 flatcamGUI/FlatCAMGUI.py:5211 +#: flatcamGUI/FlatCAMGUI.py:5244 flatcamGUI/FlatCAMGUI.py:5285 #: flatcamGUI/ObjectUI.py:1464 msgid "" "Export and save G-Code to\n" @@ -8054,11 +7412,11 @@ msgstr "" "Export and save G-Code to\n" "make this object to a file." -#: flatcamGUI/FlatCAMGUI.py:5176 +#: flatcamGUI/FlatCAMGUI.py:5250 msgid "Prepend to G-Code:" msgstr "Prepend to G-Code:" -#: flatcamGUI/FlatCAMGUI.py:5178 +#: flatcamGUI/FlatCAMGUI.py:5252 msgid "" "Type here any G-Code commands you would\n" "like to add at the beginning of the G-Code file." @@ -8066,11 +7424,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:5187 +#: flatcamGUI/FlatCAMGUI.py:5261 msgid "Append to G-Code:" msgstr "Append to G-Code:" -#: flatcamGUI/FlatCAMGUI.py:5189 flatcamGUI/ObjectUI.py:1486 +#: flatcamGUI/FlatCAMGUI.py:5263 flatcamGUI/ObjectUI.py:1486 msgid "" "Type here any G-Code commands you would\n" "like to append to the generated file.\n" @@ -8080,15 +7438,15 @@ msgstr "" "like to append to the generated file.\n" "I.e.: M2 (End of program)" -#: flatcamGUI/FlatCAMGUI.py:5206 +#: flatcamGUI/FlatCAMGUI.py:5280 msgid "CNC Job Adv. Options" msgstr "CNC Job Adv. Options" -#: flatcamGUI/FlatCAMGUI.py:5217 flatcamGUI/ObjectUI.py:1504 +#: flatcamGUI/FlatCAMGUI.py:5291 flatcamGUI/ObjectUI.py:1504 msgid "Toolchange G-Code:" msgstr "Toolchange G-Code:" -#: flatcamGUI/FlatCAMGUI.py:5219 +#: flatcamGUI/FlatCAMGUI.py:5293 msgid "" "Type here any G-Code commands you would\n" "like to be executed when Toolchange event is encountered.\n" @@ -8100,11 +7458,11 @@ msgstr "" "This will constitute a Custom Toolchange GCode,\n" "or a Toolchange Macro." -#: flatcamGUI/FlatCAMGUI.py:5233 flatcamGUI/ObjectUI.py:1526 +#: flatcamGUI/FlatCAMGUI.py:5307 flatcamGUI/ObjectUI.py:1526 msgid "Use Toolchange Macro" msgstr "Use Toolchange Macro" -#: flatcamGUI/FlatCAMGUI.py:5235 flatcamGUI/ObjectUI.py:1529 +#: flatcamGUI/FlatCAMGUI.py:5309 flatcamGUI/ObjectUI.py:1529 msgid "" "Check this box if you want to use\n" "a Custom Toolchange GCode (macro)." @@ -8112,7 +7470,7 @@ msgstr "" "Check this box if you want to use\n" "a Custom Toolchange GCode (macro)." -#: flatcamGUI/FlatCAMGUI.py:5247 flatcamGUI/ObjectUI.py:1538 +#: flatcamGUI/FlatCAMGUI.py:5321 flatcamGUI/ObjectUI.py:1538 msgid "" "A list of the FlatCAM variables that can be used\n" "in the Toolchange event.\n" @@ -8122,78 +7480,78 @@ msgstr "" "in the Toolchange event.\n" "They have to be surrounded by the '%' symbol" -#: flatcamGUI/FlatCAMGUI.py:5254 flatcamGUI/ObjectUI.py:1545 +#: flatcamGUI/FlatCAMGUI.py:5328 flatcamGUI/ObjectUI.py:1545 msgid "Parameters" msgstr "Parameters" -#: flatcamGUI/FlatCAMGUI.py:5257 flatcamGUI/ObjectUI.py:1548 +#: flatcamGUI/FlatCAMGUI.py:5331 flatcamGUI/ObjectUI.py:1548 msgid "FlatCAM CNC parameters" msgstr "FlatCAM CNC parameters" -#: flatcamGUI/FlatCAMGUI.py:5258 flatcamGUI/ObjectUI.py:1549 +#: flatcamGUI/FlatCAMGUI.py:5332 flatcamGUI/ObjectUI.py:1549 msgid "tool = tool number" msgstr "tool = tool number" -#: flatcamGUI/FlatCAMGUI.py:5259 flatcamGUI/ObjectUI.py:1550 +#: flatcamGUI/FlatCAMGUI.py:5333 flatcamGUI/ObjectUI.py:1550 msgid "tooldia = tool diameter" msgstr "tooldia = tool diameter" -#: flatcamGUI/FlatCAMGUI.py:5260 flatcamGUI/ObjectUI.py:1551 +#: flatcamGUI/FlatCAMGUI.py:5334 flatcamGUI/ObjectUI.py:1551 msgid "t_drills = for Excellon, total number of drills" msgstr "t_drills = for Excellon, total number of drills" -#: flatcamGUI/FlatCAMGUI.py:5261 flatcamGUI/ObjectUI.py:1552 +#: flatcamGUI/FlatCAMGUI.py:5335 flatcamGUI/ObjectUI.py:1552 msgid "x_toolchange = X coord for Toolchange" msgstr "x_toolchange = X coord for Toolchange" -#: flatcamGUI/FlatCAMGUI.py:5262 flatcamGUI/ObjectUI.py:1553 +#: flatcamGUI/FlatCAMGUI.py:5336 flatcamGUI/ObjectUI.py:1553 msgid "y_toolchange = Y coord for Toolchange" msgstr "y_toolchange = Y coord for Toolchange" -#: flatcamGUI/FlatCAMGUI.py:5263 flatcamGUI/ObjectUI.py:1554 +#: flatcamGUI/FlatCAMGUI.py:5337 flatcamGUI/ObjectUI.py:1554 msgid "z_toolchange = Z coord for Toolchange" msgstr "z_toolchange = Z coord for Toolchange" -#: flatcamGUI/FlatCAMGUI.py:5264 +#: flatcamGUI/FlatCAMGUI.py:5338 msgid "z_cut = Z depth for the cut" msgstr "z_cut = Z depth for the cut" -#: flatcamGUI/FlatCAMGUI.py:5265 +#: flatcamGUI/FlatCAMGUI.py:5339 msgid "z_move = Z height for travel" msgstr "z_move = Z height for travel" -#: flatcamGUI/FlatCAMGUI.py:5266 flatcamGUI/ObjectUI.py:1557 +#: flatcamGUI/FlatCAMGUI.py:5340 flatcamGUI/ObjectUI.py:1557 msgid "z_depthpercut = the step value for multidepth cut" msgstr "z_depthpercut = the step value for multidepth cut" -#: flatcamGUI/FlatCAMGUI.py:5267 flatcamGUI/ObjectUI.py:1558 +#: flatcamGUI/FlatCAMGUI.py:5341 flatcamGUI/ObjectUI.py:1558 msgid "spindlesspeed = the value for the spindle speed" msgstr "spindlesspeed = the value for the spindle speed" -#: flatcamGUI/FlatCAMGUI.py:5268 flatcamGUI/ObjectUI.py:1559 +#: flatcamGUI/FlatCAMGUI.py:5342 flatcamGUI/ObjectUI.py:1559 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:5289 +#: flatcamGUI/FlatCAMGUI.py:5363 msgid "NCC Tool Options" msgstr "NCC Tool Options" -#: flatcamGUI/FlatCAMGUI.py:5292 flatcamGUI/FlatCAMGUI.py:5393 -#: flatcamGUI/FlatCAMGUI.py:5472 flatcamGUI/FlatCAMGUI.py:5531 -#: flatcamGUI/FlatCAMGUI.py:5634 flatcamGUI/FlatCAMGUI.py:5695 -#: flatcamGUI/FlatCAMGUI.py:5894 flatcamGUI/FlatCAMGUI.py:6021 +#: flatcamGUI/FlatCAMGUI.py:5366 flatcamGUI/FlatCAMGUI.py:5467 +#: flatcamGUI/FlatCAMGUI.py:5546 flatcamGUI/FlatCAMGUI.py:5605 +#: flatcamGUI/FlatCAMGUI.py:5708 flatcamGUI/FlatCAMGUI.py:5769 +#: flatcamGUI/FlatCAMGUI.py:5968 flatcamGUI/FlatCAMGUI.py:6095 msgid "Parameters:" msgstr "Parameters:" -#: flatcamGUI/FlatCAMGUI.py:5302 flatcamGUI/FlatCAMGUI.py:6032 +#: flatcamGUI/FlatCAMGUI.py:5376 flatcamGUI/FlatCAMGUI.py:6106 msgid "Tools dia:" msgstr "Tools dia:" -#: flatcamGUI/FlatCAMGUI.py:5304 +#: flatcamGUI/FlatCAMGUI.py:5378 msgid "Diameters of the cutting tools, separated by ','" msgstr "Diameters of the cutting tools, separated by ','" -#: flatcamGUI/FlatCAMGUI.py:5312 flatcamTools/ToolNonCopperClear.py:167 +#: flatcamGUI/FlatCAMGUI.py:5386 flatcamTools/ToolNonCopperClear.py:167 #, python-format msgid "" "How much (fraction) of the tool width to overlap each tool pass.\n" @@ -8218,11 +7576,11 @@ msgstr "" "Higher values = slow processing and slow execution on CNC\n" "due of too many paths." -#: flatcamGUI/FlatCAMGUI.py:5328 flatcamTools/ToolNonCopperClear.py:183 +#: flatcamGUI/FlatCAMGUI.py:5402 flatcamTools/ToolNonCopperClear.py:183 msgid "Bounding box margin." msgstr "Bounding box margin." -#: flatcamGUI/FlatCAMGUI.py:5337 flatcamTools/ToolNonCopperClear.py:192 +#: flatcamGUI/FlatCAMGUI.py:5411 flatcamTools/ToolNonCopperClear.py:192 #: flatcamTools/ToolPaint.py:190 msgid "" "Algorithm for non-copper clearing:
Standard: Fixed step inwards." @@ -8233,12 +7591,12 @@ msgstr "" "
Seed-based: Outwards from seed.
Line-based: Parallel " "lines." -#: flatcamGUI/FlatCAMGUI.py:5369 flatcamTools/ToolNonCopperClear.py:224 +#: flatcamGUI/FlatCAMGUI.py:5443 flatcamTools/ToolNonCopperClear.py:224 #: flatcamTools/ToolPaint.py:222 msgid "Rest M.:" msgstr "Rest M.:" -#: flatcamGUI/FlatCAMGUI.py:5371 +#: flatcamGUI/FlatCAMGUI.py:5445 msgid "" "If checked, use 'rest machining'.\n" "Basically it will clear copper outside PCB features,\n" @@ -8254,11 +7612,11 @@ msgstr "" "could not be cleared by previous tool.\n" "If not checked, use the standard algorithm." -#: flatcamGUI/FlatCAMGUI.py:5390 +#: flatcamGUI/FlatCAMGUI.py:5464 msgid "Cutout Tool Options" msgstr "Cutout Tool Options" -#: flatcamGUI/FlatCAMGUI.py:5395 flatcamGUI/ObjectUI.py:402 +#: flatcamGUI/FlatCAMGUI.py:5469 flatcamGUI/ObjectUI.py:402 msgid "" "Create toolpaths to cut around\n" "the PCB and separate it from\n" @@ -8268,7 +7626,7 @@ msgstr "" "the PCB and separate it from\n" "the original board." -#: flatcamGUI/FlatCAMGUI.py:5414 +#: flatcamGUI/FlatCAMGUI.py:5488 msgid "" "Distance from objects at which\n" "to draw the cutout." @@ -8276,11 +7634,11 @@ msgstr "" "Distance from objects at which\n" "to draw the cutout." -#: flatcamGUI/FlatCAMGUI.py:5421 flatcamTools/ToolCutOut.py:96 +#: flatcamGUI/FlatCAMGUI.py:5495 flatcamTools/ToolCutOut.py:96 msgid "Gap size:" msgstr "Gap size:" -#: flatcamGUI/FlatCAMGUI.py:5423 +#: flatcamGUI/FlatCAMGUI.py:5497 msgid "" "Size of the gaps in the toolpath\n" "that will remain to hold the\n" @@ -8290,11 +7648,11 @@ msgstr "" "that will remain to hold the\n" "board in place." -#: flatcamGUI/FlatCAMGUI.py:5431 flatcamTools/ToolCutOut.py:133 +#: flatcamGUI/FlatCAMGUI.py:5505 flatcamTools/ToolCutOut.py:133 msgid "Gaps:" msgstr "Gaps:" -#: flatcamGUI/FlatCAMGUI.py:5433 +#: flatcamGUI/FlatCAMGUI.py:5507 msgid "" "Number of bridge gaps used for the cutout.\n" "There can be maximum 8 bridges/gaps.\n" @@ -8316,19 +7674,19 @@ msgstr "" "- 2tb - 2*top + 2*bottom\n" "- 8 - 2*left + 2*right +2*top + 2*bottom" -#: flatcamGUI/FlatCAMGUI.py:5454 flatcamTools/ToolCutOut.py:115 +#: flatcamGUI/FlatCAMGUI.py:5528 flatcamTools/ToolCutOut.py:115 msgid "Convex Sh.:" msgstr "Convex Sh.:" -#: flatcamGUI/FlatCAMGUI.py:5456 flatcamTools/ToolCutOut.py:117 +#: flatcamGUI/FlatCAMGUI.py:5530 flatcamTools/ToolCutOut.py:117 msgid "Create a convex shape surrounding the entire PCB." msgstr "Create a convex shape surrounding the entire PCB." -#: flatcamGUI/FlatCAMGUI.py:5469 +#: flatcamGUI/FlatCAMGUI.py:5543 msgid "2Sided Tool Options" msgstr "2Sided Tool Options" -#: flatcamGUI/FlatCAMGUI.py:5474 +#: flatcamGUI/FlatCAMGUI.py:5548 msgid "" "A tool to help in creating a double sided\n" "PCB using alignment holes." @@ -8336,44 +7694,28 @@ msgstr "" "A tool to help in creating a double sided\n" "PCB using alignment holes." -#: flatcamGUI/FlatCAMGUI.py:5484 flatcamTools/ToolDblSided.py:235 +#: flatcamGUI/FlatCAMGUI.py:5558 flatcamTools/ToolDblSided.py:235 msgid "Drill diam.:" msgstr "Drill diam.:" -#: flatcamGUI/FlatCAMGUI.py:5486 flatcamTools/ToolDblSided.py:226 +#: flatcamGUI/FlatCAMGUI.py:5560 flatcamTools/ToolDblSided.py:226 #: flatcamTools/ToolDblSided.py:237 msgid "Diameter of the drill for the alignment holes." msgstr "Diameter of the drill for the alignment holes." -#: flatcamGUI/FlatCAMGUI.py:5493 -msgid "X" -msgstr "X" - -#: flatcamGUI/FlatCAMGUI.py:5494 -msgid "Y" -msgstr "Y" - -#: flatcamGUI/FlatCAMGUI.py:5495 flatcamTools/ToolDblSided.py:120 +#: flatcamGUI/FlatCAMGUI.py:5569 flatcamTools/ToolDblSided.py:120 msgid "Mirror Axis:" msgstr "Mirror Axis:" -#: flatcamGUI/FlatCAMGUI.py:5497 flatcamTools/ToolDblSided.py:122 +#: flatcamGUI/FlatCAMGUI.py:5571 flatcamTools/ToolDblSided.py:122 msgid "Mirror vertically (X) or horizontally (Y)." msgstr "Mirror vertically (X) or horizontally (Y)." -#: flatcamGUI/FlatCAMGUI.py:5506 -msgid "Point" -msgstr "Point" - -#: flatcamGUI/FlatCAMGUI.py:5507 -msgid "Box" -msgstr "Box" - -#: flatcamGUI/FlatCAMGUI.py:5508 flatcamTools/ToolDblSided.py:133 +#: flatcamGUI/FlatCAMGUI.py:5582 flatcamTools/ToolDblSided.py:133 msgid "Axis Ref:" msgstr "Axis Ref:" -#: flatcamGUI/FlatCAMGUI.py:5510 +#: flatcamGUI/FlatCAMGUI.py:5584 msgid "" "The axis should pass through a point or cut\n" " a specified box (in a Geometry object) in \n" @@ -8383,11 +7725,11 @@ msgstr "" " a specified box (in a Geometry object) in \n" "the middle." -#: flatcamGUI/FlatCAMGUI.py:5526 +#: flatcamGUI/FlatCAMGUI.py:5600 msgid "Paint Tool Options" msgstr "Paint Tool Options" -#: flatcamGUI/FlatCAMGUI.py:5533 flatcamGUI/ObjectUI.py:1299 +#: flatcamGUI/FlatCAMGUI.py:5607 flatcamGUI/ObjectUI.py:1299 msgid "" "Creates tool paths to cover the\n" "whole area of a polygon (remove\n" @@ -8399,7 +7741,7 @@ msgstr "" "all copper). You will be asked\n" "to click on the desired polygon." -#: flatcamGUI/FlatCAMGUI.py:5557 +#: flatcamGUI/FlatCAMGUI.py:5631 msgid "" "How much (fraction) of the tool\n" "width to overlap each tool pass." @@ -8407,23 +7749,19 @@ msgstr "" "How much (fraction) of the tool\n" "width to overlap each tool pass." -#: flatcamGUI/FlatCAMGUI.py:5611 flatcamTools/ToolPaint.py:237 +#: flatcamGUI/FlatCAMGUI.py:5685 flatcamTools/ToolPaint.py:237 msgid "Selection:" msgstr "Selection:" -#: flatcamGUI/FlatCAMGUI.py:5613 +#: flatcamGUI/FlatCAMGUI.py:5687 msgid "How to select the polygons to paint." msgstr "How to select the polygons to paint." -#: flatcamGUI/FlatCAMGUI.py:5617 -msgid "Single" -msgstr "Single" - -#: flatcamGUI/FlatCAMGUI.py:5631 +#: flatcamGUI/FlatCAMGUI.py:5705 msgid "Film Tool Options" msgstr "Film Tool Options" -#: flatcamGUI/FlatCAMGUI.py:5636 +#: flatcamGUI/FlatCAMGUI.py:5710 msgid "" "Create a PCB film from a Gerber or Geometry\n" "FlatCAM object.\n" @@ -8433,19 +7771,11 @@ msgstr "" "FlatCAM object.\n" "The file is saved in SVG format." -#: flatcamGUI/FlatCAMGUI.py:5645 -msgid "Pos" -msgstr "Pos" - -#: flatcamGUI/FlatCAMGUI.py:5646 -msgid "Neg" -msgstr "Neg" - -#: flatcamGUI/FlatCAMGUI.py:5647 flatcamTools/ToolFilm.py:116 +#: flatcamGUI/FlatCAMGUI.py:5721 flatcamTools/ToolFilm.py:116 msgid "Film Type:" msgstr "Film Type:" -#: flatcamGUI/FlatCAMGUI.py:5649 flatcamTools/ToolFilm.py:118 +#: flatcamGUI/FlatCAMGUI.py:5723 flatcamTools/ToolFilm.py:118 msgid "" "Generate a Positive black film or a Negative film.\n" "Positive means that it will print the features\n" @@ -8461,11 +7791,11 @@ msgstr "" "with white on a black canvas.\n" "The Film format is SVG." -#: flatcamGUI/FlatCAMGUI.py:5660 flatcamTools/ToolFilm.py:130 +#: flatcamGUI/FlatCAMGUI.py:5734 flatcamTools/ToolFilm.py:130 msgid "Border:" msgstr "Border:" -#: flatcamGUI/FlatCAMGUI.py:5662 flatcamTools/ToolFilm.py:132 +#: flatcamGUI/FlatCAMGUI.py:5736 flatcamTools/ToolFilm.py:132 msgid "" "Specify a border around the object.\n" "Only for negative film.\n" @@ -8485,11 +7815,11 @@ msgstr "" "white color like the rest and which may confound with the\n" "surroundings if not for this border." -#: flatcamGUI/FlatCAMGUI.py:5675 flatcamTools/ToolFilm.py:144 +#: flatcamGUI/FlatCAMGUI.py:5749 flatcamTools/ToolFilm.py:144 msgid "Scale Stroke:" msgstr "Scale Stroke:" -#: flatcamGUI/FlatCAMGUI.py:5677 flatcamTools/ToolFilm.py:146 +#: flatcamGUI/FlatCAMGUI.py:5751 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 " @@ -8501,11 +7831,11 @@ msgstr "" "thinner,\n" "therefore the fine features may be more affected by this parameter." -#: flatcamGUI/FlatCAMGUI.py:5692 +#: flatcamGUI/FlatCAMGUI.py:5766 msgid "Panelize Tool Options" msgstr "Panelize Tool Options" -#: flatcamGUI/FlatCAMGUI.py:5697 +#: flatcamGUI/FlatCAMGUI.py:5771 msgid "" "Create an object that contains an array of (x, y) elements,\n" "each element is a copy of the source object spaced\n" @@ -8515,11 +7845,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:5708 flatcamTools/ToolPanelize.py:113 +#: flatcamGUI/FlatCAMGUI.py:5782 flatcamTools/ToolPanelize.py:113 msgid "Spacing cols:" msgstr "Spacing cols:" -#: flatcamGUI/FlatCAMGUI.py:5710 flatcamTools/ToolPanelize.py:115 +#: flatcamGUI/FlatCAMGUI.py:5784 flatcamTools/ToolPanelize.py:115 msgid "" "Spacing between columns of the desired panel.\n" "In current units." @@ -8527,11 +7857,11 @@ msgstr "" "Spacing between columns of the desired panel.\n" "In current units." -#: flatcamGUI/FlatCAMGUI.py:5718 flatcamTools/ToolPanelize.py:122 +#: flatcamGUI/FlatCAMGUI.py:5792 flatcamTools/ToolPanelize.py:122 msgid "Spacing rows:" msgstr "Spacing rows:" -#: flatcamGUI/FlatCAMGUI.py:5720 flatcamTools/ToolPanelize.py:124 +#: flatcamGUI/FlatCAMGUI.py:5794 flatcamTools/ToolPanelize.py:124 msgid "" "Spacing between rows of the desired panel.\n" "In current units." @@ -8539,35 +7869,27 @@ msgstr "" "Spacing between rows of the desired panel.\n" "In current units." -#: flatcamGUI/FlatCAMGUI.py:5728 flatcamTools/ToolPanelize.py:131 +#: flatcamGUI/FlatCAMGUI.py:5802 flatcamTools/ToolPanelize.py:131 msgid "Columns:" msgstr "Columns:" -#: flatcamGUI/FlatCAMGUI.py:5730 flatcamTools/ToolPanelize.py:133 +#: flatcamGUI/FlatCAMGUI.py:5804 flatcamTools/ToolPanelize.py:133 msgid "Number of columns of the desired panel" msgstr "Number of columns of the desired panel" -#: flatcamGUI/FlatCAMGUI.py:5737 flatcamTools/ToolPanelize.py:139 +#: flatcamGUI/FlatCAMGUI.py:5811 flatcamTools/ToolPanelize.py:139 msgid "Rows:" msgstr "Rows:" -#: flatcamGUI/FlatCAMGUI.py:5739 flatcamTools/ToolPanelize.py:141 +#: flatcamGUI/FlatCAMGUI.py:5813 flatcamTools/ToolPanelize.py:141 msgid "Number of rows of the desired panel" msgstr "Number of rows of the desired panel" -#: flatcamGUI/FlatCAMGUI.py:5745 -msgid "Gerber" -msgstr "Gerber" - -#: flatcamGUI/FlatCAMGUI.py:5746 -msgid "Geo" -msgstr "Geo" - -#: flatcamGUI/FlatCAMGUI.py:5747 flatcamTools/ToolPanelize.py:148 +#: flatcamGUI/FlatCAMGUI.py:5821 flatcamTools/ToolPanelize.py:148 msgid "Panel Type:" msgstr "Panel Type:" -#: flatcamGUI/FlatCAMGUI.py:5749 +#: flatcamGUI/FlatCAMGUI.py:5823 msgid "" "Choose the type of object for the panel object:\n" "- Gerber\n" @@ -8577,11 +7899,11 @@ msgstr "" "- Gerber\n" "- Geometry" -#: flatcamGUI/FlatCAMGUI.py:5758 +#: flatcamGUI/FlatCAMGUI.py:5832 msgid "Constrain within:" msgstr "Constrain within:" -#: flatcamGUI/FlatCAMGUI.py:5760 flatcamTools/ToolPanelize.py:160 +#: flatcamGUI/FlatCAMGUI.py:5834 flatcamTools/ToolPanelize.py:160 msgid "" "Area define by DX and DY within to constrain the panel.\n" "DX and DY values are in current units.\n" @@ -8595,11 +7917,11 @@ msgstr "" "the final panel will have as many columns and rows as\n" "they fit completely within selected area." -#: flatcamGUI/FlatCAMGUI.py:5769 flatcamTools/ToolPanelize.py:169 +#: flatcamGUI/FlatCAMGUI.py:5843 flatcamTools/ToolPanelize.py:169 msgid "Width (DX):" msgstr "Width (DX):" -#: flatcamGUI/FlatCAMGUI.py:5771 flatcamTools/ToolPanelize.py:171 +#: flatcamGUI/FlatCAMGUI.py:5845 flatcamTools/ToolPanelize.py:171 msgid "" "The width (DX) within which the panel must fit.\n" "In current units." @@ -8607,11 +7929,11 @@ msgstr "" "The width (DX) within which the panel must fit.\n" "In current units." -#: flatcamGUI/FlatCAMGUI.py:5778 flatcamTools/ToolPanelize.py:177 +#: flatcamGUI/FlatCAMGUI.py:5852 flatcamTools/ToolPanelize.py:177 msgid "Height (DY):" msgstr "Height (DY):" -#: flatcamGUI/FlatCAMGUI.py:5780 flatcamTools/ToolPanelize.py:179 +#: flatcamGUI/FlatCAMGUI.py:5854 flatcamTools/ToolPanelize.py:179 msgid "" "The height (DY)within which the panel must fit.\n" "In current units." @@ -8619,15 +7941,15 @@ msgstr "" "The height (DY)within which the panel must fit.\n" "In current units." -#: flatcamGUI/FlatCAMGUI.py:5794 +#: flatcamGUI/FlatCAMGUI.py:5868 msgid "Calculators Tool Options" msgstr "Calculators Tool Options" -#: flatcamGUI/FlatCAMGUI.py:5797 +#: flatcamGUI/FlatCAMGUI.py:5871 msgid "V-Shape Tool Calculator:" msgstr "V-Shape Tool Calculator:" -#: flatcamGUI/FlatCAMGUI.py:5799 +#: flatcamGUI/FlatCAMGUI.py:5873 msgid "" "Calculate the tool diameter for a given V-shape tool,\n" "having the tip diameter, tip angle and\n" @@ -8637,11 +7959,11 @@ msgstr "" "having the tip diameter, tip angle and\n" "depth-of-cut as parameters." -#: flatcamGUI/FlatCAMGUI.py:5810 flatcamTools/ToolCalculators.py:94 +#: flatcamGUI/FlatCAMGUI.py:5884 flatcamTools/ToolCalculators.py:94 msgid "Tip Diameter:" msgstr "Tip Diameter:" -#: flatcamGUI/FlatCAMGUI.py:5812 +#: flatcamGUI/FlatCAMGUI.py:5886 msgid "" "This is the tool tip diameter.\n" "It is specified by manufacturer." @@ -8649,11 +7971,11 @@ msgstr "" "This is the tool tip diameter.\n" "It is specified by manufacturer." -#: flatcamGUI/FlatCAMGUI.py:5820 +#: flatcamGUI/FlatCAMGUI.py:5894 msgid "Tip angle:" msgstr "Tip angle:" -#: flatcamGUI/FlatCAMGUI.py:5822 +#: flatcamGUI/FlatCAMGUI.py:5896 msgid "" "This is the angle on the tip of the tool.\n" "It is specified by manufacturer." @@ -8661,7 +7983,7 @@ msgstr "" "This is the angle on the tip of the tool.\n" "It is specified by manufacturer." -#: flatcamGUI/FlatCAMGUI.py:5832 +#: flatcamGUI/FlatCAMGUI.py:5906 msgid "" "This is depth to cut into material.\n" "In the CNCJob object it is the CutZ parameter." @@ -8669,11 +7991,11 @@ msgstr "" "This is depth to cut into material.\n" "In the CNCJob object it is the CutZ parameter." -#: flatcamGUI/FlatCAMGUI.py:5839 +#: flatcamGUI/FlatCAMGUI.py:5913 msgid "ElectroPlating Calculator:" msgstr "ElectroPlating Calculator:" -#: flatcamGUI/FlatCAMGUI.py:5841 flatcamTools/ToolCalculators.py:152 +#: flatcamGUI/FlatCAMGUI.py:5915 flatcamTools/ToolCalculators.py:152 msgid "" "This calculator is useful for those who plate the via/pad/drill holes,\n" "using a method like grahite ink or calcium hypophosphite ink or palladium " @@ -8683,27 +8005,27 @@ msgstr "" "using a method like grahite ink or calcium hypophosphite ink or palladium " "chloride." -#: flatcamGUI/FlatCAMGUI.py:5851 flatcamTools/ToolCalculators.py:161 +#: flatcamGUI/FlatCAMGUI.py:5925 flatcamTools/ToolCalculators.py:161 msgid "Board Length:" msgstr "Board Length:" -#: flatcamGUI/FlatCAMGUI.py:5853 flatcamTools/ToolCalculators.py:165 +#: flatcamGUI/FlatCAMGUI.py:5927 flatcamTools/ToolCalculators.py:165 msgid "This is the board length. In centimeters." msgstr "This is the board length. In centimeters." -#: flatcamGUI/FlatCAMGUI.py:5859 flatcamTools/ToolCalculators.py:167 +#: flatcamGUI/FlatCAMGUI.py:5933 flatcamTools/ToolCalculators.py:167 msgid "Board Width:" msgstr "Board Width:" -#: flatcamGUI/FlatCAMGUI.py:5861 flatcamTools/ToolCalculators.py:171 +#: flatcamGUI/FlatCAMGUI.py:5935 flatcamTools/ToolCalculators.py:171 msgid "This is the board width.In centimeters." msgstr "This is the board width.In centimeters." -#: flatcamGUI/FlatCAMGUI.py:5866 flatcamTools/ToolCalculators.py:173 +#: flatcamGUI/FlatCAMGUI.py:5940 flatcamTools/ToolCalculators.py:173 msgid "Current Density:" msgstr "Current Density:" -#: flatcamGUI/FlatCAMGUI.py:5869 flatcamTools/ToolCalculators.py:177 +#: flatcamGUI/FlatCAMGUI.py:5943 flatcamTools/ToolCalculators.py:177 msgid "" "Current density to pass through the board. \n" "In Amps per Square Feet ASF." @@ -8711,11 +8033,11 @@ msgstr "" "Current density to pass through the board. \n" "In Amps per Square Feet ASF." -#: flatcamGUI/FlatCAMGUI.py:5875 flatcamTools/ToolCalculators.py:181 +#: flatcamGUI/FlatCAMGUI.py:5949 flatcamTools/ToolCalculators.py:181 msgid "Copper Growth:" msgstr "Copper Growth:" -#: flatcamGUI/FlatCAMGUI.py:5878 flatcamTools/ToolCalculators.py:185 +#: flatcamGUI/FlatCAMGUI.py:5952 flatcamTools/ToolCalculators.py:185 msgid "" "How thick the copper growth is intended to be.\n" "In microns." @@ -8723,11 +8045,11 @@ msgstr "" "How thick the copper growth is intended to be.\n" "In microns." -#: flatcamGUI/FlatCAMGUI.py:5891 +#: flatcamGUI/FlatCAMGUI.py:5965 msgid "Transform Tool Options" msgstr "Transform Tool Options" -#: flatcamGUI/FlatCAMGUI.py:5896 +#: flatcamGUI/FlatCAMGUI.py:5970 msgid "" "Various transformations that can be applied\n" "on a FlatCAM object." @@ -8735,47 +8057,47 @@ msgstr "" "Various transformations that can be applied\n" "on a FlatCAM object." -#: flatcamGUI/FlatCAMGUI.py:5906 +#: flatcamGUI/FlatCAMGUI.py:5980 msgid "Rotate Angle:" msgstr "Rotate Angle:" -#: flatcamGUI/FlatCAMGUI.py:5908 +#: flatcamGUI/FlatCAMGUI.py:5982 msgid "Angle for rotation. In degrees." msgstr "Angle for rotation. In degrees." -#: flatcamGUI/FlatCAMGUI.py:5915 +#: flatcamGUI/FlatCAMGUI.py:5989 msgid "Skew_X angle:" msgstr "Skew_X angle:" -#: flatcamGUI/FlatCAMGUI.py:5917 +#: flatcamGUI/FlatCAMGUI.py:5991 msgid "Angle for Skew/Shear on X axis. In degrees." msgstr "Angle for Skew/Shear on X axis. In degrees." -#: flatcamGUI/FlatCAMGUI.py:5924 +#: flatcamGUI/FlatCAMGUI.py:5998 msgid "Skew_Y angle:" msgstr "Skew_Y angle:" -#: flatcamGUI/FlatCAMGUI.py:5926 +#: flatcamGUI/FlatCAMGUI.py:6000 msgid "Angle for Skew/Shear on Y axis. In degrees." msgstr "Angle for Skew/Shear on Y axis. In degrees." -#: flatcamGUI/FlatCAMGUI.py:5933 +#: flatcamGUI/FlatCAMGUI.py:6007 msgid "Scale_X factor:" msgstr "Scale_X factor:" -#: flatcamGUI/FlatCAMGUI.py:5935 +#: flatcamGUI/FlatCAMGUI.py:6009 msgid "Factor for scaling on X axis." msgstr "Factor for scaling on X axis." -#: flatcamGUI/FlatCAMGUI.py:5942 +#: flatcamGUI/FlatCAMGUI.py:6016 msgid "Scale_Y factor:" msgstr "Scale_Y factor:" -#: flatcamGUI/FlatCAMGUI.py:5944 +#: flatcamGUI/FlatCAMGUI.py:6018 msgid "Factor for scaling on Y axis." msgstr "Factor for scaling on Y axis." -#: flatcamGUI/FlatCAMGUI.py:5952 +#: flatcamGUI/FlatCAMGUI.py:6026 msgid "" "Scale the selected object(s)\n" "using the Scale_X factor for both axis." @@ -8783,7 +8105,7 @@ msgstr "" "Scale the selected object(s)\n" "using the Scale_X factor for both axis." -#: flatcamGUI/FlatCAMGUI.py:5960 flatcamTools/ToolTransform.py:210 +#: flatcamGUI/FlatCAMGUI.py:6034 flatcamTools/ToolTransform.py:210 msgid "" "Scale the selected object(s)\n" "using the origin reference when checked,\n" @@ -8795,27 +8117,27 @@ msgstr "" "and the center of the biggest bounding box\n" "of the selected objects when unchecked." -#: flatcamGUI/FlatCAMGUI.py:5969 +#: flatcamGUI/FlatCAMGUI.py:6043 msgid "Offset_X val:" msgstr "Offset_X val:" -#: flatcamGUI/FlatCAMGUI.py:5971 +#: flatcamGUI/FlatCAMGUI.py:6045 msgid "Distance to offset on X axis. In current units." msgstr "Distance to offset on X axis. In current units." -#: flatcamGUI/FlatCAMGUI.py:5978 +#: flatcamGUI/FlatCAMGUI.py:6052 msgid "Offset_Y val:" msgstr "Offset_Y val:" -#: flatcamGUI/FlatCAMGUI.py:5980 +#: flatcamGUI/FlatCAMGUI.py:6054 msgid "Distance to offset on Y axis. In current units." msgstr "Distance to offset on Y axis. In current units." -#: flatcamGUI/FlatCAMGUI.py:5986 +#: flatcamGUI/FlatCAMGUI.py:6060 msgid "Mirror Reference" msgstr "Mirror Reference" -#: flatcamGUI/FlatCAMGUI.py:5988 flatcamTools/ToolTransform.py:314 +#: flatcamGUI/FlatCAMGUI.py:6062 flatcamTools/ToolTransform.py:314 msgid "" "Flip the selected object(s)\n" "around the point in Point Entry Field.\n" @@ -8837,11 +8159,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:5999 +#: flatcamGUI/FlatCAMGUI.py:6073 msgid " Mirror Ref. Point:" msgstr " Mirror Ref. Point:" -#: flatcamGUI/FlatCAMGUI.py:6001 flatcamTools/ToolTransform.py:327 +#: flatcamGUI/FlatCAMGUI.py:6075 flatcamTools/ToolTransform.py:327 msgid "" "Coordinates in format (x, y) used as reference for mirroring.\n" "The 'x' in (x, y) will be used when using Flip on X and\n" @@ -8851,11 +8173,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:6018 +#: flatcamGUI/FlatCAMGUI.py:6092 msgid "SolderPaste Tool Options" msgstr "SolderPaste Tool Options" -#: flatcamGUI/FlatCAMGUI.py:6023 +#: flatcamGUI/FlatCAMGUI.py:6097 msgid "" "A tool to create GCode for dispensing\n" "solder paste onto a PCB." @@ -8863,47 +8185,47 @@ msgstr "" "A tool to create GCode for dispensing\n" "solder paste onto a PCB." -#: flatcamGUI/FlatCAMGUI.py:6034 +#: flatcamGUI/FlatCAMGUI.py:6108 msgid "Diameters of nozzle tools, separated by ','" msgstr "Diameters of nozzle tools, separated by ','" -#: flatcamGUI/FlatCAMGUI.py:6041 +#: flatcamGUI/FlatCAMGUI.py:6115 msgid "New Nozzle Dia:" msgstr "New Nozzle Dia:" -#: flatcamGUI/FlatCAMGUI.py:6043 flatcamTools/ToolSolderPaste.py:103 +#: flatcamGUI/FlatCAMGUI.py:6117 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:6051 flatcamTools/ToolSolderPaste.py:166 +#: flatcamGUI/FlatCAMGUI.py:6125 flatcamTools/ToolSolderPaste.py:166 msgid "Z Dispense Start:" msgstr "Z Dispense Start:" -#: flatcamGUI/FlatCAMGUI.py:6053 flatcamTools/ToolSolderPaste.py:168 +#: flatcamGUI/FlatCAMGUI.py:6127 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:6060 flatcamTools/ToolSolderPaste.py:174 +#: flatcamGUI/FlatCAMGUI.py:6134 flatcamTools/ToolSolderPaste.py:174 msgid "Z Dispense:" msgstr "Z Dispense:" -#: flatcamGUI/FlatCAMGUI.py:6062 flatcamTools/ToolSolderPaste.py:176 +#: flatcamGUI/FlatCAMGUI.py:6136 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:6069 flatcamTools/ToolSolderPaste.py:183 +#: flatcamGUI/FlatCAMGUI.py:6143 flatcamTools/ToolSolderPaste.py:183 msgid "Z Dispense Stop:" msgstr "Z Dispense Stop:" -#: flatcamGUI/FlatCAMGUI.py:6071 flatcamTools/ToolSolderPaste.py:185 +#: flatcamGUI/FlatCAMGUI.py:6145 flatcamTools/ToolSolderPaste.py:185 msgid "The height (Z) when solder paste dispensing stops." msgstr "The height (Z) when solder paste dispensing stops." -#: flatcamGUI/FlatCAMGUI.py:6078 flatcamTools/ToolSolderPaste.py:191 +#: flatcamGUI/FlatCAMGUI.py:6152 flatcamTools/ToolSolderPaste.py:191 msgid "Z Travel:" msgstr "Z Travel:" -#: flatcamGUI/FlatCAMGUI.py:6080 flatcamTools/ToolSolderPaste.py:193 +#: flatcamGUI/FlatCAMGUI.py:6154 flatcamTools/ToolSolderPaste.py:193 msgid "" "The height (Z) for travel between pads\n" "(without dispensing solder paste)." @@ -8911,19 +8233,19 @@ msgstr "" "The height (Z) for travel between pads\n" "(without dispensing solder paste)." -#: flatcamGUI/FlatCAMGUI.py:6088 flatcamTools/ToolSolderPaste.py:200 +#: flatcamGUI/FlatCAMGUI.py:6162 flatcamTools/ToolSolderPaste.py:200 msgid "Z Toolchange:" msgstr "Z Toolchange:" -#: flatcamGUI/FlatCAMGUI.py:6090 flatcamTools/ToolSolderPaste.py:202 +#: flatcamGUI/FlatCAMGUI.py:6164 flatcamTools/ToolSolderPaste.py:202 msgid "The height (Z) for tool (nozzle) change." msgstr "The height (Z) for tool (nozzle) change." -#: flatcamGUI/FlatCAMGUI.py:6097 flatcamTools/ToolSolderPaste.py:208 +#: flatcamGUI/FlatCAMGUI.py:6171 flatcamTools/ToolSolderPaste.py:208 msgid "XY Toolchange:" msgstr "XY Toolchange:" -#: flatcamGUI/FlatCAMGUI.py:6099 flatcamTools/ToolSolderPaste.py:210 +#: flatcamGUI/FlatCAMGUI.py:6173 flatcamTools/ToolSolderPaste.py:210 msgid "" "The X,Y location for tool (nozzle) change.\n" "The format is (x, y) where x and y are real numbers." @@ -8931,19 +8253,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:6107 flatcamTools/ToolSolderPaste.py:217 +#: flatcamGUI/FlatCAMGUI.py:6181 flatcamTools/ToolSolderPaste.py:217 msgid "Feedrate X-Y:" msgstr "Feedrate X-Y:" -#: flatcamGUI/FlatCAMGUI.py:6109 flatcamTools/ToolSolderPaste.py:219 +#: flatcamGUI/FlatCAMGUI.py:6183 flatcamTools/ToolSolderPaste.py:219 msgid "Feedrate (speed) while moving on the X-Y plane." msgstr "Feedrate (speed) while moving on the X-Y plane." -#: flatcamGUI/FlatCAMGUI.py:6116 flatcamTools/ToolSolderPaste.py:225 +#: flatcamGUI/FlatCAMGUI.py:6190 flatcamTools/ToolSolderPaste.py:225 msgid "Feedrate Z:" msgstr "Feedrate Z:" -#: flatcamGUI/FlatCAMGUI.py:6118 flatcamTools/ToolSolderPaste.py:227 +#: flatcamGUI/FlatCAMGUI.py:6192 flatcamTools/ToolSolderPaste.py:227 msgid "" "Feedrate (speed) while moving vertically\n" "(on Z plane)." @@ -8951,11 +8273,11 @@ msgstr "" "Feedrate (speed) while moving vertically\n" "(on Z plane)." -#: flatcamGUI/FlatCAMGUI.py:6126 flatcamTools/ToolSolderPaste.py:234 +#: flatcamGUI/FlatCAMGUI.py:6200 flatcamTools/ToolSolderPaste.py:234 msgid "Feedrate Z Dispense:" msgstr "Feedrate Z Dispense:" -#: flatcamGUI/FlatCAMGUI.py:6128 flatcamTools/ToolSolderPaste.py:236 +#: flatcamGUI/FlatCAMGUI.py:6202 flatcamTools/ToolSolderPaste.py:236 msgid "" "Feedrate (speed) while moving up vertically\n" " to Dispense position (on Z plane)." @@ -8963,11 +8285,11 @@ msgstr "" "Feedrate (speed) while moving up vertically\n" " to Dispense position (on Z plane)." -#: flatcamGUI/FlatCAMGUI.py:6136 flatcamTools/ToolSolderPaste.py:243 +#: flatcamGUI/FlatCAMGUI.py:6210 flatcamTools/ToolSolderPaste.py:243 msgid "Spindle Speed FWD:" msgstr "Spindle Speed FWD:" -#: flatcamGUI/FlatCAMGUI.py:6138 flatcamTools/ToolSolderPaste.py:245 +#: flatcamGUI/FlatCAMGUI.py:6212 flatcamTools/ToolSolderPaste.py:245 msgid "" "The dispenser speed while pushing solder paste\n" "through the dispenser nozzle." @@ -8975,19 +8297,19 @@ msgstr "" "The dispenser speed while pushing solder paste\n" "through the dispenser nozzle." -#: flatcamGUI/FlatCAMGUI.py:6146 flatcamTools/ToolSolderPaste.py:252 +#: flatcamGUI/FlatCAMGUI.py:6220 flatcamTools/ToolSolderPaste.py:252 msgid "Dwell FWD:" msgstr "Dwell FWD:" -#: flatcamGUI/FlatCAMGUI.py:6148 flatcamTools/ToolSolderPaste.py:254 +#: flatcamGUI/FlatCAMGUI.py:6222 flatcamTools/ToolSolderPaste.py:254 msgid "Pause after solder dispensing." msgstr "Pause after solder dispensing." -#: flatcamGUI/FlatCAMGUI.py:6155 flatcamTools/ToolSolderPaste.py:260 +#: flatcamGUI/FlatCAMGUI.py:6229 flatcamTools/ToolSolderPaste.py:260 msgid "Spindle Speed REV:" msgstr "Spindle Speed REV:" -#: flatcamGUI/FlatCAMGUI.py:6157 flatcamTools/ToolSolderPaste.py:262 +#: flatcamGUI/FlatCAMGUI.py:6231 flatcamTools/ToolSolderPaste.py:262 msgid "" "The dispenser speed while retracting solder paste\n" "through the dispenser nozzle." @@ -8995,11 +8317,11 @@ msgstr "" "The dispenser speed while retracting solder paste\n" "through the dispenser nozzle." -#: flatcamGUI/FlatCAMGUI.py:6165 flatcamTools/ToolSolderPaste.py:269 +#: flatcamGUI/FlatCAMGUI.py:6239 flatcamTools/ToolSolderPaste.py:269 msgid "Dwell REV:" msgstr "Dwell REV:" -#: flatcamGUI/FlatCAMGUI.py:6167 flatcamTools/ToolSolderPaste.py:271 +#: flatcamGUI/FlatCAMGUI.py:6241 flatcamTools/ToolSolderPaste.py:271 msgid "" "Pause after solder paste dispenser retracted,\n" "to allow pressure equilibrium." @@ -9007,23 +8329,23 @@ msgstr "" "Pause after solder paste dispenser retracted,\n" "to allow pressure equilibrium." -#: flatcamGUI/FlatCAMGUI.py:6174 flatcamTools/ToolSolderPaste.py:277 +#: flatcamGUI/FlatCAMGUI.py:6248 flatcamTools/ToolSolderPaste.py:277 msgid "PostProcessors:" msgstr "PostProcessors:" -#: flatcamGUI/FlatCAMGUI.py:6176 flatcamTools/ToolSolderPaste.py:279 +#: flatcamGUI/FlatCAMGUI.py:6250 flatcamTools/ToolSolderPaste.py:279 msgid "Files that control the GCode generation." msgstr "Files that control the GCode generation." -#: flatcamGUI/FlatCAMGUI.py:6206 flatcamGUI/FlatCAMGUI.py:6212 +#: flatcamGUI/FlatCAMGUI.py:6280 flatcamGUI/FlatCAMGUI.py:6286 msgid "Idle." msgstr "Idle." -#: flatcamGUI/FlatCAMGUI.py:6236 +#: flatcamGUI/FlatCAMGUI.py:6310 msgid "Application started ..." msgstr "Application started ..." -#: flatcamGUI/FlatCAMGUI.py:6237 +#: flatcamGUI/FlatCAMGUI.py:6311 msgid "Hello!" msgstr "Hello!" @@ -9101,14 +8423,6 @@ msgstr "Perform the offset operation." msgid "Gerber Object" msgstr "Gerber Object" -#: flatcamGUI/ObjectUI.py:156 -msgid "Solid " -msgstr "Solid " - -#: flatcamGUI/ObjectUI.py:164 -msgid "M-Color " -msgstr "M-Color " - #: flatcamGUI/ObjectUI.py:182 flatcamGUI/ObjectUI.py:517 #: flatcamGUI/ObjectUI.py:836 flatcamGUI/ObjectUI.py:1366 msgid "Name:" @@ -9316,6 +8630,14 @@ msgstr "Solid circles." msgid "Tools Table" msgstr "Tools Table" +#: flatcamGUI/ObjectUI.py:556 +msgid "Drills" +msgstr "Drills" + +#: flatcamGUI/ObjectUI.py:556 +msgid "Slots" +msgstr "Slots" + #: flatcamGUI/ObjectUI.py:557 msgid "Offset Z" msgstr "Offset Z" @@ -10279,6 +9601,8 @@ msgstr "" #: flatcamTools/ToolCutOut.py:338 flatcamTools/ToolCutOut.py:483 #: flatcamTools/ToolNonCopperClear.py:666 flatcamTools/ToolPaint.py:764 #: flatcamTools/ToolPanelize.py:293 flatcamTools/ToolPanelize.py:307 +#: flatcamTools/ToolSub.py:234 flatcamTools/ToolSub.py:246 +#: flatcamTools/ToolSub.py:364 flatcamTools/ToolSub.py:376 #, python-format msgid "[ERROR_NOTCL] Could not retrieve object: %s" msgstr "[ERROR_NOTCL] Could not retrieve object: %s" @@ -11166,31 +10490,36 @@ msgstr "" "[ERROR_NOTCL] NCC Tool finished but could not clear the object with current " "settings." -#: flatcamTools/ToolPDF.py:37 +#: flatcamTools/ToolPDF.py:38 msgid "PDF Import Tool" msgstr "PDF Import Tool" -#: flatcamTools/ToolPDF.py:142 flatcamTools/ToolPDF.py:146 +#: flatcamTools/ToolPDF.py:152 flatcamTools/ToolPDF.py:156 msgid "Open PDF" msgstr "Open PDF" -#: flatcamTools/ToolPDF.py:149 +#: flatcamTools/ToolPDF.py:159 msgid "[WARNING_NOTCL] Open PDF cancelled." msgstr "[WARNING_NOTCL] Open PDF cancelled." -#: flatcamTools/ToolPDF.py:170 +#: flatcamTools/ToolPDF.py:186 msgid "Parsing PDF file ..." msgstr "Parsing PDF file ..." -#: flatcamTools/ToolPDF.py:266 +#: flatcamTools/ToolPDF.py:264 flatcamTools/ToolPDF.py:300 #, python-format msgid "Rendering PDF layer #%d ..." msgstr "Rendering PDF layer #%d ..." -#: flatcamTools/ToolPDF.py:270 +#: flatcamTools/ToolPDF.py:268 flatcamTools/ToolPDF.py:304 msgid "[ERROR_NOTCL] Open PDF file failed." msgstr "[ERROR_NOTCL] Open PDF file failed." +#: flatcamTools/ToolPDF.py:273 flatcamTools/ToolPDF.py:309 +#, python-format +msgid "[success] Rendered: %s" +msgstr "[success] Rendered: %s" + #: flatcamTools/ToolPaint.py:24 msgid "Paint Area" msgstr "Paint Area" @@ -11931,6 +11260,127 @@ msgstr "Export GCode ..." msgid "[success] Solder paste dispenser GCode file saved to: %s" msgstr "[success] Solder paste dispenser GCode file saved to: %s" +#: flatcamTools/ToolSub.py:55 +msgid "Gerber Objects" +msgstr "Gerber Objects" + +#: flatcamTools/ToolSub.py:64 flatcamTools/ToolSub.py:110 +msgid "Target:" +msgstr "Target:" + +#: flatcamTools/ToolSub.py:66 +msgid "" +"Gerber object from which to substract\n" +"the substractor Gerber object." +msgstr "" +"Gerber object from which to substract\n" +"the substractor Gerber object." + +#: flatcamTools/ToolSub.py:78 flatcamTools/ToolSub.py:124 +msgid "Substractor:" +msgstr "Substractor:" + +#: flatcamTools/ToolSub.py:80 +msgid "" +"Gerber object that will be substracted\n" +"from the target Gerber object." +msgstr "" +"Gerber object that will be substracted\n" +"from the target Gerber object." + +#: flatcamTools/ToolSub.py:87 +msgid "Substract Gerber" +msgstr "Substract Gerber" + +#: flatcamTools/ToolSub.py:89 +msgid "" +"Will remove the area occupied by the substractor\n" +"Gerber from the Target Gerber.\n" +"Can be used to remove the overlapping silkscreen\n" +"over the soldermask." +msgstr "" +"Will remove the area occupied by the substractor\n" +"Gerber from the Target Gerber.\n" +"Can be used to remove the overlapping silkscreen\n" +"over the soldermask." + +#: flatcamTools/ToolSub.py:101 +msgid "Geometry Objects" +msgstr "Geometry Objects" + +#: flatcamTools/ToolSub.py:112 +msgid "" +"Geometry object from which to substract\n" +"the substractor Geometry object." +msgstr "" +"Geometry object from which to substract\n" +"the substractor Geometry object." + +#: flatcamTools/ToolSub.py:126 +msgid "" +"Geometry object that will be substracted\n" +"from the target Geometry object." +msgstr "" +"Geometry object that will be substracted\n" +"from the target Geometry object." + +#: flatcamTools/ToolSub.py:133 +msgid "Substract Geometry" +msgstr "Substract Geometry" + +#: flatcamTools/ToolSub.py:135 +msgid "" +"Will remove the area occupied by the substractor\n" +"Geometry from the Target Geometry." +msgstr "" +"Will remove the area occupied by the substractor\n" +"Geometry from the Target Geometry." + +#: flatcamTools/ToolSub.py:212 +msgid "Sub Tool" +msgstr "Sub Tool" + +#: flatcamTools/ToolSub.py:227 flatcamTools/ToolSub.py:357 +msgid "[ERROR_NOTCL] No Target object loaded." +msgstr "[ERROR_NOTCL] No Target object loaded." + +#: flatcamTools/ToolSub.py:239 flatcamTools/ToolSub.py:369 +msgid "[ERROR_NOTCL] No Substractor object loaded." +msgstr "[ERROR_NOTCL] No Substractor object loaded." + +#: flatcamTools/ToolSub.py:277 +#, python-format +msgid "Parsing aperture %s geometry ..." +msgstr "Parsing aperture %s geometry ..." + +#: flatcamTools/ToolSub.py:331 flatcamTools/ToolSub.py:475 +msgid "Generating new object ..." +msgstr "Generating new object ..." + +#: flatcamTools/ToolSub.py:334 flatcamTools/ToolSub.py:478 +msgid "[ERROR_NOTCL] Generating new object failed." +msgstr "[ERROR_NOTCL] Generating new object failed." + +#: flatcamTools/ToolSub.py:339 flatcamTools/ToolSub.py:483 +#, python-format +msgid "[success] Created: %s" +msgstr "[success] Created: %s" + +#: flatcamTools/ToolSub.py:380 +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:425 +msgid "Parsing solid_geometry ..." +msgstr "Parsing solid_geometry ..." + +#: flatcamTools/ToolSub.py:427 +#, python-format +msgid "Parsing tool %s geometry ..." +msgstr "Parsing tool %s geometry ..." + #: flatcamTools/ToolTransform.py:23 msgid "Object Transform" msgstr "Object Transform" @@ -12039,6 +11489,117 @@ msgstr "[WARNING_NOTCL] No object selected. Please Select an object to offset!" msgid "CNCJob objects can't be offseted." msgstr "CNCJob objects can't be offseted." +#~ msgid "Path" +#~ msgstr "Path" + +#~ msgid "In" +#~ msgstr "In" + +#~ msgid "Out" +#~ msgstr "Out" + +#~ msgid "Custom" +#~ msgstr "Custom" + +#~ msgid "Angle" +#~ msgstr "Angle" + +#~ msgid "Standard" +#~ msgstr "Standard" + +#~ msgid "Seed-based" +#~ msgstr "Seed-based" + +#~ msgid "Straight lines" +#~ msgstr "Straight lines" + +#~ msgid "Copy Drill(s)" +#~ msgstr "Copy Drill(s)" + +#~ msgid "Basic" +#~ msgstr "Basic" + +#~ msgid "Advanced" +#~ msgstr "Advanced" + +#~ msgid "MMB" +#~ msgstr "MMB" + +#~ msgid "RMB" +#~ msgstr "RMB" + +#~ msgid "CTRL" +#~ msgstr "CTRL" + +#~ msgid "SHIFT" +#~ msgstr "SHIFT" + +#~ msgid "Climb" +#~ msgstr "Climb" + +#~ msgid "Conv." +#~ msgstr "Conv." + +#~ msgid "LZ" +#~ msgstr "LZ" + +#~ msgid "TZ" +#~ msgstr "TZ" + +#~ msgid "INCH" +#~ msgstr "INCH" + +#~ msgid "MM" +#~ msgstr "MM" + +#~ msgid "MH" +#~ msgstr "MH" + +#~ msgid "Both" +#~ msgstr "Both" + +#~ msgid "Decimal" +#~ msgstr "Decimal" + +#~ msgid "No-Decimal" +#~ msgstr "No-Decimal" + +#~ msgid "Travel" +#~ msgstr "Travel" + +#~ msgid "X" +#~ msgstr "X" + +#~ msgid "Y" +#~ msgstr "Y" + +#~ msgid "Point" +#~ msgstr "Point" + +#~ msgid "Box" +#~ msgstr "Box" + +#~ msgid "Single" +#~ msgstr "Single" + +#~ msgid "Pos" +#~ msgstr "Pos" + +#~ msgid "Neg" +#~ msgstr "Neg" + +#~ msgid "Gerber" +#~ msgstr "Gerber" + +#~ msgid "Geo" +#~ msgstr "Geo" + +#~ msgid "Solid " +#~ msgstr "Solid " + +#~ msgid "M-Color " +#~ msgstr "M-Color " + #~ msgid "Done." #~ msgstr "Done." diff --git a/locale/ro/LC_MESSAGES/strings.mo b/locale/ro/LC_MESSAGES/strings.mo index 494ec73ff648cfd3c4ae89d68f377cb195e49197..36b76dedae61e46cf7c61ac7bd6a22f6a8e9f6e3 100644 GIT binary patch delta 42284 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

636bb&uMME_c5kzCh_7w#7>{SC;Ojv|T)) zE0EU;caj#*d6@Gf&YYYzX{iQzH*pj3NP3{-Tf&RcOWh*&YMr?HcjTAB0_3MM=?tHBS4 zJFp_@S;?P({b{=lcGcH|U)noSLwmTBY-H4@!mku6N`7e^Zbv|6{v><~PuO~Wh!3QE z5b^Aky-eP6TRxPu;+*Qof3)@P*hOF(*9o+?iK|ICNu`p+2XZc=(sa&qwxK%jYN9$l zn7n!TfczVz)#W_L#fQ>pN7C=wdTl6oo4Ahl^rA2EcgHk+J(!1r|5EY&qd5gXvJK?3 z75*Up5rwXBj-mV^8qG{z2g;@3vBXKzIu2`MFaadpV<>-CY(89+vPn$g?p;lAgmN zV|qmOOjwtZztNY_Hmj#-Vt?e|zCGf{hj@y6hxCcx8saIE@O_9Uv(MM6MWck@^Lhp* z_w^mnJ-$^*&##{138hPUUU`CQ$MublE;P7sLcubg0?GV?hr|v@Xi(j=&zGo2-vN=) z32$q7?kA1k(AbkU;Y?%C(p2$*&Yr9Zi#mI1d*Y+JdiutH+tqV8A#^YFc(>s2{Xis?j z)6t$f!J)OI+$%cq-?#OqOQ=7_v)7k$bZm6bu^~fZLq^9$4Ii73ZM-Ma?;ScMVbo;L z*WS#72ZzKCi;9bm99Y?D7CCru)L=QJPr{CAo;ZJe_Sv4V<8RIO%!{8i$CERD#~e=~ zFPFYJ$Md__U$1`MRtcYf;0aF>6xB1dd*tA#p7H<2d&(wMT;jRtPgwGi=ax7A@@h}Y z_(Q8b_x&-wqoWcwtnnQ1dP71I+OPM_3u+eAGcvBH({e~;+z|8MkO6cjq(fz5u><)} zTx8$geTIZY_l=1fOmt*)RAr}C)25ADI;~nctvWcZBD+UNg|zGwJG?}_zCEK7VzznC zRZXaH-;*0{_Dw-BB57euQxd1!&Ke@zJylk zyc;Sfq;BG!l04y)4&G<}q-8@(mkB9VzH+$=@msojbJ}=?%4I7iobT#=lfo03aDISy zgC~7tNR1Iu!7ViuMI)SAu>*z&=oXG9)6dZ_nWWCGLy$hEVNltoM%J7a0;8 zUw@=GuyEy}((x}xdNU==9_sb`l1GLNi0mB`H6)}*Z1lqBcZV%pwW&-(-I3lVX}z@T zS?tZ2ux*yNxsQfC^SrMUlbS$k(UkA933Q{KbLv8&h9)D!>sIHT0+f;W{e z8FkrP!JF{)Rqx7FNoufm21gD_=zY(7%a>5=k$17564#!1`KMzeM@7c>d+rTQTw_4@ zsOYHp#m~K^6V;848xWar>baMHp;e3N=?m{Izh`j#r8nLIp1}!q-+E{JGe)wMqCz5C z*LS{JG9)UlcT~vWC~o|o&sTuf)B1hge3TuM#24fVY8}@jGA_!gAHQRaFKc{!knb!j zvTHE^=RCb4c@hKr(v9F+??NFF$0rSq>q`Zj_5VnSihZwq)9!tvdJOqL#e32JsF2=K zvBlrD5PvYIuSk6A9F+`ePMK^;P32dY;IPm21sXarZ5^kqtl36*_&eerXu`$BvXQLzc1 zRQClu@d@F+p}|f>R9yF{xZs-cgF=0o;_KA#B_s^5>ARSOMw>S9CHEw>Y3M5&L>rS@ z`Yw8W$L7Yw7k}%`NcO6GneyV)2}s$hC*K`9Dzss}xI5G)FHwBQ#6!IR)Y5-CD^NP-7%1r-F}CZ68RFdy&D z`@i4ZX4*ztJ+m>D%v38uwbBX4aFApwHP3qK_DAx_M?tL7_r69fJ|8iIiYHm@WZ?zqr*R6$0K#8Om1$J zaVlcaZW$k8wkuCRxrx`LXl*ZHBi7Sie5}Y9xJTOQTgG{Pbs2Lpl|9G$wOGY1=x_Is zH(1t_jviaX5$J0Va3$Uy2!dfzsI7I3m~A+z@9P*kc~N>&S~G$0NfDEwbkFX~dcvj7 zR5rp;I^ZE6O&6V#HzO>9l5okJhd9c5NYa*HC`wzpQmB>Z#(O>a7`Xu>RQwe(>bJ(M z5o&7Rj#G+uKVWr`sfişiere recente< pentru a fi salvat " "a eșuat." -#: FlatCAMApp.py:2844 camlib.py:4493 +#: FlatCAMApp.py:2884 camlib.py:4503 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" -#: FlatCAMApp.py:2845 +#: FlatCAMApp.py:2885 #, python-brace-format msgid "" "Object ({kind}) failed because: {error} \n" @@ -161,11 +161,11 @@ msgstr "" "Obiectul ({kind}) a eșuat din cauza: {error} \n" "\n" -#: FlatCAMApp.py:2865 +#: FlatCAMApp.py:2905 msgid "Converting units to " msgstr "Se convertesc unitatile la " -#: FlatCAMApp.py:2935 FlatCAMApp.py:2938 FlatCAMApp.py:2941 FlatCAMApp.py:2944 +#: FlatCAMApp.py:2983 FlatCAMApp.py:2986 FlatCAMApp.py:2989 FlatCAMApp.py:2992 #, python-brace-format msgid "" "[selected] {kind} created/selected: {name}{name}" -#: FlatCAMApp.py:3038 +#: FlatCAMApp.py:3086 #, python-brace-format msgid "" "FlatCAM
Version {version} {beta} ({date}) - " @@ -196,35 +196,35 @@ msgstr "" "flatcam/src/Beta/\">aici.
Sectiunea DOWNLOAD este aici.
" -#: FlatCAMApp.py:3191 +#: FlatCAMApp.py:3239 msgid "[success] Defaults saved." msgstr "[success] Valorile default au fost salvate." -#: FlatCAMApp.py:3212 +#: FlatCAMApp.py:3260 msgid "[ERROR_NOTCL] Could not load factory defaults file." msgstr "" "[ERROR_NOTCL] Fişierul cu valori default de fabrică nu a putut fi deschis." -#: FlatCAMApp.py:3221 +#: FlatCAMApp.py:3269 msgid "[ERROR_NOTCL] Failed to parse factory defaults file." msgstr "" "[ERROR_NOTCL] Parsarea fişierului cu valori default de fabrică a eșuat." -#: FlatCAMApp.py:3235 +#: FlatCAMApp.py:3283 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:3239 +#: FlatCAMApp.py:3287 msgid "Factory defaults saved." msgstr "Valori default de fabrică au fost salvate." -#: FlatCAMApp.py:3244 flatcamGUI/FlatCAMGUI.py:3063 +#: FlatCAMApp.py:3292 flatcamGUI/FlatCAMGUI.py:3088 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:3249 +#: FlatCAMApp.py:3297 msgid "" "There are files/objects modified in FlatCAM. \n" "Do you want to Save the project?" @@ -232,11 +232,11 @@ msgstr "" "FlatCAM are fişiere/obiecte care au fost modificate. \n" "Dorești să Salvezi proiectul?" -#: FlatCAMApp.py:3252 FlatCAMApp.py:5557 +#: FlatCAMApp.py:3300 FlatCAMApp.py:5659 msgid "Save changes" msgstr "Salvează modificarile." -#: FlatCAMApp.py:3319 +#: FlatCAMApp.py:3367 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 " @@ -253,72 +253,72 @@ msgstr "" "informatii și rezultatul ar putea să nu fie cel dorit. \n" "Verifică codul G-Code generat." -#: FlatCAMApp.py:3360 +#: FlatCAMApp.py:3408 msgid "[ERROR_NOTCL] Failed. Excellon joining works only on Excellon objects." msgstr "" "[ERROR_NOTCL] Esuat. Fuzionarea Excellon functionează doar cu obiecte de tip " "Excellon." -#: FlatCAMApp.py:3382 +#: FlatCAMApp.py:3430 msgid "[ERROR_NOTCL] Failed. Gerber joining works only on Gerber objects." msgstr "" "[ERROR_NOTCL] Esuat. Fuzionarea Gerber functionează doar cu obiecte de tip " "Gerber ." -#: FlatCAMApp.py:3397 FlatCAMApp.py:3422 +#: FlatCAMApp.py:3445 FlatCAMApp.py:3470 msgid "[ERROR_NOTCL] Failed. Select a Geometry Object and try again." msgstr "" "[ERROR_NOTCL] Esuat. Selectează un obiect Geometrie și încearcă din nou." -#: FlatCAMApp.py:3401 FlatCAMApp.py:3426 +#: FlatCAMApp.py:3449 FlatCAMApp.py:3474 #, python-format msgid "[ERROR_NOTCL] Expected a FlatCAMGeometry, got %s" msgstr "[ERROR_NOTCL] Se astepta o Geometrie FlatCAM, s-a primit %s" -#: FlatCAMApp.py:3414 +#: FlatCAMApp.py:3462 msgid "[success] A Geometry object was converted to MultiGeo type." msgstr "[success] Un obiect Geometrie a fost convertit la tipul MultiGeo." -#: FlatCAMApp.py:3440 +#: FlatCAMApp.py:3488 msgid "[success] A Geometry object was converted to SingleGeo type." msgstr "[success] Un obiect Geometrie a fost convertit la tipul SingleGeo ." -#: FlatCAMApp.py:3587 FlatCAMApp.py:4352 FlatCAMApp.py:5824 FlatCAMApp.py:5835 -#: FlatCAMApp.py:6021 FlatCAMApp.py:6031 +#: FlatCAMApp.py:3635 FlatCAMApp.py:4444 FlatCAMApp.py:5926 FlatCAMApp.py:5937 +#: FlatCAMApp.py:6123 FlatCAMApp.py:6133 msgid "Ok" msgstr "Ok" -#: FlatCAMApp.py:3628 +#: FlatCAMApp.py:3676 #, python-format msgid "[success] Converted units to %s" msgstr "[success] Conversie unitati la %s" -#: FlatCAMApp.py:3639 +#: FlatCAMApp.py:3687 msgid "[WARNING_NOTCL] Units conversion cancelled." msgstr "[WARNING_NOTCL] Conversia unitatilor este anulata." -#: FlatCAMApp.py:4221 +#: FlatCAMApp.py:4313 msgid "Open file" msgstr "Deschide fişierul ..." -#: FlatCAMApp.py:4252 FlatCAMApp.py:4257 +#: FlatCAMApp.py:4344 FlatCAMApp.py:4349 msgid "Export G-Code ..." msgstr "Exporta G-Code ..." -#: FlatCAMApp.py:4260 +#: FlatCAMApp.py:4352 msgid "[WARNING_NOTCL] Export Code cancelled." msgstr "[WARNING_NOTCL Exportul GCode este anulat." -#: FlatCAMApp.py:4270 +#: FlatCAMApp.py:4362 msgid "[WARNING] No such file or directory" msgstr "[WARNING] Nu exista un aşa fişier sau director" -#: FlatCAMApp.py:4277 +#: FlatCAMApp.py:4369 #, python-format msgid "Saved to: %s" msgstr "Salvat in: %s" -#: FlatCAMApp.py:4340 FlatCAMApp.py:4373 FlatCAMApp.py:4384 FlatCAMApp.py:4395 +#: FlatCAMApp.py:4432 FlatCAMApp.py:4465 FlatCAMApp.py:4476 FlatCAMApp.py:4487 #: flatcamTools/ToolNonCopperClear.py:489 flatcamTools/ToolSolderPaste.py:765 msgid "" "[WARNING_NOTCL] Please enter a tool diameter with non-zero value, in Float " @@ -327,12 +327,12 @@ msgstr "" "[WARNING_NOTCL] Introdu un diametru al uneltei valid: valoare ne-nula in " "format Real." -#: FlatCAMApp.py:4345 FlatCAMApp.py:4378 FlatCAMApp.py:4389 FlatCAMApp.py:4400 -#: flatcamGUI/FlatCAMGUI.py:2959 +#: FlatCAMApp.py:4437 FlatCAMApp.py:4470 FlatCAMApp.py:4481 FlatCAMApp.py:4492 +#: flatcamGUI/FlatCAMGUI.py:2983 msgid "[WARNING_NOTCL] Adding Tool cancelled ..." msgstr "[WARNING_NOTCL] Adaugarea unei unelte anulata ..." -#: FlatCAMApp.py:4348 +#: FlatCAMApp.py:4440 msgid "" "Adding Tool works only when Advanced is checked.\n" "Go to Preferences -> General - Show Advanced Options." @@ -340,166 +340,193 @@ msgstr "" "Adaugarea de unelte noi functionează doar in modul Avansat.\n" "Pentru aceasta mergi in Preferințe -> General - Activează Modul Avansat." -#: FlatCAMApp.py:4454 +#: FlatCAMApp.py:4546 msgid "Object(s) deleted ..." msgstr "Obiect(ele) șters(e)." -#: FlatCAMApp.py:4458 +#: FlatCAMApp.py:4550 msgid "Failed. No object(s) selected..." msgstr "Esuat. Nici-un obiect nu este selectat." -#: FlatCAMApp.py:4460 +#: FlatCAMApp.py:4552 msgid "Save the work in Editor and try again ..." msgstr "Salvează continutul din Editor și încearcă din nou." -#: FlatCAMApp.py:4473 +#: FlatCAMApp.py:4565 msgid "Click to set the origin ..." msgstr "Click pentru a seta originea..." -#: FlatCAMApp.py:4485 +#: FlatCAMApp.py:4577 msgid "Jump to ..." msgstr "Sari la ..." -#: FlatCAMApp.py:4486 +#: FlatCAMApp.py:4578 msgid "Enter the coordinates in format X,Y:" msgstr "Introduceți coordonatele in format X,Y:" -#: FlatCAMApp.py:4493 +#: FlatCAMApp.py:4585 msgid "Wrong coordinates. Enter coordinates in format: X,Y" msgstr "Coordonate gresite. Introduceți coordonatele in format X,Y." -#: FlatCAMApp.py:4511 flatcamEditors/FlatCAMGeoEditor.py:3413 +#: FlatCAMApp.py:4603 flatcamEditors/FlatCAMGeoEditor.py:3485 #: flatcamEditors/FlatCAMGrbEditor.py:790 #: flatcamEditors/FlatCAMGrbEditor.py:885 #: flatcamEditors/FlatCAMGrbEditor.py:1122 -#: flatcamEditors/FlatCAMGrbEditor.py:1343 -#: flatcamEditors/FlatCAMGrbEditor.py:3235 -#: flatcamEditors/FlatCAMGrbEditor.py:3248 flatcamGUI/FlatCAMGUI.py:2373 -#: flatcamGUI/FlatCAMGUI.py:2385 +#: flatcamEditors/FlatCAMGrbEditor.py:1350 +#: flatcamEditors/FlatCAMGrbEditor.py:3318 +#: flatcamEditors/FlatCAMGrbEditor.py:3332 flatcamGUI/FlatCAMGUI.py:2397 +#: flatcamGUI/FlatCAMGUI.py:2409 msgid "[success] Done." msgstr "[success] Executat." -#: FlatCAMApp.py:4670 +#: FlatCAMApp.py:4767 msgid "[success] Origin set ..." msgstr "[success] Originea a fost setată ..." -#: FlatCAMApp.py:4688 +#: FlatCAMApp.py:4786 msgid "Preferences" msgstr "Preferințe" -#: FlatCAMApp.py:4708 +#: FlatCAMApp.py:4806 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:4733 +#: FlatCAMApp.py:4831 msgid "[success] Flip on Y axis done." msgstr "[success] Oglindire pe axa Y executată." -#: FlatCAMApp.py:4735 FlatCAMApp.py:4775 +#: FlatCAMApp.py:4833 FlatCAMApp.py:4873 #: flatcamEditors/FlatCAMGeoEditor.py:1354 -#: flatcamEditors/FlatCAMGrbEditor.py:4533 flatcamTools/ToolTransform.py:750 +#: flatcamEditors/FlatCAMGrbEditor.py:4631 flatcamTools/ToolTransform.py:750 #, python-format msgid "[ERROR_NOTCL] Due of %s, Flip action was not executed." msgstr "[ERROR_NOTCL] Datorita %s, oglindirea a eșuat." -#: FlatCAMApp.py:4748 +#: FlatCAMApp.py:4846 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:4773 +#: FlatCAMApp.py:4871 msgid "[success] Flip on X axis done." msgstr "[success] Oglindirea pe axa X executată." -#: FlatCAMApp.py:4788 +#: FlatCAMApp.py:4886 msgid "[WARNING_NOTCL] No object selected to Rotate." msgstr "[WARNING_NOTCL] Nici-un obiect selectat pentru Rotaţie." -#: FlatCAMApp.py:4791 FlatCAMApp.py:4836 FlatCAMApp.py:4867 +#: FlatCAMApp.py:4889 FlatCAMApp.py:4934 FlatCAMApp.py:4965 msgid "Transform" msgstr "Transformare" -#: FlatCAMApp.py:4791 FlatCAMApp.py:4836 FlatCAMApp.py:4867 +#: FlatCAMApp.py:4889 FlatCAMApp.py:4934 FlatCAMApp.py:4965 msgid "Enter the Angle value:" msgstr "Introduceți valoaea Unghiului:" -#: FlatCAMApp.py:4821 +#: FlatCAMApp.py:4919 msgid "[success] Rotation done." msgstr "[success] Rotaţie executată." -#: FlatCAMApp.py:4823 flatcamEditors/FlatCAMGeoEditor.py:1297 -#: flatcamEditors/FlatCAMGrbEditor.py:4476 flatcamTools/ToolTransform.py:678 +#: FlatCAMApp.py:4921 flatcamEditors/FlatCAMGeoEditor.py:1297 +#: flatcamEditors/FlatCAMGrbEditor.py:4574 flatcamTools/ToolTransform.py:678 #, python-format msgid "[ERROR_NOTCL] Due of %s, rotation movement was not executed." msgstr "[ERROR_NOTCL] Datorita %s, Rotatia a eșuat." -#: FlatCAMApp.py:4834 +#: FlatCAMApp.py:4932 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:4855 +#: FlatCAMApp.py:4953 msgid "[success] Skew on X axis done." msgstr "[success] Deformare pe axa X executată." -#: FlatCAMApp.py:4865 +#: FlatCAMApp.py:4963 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:4886 +#: FlatCAMApp.py:4984 msgid "[success] Skew on Y axis done." msgstr "[success] Deformare pe axa Y executată." -#: FlatCAMApp.py:4982 FlatCAMApp.py:5009 +#: FlatCAMApp.py:5059 flatcamEditors/FlatCAMGeoEditor.py:936 +#: flatcamEditors/FlatCAMGrbEditor.py:1830 +#: flatcamEditors/FlatCAMGrbEditor.py:4204 flatcamGUI/ObjectUI.py:988 +#: flatcamTools/ToolDblSided.py:160 flatcamTools/ToolDblSided.py:208 +#: flatcamTools/ToolNonCopperClear.py:134 flatcamTools/ToolPaint.py:131 +#: flatcamTools/ToolSolderPaste.py:115 flatcamTools/ToolSolderPaste.py:479 +#: flatcamTools/ToolTransform.py:337 +msgid "Add" +msgstr "Adaugă" + +#: FlatCAMApp.py:5060 FlatCAMObj.py:3008 +#: flatcamEditors/FlatCAMGrbEditor.py:1835 flatcamGUI/FlatCAMGUI.py:519 +#: flatcamGUI/FlatCAMGUI.py:713 flatcamGUI/FlatCAMGUI.py:1602 +#: flatcamGUI/FlatCAMGUI.py:1934 flatcamGUI/ObjectUI.py:1004 +#: flatcamTools/ToolNonCopperClear.py:146 flatcamTools/ToolPaint.py:143 +#: flatcamTools/ToolSolderPaste.py:121 flatcamTools/ToolSolderPaste.py:481 +msgid "Delete" +msgstr "Șterge" + +#: FlatCAMApp.py:5072 +msgid "New Grid ..." +msgstr "Grid nou ..." + +#: FlatCAMApp.py:5073 +msgid "Enter a Grid Value:" +msgstr "Introduceti of valoare pt Grid:" + +#: FlatCAMApp.py:5081 FlatCAMApp.py:5108 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:4988 +#: FlatCAMApp.py:5087 msgid "[success] New Grid added ..." msgstr "[success] O noua valoare pt Grila a fost adăugată..." -#: FlatCAMApp.py:4991 +#: FlatCAMApp.py:5090 msgid "[WARNING_NOTCL] Grid already exists ..." msgstr "[WARNING_NOTCL] Grila exista deja." -#: FlatCAMApp.py:4994 +#: FlatCAMApp.py:5093 msgid "[WARNING_NOTCL] Adding New Grid cancelled ..." msgstr "[WARNING_NOTCL] Adaugarea unei valori de Grila a fost anulata ..." -#: FlatCAMApp.py:5016 +#: FlatCAMApp.py:5115 msgid "[ERROR_NOTCL] Grid Value does not exist ..." msgstr "[ERROR_NOTCL] Valoarea Grilei nu exista ..." -#: FlatCAMApp.py:5019 +#: FlatCAMApp.py:5118 msgid "[success] Grid Value deleted ..." msgstr "[success] Valoarea Grila a fost stearsa." -#: FlatCAMApp.py:5022 +#: FlatCAMApp.py:5121 msgid "[WARNING_NOTCL] Delete Grid value cancelled ..." msgstr "[WARNING_NOTCL] Ștergerea unei valori de Grila a fost anulata ..." -#: FlatCAMApp.py:5061 +#: FlatCAMApp.py:5160 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:5065 +#: FlatCAMApp.py:5164 msgid "Name copied on clipboard ..." msgstr "Numele a fost copiat pe Clipboard ..." -#: FlatCAMApp.py:5357 FlatCAMApp.py:5360 FlatCAMApp.py:5363 FlatCAMApp.py:5366 -#: FlatCAMApp.py:5380 FlatCAMApp.py:5383 FlatCAMApp.py:5386 FlatCAMApp.py:5389 -#: FlatCAMApp.py:5428 FlatCAMApp.py:5431 FlatCAMApp.py:5434 FlatCAMApp.py:5437 -#: ObjectCollection.py:711 ObjectCollection.py:714 ObjectCollection.py:717 -#: ObjectCollection.py:720 +#: FlatCAMApp.py:5457 FlatCAMApp.py:5460 FlatCAMApp.py:5463 FlatCAMApp.py:5466 +#: FlatCAMApp.py:5481 FlatCAMApp.py:5484 FlatCAMApp.py:5487 FlatCAMApp.py:5490 +#: FlatCAMApp.py:5530 FlatCAMApp.py:5533 FlatCAMApp.py:5536 FlatCAMApp.py:5539 +#: ObjectCollection.py:717 ObjectCollection.py:720 ObjectCollection.py:723 +#: ObjectCollection.py:726 #, python-brace-format msgid "[selected]{name} selected" msgstr "[selected]{name} selectat" -#: FlatCAMApp.py:5554 +#: FlatCAMApp.py:5656 msgid "" "There are files/objects opened in FlatCAM.\n" "Creating a New project will delete them.\n" @@ -509,111 +536,111 @@ msgstr "" "Crearea unui nou Proiect le va șterge..\n" "Doriti să Salvati proiectul curentt?" -#: FlatCAMApp.py:5575 +#: FlatCAMApp.py:5677 msgid "[success] New Project created..." msgstr "[success] Un nou Proiect a fost creat..." -#: FlatCAMApp.py:5683 FlatCAMApp.py:5686 flatcamGUI/FlatCAMGUI.py:600 -#: flatcamGUI/FlatCAMGUI.py:1806 +#: FlatCAMApp.py:5785 FlatCAMApp.py:5788 flatcamGUI/FlatCAMGUI.py:600 +#: flatcamGUI/FlatCAMGUI.py:1817 msgid "Open Gerber" msgstr "Încarcă Gerber" -#: FlatCAMApp.py:5691 +#: FlatCAMApp.py:5793 msgid "[WARNING_NOTCL] Open Gerber cancelled." msgstr "[WARNING_NOTCL] Incărcarea unui fişier Gerber este anulata." -#: FlatCAMApp.py:5712 FlatCAMApp.py:5715 flatcamGUI/FlatCAMGUI.py:601 -#: flatcamGUI/FlatCAMGUI.py:1807 +#: FlatCAMApp.py:5814 FlatCAMApp.py:5817 flatcamGUI/FlatCAMGUI.py:601 +#: flatcamGUI/FlatCAMGUI.py:1818 msgid "Open Excellon" msgstr "Încarcă Excellon" -#: FlatCAMApp.py:5720 +#: FlatCAMApp.py:5822 msgid "[WARNING_NOTCL] Open Excellon cancelled." msgstr "[WARNING_NOTCL] Incărcarea unui fişier Excellon este anulata." -#: FlatCAMApp.py:5742 FlatCAMApp.py:5745 +#: FlatCAMApp.py:5844 FlatCAMApp.py:5847 msgid "Open G-Code" msgstr "Încarcă G-Code" -#: FlatCAMApp.py:5750 +#: FlatCAMApp.py:5852 msgid "[WARNING_NOTCL] Open G-Code cancelled." msgstr "[WARNING_NOTCL] Incărcarea unui fişier G-Code este anulata." -#: FlatCAMApp.py:5768 FlatCAMApp.py:5771 +#: FlatCAMApp.py:5870 FlatCAMApp.py:5873 msgid "Open Project" msgstr "Încarcă Project" -#: FlatCAMApp.py:5779 +#: FlatCAMApp.py:5881 msgid "[WARNING_NOTCL] Open Project cancelled." msgstr "[WARNING_NOTCL] Incărcarea unui Proiect a fost anulata." -#: FlatCAMApp.py:5798 FlatCAMApp.py:5801 +#: FlatCAMApp.py:5900 FlatCAMApp.py:5903 msgid "Open Configuration File" msgstr "Încarcă un fişier de Configurare" -#: FlatCAMApp.py:5805 +#: FlatCAMApp.py:5907 msgid "[WARNING_NOTCL Open Config cancelled." msgstr "[WARNING_NOTCL] Incărcarea unui fişier de Configurare este anulata." -#: FlatCAMApp.py:5820 FlatCAMApp.py:6017 FlatCAMApp.py:8103 FlatCAMApp.py:8123 -#: FlatCAMApp.py:8144 FlatCAMApp.py:8166 +#: FlatCAMApp.py:5922 FlatCAMApp.py:6119 FlatCAMApp.py:8206 FlatCAMApp.py:8226 +#: FlatCAMApp.py:8247 FlatCAMApp.py:8269 msgid "[WARNING_NOTCL] No object selected." msgstr "[WARNING_NOTCL] Nici-un obiect selectat." -#: FlatCAMApp.py:5821 FlatCAMApp.py:6018 +#: FlatCAMApp.py:5923 FlatCAMApp.py:6120 msgid "Please Select a Geometry object to export" msgstr "Selectează un obiect Geometrie pentru export" -#: FlatCAMApp.py:5832 +#: FlatCAMApp.py:5934 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:5845 FlatCAMApp.py:5849 +#: FlatCAMApp.py:5947 FlatCAMApp.py:5951 msgid "Export SVG" msgstr "Exporta SVG" -#: FlatCAMApp.py:5854 +#: FlatCAMApp.py:5956 msgid "[WARNING_NOTCL] Export SVG cancelled." msgstr "[WARNING_NOTCL] Exportul SVG este anulat." -#: FlatCAMApp.py:5868 +#: FlatCAMApp.py:5970 msgid "[[WARNING_NOTCL]] 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." -#: FlatCAMApp.py:5874 FlatCAMApp.py:5878 +#: FlatCAMApp.py:5976 FlatCAMApp.py:5980 msgid "Export PNG Image" msgstr "Exporta imagine PNG" -#: FlatCAMApp.py:5883 +#: FlatCAMApp.py:5985 msgid "Export PNG cancelled." msgstr "Exportul imagine PNG este anulat." -#: FlatCAMApp.py:5900 +#: FlatCAMApp.py:6002 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:5905 +#: FlatCAMApp.py:6007 msgid "" "[ERROR_NOTCL] Failed. Only Gerber objects can be saved as Gerber files..." msgstr "" "[ERROR_NOTCL] Esuat. Doar obiectele tip Gerber pot fi salvate ca fişiere " "Gerber..." -#: FlatCAMApp.py:5917 +#: FlatCAMApp.py:6019 msgid "Save Gerber source file" msgstr "Salvează codul sursa Gerber ca fişier" -#: FlatCAMApp.py:5922 +#: FlatCAMApp.py:6024 msgid "[WARNING_NOTCL] Save Gerber source file cancelled." msgstr "[WARNING_NOTCL] Salvarea codului sursa Gerber este anulata." -#: FlatCAMApp.py:5939 +#: FlatCAMApp.py:6041 msgid "" "[WARNING_NOTCL] No object selected. Please select an Excellon object to " "export." @@ -621,22 +648,22 @@ msgstr "" "[WARNING_NOTCL] Nici-un obiect selectat. Selectează un obiect Excellon " "pentru export." -#: FlatCAMApp.py:5944 FlatCAMApp.py:5983 +#: FlatCAMApp.py:6046 FlatCAMApp.py:6085 msgid "" "[ERROR_NOTCL] Failed. Only Excellon objects can be saved as Excellon files..." msgstr "" "[ERROR_NOTCL] Esuat. Doar obiectele tip Excellon pot fi salvate ca fişiere " "Excellon ..." -#: FlatCAMApp.py:5952 FlatCAMApp.py:5956 +#: FlatCAMApp.py:6054 FlatCAMApp.py:6058 msgid "Save Excellon source file" msgstr "Salvează codul sursa Excellon ca fişier" -#: FlatCAMApp.py:5961 +#: FlatCAMApp.py:6063 msgid "[WARNING_NOTCL] Saving Excellon source file cancelled." msgstr "[WARNING_NOTCL] Salvarea codului sursa Excellon este anulata." -#: FlatCAMApp.py:5978 +#: FlatCAMApp.py:6080 msgid "" "[WARNING_NOTCL] No object selected. Please Select an Excellon object to " "export." @@ -644,78 +671,78 @@ msgstr "" "[WARNING_NOTCL] Nici-un obiect selectat. Selectează un obiect Excellon " "pentru export." -#: FlatCAMApp.py:5991 FlatCAMApp.py:5995 +#: FlatCAMApp.py:6093 FlatCAMApp.py:6097 msgid "Export Excellon" msgstr "Exporta Excellon" -#: FlatCAMApp.py:6000 +#: FlatCAMApp.py:6102 msgid "[WARNING_NOTCL] Export Excellon cancelled." msgstr "[WARNING_NOTCL] Exportul Excellon anulat." -#: FlatCAMApp.py:6028 +#: FlatCAMApp.py:6130 msgid "[ERROR_NOTCL] Only Geometry objects can be used." msgstr "[ERROR_NOTCL] Doar obiecte tip Geometrie pot fi folosite." -#: FlatCAMApp.py:6042 FlatCAMApp.py:6046 +#: FlatCAMApp.py:6144 FlatCAMApp.py:6148 msgid "Export DXF" msgstr "Exporta DXF" -#: FlatCAMApp.py:6051 +#: FlatCAMApp.py:6153 msgid "[WARNING_NOTCL] Export DXF cancelled." msgstr "[WARNING_NOTCL] Exportul DXF anulat." -#: FlatCAMApp.py:6069 FlatCAMApp.py:6072 +#: FlatCAMApp.py:6171 FlatCAMApp.py:6174 msgid "Import SVG" msgstr "Importa SVG" -#: FlatCAMApp.py:6080 +#: FlatCAMApp.py:6182 msgid "[WARNING_NOTCL] Open SVG cancelled." msgstr "[WARNING_NOTCL] Importul SVG anulat." -#: FlatCAMApp.py:6099 FlatCAMApp.py:6102 +#: FlatCAMApp.py:6201 FlatCAMApp.py:6204 msgid "Import DXF" msgstr "Importa DXF" -#: FlatCAMApp.py:6110 +#: FlatCAMApp.py:6212 msgid "[WARNING_NOTCL] Open DXF cancelled." msgstr "[WARNING_NOTCL] Incărcarea fişier DXF anulata." -#: FlatCAMApp.py:6128 +#: FlatCAMApp.py:6230 #, python-format msgid "%s" msgstr "%s" -#: FlatCAMApp.py:6148 +#: FlatCAMApp.py:6250 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:6155 +#: FlatCAMApp.py:6257 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:6163 +#: FlatCAMApp.py:6265 msgid "Source Editor" msgstr "Editor Cod" -#: FlatCAMApp.py:6173 +#: FlatCAMApp.py:6275 #, python-format msgid "[ERROR]App.on_view_source() -->%s" msgstr "[ERROR]App.on_view_source() -->%s" -#: FlatCAMApp.py:6185 FlatCAMApp.py:7206 FlatCAMObj.py:5259 +#: FlatCAMApp.py:6287 FlatCAMApp.py:7308 FlatCAMObj.py:5266 msgid "Code Editor" msgstr "Editor Cod" -#: FlatCAMApp.py:6197 +#: FlatCAMApp.py:6299 msgid "Script Editor" msgstr "Editor Script." -#: FlatCAMApp.py:6200 +#: FlatCAMApp.py:6302 msgid "" "#\n" "# CREATE A NEW FLATCAM TCL SCRIPT\n" @@ -759,86 +786,86 @@ msgstr "" "#\n" "\n" -#: FlatCAMApp.py:6223 FlatCAMApp.py:6226 +#: FlatCAMApp.py:6325 FlatCAMApp.py:6328 msgid "Open TCL script" msgstr "Încarcă TCL script" -#: FlatCAMApp.py:6234 +#: FlatCAMApp.py:6336 msgid "[WARNING_NOTCL] Open TCL script cancelled." msgstr "[WARNING_NOTCL] Incărcarea TCL script anulata." -#: FlatCAMApp.py:6246 +#: FlatCAMApp.py:6348 #, python-format msgid "[ERROR]App.on_fileopenscript() -->%s" msgstr "[ERROR]App.on_fileopenscript() -->%s" -#: FlatCAMApp.py:6272 FlatCAMApp.py:6275 +#: FlatCAMApp.py:6374 FlatCAMApp.py:6377 msgid "Run TCL script" msgstr "Ruleaza TCL script" -#: FlatCAMApp.py:6283 +#: FlatCAMApp.py:6385 msgid "[WARNING_NOTCL] Run TCL script cancelled." msgstr "[WARNING_NOTCL] Rularea fisierului Script a fost anulata." -#: FlatCAMApp.py:6329 FlatCAMApp.py:6333 +#: FlatCAMApp.py:6431 FlatCAMApp.py:6435 msgid "Save Project As ..." msgstr "Salvează Proiectul ca ..." -#: FlatCAMApp.py:6330 +#: FlatCAMApp.py:6432 #, python-brace-format msgid "{l_save}/Project_{date}" msgstr "{l_save}/Proiect_{date}" -#: FlatCAMApp.py:6338 +#: FlatCAMApp.py:6440 msgid "[WARNING_NOTCL] Save Project cancelled." msgstr "[WARNING_NOTCL] Salvarea Proiect anulata." -#: FlatCAMApp.py:6383 +#: FlatCAMApp.py:6485 msgid "Exporting SVG" msgstr "SVG in curs de export" -#: FlatCAMApp.py:6416 FlatCAMApp.py:6521 FlatCAMApp.py:6635 +#: FlatCAMApp.py:6518 FlatCAMApp.py:6623 FlatCAMApp.py:6737 #, python-format msgid "[success] SVG file exported to %s" msgstr "[success] Fişier SVG exportat in %s" -#: FlatCAMApp.py:6447 FlatCAMApp.py:6567 +#: FlatCAMApp.py:6549 FlatCAMApp.py:6669 #, 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:6524 FlatCAMApp.py:6638 +#: FlatCAMApp.py:6626 FlatCAMApp.py:6740 msgid "Generating Film ... Please wait." msgstr "Filmul se generează ... Aşteaptă!" -#: FlatCAMApp.py:6785 +#: FlatCAMApp.py:6887 #, python-format msgid "[success] Excellon file exported to %s" msgstr "[success] Fişierul Excellon exportat in %s" -#: FlatCAMApp.py:6792 +#: FlatCAMApp.py:6894 msgid "Exporting Excellon" msgstr "Excellon in curs de export" -#: FlatCAMApp.py:6797 FlatCAMApp.py:6804 +#: FlatCAMApp.py:6899 FlatCAMApp.py:6906 msgid "[ERROR_NOTCL] Could not export Excellon file." msgstr "[ERROR_NOTCL] Fişierul Excellon nu a putut fi exportat." -#: FlatCAMApp.py:6843 +#: FlatCAMApp.py:6945 #, python-format msgid "[success] DXF file exported to %s" msgstr "[success] Fişierul DXF exportat in %s" -#: FlatCAMApp.py:6849 +#: FlatCAMApp.py:6951 msgid "Exporting DXF" msgstr "DXF in curs de export" -#: FlatCAMApp.py:6854 FlatCAMApp.py:6861 +#: FlatCAMApp.py:6956 FlatCAMApp.py:6963 msgid "[[WARNING_NOTCL]] Could not export DXF file." msgstr "[[WARNING_NOTCL]] Fişierul DXF nu a putut fi exportat." -#: FlatCAMApp.py:6881 FlatCAMApp.py:6923 FlatCAMApp.py:6964 +#: FlatCAMApp.py:6983 FlatCAMApp.py:7025 FlatCAMApp.py:7066 msgid "" "[ERROR_NOTCL] Not supported type is picked as parameter. Only Geometry and " "Gerber are supported" @@ -846,103 +873,103 @@ msgstr "" "[ERROR_NOTCL] Typul parametrului nu este compatibil. Doar Geometrie is " "Gerber sunt acceptate." -#: FlatCAMApp.py:6891 +#: FlatCAMApp.py:6993 msgid "Importing SVG" msgstr "SVG in curs de ia fi importat" -#: FlatCAMApp.py:6902 FlatCAMApp.py:6944 FlatCAMApp.py:6984 FlatCAMApp.py:7060 -#: FlatCAMApp.py:7127 FlatCAMApp.py:7192 flatcamTools/ToolPDF.py:275 +#: FlatCAMApp.py:7004 FlatCAMApp.py:7046 FlatCAMApp.py:7086 FlatCAMApp.py:7162 +#: FlatCAMApp.py:7229 FlatCAMApp.py:7294 flatcamTools/ToolPDF.py:212 #, python-format msgid "[success] Opened: %s" msgstr "[success] Incărcat: %s" -#: FlatCAMApp.py:6933 +#: FlatCAMApp.py:7035 msgid "Importing DXF" msgstr "DXF in curs de a fi importat" -#: FlatCAMApp.py:6972 +#: FlatCAMApp.py:7074 msgid "Importing Image" msgstr "Imaginea in curs de a fi importata" -#: FlatCAMApp.py:7013 FlatCAMApp.py:7015 +#: FlatCAMApp.py:7115 FlatCAMApp.py:7117 #, python-format msgid "[ERROR_NOTCL] Failed to open file: %s" msgstr "[ERROR_NOTCL] Esec in incărcarea fişierului %s" -#: FlatCAMApp.py:7018 +#: FlatCAMApp.py:7120 #, python-brace-format msgid "[ERROR_NOTCL] Failed to parse file: {name}. {error}" msgstr "[ERROR_NOTCL] Esec in parsarea fişierului: {name}. {error}" -#: FlatCAMApp.py:7024 FlatCAMObj.py:3963 -#: flatcamEditors/FlatCAMExcEditor.py:1977 -#: flatcamEditors/FlatCAMGrbEditor.py:3018 +#: FlatCAMApp.py:7126 FlatCAMObj.py:3970 +#: flatcamEditors/FlatCAMExcEditor.py:2035 +#: flatcamEditors/FlatCAMGrbEditor.py:3098 msgid "[ERROR] An internal error has ocurred. See shell.\n" msgstr "" "[ERROR] A aparut o eroare interna. Verifică in TCL Shell pt mai multe " "detalii.\n" -#: FlatCAMApp.py:7033 +#: FlatCAMApp.py:7135 msgid "" "[ERROR_NOTCL] Object is not Gerber file or empty. Aborting object creation." msgstr "" "[ERROR_NOTCL] Obiectul nu estetip Gerber sau este gol. Se anulează crearea " "obiectului." -#: FlatCAMApp.py:7041 +#: FlatCAMApp.py:7143 msgid "Opening Gerber" msgstr "Gerber in curs de incărcare" -#: FlatCAMApp.py:7051 +#: FlatCAMApp.py:7153 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:7086 flatcamTools/ToolPcbWizard.py:421 +#: FlatCAMApp.py:7188 flatcamTools/ToolPcbWizard.py:421 msgid "[ERROR_NOTCL] This is not Excellon file." msgstr "[ERROR_NOTCL] Acesta nu este un fişier Excellon." -#: FlatCAMApp.py:7089 +#: FlatCAMApp.py:7191 #, python-format msgid "[ERROR_NOTCL] Cannot open file: %s" msgstr "[ERROR_NOTCL] Fişierul %s nu se poate incărca." -#: FlatCAMApp.py:7094 flatcamTools/ToolPcbWizard.py:429 +#: FlatCAMApp.py:7196 flatcamTools/ToolPcbWizard.py:429 msgid "[ERROR_NOTCL] An internal error has occurred. See shell.\n" msgstr "" "[ERROR_NOTCL] A aparut o eroare interna. Verifică in TCL Shell pt mai multe " "detalii.\n" -#: FlatCAMApp.py:7110 flatcamTools/ToolPDF.py:238 +#: FlatCAMApp.py:7212 flatcamTools/ToolPDF.py:261 #: flatcamTools/ToolPcbWizard.py:442 #, 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:7113 +#: FlatCAMApp.py:7215 msgid "Opening Excellon." msgstr "Excellon in curs de incărcare" -#: FlatCAMApp.py:7120 +#: FlatCAMApp.py:7222 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:7159 +#: FlatCAMApp.py:7261 #, python-format msgid "[ERROR_NOTCL] Failed to open %s" msgstr "[ERROR_NOTCL] Incărcarea fişierului %s a eșuat." -#: FlatCAMApp.py:7169 +#: FlatCAMApp.py:7271 msgid "[ERROR_NOTCL] This is not GCODE" msgstr "[ERROR_NOTCL] Acest obiect nu este de tip GCode" -#: FlatCAMApp.py:7175 +#: FlatCAMApp.py:7277 msgid "Opening G-Code." msgstr "G-Code in curs de incărcare" -#: FlatCAMApp.py:7183 +#: FlatCAMApp.py:7285 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 " @@ -953,26 +980,26 @@ msgstr "" "Incercarea de a crea un obiect CNCJob din G-Code a eșuat in timpul " "procesarii." -#: FlatCAMApp.py:7223 +#: FlatCAMApp.py:7325 #, python-format msgid "[ERROR_NOTCL] Failed to open config file: %s" msgstr "[ERROR_NOTCL] Esec in incărcarea fişierului de configurare: %s" -#: FlatCAMApp.py:7248 FlatCAMApp.py:7264 +#: FlatCAMApp.py:7350 FlatCAMApp.py:7366 #, python-format msgid "[ERROR_NOTCL] Failed to open project file: %s" msgstr "[ERROR_NOTCL] Esec in incărcarea fişierului proiect: %s" -#: FlatCAMApp.py:7290 +#: FlatCAMApp.py:7392 #, python-format msgid "[success] Project loaded from: %s" msgstr "[success] Proeictul a fost incărcat din: %s" -#: FlatCAMApp.py:7420 +#: FlatCAMApp.py:7522 msgid "Available commands:\n" msgstr "Comenzi disponibile:\n" -#: FlatCAMApp.py:7422 +#: FlatCAMApp.py:7524 msgid "" "\n" "\n" @@ -984,23 +1011,23 @@ msgstr "" "Introduceți help pentru utilizare.\n" "Exemplu: help open_gerber" -#: FlatCAMApp.py:7570 +#: FlatCAMApp.py:7672 msgid "Shows list of commands." msgstr "Arata o lista de comenzi." -#: FlatCAMApp.py:7626 +#: FlatCAMApp.py:7729 msgid "[ERROR_NOTCL] Failed to load recent item list." msgstr "[ERROR_NOTCL] Esec in incărcarea listei cu obiecte recente." -#: FlatCAMApp.py:7633 +#: FlatCAMApp.py:7736 msgid "[ERROR_NOTCL] Failed to parse recent item list." msgstr "[ERROR_NOTCL] Esec in parsarea listei cu obiecte recente." -#: FlatCAMApp.py:7694 flatcamGUI/FlatCAMGUI.py:941 +#: FlatCAMApp.py:7797 flatcamGUI/FlatCAMGUI.py:957 msgid "Shortcut Key List" msgstr "Lista cu taste Shortcut" -#: FlatCAMApp.py:7701 +#: FlatCAMApp.py:7804 msgid "" "\n" "

Selected Tab - Choose an Item from " @@ -1097,27 +1124,27 @@ msgstr "" "\n" " " -#: FlatCAMApp.py:7805 +#: FlatCAMApp.py:7908 msgid "[WARNING_NOTCL] 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." -#: FlatCAMApp.py:7812 +#: FlatCAMApp.py:7915 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:7822 +#: FlatCAMApp.py:7925 msgid "[success] FlatCAM is up to date!" msgstr "[success] FlatCAM este la ultima versiune!" -#: FlatCAMApp.py:7827 +#: FlatCAMApp.py:7930 msgid "Newer Version Available" msgstr "O nouă versiune este disponibila" -#: FlatCAMApp.py:7828 +#: FlatCAMApp.py:7931 msgid "" "There is a newer version of FlatCAM available for download:\n" "\n" @@ -1125,85 +1152,85 @@ msgstr "" "O nouă versiune de FlatCAM este disponibilă pentru download::\n" "\n" -#: FlatCAMApp.py:7830 +#: FlatCAMApp.py:7933 msgid "info" msgstr "Informaţie" -#: FlatCAMApp.py:7849 +#: FlatCAMApp.py:7952 msgid "[success] All plots disabled." msgstr "[success] Toate afisarile sunt dezactivate." -#: FlatCAMApp.py:7855 +#: FlatCAMApp.py:7958 msgid "[success] All non selected plots disabled." msgstr "[success] Toate afisarile care nu sunt selectate sunt dezactivate." -#: FlatCAMApp.py:7861 +#: FlatCAMApp.py:7964 msgid "[success] All plots enabled." msgstr "[success] Toate afisarile sunt activate." -#: FlatCAMApp.py:7972 +#: FlatCAMApp.py:8075 msgid "Saving FlatCAM Project" msgstr "Proiectul FlatCAM este in curs de salvare" -#: FlatCAMApp.py:7993 FlatCAMApp.py:8024 +#: FlatCAMApp.py:8096 FlatCAMApp.py:8127 #, python-format msgid "[success] Project saved to: %s" msgstr "[success] Proiectul s-a salvat in: %s" -#: FlatCAMApp.py:8011 +#: FlatCAMApp.py:8114 #, 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:8018 +#: FlatCAMApp.py:8121 #, 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:8026 +#: FlatCAMApp.py:8129 #, 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." -#: FlatCAMObj.py:194 +#: FlatCAMObj.py:195 #, python-brace-format msgid "[success] Name changed from {old} to {new}" msgstr "[success] Numele schimbat din {old} in {new}" -#: FlatCAMObj.py:535 FlatCAMObj.py:1741 FlatCAMObj.py:3006 FlatCAMObj.py:5158 +#: FlatCAMObj.py:542 FlatCAMObj.py:1748 FlatCAMObj.py:3013 FlatCAMObj.py:5165 msgid "Basic" msgstr "Baza" -#: FlatCAMObj.py:547 FlatCAMObj.py:1757 FlatCAMObj.py:3028 FlatCAMObj.py:5164 +#: FlatCAMObj.py:554 FlatCAMObj.py:1764 FlatCAMObj.py:3035 FlatCAMObj.py:5171 msgid "Advanced" msgstr "Avansat" -#: FlatCAMObj.py:902 FlatCAMObj.py:957 +#: FlatCAMObj.py:909 FlatCAMObj.py:964 #, python-format msgid "[success] Isolation geometry created: %s" msgstr "[success] Geometria de izolare creată: %s" -#: FlatCAMObj.py:1126 +#: FlatCAMObj.py:1133 msgid "Plotting Apertures" msgstr "Aperturile sunt in curs de afișare" -#: FlatCAMObj.py:1580 flatcamEditors/FlatCAMExcEditor.py:1327 +#: FlatCAMObj.py:1587 flatcamEditors/FlatCAMExcEditor.py:1327 msgid "Total Drills" msgstr "Nr. Tot. Op. Găurire" -#: FlatCAMObj.py:1606 flatcamEditors/FlatCAMExcEditor.py:1359 +#: FlatCAMObj.py:1613 flatcamEditors/FlatCAMExcEditor.py:1359 msgid "Total Slots" msgstr "Nr. Tot. Sloturi" -#: FlatCAMObj.py:1813 FlatCAMObj.py:3079 FlatCAMObj.py:3386 FlatCAMObj.py:3573 -#: FlatCAMObj.py:3586 FlatCAMObj.py:3703 FlatCAMObj.py:4111 FlatCAMObj.py:4344 -#: FlatCAMObj.py:4750 flatcamEditors/FlatCAMExcEditor.py:1434 +#: FlatCAMObj.py:1820 FlatCAMObj.py:3086 FlatCAMObj.py:3393 FlatCAMObj.py:3580 +#: FlatCAMObj.py:3593 FlatCAMObj.py:3710 FlatCAMObj.py:4118 FlatCAMObj.py:4351 +#: FlatCAMObj.py:4757 flatcamEditors/FlatCAMExcEditor.py:1434 #: flatcamTools/ToolCalculators.py:307 flatcamTools/ToolCalculators.py:318 #: flatcamTools/ToolCalculators.py:330 flatcamTools/ToolCalculators.py:345 #: flatcamTools/ToolCalculators.py:358 flatcamTools/ToolCalculators.py:372 @@ -1222,47 +1249,47 @@ msgstr "Nr. Tot. Sloturi" 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:2037 FlatCAMObj.py:2128 FlatCAMObj.py:2243 +#: FlatCAMObj.py:2044 FlatCAMObj.py:2135 FlatCAMObj.py:2250 msgid "" "[ERROR_NOTCL] Please select one or more tools from the list and try again." msgstr "" "[ERROR_NOTCL] Selectează una sau mai multe unelte din lista și încearcă din " "nou." -#: FlatCAMObj.py:2044 +#: FlatCAMObj.py:2051 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:2058 FlatCAMObj.py:2152 FlatCAMObj.py:2263 +#: FlatCAMObj.py:2065 FlatCAMObj.py:2159 FlatCAMObj.py:2270 msgid "Tool_nr" msgstr "Nr. Unealta" -#: FlatCAMObj.py:2058 FlatCAMObj.py:2152 FlatCAMObj.py:2263 +#: FlatCAMObj.py:2065 FlatCAMObj.py:2159 FlatCAMObj.py:2270 #: flatcamEditors/FlatCAMExcEditor.py:781 -#: flatcamEditors/FlatCAMExcEditor.py:1920 flatcamGUI/ObjectUI.py:556 +#: flatcamEditors/FlatCAMExcEditor.py:1978 flatcamGUI/ObjectUI.py:556 #: flatcamTools/ToolNonCopperClear.py:83 flatcamTools/ToolPaint.py:80 #: flatcamTools/ToolPcbWizard.py:78 flatcamTools/ToolSolderPaste.py:81 msgid "Diameter" msgstr "Diametru" -#: FlatCAMObj.py:2058 FlatCAMObj.py:2152 FlatCAMObj.py:2263 +#: FlatCAMObj.py:2065 FlatCAMObj.py:2159 FlatCAMObj.py:2270 msgid "Drills_Nr" msgstr "Nr. gaura" -#: FlatCAMObj.py:2058 FlatCAMObj.py:2152 FlatCAMObj.py:2263 +#: FlatCAMObj.py:2065 FlatCAMObj.py:2159 FlatCAMObj.py:2270 msgid "Slots_Nr" msgstr "Nr. slot" -#: FlatCAMObj.py:2138 +#: FlatCAMObj.py:2145 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:2303 FlatCAMObj.py:3999 FlatCAMObj.py:4210 FlatCAMObj.py:4525 +#: FlatCAMObj.py:2310 FlatCAMObj.py:4006 FlatCAMObj.py:4217 FlatCAMObj.py:4532 msgid "" "[ERROR_NOTCL] Wrong value format for self.defaults[\"z_pdepth\"] or self." "options[\"z_pdepth\"]" @@ -1270,7 +1297,7 @@ msgstr "" "[ERROR_NOTCL] Valoare gresita pt self.defaults[\"z_pdepth\"] sau self." "options[\"z_pdepth\"]" -#: FlatCAMObj.py:2315 FlatCAMObj.py:4011 FlatCAMObj.py:4222 FlatCAMObj.py:4537 +#: FlatCAMObj.py:2322 FlatCAMObj.py:4018 FlatCAMObj.py:4229 FlatCAMObj.py:4544 msgid "" "[ERROR_NOTCL] Wrong value format for self.defaults[\"feedrate_probe\"] or " "self.options[\"feedrate_probe\"]" @@ -1278,98 +1305,73 @@ msgstr "" "[ERROR_NOTCL] Valoare gresita pt self.defaults[\"feedrate_probe\"] sau self." "options[\"feedrate_probe\"]" -#: FlatCAMObj.py:2347 FlatCAMObj.py:4412 FlatCAMObj.py:4417 FlatCAMObj.py:4563 +#: FlatCAMObj.py:2354 FlatCAMObj.py:4419 FlatCAMObj.py:4424 FlatCAMObj.py:4570 msgid "Generating CNC Code" msgstr "CNC Code in curs de generare" -#: FlatCAMObj.py:2373 FlatCAMObj.py:4709 camlib.py:5204 camlib.py:5653 -#: camlib.py:5924 +#: FlatCAMObj.py:2380 FlatCAMObj.py:4716 camlib.py:5214 camlib.py:5672 +#: camlib.py:5943 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. " msgstr "" -"[ERROR] Parametrul >Schimbare Unealta X, Y< in Editare -> Peferinte trebuie " +"[ERROR] Parametrul >Schimbare Unealta 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:2720 FlatCAMObj.py:2962 FlatCAMObj.py:3249 -msgid "Path" -msgstr "Pe cale" - -#: FlatCAMObj.py:2720 -msgid "In" -msgstr "În" - -#: FlatCAMObj.py:2720 -msgid "Out" -msgstr "Afară" - -#: FlatCAMObj.py:2720 FlatCAMObj.py:3044 FlatCAMObj.py:3618 -msgid "Custom" -msgstr "Personalizat" - -#: FlatCAMObj.py:2721 FlatCAMObj.py:3629 FlatCAMObj.py:3630 FlatCAMObj.py:3639 +#: FlatCAMObj.py:2728 FlatCAMObj.py:3636 FlatCAMObj.py:3637 FlatCAMObj.py:3646 msgid "Iso" msgstr "Izo." -#: FlatCAMObj.py:2721 FlatCAMObj.py:2964 FlatCAMObj.py:3251 +#: FlatCAMObj.py:2728 FlatCAMObj.py:2971 FlatCAMObj.py:3258 msgid "Rough" msgstr "Grosier" -#: FlatCAMObj.py:2721 +#: FlatCAMObj.py:2728 msgid "Finish" msgstr "Finisare" -#: FlatCAMObj.py:2999 flatcamGUI/FlatCAMGUI.py:518 flatcamGUI/FlatCAMGUI.py:710 -#: flatcamGUI/FlatCAMGUI.py:1580 flatcamGUI/FlatCAMGUI.py:1590 -#: flatcamGUI/FlatCAMGUI.py:1914 flatcamGUI/ObjectUI.py:996 +#: FlatCAMObj.py:3006 flatcamGUI/FlatCAMGUI.py:518 flatcamGUI/FlatCAMGUI.py:711 +#: flatcamGUI/FlatCAMGUI.py:1601 flatcamGUI/FlatCAMGUI.py:1932 +#: flatcamGUI/ObjectUI.py:996 msgid "Copy" -msgstr "Copiaza" +msgstr "Copiază" -#: FlatCAMObj.py:3001 flatcamEditors/FlatCAMGrbEditor.py:1825 -#: flatcamGUI/FlatCAMGUI.py:519 flatcamGUI/FlatCAMGUI.py:712 -#: flatcamGUI/FlatCAMGUI.py:1581 flatcamGUI/FlatCAMGUI.py:1591 -#: flatcamGUI/FlatCAMGUI.py:1916 flatcamGUI/ObjectUI.py:1004 -#: flatcamTools/ToolNonCopperClear.py:146 flatcamTools/ToolPaint.py:143 -#: flatcamTools/ToolSolderPaste.py:121 flatcamTools/ToolSolderPaste.py:481 -msgid "Delete" -msgstr "Șterge" - -#: FlatCAMObj.py:3221 +#: FlatCAMObj.py:3228 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:3296 +#: FlatCAMObj.py:3303 msgid "[success] Tool added in Tool Table." msgstr "[success] Unealta adăugată in Tabela de Unelte." -#: FlatCAMObj.py:3301 +#: FlatCAMObj.py:3308 msgid "[ERROR_NOTCL] Default Tool added. Wrong value format entered." msgstr "" "[ERROR_NOTCL] Unealta implicita adăugatădar valoarea are un format gresit." -#: FlatCAMObj.py:3331 FlatCAMObj.py:3341 +#: FlatCAMObj.py:3338 FlatCAMObj.py:3348 msgid "[WARNING_NOTCL] Failed. Select a tool to copy." msgstr "[WARNING_NOTCL] Esuat. Selectează o unealtă pt copiere." -#: FlatCAMObj.py:3370 +#: FlatCAMObj.py:3377 msgid "[success] Tool was copied in Tool Table." msgstr "[success] Unealta a fost copiata in Tabela de Unelte." -#: FlatCAMObj.py:3403 +#: FlatCAMObj.py:3410 msgid "[success] Tool was edited in Tool Table." msgstr "[success] Unealta a fost editata in Tabela de Unelte." -#: FlatCAMObj.py:3434 FlatCAMObj.py:3444 +#: FlatCAMObj.py:3441 FlatCAMObj.py:3451 msgid "[WARNING_NOTCL] Failed. Select a tool to delete." msgstr "[WARNING_NOTCL] Esuat. Selectează o unealtă pentru ștergere." -#: FlatCAMObj.py:3468 +#: FlatCAMObj.py:3475 msgid "[success] Tool was deleted in Tool Table." msgstr "[success] Unealta a fost stearsa din Tabela de Unelte." -#: FlatCAMObj.py:3882 +#: FlatCAMObj.py:3889 #, python-format msgid "" "[WARNING_NOTCL] This Geometry can't be processed because it is %s geometry." @@ -1377,23 +1379,23 @@ msgstr "" "[WARNING_NOTCL] Acest obiect Geometrie nu poate fi procesar decoarece este " "Geometrie %s." -#: FlatCAMObj.py:3899 +#: FlatCAMObj.py:3906 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:3926 +#: FlatCAMObj.py:3933 msgid "[ERROR_NOTCL] Failed. No tool selected in the tool table ..." msgstr "" "[ERROR_NOTCL] Esuat. Nici-o unealtă nu este selectată in Tabela de Unelte ..." -#: FlatCAMObj.py:3964 +#: FlatCAMObj.py:3971 #, python-format msgid "FlatCAMObj.FlatCAMGeometry.mtool_gen_cncjob() --> %s" msgstr "FlatCAMObj.FlatCAMGeometry.mtool_gen_cncjob() --> %s" -#: FlatCAMObj.py:4120 FlatCAMObj.py:4353 +#: FlatCAMObj.py:4127 FlatCAMObj.py:4360 msgid "" "[WARNING] Tool Offset is selected in Tool Table but no value is provided.\n" "Add a Tool Offset or change the Offset Type." @@ -1402,21 +1404,21 @@ msgstr "" "val. nu este oferita.\n" "Adaugă un ofset pt unealtă sau schimbă Tipul Ofset." -#: FlatCAMObj.py:4234 flatcamTools/ToolSolderPaste.py:1107 +#: FlatCAMObj.py:4241 flatcamTools/ToolSolderPaste.py:1107 #: flatcamTools/ToolSolderPaste.py:1162 msgid "[ERROR_NOTCL] Cancelled. Empty file, it has no geometry..." msgstr "[ERROR_NOTCL] Anulat. Fişier gol, nu are date geometrice." -#: FlatCAMObj.py:4596 FlatCAMObj.py:4606 camlib.py:3426 camlib.py:3435 +#: FlatCAMObj.py:4603 FlatCAMObj.py:4613 camlib.py:3436 camlib.py:3445 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:4644 +#: FlatCAMObj.py:4651 msgid "[success] Geometry Scale done." msgstr "[success] Scalare Geometrie executată." -#: FlatCAMObj.py:4661 camlib.py:3497 +#: FlatCAMObj.py:4668 camlib.py:3507 msgid "" "[ERROR_NOTCL] An (x,y) pair of values are needed. Probable you entered only " "one value in the Offset field." @@ -1424,29 +1426,29 @@ msgstr "" "[ERROR_NOTCL] O pereche de valori (x,y) este necesară. Probabil că ai " "introdus numai o singură valoare in câmpul Offset." -#: FlatCAMObj.py:4681 +#: FlatCAMObj.py:4688 msgid "[success] Geometry Offset done." msgstr "[success] Ofset Geometrie executat." -#: FlatCAMObj.py:5226 FlatCAMObj.py:5231 flatcamTools/ToolSolderPaste.py:1361 +#: FlatCAMObj.py:5233 FlatCAMObj.py:5238 flatcamTools/ToolSolderPaste.py:1361 msgid "Export Machine Code ..." msgstr "Exporta CNC Cod Masina ..." -#: FlatCAMObj.py:5237 flatcamTools/ToolSolderPaste.py:1364 +#: FlatCAMObj.py:5244 flatcamTools/ToolSolderPaste.py:1364 msgid "[WARNING_NOTCL] Export Machine Code cancelled ..." msgstr "[WARNING_NOTCL] Exportul codului masina CNC a fost anulat ..." -#: FlatCAMObj.py:5248 +#: FlatCAMObj.py:5255 #, python-format msgid "[success] Machine Code file saved to: %s" msgstr "[success] Fişierul cu cod CNC este salvat in: %s" -#: FlatCAMObj.py:5270 +#: FlatCAMObj.py:5277 #, python-format msgid "[ERROR]FlatCAMCNNJob.on_edit_code_click() -->%s" msgstr "[ERROR]FlatCAMCNNJob.on_edit_code_click() -->%s" -#: FlatCAMObj.py:5387 +#: FlatCAMObj.py:5394 #, python-format msgid "" "[WARNING_NOTCL] This CNCJob object can't be processed because it is a %s " @@ -1455,11 +1457,11 @@ msgstr "" "[WARNING_NOTCL] Acest obiect CNCJob nu poate fi procesar deoarece este un " "obiect CNCJob tip %s." -#: FlatCAMObj.py:5440 +#: FlatCAMObj.py:5447 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:5453 +#: FlatCAMObj.py:5460 msgid "" "[ERROR_NOTCL] Cancelled. The Toolchange Custom code is enabled but it's " "empty." @@ -1467,17 +1469,17 @@ msgstr "" "[ERROR_NOTCL] Anulat. Codul G-Code din Macro-ul Schimbare unealtă este " "activat dar nuc contine nimic." -#: FlatCAMObj.py:5460 +#: FlatCAMObj.py:5467 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:5475 flatcamTools/ToolSolderPaste.py:1390 +#: FlatCAMObj.py:5482 flatcamTools/ToolSolderPaste.py:1390 msgid "[WARNING_NOTCL] No such file or directory" msgstr "[WARNING_NOTCL] Nu exista un asemenea fişier sau director" -#: FlatCAMObj.py:5494 FlatCAMObj.py:5506 +#: FlatCAMObj.py:5501 FlatCAMObj.py:5513 msgid "" "[WARNING_NOTCL] The used postprocessor file has to have in it's name: " "'toolchange_custom'" @@ -1485,16 +1487,16 @@ msgstr "" "[WARNING_NOTCL] Postprocesorul folosit trebuie să aibă in numele sau: " "'toolchange_custom'" -#: FlatCAMObj.py:5512 +#: FlatCAMObj.py:5519 msgid "[ERROR] There is no postprocessor file." msgstr "[ERROR] Nu exista nici-un fişier postprocesor." -#: ObjectCollection.py:416 +#: ObjectCollection.py:419 #, python-brace-format -msgid "Object renamed from {old} to {new}" -msgstr "Obiectul este redenumit din {old} in {new}." +msgid "Object renamed from {old} to {new}" +msgstr "Obiectul este redenumit din {old} in {new}" -#: ObjectCollection.py:751 +#: ObjectCollection.py:757 #, python-format msgid "[ERROR] Cause of error: %s" msgstr "[ERROR] Motivul erorii: %s" @@ -1528,17 +1530,17 @@ msgstr "[success] Obiectul a fost deformat ..." msgid "[ERROR_NOTCL] Failed to skew. No object selected" msgstr "[ERROR_NOTCL] Deformare eșuata. Nici-un obiect nu este selectat ..." -#: camlib.py:2733 camlib.py:2837 +#: camlib.py:2741 camlib.py:2847 #, python-format msgid "[WARNING] Coordinates missing, line ignored: %s" msgstr "[WARNING] Coordonatele lipsesc, linia este ignorata: %s" -#: camlib.py:2734 camlib.py:2838 +#: camlib.py:2742 camlib.py:2848 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:2792 +#: camlib.py:2802 #, python-format msgid "" "[ERROR] Region does not have enough points. File will be processed but there " @@ -1547,7 +1549,7 @@ msgstr "" "[ERROR] Regiunea Gerber nu are suficiente puncte. Fişierul va fi procesat " "dar sunt erori de parsare. Numărul liniei: %s" -#: camlib.py:3247 +#: camlib.py:3257 #, python-format msgid "" "[ERROR]Gerber Parser ERROR.\n" @@ -1556,20 +1558,20 @@ msgstr "" "[ERROR] Eroare in parserul Gerber.\n" "%s:" -#: camlib.py:3464 +#: camlib.py:3474 msgid "[success] Gerber Scale done." msgstr "[success] Scalarea Gerber efectuata." -#: camlib.py:3521 +#: camlib.py:3531 msgid "[success] Gerber Offset done." msgstr "[success] Offsetare Gerber efectuata." -#: camlib.py:3915 +#: camlib.py:3925 #, python-format msgid "[ERROR_NOTCL] This is GCODE mark: %s" msgstr "[ERROR_NOTCL] Acesta este un marcaj Gerber: %s" -#: camlib.py:4029 +#: camlib.py:4039 #, python-format msgid "" "[WARNING] No tool diameter info's. See shell.\n" @@ -1585,7 +1587,7 @@ msgstr "" "Userul trebuie să editeze obictul Excellon rezultat si sa ajusteze " "diametrele a.i sa reflecte diametrele reale." -#: camlib.py:4494 +#: camlib.py:4504 #, python-brace-format msgid "" "[ERROR] Excellon Parser error.\n" @@ -1595,7 +1597,7 @@ msgstr "" "Parsare eșuata. Linia {l_nr}: {line}\n" "\n" -#: camlib.py:4571 +#: camlib.py:4581 msgid "" "[WARNING] Excellon.create_geometry() -> a drill location was skipped due of " "not having a tool associated.\n" @@ -1605,12 +1607,12 @@ msgstr "" "deoarece nu are o unealtă asociata.\n" "Verifică codul G-Code rezultat." -#: camlib.py:5113 +#: camlib.py:5123 #, python-format msgid "[ERROR] There is no such parameter: %s" msgstr "[ERROR] Nu exista un asemenea parametru: %s" -#: camlib.py:5183 +#: camlib.py:5193 msgid "" "[WARNING] The Cut Z parameter has positive value. It is the depth value to " "drill into material.\n" @@ -1623,7 +1625,7 @@ msgstr "" "Se presupune că este o eroare de tastare astfel ca aplicaţia va converti " "intr-o valoare negativă. Verifică codul masina (G-Code etc) rezultat." -#: camlib.py:5190 camlib.py:5676 camlib.py:5947 +#: camlib.py:5200 camlib.py:5695 camlib.py:5966 #, python-format msgid "" "[WARNING] The Cut Z parameter is zero. There will be no cut, skipping %s file" @@ -1631,15 +1633,15 @@ msgstr "" "[WARNING] Parametrul >Z tăiere< este nul. Nu va fi nici-o tăiere prin urmare " "nu procesam fişierul %s" -#: camlib.py:5412 camlib.py:5507 camlib.py:5565 +#: camlib.py:5429 camlib.py:5526 camlib.py:5584 msgid "[ERROR_NOTCL] The loaded Excellon file has no drills ..." msgstr "[ERROR_NOTCL] Fişierul Excellon incărcat nu are găuri ..." -#: camlib.py:5512 +#: camlib.py:5531 msgid "[ERROR_NOTCL] Wrong optimization type selected." msgstr "[ERROR_NOTCL] Un tip de optimizare incorrect a fost selectat." -#: camlib.py:5664 camlib.py:5935 +#: camlib.py:5683 camlib.py:5954 msgid "" "[ERROR_NOTCL] Cut_Z parameter is None or zero. Most likely a bad " "combinations of other parameters." @@ -1647,7 +1649,7 @@ msgstr "" "[ERROR_NOTCL] Parametrul >Z tăiere< este None sau zero. Cel mai probabil o " "combinaţie nefericita de parametri." -#: camlib.py:5669 camlib.py:5940 +#: camlib.py:5688 camlib.py:5959 msgid "" "[WARNING] The Cut Z parameter has positive value. It is the depth value to " "cut into material.\n" @@ -1660,11 +1662,11 @@ msgstr "" "Se presupune că este o eroare de tastare astfel ca aplicaţia va converti " "intr-o valoare negativă. Verifică codul masina (G-Code etc) rezultat." -#: camlib.py:5681 camlib.py:5952 +#: camlib.py:5700 camlib.py:5971 msgid "[ERROR_NOTCL] Travel Z parameter is None or zero." msgstr "[ERROR_NOTCL] Parametrul >Z deplasare< este None sau zero." -#: camlib.py:5685 camlib.py:5956 +#: camlib.py:5704 camlib.py:5975 msgid "" "[WARNING] The Travel Z parameter has negative value. It is the height value " "to travel between cuts.\n" @@ -1678,7 +1680,7 @@ msgstr "" "Se presupune că este o eroare de tastare astfel ca aplicaţia va converti " "intr-o valoare pozitivă. Verifică codul masina (G-Code etc) rezultat." -#: camlib.py:5692 camlib.py:5963 +#: camlib.py:5711 camlib.py:5982 #, python-format msgid "" "[WARNING] The Z Travel parameter is zero. This is dangerous, skipping %s file" @@ -1686,12 +1688,12 @@ msgstr "" "[WARNING] Parametrul >Z deplasare< este zero. Aceasta este periculos, prin " "urmare fişierul %s nu se procesează." -#: camlib.py:5822 +#: camlib.py:5841 #, python-format msgid "[ERROR]Expected a Geometry, got %s" msgstr "[ERROR] Se astepta o Geometrie, am primit in schimb %s" -#: camlib.py:5828 +#: camlib.py:5847 msgid "" "[ERROR_NOTCL] Trying to generate a CNC Job from a Geometry object without " "solid_geometry." @@ -1699,7 +1701,7 @@ msgstr "" "[ERROR_NOTCL] Se încearcă generarea unui CNC Job dintr-un obiect Geometrie " "fără atributul solid_geometry." -#: camlib.py:5867 +#: camlib.py:5886 msgid "" "[ERROR_NOTCL] The Tool Offset value is too negative to use for the " "current_geometry.\n" @@ -1709,7 +1711,7 @@ msgstr "" "fi folosita. \n" "Mareste valoarea absoluta și încearcă din nou." -#: camlib.py:6089 +#: camlib.py:6108 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." @@ -1724,8 +1726,8 @@ msgstr "" #: flatcamEditors/FlatCAMExcEditor.py:446 #: flatcamEditors/FlatCAMExcEditor.py:471 #: flatcamEditors/FlatCAMGrbEditor.py:287 -#: flatcamEditors/FlatCAMGrbEditor.py:1447 -#: flatcamEditors/FlatCAMGrbEditor.py:1471 +#: flatcamEditors/FlatCAMGrbEditor.py:1454 +#: flatcamEditors/FlatCAMGrbEditor.py:1478 msgid "Click on target location ..." msgstr "Click pe locatia tinta ..." @@ -1769,7 +1771,7 @@ msgstr "[success] Executat. Aria de operațiuni de găurire a fost adăugată." #: flatcamEditors/FlatCAMExcEditor.py:332 msgid "Click on the Drill(s) to resize ..." msgstr "" -"Click pe operațiunile de găurire care se doreste să fie redimensionate ..." +"Click pe operațiunile de găurire care se dorește să fie redimensionate ..." #: flatcamEditors/FlatCAMExcEditor.py:352 msgid "" @@ -1788,7 +1790,7 @@ msgstr "" "[WARNING_NOTCL] Anulat. Nimic nu este selectat pentruredimensionare ..." #: flatcamEditors/FlatCAMExcEditor.py:448 -#: flatcamEditors/FlatCAMGrbEditor.py:1449 +#: flatcamEditors/FlatCAMGrbEditor.py:1456 msgid "Click on reference location ..." msgstr "Click pe locatia de referinţă ..." @@ -1805,7 +1807,7 @@ msgid "Excellon Editor" msgstr "Editor Excellon" #: flatcamEditors/FlatCAMExcEditor.py:761 -#: flatcamEditors/FlatCAMGrbEditor.py:1705 +#: flatcamEditors/FlatCAMGrbEditor.py:1715 msgid "Name:" msgstr "Nume:" @@ -1892,7 +1894,7 @@ msgstr "Redimensionează" msgid "Resize drill(s)" msgstr "Redimensionează op. de găurire." -#: flatcamEditors/FlatCAMExcEditor.py:885 flatcamGUI/FlatCAMGUI.py:1586 +#: flatcamEditors/FlatCAMExcEditor.py:885 flatcamGUI/FlatCAMGUI.py:1598 msgid "Add Drill Array" msgstr "Adaugă o arie de op. găurire" @@ -1909,12 +1911,12 @@ msgstr "" "Poate fi Liniar X(Y) sau Circular." #: flatcamEditors/FlatCAMExcEditor.py:896 -#: flatcamEditors/FlatCAMGrbEditor.py:1938 +#: flatcamEditors/FlatCAMGrbEditor.py:1948 msgid "Linear" msgstr "Liniar" #: flatcamEditors/FlatCAMExcEditor.py:897 -#: flatcamEditors/FlatCAMGrbEditor.py:1939 +#: flatcamEditors/FlatCAMGrbEditor.py:1949 msgid "Circular" msgstr "Circular" @@ -1928,13 +1930,13 @@ msgstr "Specifica cate operațiuni de găurire să fie incluse in arie." #: flatcamEditors/FlatCAMExcEditor.py:923 #: flatcamEditors/FlatCAMExcEditor.py:968 -#: flatcamEditors/FlatCAMGrbEditor.py:1965 -#: flatcamEditors/FlatCAMGrbEditor.py:2010 +#: flatcamEditors/FlatCAMGrbEditor.py:1975 +#: flatcamEditors/FlatCAMGrbEditor.py:2020 msgid "Direction:" msgstr "Direcţie:" #: flatcamEditors/FlatCAMExcEditor.py:925 -#: flatcamEditors/FlatCAMGrbEditor.py:1967 +#: flatcamEditors/FlatCAMGrbEditor.py:1977 msgid "" "Direction on which the linear array is oriented:\n" "- 'X' - horizontal axis \n" @@ -1946,32 +1948,27 @@ msgstr "" "- 'Y' - pe axa verticala sau \n" "- 'Unghi' - un unghi particular pentru inclinatia ariei" -#: flatcamEditors/FlatCAMExcEditor.py:934 -#: flatcamEditors/FlatCAMGrbEditor.py:1976 -msgid "Angle" -msgstr "Unghi" - #: flatcamEditors/FlatCAMExcEditor.py:938 -#: flatcamEditors/FlatCAMGrbEditor.py:1980 +#: flatcamEditors/FlatCAMGrbEditor.py:1990 msgid "Pitch:" msgstr "Pas:" #: flatcamEditors/FlatCAMExcEditor.py:940 -#: flatcamEditors/FlatCAMGrbEditor.py:1982 +#: flatcamEditors/FlatCAMGrbEditor.py:1992 msgid "Pitch = Distance between elements of the array." msgstr "Pas = Distanta între elementele ariei." #: flatcamEditors/FlatCAMExcEditor.py:947 #: flatcamEditors/FlatCAMExcEditor.py:983 #: flatcamEditors/FlatCAMGeoEditor.py:664 -#: flatcamEditors/FlatCAMGrbEditor.py:1989 -#: flatcamEditors/FlatCAMGrbEditor.py:2025 -#: flatcamEditors/FlatCAMGrbEditor.py:3833 flatcamTools/ToolTransform.py:68 +#: flatcamEditors/FlatCAMGrbEditor.py:1999 +#: flatcamEditors/FlatCAMGrbEditor.py:2035 +#: flatcamEditors/FlatCAMGrbEditor.py:3931 flatcamTools/ToolTransform.py:68 msgid "Angle:" msgstr "Unghi:" #: flatcamEditors/FlatCAMExcEditor.py:949 -#: flatcamEditors/FlatCAMGrbEditor.py:1991 +#: flatcamEditors/FlatCAMGrbEditor.py:2001 msgid "" "Angle at which the linear array is placed.\n" "The precision is of max 2 decimals.\n" @@ -1984,7 +1981,7 @@ msgstr "" "Val maxima este: 360.00 grade." #: flatcamEditors/FlatCAMExcEditor.py:970 -#: flatcamEditors/FlatCAMGrbEditor.py:2012 +#: flatcamEditors/FlatCAMGrbEditor.py:2022 msgid "" "Direction for circular array.Can be CW = clockwise or CCW = counter " "clockwise." @@ -1993,7 +1990,7 @@ msgstr "" "sau CCW = invers acelor de ceasornic" #: flatcamEditors/FlatCAMExcEditor.py:985 -#: flatcamEditors/FlatCAMGrbEditor.py:2027 +#: flatcamEditors/FlatCAMGrbEditor.py:2037 msgid "Angle at which each element in circular array is placed." msgstr "" "Unghiul la care fiecare element al ariei circulare este plasat fata de " @@ -2008,7 +2005,7 @@ msgstr "" "Salvează și reeditează obiectul Excellon daca ai nevoie să adaugi aceasta " "unealtă." -#: flatcamEditors/FlatCAMExcEditor.py:1456 flatcamGUI/FlatCAMGUI.py:2956 +#: flatcamEditors/FlatCAMExcEditor.py:1456 flatcamGUI/FlatCAMGUI.py:2980 #, python-brace-format msgid "[success] Added new tool with dia: {dia} {units}" msgstr "[success] O noua unealtă este adăugată cu diametrul: {dia} {units}" @@ -2022,7 +2019,7 @@ msgstr "[WARNING_NOTCL] Selectează o unealtă in Tabela de Unelte" msgid "[success] Deleted tool with dia: {del_dia} {units}" msgstr "[success] Unealta stearsa cu diametrul: {del_dia} {units}" -#: flatcamEditors/FlatCAMExcEditor.py:1974 +#: flatcamEditors/FlatCAMExcEditor.py:2032 msgid "" "[ERROR_NOTCL] There are no Tools definitions in the file. Aborting Excellon " "creation." @@ -2030,35 +2027,35 @@ msgstr "" "[ERROR_NOTCL] Nu exista definitii de unelte in fişier. Se anulează crearea " "de obiect Excellon." -#: flatcamEditors/FlatCAMExcEditor.py:1983 +#: flatcamEditors/FlatCAMExcEditor.py:2041 msgid "Creating Excellon." msgstr "In curs de creere Excellon." -#: flatcamEditors/FlatCAMExcEditor.py:1992 +#: flatcamEditors/FlatCAMExcEditor.py:2050 msgid "[success] Excellon editing finished." msgstr "[success] Editarea Excellon a fost terminata." -#: flatcamEditors/FlatCAMExcEditor.py:2009 +#: flatcamEditors/FlatCAMExcEditor.py:2067 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:2508 +#: flatcamEditors/FlatCAMExcEditor.py:2572 msgid "[success] Done. Drill(s) deleted." msgstr "[success] Executat. Operatiile de găurire șterse." -#: flatcamEditors/FlatCAMExcEditor.py:2578 -#: flatcamEditors/FlatCAMGrbEditor.py:3621 +#: flatcamEditors/FlatCAMExcEditor.py:2642 +#: flatcamEditors/FlatCAMGrbEditor.py:3719 msgid "Click on the circular array Center position" msgstr "Click pe punctul de Centru al ariei circulare." #: flatcamEditors/FlatCAMGeoEditor.py:78 -#: flatcamEditors/FlatCAMGrbEditor.py:1855 +#: flatcamEditors/FlatCAMGrbEditor.py:1865 msgid "Buffer distance:" msgstr "Distanta pt bufer:" #: flatcamEditors/FlatCAMGeoEditor.py:79 -#: flatcamEditors/FlatCAMGrbEditor.py:1856 +#: flatcamEditors/FlatCAMGrbEditor.py:1866 msgid "Buffer corner:" msgstr "Coltul pt bufer:" @@ -2077,17 +2074,17 @@ msgstr "" "care formează coltul" #: flatcamEditors/FlatCAMGeoEditor.py:87 -#: flatcamEditors/FlatCAMGrbEditor.py:1864 +#: flatcamEditors/FlatCAMGrbEditor.py:1874 msgid "Round" msgstr "Rotund" #: flatcamEditors/FlatCAMGeoEditor.py:88 -#: flatcamEditors/FlatCAMGrbEditor.py:1865 +#: flatcamEditors/FlatCAMGrbEditor.py:1875 msgid "Square" msgstr "Patrat" #: flatcamEditors/FlatCAMGeoEditor.py:89 -#: flatcamEditors/FlatCAMGrbEditor.py:1866 +#: flatcamEditors/FlatCAMGrbEditor.py:1876 msgid "Beveled" msgstr "Beveled" @@ -2104,17 +2101,17 @@ msgid "Full Buffer" msgstr "Bufer complet" #: flatcamEditors/FlatCAMGeoEditor.py:125 -#: flatcamEditors/FlatCAMGeoEditor.py:2594 +#: flatcamEditors/FlatCAMGeoEditor.py:2609 msgid "Buffer Tool" msgstr "Unealta Bufer" #: flatcamEditors/FlatCAMGeoEditor.py:136 #: flatcamEditors/FlatCAMGeoEditor.py:153 #: flatcamEditors/FlatCAMGeoEditor.py:170 -#: flatcamEditors/FlatCAMGeoEditor.py:2612 -#: flatcamEditors/FlatCAMGeoEditor.py:2638 -#: flatcamEditors/FlatCAMGeoEditor.py:2664 -#: flatcamEditors/FlatCAMGrbEditor.py:3673 +#: flatcamEditors/FlatCAMGeoEditor.py:2627 +#: flatcamEditors/FlatCAMGeoEditor.py:2653 +#: flatcamEditors/FlatCAMGeoEditor.py:2679 +#: flatcamEditors/FlatCAMGrbEditor.py:3771 msgid "" "[WARNING_NOTCL] Buffer distance value is missing or wrong format. Add it and " "retry." @@ -2126,17 +2123,17 @@ msgstr "" msgid "Text Tool" msgstr "Unealta Text" -#: flatcamEditors/FlatCAMGeoEditor.py:399 flatcamGUI/FlatCAMGUI.py:776 +#: flatcamEditors/FlatCAMGeoEditor.py:399 flatcamGUI/FlatCAMGUI.py:792 msgid "Tool" msgstr "Unealta" -#: flatcamEditors/FlatCAMGeoEditor.py:430 flatcamGUI/FlatCAMGUI.py:3922 -#: flatcamGUI/FlatCAMGUI.py:5128 flatcamGUI/FlatCAMGUI.py:5404 -#: flatcamGUI/FlatCAMGUI.py:5544 flatcamGUI/ObjectUI.py:260 +#: flatcamEditors/FlatCAMGeoEditor.py:430 flatcamGUI/FlatCAMGUI.py:3996 +#: flatcamGUI/FlatCAMGUI.py:5202 flatcamGUI/FlatCAMGUI.py:5478 +#: flatcamGUI/FlatCAMGUI.py:5618 flatcamGUI/ObjectUI.py:260 msgid "Tool dia:" msgstr "Dia unealtă:" -#: flatcamEditors/FlatCAMGeoEditor.py:432 flatcamGUI/FlatCAMGUI.py:5546 +#: flatcamEditors/FlatCAMGeoEditor.py:432 flatcamGUI/FlatCAMGUI.py:5620 msgid "" "Diameter of the tool to\n" "be used in the operation." @@ -2144,8 +2141,8 @@ msgstr "" "Diametrul uneltei care este utilizata in operaţie. \n" "Este și lăţimea de tăiere pentru uneltele cilindrice." -#: flatcamEditors/FlatCAMGeoEditor.py:441 flatcamGUI/FlatCAMGUI.py:5310 -#: flatcamGUI/FlatCAMGUI.py:5555 flatcamTools/ToolNonCopperClear.py:165 +#: flatcamEditors/FlatCAMGeoEditor.py:441 flatcamGUI/FlatCAMGUI.py:5384 +#: flatcamGUI/FlatCAMGUI.py:5629 flatcamTools/ToolNonCopperClear.py:165 #: flatcamTools/ToolPaint.py:160 msgid "Overlap Rate:" msgstr "Rata suprapunere:" @@ -2176,14 +2173,14 @@ msgstr "" "Valori mari= procesare lenta cat și o execuţie la fel de lenta a PCB-ului,\n" "datorita numărului mai mare de treceri-tăiere." -#: flatcamEditors/FlatCAMGeoEditor.py:459 flatcamGUI/FlatCAMGUI.py:5326 -#: flatcamGUI/FlatCAMGUI.py:5412 flatcamGUI/FlatCAMGUI.py:5565 +#: flatcamEditors/FlatCAMGeoEditor.py:459 flatcamGUI/FlatCAMGUI.py:5400 +#: flatcamGUI/FlatCAMGUI.py:5486 flatcamGUI/FlatCAMGUI.py:5639 #: flatcamTools/ToolCutOut.py:86 flatcamTools/ToolNonCopperClear.py:181 #: flatcamTools/ToolPaint.py:177 msgid "Margin:" msgstr "Margine:" -#: flatcamEditors/FlatCAMGeoEditor.py:461 flatcamGUI/FlatCAMGUI.py:5567 +#: flatcamEditors/FlatCAMGeoEditor.py:461 flatcamGUI/FlatCAMGUI.py:5641 #: flatcamTools/ToolPaint.py:179 msgid "" "Distance by which to avoid\n" @@ -2194,13 +2191,13 @@ msgstr "" "poligonului care trebuie\n" "să fie >pictat<." -#: flatcamEditors/FlatCAMGeoEditor.py:470 flatcamGUI/FlatCAMGUI.py:5335 -#: flatcamGUI/FlatCAMGUI.py:5576 flatcamTools/ToolNonCopperClear.py:190 +#: flatcamEditors/FlatCAMGeoEditor.py:470 flatcamGUI/FlatCAMGUI.py:5409 +#: flatcamGUI/FlatCAMGUI.py:5650 flatcamTools/ToolNonCopperClear.py:190 #: flatcamTools/ToolPaint.py:188 msgid "Method:" msgstr "Metoda:" -#: flatcamEditors/FlatCAMGeoEditor.py:472 flatcamGUI/FlatCAMGUI.py:5578 +#: flatcamEditors/FlatCAMGeoEditor.py:472 flatcamGUI/FlatCAMGUI.py:5652 msgid "" "Algorithm to paint the polygon:
Standard: Fixed step inwards." "
Seed-based: Outwards from seed." @@ -2208,29 +2205,14 @@ msgstr "" "Algoritm pentru a picta poligonul
Standard: Pas fix spre interior." "
Samanta: Spre exterior pornind de la un punct-samanta." -#: flatcamEditors/FlatCAMGeoEditor.py:478 flatcamGUI/FlatCAMGUI.py:5344 -#: flatcamGUI/FlatCAMGUI.py:5584 -msgid "Standard" -msgstr "Standard" - -#: flatcamEditors/FlatCAMGeoEditor.py:479 flatcamGUI/FlatCAMGUI.py:5345 -#: flatcamGUI/FlatCAMGUI.py:5585 -msgid "Seed-based" -msgstr "Punct-samanta" - -#: flatcamEditors/FlatCAMGeoEditor.py:480 flatcamGUI/FlatCAMGUI.py:5346 -#: flatcamGUI/FlatCAMGUI.py:5586 -msgid "Straight lines" -msgstr "Linii drepte" - -#: flatcamEditors/FlatCAMGeoEditor.py:485 flatcamGUI/FlatCAMGUI.py:5351 -#: flatcamGUI/FlatCAMGUI.py:5591 flatcamTools/ToolNonCopperClear.py:206 +#: flatcamEditors/FlatCAMGeoEditor.py:485 flatcamGUI/FlatCAMGUI.py:5425 +#: flatcamGUI/FlatCAMGUI.py:5665 flatcamTools/ToolNonCopperClear.py:206 #: flatcamTools/ToolPaint.py:204 msgid "Connect:" msgstr "Conectează:" -#: flatcamEditors/FlatCAMGeoEditor.py:487 flatcamGUI/FlatCAMGUI.py:5353 -#: flatcamGUI/FlatCAMGUI.py:5593 flatcamTools/ToolNonCopperClear.py:208 +#: flatcamEditors/FlatCAMGeoEditor.py:487 flatcamGUI/FlatCAMGUI.py:5427 +#: flatcamGUI/FlatCAMGUI.py:5667 flatcamTools/ToolNonCopperClear.py:208 #: flatcamTools/ToolPaint.py:206 msgid "" "Draw lines between resulting\n" @@ -2240,14 +2222,14 @@ msgstr "" "rezultate pentru a minimiza miscarile\n" "de ridicare a uneltei." -#: flatcamEditors/FlatCAMGeoEditor.py:494 flatcamGUI/FlatCAMGUI.py:5360 -#: flatcamGUI/FlatCAMGUI.py:5601 flatcamTools/ToolNonCopperClear.py:215 +#: flatcamEditors/FlatCAMGeoEditor.py:494 flatcamGUI/FlatCAMGUI.py:5434 +#: flatcamGUI/FlatCAMGUI.py:5675 flatcamTools/ToolNonCopperClear.py:215 #: flatcamTools/ToolPaint.py:213 msgid "Contour:" msgstr "Contur:" -#: flatcamEditors/FlatCAMGeoEditor.py:496 flatcamGUI/FlatCAMGUI.py:5362 -#: flatcamGUI/FlatCAMGUI.py:5603 flatcamTools/ToolNonCopperClear.py:217 +#: flatcamEditors/FlatCAMGeoEditor.py:496 flatcamGUI/FlatCAMGUI.py:5436 +#: flatcamGUI/FlatCAMGUI.py:5677 flatcamTools/ToolNonCopperClear.py:217 #: flatcamTools/ToolPaint.py:215 msgid "" "Cut around the perimeter of the polygon\n" @@ -2261,7 +2243,7 @@ msgid "Paint" msgstr "Pictează" #: flatcamEditors/FlatCAMGeoEditor.py:526 flatcamGUI/FlatCAMGUI.py:635 -#: flatcamGUI/FlatCAMGUI.py:1840 flatcamGUI/ObjectUI.py:1308 +#: flatcamGUI/FlatCAMGUI.py:1851 flatcamGUI/ObjectUI.py:1308 #: flatcamTools/ToolPaint.py:341 msgid "Paint Tool" msgstr "Unealta Paint" @@ -2296,62 +2278,62 @@ msgstr "" "incompatibil. Adaugă-o și reîncearcă." #: flatcamEditors/FlatCAMGeoEditor.py:605 -#: flatcamEditors/FlatCAMGeoEditor.py:2619 -#: flatcamEditors/FlatCAMGeoEditor.py:2645 -#: flatcamEditors/FlatCAMGeoEditor.py:2671 +#: flatcamEditors/FlatCAMGeoEditor.py:2634 +#: flatcamEditors/FlatCAMGeoEditor.py:2660 +#: flatcamEditors/FlatCAMGeoEditor.py:2686 #: flatcamTools/ToolNonCopperClear.py:813 flatcamTools/ToolProperties.py:104 msgid "Tools" msgstr "Unelte" #: flatcamEditors/FlatCAMGeoEditor.py:616 #: flatcamEditors/FlatCAMGeoEditor.py:989 -#: flatcamEditors/FlatCAMGrbEditor.py:3785 -#: flatcamEditors/FlatCAMGrbEditor.py:4169 flatcamGUI/FlatCAMGUI.py:644 -#: flatcamGUI/FlatCAMGUI.py:1851 flatcamTools/ToolTransform.py:398 +#: flatcamEditors/FlatCAMGrbEditor.py:3883 +#: flatcamEditors/FlatCAMGrbEditor.py:4267 flatcamGUI/FlatCAMGUI.py:646 +#: flatcamGUI/FlatCAMGUI.py:1864 flatcamTools/ToolTransform.py:398 msgid "Transform Tool" msgstr "Unealta Transformare" #: flatcamEditors/FlatCAMGeoEditor.py:617 #: flatcamEditors/FlatCAMGeoEditor.py:678 -#: flatcamEditors/FlatCAMGrbEditor.py:3786 -#: flatcamEditors/FlatCAMGrbEditor.py:3847 flatcamTools/ToolTransform.py:24 +#: flatcamEditors/FlatCAMGrbEditor.py:3884 +#: flatcamEditors/FlatCAMGrbEditor.py:3945 flatcamTools/ToolTransform.py:24 #: flatcamTools/ToolTransform.py:82 msgid "Rotate" msgstr "Rotaţie" #: flatcamEditors/FlatCAMGeoEditor.py:618 -#: flatcamEditors/FlatCAMGrbEditor.py:3787 flatcamTools/ToolTransform.py:25 +#: flatcamEditors/FlatCAMGrbEditor.py:3885 flatcamTools/ToolTransform.py:25 msgid "Skew/Shear" msgstr "Deformare" #: flatcamEditors/FlatCAMGeoEditor.py:619 -#: flatcamEditors/FlatCAMGrbEditor.py:1910 -#: flatcamEditors/FlatCAMGrbEditor.py:3788 flatcamGUI/FlatCAMGUI.py:708 -#: flatcamGUI/FlatCAMGUI.py:1912 flatcamGUI/ObjectUI.py:100 +#: flatcamEditors/FlatCAMGrbEditor.py:1920 +#: flatcamEditors/FlatCAMGrbEditor.py:3886 flatcamGUI/FlatCAMGUI.py:709 +#: flatcamGUI/FlatCAMGUI.py:1930 flatcamGUI/ObjectUI.py:100 #: flatcamTools/ToolTransform.py:26 msgid "Scale" msgstr "Scalare" #: flatcamEditors/FlatCAMGeoEditor.py:620 -#: flatcamEditors/FlatCAMGrbEditor.py:3789 flatcamTools/ToolTransform.py:27 +#: flatcamEditors/FlatCAMGrbEditor.py:3887 flatcamTools/ToolTransform.py:27 msgid "Mirror (Flip)" msgstr "Oglindire" #: flatcamEditors/FlatCAMGeoEditor.py:621 -#: flatcamEditors/FlatCAMGrbEditor.py:3790 flatcamGUI/ObjectUI.py:127 +#: flatcamEditors/FlatCAMGrbEditor.py:3888 flatcamGUI/ObjectUI.py:127 #: flatcamGUI/ObjectUI.py:888 flatcamGUI/ObjectUI.py:1446 #: flatcamTools/ToolTransform.py:28 msgid "Offset" msgstr "Ofset" #: flatcamEditors/FlatCAMGeoEditor.py:632 -#: flatcamEditors/FlatCAMGrbEditor.py:3801 +#: flatcamEditors/FlatCAMGrbEditor.py:3899 #, python-format msgid "Editor %s" msgstr "Editor %s" #: flatcamEditors/FlatCAMGeoEditor.py:666 -#: flatcamEditors/FlatCAMGrbEditor.py:3835 flatcamTools/ToolTransform.py:70 +#: flatcamEditors/FlatCAMGrbEditor.py:3933 flatcamTools/ToolTransform.py:70 msgid "" "Angle for Rotation action, in degrees.\n" "Float number between -360 and 359.\n" @@ -2363,7 +2345,7 @@ msgstr "" "Numerele negative inseamna o mișcare in sens invers ace ceasornic." #: flatcamEditors/FlatCAMGeoEditor.py:680 -#: flatcamEditors/FlatCAMGrbEditor.py:3849 +#: flatcamEditors/FlatCAMGrbEditor.py:3947 msgid "" "Rotate the selected shape(s).\n" "The point of reference is the middle of\n" @@ -2375,14 +2357,14 @@ msgstr "" "toate formele selectate." #: flatcamEditors/FlatCAMGeoEditor.py:703 -#: flatcamEditors/FlatCAMGrbEditor.py:3872 flatcamTools/ToolTransform.py:107 +#: flatcamEditors/FlatCAMGrbEditor.py:3970 flatcamTools/ToolTransform.py:107 msgid "Angle X:" msgstr "Unghi X:" #: flatcamEditors/FlatCAMGeoEditor.py:705 #: flatcamEditors/FlatCAMGeoEditor.py:723 -#: flatcamEditors/FlatCAMGrbEditor.py:3874 -#: flatcamEditors/FlatCAMGrbEditor.py:3892 flatcamTools/ToolTransform.py:109 +#: flatcamEditors/FlatCAMGrbEditor.py:3972 +#: flatcamEditors/FlatCAMGrbEditor.py:3990 flatcamTools/ToolTransform.py:109 #: flatcamTools/ToolTransform.py:127 msgid "" "Angle for Skew action, in degrees.\n" @@ -2392,14 +2374,14 @@ msgstr "" "Ia valori Reale între -360 and 359 grade." #: flatcamEditors/FlatCAMGeoEditor.py:714 -#: flatcamEditors/FlatCAMGrbEditor.py:3883 flatcamTools/ToolTransform.py:118 +#: flatcamEditors/FlatCAMGrbEditor.py:3981 flatcamTools/ToolTransform.py:118 msgid "Skew X" msgstr "Deformare X" #: flatcamEditors/FlatCAMGeoEditor.py:716 #: flatcamEditors/FlatCAMGeoEditor.py:734 -#: flatcamEditors/FlatCAMGrbEditor.py:3885 -#: flatcamEditors/FlatCAMGrbEditor.py:3903 +#: flatcamEditors/FlatCAMGrbEditor.py:3983 +#: flatcamEditors/FlatCAMGrbEditor.py:4001 msgid "" "Skew/shear the selected shape(s).\n" "The point of reference is the middle of\n" @@ -2411,34 +2393,34 @@ msgstr "" "toate formele selectate." #: flatcamEditors/FlatCAMGeoEditor.py:721 -#: flatcamEditors/FlatCAMGrbEditor.py:3890 flatcamTools/ToolTransform.py:125 +#: flatcamEditors/FlatCAMGrbEditor.py:3988 flatcamTools/ToolTransform.py:125 msgid "Angle Y:" msgstr "Unghi Y:" #: flatcamEditors/FlatCAMGeoEditor.py:732 -#: flatcamEditors/FlatCAMGrbEditor.py:3901 flatcamTools/ToolTransform.py:136 +#: flatcamEditors/FlatCAMGrbEditor.py:3999 flatcamTools/ToolTransform.py:136 msgid "Skew Y" msgstr "Deformare Y" #: flatcamEditors/FlatCAMGeoEditor.py:760 -#: flatcamEditors/FlatCAMGrbEditor.py:3929 flatcamTools/ToolTransform.py:164 +#: flatcamEditors/FlatCAMGrbEditor.py:4027 flatcamTools/ToolTransform.py:164 msgid "Factor X:" msgstr "Factor X:" #: flatcamEditors/FlatCAMGeoEditor.py:762 -#: flatcamEditors/FlatCAMGrbEditor.py:3931 flatcamTools/ToolTransform.py:166 +#: flatcamEditors/FlatCAMGrbEditor.py:4029 flatcamTools/ToolTransform.py:166 msgid "Factor for Scale action over X axis." msgstr "Factor pentru scalarea pe axa X" #: flatcamEditors/FlatCAMGeoEditor.py:770 -#: flatcamEditors/FlatCAMGrbEditor.py:3939 flatcamTools/ToolTransform.py:174 +#: flatcamEditors/FlatCAMGrbEditor.py:4037 flatcamTools/ToolTransform.py:174 msgid "Scale X" msgstr "Scalează X" #: flatcamEditors/FlatCAMGeoEditor.py:772 #: flatcamEditors/FlatCAMGeoEditor.py:789 -#: flatcamEditors/FlatCAMGrbEditor.py:3941 -#: flatcamEditors/FlatCAMGrbEditor.py:3958 +#: flatcamEditors/FlatCAMGrbEditor.py:4039 +#: flatcamEditors/FlatCAMGrbEditor.py:4056 msgid "" "Scale the selected shape(s).\n" "The point of reference depends on \n" @@ -2449,28 +2431,28 @@ msgstr "" "starea checkbox-ului >Referința scalare<." #: flatcamEditors/FlatCAMGeoEditor.py:777 -#: flatcamEditors/FlatCAMGrbEditor.py:3946 flatcamTools/ToolTransform.py:181 +#: flatcamEditors/FlatCAMGrbEditor.py:4044 flatcamTools/ToolTransform.py:181 msgid "Factor Y:" msgstr "Factor Y:" #: flatcamEditors/FlatCAMGeoEditor.py:779 -#: flatcamEditors/FlatCAMGrbEditor.py:3948 flatcamTools/ToolTransform.py:183 +#: flatcamEditors/FlatCAMGrbEditor.py:4046 flatcamTools/ToolTransform.py:183 msgid "Factor for Scale action over Y axis." msgstr "Factor pentru scalarea pe axa Y." #: flatcamEditors/FlatCAMGeoEditor.py:787 -#: flatcamEditors/FlatCAMGrbEditor.py:3956 flatcamTools/ToolTransform.py:191 +#: flatcamEditors/FlatCAMGrbEditor.py:4054 flatcamTools/ToolTransform.py:191 msgid "Scale Y" msgstr "Scalează Y" #: flatcamEditors/FlatCAMGeoEditor.py:796 -#: flatcamEditors/FlatCAMGrbEditor.py:3965 flatcamGUI/FlatCAMGUI.py:5950 +#: flatcamEditors/FlatCAMGrbEditor.py:4063 flatcamGUI/FlatCAMGUI.py:6024 #: flatcamTools/ToolTransform.py:200 msgid "Link" msgstr "Legatura" #: flatcamEditors/FlatCAMGeoEditor.py:798 -#: flatcamEditors/FlatCAMGrbEditor.py:3967 +#: flatcamEditors/FlatCAMGrbEditor.py:4065 msgid "" "Scale the selected shape(s)\n" "using the Scale Factor X for both axis." @@ -2479,13 +2461,13 @@ msgstr "" "folsoind factorul: Factor X pentru ambele axe." #: flatcamEditors/FlatCAMGeoEditor.py:804 -#: flatcamEditors/FlatCAMGrbEditor.py:3973 flatcamGUI/FlatCAMGUI.py:5958 +#: flatcamEditors/FlatCAMGrbEditor.py:4071 flatcamGUI/FlatCAMGUI.py:6032 #: flatcamTools/ToolTransform.py:208 msgid "Scale Reference" msgstr "Referința scalare" #: flatcamEditors/FlatCAMGeoEditor.py:806 -#: flatcamEditors/FlatCAMGrbEditor.py:3975 +#: flatcamEditors/FlatCAMGrbEditor.py:4073 msgid "" "Scale the selected shape(s)\n" "using the origin reference when checked,\n" @@ -2499,24 +2481,24 @@ msgstr "" "bifat și este originea când este bifat." #: flatcamEditors/FlatCAMGeoEditor.py:834 -#: flatcamEditors/FlatCAMGrbEditor.py:4004 flatcamTools/ToolTransform.py:238 +#: flatcamEditors/FlatCAMGrbEditor.py:4102 flatcamTools/ToolTransform.py:238 msgid "Value X:" msgstr "Valoare X:" #: flatcamEditors/FlatCAMGeoEditor.py:836 -#: flatcamEditors/FlatCAMGrbEditor.py:4006 flatcamTools/ToolTransform.py:240 +#: flatcamEditors/FlatCAMGrbEditor.py:4104 flatcamTools/ToolTransform.py:240 msgid "Value for Offset action on X axis." msgstr "Valoare pentru deplasarea pe axa X." #: flatcamEditors/FlatCAMGeoEditor.py:844 -#: flatcamEditors/FlatCAMGrbEditor.py:4014 flatcamTools/ToolTransform.py:248 +#: flatcamEditors/FlatCAMGrbEditor.py:4112 flatcamTools/ToolTransform.py:248 msgid "Offset X" msgstr "Ofset pe X" #: flatcamEditors/FlatCAMGeoEditor.py:846 #: flatcamEditors/FlatCAMGeoEditor.py:864 -#: flatcamEditors/FlatCAMGrbEditor.py:4016 -#: flatcamEditors/FlatCAMGrbEditor.py:4034 +#: flatcamEditors/FlatCAMGrbEditor.py:4114 +#: flatcamEditors/FlatCAMGrbEditor.py:4132 msgid "" "Offset the selected shape(s).\n" "The point of reference is the middle of\n" @@ -2528,29 +2510,29 @@ msgstr "" "toate formele selectate.\n" #: flatcamEditors/FlatCAMGeoEditor.py:852 -#: flatcamEditors/FlatCAMGrbEditor.py:4022 flatcamTools/ToolTransform.py:255 +#: flatcamEditors/FlatCAMGrbEditor.py:4120 flatcamTools/ToolTransform.py:255 msgid "Value Y:" msgstr "Valoare Y:" #: flatcamEditors/FlatCAMGeoEditor.py:854 -#: flatcamEditors/FlatCAMGrbEditor.py:4024 flatcamTools/ToolTransform.py:257 +#: flatcamEditors/FlatCAMGrbEditor.py:4122 flatcamTools/ToolTransform.py:257 msgid "Value for Offset action on Y axis." msgstr "Valoare pentru deplasarea pe axa Y." #: flatcamEditors/FlatCAMGeoEditor.py:862 -#: flatcamEditors/FlatCAMGrbEditor.py:4032 flatcamTools/ToolTransform.py:265 +#: flatcamEditors/FlatCAMGrbEditor.py:4130 flatcamTools/ToolTransform.py:265 msgid "Offset Y" msgstr "Ofset pe Y" #: flatcamEditors/FlatCAMGeoEditor.py:893 -#: flatcamEditors/FlatCAMGrbEditor.py:4063 flatcamTools/ToolTransform.py:295 +#: flatcamEditors/FlatCAMGrbEditor.py:4161 flatcamTools/ToolTransform.py:295 msgid "Flip on X" msgstr "Oglindește pe X" #: flatcamEditors/FlatCAMGeoEditor.py:895 #: flatcamEditors/FlatCAMGeoEditor.py:903 -#: flatcamEditors/FlatCAMGrbEditor.py:4065 -#: flatcamEditors/FlatCAMGrbEditor.py:4073 +#: flatcamEditors/FlatCAMGrbEditor.py:4163 +#: flatcamEditors/FlatCAMGrbEditor.py:4171 msgid "" "Flip the selected shape(s) over the X axis.\n" "Does not create a new shape." @@ -2559,17 +2541,17 @@ msgstr "" "Nu crează noi forme." #: flatcamEditors/FlatCAMGeoEditor.py:901 -#: flatcamEditors/FlatCAMGrbEditor.py:4071 flatcamTools/ToolTransform.py:303 +#: flatcamEditors/FlatCAMGrbEditor.py:4169 flatcamTools/ToolTransform.py:303 msgid "Flip on Y" msgstr "Oglindește pe Y" #: flatcamEditors/FlatCAMGeoEditor.py:910 -#: flatcamEditors/FlatCAMGrbEditor.py:4080 flatcamTools/ToolTransform.py:312 +#: flatcamEditors/FlatCAMGrbEditor.py:4178 flatcamTools/ToolTransform.py:312 msgid "Ref Pt" msgstr "Pt ref" #: flatcamEditors/FlatCAMGeoEditor.py:912 -#: flatcamEditors/FlatCAMGrbEditor.py:4082 +#: flatcamEditors/FlatCAMGrbEditor.py:4180 msgid "" "Flip the selected shape(s)\n" "around the point in Point Entry Field.\n" @@ -2593,12 +2575,12 @@ msgstr "" "La final click pe >Oglindește pe X(Y)<." #: flatcamEditors/FlatCAMGeoEditor.py:924 -#: flatcamEditors/FlatCAMGrbEditor.py:4094 flatcamTools/ToolTransform.py:325 +#: flatcamEditors/FlatCAMGrbEditor.py:4192 flatcamTools/ToolTransform.py:325 msgid "Point:" msgstr "Punct:" #: flatcamEditors/FlatCAMGeoEditor.py:926 -#: flatcamEditors/FlatCAMGrbEditor.py:4096 +#: flatcamEditors/FlatCAMGrbEditor.py:4194 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" @@ -2608,18 +2590,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:936 -#: flatcamEditors/FlatCAMGrbEditor.py:1820 -#: flatcamEditors/FlatCAMGrbEditor.py:4106 flatcamGUI/ObjectUI.py:988 -#: flatcamTools/ToolDblSided.py:160 flatcamTools/ToolDblSided.py:208 -#: flatcamTools/ToolNonCopperClear.py:134 flatcamTools/ToolPaint.py:131 -#: flatcamTools/ToolSolderPaste.py:115 flatcamTools/ToolSolderPaste.py:479 -#: flatcamTools/ToolTransform.py:337 -msgid "Add" -msgstr "Adaugă" - #: flatcamEditors/FlatCAMGeoEditor.py:938 -#: flatcamEditors/FlatCAMGrbEditor.py:4108 flatcamTools/ToolTransform.py:339 +#: flatcamEditors/FlatCAMGrbEditor.py:4206 flatcamTools/ToolTransform.py:339 msgid "" "The point coordinates can be captured by\n" "left click on canvas together with pressing\n" @@ -2631,270 +2603,270 @@ msgstr "" "La final, apasa butonul >Adaugă< pt a le insera." #: flatcamEditors/FlatCAMGeoEditor.py:1053 -#: flatcamEditors/FlatCAMGrbEditor.py:4233 +#: flatcamEditors/FlatCAMGrbEditor.py:4331 msgid "[WARNING_NOTCL] Transformation cancelled. No shape selected." msgstr "[WARNING_NOTCL] Transformare anulata. Nici-o forma nu este selectată." #: flatcamEditors/FlatCAMGeoEditor.py:1074 -#: flatcamEditors/FlatCAMGrbEditor.py:4253 flatcamTools/ToolTransform.py:468 +#: flatcamEditors/FlatCAMGrbEditor.py:4351 flatcamTools/ToolTransform.py:468 msgid "[ERROR_NOTCL] Wrong value format entered for Rotate, use a number." msgstr "" "[ERROR_NOTCL] Valoare incorecta intodusa pentru Rotaţie, foloseşte un număr " "Real." #: flatcamEditors/FlatCAMGeoEditor.py:1111 -#: flatcamEditors/FlatCAMGrbEditor.py:4290 flatcamTools/ToolTransform.py:502 +#: flatcamEditors/FlatCAMGrbEditor.py:4388 flatcamTools/ToolTransform.py:502 msgid "[ERROR_NOTCL] Wrong value format entered for Skew X, use a number." msgstr "" "[ERROR_NOTCL] Valoare incorecta intodusa pentru Deformare X, foloseşte un " "număr Real." #: flatcamEditors/FlatCAMGeoEditor.py:1132 -#: flatcamEditors/FlatCAMGrbEditor.py:4311 flatcamTools/ToolTransform.py:520 +#: flatcamEditors/FlatCAMGrbEditor.py:4409 flatcamTools/ToolTransform.py:520 msgid "[ERROR_NOTCL] Wrong value format entered for Skew Y, use a number." msgstr "" "[ERROR_NOTCL] Valoare incorecta intodusa pentru Deformare Y, foloseşte un " "număr Real." #: flatcamEditors/FlatCAMGeoEditor.py:1153 -#: flatcamEditors/FlatCAMGrbEditor.py:4332 flatcamTools/ToolTransform.py:538 +#: flatcamEditors/FlatCAMGrbEditor.py:4430 flatcamTools/ToolTransform.py:538 msgid "[ERROR_NOTCL] Wrong value format entered for Scale X, use a number." msgstr "" "[ERROR_NOTCL] Valoare incorecta intodusa pentru Scalare X, foloseşte un " "număr Real." #: flatcamEditors/FlatCAMGeoEditor.py:1190 -#: flatcamEditors/FlatCAMGrbEditor.py:4369 flatcamTools/ToolTransform.py:572 +#: flatcamEditors/FlatCAMGrbEditor.py:4467 flatcamTools/ToolTransform.py:572 msgid "[ERROR_NOTCL] Wrong value format entered for Scale Y, use a number." msgstr "" "[ERROR_NOTCL] Valoare incorecta intodusa pentru Scalare Y, foloseşte un " "număr Real." #: flatcamEditors/FlatCAMGeoEditor.py:1222 -#: flatcamEditors/FlatCAMGrbEditor.py:4401 flatcamTools/ToolTransform.py:601 +#: flatcamEditors/FlatCAMGrbEditor.py:4499 flatcamTools/ToolTransform.py:601 msgid "[ERROR_NOTCL] Wrong value format entered for Offset X, use a number." msgstr "" "[ERROR_NOTCL] Valoare incorecta intodusa pentru Ofset pe X, foloseşte un " "număr Real." #: flatcamEditors/FlatCAMGeoEditor.py:1243 -#: flatcamEditors/FlatCAMGrbEditor.py:4422 flatcamTools/ToolTransform.py:619 +#: flatcamEditors/FlatCAMGrbEditor.py:4520 flatcamTools/ToolTransform.py:619 msgid "[ERROR_NOTCL] Wrong value format entered for Offset Y, use a number." msgstr "" "[ERROR_NOTCL] Valoare incorecta intodusa pentru Ofset pe Y, foloseşte un " "număr Real." #: flatcamEditors/FlatCAMGeoEditor.py:1261 -#: flatcamEditors/FlatCAMGrbEditor.py:4440 +#: flatcamEditors/FlatCAMGrbEditor.py:4538 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:1264 -#: flatcamEditors/FlatCAMGrbEditor.py:4443 flatcamTools/ToolTransform.py:640 +#: flatcamEditors/FlatCAMGrbEditor.py:4541 flatcamTools/ToolTransform.py:640 msgid "Appying Rotate" msgstr "Execuţie Rotaţie" #: flatcamEditors/FlatCAMGeoEditor.py:1292 -#: flatcamEditors/FlatCAMGrbEditor.py:4471 +#: flatcamEditors/FlatCAMGrbEditor.py:4569 msgid "[success] Done. Rotate completed." msgstr "[success] Executat. Rotaţie finalizata." #: flatcamEditors/FlatCAMGeoEditor.py:1308 -#: flatcamEditors/FlatCAMGrbEditor.py:4487 +#: flatcamEditors/FlatCAMGrbEditor.py:4585 msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to flip!" msgstr "" "[WARNING_NOTCL] Nici-o forma nu este selectată. Selectează o forma pentru a " "putea face Oglindire!" #: flatcamEditors/FlatCAMGeoEditor.py:1311 -#: flatcamEditors/FlatCAMGrbEditor.py:4490 flatcamTools/ToolTransform.py:692 +#: flatcamEditors/FlatCAMGrbEditor.py:4588 flatcamTools/ToolTransform.py:692 msgid "Applying Flip" msgstr "Execuţie Oglindire" #: flatcamEditors/FlatCAMGeoEditor.py:1341 -#: flatcamEditors/FlatCAMGrbEditor.py:4520 flatcamTools/ToolTransform.py:735 +#: flatcamEditors/FlatCAMGrbEditor.py:4618 flatcamTools/ToolTransform.py:735 msgid "[success] Flip on the Y axis done ..." msgstr "Oglindirea pe axa X efectuata ..." #: flatcamEditors/FlatCAMGeoEditor.py:1344 -#: flatcamEditors/FlatCAMGrbEditor.py:4523 flatcamTools/ToolTransform.py:745 +#: flatcamEditors/FlatCAMGrbEditor.py:4621 flatcamTools/ToolTransform.py:745 msgid "[success] Flip on the X axis done ..." msgstr "Oglindirea pe axa Y efectuata ..." #: flatcamEditors/FlatCAMGeoEditor.py:1363 -#: flatcamEditors/FlatCAMGrbEditor.py:4542 +#: flatcamEditors/FlatCAMGrbEditor.py:4640 msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to shear/skew!" msgstr "" "[WARNING_NOTCL] Nici-o forma nu este selectată. Selectează o forma pentru a " "putea face Deformare!" #: flatcamEditors/FlatCAMGeoEditor.py:1366 -#: flatcamEditors/FlatCAMGrbEditor.py:4545 flatcamTools/ToolTransform.py:762 +#: flatcamEditors/FlatCAMGrbEditor.py:4643 flatcamTools/ToolTransform.py:762 msgid "Applying Skew" msgstr "Execuţie Deformare" #: flatcamEditors/FlatCAMGeoEditor.py:1391 -#: flatcamEditors/FlatCAMGrbEditor.py:4570 flatcamTools/ToolTransform.py:793 +#: flatcamEditors/FlatCAMGrbEditor.py:4668 flatcamTools/ToolTransform.py:793 #, python-format msgid "[success] Skew on the %s axis done ..." msgstr "[success] Deformarea pe axa %s executată ..." #: flatcamEditors/FlatCAMGeoEditor.py:1395 -#: flatcamEditors/FlatCAMGrbEditor.py:4574 flatcamTools/ToolTransform.py:797 +#: flatcamEditors/FlatCAMGrbEditor.py:4672 flatcamTools/ToolTransform.py:797 #, python-format msgid "[ERROR_NOTCL] Due of %s, Skew action was not executed." msgstr "[ERROR_NOTCL] Datorita erorii: %s, Deformarea a fost anulata." #: flatcamEditors/FlatCAMGeoEditor.py:1406 -#: flatcamEditors/FlatCAMGrbEditor.py:4585 +#: flatcamEditors/FlatCAMGrbEditor.py:4683 msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to scale!" msgstr "" "[WARNING_NOTCL] Nici-o forma nu este selectată. Selectează o forma pentru a " "putea face Scalare!" #: flatcamEditors/FlatCAMGeoEditor.py:1409 -#: flatcamEditors/FlatCAMGrbEditor.py:4588 flatcamTools/ToolTransform.py:811 +#: flatcamEditors/FlatCAMGrbEditor.py:4686 flatcamTools/ToolTransform.py:811 msgid "Applying Scale" msgstr "Execuţie Scalare" #: flatcamEditors/FlatCAMGeoEditor.py:1442 -#: flatcamEditors/FlatCAMGrbEditor.py:4621 flatcamTools/ToolTransform.py:849 +#: flatcamEditors/FlatCAMGrbEditor.py:4719 flatcamTools/ToolTransform.py:849 #, python-format msgid "[success] Scale on the %s axis done ..." msgstr "[success] Scalarea pe axa %s executată ..." #: flatcamEditors/FlatCAMGeoEditor.py:1445 -#: flatcamEditors/FlatCAMGrbEditor.py:4624 flatcamTools/ToolTransform.py:852 +#: flatcamEditors/FlatCAMGrbEditor.py:4722 flatcamTools/ToolTransform.py:852 #, python-format msgid "[ERROR_NOTCL] Due of %s, Scale action was not executed." msgstr "[ERROR_NOTCL] Datorita erorii: %s, Scalarea a fost anulata ..." #: flatcamEditors/FlatCAMGeoEditor.py:1454 -#: flatcamEditors/FlatCAMGrbEditor.py:4633 +#: flatcamEditors/FlatCAMGrbEditor.py:4731 msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to offset!" msgstr "" "[WARNING_NOTCL] Nici-o forma nu este selectată. Selectează o forma pentru a " "putea face Ofset!" #: flatcamEditors/FlatCAMGeoEditor.py:1457 -#: flatcamEditors/FlatCAMGrbEditor.py:4636 flatcamTools/ToolTransform.py:864 +#: flatcamEditors/FlatCAMGrbEditor.py:4734 flatcamTools/ToolTransform.py:864 msgid "Applying Offset" msgstr "Execuţie Ofset" #: flatcamEditors/FlatCAMGeoEditor.py:1481 -#: flatcamEditors/FlatCAMGrbEditor.py:4660 flatcamTools/ToolTransform.py:894 +#: flatcamEditors/FlatCAMGrbEditor.py:4758 flatcamTools/ToolTransform.py:894 #, python-format msgid "[success] Offset on the %s axis done ..." msgstr "[success] Deplasarea pe axa %s executată ..." #: flatcamEditors/FlatCAMGeoEditor.py:1485 -#: flatcamEditors/FlatCAMGrbEditor.py:4664 flatcamTools/ToolTransform.py:898 +#: flatcamEditors/FlatCAMGrbEditor.py:4762 flatcamTools/ToolTransform.py:898 #, python-format msgid "[ERROR_NOTCL] Due of %s, Offset action was not executed." msgstr "[ERROR_NOTCL] Datorita erorii: %s, Deplasarea a fost anulata." #: flatcamEditors/FlatCAMGeoEditor.py:1489 -#: flatcamEditors/FlatCAMGrbEditor.py:4668 +#: flatcamEditors/FlatCAMGrbEditor.py:4766 msgid "Rotate ..." msgstr "Rotaţie ..." #: flatcamEditors/FlatCAMGeoEditor.py:1490 #: flatcamEditors/FlatCAMGeoEditor.py:1547 #: flatcamEditors/FlatCAMGeoEditor.py:1564 -#: flatcamEditors/FlatCAMGrbEditor.py:4669 -#: flatcamEditors/FlatCAMGrbEditor.py:4726 -#: flatcamEditors/FlatCAMGrbEditor.py:4743 +#: flatcamEditors/FlatCAMGrbEditor.py:4767 +#: flatcamEditors/FlatCAMGrbEditor.py:4824 +#: flatcamEditors/FlatCAMGrbEditor.py:4841 msgid "Enter an Angle Value (degrees):" msgstr "Introdu o valoare in grade pt Unghi:" #: flatcamEditors/FlatCAMGeoEditor.py:1499 -#: flatcamEditors/FlatCAMGrbEditor.py:4678 +#: flatcamEditors/FlatCAMGrbEditor.py:4776 msgid "[success] Geometry shape rotate done..." msgstr "[success] Rotatia formei geometrice executată ..." #: flatcamEditors/FlatCAMGeoEditor.py:1504 -#: flatcamEditors/FlatCAMGrbEditor.py:4683 +#: flatcamEditors/FlatCAMGrbEditor.py:4781 msgid "[WARNING_NOTCL] Geometry shape rotate cancelled..." msgstr "[WARNING_NOTCL] Rotatia formei geometrice anulata ..." #: flatcamEditors/FlatCAMGeoEditor.py:1510 -#: flatcamEditors/FlatCAMGrbEditor.py:4689 +#: flatcamEditors/FlatCAMGrbEditor.py:4787 msgid "Offset on X axis ..." msgstr "Ofset pe axa X ..." #: flatcamEditors/FlatCAMGeoEditor.py:1511 #: flatcamEditors/FlatCAMGeoEditor.py:1530 -#: flatcamEditors/FlatCAMGrbEditor.py:4690 -#: flatcamEditors/FlatCAMGrbEditor.py:4709 +#: flatcamEditors/FlatCAMGrbEditor.py:4788 +#: flatcamEditors/FlatCAMGrbEditor.py:4807 #, python-format msgid "Enter a distance Value (%s):" msgstr "Introdu of valoare pt Distanta (%s):" #: flatcamEditors/FlatCAMGeoEditor.py:1520 -#: flatcamEditors/FlatCAMGrbEditor.py:4699 +#: flatcamEditors/FlatCAMGrbEditor.py:4797 msgid "[success] Geometry shape offset on X axis done..." msgstr "[success] Deplasarea formei geometrice pe axa X executată ..." #: flatcamEditors/FlatCAMGeoEditor.py:1524 -#: flatcamEditors/FlatCAMGrbEditor.py:4703 +#: flatcamEditors/FlatCAMGrbEditor.py:4801 msgid "[WARNING_NOTCL] Geometry shape offset X cancelled..." msgstr "[WARNING_NOTCL] Deplasarea formei geometrice pe axa X anulata ..." #: flatcamEditors/FlatCAMGeoEditor.py:1529 -#: flatcamEditors/FlatCAMGrbEditor.py:4708 +#: flatcamEditors/FlatCAMGrbEditor.py:4806 msgid "Offset on Y axis ..." msgstr "Ofset pe axa Y ..." #: flatcamEditors/FlatCAMGeoEditor.py:1539 -#: flatcamEditors/FlatCAMGrbEditor.py:4718 +#: flatcamEditors/FlatCAMGrbEditor.py:4816 msgid "[success] Geometry shape offset on Y axis done..." msgstr "[success] Deplasarea formei geometrice pe axa Y executată ..." #: flatcamEditors/FlatCAMGeoEditor.py:1543 -#: flatcamEditors/FlatCAMGrbEditor.py:4722 +#: flatcamEditors/FlatCAMGrbEditor.py:4820 msgid "[WARNING_NOTCL] Geometry shape offset Y cancelled..." msgstr "[WARNING_NOTCL] Deplasarea formei geometrice pe axa Y anulata ..." #: flatcamEditors/FlatCAMGeoEditor.py:1546 -#: flatcamEditors/FlatCAMGrbEditor.py:4725 +#: flatcamEditors/FlatCAMGrbEditor.py:4823 msgid "Skew on X axis ..." msgstr "Deformare pe axa X ..." #: flatcamEditors/FlatCAMGeoEditor.py:1556 -#: flatcamEditors/FlatCAMGrbEditor.py:4735 +#: flatcamEditors/FlatCAMGrbEditor.py:4833 msgid "[success] Geometry shape skew on X axis done..." msgstr "[success] Deformarea formei geometrice pe axa X executată ..." #: flatcamEditors/FlatCAMGeoEditor.py:1560 -#: flatcamEditors/FlatCAMGrbEditor.py:4739 +#: flatcamEditors/FlatCAMGrbEditor.py:4837 msgid "[WARNING_NOTCL] Geometry shape skew X cancelled..." msgstr "[WARNING_NOTCL] Deformarea formei geometrice pe axa X anulata ..." #: flatcamEditors/FlatCAMGeoEditor.py:1563 -#: flatcamEditors/FlatCAMGrbEditor.py:4742 +#: flatcamEditors/FlatCAMGrbEditor.py:4840 msgid "Skew on Y axis ..." msgstr "Deformare pe axa Y ..." #: flatcamEditors/FlatCAMGeoEditor.py:1573 -#: flatcamEditors/FlatCAMGrbEditor.py:4752 +#: flatcamEditors/FlatCAMGrbEditor.py:4850 msgid "[success] Geometry shape skew on Y axis done..." msgstr "[success] Deformarea formei geometrice pe axa Y executată ..." #: flatcamEditors/FlatCAMGeoEditor.py:1577 -#: flatcamEditors/FlatCAMGrbEditor.py:4756 +#: flatcamEditors/FlatCAMGrbEditor.py:4854 msgid "[WARNING_NOTCL] Geometry shape skew Y cancelled..." msgstr "[success] Deformarea formei geometrice pe axa Y executată ..." #: flatcamEditors/FlatCAMGeoEditor.py:1942 #: flatcamEditors/FlatCAMGeoEditor.py:1943 -#: flatcamEditors/FlatCAMGeoEditor.py:1987 -#: flatcamEditors/FlatCAMGeoEditor.py:1988 +#: flatcamEditors/FlatCAMGeoEditor.py:1994 +#: flatcamEditors/FlatCAMGeoEditor.py:1995 #: flatcamEditors/FlatCAMGrbEditor.py:1081 #: flatcamEditors/FlatCAMGrbEditor.py:1082 -#: flatcamEditors/FlatCAMGrbEditor.py:1135 -#: flatcamEditors/FlatCAMGrbEditor.py:1136 +#: flatcamEditors/FlatCAMGrbEditor.py:1142 +#: flatcamEditors/FlatCAMGrbEditor.py:1143 msgid "Click on Center point ..." msgstr "Click pe punctul de Centru ..." @@ -2907,75 +2879,75 @@ msgstr "Click pe un punct aflat pe Circumferintă pentru terminare ..." msgid "[success] Done. Adding Circle completed." msgstr "[success] Executat. Adaugarea unei forme Cerc terminata." -#: flatcamEditors/FlatCAMGeoEditor.py:2008 -#: flatcamEditors/FlatCAMGrbEditor.py:1161 +#: flatcamEditors/FlatCAMGeoEditor.py:2015 +#: flatcamEditors/FlatCAMGrbEditor.py:1168 msgid "Click on Start point ..." msgstr "Click pe punctul de Start ..." -#: flatcamEditors/FlatCAMGeoEditor.py:2010 -#: flatcamEditors/FlatCAMGrbEditor.py:1163 +#: flatcamEditors/FlatCAMGeoEditor.py:2017 +#: flatcamEditors/FlatCAMGrbEditor.py:1170 msgid "Click on Point3 ..." msgstr "Click pe Punctul3 ..." -#: flatcamEditors/FlatCAMGeoEditor.py:2012 -#: flatcamEditors/FlatCAMGrbEditor.py:1165 +#: flatcamEditors/FlatCAMGeoEditor.py:2019 +#: flatcamEditors/FlatCAMGrbEditor.py:1172 msgid "Click on Stop point ..." msgstr "Click pe punctulde Stop ..." -#: flatcamEditors/FlatCAMGeoEditor.py:2017 -#: flatcamEditors/FlatCAMGrbEditor.py:1170 +#: flatcamEditors/FlatCAMGeoEditor.py:2024 +#: flatcamEditors/FlatCAMGrbEditor.py:1177 msgid "Click on Stop point to complete ..." msgstr "Click pe punctul de Stop pentru terminare ..." -#: flatcamEditors/FlatCAMGeoEditor.py:2019 -#: flatcamEditors/FlatCAMGrbEditor.py:1172 +#: flatcamEditors/FlatCAMGeoEditor.py:2026 +#: flatcamEditors/FlatCAMGrbEditor.py:1179 msgid "Click on Point2 to complete ..." msgstr "Click pe Punctul2 pentru terminare ..." -#: flatcamEditors/FlatCAMGeoEditor.py:2021 -#: flatcamEditors/FlatCAMGrbEditor.py:1174 +#: flatcamEditors/FlatCAMGeoEditor.py:2028 +#: flatcamEditors/FlatCAMGrbEditor.py:1181 msgid "Click on Center point to complete ..." msgstr "Click pe punctul de Centru pentru terminare ..." -#: flatcamEditors/FlatCAMGeoEditor.py:2033 -#: flatcamEditors/FlatCAMGrbEditor.py:1186 +#: flatcamEditors/FlatCAMGeoEditor.py:2040 +#: flatcamEditors/FlatCAMGrbEditor.py:1193 #, python-format msgid "Direction: %s" msgstr "Direcţie: %s" -#: flatcamEditors/FlatCAMGeoEditor.py:2043 -#: flatcamEditors/FlatCAMGrbEditor.py:1196 +#: flatcamEditors/FlatCAMGeoEditor.py:2050 +#: flatcamEditors/FlatCAMGrbEditor.py:1203 msgid "Mode: Start -> Stop -> Center. Click on Start point ..." msgstr "Mod: Start -> Stop -> Centru. Click pe punctul de Start ..." -#: flatcamEditors/FlatCAMGeoEditor.py:2046 -#: flatcamEditors/FlatCAMGrbEditor.py:1199 +#: flatcamEditors/FlatCAMGeoEditor.py:2053 +#: flatcamEditors/FlatCAMGrbEditor.py:1206 msgid "Mode: Point1 -> Point3 -> Point2. Click on Point1 ..." msgstr "Mod: Point1 -> Point3 -> Point2. Click pe Punctul1 ..." -#: flatcamEditors/FlatCAMGeoEditor.py:2049 -#: flatcamEditors/FlatCAMGrbEditor.py:1202 +#: flatcamEditors/FlatCAMGeoEditor.py:2056 +#: flatcamEditors/FlatCAMGrbEditor.py:1209 msgid "Mode: Center -> Start -> Stop. Click on Center point ..." msgstr "Mod: Center -> Start -> Stop. Click pe punctul de Centru ..." -#: flatcamEditors/FlatCAMGeoEditor.py:2187 +#: flatcamEditors/FlatCAMGeoEditor.py:2194 msgid "[success] Done. Arc completed." msgstr "[success] Executat. Adaugarea unei forme Arc terminata." -#: flatcamEditors/FlatCAMGeoEditor.py:2206 +#: flatcamEditors/FlatCAMGeoEditor.py:2213 msgid "Click on 1st corner ..." msgstr "Click pe primul colt ..." -#: flatcamEditors/FlatCAMGeoEditor.py:2239 +#: flatcamEditors/FlatCAMGeoEditor.py:2246 msgid "[success] Done. Rectangle completed." msgstr "[success] Executat. Rotaţie finalizata." -#: flatcamEditors/FlatCAMGeoEditor.py:2258 +#: flatcamEditors/FlatCAMGeoEditor.py:2265 #: flatcamEditors/FlatCAMGrbEditor.py:627 msgid "Click on 1st point ..." msgstr "Click pe primul punct ..." -#: flatcamEditors/FlatCAMGeoEditor.py:2265 +#: flatcamEditors/FlatCAMGeoEditor.py:2272 #: flatcamEditors/FlatCAMGrbEditor.py:637 #: flatcamEditors/FlatCAMGrbEditor.py:904 msgid "Click on next Point or click Right mouse button to complete ..." @@ -2983,47 +2955,47 @@ msgstr "" "Click pe punctul următor sau click buton dreapta al mousului pentru " "terminare ..." -#: flatcamEditors/FlatCAMGeoEditor.py:2293 +#: flatcamEditors/FlatCAMGeoEditor.py:2300 msgid "[success] Done. Polygon completed." msgstr "[success] Executat. Adaugarea unei forme Poligon terminata." -#: flatcamEditors/FlatCAMGeoEditor.py:2303 -#: flatcamEditors/FlatCAMGeoEditor.py:2349 +#: flatcamEditors/FlatCAMGeoEditor.py:2310 +#: flatcamEditors/FlatCAMGeoEditor.py:2356 #: flatcamEditors/FlatCAMGrbEditor.py:808 #: flatcamEditors/FlatCAMGrbEditor.py:981 msgid "Backtracked one point ..." msgstr "Revenit la penultimul Punct ..." -#: flatcamEditors/FlatCAMGeoEditor.py:2331 +#: flatcamEditors/FlatCAMGeoEditor.py:2338 msgid "[success] Done. Path completed." msgstr "[success] Executata. Adaugarea unei forme tip Cale terminata." -#: flatcamEditors/FlatCAMGeoEditor.py:2443 -#: flatcamEditors/FlatCAMGeoEditor.py:3539 +#: flatcamEditors/FlatCAMGeoEditor.py:2450 +#: flatcamEditors/FlatCAMGeoEditor.py:3611 msgid "[WARNING_NOTCL] Move cancelled. No shape selected." msgstr "[WARNING_NOTCL] Mutare anulata. Nici-o forma nu este selectată." -#: flatcamEditors/FlatCAMGeoEditor.py:2447 +#: flatcamEditors/FlatCAMGeoEditor.py:2454 msgid "Click on reference point." msgstr "Click pe punctul de referinţă." -#: flatcamEditors/FlatCAMGeoEditor.py:2450 +#: flatcamEditors/FlatCAMGeoEditor.py:2457 msgid "Click on destination point." msgstr "Click pe punctul de Destinaţie." -#: flatcamEditors/FlatCAMGeoEditor.py:2481 +#: flatcamEditors/FlatCAMGeoEditor.py:2488 msgid "[success] Done. Geometry(s) Move completed." msgstr "[success] Executat. Mutarea Geometriilor terminata." -#: flatcamEditors/FlatCAMGeoEditor.py:2526 +#: flatcamEditors/FlatCAMGeoEditor.py:2533 msgid "[success] Done. Geometry(s) Copy completed." msgstr "[success] Executat. Copierea Geometriilor terminata." -#: flatcamEditors/FlatCAMGeoEditor.py:2538 +#: flatcamEditors/FlatCAMGeoEditor.py:2553 msgid "Click on the Destination point..." msgstr "Click pe punctul de Destinaţie ..." -#: flatcamEditors/FlatCAMGeoEditor.py:2552 +#: flatcamEditors/FlatCAMGeoEditor.py:2567 #, python-format msgid "" "[ERROR]Font not supported. Only Regular, Bold, Italic and BoldItalic are " @@ -3032,64 +3004,65 @@ msgstr "" "[ERROR] Fontul nu este compatibil. Doar cele tip: Regular, Bold, Italic și " "BoldItalic sunt acceptate. Eroarea:: %s" -#: flatcamEditors/FlatCAMGeoEditor.py:2562 +#: flatcamEditors/FlatCAMGeoEditor.py:2577 msgid "[success] Done. Adding Text completed." msgstr "[success] Executat. Adaugarea de Text terminata." -#: flatcamEditors/FlatCAMGeoEditor.py:2590 +#: flatcamEditors/FlatCAMGeoEditor.py:2605 msgid "Create buffer geometry ..." msgstr "Crează o geometrie de tipe Bufer ..." -#: flatcamEditors/FlatCAMGeoEditor.py:2601 -#: flatcamEditors/FlatCAMGeoEditor.py:2627 -#: flatcamEditors/FlatCAMGeoEditor.py:2653 +#: flatcamEditors/FlatCAMGeoEditor.py:2616 +#: flatcamEditors/FlatCAMGeoEditor.py:2642 +#: flatcamEditors/FlatCAMGeoEditor.py:2668 msgid "[WARNING_NOTCL] Buffer cancelled. No shape selected." msgstr "" "[WARNING_NOTCL] Crearea de geometrie Bufer anulata. Nici-o forma geometrică " "nu este selectată." -#: flatcamEditors/FlatCAMGeoEditor.py:2623 -#: flatcamEditors/FlatCAMGrbEditor.py:3709 +#: flatcamEditors/FlatCAMGeoEditor.py:2638 +#: flatcamEditors/FlatCAMGrbEditor.py:3807 msgid "[success] Done. Buffer Tool completed." msgstr "[success] Executat. Unealta Bufer terminat." -#: flatcamEditors/FlatCAMGeoEditor.py:2649 +#: flatcamEditors/FlatCAMGeoEditor.py:2664 msgid "[success] Done. Buffer Int Tool completed." msgstr "[success] Executat. Unealta Bufer Intern terminat." -#: flatcamEditors/FlatCAMGeoEditor.py:2675 +#: flatcamEditors/FlatCAMGeoEditor.py:2690 msgid "[success] Done. Buffer Ext Tool completed." msgstr "[success] Executat. Unealta Bufer Extern terminat." -#: flatcamEditors/FlatCAMGeoEditor.py:2708 +#: flatcamEditors/FlatCAMGeoEditor.py:2723 msgid "Create Paint geometry ..." msgstr "Crează o geometrie Paint ..." -#: flatcamEditors/FlatCAMGeoEditor.py:2722 -#: flatcamEditors/FlatCAMGrbEditor.py:1657 +#: flatcamEditors/FlatCAMGeoEditor.py:2737 +#: flatcamEditors/FlatCAMGrbEditor.py:1667 msgid "Shape transformations ..." msgstr "Transformări de forme geometrice ..." -#: flatcamEditors/FlatCAMGeoEditor.py:3174 +#: flatcamEditors/FlatCAMGeoEditor.py:3237 #, python-brace-format msgid "[WARNING] Editing MultiGeo Geometry, tool: {tool} with diameter: {dia}" msgstr "" "[WARNING] Se editeaza un obiect tip Geometrie MultiGeo , unealta: {tool} cu " "diametrul: {dia}" -#: flatcamEditors/FlatCAMGeoEditor.py:3546 +#: flatcamEditors/FlatCAMGeoEditor.py:3618 msgid "[WARNING_NOTCL] Copy cancelled. No shape selected." msgstr "" "[WARNING_NOTCL] Copiere anulata. Nici-o forma geometrică nu este selectată." -#: flatcamEditors/FlatCAMGeoEditor.py:3553 flatcamGUI/FlatCAMGUI.py:2686 -#: flatcamGUI/FlatCAMGUI.py:2732 flatcamGUI/FlatCAMGUI.py:2750 -#: flatcamGUI/FlatCAMGUI.py:2881 flatcamGUI/FlatCAMGUI.py:2893 -#: flatcamGUI/FlatCAMGUI.py:2927 +#: flatcamEditors/FlatCAMGeoEditor.py:3625 flatcamGUI/FlatCAMGUI.py:2710 +#: flatcamGUI/FlatCAMGUI.py:2756 flatcamGUI/FlatCAMGUI.py:2774 +#: flatcamGUI/FlatCAMGUI.py:2905 flatcamGUI/FlatCAMGUI.py:2917 +#: flatcamGUI/FlatCAMGUI.py:2951 msgid "Click on target point." msgstr "Click pe punctul tinta." -#: flatcamEditors/FlatCAMGeoEditor.py:3796 +#: flatcamEditors/FlatCAMGeoEditor.py:3868 +#: flatcamEditors/FlatCAMGeoEditor.py:3902 msgid "" "[WARNING_NOTCL] A selection of at least 2 geo items is required to do " "Intersection." @@ -3097,9 +3070,9 @@ msgstr "" "[WARNING_NOTCL] Cel puțin o selecţie de doua forme geometrice este necesară " "pentru a face o Intersecţie." -#: flatcamEditors/FlatCAMGeoEditor.py:3834 -#: flatcamEditors/FlatCAMGeoEditor.py:3871 -#: flatcamEditors/FlatCAMGeoEditor.py:3947 +#: flatcamEditors/FlatCAMGeoEditor.py:3986 +#: flatcamEditors/FlatCAMGeoEditor.py:4023 +#: flatcamEditors/FlatCAMGeoEditor.py:4099 msgid "" "[ERROR_NOTCL] Negative buffer value is not accepted. Use Buffer interior to " "generate an 'inside' shape" @@ -3107,57 +3080,57 @@ msgstr "" "[ERROR_NOTCL] O valoare de bufer negativă nu se acceptă. Folosete Bufer " "Interior pentru a genera o forma geo. interioara." -#: flatcamEditors/FlatCAMGeoEditor.py:3842 -#: flatcamEditors/FlatCAMGeoEditor.py:3880 -#: flatcamEditors/FlatCAMGeoEditor.py:3955 +#: flatcamEditors/FlatCAMGeoEditor.py:3994 +#: flatcamEditors/FlatCAMGeoEditor.py:4032 +#: flatcamEditors/FlatCAMGeoEditor.py:4107 msgid "[WARNING_NOTCL] Nothing selected for buffering." msgstr "" "[WARNING_NOTCL] Nici-o forma geometrică nu este selectată pentru a face " "Bufer." -#: flatcamEditors/FlatCAMGeoEditor.py:3846 -#: flatcamEditors/FlatCAMGeoEditor.py:3884 -#: flatcamEditors/FlatCAMGeoEditor.py:3959 +#: flatcamEditors/FlatCAMGeoEditor.py:3998 +#: flatcamEditors/FlatCAMGeoEditor.py:4036 +#: flatcamEditors/FlatCAMGeoEditor.py:4111 msgid "[WARNING_NOTCL] Invalid distance for buffering." msgstr "[WARNING_NOTCL] Distanta invalida pentru a face Bufer." -#: flatcamEditors/FlatCAMGeoEditor.py:3856 -#: flatcamEditors/FlatCAMGeoEditor.py:3968 +#: flatcamEditors/FlatCAMGeoEditor.py:4008 +#: flatcamEditors/FlatCAMGeoEditor.py:4120 msgid "" "[ERROR_NOTCL] Failed, the result is empty. Choose a different buffer value." msgstr "" "[ERROR_NOTCL] Esuat, rezultatul este gol. Foloseşte o valoare diferita " "pentru Bufer." -#: flatcamEditors/FlatCAMGeoEditor.py:3864 +#: flatcamEditors/FlatCAMGeoEditor.py:4016 msgid "[success] Full buffer geometry created." msgstr "[success] Geometrie tip Bufer Complet creată." -#: flatcamEditors/FlatCAMGeoEditor.py:3894 +#: flatcamEditors/FlatCAMGeoEditor.py:4046 msgid "" "[ERROR_NOTCL] Failed, the result is empty. Choose a smaller buffer value." msgstr "" "[ERROR_NOTCL] Esuat, rezultatul este gol. Foloseşte of valoare mai mica pt. " "Bufer." -#: flatcamEditors/FlatCAMGeoEditor.py:3909 +#: flatcamEditors/FlatCAMGeoEditor.py:4061 msgid "[success] Interior buffer geometry created." msgstr "[success] Geometrie Bufer interior creată." -#: flatcamEditors/FlatCAMGeoEditor.py:3980 +#: flatcamEditors/FlatCAMGeoEditor.py:4132 msgid "[success] Exterior buffer geometry created." msgstr "[success] Geometrie Bufer Exterior creată." -#: flatcamEditors/FlatCAMGeoEditor.py:4044 +#: flatcamEditors/FlatCAMGeoEditor.py:4196 msgid "[WARNING_NOTCL] Nothing selected for painting." msgstr "" "[WARNING_NOTCL] Nici-o forma geometrică nu este selectată pentru Paint." -#: flatcamEditors/FlatCAMGeoEditor.py:4050 +#: flatcamEditors/FlatCAMGeoEditor.py:4202 msgid "[WARNING] Invalid value for {}" msgstr "[WARNING] Valoare invalida pentru {}" -#: flatcamEditors/FlatCAMGeoEditor.py:4056 +#: flatcamEditors/FlatCAMGeoEditor.py:4208 msgid "" "[ERROR_NOTCL] Could not do Paint. Overlap value has to be less than 1.00 " "(100%)." @@ -3165,7 +3138,7 @@ msgstr "" "[ERROR_NOTCL] Nu se poate face Paint. Valoarea de suprapunere trebuie să fie " "mai puțin de 1.00 (100%)." -#: flatcamEditors/FlatCAMGeoEditor.py:4115 +#: flatcamEditors/FlatCAMGeoEditor.py:4267 #, python-format msgid "" "[ERROR] Could not do Paint. Try a different combination of parameters. Or a " @@ -3176,7 +3149,7 @@ msgstr "" "Or o metoda diferita de Paint\n" "%s" -#: flatcamEditors/FlatCAMGeoEditor.py:4126 +#: flatcamEditors/FlatCAMGeoEditor.py:4278 msgid "[success] Paint done." msgstr "[success] Paint executat." @@ -3291,64 +3264,64 @@ msgstr "Mod Traseu 4: Invers 90 grade ..." msgid "Track Mode 5: Free angle ..." msgstr "Mod Traseu 5: Unghi liber ..." -#: flatcamEditors/FlatCAMGrbEditor.py:1360 +#: flatcamEditors/FlatCAMGrbEditor.py:1367 msgid "Scale the selected Gerber apertures ..." msgstr "Șterge aperturile Gerber selectate ..." -#: flatcamEditors/FlatCAMGrbEditor.py:1402 +#: flatcamEditors/FlatCAMGrbEditor.py:1409 msgid "Buffer the selected apertures ..." msgstr "Bufereaza aperturile selectate." -#: flatcamEditors/FlatCAMGrbEditor.py:1503 +#: flatcamEditors/FlatCAMGrbEditor.py:1510 msgid "[success] Done. Apertures Move completed." msgstr "[success] Executat. Mutarea Aperturilor terminată." -#: flatcamEditors/FlatCAMGrbEditor.py:1558 +#: flatcamEditors/FlatCAMGrbEditor.py:1565 msgid "[success] Done. Apertures copied." msgstr "[success] Executat. Aperturile au fost copiate." -#: flatcamEditors/FlatCAMGrbEditor.py:1698 flatcamGUI/FlatCAMGUI.py:1574 +#: flatcamEditors/FlatCAMGrbEditor.py:1708 flatcamGUI/FlatCAMGUI.py:1590 msgid "Gerber Editor" msgstr "Editor Gerber" -#: flatcamEditors/FlatCAMGrbEditor.py:1717 flatcamGUI/ObjectUI.py:192 +#: flatcamEditors/FlatCAMGrbEditor.py:1727 flatcamGUI/ObjectUI.py:192 msgid "Apertures:" msgstr "Aperturi:" -#: flatcamEditors/FlatCAMGrbEditor.py:1719 flatcamGUI/ObjectUI.py:194 +#: flatcamEditors/FlatCAMGrbEditor.py:1729 flatcamGUI/ObjectUI.py:194 msgid "Apertures Table for the Gerber Object." msgstr "Tabela de aperturi pt obiectul Gerber." -#: flatcamEditors/FlatCAMGrbEditor.py:1730 -#: flatcamEditors/FlatCAMGrbEditor.py:2927 flatcamGUI/ObjectUI.py:228 +#: flatcamEditors/FlatCAMGrbEditor.py:1740 +#: flatcamEditors/FlatCAMGrbEditor.py:3007 flatcamGUI/ObjectUI.py:228 msgid "Code" msgstr "Cod" -#: flatcamEditors/FlatCAMGrbEditor.py:1730 -#: flatcamEditors/FlatCAMGrbEditor.py:2927 flatcamGUI/ObjectUI.py:228 +#: flatcamEditors/FlatCAMGrbEditor.py:1740 +#: flatcamEditors/FlatCAMGrbEditor.py:3007 flatcamGUI/ObjectUI.py:228 #: flatcamGUI/ObjectUI.py:888 flatcamGUI/ObjectUI.py:1446 msgid "Type" msgstr "Tip" -#: flatcamEditors/FlatCAMGrbEditor.py:1730 -#: flatcamEditors/FlatCAMGrbEditor.py:2927 flatcamGUI/ObjectUI.py:228 +#: flatcamEditors/FlatCAMGrbEditor.py:1740 +#: flatcamEditors/FlatCAMGrbEditor.py:3007 flatcamGUI/ObjectUI.py:228 msgid "Size" msgstr "Dimens." -#: flatcamEditors/FlatCAMGrbEditor.py:1730 -#: flatcamEditors/FlatCAMGrbEditor.py:2927 flatcamGUI/ObjectUI.py:228 +#: flatcamEditors/FlatCAMGrbEditor.py:1740 +#: flatcamEditors/FlatCAMGrbEditor.py:3007 flatcamGUI/ObjectUI.py:228 msgid "Dim" msgstr "Dim" -#: flatcamEditors/FlatCAMGrbEditor.py:1734 flatcamGUI/ObjectUI.py:232 +#: flatcamEditors/FlatCAMGrbEditor.py:1744 flatcamGUI/ObjectUI.py:232 msgid "Index" msgstr "Index" -#: flatcamEditors/FlatCAMGrbEditor.py:1736 flatcamGUI/ObjectUI.py:234 +#: flatcamEditors/FlatCAMGrbEditor.py:1746 flatcamGUI/ObjectUI.py:234 msgid "Aperture Code" msgstr "Cod" -#: flatcamEditors/FlatCAMGrbEditor.py:1738 flatcamGUI/ObjectUI.py:236 +#: flatcamEditors/FlatCAMGrbEditor.py:1748 flatcamGUI/ObjectUI.py:236 msgid "Type of aperture: circular, rectangle, macros etc" msgstr "" "Tipul aperturilor:\n" @@ -3357,12 +3330,12 @@ msgstr "" "- macro-uri\n" "etc" -#: flatcamEditors/FlatCAMGrbEditor.py:1740 -#: flatcamEditors/FlatCAMGrbEditor.py:1773 flatcamGUI/ObjectUI.py:238 +#: flatcamEditors/FlatCAMGrbEditor.py:1750 +#: flatcamEditors/FlatCAMGrbEditor.py:1783 flatcamGUI/ObjectUI.py:238 msgid "Aperture Size:" msgstr "Dim. aper." -#: flatcamEditors/FlatCAMGrbEditor.py:1742 flatcamGUI/ObjectUI.py:240 +#: flatcamEditors/FlatCAMGrbEditor.py:1752 flatcamGUI/ObjectUI.py:240 msgid "" "Aperture Dimensions:\n" " - (width, height) for R, O type.\n" @@ -3372,15 +3345,15 @@ msgstr "" "- (latime, inaltime) pt tipurile R, O.\n" "- (diametru, nVertices) pt tipul P" -#: flatcamEditors/FlatCAMGrbEditor.py:1763 +#: flatcamEditors/FlatCAMGrbEditor.py:1773 msgid "Aperture Code:" msgstr "Cod apertură" -#: flatcamEditors/FlatCAMGrbEditor.py:1765 +#: flatcamEditors/FlatCAMGrbEditor.py:1775 msgid "Code for the new aperture" msgstr "Diametru pentru noua apertură" -#: flatcamEditors/FlatCAMGrbEditor.py:1775 +#: flatcamEditors/FlatCAMGrbEditor.py:1785 msgid "" "Size for the new aperture.\n" "If aperture type is 'R' or 'O' then\n" @@ -3393,11 +3366,11 @@ msgstr "" "valoarea este calculată automat prin:\n" "sqrt(lătime**2 + inăltime**2)" -#: flatcamEditors/FlatCAMGrbEditor.py:1787 +#: flatcamEditors/FlatCAMGrbEditor.py:1797 msgid "Aperture Type:" msgstr "Tip aper." -#: flatcamEditors/FlatCAMGrbEditor.py:1789 +#: flatcamEditors/FlatCAMGrbEditor.py:1799 msgid "" "Select the type of new aperture. Can be:\n" "C = circular\n" @@ -3409,11 +3382,11 @@ msgstr "" "R = rectangular\n" "O = oval" -#: flatcamEditors/FlatCAMGrbEditor.py:1800 +#: flatcamEditors/FlatCAMGrbEditor.py:1810 msgid "Aperture Dim:" msgstr "Dim. aper." -#: flatcamEditors/FlatCAMGrbEditor.py:1802 +#: flatcamEditors/FlatCAMGrbEditor.py:1812 msgid "" "Dimensions for the new aperture.\n" "Active only for rectangular apertures (type R).\n" @@ -3423,31 +3396,31 @@ msgstr "" "Activă doar pentru aperturile rectangulare (tip 'R').\n" "Formatul este (lătime, inăltime)" -#: flatcamEditors/FlatCAMGrbEditor.py:1811 +#: flatcamEditors/FlatCAMGrbEditor.py:1821 msgid "Add/Delete Aperture:" msgstr "Adaugă/Șterge aper." -#: flatcamEditors/FlatCAMGrbEditor.py:1813 +#: flatcamEditors/FlatCAMGrbEditor.py:1823 msgid "Add/Delete an aperture in the aperture table" msgstr "Adaugă/Șterge o apertură din lista de aperturi." -#: flatcamEditors/FlatCAMGrbEditor.py:1822 +#: flatcamEditors/FlatCAMGrbEditor.py:1832 msgid "Add a new aperture to the aperture list." msgstr "Adaugă o nouă apertură in lista de aperturi." -#: flatcamEditors/FlatCAMGrbEditor.py:1827 +#: flatcamEditors/FlatCAMGrbEditor.py:1837 msgid "Delete a aperture in the aperture list" msgstr "Șterge o apertură din lista de aperturi." -#: flatcamEditors/FlatCAMGrbEditor.py:1843 +#: flatcamEditors/FlatCAMGrbEditor.py:1853 msgid "Buffer Aperture:" msgstr "Bufer pt apertură:" -#: flatcamEditors/FlatCAMGrbEditor.py:1845 +#: flatcamEditors/FlatCAMGrbEditor.py:1855 msgid "Buffer a aperture in the aperture list" msgstr "Fă bufer pt o apertură din lista de aperturi" -#: flatcamEditors/FlatCAMGrbEditor.py:1858 +#: flatcamEditors/FlatCAMGrbEditor.py:1868 msgid "" "There are 3 types of corners:\n" " - 'Round': the corner is rounded.\n" @@ -3461,24 +3434,24 @@ msgstr "" " - 'Beveled:' coltul este inlocuit cu o linie care uneste capetele liniilor " "care formează coltul" -#: flatcamEditors/FlatCAMGrbEditor.py:1873 flatcamGUI/FlatCAMGUI.py:707 -#: flatcamGUI/FlatCAMGUI.py:1911 +#: flatcamEditors/FlatCAMGrbEditor.py:1883 flatcamGUI/FlatCAMGUI.py:708 +#: flatcamGUI/FlatCAMGUI.py:1929 msgid "Buffer" msgstr "Bufer" -#: flatcamEditors/FlatCAMGrbEditor.py:1887 +#: flatcamEditors/FlatCAMGrbEditor.py:1897 msgid "Scale Aperture:" msgstr "Scalează ap.:" -#: flatcamEditors/FlatCAMGrbEditor.py:1889 +#: flatcamEditors/FlatCAMGrbEditor.py:1899 msgid "Scale a aperture in the aperture list" msgstr "Scalează o apertură in lista de aperturi" -#: flatcamEditors/FlatCAMGrbEditor.py:1897 +#: flatcamEditors/FlatCAMGrbEditor.py:1907 msgid "Scale factor:" msgstr "Factor Scalare:" -#: flatcamEditors/FlatCAMGrbEditor.py:1899 +#: flatcamEditors/FlatCAMGrbEditor.py:1909 msgid "" "The factor by which to scale the selected aperture.\n" "Values can be between 0.0000 and 999.9999" @@ -3486,16 +3459,16 @@ msgstr "" "Factorul cu care se va face scalarea aperturii selectate.\n" "Poate lua valori intre: 0.000 si 999.9999" -#: flatcamEditors/FlatCAMGrbEditor.py:1927 flatcamGUI/FlatCAMGUI.py:696 -#: flatcamGUI/FlatCAMGUI.py:1906 +#: flatcamEditors/FlatCAMGrbEditor.py:1937 flatcamGUI/FlatCAMGUI.py:698 +#: flatcamGUI/FlatCAMGUI.py:1919 msgid "Add Pad Array" msgstr "Adaugă o arie de paduri" -#: flatcamEditors/FlatCAMGrbEditor.py:1929 +#: flatcamEditors/FlatCAMGrbEditor.py:1939 msgid "Add an array of pads (linear or circular array)" msgstr "Adaugă o arie de paduri (arie lineara sau circulara)." -#: flatcamEditors/FlatCAMGrbEditor.py:1935 +#: flatcamEditors/FlatCAMGrbEditor.py:1945 msgid "" "Select the type of pads array to create.\n" "It can be Linear X(Y) or Circular" @@ -3503,16 +3476,16 @@ msgstr "" "Selectează tipul de arii de paduri.\n" "Poate fi Liniar X(Y) sau Circular." -#: flatcamEditors/FlatCAMGrbEditor.py:1946 +#: flatcamEditors/FlatCAMGrbEditor.py:1956 msgid "Nr of pads:" msgstr "Nr. paduri:" -#: flatcamEditors/FlatCAMGrbEditor.py:1948 +#: flatcamEditors/FlatCAMGrbEditor.py:1958 msgid "Specify how many pads to be in the array." msgstr "Specifica cate paduri să fie incluse in arie." -#: flatcamEditors/FlatCAMGrbEditor.py:2420 -#: flatcamEditors/FlatCAMGrbEditor.py:2424 +#: flatcamEditors/FlatCAMGrbEditor.py:2431 +#: flatcamEditors/FlatCAMGrbEditor.py:2435 msgid "" "[WARNING_NOTCL] Aperture code value is missing or wrong format. Add it and " "retry." @@ -3520,7 +3493,7 @@ msgstr "" "[WARNING_NOTCL] Valoarea codului aperturii lipseste sau este in format " "greșit. Adaugă din nou și reîncearcă." -#: flatcamEditors/FlatCAMGrbEditor.py:2461 +#: flatcamEditors/FlatCAMGrbEditor.py:2472 msgid "" "[WARNING_NOTCL] Aperture dimensions value is missing or wrong format. Add it " "in format (width, height) and retry." @@ -3528,7 +3501,7 @@ msgstr "" "[WARNING_NOTCL] Dimensiunile aperturii lipsesc sau sunt intr-un format " "greșit. Adaugă din nou și reîncearcă." -#: flatcamEditors/FlatCAMGrbEditor.py:2473 +#: flatcamEditors/FlatCAMGrbEditor.py:2484 msgid "" "[WARNING_NOTCL] Aperture size value is missing or wrong format. Add it and " "retry." @@ -3536,31 +3509,31 @@ msgstr "" "[WARNING_NOTCL] Valoarea mărimii aperturii lipseste sau este in format " "greșit. Adaugă din nou și reîncearcă." -#: flatcamEditors/FlatCAMGrbEditor.py:2485 +#: flatcamEditors/FlatCAMGrbEditor.py:2496 msgid "[WARNING_NOTCL] Aperture already in the aperture table." msgstr "[WARNING_NOTCL] Apertura este deja in lista de aperturi." -#: flatcamEditors/FlatCAMGrbEditor.py:2492 +#: flatcamEditors/FlatCAMGrbEditor.py:2503 #, 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:2521 -#: flatcamEditors/FlatCAMGrbEditor.py:2527 +#: flatcamEditors/FlatCAMGrbEditor.py:2532 +#: flatcamEditors/FlatCAMGrbEditor.py:2538 msgid "[WARNING_NOTCL] Select an aperture in Aperture Table" msgstr "[WARNING_NOTCL] Selectează o unealtă in Tabela de Aperturi" -#: flatcamEditors/FlatCAMGrbEditor.py:2550 +#: flatcamEditors/FlatCAMGrbEditor.py:2561 #, python-brace-format msgid "[success] Deleted aperture with code: {del_dia}" msgstr "[success] Unealta cu diametrul: {del_dia} a fost stearsă" -#: flatcamEditors/FlatCAMGrbEditor.py:2851 +#: flatcamEditors/FlatCAMGrbEditor.py:2931 #, python-format msgid "Adding aperture: %s geo ..." msgstr "Se adaugă apertura: %s geo ..." -#: flatcamEditors/FlatCAMGrbEditor.py:3015 +#: flatcamEditors/FlatCAMGrbEditor.py:3095 msgid "" "[ERROR_NOTCL] There are no Aperture definitions in the file. Aborting Gerber " "creation." @@ -3568,28 +3541,28 @@ msgstr "" "[ERROR_NOTCL] Nu există definitii de aperturi in fişier. Se anulează crearea " "de obiect Gerber." -#: flatcamEditors/FlatCAMGrbEditor.py:3024 +#: flatcamEditors/FlatCAMGrbEditor.py:3104 msgid "Creating Gerber." msgstr "Gerber in curs de creare." -#: flatcamEditors/FlatCAMGrbEditor.py:3032 +#: flatcamEditors/FlatCAMGrbEditor.py:3112 msgid "[success] Gerber editing finished." msgstr "[success] Editarea Gerber a fost terminată." -#: flatcamEditors/FlatCAMGrbEditor.py:3049 +#: flatcamEditors/FlatCAMGrbEditor.py:3129 msgid "[WARNING_NOTCL] Cancelled. No aperture is selected" msgstr "[WARNING_NOTCL] Anulat. Nici-o apertură nu este selectată." -#: flatcamEditors/FlatCAMGrbEditor.py:3549 +#: flatcamEditors/FlatCAMGrbEditor.py:3649 msgid "[ERROR_NOTCL] Failed. No aperture geometry is selected." msgstr "" "[WARNING_NOTCL] Anulat. Nici-o geometrie de apertură nu este selectată." -#: flatcamEditors/FlatCAMGrbEditor.py:3557 +#: flatcamEditors/FlatCAMGrbEditor.py:3657 msgid "[success] Done. Apertures geometry deleted." msgstr "[success] Executat. Geometriile aperturilor au fost șterse." -#: flatcamEditors/FlatCAMGrbEditor.py:3694 +#: flatcamEditors/FlatCAMGrbEditor.py:3792 msgid "" "[WARNING_NOTCL] No aperture to buffer. Select at least one aperture and try " "again." @@ -3597,7 +3570,7 @@ msgstr "" "[WARNING_NOTCL] Nici-o apertura sel. pt a face bufer. Selectează cel puțin o " "apertura și încearcă din nou." -#: flatcamEditors/FlatCAMGrbEditor.py:3723 +#: flatcamEditors/FlatCAMGrbEditor.py:3821 msgid "" "[WARNING_NOTCL] Scale factor value is missing or wrong format. Add it and " "retry." @@ -3605,7 +3578,7 @@ msgstr "" "[WARNING_NOTCL] Valoarea factorului de scalare lipseste sau este in format " "gresit. Adaugă din nou și reîncearcă." -#: flatcamEditors/FlatCAMGrbEditor.py:3741 +#: flatcamEditors/FlatCAMGrbEditor.py:3839 msgid "" "[WARNING_NOTCL] No aperture to scale. Select at least one aperture and try " "again." @@ -3613,7 +3586,7 @@ msgstr "" "[WARNING_NOTCL] Nici-o apertură sel. pt scalare. Selectează cel puțin o " "apertură și încearcă din nou." -#: flatcamEditors/FlatCAMGrbEditor.py:3757 +#: flatcamEditors/FlatCAMGrbEditor.py:3855 msgid "[success] Done. Scale Tool completed." msgstr "[success] Executat. Unealta Scalare a terminat." @@ -3874,11 +3847,11 @@ msgstr "" #: flatcamGUI/FlatCAMGUI.py:272 msgid "&Copy Object\tCTRL+C" -msgstr "&Copiaza Obiect\tCTRL+C" +msgstr "&Copiază Obiect\tCTRL+C" #: flatcamGUI/FlatCAMGUI.py:274 msgid "Copy as &Geom" -msgstr "Copiaza ca &Geo" +msgstr "Copiază ca &Geo" #: flatcamGUI/FlatCAMGUI.py:277 msgid "&Delete\tDEL" @@ -3894,7 +3867,7 @@ msgstr "Sari la Locaţie\tJ" #: flatcamGUI/FlatCAMGUI.py:287 msgid "Toggle Units\tQ" -msgstr "Comuta Unitati\tQ" +msgstr "Comută Unitati\tQ" #: flatcamGUI/FlatCAMGUI.py:289 msgid "&Select All\tCTRL+A" @@ -3962,31 +3935,31 @@ msgstr "&Micsorează\t=" #: flatcamGUI/FlatCAMGUI.py:349 msgid "Toggle Code Editor\tCTRL+E" -msgstr "Comuta Editorul de cod\tCTRL+E" +msgstr "Comută Editorul de cod\tCTRL+E" #: flatcamGUI/FlatCAMGUI.py:352 msgid "&Toggle FullScreen\tALT+F10" -msgstr "Comuta FullScreen\tALT+F10" +msgstr "Comută FullScreen\tALT+F10" #: flatcamGUI/FlatCAMGUI.py:354 msgid "&Toggle Plot Area\tCTRL+F10" -msgstr "Comuta Aria de Afișare\tCTRL+F10" +msgstr "Comută Aria de Afișare\tCTRL+F10" #: flatcamGUI/FlatCAMGUI.py:356 msgid "&Toggle Project/Sel/Tool\t`" -msgstr "Comuta Proiect/Sel/Unealta\t`" +msgstr "Comută Proiect/Sel/Unealta\t`" #: flatcamGUI/FlatCAMGUI.py:359 msgid "&Toggle Grid Snap\tG" -msgstr "Comuta Grid\tG" +msgstr "Comută Grid\tG" #: flatcamGUI/FlatCAMGUI.py:361 msgid "&Toggle Axis\tSHIFT+G" -msgstr "Comuta Axe\tSHIFT+G" +msgstr "Comută Axe\tSHIFT+G" #: flatcamGUI/FlatCAMGUI.py:364 msgid "Toggle Workspace\tSHIFT+W" -msgstr "Comuta Suprafata de lucru\tSHIFT+W" +msgstr "Comută Suprafata de lucru\tSHIFT+W" #: flatcamGUI/FlatCAMGUI.py:368 msgid "&Tool" @@ -4062,7 +4035,7 @@ msgstr "Tăiere Cale\tX" #: flatcamGUI/FlatCAMGUI.py:417 msgid "Copy Geom\tC" -msgstr "Copiaza Geo\tC" +msgstr "Copiază Geo\tC" #: flatcamGUI/FlatCAMGUI.py:419 msgid "Delete Shape\tDEL" @@ -4086,7 +4059,7 @@ msgstr "Unealta Transformare\tALT+R" #: flatcamGUI/FlatCAMGUI.py:434 msgid "Toggle Corner Snap\tK" -msgstr "Comuta lipire colt\tK" +msgstr "Comută lipire colt\tK" #: flatcamGUI/FlatCAMGUI.py:437 msgid ">Excellon Editor<" @@ -4106,7 +4079,7 @@ msgstr "Redimens. Găuriri\tR" #: flatcamGUI/FlatCAMGUI.py:449 flatcamGUI/FlatCAMGUI.py:488 msgid "Copy\tC" -msgstr "Copiaza\tC" +msgstr "Copiază\tC" #: flatcamGUI/FlatCAMGUI.py:451 flatcamGUI/FlatCAMGUI.py:490 msgid "Delete\tDEL" @@ -4176,11 +4149,11 @@ msgstr "Generează CNC" msgid "View Source" msgstr "Vizualiz. Sursa" -#: flatcamGUI/FlatCAMGUI.py:517 flatcamGUI/FlatCAMGUI.py:1592 +#: flatcamGUI/FlatCAMGUI.py:517 flatcamGUI/FlatCAMGUI.py:1603 msgid "Edit" msgstr "Editează" -#: flatcamGUI/FlatCAMGUI.py:523 flatcamGUI/FlatCAMGUI.py:1598 +#: flatcamGUI/FlatCAMGUI.py:523 flatcamGUI/FlatCAMGUI.py:1609 #: flatcamTools/ToolProperties.py:25 msgid "Properties" msgstr "Proprietati" @@ -4221,15 +4194,15 @@ msgstr "Toolbar Editor Gerber" msgid "Grid Toolbar" msgstr "Toolbar Grid-uri" -#: flatcamGUI/FlatCAMGUI.py:603 flatcamGUI/FlatCAMGUI.py:1809 +#: flatcamGUI/FlatCAMGUI.py:603 flatcamGUI/FlatCAMGUI.py:1820 msgid "Open project" msgstr "Încarcă Proiect" -#: flatcamGUI/FlatCAMGUI.py:604 flatcamGUI/FlatCAMGUI.py:1810 +#: flatcamGUI/FlatCAMGUI.py:604 flatcamGUI/FlatCAMGUI.py:1821 msgid "Save project" msgstr "Salvează Proiect" -#: flatcamGUI/FlatCAMGUI.py:607 flatcamGUI/FlatCAMGUI.py:1813 +#: flatcamGUI/FlatCAMGUI.py:607 flatcamGUI/FlatCAMGUI.py:1824 msgid "New Blank Geometry" msgstr "Geometrie Noua (goală)" @@ -4237,215 +4210,220 @@ msgstr "Geometrie Noua (goală)" msgid "New Blank Gerber" msgstr "Gerber Nou (gol)" -#: flatcamGUI/FlatCAMGUI.py:609 flatcamGUI/FlatCAMGUI.py:1814 +#: flatcamGUI/FlatCAMGUI.py:609 flatcamGUI/FlatCAMGUI.py:1825 msgid "New Blank Excellon" msgstr "Excellon nou (gol)" -#: flatcamGUI/FlatCAMGUI.py:611 flatcamGUI/FlatCAMGUI.py:1816 +#: flatcamGUI/FlatCAMGUI.py:611 flatcamGUI/FlatCAMGUI.py:1827 msgid "Editor" msgstr "Editor" -#: flatcamGUI/FlatCAMGUI.py:613 flatcamGUI/FlatCAMGUI.py:1818 +#: flatcamGUI/FlatCAMGUI.py:613 flatcamGUI/FlatCAMGUI.py:1829 msgid "Save Object and close the Editor" msgstr "Salvează Obiectul și inchide Editorul" -#: flatcamGUI/FlatCAMGUI.py:617 flatcamGUI/FlatCAMGUI.py:1822 +#: flatcamGUI/FlatCAMGUI.py:617 flatcamGUI/FlatCAMGUI.py:1833 msgid "&Delete" msgstr "&Șterge" -#: flatcamGUI/FlatCAMGUI.py:620 flatcamGUI/FlatCAMGUI.py:1825 +#: flatcamGUI/FlatCAMGUI.py:620 flatcamGUI/FlatCAMGUI.py:1836 msgid "&Replot" msgstr "&Reafișare" -#: flatcamGUI/FlatCAMGUI.py:621 flatcamGUI/FlatCAMGUI.py:1826 +#: flatcamGUI/FlatCAMGUI.py:621 flatcamGUI/FlatCAMGUI.py:1837 msgid "&Clear plot" msgstr "&Șterge Afișare" -#: flatcamGUI/FlatCAMGUI.py:622 flatcamGUI/FlatCAMGUI.py:1827 +#: flatcamGUI/FlatCAMGUI.py:622 flatcamGUI/FlatCAMGUI.py:1838 msgid "Zoom In" msgstr "Marire" -#: flatcamGUI/FlatCAMGUI.py:623 flatcamGUI/FlatCAMGUI.py:1828 +#: flatcamGUI/FlatCAMGUI.py:623 flatcamGUI/FlatCAMGUI.py:1839 msgid "Zoom Out" msgstr "Micsorare" -#: flatcamGUI/FlatCAMGUI.py:624 flatcamGUI/FlatCAMGUI.py:1562 -#: flatcamGUI/FlatCAMGUI.py:1829 +#: flatcamGUI/FlatCAMGUI.py:624 flatcamGUI/FlatCAMGUI.py:1578 +#: flatcamGUI/FlatCAMGUI.py:1840 msgid "Zoom Fit" msgstr "Marire și ajustare" -#: flatcamGUI/FlatCAMGUI.py:629 flatcamGUI/FlatCAMGUI.py:1834 +#: flatcamGUI/FlatCAMGUI.py:629 flatcamGUI/FlatCAMGUI.py:1845 msgid "&Command Line" msgstr "&Linie de comanda" -#: flatcamGUI/FlatCAMGUI.py:632 flatcamGUI/FlatCAMGUI.py:1837 +#: flatcamGUI/FlatCAMGUI.py:632 flatcamGUI/FlatCAMGUI.py:1848 msgid "2Sided Tool" msgstr "Unealta 2-fețe" -#: flatcamGUI/FlatCAMGUI.py:633 flatcamGUI/FlatCAMGUI.py:1838 +#: flatcamGUI/FlatCAMGUI.py:633 flatcamGUI/FlatCAMGUI.py:1849 msgid "&Cutout Tool" msgstr "Unealta Decupare" -#: flatcamGUI/FlatCAMGUI.py:634 flatcamGUI/FlatCAMGUI.py:1839 +#: flatcamGUI/FlatCAMGUI.py:634 flatcamGUI/FlatCAMGUI.py:1850 #: flatcamGUI/ObjectUI.py:392 flatcamTools/ToolNonCopperClear.py:285 msgid "NCC Tool" msgstr "Unealta NCC" -#: flatcamGUI/FlatCAMGUI.py:638 flatcamGUI/FlatCAMGUI.py:1843 +#: flatcamGUI/FlatCAMGUI.py:638 flatcamGUI/FlatCAMGUI.py:1854 msgid "Panel Tool" msgstr "Unealta Panel" -#: flatcamGUI/FlatCAMGUI.py:639 flatcamGUI/FlatCAMGUI.py:1844 +#: flatcamGUI/FlatCAMGUI.py:639 flatcamGUI/FlatCAMGUI.py:1855 #: flatcamTools/ToolFilm.py:204 msgid "Film Tool" msgstr "Unealta Film" -#: flatcamGUI/FlatCAMGUI.py:640 flatcamGUI/FlatCAMGUI.py:1846 +#: flatcamGUI/FlatCAMGUI.py:640 flatcamGUI/FlatCAMGUI.py:1857 msgid "SolderPaste Tool" msgstr "Unealta Dispenser SP" -#: flatcamGUI/FlatCAMGUI.py:643 flatcamGUI/FlatCAMGUI.py:1850 +#: flatcamGUI/FlatCAMGUI.py:641 flatcamGUI/FlatCAMGUI.py:1858 +#: flatcamTools/ToolSub.py:26 +msgid "Substract Tool" +msgstr "Unealta Scădere" + +#: flatcamGUI/FlatCAMGUI.py:645 flatcamGUI/FlatCAMGUI.py:1863 msgid "Calculators Tool" msgstr "Unealta Calculatoare" -#: flatcamGUI/FlatCAMGUI.py:647 flatcamGUI/FlatCAMGUI.py:661 -#: flatcamGUI/FlatCAMGUI.py:694 flatcamGUI/FlatCAMGUI.py:1854 -#: flatcamGUI/FlatCAMGUI.py:1904 +#: flatcamGUI/FlatCAMGUI.py:649 flatcamGUI/FlatCAMGUI.py:663 +#: flatcamGUI/FlatCAMGUI.py:696 flatcamGUI/FlatCAMGUI.py:1867 +#: flatcamGUI/FlatCAMGUI.py:1917 msgid "Select" msgstr "Selectează" -#: flatcamGUI/FlatCAMGUI.py:648 flatcamGUI/FlatCAMGUI.py:1855 +#: flatcamGUI/FlatCAMGUI.py:650 flatcamGUI/FlatCAMGUI.py:1868 msgid "Add Drill Hole" msgstr "Adaugă o Găurire" -#: flatcamGUI/FlatCAMGUI.py:650 flatcamGUI/FlatCAMGUI.py:1857 +#: flatcamGUI/FlatCAMGUI.py:652 flatcamGUI/FlatCAMGUI.py:1870 msgid "Add Drill Hole Array" msgstr "Adaugă o arie de Găuriri" -#: flatcamGUI/FlatCAMGUI.py:651 flatcamGUI/FlatCAMGUI.py:1858 +#: flatcamGUI/FlatCAMGUI.py:653 flatcamGUI/FlatCAMGUI.py:1871 msgid "Resize Drill" msgstr "Redimens. Găurire" -#: flatcamGUI/FlatCAMGUI.py:654 flatcamGUI/FlatCAMGUI.py:1861 +#: flatcamGUI/FlatCAMGUI.py:656 flatcamGUI/FlatCAMGUI.py:1874 msgid "Copy Drill" -msgstr "Copiaza Găurire" +msgstr "Copiază Găurire" -#: flatcamGUI/FlatCAMGUI.py:655 flatcamGUI/FlatCAMGUI.py:1863 +#: flatcamGUI/FlatCAMGUI.py:657 flatcamGUI/FlatCAMGUI.py:1876 msgid "Delete Drill" msgstr "Șterge Găurire" -#: flatcamGUI/FlatCAMGUI.py:658 flatcamGUI/FlatCAMGUI.py:1866 +#: flatcamGUI/FlatCAMGUI.py:660 flatcamGUI/FlatCAMGUI.py:1879 msgid "Move Drill" msgstr "Muta Găurire" -#: flatcamGUI/FlatCAMGUI.py:662 flatcamGUI/FlatCAMGUI.py:1870 +#: flatcamGUI/FlatCAMGUI.py:664 flatcamGUI/FlatCAMGUI.py:1883 msgid "Add Circle" msgstr "Adaugă Cerc" -#: flatcamGUI/FlatCAMGUI.py:663 flatcamGUI/FlatCAMGUI.py:1871 +#: flatcamGUI/FlatCAMGUI.py:665 flatcamGUI/FlatCAMGUI.py:1884 msgid "Add Arc" msgstr "Adaugă Arc" -#: flatcamGUI/FlatCAMGUI.py:665 flatcamGUI/FlatCAMGUI.py:1873 +#: flatcamGUI/FlatCAMGUI.py:667 flatcamGUI/FlatCAMGUI.py:1886 msgid "Add Rectangle" msgstr "Adaugă Patrulater" -#: flatcamGUI/FlatCAMGUI.py:668 flatcamGUI/FlatCAMGUI.py:1876 +#: flatcamGUI/FlatCAMGUI.py:670 flatcamGUI/FlatCAMGUI.py:1889 msgid "Add Path" msgstr "Adaugă Cale" -#: flatcamGUI/FlatCAMGUI.py:669 flatcamGUI/FlatCAMGUI.py:1878 +#: flatcamGUI/FlatCAMGUI.py:671 flatcamGUI/FlatCAMGUI.py:1891 msgid "Add Polygon" msgstr "Adaugă Poligon" -#: flatcamGUI/FlatCAMGUI.py:671 flatcamGUI/FlatCAMGUI.py:1880 +#: flatcamGUI/FlatCAMGUI.py:673 flatcamGUI/FlatCAMGUI.py:1893 msgid "Add Text" msgstr "Adaugă Text" -#: flatcamGUI/FlatCAMGUI.py:672 flatcamGUI/FlatCAMGUI.py:1882 +#: flatcamGUI/FlatCAMGUI.py:674 flatcamGUI/FlatCAMGUI.py:1895 msgid "Add Buffer" msgstr "Adaugă Bufer" -#: flatcamGUI/FlatCAMGUI.py:673 flatcamGUI/FlatCAMGUI.py:1883 +#: flatcamGUI/FlatCAMGUI.py:675 flatcamGUI/FlatCAMGUI.py:1896 msgid "Paint Shape" msgstr "Paint o forma" -#: flatcamGUI/FlatCAMGUI.py:676 flatcamGUI/FlatCAMGUI.py:1886 +#: flatcamGUI/FlatCAMGUI.py:678 flatcamGUI/FlatCAMGUI.py:1899 msgid "Polygon Union" msgstr "Uniune Poligoane" -#: flatcamGUI/FlatCAMGUI.py:678 flatcamGUI/FlatCAMGUI.py:1888 +#: flatcamGUI/FlatCAMGUI.py:680 flatcamGUI/FlatCAMGUI.py:1901 msgid "Polygon Intersection" msgstr "Intersecţie Poligoane" -#: flatcamGUI/FlatCAMGUI.py:680 flatcamGUI/FlatCAMGUI.py:1890 +#: flatcamGUI/FlatCAMGUI.py:682 flatcamGUI/FlatCAMGUI.py:1903 msgid "Polygon Subtraction" msgstr "Substracţie Poligoane" -#: flatcamGUI/FlatCAMGUI.py:683 flatcamGUI/FlatCAMGUI.py:1893 +#: flatcamGUI/FlatCAMGUI.py:685 flatcamGUI/FlatCAMGUI.py:1906 msgid "Cut Path" msgstr "Taie Cale" -#: flatcamGUI/FlatCAMGUI.py:684 +#: flatcamGUI/FlatCAMGUI.py:686 msgid "Copy Shape(s)" -msgstr "Copiaza forme geo." +msgstr "Copiază forme geo." -#: flatcamGUI/FlatCAMGUI.py:687 +#: flatcamGUI/FlatCAMGUI.py:689 msgid "Delete Shape '-'" msgstr "Șterge forme geo." -#: flatcamGUI/FlatCAMGUI.py:689 flatcamGUI/FlatCAMGUI.py:714 -#: flatcamGUI/FlatCAMGUI.py:1898 flatcamGUI/FlatCAMGUI.py:1918 +#: flatcamGUI/FlatCAMGUI.py:691 flatcamGUI/FlatCAMGUI.py:715 +#: flatcamGUI/FlatCAMGUI.py:1911 flatcamGUI/FlatCAMGUI.py:1936 msgid "Transformations" msgstr "Transformări" -#: flatcamGUI/FlatCAMGUI.py:691 +#: flatcamGUI/FlatCAMGUI.py:693 msgid "Move Objects " msgstr "Muta obiecte" -#: flatcamGUI/FlatCAMGUI.py:695 flatcamGUI/FlatCAMGUI.py:1905 +#: flatcamGUI/FlatCAMGUI.py:697 flatcamGUI/FlatCAMGUI.py:1918 msgid "Add Pad" msgstr "Adaugă Pad" -#: flatcamGUI/FlatCAMGUI.py:697 flatcamGUI/FlatCAMGUI.py:1907 +#: flatcamGUI/FlatCAMGUI.py:699 flatcamGUI/FlatCAMGUI.py:1920 msgid "Add Track" msgstr "Adaugă Traseu" -#: flatcamGUI/FlatCAMGUI.py:698 flatcamGUI/FlatCAMGUI.py:1908 +#: flatcamGUI/FlatCAMGUI.py:700 flatcamGUI/FlatCAMGUI.py:1921 msgid "Add Region" msgstr "Adaugă Regiune" -#: flatcamGUI/FlatCAMGUI.py:700 +#: flatcamGUI/FlatCAMGUI.py:702 flatcamGUI/FlatCAMGUI.py:1923 msgid "Poligonize" msgstr "Poligonizare" -#: flatcamGUI/FlatCAMGUI.py:703 +#: flatcamGUI/FlatCAMGUI.py:704 flatcamGUI/FlatCAMGUI.py:1925 msgid "SemiDisc" msgstr "SemiDisc" -#: flatcamGUI/FlatCAMGUI.py:704 +#: flatcamGUI/FlatCAMGUI.py:705 flatcamGUI/FlatCAMGUI.py:1926 msgid "Disc" msgstr "Disc" -#: flatcamGUI/FlatCAMGUI.py:716 flatcamGUI/FlatCAMGUI.py:1572 -#: flatcamGUI/FlatCAMGUI.py:1582 flatcamGUI/FlatCAMGUI.py:1597 -#: flatcamGUI/FlatCAMGUI.py:1920 flatcamTools/ToolMove.py:26 +#: flatcamGUI/FlatCAMGUI.py:717 flatcamGUI/FlatCAMGUI.py:1588 +#: flatcamGUI/FlatCAMGUI.py:1608 flatcamGUI/FlatCAMGUI.py:1938 +#: flatcamTools/ToolMove.py:26 msgid "Move" msgstr "Mutare" -#: flatcamGUI/FlatCAMGUI.py:722 flatcamGUI/FlatCAMGUI.py:1926 +#: flatcamGUI/FlatCAMGUI.py:723 flatcamGUI/FlatCAMGUI.py:1944 msgid "Snap to grid" msgstr "Lipire la grid" -#: flatcamGUI/FlatCAMGUI.py:725 flatcamGUI/FlatCAMGUI.py:1929 +#: flatcamGUI/FlatCAMGUI.py:726 flatcamGUI/FlatCAMGUI.py:1947 msgid "Grid X snapping distance" msgstr "Distanta de lipire la grid pe axa X" -#: flatcamGUI/FlatCAMGUI.py:730 flatcamGUI/FlatCAMGUI.py:1934 +#: flatcamGUI/FlatCAMGUI.py:731 flatcamGUI/FlatCAMGUI.py:1952 msgid "Grid Y snapping distance" msgstr "Distanta de lipire la grid pe axa Y" -#: flatcamGUI/FlatCAMGUI.py:736 flatcamGUI/FlatCAMGUI.py:1940 +#: flatcamGUI/FlatCAMGUI.py:737 flatcamGUI/FlatCAMGUI.py:1958 msgid "" "When active, value on Grid_X\n" "is copied to the Grid_Y value." @@ -4453,64 +4431,64 @@ msgstr "" "când este activ, valoarea de pe Grid_X\n" "este copiata și in Grid_Y" -#: flatcamGUI/FlatCAMGUI.py:742 flatcamGUI/FlatCAMGUI.py:1946 +#: flatcamGUI/FlatCAMGUI.py:743 flatcamGUI/FlatCAMGUI.py:1964 msgid "Snap to corner" msgstr "Lipire la colt" -#: flatcamGUI/FlatCAMGUI.py:746 flatcamGUI/FlatCAMGUI.py:1950 -#: flatcamGUI/FlatCAMGUI.py:3286 +#: flatcamGUI/FlatCAMGUI.py:747 flatcamGUI/FlatCAMGUI.py:1968 +#: flatcamGUI/FlatCAMGUI.py:3311 msgid "Max. magnet distance" msgstr "Distanta magnetica maxima" -#: flatcamGUI/FlatCAMGUI.py:760 flatcamGUI/FlatCAMGUI.py:1556 +#: flatcamGUI/FlatCAMGUI.py:775 flatcamGUI/FlatCAMGUI.py:1572 msgid "Project" msgstr "Proiect" -#: flatcamGUI/FlatCAMGUI.py:769 +#: flatcamGUI/FlatCAMGUI.py:785 msgid "Selected" msgstr "Selectat" -#: flatcamGUI/FlatCAMGUI.py:788 flatcamGUI/FlatCAMGUI.py:796 +#: flatcamGUI/FlatCAMGUI.py:804 flatcamGUI/FlatCAMGUI.py:812 msgid "Plot Area" msgstr "Arie Afișare" -#: flatcamGUI/FlatCAMGUI.py:820 +#: flatcamGUI/FlatCAMGUI.py:836 msgid "General" msgstr "General" -#: flatcamGUI/FlatCAMGUI.py:829 +#: flatcamGUI/FlatCAMGUI.py:845 msgid "APP. DEFAULTS" msgstr "Default for App" -#: flatcamGUI/FlatCAMGUI.py:830 +#: flatcamGUI/FlatCAMGUI.py:846 msgid "PROJ. OPTIONS " msgstr "Opțiuni Proiect" -#: flatcamGUI/FlatCAMGUI.py:841 +#: flatcamGUI/FlatCAMGUI.py:857 msgid "GERBER" msgstr "GERBER" -#: flatcamGUI/FlatCAMGUI.py:850 +#: flatcamGUI/FlatCAMGUI.py:866 msgid "EXCELLON" msgstr "EXCELLON" -#: flatcamGUI/FlatCAMGUI.py:859 +#: flatcamGUI/FlatCAMGUI.py:875 msgid "GEOMETRY" msgstr "GEOMETRIE" -#: flatcamGUI/FlatCAMGUI.py:869 +#: flatcamGUI/FlatCAMGUI.py:885 msgid "CNC-JOB" msgstr "CNCJob" -#: flatcamGUI/FlatCAMGUI.py:878 +#: flatcamGUI/FlatCAMGUI.py:894 msgid "TOOLS" msgstr "Unelte" -#: flatcamGUI/FlatCAMGUI.py:895 +#: flatcamGUI/FlatCAMGUI.py:911 msgid "Import Preferences" msgstr "Importa Preferințele" -#: flatcamGUI/FlatCAMGUI.py:898 +#: flatcamGUI/FlatCAMGUI.py:914 msgid "" "Import a full set of FlatCAM settings from a file\n" "previously saved on HDD.\n" @@ -4518,45 +4496,45 @@ msgid "" "FlatCAM automatically save a 'factory_defaults' file\n" "on the first start. Do not delete that file." msgstr "" -"Importa un set complet de setari ale FlatCAM dintr-un fişier\n" +"Importa un set complet de setări ale FlatCAM dintr-un fişier\n" "care a fost anterior salvat pe HDD..\n" "\n" "FlatCAM salvează automat un fişier numit 'factory_defaults'\n" "la prima pornire. Nu șterge acel fişier." -#: flatcamGUI/FlatCAMGUI.py:905 +#: flatcamGUI/FlatCAMGUI.py:921 msgid "Export Preferences" msgstr "Exporta Preferințele" -#: flatcamGUI/FlatCAMGUI.py:908 +#: flatcamGUI/FlatCAMGUI.py:924 msgid "" "Export a full set of FlatCAM settings in a file\n" "that is saved on HDD." msgstr "" -"Exporta un set complet de setari ale FlatCAM\n" +"Exporta un set complet de setări ale FlatCAM\n" "intr-un fişier care se salvează pe HDD." -#: flatcamGUI/FlatCAMGUI.py:913 +#: flatcamGUI/FlatCAMGUI.py:929 msgid "Open Pref Folder" msgstr "Deschide Pref Dir" -#: flatcamGUI/FlatCAMGUI.py:916 +#: flatcamGUI/FlatCAMGUI.py:932 msgid "Open the folder where FlatCAM save the preferences files." -msgstr "Deschide directorul unde FlatCAM salvează fişierele cu setari." +msgstr "Deschide directorul unde FlatCAM salvează fişierele cu setări." -#: flatcamGUI/FlatCAMGUI.py:924 +#: flatcamGUI/FlatCAMGUI.py:940 msgid "Save Preferences" msgstr "Salvează Pref" -#: flatcamGUI/FlatCAMGUI.py:927 +#: flatcamGUI/FlatCAMGUI.py:943 msgid "" "Save the current settings in the 'current_defaults' file\n" "which is the file storing the working default preferences." msgstr "" -"Salvează setarile curente in fişierul numit: 'current_defaults'\n" +"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:953 +#: flatcamGUI/FlatCAMGUI.py:969 msgid "" "General Shortcut list
\n" " \n" " \n" " \n" -" \n" +" \n" " \n" " \n" " \n" @@ -4989,15 +4967,15 @@ msgstr "" " \n" " \n" " \n" -" \n" +" \n" " \n" " \n" " \n" -" \n" +" \n" " \n" " \n" " \n" -" \n" +" \n" " \n" " \n" " \n" @@ -5013,7 +4991,7 @@ msgstr "" " \n" " \n" " \n" -" \n" +" \n" " \n" " \n" " \n" @@ -5082,7 +5060,7 @@ msgstr "" " \n" " \n" " \n" -" \n" +" \n" " \n" " \n" " \n" @@ -5106,7 +5084,7 @@ msgstr "" " \n" " \n" " \n" -" \n" " \n" " \n" @@ -5122,7 +5100,7 @@ msgstr "" " \n" " " -#: flatcamGUI/FlatCAMGUI.py:1238 +#: flatcamGUI/FlatCAMGUI.py:1254 msgid "" "Editor Shortcut list
\n" "
\n" @@ -5456,7 +5434,7 @@ msgstr "" " \n" " \n" " \n" -" \n" +" \n" " \n" " \n" " \n" @@ -5477,7 +5455,7 @@ msgstr "" " \n" " \n" " \n" -" \n" +" \n" " \n" " \n" " \n" @@ -5583,7 +5561,7 @@ msgstr "" " \n" " \n" " \n" -" \n" " \n" @@ -5606,7 +5584,7 @@ msgstr "" " \n" " \n" " \n" -" \n" +" \n" " \n" " \n" " \n" @@ -5646,7 +5624,7 @@ msgstr "" " \n" " \n" " \n" -" \n" " \n" @@ -5732,7 +5710,7 @@ msgstr "" " \n" " \n" " \n" -" \n" " \n" @@ -5751,105 +5729,99 @@ msgstr "" "
CTRL+F10 Comuta Aria de AfiÈ™are Comută Aria de AfiÈ™are
 
SHIFT+C Copiaza Nume Obiect Copiază Nume Obiect
SHIFT+E Comuta Editor Cod Comută Editor Cod
SHIFT+G Comuta Axele Comută Axele
SHIFT+P
SHIFT+W Comuta Spatiul de Lucru Comută Spatiul de Lucru
SHIFT+X
ALT+F10 Comuta Full Screen Comută Full Screen
 
'`' (in stânga Tasta_1)Comuta Aria Notebook " +"  (in stânga Tasta_1)Comută Aria Notebook " "(in stânga)
C Copiaza o geometrie Copiază o geometrie
D
K Comuta magnet colt Comută magnet colt
M
ESC Renunta si revino la Unealta Selectie Renunță si revino la Unealta Selectie\n" "
C Copiaza gauri Copiază gauri
D
ESC Renunta si revino la Unealta de Selectie Renunță si revino la Unealta de Selectie\n" "
ESC Renunta si revino la Unealta Selectie Renunță si revino la Unealta Selectie\n" "
\n" " " -#: flatcamGUI/FlatCAMGUI.py:1550 +#: flatcamGUI/FlatCAMGUI.py:1566 msgid "Disable" msgstr "Dezactivează" -#: flatcamGUI/FlatCAMGUI.py:1552 +#: flatcamGUI/FlatCAMGUI.py:1568 msgid "New" msgstr "Nou" -#: flatcamGUI/FlatCAMGUI.py:1553 +#: flatcamGUI/FlatCAMGUI.py:1569 msgid "Geometry" msgstr "Geometrie" -#: flatcamGUI/FlatCAMGUI.py:1554 +#: flatcamGUI/FlatCAMGUI.py:1570 msgid "Excellon" msgstr "Excellon" -#: flatcamGUI/FlatCAMGUI.py:1559 +#: flatcamGUI/FlatCAMGUI.py:1575 msgid "Grids" msgstr "Grid-uri" -#: flatcamGUI/FlatCAMGUI.py:1561 +#: flatcamGUI/FlatCAMGUI.py:1577 msgid "View" msgstr "Vizualizare" -#: flatcamGUI/FlatCAMGUI.py:1563 +#: flatcamGUI/FlatCAMGUI.py:1579 msgid "Clear Plot" msgstr "Șterge Afișare" -#: flatcamGUI/FlatCAMGUI.py:1564 +#: flatcamGUI/FlatCAMGUI.py:1580 msgid "Replot" msgstr "Reafișare" -#: flatcamGUI/FlatCAMGUI.py:1567 +#: flatcamGUI/FlatCAMGUI.py:1583 msgid "Geo Editor" msgstr "Editor Geometrii" -#: flatcamGUI/FlatCAMGUI.py:1568 +#: flatcamGUI/FlatCAMGUI.py:1584 msgid "Line" msgstr "Linie" -#: flatcamGUI/FlatCAMGUI.py:1569 +#: flatcamGUI/FlatCAMGUI.py:1585 msgid "Rectangle" msgstr "Patrulater" -#: flatcamGUI/FlatCAMGUI.py:1570 flatcamGUI/FlatCAMGUI.py:5110 -#: flatcamGUI/ObjectUI.py:1360 +#: flatcamGUI/FlatCAMGUI.py:1586 msgid "Cut" msgstr "Tăiere" -#: flatcamGUI/FlatCAMGUI.py:1575 +#: flatcamGUI/FlatCAMGUI.py:1591 msgid "Pad" msgstr "Pad" -#: flatcamGUI/FlatCAMGUI.py:1576 +#: flatcamGUI/FlatCAMGUI.py:1592 msgid "Pad Array" msgstr "Arie de paduri" -#: flatcamGUI/FlatCAMGUI.py:1577 +#: flatcamGUI/FlatCAMGUI.py:1593 msgid "Track" msgstr "Traseu" -#: flatcamGUI/FlatCAMGUI.py:1578 +#: flatcamGUI/FlatCAMGUI.py:1594 msgid "Region" msgstr "Regiune" -#: flatcamGUI/FlatCAMGUI.py:1584 +#: flatcamGUI/FlatCAMGUI.py:1596 msgid "Exc Editor" msgstr "Editor EXC." -#: flatcamGUI/FlatCAMGUI.py:1585 +#: flatcamGUI/FlatCAMGUI.py:1597 msgid "Add Drill" msgstr "Adaugă găurire" -#: flatcamGUI/FlatCAMGUI.py:1587 -msgid "Copy Drill(s)" -msgstr "Copiaza Găurire" - -#: flatcamGUI/FlatCAMGUI.py:1618 +#: flatcamGUI/FlatCAMGUI.py:1629 msgid "Print Preview" msgstr "Preview tiparire" -#: flatcamGUI/FlatCAMGUI.py:1619 +#: flatcamGUI/FlatCAMGUI.py:1630 msgid "Print Code" msgstr "Tipareste Cod" -#: flatcamGUI/FlatCAMGUI.py:1620 +#: flatcamGUI/FlatCAMGUI.py:1631 msgid "Find in Code" msgstr "Cauta in Cod" -#: flatcamGUI/FlatCAMGUI.py:1625 +#: flatcamGUI/FlatCAMGUI.py:1636 msgid "Replace With" msgstr "Inlocuieste cu" -#: flatcamGUI/FlatCAMGUI.py:1629 flatcamGUI/FlatCAMGUI.py:5108 -#: flatcamGUI/FlatCAMGUI.py:5618 flatcamGUI/ObjectUI.py:1358 +#: flatcamGUI/FlatCAMGUI.py:1640 msgid "All" msgstr "Toate" -#: flatcamGUI/FlatCAMGUI.py:1631 +#: flatcamGUI/FlatCAMGUI.py:1642 msgid "" "When checked it will replace all instances in the 'Find' box\n" "with the text in the 'Replace' box.." @@ -5858,15 +5830,15 @@ msgstr "" "'Cauta'\n" "cu textul din casuta 'Inlocuieste'" -#: flatcamGUI/FlatCAMGUI.py:1634 +#: flatcamGUI/FlatCAMGUI.py:1645 msgid "Open Code" msgstr "Deschide Cod" -#: flatcamGUI/FlatCAMGUI.py:1635 +#: flatcamGUI/FlatCAMGUI.py:1646 msgid "Save Code" msgstr "Salvează Cod" -#: flatcamGUI/FlatCAMGUI.py:1670 +#: flatcamGUI/FlatCAMGUI.py:1681 msgid "" "Relative neasurement.\n" "Reference is last click position" @@ -5874,7 +5846,7 @@ msgstr "" "Masuratoare relativa.\n" "Referința este poziţia ultimului click pe canvas." -#: flatcamGUI/FlatCAMGUI.py:1676 +#: flatcamGUI/FlatCAMGUI.py:1687 msgid "" "Absolute neasurement.\n" "Reference is (X=0, Y= 0) position" @@ -5882,23 +5854,23 @@ msgstr "" "Masuratoare absoluta.\n" "Referința este originea (0, 0)." -#: flatcamGUI/FlatCAMGUI.py:1869 +#: flatcamGUI/FlatCAMGUI.py:1882 msgid "Select 'Esc'" msgstr "Select" -#: flatcamGUI/FlatCAMGUI.py:1894 +#: flatcamGUI/FlatCAMGUI.py:1907 msgid "Copy Objects" -msgstr "Copiaza Obiecte" +msgstr "Copiază Obiecte" -#: flatcamGUI/FlatCAMGUI.py:1896 +#: flatcamGUI/FlatCAMGUI.py:1909 msgid "Delete Shape" msgstr "Șterge forme geo" -#: flatcamGUI/FlatCAMGUI.py:1901 +#: flatcamGUI/FlatCAMGUI.py:1914 msgid "Move Objects" msgstr "Muta Obiecte" -#: flatcamGUI/FlatCAMGUI.py:2319 +#: flatcamGUI/FlatCAMGUI.py:2343 msgid "" "Please first select a geometry item to be cutted\n" "then select the geometry item that will be cutted\n" @@ -5909,17 +5881,17 @@ msgstr "" "apoi selectează forma geo. taietoare. La final apasa tasta ~X~ sau\n" "butonul corespunzator din Toolbar." -#: flatcamGUI/FlatCAMGUI.py:2326 flatcamGUI/FlatCAMGUI.py:2463 -#: flatcamGUI/FlatCAMGUI.py:2522 flatcamGUI/FlatCAMGUI.py:2542 +#: flatcamGUI/FlatCAMGUI.py:2350 flatcamGUI/FlatCAMGUI.py:2487 +#: flatcamGUI/FlatCAMGUI.py:2546 flatcamGUI/FlatCAMGUI.py:2566 msgid "Warning" msgstr "Atenţie" -#: flatcamGUI/FlatCAMGUI.py:2393 flatcamGUI/FlatCAMGUI.py:2592 -#: flatcamGUI/FlatCAMGUI.py:2803 +#: flatcamGUI/FlatCAMGUI.py:2417 flatcamGUI/FlatCAMGUI.py:2616 +#: flatcamGUI/FlatCAMGUI.py:2827 msgid "[WARNING_NOTCL] Cancelled." msgstr "[WARNING_NOTCL] Anulat." -#: flatcamGUI/FlatCAMGUI.py:2458 +#: flatcamGUI/FlatCAMGUI.py:2482 msgid "" "Please select geometry items \n" "on which to perform Intersection Tool." @@ -5927,7 +5899,7 @@ msgstr "" "Selectează forma geometrică asupra careia să se\n" "aplice Unealta Intersecţie." -#: flatcamGUI/FlatCAMGUI.py:2517 +#: flatcamGUI/FlatCAMGUI.py:2541 msgid "" "Please select geometry items \n" "on which to perform Substraction Tool." @@ -5935,7 +5907,7 @@ msgstr "" "Selectează forma geometrică asupra careia să se\n" "aplice Unealta Substracţie." -#: flatcamGUI/FlatCAMGUI.py:2537 +#: flatcamGUI/FlatCAMGUI.py:2561 msgid "" "Please select geometry items \n" "on which to perform union." @@ -5943,55 +5915,55 @@ msgstr "" "Selectează forma geometrică asupra careia să se\n" "aplice Unealta Uniune." -#: flatcamGUI/FlatCAMGUI.py:2608 flatcamGUI/FlatCAMGUI.py:2820 +#: flatcamGUI/FlatCAMGUI.py:2632 flatcamGUI/FlatCAMGUI.py:2844 msgid "[WARNING_NOTCL] Cancelled. Nothing selected to delete." msgstr "[WARNING_NOTCL] Anulat. Nimic nu este selectat pentru ștergere." -#: flatcamGUI/FlatCAMGUI.py:2692 flatcamGUI/FlatCAMGUI.py:2887 +#: flatcamGUI/FlatCAMGUI.py:2716 flatcamGUI/FlatCAMGUI.py:2911 msgid "[WARNING_NOTCL] Cancelled. Nothing selected to copy." msgstr "[WARNING_NOTCL] Anulat. Nimic nu este selectat pentru copiere." -#: flatcamGUI/FlatCAMGUI.py:2738 flatcamGUI/FlatCAMGUI.py:2933 +#: flatcamGUI/FlatCAMGUI.py:2762 flatcamGUI/FlatCAMGUI.py:2957 msgid "[WARNING_NOTCL] Cancelled. Nothing selected to move." msgstr "[WARNING_NOTCL] Anulat. Nimic nu este selectat pentru mutare." -#: flatcamGUI/FlatCAMGUI.py:2947 +#: flatcamGUI/FlatCAMGUI.py:2971 msgid "New Tool ..." msgstr "O noua Unealta ..." -#: flatcamGUI/FlatCAMGUI.py:2948 +#: flatcamGUI/FlatCAMGUI.py:2972 msgid "Enter a Tool Diameter:" msgstr "Introdu un Diametru de Unealta:" -#: flatcamGUI/FlatCAMGUI.py:2990 +#: flatcamGUI/FlatCAMGUI.py:3014 msgid "Measurement Tool exit..." msgstr "Măsurătoarea s-a terminat ..." -#: flatcamGUI/FlatCAMGUI.py:3271 +#: flatcamGUI/FlatCAMGUI.py:3296 msgid "Grid X value:" msgstr "Valoarea Grid_X:" -#: flatcamGUI/FlatCAMGUI.py:3273 +#: flatcamGUI/FlatCAMGUI.py:3298 msgid "This is the Grid snap value on X axis." msgstr "Aceasta este valoare pentru lipire pe Grid pe axa X." -#: flatcamGUI/FlatCAMGUI.py:3278 +#: flatcamGUI/FlatCAMGUI.py:3303 msgid "Grid Y value:" msgstr "Valoarea Grid_Y:" -#: flatcamGUI/FlatCAMGUI.py:3280 +#: flatcamGUI/FlatCAMGUI.py:3305 msgid "This is the Grid snap value on Y axis." msgstr "Aceasta este valoare pentru lipire pe Grid pe axa Y." -#: flatcamGUI/FlatCAMGUI.py:3285 +#: flatcamGUI/FlatCAMGUI.py:3310 msgid "Snap Max:" msgstr "Lipire Max:" -#: flatcamGUI/FlatCAMGUI.py:3290 +#: flatcamGUI/FlatCAMGUI.py:3315 msgid "Workspace:" msgstr "Spatiu de lucru:" -#: flatcamGUI/FlatCAMGUI.py:3292 +#: flatcamGUI/FlatCAMGUI.py:3317 msgid "" "Draw a delimiting rectangle on canvas.\n" "The purpose is to illustrate the limits for our work." @@ -5999,11 +5971,11 @@ msgstr "" "Desenează un patrulater care delimitează o asuprafata de lucru.\n" "Scopul este de a ilustra limitele suprafetei noastre de lucru." -#: flatcamGUI/FlatCAMGUI.py:3295 +#: flatcamGUI/FlatCAMGUI.py:3320 msgid "Wk. format:" msgstr "Format SL:" -#: flatcamGUI/FlatCAMGUI.py:3297 +#: flatcamGUI/FlatCAMGUI.py:3322 msgid "" "Select the type of rectangle to be used on canvas,\n" "as valid workspace." @@ -6011,11 +5983,11 @@ msgstr "" "Selectează tipul de patrulater care va fi desenat pe canvas,\n" "pentru a delimita suprafata de lucru disponibila (SL)." -#: flatcamGUI/FlatCAMGUI.py:3310 +#: flatcamGUI/FlatCAMGUI.py:3335 msgid "Plot Fill:" msgstr "Culoare Afișare:" -#: flatcamGUI/FlatCAMGUI.py:3312 +#: flatcamGUI/FlatCAMGUI.py:3337 msgid "" "Set the fill color for plotted objects.\n" "First 6 digits are the color and the last 2\n" @@ -6025,28 +5997,28 @@ msgstr "" "Primii 6 digiti sunt culoarea efectiva și ultimii\n" "doi sunt pentru nivelul de transparenţă (alfa)." -#: flatcamGUI/FlatCAMGUI.py:3326 flatcamGUI/FlatCAMGUI.py:3376 -#: flatcamGUI/FlatCAMGUI.py:3426 +#: flatcamGUI/FlatCAMGUI.py:3351 flatcamGUI/FlatCAMGUI.py:3401 +#: flatcamGUI/FlatCAMGUI.py:3451 msgid "Alpha Level:" msgstr "Nivel Alfa:" -#: flatcamGUI/FlatCAMGUI.py:3328 +#: flatcamGUI/FlatCAMGUI.py:3353 msgid "Set the fill transparency for plotted objects." msgstr "Setează nivelul de transparenţa pentru obiectele afisate." -#: flatcamGUI/FlatCAMGUI.py:3345 +#: flatcamGUI/FlatCAMGUI.py:3370 msgid "Plot Line:" msgstr "Culoare contur:" -#: flatcamGUI/FlatCAMGUI.py:3347 +#: flatcamGUI/FlatCAMGUI.py:3372 msgid "Set the line color for plotted objects." msgstr "Setează culoarea conturului." -#: flatcamGUI/FlatCAMGUI.py:3359 +#: flatcamGUI/FlatCAMGUI.py:3384 msgid "Sel. Fill:" msgstr "Culoare Selecţie:" -#: flatcamGUI/FlatCAMGUI.py:3361 +#: flatcamGUI/FlatCAMGUI.py:3386 msgid "" "Set the fill color for the selection box\n" "in case that the selection is done from left to right.\n" @@ -6058,27 +6030,27 @@ msgstr "" "Primii 6 digiti sunt culoarea efectiva și ultimii\n" "doi sunt pentru nivelul de transparenţă (alfa)." -#: flatcamGUI/FlatCAMGUI.py:3378 +#: flatcamGUI/FlatCAMGUI.py:3403 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:3395 +#: flatcamGUI/FlatCAMGUI.py:3420 msgid "Sel. Line:" msgstr "Contur Selecţie:" -#: flatcamGUI/FlatCAMGUI.py:3397 +#: flatcamGUI/FlatCAMGUI.py:3422 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:3409 +#: flatcamGUI/FlatCAMGUI.py:3434 msgid "Sel2. Fill:" msgstr "Culoare Selecţie 2:" -#: flatcamGUI/FlatCAMGUI.py:3411 +#: flatcamGUI/FlatCAMGUI.py:3436 msgid "" "Set the fill color for the selection box\n" "in case that the selection is done from right to left.\n" @@ -6090,49 +6062,69 @@ msgstr "" "Primii 6 digiti sunt culoarea efectiva și ultimii\n" "doi sunt pentru nivelul de transparenţă (alfa)." -#: flatcamGUI/FlatCAMGUI.py:3428 +#: flatcamGUI/FlatCAMGUI.py:3453 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:3445 +#: flatcamGUI/FlatCAMGUI.py:3470 msgid "Sel2. Line:" msgstr "Contur Selecţie 2:" -#: flatcamGUI/FlatCAMGUI.py:3447 +#: flatcamGUI/FlatCAMGUI.py:3472 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:3459 +#: flatcamGUI/FlatCAMGUI.py:3484 msgid "Editor Draw:" msgstr "Desen Editor:" -#: flatcamGUI/FlatCAMGUI.py:3461 +#: flatcamGUI/FlatCAMGUI.py:3486 msgid "Set the color for the shape." msgstr "Setează culoarea pentru forma geometrică din Editor." -#: flatcamGUI/FlatCAMGUI.py:3473 +#: flatcamGUI/FlatCAMGUI.py:3498 msgid "Editor Draw Sel.:" msgstr "Sel. Desen Editor:" -#: flatcamGUI/FlatCAMGUI.py:3475 +#: flatcamGUI/FlatCAMGUI.py:3500 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:3522 -msgid "GUI Settings" -msgstr "Setari GUI" +#: flatcamGUI/FlatCAMGUI.py:3512 +msgid "Project Items:" +msgstr "Elemente Proiect:" -#: flatcamGUI/FlatCAMGUI.py:3529 +#: flatcamGUI/FlatCAMGUI.py:3514 +msgid "Set the color of the items in Project Tab Tree." +msgstr "Setează culoarea elementelor din tab-ul Proiect." + +#: flatcamGUI/FlatCAMGUI.py:3525 +msgid "Proj. Dis. Items:" +msgstr "Elem. proj. dez." + +#: flatcamGUI/FlatCAMGUI.py:3527 +msgid "" +"Set the color of the items in Project Tab Tree,\n" +"for the case when the items are disabled." +msgstr "" +"Setează culoarea elementelor din tab-ul Proiect\n" +"in cazul in care elementele sunt dezactivate." + +#: flatcamGUI/FlatCAMGUI.py:3578 +msgid "GUI Settings" +msgstr "Setări GUI" + +#: flatcamGUI/FlatCAMGUI.py:3585 msgid "Layout:" msgstr "Amplasare:" -#: flatcamGUI/FlatCAMGUI.py:3531 +#: flatcamGUI/FlatCAMGUI.py:3587 msgid "" "Select an layout for FlatCAM.\n" "It is applied immediately." @@ -6140,11 +6132,11 @@ msgstr "" "Selectează un stil de amplasare a elementelor GUI in FlatCAM.\n" "Se aplica imediat." -#: flatcamGUI/FlatCAMGUI.py:3547 +#: flatcamGUI/FlatCAMGUI.py:3603 msgid "Style:" msgstr "Stil:" -#: flatcamGUI/FlatCAMGUI.py:3549 +#: flatcamGUI/FlatCAMGUI.py:3605 msgid "" "Select an style for FlatCAM.\n" "It will be applied at the next app start." @@ -6152,11 +6144,11 @@ msgstr "" "Selectează un stil pentru FlatCAM.\n" "Se va aplica la urmatoarea pornire a aplicaţiei." -#: flatcamGUI/FlatCAMGUI.py:3560 +#: flatcamGUI/FlatCAMGUI.py:3616 msgid "HDPI Support:" msgstr "Suport H-DPI:" -#: flatcamGUI/FlatCAMGUI.py:3562 +#: flatcamGUI/FlatCAMGUI.py:3618 msgid "" "Enable High DPI support for FlatCAM.\n" "It will be applied at the next app start." @@ -6165,27 +6157,27 @@ msgstr "" "Util pentru monitoarele 4k.\n" "Va fi aplicată la următoarea pornire a aplicaţiei." -#: flatcamGUI/FlatCAMGUI.py:3575 +#: flatcamGUI/FlatCAMGUI.py:3631 msgid "Clear GUI Settings:" -msgstr "Șterge setarile GUI:" +msgstr "Șterge setările GUI:" -#: flatcamGUI/FlatCAMGUI.py:3577 +#: flatcamGUI/FlatCAMGUI.py:3633 msgid "" "Clear the GUI settings for FlatCAM,\n" "such as: layout, gui state, style, hdpi support etc." msgstr "" -"Șterge setarile GUI pentru FlatCAM,\n" +"Șterge setările GUI pentru FlatCAM,\n" "cum ar fi: amplasare, stare UI, suport HDPI sau traducerea." -#: flatcamGUI/FlatCAMGUI.py:3580 +#: flatcamGUI/FlatCAMGUI.py:3636 msgid "Clear" msgstr "Șterge" -#: flatcamGUI/FlatCAMGUI.py:3584 +#: flatcamGUI/FlatCAMGUI.py:3640 msgid "Hover Shape:" msgstr "Forma Hover:" -#: flatcamGUI/FlatCAMGUI.py:3586 +#: flatcamGUI/FlatCAMGUI.py:3642 msgid "" "Enable display of a hover shape for FlatCAM objects.\n" "It is displayed whenever the mouse cursor is hovering\n" @@ -6195,23 +6187,39 @@ msgstr "" "in canvas-ul FlatCAM. Forma este afișată doar daca obiectul \n" "nu este selectat." -#: flatcamGUI/FlatCAMGUI.py:3626 +#: flatcamGUI/FlatCAMGUI.py:3649 +msgid "Sel. Shape:" +msgstr "Forma Sel.:" + +#: flatcamGUI/FlatCAMGUI.py:3651 +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 "" +"Activează o formă de selectie pt obiectele FlatCAM.\n" +"Se afisează când mouse-ul selectează un obiect\n" +"pe canvas-ul FlatCAM fie facând click pe obiect fie prin\n" +"crearea unei ferestre de selectie." + +#: flatcamGUI/FlatCAMGUI.py:3693 msgid "Are you sure you want to delete the GUI Settings? \n" -msgstr "Esti sigur că dorești să ștergi setarile GUI?\n" +msgstr "Esti sigur că dorești să ștergi setările GUI?\n" -#: flatcamGUI/FlatCAMGUI.py:3629 +#: flatcamGUI/FlatCAMGUI.py:3696 msgid "Clear GUI Settings" -msgstr "Șterge Setarile GUI" +msgstr "Șterge Setările GUI" -#: flatcamGUI/FlatCAMGUI.py:3650 +#: flatcamGUI/FlatCAMGUI.py:3717 msgid "App Preferences" msgstr "Preferințele Aplicaţie" -#: flatcamGUI/FlatCAMGUI.py:3656 +#: flatcamGUI/FlatCAMGUI.py:3723 msgid "Units:" msgstr "Unitati:" -#: flatcamGUI/FlatCAMGUI.py:3657 +#: flatcamGUI/FlatCAMGUI.py:3724 msgid "" "The default value for FlatCAM units.\n" "Whatever is selected here is set every time\n" @@ -6220,11 +6228,11 @@ msgstr "" "Unitatea de masura pt FlatCAM.\n" "Este setată la fiecare pornire a programului." -#: flatcamGUI/FlatCAMGUI.py:3664 +#: flatcamGUI/FlatCAMGUI.py:3731 msgid "APP. LEVEL:" msgstr "Nivel aplic.:" -#: flatcamGUI/FlatCAMGUI.py:3665 +#: flatcamGUI/FlatCAMGUI.py:3732 msgid "" "Choose the default level of usage for FlatCAM.\n" "BASIC level -> reduced functionality, best for beginner's.\n" @@ -6240,57 +6248,65 @@ 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:3670 flatcamGUI/FlatCAMGUI.py:4295 -msgid "Basic" -msgstr "Baza" - -#: flatcamGUI/FlatCAMGUI.py:3671 -msgid "Advanced" -msgstr "Avansat" - -#: flatcamGUI/FlatCAMGUI.py:3674 +#: flatcamGUI/FlatCAMGUI.py:3741 msgid "Languages:" msgstr "Traduceri:" -#: flatcamGUI/FlatCAMGUI.py:3675 +#: flatcamGUI/FlatCAMGUI.py:3742 msgid "Set the language used throughout FlatCAM." msgstr "Setează limba folosita pentru textele din FlatCAM." -#: flatcamGUI/FlatCAMGUI.py:3678 +#: flatcamGUI/FlatCAMGUI.py:3745 msgid "Apply Language" msgstr "Aplica Traducere" -#: flatcamGUI/FlatCAMGUI.py:3681 +#: flatcamGUI/FlatCAMGUI.py:3746 +msgid "" +"Set the language used throughout FlatCAM.\n" +"The app will restart after click.Windows: When FlatCAM is installed in " +"Program Files\n" +"directory, it is possible that the app will not\n" +"restart after the button is clicked due of Windows\n" +"security features. In this case the language will be\n" +"applied at the next app start." +msgstr "" +"Seteaza limba folosita 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. " + +#: flatcamGUI/FlatCAMGUI.py:3755 msgid "Shell at StartUp:" msgstr "Shell la pornire:" -#: flatcamGUI/FlatCAMGUI.py:3683 flatcamGUI/FlatCAMGUI.py:3688 +#: flatcamGUI/FlatCAMGUI.py:3757 flatcamGUI/FlatCAMGUI.py:3762 msgid "" "Check this box if you want the shell to\n" "start automatically at startup." msgstr "" -"Bifează in cazul in care se doreste pornirea\n" +"Bifează in cazul in care se dorește pornirea\n" "automata a ferestrei Shell (linia de comanda)\n" "la initializarea aplicaţiei." -#: flatcamGUI/FlatCAMGUI.py:3693 +#: flatcamGUI/FlatCAMGUI.py:3767 msgid "Version Check:" msgstr "Verificare versiune:" -#: flatcamGUI/FlatCAMGUI.py:3695 flatcamGUI/FlatCAMGUI.py:3700 +#: flatcamGUI/FlatCAMGUI.py:3769 flatcamGUI/FlatCAMGUI.py:3774 msgid "" "Check this box if you want to check\n" "for a new version automatically at startup." msgstr "" -"Bifează daca se doreste verificarea automata\n" +"Bifează daca se dorește verificarea automata\n" "daca exista o versiune mai noua,\n" "la pornirea aplicaţiei." -#: flatcamGUI/FlatCAMGUI.py:3705 +#: flatcamGUI/FlatCAMGUI.py:3779 msgid "Send Stats:" msgstr "Statistici:" -#: flatcamGUI/FlatCAMGUI.py:3707 flatcamGUI/FlatCAMGUI.py:3712 +#: flatcamGUI/FlatCAMGUI.py:3781 flatcamGUI/FlatCAMGUI.py:3786 msgid "" "Check this box if you agree to send anonymous\n" "stats automatically at startup, to help improve FlatCAM." @@ -6300,11 +6316,11 @@ msgstr "" "aplicaţia. In acest fel dezvoltatorii vor sti unde să se focalizeze\n" "in crearea de inbunatatiri." -#: flatcamGUI/FlatCAMGUI.py:3719 +#: flatcamGUI/FlatCAMGUI.py:3793 msgid "Pan Button:" msgstr "Buton Pan (mișcare):" -#: flatcamGUI/FlatCAMGUI.py:3720 +#: flatcamGUI/FlatCAMGUI.py:3794 msgid "" "Select the mouse button to use for panning:\n" "- MMB --> Middle Mouse Button\n" @@ -6314,35 +6330,19 @@ msgstr "" "- MMB - butonul din mijloc al mouse-ului\n" "- RMB - butonul in dreapta al mouse-ului." -#: flatcamGUI/FlatCAMGUI.py:3723 -msgid "MMB" -msgstr "MMB" - -#: flatcamGUI/FlatCAMGUI.py:3724 -msgid "RMB" -msgstr "RMB" - -#: flatcamGUI/FlatCAMGUI.py:3727 +#: flatcamGUI/FlatCAMGUI.py:3801 msgid "Multiple Sel:" msgstr "Sel. multipla:" -#: flatcamGUI/FlatCAMGUI.py:3728 +#: flatcamGUI/FlatCAMGUI.py:3802 msgid "Select the key used for multiple selection." msgstr "Selectează tasta folosita pentru selectia multipla." -#: flatcamGUI/FlatCAMGUI.py:3729 -msgid "CTRL" -msgstr "CTRL" - -#: flatcamGUI/FlatCAMGUI.py:3730 -msgid "SHIFT" -msgstr "SHIFT" - -#: flatcamGUI/FlatCAMGUI.py:3733 +#: flatcamGUI/FlatCAMGUI.py:3807 msgid "Project at StartUp:" msgstr "Proiect la pornire:" -#: flatcamGUI/FlatCAMGUI.py:3735 flatcamGUI/FlatCAMGUI.py:3740 +#: flatcamGUI/FlatCAMGUI.py:3809 flatcamGUI/FlatCAMGUI.py:3814 msgid "" "Check this box if you want the project/selected/tool tab area to\n" "to be shown automatically at startup." @@ -6350,11 +6350,11 @@ msgstr "" "Bifează aici daca dorești ca zona Notebook să fie\n" "afișată automat la pornire." -#: flatcamGUI/FlatCAMGUI.py:3745 +#: flatcamGUI/FlatCAMGUI.py:3819 msgid "Project AutoHide:" msgstr "Ascundere Proiect:" -#: flatcamGUI/FlatCAMGUI.py:3747 flatcamGUI/FlatCAMGUI.py:3753 +#: flatcamGUI/FlatCAMGUI.py:3821 flatcamGUI/FlatCAMGUI.py:3827 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" @@ -6364,11 +6364,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:3759 +#: flatcamGUI/FlatCAMGUI.py:3833 msgid "Enable ToolTips:" msgstr "Activează ToolTip-uri:" -#: flatcamGUI/FlatCAMGUI.py:3761 flatcamGUI/FlatCAMGUI.py:3766 +#: flatcamGUI/FlatCAMGUI.py:3835 flatcamGUI/FlatCAMGUI.py:3840 msgid "" "Check this box if you want to have toolTips displayed\n" "when hovering with mouse over items throughout the App." @@ -6376,11 +6376,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:3769 +#: flatcamGUI/FlatCAMGUI.py:3843 msgid "Workers number:" msgstr "Număr de worker's:" -#: flatcamGUI/FlatCAMGUI.py:3771 flatcamGUI/FlatCAMGUI.py:3780 +#: flatcamGUI/FlatCAMGUI.py:3845 flatcamGUI/FlatCAMGUI.py:3854 msgid "" "The number of Qthreads made available to the App.\n" "A bigger number may finish the jobs more quickly but\n" @@ -6396,11 +6396,11 @@ msgstr "" "Valoarea standard este 2.\n" "Dupa schimbarea valoarii, se va aplica la următoarea pornire a aplicatiei." -#: flatcamGUI/FlatCAMGUI.py:3821 +#: flatcamGUI/FlatCAMGUI.py:3895 msgid "Save Compressed Project" msgstr "Salvează Proiectul comprimat" -#: flatcamGUI/FlatCAMGUI.py:3823 +#: flatcamGUI/FlatCAMGUI.py:3897 msgid "" "Whether to save a compressed or uncompressed project.\n" "When checked it will save a compressed FlatCAM project." @@ -6409,11 +6409,11 @@ msgstr "" "Când este bifat aici, se va salva o arhiva a proiectului\n" "lucru care poate reduce dimensiunea semnificativ." -#: flatcamGUI/FlatCAMGUI.py:3834 +#: flatcamGUI/FlatCAMGUI.py:3908 msgid "Compression Level:" msgstr "Nivel compresie:" -#: flatcamGUI/FlatCAMGUI.py:3836 +#: flatcamGUI/FlatCAMGUI.py:3910 msgid "" "The level of compression used when saving\n" "a FlatCAM project. Higher value means better compression\n" @@ -6424,49 +6424,49 @@ msgstr "" "dar cu consum redus de resurse in timp ce valoarea 9 cere multa memorie RAM\n" "și in plus, durează semnificativ mai mult." -#: flatcamGUI/FlatCAMGUI.py:3862 flatcamGUI/FlatCAMGUI.py:4103 -#: flatcamGUI/FlatCAMGUI.py:4758 flatcamGUI/FlatCAMGUI.py:5082 +#: flatcamGUI/FlatCAMGUI.py:3936 flatcamGUI/FlatCAMGUI.py:4177 +#: flatcamGUI/FlatCAMGUI.py:4832 flatcamGUI/FlatCAMGUI.py:5156 #: flatcamGUI/ObjectUI.py:150 flatcamGUI/ObjectUI.py:505 #: flatcamGUI/ObjectUI.py:830 flatcamGUI/ObjectUI.py:1344 msgid "Plot Options:" msgstr "Opțiuni afișare:" -#: flatcamGUI/FlatCAMGUI.py:3869 flatcamGUI/FlatCAMGUI.py:4115 -#: flatcamGUI/ObjectUI.py:506 +#: flatcamGUI/FlatCAMGUI.py:3943 flatcamGUI/FlatCAMGUI.py:4189 +#: flatcamGUI/ObjectUI.py:156 flatcamGUI/ObjectUI.py:506 msgid "Solid" msgstr "Solid" -#: flatcamGUI/FlatCAMGUI.py:3871 flatcamGUI/ObjectUI.py:158 +#: flatcamGUI/FlatCAMGUI.py:3945 flatcamGUI/ObjectUI.py:158 msgid "Solid color polygons." msgstr "Poligoane color solide." -#: flatcamGUI/FlatCAMGUI.py:3876 +#: flatcamGUI/FlatCAMGUI.py:3950 flatcamGUI/ObjectUI.py:164 msgid "M-Color" msgstr "M-Color" -#: flatcamGUI/FlatCAMGUI.py:3878 flatcamGUI/ObjectUI.py:166 +#: flatcamGUI/FlatCAMGUI.py:3952 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:3883 flatcamGUI/FlatCAMGUI.py:4109 -#: flatcamGUI/FlatCAMGUI.py:4762 flatcamGUI/ObjectUI.py:172 +#: flatcamGUI/FlatCAMGUI.py:3957 flatcamGUI/FlatCAMGUI.py:4183 +#: flatcamGUI/FlatCAMGUI.py:4836 flatcamGUI/ObjectUI.py:172 msgid "Plot" msgstr "Afisează" -#: flatcamGUI/FlatCAMGUI.py:3885 flatcamGUI/FlatCAMGUI.py:4764 +#: flatcamGUI/FlatCAMGUI.py:3959 flatcamGUI/FlatCAMGUI.py:4838 #: flatcamGUI/ObjectUI.py:174 flatcamGUI/ObjectUI.py:546 #: flatcamGUI/ObjectUI.py:876 flatcamGUI/ObjectUI.py:1431 msgid "Plot (show) this object." msgstr "Afisează (arata) acest obiect." -#: flatcamGUI/FlatCAMGUI.py:3890 flatcamGUI/FlatCAMGUI.py:4771 -#: flatcamGUI/FlatCAMGUI.py:5118 +#: flatcamGUI/FlatCAMGUI.py:3964 flatcamGUI/FlatCAMGUI.py:4845 +#: flatcamGUI/FlatCAMGUI.py:5192 msgid "Circle Steps:" msgstr "Aprox. Cerc" -#: flatcamGUI/FlatCAMGUI.py:3892 +#: flatcamGUI/FlatCAMGUI.py:3966 msgid "" "The number of circle steps for Gerber \n" "circular aperture linear approximation." @@ -6474,15 +6474,15 @@ msgstr "" "Numărul de segmente utilizate pentru\n" "aproximarea lineara a aperturilor Gerber circulare." -#: flatcamGUI/FlatCAMGUI.py:3907 +#: flatcamGUI/FlatCAMGUI.py:3981 msgid "Gerber Options" msgstr "Opțiuni Gerber" -#: flatcamGUI/FlatCAMGUI.py:3911 flatcamGUI/ObjectUI.py:251 +#: flatcamGUI/FlatCAMGUI.py:3985 flatcamGUI/ObjectUI.py:251 msgid "Isolation Routing:" msgstr "Izolare:" -#: flatcamGUI/FlatCAMGUI.py:3913 flatcamGUI/ObjectUI.py:253 +#: flatcamGUI/FlatCAMGUI.py:3987 flatcamGUI/ObjectUI.py:253 msgid "" "Create a Geometry object with\n" "toolpaths to cut outside polygons." @@ -6491,17 +6491,17 @@ msgstr "" "care să fie taiate in afara poligoanelor,\n" "urmărindu-le conturul." -#: flatcamGUI/FlatCAMGUI.py:3924 flatcamGUI/FlatCAMGUI.py:4481 -#: flatcamGUI/FlatCAMGUI.py:5406 flatcamGUI/ObjectUI.py:785 +#: flatcamGUI/FlatCAMGUI.py:3998 flatcamGUI/FlatCAMGUI.py:4555 +#: flatcamGUI/FlatCAMGUI.py:5480 flatcamGUI/ObjectUI.py:785 #: flatcamGUI/ObjectUI.py:801 msgid "Diameter of the cutting tool." msgstr "Diametrul uneltei taietoare." -#: flatcamGUI/FlatCAMGUI.py:3931 +#: flatcamGUI/FlatCAMGUI.py:4005 msgid "Width (# passes):" msgstr "Latime(# treceri):" -#: flatcamGUI/FlatCAMGUI.py:3933 flatcamGUI/ObjectUI.py:275 +#: flatcamGUI/FlatCAMGUI.py:4007 flatcamGUI/ObjectUI.py:275 msgid "" "Width of the isolation gap in\n" "number (integer) of tool widths." @@ -6509,11 +6509,11 @@ msgstr "" "Lăţimea spatiului de izolare\n" "in număr intreg de grosimi ale uneltei." -#: flatcamGUI/FlatCAMGUI.py:3941 flatcamGUI/ObjectUI.py:283 +#: flatcamGUI/FlatCAMGUI.py:4015 flatcamGUI/ObjectUI.py:283 msgid "Pass overlap:" msgstr "Suprapunere:" -#: flatcamGUI/FlatCAMGUI.py:3943 flatcamGUI/ObjectUI.py:285 +#: flatcamGUI/FlatCAMGUI.py:4017 flatcamGUI/ObjectUI.py:285 #, python-format msgid "" "How much (fraction) of the tool width to overlap each tool pass.\n" @@ -6527,11 +6527,11 @@ msgstr "" "Exemplu:\n" "O valoare de 0.25 reprezinta o suprapunere de 25%% din diametrul uneltei." -#: flatcamGUI/FlatCAMGUI.py:3951 flatcamGUI/ObjectUI.py:295 +#: flatcamGUI/FlatCAMGUI.py:4025 flatcamGUI/ObjectUI.py:295 msgid "Milling Type:" msgstr "Tip Frezare:" -#: flatcamGUI/FlatCAMGUI.py:3953 flatcamGUI/ObjectUI.py:297 +#: flatcamGUI/FlatCAMGUI.py:4027 flatcamGUI/ObjectUI.py:297 msgid "" "Milling type:\n" "- climb / best for precision milling and to reduce tool usage\n" @@ -6542,42 +6542,34 @@ msgstr "" "uneltei\n" "- conventional -> pentru cazul când nu exista o compensare a 'backlash-ului'" -#: flatcamGUI/FlatCAMGUI.py:3958 flatcamGUI/ObjectUI.py:302 -msgid "Climb" -msgstr "Urcare" - -#: flatcamGUI/FlatCAMGUI.py:3959 flatcamGUI/ObjectUI.py:303 -msgid "Conv." -msgstr "Conv." - -#: flatcamGUI/FlatCAMGUI.py:3963 +#: flatcamGUI/FlatCAMGUI.py:4037 msgid "Combine Passes" msgstr "Combina" -#: flatcamGUI/FlatCAMGUI.py:3965 flatcamGUI/ObjectUI.py:309 +#: flatcamGUI/FlatCAMGUI.py:4039 flatcamGUI/ObjectUI.py:309 msgid "Combine all passes into one object" msgstr "Combina toate trecerile intr-un singur obiect" -#: flatcamGUI/FlatCAMGUI.py:3970 +#: flatcamGUI/FlatCAMGUI.py:4044 msgid "Clear non-copper:" msgstr "Curăță non-Cu:" -#: flatcamGUI/FlatCAMGUI.py:3972 flatcamGUI/FlatCAMGUI.py:5294 +#: flatcamGUI/FlatCAMGUI.py:4046 flatcamGUI/FlatCAMGUI.py:5368 #: flatcamGUI/ObjectUI.py:386 msgid "" "Create a Geometry object with\n" "toolpaths to cut all non-copper regions." msgstr "" "Crează un obiect tip Geometrie cu traiectorii unealtă\n" -"care să curete de cupru toate zonele unde se doreste să nu \n" +"care să curete de cupru toate zonele unde se dorește să nu \n" "fie cupru." -#: flatcamGUI/FlatCAMGUI.py:3981 flatcamGUI/FlatCAMGUI.py:4007 +#: flatcamGUI/FlatCAMGUI.py:4055 flatcamGUI/FlatCAMGUI.py:4081 #: flatcamGUI/ObjectUI.py:430 flatcamGUI/ObjectUI.py:464 msgid "Boundary Margin:" msgstr "Margine:" -#: flatcamGUI/FlatCAMGUI.py:3983 flatcamGUI/ObjectUI.py:432 +#: flatcamGUI/FlatCAMGUI.py:4057 flatcamGUI/ObjectUI.py:432 msgid "" "Specify the edge of the PCB\n" "by drawing a box around all\n" @@ -6588,11 +6580,11 @@ msgstr "" "unei forme patratice de jur imprejurul la toate obiectele\n" "la o distanţa minima cu valoarea din acest câmp." -#: flatcamGUI/FlatCAMGUI.py:3993 flatcamGUI/FlatCAMGUI.py:4016 +#: flatcamGUI/FlatCAMGUI.py:4067 flatcamGUI/FlatCAMGUI.py:4090 msgid "Rounded corners" msgstr "C. rotunjite" -#: flatcamGUI/FlatCAMGUI.py:3995 +#: flatcamGUI/FlatCAMGUI.py:4069 msgid "" "Creates a Geometry objects with polygons\n" "covering the copper-free areas of the PCB." @@ -6600,11 +6592,11 @@ msgstr "" "Crează un obiect tip Geometrie conținând poligoane\n" "care acopera toate suprafetele libere de cupru ale PCB-ului." -#: flatcamGUI/FlatCAMGUI.py:4001 flatcamGUI/ObjectUI.py:454 +#: flatcamGUI/FlatCAMGUI.py:4075 flatcamGUI/ObjectUI.py:454 msgid "Bounding Box:" msgstr "Forma înconjurătoare::" -#: flatcamGUI/FlatCAMGUI.py:4009 flatcamGUI/ObjectUI.py:466 +#: flatcamGUI/FlatCAMGUI.py:4083 flatcamGUI/ObjectUI.py:466 msgid "" "Distance of the edges of the box\n" "to the nearest polygon." @@ -6612,7 +6604,7 @@ msgstr "" "Distanta de la marginile formei înconjurătoare\n" "pana la cel mai apropiat poligon." -#: flatcamGUI/FlatCAMGUI.py:4018 flatcamGUI/ObjectUI.py:476 +#: flatcamGUI/FlatCAMGUI.py:4092 flatcamGUI/ObjectUI.py:476 msgid "" "If the bounding box is \n" "to have rounded corners\n" @@ -6622,15 +6614,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:4032 +#: flatcamGUI/FlatCAMGUI.py:4106 msgid "Gerber Adv. Options" msgstr "Opțiuni Av. Gerber" -#: flatcamGUI/FlatCAMGUI.py:4036 +#: flatcamGUI/FlatCAMGUI.py:4110 msgid "Advanced Param.:" msgstr "Param. avansati.:" -#: flatcamGUI/FlatCAMGUI.py:4038 +#: flatcamGUI/FlatCAMGUI.py:4112 msgid "" "A list of Gerber advanced parameters.\n" "Those parameters are available only for\n" @@ -6641,11 +6633,11 @@ msgstr "" "când este selectat Nivelul Avansat pentru\n" "aplicaţie in Preferințe - > General" -#: flatcamGUI/FlatCAMGUI.py:4048 flatcamGUI/ObjectUI.py:314 +#: flatcamGUI/FlatCAMGUI.py:4122 flatcamGUI/ObjectUI.py:314 msgid "\"Follow\"" msgstr "\"Urmareste\"" -#: flatcamGUI/FlatCAMGUI.py:4050 flatcamGUI/ObjectUI.py:316 +#: flatcamGUI/FlatCAMGUI.py:4124 flatcamGUI/ObjectUI.py:316 msgid "" "Generate a 'Follow' geometry.\n" "This means that it will cut through\n" @@ -6655,25 +6647,25 @@ 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:4058 +#: flatcamGUI/FlatCAMGUI.py:4132 msgid "Table Show/Hide" msgstr "Arata/Ascunde Tabela" -#: flatcamGUI/FlatCAMGUI.py:4060 +#: flatcamGUI/FlatCAMGUI.py:4134 msgid "" "Toggle the display of the Gerber Apertures Table.\n" "Also, on hide, it will delete all mark shapes\n" "that are drawn on canvas." msgstr "" -"Comuta afișarea tabelei de aperturi Gerber.\n" +"Comută afișarea tabelei de aperturi Gerber.\n" "când se ascunde aceasta, se vor șterge și toate\n" "posibil afisatele marcaje ale aperturilor." -#: flatcamGUI/FlatCAMGUI.py:4068 +#: flatcamGUI/FlatCAMGUI.py:4142 msgid "Ap. Scale Factor:" msgstr "Factor scalare ap.:" -#: flatcamGUI/FlatCAMGUI.py:4070 +#: flatcamGUI/FlatCAMGUI.py:4144 msgid "" "Change the size of the selected apertures.\n" "Factor by which to multiply\n" @@ -6683,11 +6675,11 @@ msgstr "" "Factor cu care se multiplica geometriile\n" "acestui obiect." -#: flatcamGUI/FlatCAMGUI.py:4080 +#: flatcamGUI/FlatCAMGUI.py:4154 msgid "Ap. Buffer Factor:" msgstr "Factor bufer ap.:" -#: flatcamGUI/FlatCAMGUI.py:4082 +#: flatcamGUI/FlatCAMGUI.py:4156 msgid "" "Change the size of the selected apertures.\n" "Factor by which to expand/shrink\n" @@ -6697,15 +6689,15 @@ msgstr "" "Valoare cu care se mareste/micsorează\n" "geometriile acestui obiect." -#: flatcamGUI/FlatCAMGUI.py:4100 +#: flatcamGUI/FlatCAMGUI.py:4174 msgid "Excellon General" msgstr "Excellon General" -#: flatcamGUI/FlatCAMGUI.py:4122 +#: flatcamGUI/FlatCAMGUI.py:4196 msgid "Excellon Format:" msgstr "Formatul Excellon" -#: flatcamGUI/FlatCAMGUI.py:4124 +#: flatcamGUI/FlatCAMGUI.py:4198 msgid "" "The NC drill files, usually named Excellon files\n" "are files that can be found in different formats.\n" @@ -6736,7 +6728,7 @@ msgstr "" "când coordonatele nu sunt reprezentate cu\n" "separator zecimal.\n" "\n" -"Setari posibilie:\n" +"Setări posibile:\n" "\n" "PROTEUS 3:3 MM LZ\n" "DipTrace 5:2 MM TZ\n" @@ -6751,18 +6743,18 @@ msgstr "" "Sprint Layout 2:4 INCH LZ\n" "KiCAD 3:5 INCH TZ" -#: flatcamGUI/FlatCAMGUI.py:4149 +#: flatcamGUI/FlatCAMGUI.py:4223 msgid "INCH:" msgstr "Inch" -#: flatcamGUI/FlatCAMGUI.py:4152 +#: flatcamGUI/FlatCAMGUI.py:4226 msgid "Default values for INCH are 2:4" msgstr "" "Valorile default pentru Inch sunt 2:4\n" "adica 2 parti intregi și 4 zecimale." -#: flatcamGUI/FlatCAMGUI.py:4160 flatcamGUI/FlatCAMGUI.py:4193 -#: flatcamGUI/FlatCAMGUI.py:4670 +#: flatcamGUI/FlatCAMGUI.py:4234 flatcamGUI/FlatCAMGUI.py:4267 +#: flatcamGUI/FlatCAMGUI.py:4744 msgid "" "This numbers signify the number of digits in\n" "the whole part of Excellon coordinates." @@ -6770,8 +6762,8 @@ msgstr "" "Acest număr reprezinta numărul de digiti din partea\n" "intreaga a coordonatelor Excellon." -#: flatcamGUI/FlatCAMGUI.py:4174 flatcamGUI/FlatCAMGUI.py:4207 -#: flatcamGUI/FlatCAMGUI.py:4684 +#: flatcamGUI/FlatCAMGUI.py:4248 flatcamGUI/FlatCAMGUI.py:4281 +#: flatcamGUI/FlatCAMGUI.py:4758 msgid "" "This numbers signify the number of digits in\n" "the decimal part of Excellon coordinates." @@ -6779,21 +6771,21 @@ msgstr "" "Acest număr reprezinta numărul de digiti din partea\n" "zecimala a coordonatelor Excellon." -#: flatcamGUI/FlatCAMGUI.py:4182 +#: flatcamGUI/FlatCAMGUI.py:4256 msgid "METRIC:" msgstr "Metric" -#: flatcamGUI/FlatCAMGUI.py:4185 +#: flatcamGUI/FlatCAMGUI.py:4259 msgid "Default values for METRIC are 3:3" msgstr "" "Valorile default pentru Metric sunt 3:3\n" "adica 3 parti intregi și 3 zecimale." -#: flatcamGUI/FlatCAMGUI.py:4216 +#: flatcamGUI/FlatCAMGUI.py:4290 msgid "Default Zeros:" msgstr "Suprimare Zero:" -#: flatcamGUI/FlatCAMGUI.py:4219 flatcamGUI/FlatCAMGUI.py:4719 +#: flatcamGUI/FlatCAMGUI.py:4293 flatcamGUI/FlatCAMGUI.py:4793 msgid "" "This sets the type of Excellon zeros.\n" "If LZ then Leading Zeros are kept and\n" @@ -6809,15 +6801,7 @@ msgstr "" "cele de la final sunt pastrate.\n" "(Invers fata de fişierele Gerber)." -#: flatcamGUI/FlatCAMGUI.py:4227 flatcamGUI/FlatCAMGUI.py:4726 -msgid "LZ" -msgstr "LZ" - -#: flatcamGUI/FlatCAMGUI.py:4228 flatcamGUI/FlatCAMGUI.py:4727 -msgid "TZ" -msgstr "TZ" - -#: flatcamGUI/FlatCAMGUI.py:4230 +#: flatcamGUI/FlatCAMGUI.py:4304 msgid "" "This sets the default type of Excellon zeros.\n" "If it is not detected in the parsed file the value here\n" @@ -6836,11 +6820,11 @@ msgstr "" "cele de la final sunt pastrate.\n" "(Invers fata de fişierele Gerber)." -#: flatcamGUI/FlatCAMGUI.py:4244 +#: flatcamGUI/FlatCAMGUI.py:4318 msgid "Default Units:" msgstr "Unitati Excellon:" -#: flatcamGUI/FlatCAMGUI.py:4247 +#: flatcamGUI/FlatCAMGUI.py:4321 msgid "" "This sets the default units of Excellon files.\n" "If it is not detected in the parsed file the value here\n" @@ -6854,15 +6838,7 @@ msgstr "" "(unde se gasesc unitatile) și atunci se va folosi\n" "aceasta valoare." -#: flatcamGUI/FlatCAMGUI.py:4255 flatcamGUI/FlatCAMGUI.py:4646 -msgid "INCH" -msgstr "Inch" - -#: flatcamGUI/FlatCAMGUI.py:4256 flatcamGUI/FlatCAMGUI.py:4647 -msgid "MM" -msgstr "MM" - -#: flatcamGUI/FlatCAMGUI.py:4258 +#: flatcamGUI/FlatCAMGUI.py:4332 msgid "" "This sets the units of Excellon files.\n" "Some Excellon files don't have an header\n" @@ -6875,15 +6851,15 @@ msgstr "" "(unde se gasesc unitatile) și atunci se va folosi\n" "aceasta valoare." -#: flatcamGUI/FlatCAMGUI.py:4274 +#: flatcamGUI/FlatCAMGUI.py:4348 msgid "Excellon Optimization:" msgstr "Optimizarea traseului Excellon:" -#: flatcamGUI/FlatCAMGUI.py:4281 +#: flatcamGUI/FlatCAMGUI.py:4355 msgid "Algorithm: " msgstr "Algoritm:" -#: flatcamGUI/FlatCAMGUI.py:4284 flatcamGUI/FlatCAMGUI.py:4297 +#: flatcamGUI/FlatCAMGUI.py:4358 flatcamGUI/FlatCAMGUI.py:4371 msgid "" "This sets the optimization type for the Excellon drill path.\n" "If MH is checked then Google OR-Tools algorithm with MetaHeuristic\n" @@ -6907,15 +6883,11 @@ msgstr "" "care nu este compatibila cu pachetul OR Tools și in acest caz se foloseşte\n" "algoritmul default: Travelling Salesman (vanzatorul ambulant)." -#: flatcamGUI/FlatCAMGUI.py:4294 -msgid "MH" -msgstr "MH" - -#: flatcamGUI/FlatCAMGUI.py:4309 +#: flatcamGUI/FlatCAMGUI.py:4383 msgid "Optimization Time: " msgstr "Durata optimiz.:" -#: flatcamGUI/FlatCAMGUI.py:4312 +#: flatcamGUI/FlatCAMGUI.py:4386 msgid "" "When OR-Tools Metaheuristic (MH) is enabled there is a\n" "maximum threshold for how much time is spent doing the\n" @@ -6926,15 +6898,15 @@ msgstr "" "reprezinta cat timp se sta pentru fiecare element in\n" "incercarea de a afla calea optima." -#: flatcamGUI/FlatCAMGUI.py:4353 +#: flatcamGUI/FlatCAMGUI.py:4427 msgid "Excellon Options" msgstr "Opțiuni Excellon" -#: flatcamGUI/FlatCAMGUI.py:4356 flatcamGUI/ObjectUI.py:584 +#: flatcamGUI/FlatCAMGUI.py:4430 flatcamGUI/ObjectUI.py:584 msgid "Create CNC Job" msgstr "Crează CNCJob" -#: flatcamGUI/FlatCAMGUI.py:4358 +#: flatcamGUI/FlatCAMGUI.py:4432 msgid "" "Parameters used to create a CNC Job object\n" "for this drill object." @@ -6942,13 +6914,13 @@ msgstr "" "Parametrii folositi pentru a crea un obiect FlatCAM tip CNCJob\n" "din acest obiect Excellon." -#: flatcamGUI/FlatCAMGUI.py:4366 flatcamGUI/FlatCAMGUI.py:4822 -#: flatcamGUI/FlatCAMGUI.py:5830 flatcamGUI/ObjectUI.py:595 +#: flatcamGUI/FlatCAMGUI.py:4440 flatcamGUI/FlatCAMGUI.py:4896 +#: flatcamGUI/FlatCAMGUI.py:5904 flatcamGUI/ObjectUI.py:595 #: flatcamGUI/ObjectUI.py:1059 flatcamTools/ToolCalculators.py:108 msgid "Cut Z:" msgstr "Z tăiere:" -#: flatcamGUI/FlatCAMGUI.py:4368 flatcamGUI/ObjectUI.py:597 +#: flatcamGUI/FlatCAMGUI.py:4442 flatcamGUI/ObjectUI.py:597 msgid "" "Drill depth (negative)\n" "below the copper surface." @@ -6957,12 +6929,12 @@ msgstr "" "Daca se foloseşte o val. pozitivă, aplicaţia\n" "va incerca in mod automat să schimbe semnul." -#: flatcamGUI/FlatCAMGUI.py:4375 flatcamGUI/FlatCAMGUI.py:4855 +#: flatcamGUI/FlatCAMGUI.py:4449 flatcamGUI/FlatCAMGUI.py:4929 #: flatcamGUI/ObjectUI.py:605 flatcamGUI/ObjectUI.py:1095 msgid "Travel Z:" msgstr "Z Deplasare:" -#: flatcamGUI/FlatCAMGUI.py:4377 flatcamGUI/ObjectUI.py:607 +#: flatcamGUI/FlatCAMGUI.py:4451 flatcamGUI/ObjectUI.py:607 msgid "" "Tool height when travelling\n" "across the XY plane." @@ -6971,11 +6943,11 @@ msgstr "" "in planul X-Y, fără a efectua taieri, adica\n" "in afara materialului." -#: flatcamGUI/FlatCAMGUI.py:4385 flatcamGUI/FlatCAMGUI.py:4865 +#: flatcamGUI/FlatCAMGUI.py:4459 flatcamGUI/FlatCAMGUI.py:4939 msgid "Tool change:" msgstr "Schimbare unealtă:" -#: flatcamGUI/FlatCAMGUI.py:4387 flatcamGUI/FlatCAMGUI.py:4867 +#: flatcamGUI/FlatCAMGUI.py:4461 flatcamGUI/FlatCAMGUI.py:4941 #: flatcamGUI/ObjectUI.py:617 msgid "" "Include tool-change sequence\n" @@ -6985,11 +6957,11 @@ msgstr "" "in codul G-Code (pauza pentru schimbare unealtă).\n" "De obicei este folosita comanda G-Code M6." -#: flatcamGUI/FlatCAMGUI.py:4394 flatcamGUI/FlatCAMGUI.py:4875 +#: flatcamGUI/FlatCAMGUI.py:4468 flatcamGUI/FlatCAMGUI.py:4949 msgid "Toolchange Z:" msgstr "Z schimb. unealtă:" -#: flatcamGUI/FlatCAMGUI.py:4396 flatcamGUI/FlatCAMGUI.py:4877 +#: flatcamGUI/FlatCAMGUI.py:4470 flatcamGUI/FlatCAMGUI.py:4951 msgid "Toolchange Z position." msgstr "" "Înălţimea la care se efectuează schimbarea uneltei.\n" @@ -6997,11 +6969,11 @@ msgstr "" "'toolchanger' automat sau acolo unde utilizatorul\n" "schimba unealtă manual." -#: flatcamGUI/FlatCAMGUI.py:4402 +#: flatcamGUI/FlatCAMGUI.py:4476 msgid "Feedrate:" msgstr "Feedrate:" -#: flatcamGUI/FlatCAMGUI.py:4404 +#: flatcamGUI/FlatCAMGUI.py:4478 msgid "" "Tool speed while drilling\n" "(in units per minute)." @@ -7009,11 +6981,11 @@ msgstr "" "Viteza cu care se misca unealtă (burghiul) când se fac\n" "operațiuni de găurire. In unitati pe minut." -#: flatcamGUI/FlatCAMGUI.py:4412 +#: flatcamGUI/FlatCAMGUI.py:4486 msgid "Spindle Speed:" msgstr "Viteza Motor:" -#: flatcamGUI/FlatCAMGUI.py:4414 flatcamGUI/FlatCAMGUI.py:4907 +#: flatcamGUI/FlatCAMGUI.py:4488 flatcamGUI/FlatCAMGUI.py:4981 #: flatcamGUI/ObjectUI.py:681 msgid "" "Speed of the spindle\n" @@ -7024,12 +6996,12 @@ msgstr "" "Acest parametru este optional și se poate lasa gol\n" "daca nu se foloseşte." -#: flatcamGUI/FlatCAMGUI.py:4422 flatcamGUI/FlatCAMGUI.py:4915 +#: flatcamGUI/FlatCAMGUI.py:4496 flatcamGUI/FlatCAMGUI.py:4989 #: flatcamGUI/ObjectUI.py:689 flatcamGUI/ObjectUI.py:1218 msgid "Dwell:" msgstr "Pauza:" -#: flatcamGUI/FlatCAMGUI.py:4424 flatcamGUI/FlatCAMGUI.py:4917 +#: flatcamGUI/FlatCAMGUI.py:4498 flatcamGUI/FlatCAMGUI.py:4991 #: flatcamGUI/ObjectUI.py:691 flatcamGUI/ObjectUI.py:1221 msgid "" "Pause to allow the spindle to reach its\n" @@ -7038,34 +7010,34 @@ 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:4427 flatcamGUI/FlatCAMGUI.py:4920 +#: flatcamGUI/FlatCAMGUI.py:4501 flatcamGUI/FlatCAMGUI.py:4994 msgid "Duration:" msgstr "Durata:" -#: flatcamGUI/FlatCAMGUI.py:4429 flatcamGUI/FlatCAMGUI.py:4922 +#: flatcamGUI/FlatCAMGUI.py:4503 flatcamGUI/FlatCAMGUI.py:4996 #: flatcamGUI/ObjectUI.py:696 flatcamGUI/ObjectUI.py:1228 msgid "Number of milliseconds for spindle to dwell." msgstr "Timpul (ori secunde ori milisec) cat se sta in pauza." -#: flatcamGUI/FlatCAMGUI.py:4441 flatcamGUI/FlatCAMGUI.py:4932 +#: flatcamGUI/FlatCAMGUI.py:4515 flatcamGUI/FlatCAMGUI.py:5006 #: flatcamGUI/ObjectUI.py:704 msgid "Postprocessor:" msgstr "Postprocesor:" -#: flatcamGUI/FlatCAMGUI.py:4443 +#: flatcamGUI/FlatCAMGUI.py:4517 msgid "" "The postprocessor file that dictates\n" "gcode output." msgstr "" "Un fişier care prelucrează codul G-Code astfel încât să\n" -"respecte un anumit format care să fie inteles de diverse\n" +"respecte un anumit format care să fie ințeles de diverse\n" "utilaje. Este responsabil de 'personalizarea' G-Code." -#: flatcamGUI/FlatCAMGUI.py:4453 +#: flatcamGUI/FlatCAMGUI.py:4527 msgid "Gcode: " msgstr "G-Code:" -#: flatcamGUI/FlatCAMGUI.py:4455 +#: flatcamGUI/FlatCAMGUI.py:4529 msgid "" "Choose what to use for GCode generation:\n" "'Drills', 'Slots' or 'Both'.\n" @@ -7079,55 +7051,41 @@ msgstr "" "Când se alege Sloturi sau Ambele, sloturile vor fi convertite in serii de " "găuri." -#: flatcamGUI/FlatCAMGUI.py:4460 flatcamGUI/ObjectUI.py:556 -#: flatcamGUI/ObjectUI.py:752 -msgid "Drills" -msgstr "Găuri" - -#: flatcamGUI/FlatCAMGUI.py:4461 flatcamGUI/ObjectUI.py:556 -#: flatcamGUI/ObjectUI.py:753 -msgid "Slots" -msgstr "Sloturi" - -#: flatcamGUI/FlatCAMGUI.py:4462 flatcamGUI/ObjectUI.py:754 -msgid "Both" -msgstr "Ambele" - -#: flatcamGUI/FlatCAMGUI.py:4471 flatcamGUI/ObjectUI.py:769 +#: flatcamGUI/FlatCAMGUI.py:4545 flatcamGUI/ObjectUI.py:769 msgid "Mill Holes" msgstr "Frezare găuri" -#: flatcamGUI/FlatCAMGUI.py:4473 flatcamGUI/ObjectUI.py:771 +#: flatcamGUI/FlatCAMGUI.py:4547 flatcamGUI/ObjectUI.py:771 msgid "Create Geometry for milling holes." msgstr "Crează un obiect tip Geometrie pentru frezarea găurilor." -#: flatcamGUI/FlatCAMGUI.py:4479 +#: flatcamGUI/FlatCAMGUI.py:4553 msgid "Drill Tool dia:" msgstr "Dia. Burghiu Găurire:" -#: flatcamGUI/FlatCAMGUI.py:4486 +#: flatcamGUI/FlatCAMGUI.py:4560 msgid "Slot Tool dia:" msgstr "Dia. Freza Slot:" -#: flatcamGUI/FlatCAMGUI.py:4488 +#: flatcamGUI/FlatCAMGUI.py:4562 msgid "" "Diameter of the cutting tool\n" "when milling slots." msgstr "Diametrul frezei când se frezează sloturile." -#: flatcamGUI/FlatCAMGUI.py:4500 +#: flatcamGUI/FlatCAMGUI.py:4574 msgid "Defaults" msgstr "Val. Implicite" -#: flatcamGUI/FlatCAMGUI.py:4513 +#: flatcamGUI/FlatCAMGUI.py:4587 msgid "Excellon Adv. Options" msgstr "Opțiuni Avans. Excellon" -#: flatcamGUI/FlatCAMGUI.py:4519 flatcamGUI/FlatCAMGUI.py:4955 +#: flatcamGUI/FlatCAMGUI.py:4593 flatcamGUI/FlatCAMGUI.py:5029 msgid "Advanced Options:" msgstr "Opțiuni avansate:" -#: flatcamGUI/FlatCAMGUI.py:4521 +#: flatcamGUI/FlatCAMGUI.py:4595 msgid "" "Parameters used to create a CNC Job object\n" "for this drill object that are shown when App Level is Advanced." @@ -7136,11 +7094,11 @@ msgstr "" "pt acest obiect Excellon, parametri care sunt disponibili\n" "doar in modul Avansat al aplicaţiei." -#: flatcamGUI/FlatCAMGUI.py:4529 +#: flatcamGUI/FlatCAMGUI.py:4603 msgid "Offset Z:" msgstr "Z ofset:" -#: flatcamGUI/FlatCAMGUI.py:4531 flatcamGUI/ObjectUI.py:574 +#: flatcamGUI/FlatCAMGUI.py:4605 flatcamGUI/ObjectUI.py:574 msgid "" "Some drill bits (the larger ones) need to drill deeper\n" "to create the desired exit hole diameter due of the tip shape.\n" @@ -7153,20 +7111,20 @@ msgstr "" "Valoarea de aici efectuează o compensare asupra\n" "parametrului >Z tăiere<." -#: flatcamGUI/FlatCAMGUI.py:4538 flatcamGUI/FlatCAMGUI.py:4966 +#: flatcamGUI/FlatCAMGUI.py:4612 flatcamGUI/FlatCAMGUI.py:5040 msgid "Toolchange X,Y:" msgstr "X,Y schimb. unealtă:" -#: flatcamGUI/FlatCAMGUI.py:4540 flatcamGUI/FlatCAMGUI.py:4968 +#: flatcamGUI/FlatCAMGUI.py:4614 flatcamGUI/FlatCAMGUI.py:5042 msgid "Toolchange X,Y position." msgstr "Poziţia X,Y in format (x,y) unde se face schimbarea uneltei." -#: flatcamGUI/FlatCAMGUI.py:4546 flatcamGUI/FlatCAMGUI.py:4975 +#: flatcamGUI/FlatCAMGUI.py:4620 flatcamGUI/FlatCAMGUI.py:5049 #: flatcamGUI/ObjectUI.py:634 msgid "Start move Z:" msgstr "Z pornire:" -#: flatcamGUI/FlatCAMGUI.py:4548 +#: flatcamGUI/FlatCAMGUI.py:4622 msgid "" "Height of the tool just after start.\n" "Delete the value if you don't need this feature." @@ -7174,23 +7132,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:4555 flatcamGUI/FlatCAMGUI.py:4985 +#: flatcamGUI/FlatCAMGUI.py:4629 flatcamGUI/FlatCAMGUI.py:5059 #: flatcamGUI/ObjectUI.py:644 flatcamGUI/ObjectUI.py:1141 msgid "End move Z:" msgstr "Z oprire:" -#: flatcamGUI/FlatCAMGUI.py:4557 flatcamGUI/FlatCAMGUI.py:4987 +#: flatcamGUI/FlatCAMGUI.py:4631 flatcamGUI/FlatCAMGUI.py:5061 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:4564 flatcamGUI/FlatCAMGUI.py:4995 +#: flatcamGUI/FlatCAMGUI.py:4638 flatcamGUI/FlatCAMGUI.py:5069 #: flatcamGUI/ObjectUI.py:665 msgid "Feedrate Rapids:" msgstr "Feedrate rapizi:" -#: flatcamGUI/FlatCAMGUI.py:4566 flatcamGUI/ObjectUI.py:667 +#: flatcamGUI/FlatCAMGUI.py:4640 flatcamGUI/ObjectUI.py:667 msgid "" "Tool speed while drilling\n" "(in units per minute).\n" @@ -7203,12 +7161,12 @@ msgstr "" "printerul 3D Marlin, implicit când se foloseşte fişierul\n" "postprocesor: Marlin. Ignora aceasta parametru in rest." -#: flatcamGUI/FlatCAMGUI.py:4577 flatcamGUI/FlatCAMGUI.py:5019 +#: flatcamGUI/FlatCAMGUI.py:4651 flatcamGUI/FlatCAMGUI.py:5093 #: flatcamGUI/ObjectUI.py:715 flatcamGUI/ObjectUI.py:1250 msgid "Probe Z depth:" msgstr "Z sonda:" -#: flatcamGUI/FlatCAMGUI.py:4579 flatcamGUI/FlatCAMGUI.py:5021 +#: flatcamGUI/FlatCAMGUI.py:4653 flatcamGUI/FlatCAMGUI.py:5095 #: flatcamGUI/ObjectUI.py:717 flatcamGUI/ObjectUI.py:1253 msgid "" "The maximum depth that the probe is allowed\n" @@ -7217,21 +7175,21 @@ msgstr "" "Adâncimea maxima la care este permis sondei să coboare.\n" "Are o valoare negativă, in unitatile curente." -#: flatcamGUI/FlatCAMGUI.py:4587 flatcamGUI/FlatCAMGUI.py:5029 +#: flatcamGUI/FlatCAMGUI.py:4661 flatcamGUI/FlatCAMGUI.py:5103 #: flatcamGUI/ObjectUI.py:727 flatcamGUI/ObjectUI.py:1264 msgid "Feedrate Probe:" msgstr "Feedrate sonda:" -#: flatcamGUI/FlatCAMGUI.py:4589 flatcamGUI/FlatCAMGUI.py:5031 +#: flatcamGUI/FlatCAMGUI.py:4663 flatcamGUI/FlatCAMGUI.py:5105 #: flatcamGUI/ObjectUI.py:729 flatcamGUI/ObjectUI.py:1267 msgid "The feedrate used while the probe is probing." msgstr "Viteza sondei când aceasta coboara." -#: flatcamGUI/FlatCAMGUI.py:4595 flatcamGUI/FlatCAMGUI.py:5038 +#: flatcamGUI/FlatCAMGUI.py:4669 flatcamGUI/FlatCAMGUI.py:5112 msgid "Fast Plunge:" msgstr "Plonjare rapida:" -#: flatcamGUI/FlatCAMGUI.py:4597 flatcamGUI/FlatCAMGUI.py:5040 +#: flatcamGUI/FlatCAMGUI.py:4671 flatcamGUI/FlatCAMGUI.py:5114 msgid "" "By checking this, the vertical move from\n" "Z_Toolchange to Z_move is done with G0,\n" @@ -7248,11 +7206,11 @@ msgstr "" "schimba\n" "unealta. Daca aveti ceva plasat sub unealtă ceva se va strica." -#: flatcamGUI/FlatCAMGUI.py:4606 +#: flatcamGUI/FlatCAMGUI.py:4680 msgid "Fast Retract:" msgstr "Retragere rapida:" -#: flatcamGUI/FlatCAMGUI.py:4608 +#: flatcamGUI/FlatCAMGUI.py:4682 msgid "" "Exit hole strategy.\n" " - When uncheked, while exiting the drilled hole the drill bit\n" @@ -7271,15 +7229,15 @@ msgstr "" "adâncimea\n" "de deplasare cu viteza maxima G0, intr-o singură mișcare." -#: flatcamGUI/FlatCAMGUI.py:4627 +#: flatcamGUI/FlatCAMGUI.py:4701 msgid "Excellon Export" msgstr "Export Excellon" -#: flatcamGUI/FlatCAMGUI.py:4630 +#: flatcamGUI/FlatCAMGUI.py:4704 msgid "Export Options:" msgstr "Opțiuni Export::" -#: flatcamGUI/FlatCAMGUI.py:4632 +#: flatcamGUI/FlatCAMGUI.py:4706 msgid "" "The parameters set here are used in the file exported\n" "when using the File -> Export -> Export Excellon menu entry." @@ -7288,19 +7246,19 @@ msgstr "" "se exporta un fişier Excellon folosind:\n" "File -> Exporta -> Exporta Excellon" -#: flatcamGUI/FlatCAMGUI.py:4641 +#: flatcamGUI/FlatCAMGUI.py:4715 msgid "Units:" msgstr "Unitati:" -#: flatcamGUI/FlatCAMGUI.py:4643 flatcamGUI/FlatCAMGUI.py:4649 +#: flatcamGUI/FlatCAMGUI.py:4717 flatcamGUI/FlatCAMGUI.py:4723 msgid "The units used in the Excellon file." msgstr "Unitatile de masura folosite in fişierul Excellon." -#: flatcamGUI/FlatCAMGUI.py:4655 +#: flatcamGUI/FlatCAMGUI.py:4729 msgid "Int/Decimals:" msgstr "Int/Zecimale:" -#: flatcamGUI/FlatCAMGUI.py:4657 +#: flatcamGUI/FlatCAMGUI.py:4731 msgid "" "The NC drill files, usually named Excellon files\n" "are files that can be found in different formats.\n" @@ -7312,11 +7270,11 @@ msgstr "" "Aici se setează formatul Excellon când nu se utilizează\n" "coordonate cu zecimale." -#: flatcamGUI/FlatCAMGUI.py:4693 +#: flatcamGUI/FlatCAMGUI.py:4767 msgid "Format:" msgstr "Format:" -#: flatcamGUI/FlatCAMGUI.py:4695 flatcamGUI/FlatCAMGUI.py:4705 +#: flatcamGUI/FlatCAMGUI.py:4769 flatcamGUI/FlatCAMGUI.py:4779 msgid "" "Select the kind of coordinates format used.\n" "Coordinates can be saved with decimal point or without.\n" @@ -7335,19 +7293,11 @@ msgstr "" "- LZ = zerourile prefix sunt pastrate și cele sufix eliminate\n" "- TZ = zerourile prefix sunt eliminate și cele sufix pastrate." -#: flatcamGUI/FlatCAMGUI.py:4702 -msgid "Decimal" -msgstr "Cu dec." - -#: flatcamGUI/FlatCAMGUI.py:4703 -msgid "No-Decimal" -msgstr "Fără dec." - -#: flatcamGUI/FlatCAMGUI.py:4716 +#: flatcamGUI/FlatCAMGUI.py:4790 msgid "Zeros:" msgstr "Zero-uri:" -#: flatcamGUI/FlatCAMGUI.py:4729 +#: flatcamGUI/FlatCAMGUI.py:4803 msgid "" "This sets the default type of Excellon zeros.\n" "If LZ then Leading Zeros are kept and\n" @@ -7359,11 +7309,11 @@ msgstr "" "- LZ = zerourile prefix sunt pastrate și cele sufix eliminate\n" "- TZ = zerourile prefix sunt eliminate și cele sufix pastrate." -#: flatcamGUI/FlatCAMGUI.py:4755 +#: flatcamGUI/FlatCAMGUI.py:4829 msgid "Geometry General" msgstr "Geometrie General" -#: flatcamGUI/FlatCAMGUI.py:4773 +#: flatcamGUI/FlatCAMGUI.py:4847 msgid "" "The number of circle steps for Geometry \n" "circle and arc shapes linear approximation." @@ -7371,29 +7321,29 @@ msgstr "" "Numărul de segmente utilizate pentru\n" "aproximarea lineara a Geometriilor circulare." -#: flatcamGUI/FlatCAMGUI.py:4781 +#: flatcamGUI/FlatCAMGUI.py:4855 msgid "Tools" msgstr "Unelte" -#: flatcamGUI/FlatCAMGUI.py:4788 +#: flatcamGUI/FlatCAMGUI.py:4862 msgid "Tool dia: " msgstr "Dia Unealta:" -#: flatcamGUI/FlatCAMGUI.py:4790 +#: flatcamGUI/FlatCAMGUI.py:4864 msgid "" "The diameter of the cutting\n" "tool.." msgstr "Diametrul uneltei taietoare ..." -#: flatcamGUI/FlatCAMGUI.py:4805 +#: flatcamGUI/FlatCAMGUI.py:4879 msgid "Geometry Options" msgstr "Opțiuni Geometrie" -#: flatcamGUI/FlatCAMGUI.py:4810 +#: flatcamGUI/FlatCAMGUI.py:4884 msgid "Create CNC Job:" msgstr "Crează CNCJob:" -#: flatcamGUI/FlatCAMGUI.py:4812 +#: flatcamGUI/FlatCAMGUI.py:4886 msgid "" "Create a CNC Job object\n" "tracing the contours of this\n" @@ -7402,7 +7352,7 @@ msgstr "" "Crează un obiect CNCJob care urmareste conturul\n" "acestui obiect tip Geometrie." -#: flatcamGUI/FlatCAMGUI.py:4824 flatcamGUI/ObjectUI.py:1062 +#: flatcamGUI/FlatCAMGUI.py:4898 flatcamGUI/ObjectUI.py:1062 msgid "" "Cutting depth (negative)\n" "below the copper surface." @@ -7410,21 +7360,21 @@ msgstr "" "Adâncimea la care se taie sub suprafata de cupru.\n" "Valoare negativă." -#: flatcamGUI/FlatCAMGUI.py:4832 +#: flatcamGUI/FlatCAMGUI.py:4906 msgid "Multidepth" msgstr "MultiPas" -#: flatcamGUI/FlatCAMGUI.py:4834 +#: flatcamGUI/FlatCAMGUI.py:4908 msgid "Multidepth usage: True or False." msgstr "" "Daca se folosesc sau nu pasi multipli de tăiere\n" "pentru a ajunge la adâncimea de tăiere." -#: flatcamGUI/FlatCAMGUI.py:4839 +#: flatcamGUI/FlatCAMGUI.py:4913 msgid "Depth/Pass:" msgstr "Adanc./Trecere" -#: flatcamGUI/FlatCAMGUI.py:4841 +#: flatcamGUI/FlatCAMGUI.py:4915 msgid "" "The depth to cut on each pass,\n" "when multidepth is enabled.\n" @@ -7437,7 +7387,7 @@ msgstr "" "Valoarea este pozitivă desi reprezinta o fracţie\n" "a adancimii de tăiere care este o valoare negativă." -#: flatcamGUI/FlatCAMGUI.py:4857 flatcamGUI/ObjectUI.py:1098 +#: flatcamGUI/FlatCAMGUI.py:4931 flatcamGUI/ObjectUI.py:1098 msgid "" "Height of the tool when\n" "moving without cutting." @@ -7445,11 +7395,11 @@ msgstr "" "Înălţimea la care se misca unealta când nu taie,\n" "deasupra materialului." -#: flatcamGUI/FlatCAMGUI.py:4884 flatcamGUI/ObjectUI.py:1153 +#: flatcamGUI/FlatCAMGUI.py:4958 flatcamGUI/ObjectUI.py:1153 msgid "Feed Rate X-Y:" msgstr "Feedrate X-Y:" -#: flatcamGUI/FlatCAMGUI.py:4886 flatcamGUI/ObjectUI.py:1156 +#: flatcamGUI/FlatCAMGUI.py:4960 flatcamGUI/ObjectUI.py:1156 msgid "" "Cutting speed in the XY\n" "plane in units per minute" @@ -7457,11 +7407,11 @@ msgstr "" "Viteza de tăiere in planul X-Y\n" "in unitati pe minut." -#: flatcamGUI/FlatCAMGUI.py:4894 +#: flatcamGUI/FlatCAMGUI.py:4968 msgid "Feed Rate Z:" msgstr "Feedrate Z:" -#: flatcamGUI/FlatCAMGUI.py:4896 +#: flatcamGUI/FlatCAMGUI.py:4970 msgid "" "Cutting speed in the XY\n" "plane in units per minute.\n" @@ -7471,25 +7421,25 @@ msgstr "" "in unitati pe minut.\n" "Mai este numita și viteza de plonjare." -#: flatcamGUI/FlatCAMGUI.py:4905 flatcamGUI/ObjectUI.py:679 +#: flatcamGUI/FlatCAMGUI.py:4979 flatcamGUI/ObjectUI.py:679 #: flatcamGUI/ObjectUI.py:1205 msgid "Spindle speed:" msgstr "Viteza motor:" -#: flatcamGUI/FlatCAMGUI.py:4934 +#: flatcamGUI/FlatCAMGUI.py:5008 msgid "" "The postprocessor file that dictates\n" "Machine Code output." msgstr "" "Un fişier care prelucrează codul G-Code astfel încât să\n" -"respecte un anumit format care să fie inteles de diverse\n" +"respecte un anumit format care să fie ințeles de diverse\n" "utilaje. Este responsabil de 'personalizarea' G-Code." -#: flatcamGUI/FlatCAMGUI.py:4950 +#: flatcamGUI/FlatCAMGUI.py:5024 msgid "Geometry Adv. Options" msgstr "Opțiuni Avans. Geometrie" -#: flatcamGUI/FlatCAMGUI.py:4957 +#: flatcamGUI/FlatCAMGUI.py:5031 msgid "" "Parameters to create a CNC Job object\n" "tracing the contours of a Geometry object." @@ -7497,7 +7447,7 @@ msgstr "" "Parametrii folositi pentru a crea un obiect CNCJob,\n" "urmărind contururile unui obiect tip Geometrie." -#: flatcamGUI/FlatCAMGUI.py:4977 +#: flatcamGUI/FlatCAMGUI.py:5051 msgid "" "Height of the tool just after starting the work.\n" "Delete the value if you don't need this feature." @@ -7505,7 +7455,7 @@ msgstr "" "Înălţimea uneltei la care se gaseste la inceputul lucrului.\n" "Lasa câmpul gol daca nu folosești aceasta." -#: flatcamGUI/FlatCAMGUI.py:4997 +#: flatcamGUI/FlatCAMGUI.py:5071 msgid "" "Cutting speed in the XY plane\n" "(in units per minute).\n" @@ -7518,27 +7468,27 @@ 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:5009 +#: flatcamGUI/FlatCAMGUI.py:5083 msgid "Re-cut 1st pt." msgstr "Re-tăiere 1-ul pt." -#: flatcamGUI/FlatCAMGUI.py:5011 flatcamGUI/ObjectUI.py:1196 +#: flatcamGUI/FlatCAMGUI.py:5085 flatcamGUI/ObjectUI.py:1196 msgid "" "In order to remove possible\n" "copper leftovers where first cut\n" "meet with last cut, we generate an\n" "extended cut over the first cut section." msgstr "" -"Bifează daca se doreste o siguranţă ca resturile de cupru\n" +"Bifează daca se dorește o siguranţă ca resturile de cupru\n" "care pot ramane acolo unde se intalneste inceputul taierii\n" "cu sfârşitul acesteia (este vorba de un contur), sunt eliminate\n" "prin taierea peste acest punct." -#: flatcamGUI/FlatCAMGUI.py:5050 +#: flatcamGUI/FlatCAMGUI.py:5124 msgid "Seg. X size:" msgstr "Dim. seg X." -#: flatcamGUI/FlatCAMGUI.py:5052 +#: flatcamGUI/FlatCAMGUI.py:5126 msgid "" "The size of the trace segment on the X axis.\n" "Useful for auto-leveling.\n" @@ -7549,11 +7499,11 @@ msgstr "" "O valoare de 0 inseamnaca nu se face segmentare\n" "pe axa X." -#: flatcamGUI/FlatCAMGUI.py:5061 +#: flatcamGUI/FlatCAMGUI.py:5135 msgid "Seg. Y size:" msgstr "Dim. seg Y." -#: flatcamGUI/FlatCAMGUI.py:5063 +#: flatcamGUI/FlatCAMGUI.py:5137 msgid "" "The size of the trace segment on the Y axis.\n" "Useful for auto-leveling.\n" @@ -7564,20 +7514,20 @@ msgstr "" "O valoare de 0 inseamnaca nu se face segmentare\n" "pe axa Y." -#: flatcamGUI/FlatCAMGUI.py:5079 +#: flatcamGUI/FlatCAMGUI.py:5153 msgid "CNC Job General" msgstr "CNCJob General" -#: flatcamGUI/FlatCAMGUI.py:5092 flatcamGUI/ObjectUI.py:544 +#: flatcamGUI/FlatCAMGUI.py:5166 flatcamGUI/ObjectUI.py:544 #: flatcamGUI/ObjectUI.py:874 flatcamGUI/ObjectUI.py:1428 msgid "Plot Object" msgstr "Afisează" -#: flatcamGUI/FlatCAMGUI.py:5099 +#: flatcamGUI/FlatCAMGUI.py:5173 msgid "Plot kind:" msgstr "Tip afișare:" -#: flatcamGUI/FlatCAMGUI.py:5101 flatcamGUI/ObjectUI.py:1350 +#: flatcamGUI/FlatCAMGUI.py:5175 flatcamGUI/ObjectUI.py:1350 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" @@ -7590,11 +7540,7 @@ msgstr "" "- Tăiere -> miscarile in material, tăiere\n" "- Amandoua" -#: flatcamGUI/FlatCAMGUI.py:5109 flatcamGUI/ObjectUI.py:1359 -msgid "Travel" -msgstr "Voiaj" - -#: flatcamGUI/FlatCAMGUI.py:5120 +#: flatcamGUI/FlatCAMGUI.py:5194 msgid "" "The number of circle steps for GCode \n" "circle and arc shapes linear approximation." @@ -7602,17 +7548,17 @@ msgstr "" "Numărul de segmente utilizate pentru\n" "aproximarea lineara a reprezentarilor GCodului circular." -#: flatcamGUI/FlatCAMGUI.py:5130 +#: flatcamGUI/FlatCAMGUI.py:5204 msgid "" "Diameter of the tool to be\n" "rendered in the plot." msgstr "Diametrul uneltei care să fie redat prin afișare." -#: flatcamGUI/FlatCAMGUI.py:5138 +#: flatcamGUI/FlatCAMGUI.py:5212 msgid "Coords dec.:" msgstr "Coord. zec.:" -#: flatcamGUI/FlatCAMGUI.py:5140 +#: flatcamGUI/FlatCAMGUI.py:5214 msgid "" "The number of decimals to be used for \n" "the X, Y, Z coordinates in CNC code (GCODE, etc.)" @@ -7620,11 +7566,11 @@ msgstr "" "Numărul de zecimale care să fie folosit in \n" "coordonatele X,Y,Z in codul CNC (GCode etc)." -#: flatcamGUI/FlatCAMGUI.py:5148 +#: flatcamGUI/FlatCAMGUI.py:5222 msgid "Feedrate dec.:" msgstr "Feedrate zec.:" -#: flatcamGUI/FlatCAMGUI.py:5150 +#: flatcamGUI/FlatCAMGUI.py:5224 msgid "" "The number of decimals to be used for \n" "the Feedrate parameter in CNC code (GCODE, etc.)" @@ -7632,15 +7578,15 @@ msgstr "" "Numărul de zecimale care să fie folosit in \n" "parametrul >Feedrate< in codul CNC (GCode etc)." -#: flatcamGUI/FlatCAMGUI.py:5165 +#: flatcamGUI/FlatCAMGUI.py:5239 msgid "CNC Job Options" msgstr "Opțiuni CNCJob" -#: flatcamGUI/FlatCAMGUI.py:5168 flatcamGUI/FlatCAMGUI.py:5209 +#: flatcamGUI/FlatCAMGUI.py:5242 flatcamGUI/FlatCAMGUI.py:5283 msgid "Export G-Code:" msgstr "Exporta G-Code:" -#: flatcamGUI/FlatCAMGUI.py:5170 flatcamGUI/FlatCAMGUI.py:5211 +#: flatcamGUI/FlatCAMGUI.py:5244 flatcamGUI/FlatCAMGUI.py:5285 #: flatcamGUI/ObjectUI.py:1464 msgid "" "Export and save G-Code to\n" @@ -7649,56 +7595,56 @@ msgstr "" "Exporta și salvează codul G-Code intr-un fişier\n" "care este salvat pe HDD." -#: flatcamGUI/FlatCAMGUI.py:5176 +#: flatcamGUI/FlatCAMGUI.py:5250 msgid "Prepend to G-Code:" msgstr "Adaugă la inceputul G-Code:" -#: flatcamGUI/FlatCAMGUI.py:5178 +#: flatcamGUI/FlatCAMGUI.py:5252 msgid "" "Type here any G-Code commands you would\n" "like to add at the beginning of the G-Code file." msgstr "" -"Adaugă aici orice comenzi G-Code care se doreste să fie\n" +"Adaugă aici orice comenzi G-Code care se dorește să fie\n" "inserate la inceputul codului G-Code." -#: flatcamGUI/FlatCAMGUI.py:5187 +#: flatcamGUI/FlatCAMGUI.py:5261 msgid "Append to G-Code:" msgstr "Adaugă la sfârşitul G-Code:" -#: flatcamGUI/FlatCAMGUI.py:5189 flatcamGUI/ObjectUI.py:1486 +#: flatcamGUI/FlatCAMGUI.py:5263 flatcamGUI/ObjectUI.py:1486 msgid "" "Type here any G-Code commands you would\n" "like to append to the generated file.\n" "I.e.: M2 (End of program)" msgstr "" -"Adaugă aici orice comenzi G-Code care se doreste să fie\n" +"Adaugă aici orice comenzi G-Code care se dorește să fie\n" "inserate la sfârşitul codului G-Code." -#: flatcamGUI/FlatCAMGUI.py:5206 +#: flatcamGUI/FlatCAMGUI.py:5280 msgid "CNC Job Adv. Options" msgstr "Opțiuni Avans. CNCJob" -#: flatcamGUI/FlatCAMGUI.py:5217 flatcamGUI/ObjectUI.py:1504 +#: flatcamGUI/FlatCAMGUI.py:5291 flatcamGUI/ObjectUI.py:1504 msgid "Toolchange G-Code:" msgstr "G-Code pt schimb unealtă:" -#: flatcamGUI/FlatCAMGUI.py:5219 +#: flatcamGUI/FlatCAMGUI.py:5293 msgid "" "Type here any G-Code commands you would\n" "like to be executed when Toolchange event is encountered.\n" "This will constitute a Custom Toolchange GCode,\n" "or a Toolchange Macro." msgstr "" -"Adaugă aici orice comenzi G-Code care se doreste să fie\n" +"Adaugă aici orice comenzi G-Code care se dorește să fie\n" "inserate in codul G-Code atunci când se intalneste comanda M6.\n" "Comanda M6 este inlocuita.\n" "Aceata va constitui un macro pentru schimbul uneltelor." -#: flatcamGUI/FlatCAMGUI.py:5233 flatcamGUI/ObjectUI.py:1526 +#: flatcamGUI/FlatCAMGUI.py:5307 flatcamGUI/ObjectUI.py:1526 msgid "Use Toolchange Macro" msgstr "Fol. Macro schimb unealtă" -#: flatcamGUI/FlatCAMGUI.py:5235 flatcamGUI/ObjectUI.py:1529 +#: flatcamGUI/FlatCAMGUI.py:5309 flatcamGUI/ObjectUI.py:1529 msgid "" "Check this box if you want to use\n" "a Custom Toolchange GCode (macro)." @@ -7706,7 +7652,7 @@ msgstr "" "Bifează aici daca dorești să folosești Macro pentru\n" "schimb unelte." -#: flatcamGUI/FlatCAMGUI.py:5247 flatcamGUI/ObjectUI.py:1538 +#: flatcamGUI/FlatCAMGUI.py:5321 flatcamGUI/ObjectUI.py:1538 msgid "" "A list of the FlatCAM variables that can be used\n" "in the Toolchange event.\n" @@ -7716,78 +7662,78 @@ msgstr "" "de schimb al uneltei (când se intalneste comanda M6).\n" "Este necesar să fie inconjurate de simbolul '%'." -#: flatcamGUI/FlatCAMGUI.py:5254 flatcamGUI/ObjectUI.py:1545 +#: flatcamGUI/FlatCAMGUI.py:5328 flatcamGUI/ObjectUI.py:1545 msgid "Parameters" msgstr "Parametri" -#: flatcamGUI/FlatCAMGUI.py:5257 flatcamGUI/ObjectUI.py:1548 +#: flatcamGUI/FlatCAMGUI.py:5331 flatcamGUI/ObjectUI.py:1548 msgid "FlatCAM CNC parameters" msgstr "Parametri FlatCAM CNC" -#: flatcamGUI/FlatCAMGUI.py:5258 flatcamGUI/ObjectUI.py:1549 +#: flatcamGUI/FlatCAMGUI.py:5332 flatcamGUI/ObjectUI.py:1549 msgid "tool = tool number" msgstr "tool = numărul uneltei" -#: flatcamGUI/FlatCAMGUI.py:5259 flatcamGUI/ObjectUI.py:1550 +#: flatcamGUI/FlatCAMGUI.py:5333 flatcamGUI/ObjectUI.py:1550 msgid "tooldia = tool diameter" msgstr "tooldia = dimaetrul uneltei" -#: flatcamGUI/FlatCAMGUI.py:5260 flatcamGUI/ObjectUI.py:1551 +#: flatcamGUI/FlatCAMGUI.py:5334 flatcamGUI/ObjectUI.py:1551 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:5261 flatcamGUI/ObjectUI.py:1552 +#: flatcamGUI/FlatCAMGUI.py:5335 flatcamGUI/ObjectUI.py:1552 msgid "x_toolchange = X coord for Toolchange" msgstr "x_toolchange = coord. X pt schimb unealtă" -#: flatcamGUI/FlatCAMGUI.py:5262 flatcamGUI/ObjectUI.py:1553 +#: flatcamGUI/FlatCAMGUI.py:5336 flatcamGUI/ObjectUI.py:1553 msgid "y_toolchange = Y coord for Toolchange" msgstr "y_toolchange = coord. Y pt schimb unealtă" -#: flatcamGUI/FlatCAMGUI.py:5263 flatcamGUI/ObjectUI.py:1554 +#: flatcamGUI/FlatCAMGUI.py:5337 flatcamGUI/ObjectUI.py:1554 msgid "z_toolchange = Z coord for Toolchange" msgstr "z_toolchange = coord. Z pt schimb unealtă" -#: flatcamGUI/FlatCAMGUI.py:5264 +#: flatcamGUI/FlatCAMGUI.py:5338 msgid "z_cut = Z depth for the cut" msgstr "z_cut = Z adâncimea de tăiere" -#: flatcamGUI/FlatCAMGUI.py:5265 +#: flatcamGUI/FlatCAMGUI.py:5339 msgid "z_move = Z height for travel" msgstr "z_move = Z Înălţimea deplasare" -#: flatcamGUI/FlatCAMGUI.py:5266 flatcamGUI/ObjectUI.py:1557 +#: flatcamGUI/FlatCAMGUI.py:5340 flatcamGUI/ObjectUI.py:1557 msgid "z_depthpercut = the step value for multidepth cut" msgstr "z_depthpercut = pasul pentru taierea progresiva" -#: flatcamGUI/FlatCAMGUI.py:5267 flatcamGUI/ObjectUI.py:1558 +#: flatcamGUI/FlatCAMGUI.py:5341 flatcamGUI/ObjectUI.py:1558 msgid "spindlesspeed = the value for the spindle speed" msgstr "spindlesspeed = valoarea viteza motor" -#: flatcamGUI/FlatCAMGUI.py:5268 flatcamGUI/ObjectUI.py:1559 +#: flatcamGUI/FlatCAMGUI.py:5342 flatcamGUI/ObjectUI.py:1559 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:5289 +#: flatcamGUI/FlatCAMGUI.py:5363 msgid "NCC Tool Options" msgstr "Opțiuni Unealta NCC" -#: flatcamGUI/FlatCAMGUI.py:5292 flatcamGUI/FlatCAMGUI.py:5393 -#: flatcamGUI/FlatCAMGUI.py:5472 flatcamGUI/FlatCAMGUI.py:5531 -#: flatcamGUI/FlatCAMGUI.py:5634 flatcamGUI/FlatCAMGUI.py:5695 -#: flatcamGUI/FlatCAMGUI.py:5894 flatcamGUI/FlatCAMGUI.py:6021 +#: flatcamGUI/FlatCAMGUI.py:5366 flatcamGUI/FlatCAMGUI.py:5467 +#: flatcamGUI/FlatCAMGUI.py:5546 flatcamGUI/FlatCAMGUI.py:5605 +#: flatcamGUI/FlatCAMGUI.py:5708 flatcamGUI/FlatCAMGUI.py:5769 +#: flatcamGUI/FlatCAMGUI.py:5968 flatcamGUI/FlatCAMGUI.py:6095 msgid "Parameters:" msgstr "Parametri:" -#: flatcamGUI/FlatCAMGUI.py:5302 flatcamGUI/FlatCAMGUI.py:6032 +#: flatcamGUI/FlatCAMGUI.py:5376 flatcamGUI/FlatCAMGUI.py:6106 msgid "Tools dia:" msgstr "Dia unealtă:" -#: flatcamGUI/FlatCAMGUI.py:5304 +#: flatcamGUI/FlatCAMGUI.py:5378 msgid "Diameters of the cutting tools, separated by ','" msgstr "Diametrele pentru unelte taietoare, separate cu virgula" -#: flatcamGUI/FlatCAMGUI.py:5312 flatcamTools/ToolNonCopperClear.py:167 +#: flatcamGUI/FlatCAMGUI.py:5386 flatcamTools/ToolNonCopperClear.py:167 #, python-format msgid "" "How much (fraction) of the tool width to overlap each tool pass.\n" @@ -7813,11 +7759,11 @@ msgstr "" "Valori mari= procesare lenta cat și o execuţie la fel de lenta a PCB-ului,\n" "datorita numărului mai mare de treceri-tăiere." -#: flatcamGUI/FlatCAMGUI.py:5328 flatcamTools/ToolNonCopperClear.py:183 +#: flatcamGUI/FlatCAMGUI.py:5402 flatcamTools/ToolNonCopperClear.py:183 msgid "Bounding box margin." msgstr "Marginea pentru forma înconjurătoare." -#: flatcamGUI/FlatCAMGUI.py:5337 flatcamTools/ToolNonCopperClear.py:192 +#: flatcamGUI/FlatCAMGUI.py:5411 flatcamTools/ToolNonCopperClear.py:192 #: flatcamTools/ToolPaint.py:190 msgid "" "Algorithm for non-copper clearing:
Standard: Fixed step inwards." @@ -7828,12 +7774,12 @@ msgstr "" "
Punct-samanta: De la punctul samanta, spre expterior.
Linii " "drepte: Linii paralele." -#: flatcamGUI/FlatCAMGUI.py:5369 flatcamTools/ToolNonCopperClear.py:224 +#: flatcamGUI/FlatCAMGUI.py:5443 flatcamTools/ToolNonCopperClear.py:224 #: flatcamTools/ToolPaint.py:222 msgid "Rest M.:" msgstr "Rest M.:" -#: flatcamGUI/FlatCAMGUI.py:5371 +#: flatcamGUI/FlatCAMGUI.py:5445 msgid "" "If checked, use 'rest machining'.\n" "Basically it will clear copper outside PCB features,\n" @@ -7851,11 +7797,11 @@ msgstr "" "precedenta.\n" "Daca nu este bifat, foloseşte algoritmul standard." -#: flatcamGUI/FlatCAMGUI.py:5390 +#: flatcamGUI/FlatCAMGUI.py:5464 msgid "Cutout Tool Options" msgstr "Opțiuni Unealta Decupare" -#: flatcamGUI/FlatCAMGUI.py:5395 flatcamGUI/ObjectUI.py:402 +#: flatcamGUI/FlatCAMGUI.py:5469 flatcamGUI/ObjectUI.py:402 msgid "" "Create toolpaths to cut around\n" "the PCB and separate it from\n" @@ -7865,17 +7811,17 @@ msgstr "" "lasand punţi pentru a separa PCB-ul de \n" "placa din care a fost taiat." -#: flatcamGUI/FlatCAMGUI.py:5414 +#: flatcamGUI/FlatCAMGUI.py:5488 msgid "" "Distance from objects at which\n" "to draw the cutout." msgstr "Distanta de obiecte la care să se deseneze forma taietoare." -#: flatcamGUI/FlatCAMGUI.py:5421 flatcamTools/ToolCutOut.py:96 +#: flatcamGUI/FlatCAMGUI.py:5495 flatcamTools/ToolCutOut.py:96 msgid "Gap size:" msgstr "Dim. punte:" -#: flatcamGUI/FlatCAMGUI.py:5423 +#: flatcamGUI/FlatCAMGUI.py:5497 msgid "" "Size of the gaps in the toolpath\n" "that will remain to hold the\n" @@ -7885,11 +7831,11 @@ msgstr "" "care vor mentine PCB-ul in poziţie, fără să cada\n" "din placa 'mama' dupa decupare." -#: flatcamGUI/FlatCAMGUI.py:5431 flatcamTools/ToolCutOut.py:133 +#: flatcamGUI/FlatCAMGUI.py:5505 flatcamTools/ToolCutOut.py:133 msgid "Gaps:" msgstr "Punţi:" -#: flatcamGUI/FlatCAMGUI.py:5433 +#: flatcamGUI/FlatCAMGUI.py:5507 msgid "" "Number of bridge gaps used for the cutout.\n" "There can be maximum 8 bridges/gaps.\n" @@ -7911,21 +7857,21 @@ msgstr "" "- 2tb = 2* sus - 2* jos\n" "- 8 = 2* stânga - 2* dreapta - 2* sus - 2* jos" -#: flatcamGUI/FlatCAMGUI.py:5454 flatcamTools/ToolCutOut.py:115 +#: flatcamGUI/FlatCAMGUI.py:5528 flatcamTools/ToolCutOut.py:115 msgid "Convex Sh.:" msgstr "Formă Conv." -#: flatcamGUI/FlatCAMGUI.py:5456 flatcamTools/ToolCutOut.py:117 +#: flatcamGUI/FlatCAMGUI.py:5530 flatcamTools/ToolCutOut.py:117 msgid "Create a convex shape surrounding the entire PCB." msgstr "" "Generează un obiect tip Geometrie care va inconjura\n" "tot PCB-ul. Forma sa este convexa." -#: flatcamGUI/FlatCAMGUI.py:5469 +#: flatcamGUI/FlatCAMGUI.py:5543 msgid "2Sided Tool Options" msgstr "Opțiuni Unealta 2Fețe" -#: flatcamGUI/FlatCAMGUI.py:5474 +#: flatcamGUI/FlatCAMGUI.py:5548 msgid "" "A tool to help in creating a double sided\n" "PCB using alignment holes." @@ -7933,44 +7879,28 @@ msgstr "" "O unealtă care ajuta in crearea de PCB-uri cu 2 fețe\n" "folosind găuri de aliniere." -#: flatcamGUI/FlatCAMGUI.py:5484 flatcamTools/ToolDblSided.py:235 +#: flatcamGUI/FlatCAMGUI.py:5558 flatcamTools/ToolDblSided.py:235 msgid "Drill diam.:" msgstr "Dia gaura:" -#: flatcamGUI/FlatCAMGUI.py:5486 flatcamTools/ToolDblSided.py:226 +#: flatcamGUI/FlatCAMGUI.py:5560 flatcamTools/ToolDblSided.py:226 #: flatcamTools/ToolDblSided.py:237 msgid "Diameter of the drill for the alignment holes." msgstr "Diametrul găurii pentru găurile de aliniere." -#: flatcamGUI/FlatCAMGUI.py:5493 -msgid "X" -msgstr "X" - -#: flatcamGUI/FlatCAMGUI.py:5494 -msgid "Y" -msgstr "Y" - -#: flatcamGUI/FlatCAMGUI.py:5495 flatcamTools/ToolDblSided.py:120 +#: flatcamGUI/FlatCAMGUI.py:5569 flatcamTools/ToolDblSided.py:120 msgid "Mirror Axis:" msgstr "Axe oglindire:" -#: flatcamGUI/FlatCAMGUI.py:5497 flatcamTools/ToolDblSided.py:122 +#: flatcamGUI/FlatCAMGUI.py:5571 flatcamTools/ToolDblSided.py:122 msgid "Mirror vertically (X) or horizontally (Y)." msgstr "Oglindește vertical (X) sau orizontal (Y)." -#: flatcamGUI/FlatCAMGUI.py:5506 -msgid "Point" -msgstr "Punct" - -#: flatcamGUI/FlatCAMGUI.py:5507 -msgid "Box" -msgstr "Forma" - -#: flatcamGUI/FlatCAMGUI.py:5508 flatcamTools/ToolDblSided.py:133 +#: flatcamGUI/FlatCAMGUI.py:5582 flatcamTools/ToolDblSided.py:133 msgid "Axis Ref:" msgstr "Axa de ref.:" -#: flatcamGUI/FlatCAMGUI.py:5510 +#: flatcamGUI/FlatCAMGUI.py:5584 msgid "" "The axis should pass through a point or cut\n" " a specified box (in a Geometry object) in \n" @@ -7979,11 +7909,11 @@ msgstr "" "Axa de referinţă ar trebui să treaca printr-un punct ori să strabata\n" " o forma (specificata un obiect tip Geometrie) prin mijloc." -#: flatcamGUI/FlatCAMGUI.py:5526 +#: flatcamGUI/FlatCAMGUI.py:5600 msgid "Paint Tool Options" msgstr "Opțiuni Unealta Paint" -#: flatcamGUI/FlatCAMGUI.py:5533 flatcamGUI/ObjectUI.py:1299 +#: flatcamGUI/FlatCAMGUI.py:5607 flatcamGUI/ObjectUI.py:1299 msgid "" "Creates tool paths to cover the\n" "whole area of a polygon (remove\n" @@ -7996,7 +7926,7 @@ msgstr "" "singur poligon se va cere să faceti click pe poligonul\n" "dorit." -#: flatcamGUI/FlatCAMGUI.py:5557 +#: flatcamGUI/FlatCAMGUI.py:5631 msgid "" "How much (fraction) of the tool\n" "width to overlap each tool pass." @@ -8004,23 +7934,19 @@ msgstr "" "Cat de mult (o fracţie din diametrul uneltei) din diametrul uneltei,\n" "(lăţimea de tăiere) să se suprapună peste trecerea anterioară." -#: flatcamGUI/FlatCAMGUI.py:5611 flatcamTools/ToolPaint.py:237 +#: flatcamGUI/FlatCAMGUI.py:5685 flatcamTools/ToolPaint.py:237 msgid "Selection:" msgstr "Selecţie:" -#: flatcamGUI/FlatCAMGUI.py:5613 +#: flatcamGUI/FlatCAMGUI.py:5687 msgid "How to select the polygons to paint." msgstr "Cum să se selecteze poligoanele de pictat (paint)." -#: flatcamGUI/FlatCAMGUI.py:5617 -msgid "Single" -msgstr "Unic" - -#: flatcamGUI/FlatCAMGUI.py:5631 +#: flatcamGUI/FlatCAMGUI.py:5705 msgid "Film Tool Options" msgstr "Opțiuni Unealta Film" -#: flatcamGUI/FlatCAMGUI.py:5636 +#: flatcamGUI/FlatCAMGUI.py:5710 msgid "" "Create a PCB film from a Gerber or Geometry\n" "FlatCAM object.\n" @@ -8029,19 +7955,11 @@ msgstr "" "Crează un film PCB dintr-un obiect Gerber sau tip Geometrie.\n" "Fişierul este salvat in format SVG." -#: flatcamGUI/FlatCAMGUI.py:5645 -msgid "Pos" -msgstr "Pozitiv" - -#: flatcamGUI/FlatCAMGUI.py:5646 -msgid "Neg" -msgstr "Negativ" - -#: flatcamGUI/FlatCAMGUI.py:5647 flatcamTools/ToolFilm.py:116 +#: flatcamGUI/FlatCAMGUI.py:5721 flatcamTools/ToolFilm.py:116 msgid "Film Type:" msgstr "Tip film:" -#: flatcamGUI/FlatCAMGUI.py:5649 flatcamTools/ToolFilm.py:118 +#: flatcamGUI/FlatCAMGUI.py:5723 flatcamTools/ToolFilm.py:118 msgid "" "Generate a Positive black film or a Negative film.\n" "Positive means that it will print the features\n" @@ -8055,11 +7973,11 @@ msgstr "" "Negativ = traseele vor fi albe pe un fundal negru.\n" "Formatul fişierului pt filmul salvat este SVG." -#: flatcamGUI/FlatCAMGUI.py:5660 flatcamTools/ToolFilm.py:130 +#: flatcamGUI/FlatCAMGUI.py:5734 flatcamTools/ToolFilm.py:130 msgid "Border:" msgstr "Bordura:" -#: flatcamGUI/FlatCAMGUI.py:5662 flatcamTools/ToolFilm.py:132 +#: flatcamGUI/FlatCAMGUI.py:5736 flatcamTools/ToolFilm.py:132 msgid "" "Specify a border around the object.\n" "Only for negative film.\n" @@ -8076,11 +7994,11 @@ msgstr "" "Va crea o bara solida neagra in jurul printului efectiv permitand o\n" "delimitare exacta" -#: flatcamGUI/FlatCAMGUI.py:5675 flatcamTools/ToolFilm.py:144 +#: flatcamGUI/FlatCAMGUI.py:5749 flatcamTools/ToolFilm.py:144 msgid "Scale Stroke:" msgstr "Scalează:" -#: flatcamGUI/FlatCAMGUI.py:5677 flatcamTools/ToolFilm.py:146 +#: flatcamGUI/FlatCAMGUI.py:5751 flatcamTools/ToolFilm.py:146 msgid "" "Scale the line stroke thickness of each feature in the SVG file.\n" "It means that the line that envelope each SVG feature will be thicker or " @@ -8090,11 +8008,11 @@ msgstr "" "Scalează grosimea conturului fiecarui element din fişierul SVG.\n" "Elementele mai mici vor fi afectate mai mult." -#: flatcamGUI/FlatCAMGUI.py:5692 +#: flatcamGUI/FlatCAMGUI.py:5766 msgid "Panelize Tool Options" msgstr "Opțiuni Unealta Panelizare" -#: flatcamGUI/FlatCAMGUI.py:5697 +#: flatcamGUI/FlatCAMGUI.py:5771 msgid "" "Create an object that contains an array of (x, y) elements,\n" "each element is a copy of the source object spaced\n" @@ -8104,11 +8022,11 @@ msgstr "" "unde fiecare element este o copie a obiectului sursa, separat la o\n" "distanţă X, Y unul de celalalt." -#: flatcamGUI/FlatCAMGUI.py:5708 flatcamTools/ToolPanelize.py:113 +#: flatcamGUI/FlatCAMGUI.py:5782 flatcamTools/ToolPanelize.py:113 msgid "Spacing cols:" msgstr "Sep. coloane:" -#: flatcamGUI/FlatCAMGUI.py:5710 flatcamTools/ToolPanelize.py:115 +#: flatcamGUI/FlatCAMGUI.py:5784 flatcamTools/ToolPanelize.py:115 msgid "" "Spacing between columns of the desired panel.\n" "In current units." @@ -8116,11 +8034,11 @@ msgstr "" "Spatiul de separare între coloane.\n" "In unitatile curente." -#: flatcamGUI/FlatCAMGUI.py:5718 flatcamTools/ToolPanelize.py:122 +#: flatcamGUI/FlatCAMGUI.py:5792 flatcamTools/ToolPanelize.py:122 msgid "Spacing rows:" msgstr "Sep. linii:" -#: flatcamGUI/FlatCAMGUI.py:5720 flatcamTools/ToolPanelize.py:124 +#: flatcamGUI/FlatCAMGUI.py:5794 flatcamTools/ToolPanelize.py:124 msgid "" "Spacing between rows of the desired panel.\n" "In current units." @@ -8128,35 +8046,27 @@ msgstr "" "Spatiul de separare între linii.\n" "In unitatile curente." -#: flatcamGUI/FlatCAMGUI.py:5728 flatcamTools/ToolPanelize.py:131 +#: flatcamGUI/FlatCAMGUI.py:5802 flatcamTools/ToolPanelize.py:131 msgid "Columns:" msgstr "Coloane:" -#: flatcamGUI/FlatCAMGUI.py:5730 flatcamTools/ToolPanelize.py:133 +#: flatcamGUI/FlatCAMGUI.py:5804 flatcamTools/ToolPanelize.py:133 msgid "Number of columns of the desired panel" msgstr "Numărul de coloane ale panel-ului dorit." -#: flatcamGUI/FlatCAMGUI.py:5737 flatcamTools/ToolPanelize.py:139 +#: flatcamGUI/FlatCAMGUI.py:5811 flatcamTools/ToolPanelize.py:139 msgid "Rows:" msgstr "Linii:" -#: flatcamGUI/FlatCAMGUI.py:5739 flatcamTools/ToolPanelize.py:141 +#: flatcamGUI/FlatCAMGUI.py:5813 flatcamTools/ToolPanelize.py:141 msgid "Number of rows of the desired panel" msgstr "Numărul de linii ale panel-ului dorit." -#: flatcamGUI/FlatCAMGUI.py:5745 -msgid "Gerber" -msgstr "Gerber" - -#: flatcamGUI/FlatCAMGUI.py:5746 -msgid "Geo" -msgstr "Geo" - -#: flatcamGUI/FlatCAMGUI.py:5747 flatcamTools/ToolPanelize.py:148 +#: flatcamGUI/FlatCAMGUI.py:5821 flatcamTools/ToolPanelize.py:148 msgid "Panel Type:" msgstr "Tip panel:" -#: flatcamGUI/FlatCAMGUI.py:5749 +#: flatcamGUI/FlatCAMGUI.py:5823 msgid "" "Choose the type of object for the panel object:\n" "- Gerber\n" @@ -8166,11 +8076,11 @@ msgstr "" "- Gerber\n" "- Geometrie" -#: flatcamGUI/FlatCAMGUI.py:5758 +#: flatcamGUI/FlatCAMGUI.py:5832 msgid "Constrain within:" msgstr "Constrange:" -#: flatcamGUI/FlatCAMGUI.py:5760 flatcamTools/ToolPanelize.py:160 +#: flatcamGUI/FlatCAMGUI.py:5834 flatcamTools/ToolPanelize.py:160 msgid "" "Area define by DX and DY within to constrain the panel.\n" "DX and DY values are in current units.\n" @@ -8184,11 +8094,11 @@ msgstr "" "panelul final va contine numai acel număr de linii/coloane care se inscrie\n" "complet in aria desemnata." -#: flatcamGUI/FlatCAMGUI.py:5769 flatcamTools/ToolPanelize.py:169 +#: flatcamGUI/FlatCAMGUI.py:5843 flatcamTools/ToolPanelize.py:169 msgid "Width (DX):" msgstr "Latime (Dx):" -#: flatcamGUI/FlatCAMGUI.py:5771 flatcamTools/ToolPanelize.py:171 +#: flatcamGUI/FlatCAMGUI.py:5845 flatcamTools/ToolPanelize.py:171 msgid "" "The width (DX) within which the panel must fit.\n" "In current units." @@ -8196,11 +8106,11 @@ msgstr "" "Lăţimea (Dx) in care panelul trebuie să se inscrie.\n" "In unitati curente." -#: flatcamGUI/FlatCAMGUI.py:5778 flatcamTools/ToolPanelize.py:177 +#: flatcamGUI/FlatCAMGUI.py:5852 flatcamTools/ToolPanelize.py:177 msgid "Height (DY):" msgstr "Inaltime (Dy):" -#: flatcamGUI/FlatCAMGUI.py:5780 flatcamTools/ToolPanelize.py:179 +#: flatcamGUI/FlatCAMGUI.py:5854 flatcamTools/ToolPanelize.py:179 msgid "" "The height (DY)within which the panel must fit.\n" "In current units." @@ -8208,15 +8118,15 @@ msgstr "" "Înălţimea (Dy) in care panelul trebuie să se inscrie.\n" "In unitati curente." -#: flatcamGUI/FlatCAMGUI.py:5794 +#: flatcamGUI/FlatCAMGUI.py:5868 msgid "Calculators Tool Options" msgstr "Opțiuni Unealta Calculatoare" -#: flatcamGUI/FlatCAMGUI.py:5797 +#: flatcamGUI/FlatCAMGUI.py:5871 msgid "V-Shape Tool Calculator:" msgstr "Calculator: Unealta V-shape" -#: flatcamGUI/FlatCAMGUI.py:5799 +#: flatcamGUI/FlatCAMGUI.py:5873 msgid "" "Calculate the tool diameter for a given V-shape tool,\n" "having the tip diameter, tip angle and\n" @@ -8226,11 +8136,11 @@ msgstr "" "avand diametrul vârfului și unghiul la vârf cat și\n" "adâncimea de tăiere, ca parametri." -#: flatcamGUI/FlatCAMGUI.py:5810 flatcamTools/ToolCalculators.py:94 +#: flatcamGUI/FlatCAMGUI.py:5884 flatcamTools/ToolCalculators.py:94 msgid "Tip Diameter:" msgstr "Dia vârf:" -#: flatcamGUI/FlatCAMGUI.py:5812 +#: flatcamGUI/FlatCAMGUI.py:5886 msgid "" "This is the tool tip diameter.\n" "It is specified by manufacturer." @@ -8238,11 +8148,11 @@ msgstr "" "Acesta este diametrul la vârf al uneltei.\n" "Este specificat de producator." -#: flatcamGUI/FlatCAMGUI.py:5820 +#: flatcamGUI/FlatCAMGUI.py:5894 msgid "Tip angle:" msgstr "Unghiul la vârf:" -#: flatcamGUI/FlatCAMGUI.py:5822 +#: flatcamGUI/FlatCAMGUI.py:5896 msgid "" "This is the angle on the tip of the tool.\n" "It is specified by manufacturer." @@ -8250,7 +8160,7 @@ msgstr "" "Acesta este unghiul la vârf al uneltei.\n" "Este specificat de producator." -#: flatcamGUI/FlatCAMGUI.py:5832 +#: flatcamGUI/FlatCAMGUI.py:5906 msgid "" "This is depth to cut into material.\n" "In the CNCJob object it is the CutZ parameter." @@ -8258,11 +8168,11 @@ msgstr "" "Aceasta este adâncimea la care se taie in material.\n" "In obiectul CNCJob este parametrul >Z tăiere<." -#: flatcamGUI/FlatCAMGUI.py:5839 +#: flatcamGUI/FlatCAMGUI.py:5913 msgid "ElectroPlating Calculator:" msgstr "Calculator Electroplacare:" -#: flatcamGUI/FlatCAMGUI.py:5841 flatcamTools/ToolCalculators.py:152 +#: flatcamGUI/FlatCAMGUI.py:5915 flatcamTools/ToolCalculators.py:152 msgid "" "This calculator is useful for those who plate the via/pad/drill holes,\n" "using a method like grahite ink or calcium hypophosphite ink or palladium " @@ -8274,31 +8184,31 @@ msgstr "" "- clorura paladiu\n" "- hipofosfit de calciu" -#: flatcamGUI/FlatCAMGUI.py:5851 flatcamTools/ToolCalculators.py:161 +#: flatcamGUI/FlatCAMGUI.py:5925 flatcamTools/ToolCalculators.py:161 msgid "Board Length:" msgstr "Lung. placii:" -#: flatcamGUI/FlatCAMGUI.py:5853 flatcamTools/ToolCalculators.py:165 +#: flatcamGUI/FlatCAMGUI.py:5927 flatcamTools/ToolCalculators.py:165 msgid "This is the board length. In centimeters." msgstr "" "Aceasta este lungimea PCB-ului.\n" "In centimetri. " -#: flatcamGUI/FlatCAMGUI.py:5859 flatcamTools/ToolCalculators.py:167 +#: flatcamGUI/FlatCAMGUI.py:5933 flatcamTools/ToolCalculators.py:167 msgid "Board Width:" msgstr "Lat. placii:" -#: flatcamGUI/FlatCAMGUI.py:5861 flatcamTools/ToolCalculators.py:171 +#: flatcamGUI/FlatCAMGUI.py:5935 flatcamTools/ToolCalculators.py:171 msgid "This is the board width.In centimeters." msgstr "" "Aceasta este lăţimea PCB-ului.\n" "In centimetri. " -#: flatcamGUI/FlatCAMGUI.py:5866 flatcamTools/ToolCalculators.py:173 +#: flatcamGUI/FlatCAMGUI.py:5940 flatcamTools/ToolCalculators.py:173 msgid "Current Density:" msgstr "Densitate I:" -#: flatcamGUI/FlatCAMGUI.py:5869 flatcamTools/ToolCalculators.py:177 +#: flatcamGUI/FlatCAMGUI.py:5943 flatcamTools/ToolCalculators.py:177 msgid "" "Current density to pass through the board. \n" "In Amps per Square Feet ASF." @@ -8306,23 +8216,23 @@ msgstr "" "Densitatea de curent care să treaca prin placa.\n" "In ASF (amperi pe picior la patrat)." -#: flatcamGUI/FlatCAMGUI.py:5875 flatcamTools/ToolCalculators.py:181 +#: flatcamGUI/FlatCAMGUI.py:5949 flatcamTools/ToolCalculators.py:181 msgid "Copper Growth:" msgstr "Grosime Cu:" -#: flatcamGUI/FlatCAMGUI.py:5878 flatcamTools/ToolCalculators.py:185 +#: flatcamGUI/FlatCAMGUI.py:5952 flatcamTools/ToolCalculators.py:185 msgid "" "How thick the copper growth is intended to be.\n" "In microns." msgstr "" -"Cat de gros se doreste să fie stratul de cupru depus.\n" +"Cat de gros se dorește să fie stratul de cupru depus.\n" "In microni." -#: flatcamGUI/FlatCAMGUI.py:5891 +#: flatcamGUI/FlatCAMGUI.py:5965 msgid "Transform Tool Options" msgstr "Opțiuni Unealta Transformare" -#: flatcamGUI/FlatCAMGUI.py:5896 +#: flatcamGUI/FlatCAMGUI.py:5970 msgid "" "Various transformations that can be applied\n" "on a FlatCAM object." @@ -8335,47 +8245,47 @@ msgstr "" "- deformare\n" "- oglindire" -#: flatcamGUI/FlatCAMGUI.py:5906 +#: flatcamGUI/FlatCAMGUI.py:5980 msgid "Rotate Angle:" msgstr "Unghi Rotaţie:" -#: flatcamGUI/FlatCAMGUI.py:5908 +#: flatcamGUI/FlatCAMGUI.py:5982 msgid "Angle for rotation. In degrees." msgstr "Unnghiul pentru rotaţie. In grade." -#: flatcamGUI/FlatCAMGUI.py:5915 +#: flatcamGUI/FlatCAMGUI.py:5989 msgid "Skew_X angle:" msgstr "Unghi Deform_X:" -#: flatcamGUI/FlatCAMGUI.py:5917 +#: flatcamGUI/FlatCAMGUI.py:5991 msgid "Angle for Skew/Shear on X axis. In degrees." msgstr "Unghiul pentru deformare pe axa X. In grade." -#: flatcamGUI/FlatCAMGUI.py:5924 +#: flatcamGUI/FlatCAMGUI.py:5998 msgid "Skew_Y angle:" msgstr "Unghi Deform_Y:" -#: flatcamGUI/FlatCAMGUI.py:5926 +#: flatcamGUI/FlatCAMGUI.py:6000 msgid "Angle for Skew/Shear on Y axis. In degrees." msgstr "Unghiul pentru deformare pe axa Y. In grade." -#: flatcamGUI/FlatCAMGUI.py:5933 +#: flatcamGUI/FlatCAMGUI.py:6007 msgid "Scale_X factor:" msgstr "Factor Scal_X:" -#: flatcamGUI/FlatCAMGUI.py:5935 +#: flatcamGUI/FlatCAMGUI.py:6009 msgid "Factor for scaling on X axis." msgstr "Factor de scalare pe axa X." -#: flatcamGUI/FlatCAMGUI.py:5942 +#: flatcamGUI/FlatCAMGUI.py:6016 msgid "Scale_Y factor:" msgstr "Factor Scal_Y:" -#: flatcamGUI/FlatCAMGUI.py:5944 +#: flatcamGUI/FlatCAMGUI.py:6018 msgid "Factor for scaling on Y axis." msgstr "Factor de scalare pe axa Y." -#: flatcamGUI/FlatCAMGUI.py:5952 +#: flatcamGUI/FlatCAMGUI.py:6026 msgid "" "Scale the selected object(s)\n" "using the Scale_X factor for both axis." @@ -8383,7 +8293,7 @@ msgstr "" "Scalează obiectele selectate folosind\n" "Factor Scal_X pentru ambele axe." -#: flatcamGUI/FlatCAMGUI.py:5960 flatcamTools/ToolTransform.py:210 +#: flatcamGUI/FlatCAMGUI.py:6034 flatcamTools/ToolTransform.py:210 msgid "" "Scale the selected object(s)\n" "using the origin reference when checked,\n" @@ -8396,27 +8306,27 @@ msgstr "" "centrul formei inconjuatoare care cuprinde\n" "toate obiectele selectate." -#: flatcamGUI/FlatCAMGUI.py:5969 +#: flatcamGUI/FlatCAMGUI.py:6043 msgid "Offset_X val:" msgstr "Ofset_X:" -#: flatcamGUI/FlatCAMGUI.py:5971 +#: flatcamGUI/FlatCAMGUI.py:6045 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:5978 +#: flatcamGUI/FlatCAMGUI.py:6052 msgid "Offset_Y val:" msgstr "Ofset_Y:" -#: flatcamGUI/FlatCAMGUI.py:5980 +#: flatcamGUI/FlatCAMGUI.py:6054 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:5986 +#: flatcamGUI/FlatCAMGUI.py:6060 msgid "Mirror Reference" msgstr "Referinţă Oglindire" -#: flatcamGUI/FlatCAMGUI.py:5988 flatcamTools/ToolTransform.py:314 +#: flatcamGUI/FlatCAMGUI.py:6062 flatcamTools/ToolTransform.py:314 msgid "" "Flip the selected object(s)\n" "around the point in Point Entry Field.\n" @@ -8439,11 +8349,11 @@ msgstr "" "in forma (x, y).\n" "La final apasa butonul de oglindire pe axa dorita. " -#: flatcamGUI/FlatCAMGUI.py:5999 +#: flatcamGUI/FlatCAMGUI.py:6073 msgid " Mirror Ref. Point:" msgstr "Pt. Ref. Oglindire:" -#: flatcamGUI/FlatCAMGUI.py:6001 flatcamTools/ToolTransform.py:327 +#: flatcamGUI/FlatCAMGUI.py:6075 flatcamTools/ToolTransform.py:327 msgid "" "Coordinates in format (x, y) used as reference for mirroring.\n" "The 'x' in (x, y) will be used when using Flip on X and\n" @@ -8454,11 +8364,11 @@ msgstr "" "X din (x,y) se va folosi când se face oglindirea pe axa X\n" "Y din (x,y) se va folosi când se face oglindirea pe axa Y." -#: flatcamGUI/FlatCAMGUI.py:6018 +#: flatcamGUI/FlatCAMGUI.py:6092 msgid "SolderPaste Tool Options" msgstr "Opțiuni Unealta Pasta Fludor" -#: flatcamGUI/FlatCAMGUI.py:6023 +#: flatcamGUI/FlatCAMGUI.py:6097 msgid "" "A tool to create GCode for dispensing\n" "solder paste onto a PCB." @@ -8466,49 +8376,49 @@ msgstr "" "O unealtă care crează cod G-Code pentru dispensarea de pastă de fludor\n" "pe padurile unui PCB." -#: flatcamGUI/FlatCAMGUI.py:6034 +#: flatcamGUI/FlatCAMGUI.py:6108 msgid "Diameters of nozzle tools, separated by ','" msgstr "Diametrele uneltelor (nozzle), separate prin virgula." -#: flatcamGUI/FlatCAMGUI.py:6041 +#: flatcamGUI/FlatCAMGUI.py:6115 msgid "New Nozzle Dia:" msgstr "Nou Dia::" -#: flatcamGUI/FlatCAMGUI.py:6043 flatcamTools/ToolSolderPaste.py:103 +#: flatcamGUI/FlatCAMGUI.py:6117 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:6051 flatcamTools/ToolSolderPaste.py:166 +#: flatcamGUI/FlatCAMGUI.py:6125 flatcamTools/ToolSolderPaste.py:166 msgid "Z Dispense Start:" msgstr "Z start disp.:" -#: flatcamGUI/FlatCAMGUI.py:6053 flatcamTools/ToolSolderPaste.py:168 +#: flatcamGUI/FlatCAMGUI.py:6127 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:6060 flatcamTools/ToolSolderPaste.py:174 +#: flatcamGUI/FlatCAMGUI.py:6134 flatcamTools/ToolSolderPaste.py:174 msgid "Z Dispense:" msgstr "Z disp.:" -#: flatcamGUI/FlatCAMGUI.py:6062 flatcamTools/ToolSolderPaste.py:176 +#: flatcamGUI/FlatCAMGUI.py:6136 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:6069 flatcamTools/ToolSolderPaste.py:183 +#: flatcamGUI/FlatCAMGUI.py:6143 flatcamTools/ToolSolderPaste.py:183 msgid "Z Dispense Stop:" msgstr "Z stop disp.:" -#: flatcamGUI/FlatCAMGUI.py:6071 flatcamTools/ToolSolderPaste.py:185 +#: flatcamGUI/FlatCAMGUI.py:6145 flatcamTools/ToolSolderPaste.py:185 msgid "The height (Z) when solder paste dispensing stops." msgstr "Înălţimea (Z) când se opreste dispensarea de pastă de fludor." -#: flatcamGUI/FlatCAMGUI.py:6078 flatcamTools/ToolSolderPaste.py:191 +#: flatcamGUI/FlatCAMGUI.py:6152 flatcamTools/ToolSolderPaste.py:191 msgid "Z Travel:" msgstr "Z deplasare:" -#: flatcamGUI/FlatCAMGUI.py:6080 flatcamTools/ToolSolderPaste.py:193 +#: flatcamGUI/FlatCAMGUI.py:6154 flatcamTools/ToolSolderPaste.py:193 msgid "" "The height (Z) for travel between pads\n" "(without dispensing solder paste)." @@ -8516,19 +8426,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:6088 flatcamTools/ToolSolderPaste.py:200 +#: flatcamGUI/FlatCAMGUI.py:6162 flatcamTools/ToolSolderPaste.py:200 msgid "Z Toolchange:" msgstr "Z schimb. unealtă:" -#: flatcamGUI/FlatCAMGUI.py:6090 flatcamTools/ToolSolderPaste.py:202 +#: flatcamGUI/FlatCAMGUI.py:6164 flatcamTools/ToolSolderPaste.py:202 msgid "The height (Z) for tool (nozzle) change." msgstr "Înălţimea (Z) când se schimbă unealta (nozzle-ul)." -#: flatcamGUI/FlatCAMGUI.py:6097 flatcamTools/ToolSolderPaste.py:208 +#: flatcamGUI/FlatCAMGUI.py:6171 flatcamTools/ToolSolderPaste.py:208 msgid "XY Toolchange:" msgstr "XY schimb unealtă:" -#: flatcamGUI/FlatCAMGUI.py:6099 flatcamTools/ToolSolderPaste.py:210 +#: flatcamGUI/FlatCAMGUI.py:6173 flatcamTools/ToolSolderPaste.py:210 msgid "" "The X,Y location for tool (nozzle) change.\n" "The format is (x, y) where x and y are real numbers." @@ -8536,30 +8446,30 @@ msgstr "" "Coordonatele X, Y pentru schimbarea uneltei (nozzle).\n" "Formatul este (x,y) unde x și y sunt numere Reale." -#: flatcamGUI/FlatCAMGUI.py:6107 flatcamTools/ToolSolderPaste.py:217 +#: flatcamGUI/FlatCAMGUI.py:6181 flatcamTools/ToolSolderPaste.py:217 msgid "Feedrate X-Y:" msgstr "Feedrate X-Y:" -#: flatcamGUI/FlatCAMGUI.py:6109 flatcamTools/ToolSolderPaste.py:219 +#: flatcamGUI/FlatCAMGUI.py:6183 flatcamTools/ToolSolderPaste.py:219 msgid "Feedrate (speed) while moving on the X-Y plane." msgstr "Viteza de deplasare a uneltei când se deplasează in planul X-Y." -#: flatcamGUI/FlatCAMGUI.py:6116 flatcamTools/ToolSolderPaste.py:225 +#: flatcamGUI/FlatCAMGUI.py:6190 flatcamTools/ToolSolderPaste.py:225 msgid "Feedrate Z:" msgstr "Feedrate Z:" -#: flatcamGUI/FlatCAMGUI.py:6118 flatcamTools/ToolSolderPaste.py:227 +#: flatcamGUI/FlatCAMGUI.py:6192 flatcamTools/ToolSolderPaste.py:227 msgid "" "Feedrate (speed) while moving vertically\n" "(on Z plane)." msgstr "" "Viteza de deplasare a uneltei când se misca in plan vertical (planul Z)." -#: flatcamGUI/FlatCAMGUI.py:6126 flatcamTools/ToolSolderPaste.py:234 +#: flatcamGUI/FlatCAMGUI.py:6200 flatcamTools/ToolSolderPaste.py:234 msgid "Feedrate Z Dispense:" msgstr "Feedrate Z disp.:" -#: flatcamGUI/FlatCAMGUI.py:6128 flatcamTools/ToolSolderPaste.py:236 +#: flatcamGUI/FlatCAMGUI.py:6202 flatcamTools/ToolSolderPaste.py:236 msgid "" "Feedrate (speed) while moving up vertically\n" " to Dispense position (on Z plane)." @@ -8567,11 +8477,11 @@ msgstr "" "Viteza de deplasare la mișcarea pe verticala spre\n" "poziţia de dispensare (in planul Z)." -#: flatcamGUI/FlatCAMGUI.py:6136 flatcamTools/ToolSolderPaste.py:243 +#: flatcamGUI/FlatCAMGUI.py:6210 flatcamTools/ToolSolderPaste.py:243 msgid "Spindle Speed FWD:" msgstr "Viteza motor inainte:" -#: flatcamGUI/FlatCAMGUI.py:6138 flatcamTools/ToolSolderPaste.py:245 +#: flatcamGUI/FlatCAMGUI.py:6212 flatcamTools/ToolSolderPaste.py:245 msgid "" "The dispenser speed while pushing solder paste\n" "through the dispenser nozzle." @@ -8579,19 +8489,19 @@ msgstr "" "Viteza motorului de dispensare in timp ce impinge pastă de fludor\n" "prin orificiul uneltei de dispensare." -#: flatcamGUI/FlatCAMGUI.py:6146 flatcamTools/ToolSolderPaste.py:252 +#: flatcamGUI/FlatCAMGUI.py:6220 flatcamTools/ToolSolderPaste.py:252 msgid "Dwell FWD:" msgstr "Pauza dupa disp.:" -#: flatcamGUI/FlatCAMGUI.py:6148 flatcamTools/ToolSolderPaste.py:254 +#: flatcamGUI/FlatCAMGUI.py:6222 flatcamTools/ToolSolderPaste.py:254 msgid "Pause after solder dispensing." msgstr "Pauza dupa dispensarea de pastă de fludor." -#: flatcamGUI/FlatCAMGUI.py:6155 flatcamTools/ToolSolderPaste.py:260 +#: flatcamGUI/FlatCAMGUI.py:6229 flatcamTools/ToolSolderPaste.py:260 msgid "Spindle Speed REV:" -msgstr "Viteza motor reverse:" +msgstr "Viteza motor inapoi:" -#: flatcamGUI/FlatCAMGUI.py:6157 flatcamTools/ToolSolderPaste.py:262 +#: flatcamGUI/FlatCAMGUI.py:6231 flatcamTools/ToolSolderPaste.py:262 msgid "" "The dispenser speed while retracting solder paste\n" "through the dispenser nozzle." @@ -8599,11 +8509,11 @@ msgstr "" "Viteza motorului de dispensare in timp ce retrage pasta de fludor\n" "prin orificiul uneltei de dispensare." -#: flatcamGUI/FlatCAMGUI.py:6165 flatcamTools/ToolSolderPaste.py:269 +#: flatcamGUI/FlatCAMGUI.py:6239 flatcamTools/ToolSolderPaste.py:269 msgid "Dwell REV:" msgstr "Pauza dupa rev:" -#: flatcamGUI/FlatCAMGUI.py:6167 flatcamTools/ToolSolderPaste.py:271 +#: flatcamGUI/FlatCAMGUI.py:6241 flatcamTools/ToolSolderPaste.py:271 msgid "" "Pause after solder paste dispenser retracted,\n" "to allow pressure equilibrium." @@ -8611,23 +8521,23 @@ msgstr "" "Pauza dupa ce pasta de fludor a fost retrasă,\n" "necesară pt a ajunge la un echilibru al presiunilor." -#: flatcamGUI/FlatCAMGUI.py:6174 flatcamTools/ToolSolderPaste.py:277 +#: flatcamGUI/FlatCAMGUI.py:6248 flatcamTools/ToolSolderPaste.py:277 msgid "PostProcessors:" msgstr "Postprocesoare:" -#: flatcamGUI/FlatCAMGUI.py:6176 flatcamTools/ToolSolderPaste.py:279 +#: flatcamGUI/FlatCAMGUI.py:6250 flatcamTools/ToolSolderPaste.py:279 msgid "Files that control the GCode generation." msgstr "Fişiere care controlează generarea codului G-Code." -#: flatcamGUI/FlatCAMGUI.py:6206 flatcamGUI/FlatCAMGUI.py:6212 +#: flatcamGUI/FlatCAMGUI.py:6280 flatcamGUI/FlatCAMGUI.py:6286 msgid "Idle." msgstr "Inactiv." -#: flatcamGUI/FlatCAMGUI.py:6236 +#: flatcamGUI/FlatCAMGUI.py:6310 msgid "Application started ..." msgstr "Aplicaţia a pornit ..." -#: flatcamGUI/FlatCAMGUI.py:6237 +#: flatcamGUI/FlatCAMGUI.py:6311 msgid "Hello!" msgstr "Bună!" @@ -8700,20 +8610,12 @@ msgstr "" #: flatcamGUI/ObjectUI.py:129 msgid "Perform the offset operation." -msgstr "Efectuează operatia de Ofset." +msgstr "Efectuează operația de Ofset." #: flatcamGUI/ObjectUI.py:143 msgid "Gerber Object" msgstr "Obiect Gerber" -#: flatcamGUI/ObjectUI.py:156 -msgid "Solid " -msgstr "Solid" - -#: flatcamGUI/ObjectUI.py:164 -msgid "M-Color " -msgstr "M-Color " - #: flatcamGUI/ObjectUI.py:182 flatcamGUI/ObjectUI.py:517 #: flatcamGUI/ObjectUI.py:836 flatcamGUI/ObjectUI.py:1366 msgid "Name:" @@ -8725,7 +8627,7 @@ msgid "" "When unchecked, it will delete all mark shapes\n" "that are drawn on canvas." msgstr "" -"Comuta afișarea tabelei de aperturi Gerber.\n" +"Comută afișarea tabelei de aperturi Gerber.\n" "Când se debifează, toate marcajele aperturilor\n" "care sutn curent afisate, vor fi șterse." @@ -8755,7 +8657,7 @@ msgid "" "this parameter." msgstr "" "Diametrul uneltei taietoare.\n" -"Daca se doreste să se aibă o trecere de izolaţie\n" +"Daca se dorește să se aibă o trecere de izolaţie\n" "in interiorul poligonului Gerber (traseu), foloseşte\n" "o valoare negativă pt acest parametru." @@ -8918,6 +8820,14 @@ msgstr "Cercuri solide." msgid "Tools Table" msgstr "Tabela Unelte" +#: flatcamGUI/ObjectUI.py:556 +msgid "Drills" +msgstr "Găuri" + +#: flatcamGUI/ObjectUI.py:556 +msgid "Slots" +msgstr "Sloturi" + #: flatcamGUI/ObjectUI.py:557 msgid "Offset Z" msgstr "Ofset Z:" @@ -8960,7 +8870,7 @@ msgstr "" #: flatcamGUI/ObjectUI.py:578 msgid "Toggle display of the drills for the current tool." -msgstr "Comuta afișarea găurilor pt unealta curentă." +msgstr "Comută afișarea găurilor pt unealta curentă." #: flatcamGUI/ObjectUI.py:586 msgid "" @@ -9116,7 +9026,7 @@ msgstr "" "Uneltele din acest obiect Geometrie folosit pentru tăiere.\n" "Intrarea >Ofset< va seta un ofset pentru tăiere.\n" "Acesta poate fi Inauntru, In afară, Pe cale și Personalizat.\n" -"Intrarea >Tip< este doar informativa și permite să stim intentia\n" +"Intrarea >Tip< este doar informativa și permite să stim intenția\n" "pentru care folosim unealta aleasă.\n" "Poate să fie Grosier, Finisare și Izolaţie.\n" "Intrarea >Tip unealta< (TU) poate fi: Circular (cu unul sau mai\n" @@ -9269,7 +9179,7 @@ msgid "" "Copy a selection of tools in the Tool Table\n" "by first selecting a row in the Tool Table." msgstr "" -"Copiaza o selecţie de unelte in Tabela de Unelte prin\n" +"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:1007 @@ -9512,7 +9422,7 @@ msgid "" "Type here any G-Code commands you would\n" "like to add to the beginning of the generated file." msgstr "" -"Plasează aici acele comenzi GCode care se doreste să fie\n" +"Plasează aici acele comenzi GCode care se dorește să fie\n" "adaugate la inceputul codului masina CNC." #: flatcamGUI/ObjectUI.py:1483 @@ -9531,7 +9441,7 @@ msgid "" "that has 'toolchange_custom' in it's name and this is built\n" "having as template the 'Toolchange Custom' posprocessor file." msgstr "" -"Plasează aici acele comenzi G-Code care se doreste să fie executate\n" +"Plasează aici acele comenzi G-Code care se dorește să fie executate\n" "atunci când evenimentul de tip Schimb Unealta este intalnit.\n" "Aceasta va constitui un Macro pentru schimbare unealtă.\n" "Variabilele FlatCAM folosite aici sunt inconjurate de simbolul %.\n" @@ -9895,6 +9805,8 @@ msgstr "" #: flatcamTools/ToolCutOut.py:338 flatcamTools/ToolCutOut.py:483 #: flatcamTools/ToolNonCopperClear.py:666 flatcamTools/ToolPaint.py:764 #: flatcamTools/ToolPanelize.py:293 flatcamTools/ToolPanelize.py:307 +#: flatcamTools/ToolSub.py:234 flatcamTools/ToolSub.py:246 +#: flatcamTools/ToolSub.py:364 flatcamTools/ToolSub.py:376 #, python-format msgid "[ERROR_NOTCL] Could not retrieve object: %s" msgstr "[ERROR_NOTCL] Nu s-a putut incărca obiectul: %s" @@ -10797,33 +10709,38 @@ msgid "" "settings." msgstr "" "[ERROR_NOTCL] Unealta NCC a termiant lucrul dar nu a putut curăța de Cu " -"obiectul cu setarile curente." +"obiectul cu setările curente." -#: flatcamTools/ToolPDF.py:37 +#: flatcamTools/ToolPDF.py:38 msgid "PDF Import Tool" msgstr "Unealta import PDF" -#: flatcamTools/ToolPDF.py:142 flatcamTools/ToolPDF.py:146 +#: flatcamTools/ToolPDF.py:152 flatcamTools/ToolPDF.py:156 msgid "Open PDF" msgstr "Încarcă PDF" -#: flatcamTools/ToolPDF.py:149 +#: flatcamTools/ToolPDF.py:159 msgid "[WARNING_NOTCL] Open PDF cancelled." msgstr "[WARNING_NOTCL] Incărcarea fişier PDF anulata." -#: flatcamTools/ToolPDF.py:170 +#: flatcamTools/ToolPDF.py:186 msgid "Parsing PDF file ..." msgstr "Se parsează fisierul PDF ..." -#: flatcamTools/ToolPDF.py:266 +#: flatcamTools/ToolPDF.py:264 flatcamTools/ToolPDF.py:300 #, python-format msgid "Rendering PDF layer #%d ..." msgstr "Se generează layer-ul PDF #%d ..." -#: flatcamTools/ToolPDF.py:270 +#: flatcamTools/ToolPDF.py:268 flatcamTools/ToolPDF.py:304 msgid "[ERROR_NOTCL] Open PDF file failed." msgstr "[ERROR_NOTCL] Deschiderea unui fişier PDF a eșuat." +#: flatcamTools/ToolPDF.py:273 flatcamTools/ToolPDF.py:309 +#, python-format +msgid "[success] Rendered: %s" +msgstr "[success] Analizat: %s" + #: flatcamTools/ToolPaint.py:24 msgid "Paint Area" msgstr "Unealta Paint" @@ -10917,7 +10834,7 @@ msgstr "geometry_on_paint_button" #: flatcamTools/ToolPaint.py:752 flatcamTools/ToolPaint.py:787 msgid "[WARNING_NOTCL] Click inside the desired polygon." msgstr "" -"[WARNING_NOTCL] Click in interiorul poligonului care se doreste să fie " +"[WARNING_NOTCL] Click in interiorul poligonului care se dorește să fie " "'pictat'." #: flatcamTools/ToolPaint.py:774 @@ -11427,7 +11344,7 @@ msgstr "" "Al 3-lea pas este selectia unei geometrii de dispensare a pastei de fludor\n" "urmata de generarea unui obiect tip CNCJob.\n" "\n" -"ATENTIE: daca se doreste crearea un ui obiect CNCJob cu param. noi,\n" +"ATENTIE: daca se dorește crearea un ui obiect CNCJob cu param. noi,\n" "mai intai trebuie generat obiectul Geometrie cu acei parametri noi și abia\n" "apoi se poate genera un obiect CNCJob actualizat." @@ -11590,6 +11507,128 @@ 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/ToolSub.py:55 +msgid "Gerber Objects" +msgstr "Obiect Gerber" + +#: flatcamTools/ToolSub.py:64 flatcamTools/ToolSub.py:110 +msgid "Target:" +msgstr "Tintă:" + +#: flatcamTools/ToolSub.py:66 +msgid "" +"Gerber object from which to substract\n" +"the substractor Gerber object." +msgstr "" +"Obiectul Gerber din care se scade \n" +"obiectul Gerber substractor." + +#: flatcamTools/ToolSub.py:78 flatcamTools/ToolSub.py:124 +msgid "Substractor:" +msgstr "Substractor:" + +#: flatcamTools/ToolSub.py:80 +msgid "" +"Gerber object that will be substracted\n" +"from the target Gerber object." +msgstr "" +"Obiectul Gerber care se scade din \n" +"obiectul Gerber tintă." + +#: flatcamTools/ToolSub.py:87 +msgid "Substract Gerber" +msgstr "Execută" + +#: flatcamTools/ToolSub.py:89 +msgid "" +"Will remove the area occupied by the substractor\n" +"Gerber from the Target Gerber.\n" +"Can be used to remove the overlapping silkscreen\n" +"over the soldermask." +msgstr "" +"Va indepărta aria ocupată de obiectul \n" +"Gerber substractor din obiectul Gerber tintă.\n" +"Poate fi utilizat pt. a indepărta silkscreen-ul\n" +"care se suprapune peste soldermask." + +#: flatcamTools/ToolSub.py:101 +msgid "Geometry Objects" +msgstr "Obiecte Geometrie" + +#: flatcamTools/ToolSub.py:112 +msgid "" +"Geometry object from which to substract\n" +"the substractor Geometry object." +msgstr "" +"Obiectul Geometrie din care se scade \n" +"obiectul Geometrie substractor." + +#: flatcamTools/ToolSub.py:126 +msgid "" +"Geometry object that will be substracted\n" +"from the target Geometry object." +msgstr "" +"Obiectul Geometrie care se va scădea \n" +"din obiectul Geometrie tintă." + +#: flatcamTools/ToolSub.py:133 +msgid "Substract Geometry" +msgstr "Execută" + +#: flatcamTools/ToolSub.py:135 +msgid "" +"Will remove the area occupied by the substractor\n" +"Geometry from the Target Geometry." +msgstr "" +"Va indepărta aria ocupată de obiectul Geometrie \n" +"substractor din obiectul Geometrie tintă." + +#: flatcamTools/ToolSub.py:212 +msgid "Sub Tool" +msgstr "Unealta Scădere" + +#: flatcamTools/ToolSub.py:227 flatcamTools/ToolSub.py:357 +msgid "[ERROR_NOTCL] No Target object loaded." +msgstr "[ERROR_NOTCL] Nu este incărcat obiect Tintă." + +#: flatcamTools/ToolSub.py:239 flatcamTools/ToolSub.py:369 +msgid "[ERROR_NOTCL] No Substractor object loaded." +msgstr "[ERROR_NOTCL] Nu este incărcat obiect Substractor (scăzător)." + +#: flatcamTools/ToolSub.py:277 +#, python-format +msgid "Parsing aperture %s geometry ..." +msgstr "Se analizează geo pt. apertura: %s..." + +#: flatcamTools/ToolSub.py:331 flatcamTools/ToolSub.py:475 +msgid "Generating new object ..." +msgstr "Se generează un obiect nou ..." + +#: flatcamTools/ToolSub.py:334 flatcamTools/ToolSub.py:478 +msgid "[ERROR_NOTCL] Generating new object failed." +msgstr "[ERROR_NOTCL] Generarea unui nou obiect a esuat." + +#: flatcamTools/ToolSub.py:339 flatcamTools/ToolSub.py:483 +#, python-format +msgid "[success] Created: %s" +msgstr "[success] Creat: %s" + +#: flatcamTools/ToolSub.py:380 +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:425 +msgid "Parsing solid_geometry ..." +msgstr "Analizează geometria solidă..." + +#: flatcamTools/ToolSub.py:427 +#, python-format +msgid "Parsing tool %s geometry ..." +msgstr "Analizează geo a uneltei %s ..." + #: flatcamTools/ToolTransform.py:23 msgid "Object Transform" msgstr "Transformare Obiect" @@ -11707,6 +11746,117 @@ msgstr "" msgid "CNCJob objects can't be offseted." msgstr "Obiectele tip CNCJob nu pot fi deplasate." +#~ msgid "Path" +#~ msgstr "Pe cale" + +#~ msgid "In" +#~ msgstr "În" + +#~ msgid "Out" +#~ msgstr "Afară" + +#~ msgid "Custom" +#~ msgstr "Personalizat" + +#~ msgid "Angle" +#~ msgstr "Unghi" + +#~ msgid "Standard" +#~ msgstr "Standard" + +#~ msgid "Seed-based" +#~ msgstr "Punct-samanta" + +#~ msgid "Straight lines" +#~ msgstr "Linii drepte" + +#~ msgid "Copy Drill(s)" +#~ msgstr "Copiaza Găurire" + +#~ msgid "Basic" +#~ msgstr "Baza" + +#~ msgid "Advanced" +#~ msgstr "Avansat" + +#~ msgid "MMB" +#~ msgstr "MMB" + +#~ msgid "RMB" +#~ msgstr "RMB" + +#~ msgid "CTRL" +#~ msgstr "CTRL" + +#~ msgid "SHIFT" +#~ msgstr "SHIFT" + +#~ msgid "Climb" +#~ msgstr "Urcare" + +#~ msgid "Conv." +#~ msgstr "Conv." + +#~ msgid "LZ" +#~ msgstr "LZ" + +#~ msgid "TZ" +#~ msgstr "TZ" + +#~ msgid "INCH" +#~ msgstr "Inch" + +#~ msgid "MM" +#~ msgstr "MM" + +#~ msgid "MH" +#~ msgstr "MH" + +#~ msgid "Both" +#~ msgstr "Ambele" + +#~ msgid "Decimal" +#~ msgstr "Cu dec." + +#~ msgid "No-Decimal" +#~ msgstr "Fără dec." + +#~ msgid "Travel" +#~ msgstr "Voiaj" + +#~ msgid "X" +#~ msgstr "X" + +#~ msgid "Y" +#~ msgstr "Y" + +#~ msgid "Point" +#~ msgstr "Punct" + +#~ msgid "Box" +#~ msgstr "Forma" + +#~ msgid "Single" +#~ msgstr "Unic" + +#~ msgid "Pos" +#~ msgstr "Pozitiv" + +#~ msgid "Neg" +#~ msgstr "Negativ" + +#~ msgid "Gerber" +#~ msgstr "Gerber" + +#~ msgid "Geo" +#~ msgstr "Geo" + +#~ msgid "Solid " +#~ msgstr "Solid" + +#~ msgid "M-Color " +#~ msgstr "M-Color " + #~ msgid "Done." #~ msgstr "Executat." diff --git a/locale_template/strings.pot b/locale_template/strings.pot index 806b49b7..0feb8f97 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-04-23 17:49+0300\n" +"POT-Creation-Date: 2019-05-01 16:03+0300\n" "PO-Revision-Date: 2019-03-25 15:08+0200\n" "Last-Translator: \n" "Language-Team: \n" @@ -23,141 +23,141 @@ msgstr "" "X-Poedit-SearchPathExcluded-1: doc\n" "X-Poedit-SearchPathExcluded-2: tests\n" -#: FlatCAMApp.py:857 +#: FlatCAMApp.py:865 msgid "[ERROR] Could not find the Language files. The App strings are missing." msgstr "" -#: FlatCAMApp.py:1889 ObjectCollection.py:80 flatcamTools/ToolImage.py:213 +#: FlatCAMApp.py:1921 ObjectCollection.py:80 flatcamTools/ToolImage.py:213 #: flatcamTools/ToolPcbWizard.py:299 flatcamTools/ToolPcbWizard.py:322 msgid "Open cancelled." msgstr "" -#: FlatCAMApp.py:1903 +#: FlatCAMApp.py:1935 msgid "Open Config file failed." msgstr "" -#: FlatCAMApp.py:1917 +#: FlatCAMApp.py:1949 msgid "Open Script file failed." msgstr "" -#: FlatCAMApp.py:2102 +#: FlatCAMApp.py:2140 msgid "[WARNING_NOTCL] Select a Geometry, Gerber or Excellon Object to edit." msgstr "" -#: FlatCAMApp.py:2112 +#: FlatCAMApp.py:2150 msgid "" "[WARNING_NOTCL] Simultanoeus editing of tools geometry in a MultiGeo " "Geometry is not possible.\n" "Edit only one geometry at a time." msgstr "" -#: FlatCAMApp.py:2149 +#: FlatCAMApp.py:2188 msgid "[WARNING_NOTCL] Editor is activated ..." msgstr "" -#: FlatCAMApp.py:2168 +#: FlatCAMApp.py:2207 msgid "Do you want to save the edited object?" msgstr "" -#: FlatCAMApp.py:2169 flatcamGUI/FlatCAMGUI.py:1593 +#: FlatCAMApp.py:2208 flatcamGUI/FlatCAMGUI.py:1604 msgid "Close Editor" msgstr "" -#: FlatCAMApp.py:2172 FlatCAMApp.py:3254 FlatCAMApp.py:5559 -#: FlatCAMTranslation.py:89 flatcamGUI/FlatCAMGUI.py:3631 +#: FlatCAMApp.py:2211 FlatCAMApp.py:3302 FlatCAMApp.py:5661 +#: FlatCAMTranslation.py:89 flatcamGUI/FlatCAMGUI.py:3698 msgid "Yes" msgstr "" -#: FlatCAMApp.py:2173 FlatCAMApp.py:3255 FlatCAMApp.py:5560 -#: FlatCAMTranslation.py:90 flatcamGUI/FlatCAMGUI.py:3632 +#: FlatCAMApp.py:2212 FlatCAMApp.py:3303 FlatCAMApp.py:5662 +#: FlatCAMTranslation.py:90 flatcamGUI/FlatCAMGUI.py:3699 msgid "No" msgstr "" -#: FlatCAMApp.py:2174 FlatCAMApp.py:3256 FlatCAMApp.py:3588 FlatCAMApp.py:5561 +#: FlatCAMApp.py:2213 FlatCAMApp.py:3304 FlatCAMApp.py:3636 FlatCAMApp.py:5663 msgid "Cancel" msgstr "" -#: FlatCAMApp.py:2196 FlatCAMApp.py:2221 +#: FlatCAMApp.py:2235 FlatCAMApp.py:2260 msgid "[WARNING] Object empty after edit." msgstr "" -#: FlatCAMApp.py:2230 FlatCAMApp.py:2244 FlatCAMApp.py:2256 +#: FlatCAMApp.py:2269 FlatCAMApp.py:2283 FlatCAMApp.py:2295 msgid "[WARNING_NOTCL] Select a Gerber, Geometry or Excellon Object to update." msgstr "" -#: FlatCAMApp.py:2233 +#: FlatCAMApp.py:2272 #, python-format msgid "[selected] %s is updated, returning to App..." msgstr "" -#: FlatCAMApp.py:2592 +#: FlatCAMApp.py:2632 msgid "[ERROR] Could not load defaults file." msgstr "" -#: FlatCAMApp.py:2604 +#: FlatCAMApp.py:2644 msgid "[ERROR] Failed to parse defaults file." msgstr "" -#: FlatCAMApp.py:2625 FlatCAMApp.py:2628 +#: FlatCAMApp.py:2665 FlatCAMApp.py:2668 msgid "Import FlatCAM Preferences" msgstr "" -#: FlatCAMApp.py:2633 +#: FlatCAMApp.py:2673 msgid "[WARNING_NOTCL] FlatCAM preferences import cancelled." msgstr "" -#: FlatCAMApp.py:2641 FlatCAMApp.py:2688 FlatCAMApp.py:3133 +#: FlatCAMApp.py:2681 FlatCAMApp.py:2728 FlatCAMApp.py:3181 msgid "[ERROR_NOTCL] Could not load defaults file." msgstr "" -#: FlatCAMApp.py:2649 FlatCAMApp.py:3142 +#: FlatCAMApp.py:2689 FlatCAMApp.py:3190 msgid "[ERROR_NOTCL] Failed to parse defaults file." msgstr "" -#: FlatCAMApp.py:2652 +#: FlatCAMApp.py:2692 #, python-format msgid "[success] Imported Defaults from %s" msgstr "" -#: FlatCAMApp.py:2662 FlatCAMApp.py:2666 +#: FlatCAMApp.py:2702 FlatCAMApp.py:2706 msgid "Export FlatCAM Preferences" msgstr "" -#: FlatCAMApp.py:2672 +#: FlatCAMApp.py:2712 msgid "[WARNING_NOTCL] FlatCAM preferences export cancelled." msgstr "" -#: FlatCAMApp.py:2707 FlatCAMApp.py:3187 +#: FlatCAMApp.py:2747 FlatCAMApp.py:3235 msgid "[ERROR_NOTCL] Failed to write defaults to file." msgstr "" -#: FlatCAMApp.py:2759 +#: FlatCAMApp.py:2799 msgid "[ERROR_NOTCL] Failed to open recent files file for writing." msgstr "" -#: FlatCAMApp.py:2844 camlib.py:4493 +#: FlatCAMApp.py:2884 camlib.py:4503 msgid "[ERROR_NOTCL] An internal error has ocurred. See shell.\n" msgstr "" -#: FlatCAMApp.py:2845 +#: FlatCAMApp.py:2885 #, python-brace-format msgid "" "Object ({kind}) failed because: {error} \n" "\n" msgstr "" -#: FlatCAMApp.py:2865 +#: FlatCAMApp.py:2905 msgid "Converting units to " msgstr "" -#: FlatCAMApp.py:2935 FlatCAMApp.py:2938 FlatCAMApp.py:2941 FlatCAMApp.py:2944 +#: FlatCAMApp.py:2983 FlatCAMApp.py:2986 FlatCAMApp.py:2989 FlatCAMApp.py:2992 #, python-brace-format msgid "" "[selected] {kind} created/selected: {name}" msgstr "" -#: FlatCAMApp.py:3038 +#: FlatCAMApp.py:3086 #, python-brace-format msgid "" "FlatCAM
Version {version} {beta} ({date}) - " @@ -171,41 +171,41 @@ msgid "" "downloads/\">here.
" msgstr "" -#: FlatCAMApp.py:3191 +#: FlatCAMApp.py:3239 msgid "[success] Defaults saved." msgstr "" -#: FlatCAMApp.py:3212 +#: FlatCAMApp.py:3260 msgid "[ERROR_NOTCL] Could not load factory defaults file." msgstr "" -#: FlatCAMApp.py:3221 +#: FlatCAMApp.py:3269 msgid "[ERROR_NOTCL] Failed to parse factory defaults file." msgstr "" -#: FlatCAMApp.py:3235 +#: FlatCAMApp.py:3283 msgid "[ERROR_NOTCL] Failed to write factory defaults to file." msgstr "" -#: FlatCAMApp.py:3239 +#: FlatCAMApp.py:3287 msgid "Factory defaults saved." msgstr "" -#: FlatCAMApp.py:3244 flatcamGUI/FlatCAMGUI.py:3063 +#: FlatCAMApp.py:3292 flatcamGUI/FlatCAMGUI.py:3088 msgid "[WARNING_NOTCL] Application is saving the project. Please wait ..." msgstr "" -#: FlatCAMApp.py:3249 +#: FlatCAMApp.py:3297 msgid "" "There are files/objects modified in FlatCAM. \n" "Do you want to Save the project?" msgstr "" -#: FlatCAMApp.py:3252 FlatCAMApp.py:5557 +#: FlatCAMApp.py:3300 FlatCAMApp.py:5659 msgid "Save changes" msgstr "" -#: FlatCAMApp.py:3319 +#: FlatCAMApp.py:3367 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 " @@ -215,438 +215,465 @@ msgid "" "Check the generated GCODE." msgstr "" -#: FlatCAMApp.py:3360 +#: FlatCAMApp.py:3408 msgid "[ERROR_NOTCL] Failed. Excellon joining works only on Excellon objects." msgstr "" -#: FlatCAMApp.py:3382 +#: FlatCAMApp.py:3430 msgid "[ERROR_NOTCL] Failed. Gerber joining works only on Gerber objects." msgstr "" -#: FlatCAMApp.py:3397 FlatCAMApp.py:3422 +#: FlatCAMApp.py:3445 FlatCAMApp.py:3470 msgid "[ERROR_NOTCL] Failed. Select a Geometry Object and try again." msgstr "" -#: FlatCAMApp.py:3401 FlatCAMApp.py:3426 +#: FlatCAMApp.py:3449 FlatCAMApp.py:3474 #, python-format msgid "[ERROR_NOTCL] Expected a FlatCAMGeometry, got %s" msgstr "" -#: FlatCAMApp.py:3414 +#: FlatCAMApp.py:3462 msgid "[success] A Geometry object was converted to MultiGeo type." msgstr "" -#: FlatCAMApp.py:3440 +#: FlatCAMApp.py:3488 msgid "[success] A Geometry object was converted to SingleGeo type." msgstr "" -#: FlatCAMApp.py:3587 FlatCAMApp.py:4352 FlatCAMApp.py:5824 FlatCAMApp.py:5835 -#: FlatCAMApp.py:6021 FlatCAMApp.py:6031 +#: FlatCAMApp.py:3635 FlatCAMApp.py:4444 FlatCAMApp.py:5926 FlatCAMApp.py:5937 +#: FlatCAMApp.py:6123 FlatCAMApp.py:6133 msgid "Ok" msgstr "" -#: FlatCAMApp.py:3628 +#: FlatCAMApp.py:3676 #, python-format msgid "[success] Converted units to %s" msgstr "" -#: FlatCAMApp.py:3639 +#: FlatCAMApp.py:3687 msgid "[WARNING_NOTCL] Units conversion cancelled." msgstr "" -#: FlatCAMApp.py:4221 +#: FlatCAMApp.py:4313 msgid "Open file" msgstr "" -#: FlatCAMApp.py:4252 FlatCAMApp.py:4257 +#: FlatCAMApp.py:4344 FlatCAMApp.py:4349 msgid "Export G-Code ..." msgstr "" -#: FlatCAMApp.py:4260 +#: FlatCAMApp.py:4352 msgid "[WARNING_NOTCL] Export Code cancelled." msgstr "" -#: FlatCAMApp.py:4270 +#: FlatCAMApp.py:4362 msgid "[WARNING] No such file or directory" msgstr "" -#: FlatCAMApp.py:4277 +#: FlatCAMApp.py:4369 #, python-format msgid "Saved to: %s" msgstr "" -#: FlatCAMApp.py:4340 FlatCAMApp.py:4373 FlatCAMApp.py:4384 FlatCAMApp.py:4395 +#: FlatCAMApp.py:4432 FlatCAMApp.py:4465 FlatCAMApp.py:4476 FlatCAMApp.py:4487 #: flatcamTools/ToolNonCopperClear.py:489 flatcamTools/ToolSolderPaste.py:765 msgid "" "[WARNING_NOTCL] Please enter a tool diameter with non-zero value, in Float " "format." msgstr "" -#: FlatCAMApp.py:4345 FlatCAMApp.py:4378 FlatCAMApp.py:4389 FlatCAMApp.py:4400 -#: flatcamGUI/FlatCAMGUI.py:2959 +#: FlatCAMApp.py:4437 FlatCAMApp.py:4470 FlatCAMApp.py:4481 FlatCAMApp.py:4492 +#: flatcamGUI/FlatCAMGUI.py:2983 msgid "[WARNING_NOTCL] Adding Tool cancelled ..." msgstr "" -#: FlatCAMApp.py:4348 +#: FlatCAMApp.py:4440 msgid "" "Adding Tool works only when Advanced is checked.\n" "Go to Preferences -> General - Show Advanced Options." msgstr "" -#: FlatCAMApp.py:4454 +#: FlatCAMApp.py:4546 msgid "Object(s) deleted ..." msgstr "" -#: FlatCAMApp.py:4458 +#: FlatCAMApp.py:4550 msgid "Failed. No object(s) selected..." msgstr "" -#: FlatCAMApp.py:4460 +#: FlatCAMApp.py:4552 msgid "Save the work in Editor and try again ..." msgstr "" -#: FlatCAMApp.py:4473 +#: FlatCAMApp.py:4565 msgid "Click to set the origin ..." msgstr "" -#: FlatCAMApp.py:4485 +#: FlatCAMApp.py:4577 msgid "Jump to ..." msgstr "" -#: FlatCAMApp.py:4486 +#: FlatCAMApp.py:4578 msgid "Enter the coordinates in format X,Y:" msgstr "" -#: FlatCAMApp.py:4493 +#: FlatCAMApp.py:4585 msgid "Wrong coordinates. Enter coordinates in format: X,Y" msgstr "" -#: FlatCAMApp.py:4511 flatcamEditors/FlatCAMGeoEditor.py:3413 +#: FlatCAMApp.py:4603 flatcamEditors/FlatCAMGeoEditor.py:3485 #: flatcamEditors/FlatCAMGrbEditor.py:790 #: flatcamEditors/FlatCAMGrbEditor.py:885 #: flatcamEditors/FlatCAMGrbEditor.py:1122 -#: flatcamEditors/FlatCAMGrbEditor.py:1343 -#: flatcamEditors/FlatCAMGrbEditor.py:3235 -#: flatcamEditors/FlatCAMGrbEditor.py:3248 flatcamGUI/FlatCAMGUI.py:2373 -#: flatcamGUI/FlatCAMGUI.py:2385 +#: flatcamEditors/FlatCAMGrbEditor.py:1350 +#: flatcamEditors/FlatCAMGrbEditor.py:3318 +#: flatcamEditors/FlatCAMGrbEditor.py:3332 flatcamGUI/FlatCAMGUI.py:2397 +#: flatcamGUI/FlatCAMGUI.py:2409 msgid "[success] Done." msgstr "" -#: FlatCAMApp.py:4670 +#: FlatCAMApp.py:4767 msgid "[success] Origin set ..." msgstr "" -#: FlatCAMApp.py:4688 +#: FlatCAMApp.py:4786 msgid "Preferences" msgstr "" -#: FlatCAMApp.py:4708 +#: FlatCAMApp.py:4806 msgid "[WARNING_NOTCL] No object selected to Flip on Y axis." msgstr "" -#: FlatCAMApp.py:4733 +#: FlatCAMApp.py:4831 msgid "[success] Flip on Y axis done." msgstr "" -#: FlatCAMApp.py:4735 FlatCAMApp.py:4775 +#: FlatCAMApp.py:4833 FlatCAMApp.py:4873 #: flatcamEditors/FlatCAMGeoEditor.py:1354 -#: flatcamEditors/FlatCAMGrbEditor.py:4533 flatcamTools/ToolTransform.py:750 +#: flatcamEditors/FlatCAMGrbEditor.py:4631 flatcamTools/ToolTransform.py:750 #, python-format msgid "[ERROR_NOTCL] Due of %s, Flip action was not executed." msgstr "" -#: FlatCAMApp.py:4748 +#: FlatCAMApp.py:4846 msgid "[WARNING_NOTCL] No object selected to Flip on X axis." msgstr "" -#: FlatCAMApp.py:4773 +#: FlatCAMApp.py:4871 msgid "[success] Flip on X axis done." msgstr "" -#: FlatCAMApp.py:4788 +#: FlatCAMApp.py:4886 msgid "[WARNING_NOTCL] No object selected to Rotate." msgstr "" -#: FlatCAMApp.py:4791 FlatCAMApp.py:4836 FlatCAMApp.py:4867 +#: FlatCAMApp.py:4889 FlatCAMApp.py:4934 FlatCAMApp.py:4965 msgid "Transform" msgstr "" -#: FlatCAMApp.py:4791 FlatCAMApp.py:4836 FlatCAMApp.py:4867 +#: FlatCAMApp.py:4889 FlatCAMApp.py:4934 FlatCAMApp.py:4965 msgid "Enter the Angle value:" msgstr "" -#: FlatCAMApp.py:4821 +#: FlatCAMApp.py:4919 msgid "[success] Rotation done." msgstr "" -#: FlatCAMApp.py:4823 flatcamEditors/FlatCAMGeoEditor.py:1297 -#: flatcamEditors/FlatCAMGrbEditor.py:4476 flatcamTools/ToolTransform.py:678 +#: FlatCAMApp.py:4921 flatcamEditors/FlatCAMGeoEditor.py:1297 +#: flatcamEditors/FlatCAMGrbEditor.py:4574 flatcamTools/ToolTransform.py:678 #, python-format msgid "[ERROR_NOTCL] Due of %s, rotation movement was not executed." msgstr "" -#: FlatCAMApp.py:4834 +#: FlatCAMApp.py:4932 msgid "[WARNING_NOTCL] No object selected to Skew/Shear on X axis." msgstr "" -#: FlatCAMApp.py:4855 +#: FlatCAMApp.py:4953 msgid "[success] Skew on X axis done." msgstr "" -#: FlatCAMApp.py:4865 +#: FlatCAMApp.py:4963 msgid "[WARNING_NOTCL] No object selected to Skew/Shear on Y axis." msgstr "" -#: FlatCAMApp.py:4886 +#: FlatCAMApp.py:4984 msgid "[success] Skew on Y axis done." msgstr "" -#: FlatCAMApp.py:4982 FlatCAMApp.py:5009 +#: FlatCAMApp.py:5059 flatcamEditors/FlatCAMGeoEditor.py:936 +#: flatcamEditors/FlatCAMGrbEditor.py:1830 +#: flatcamEditors/FlatCAMGrbEditor.py:4204 flatcamGUI/ObjectUI.py:988 +#: flatcamTools/ToolDblSided.py:160 flatcamTools/ToolDblSided.py:208 +#: flatcamTools/ToolNonCopperClear.py:134 flatcamTools/ToolPaint.py:131 +#: flatcamTools/ToolSolderPaste.py:115 flatcamTools/ToolSolderPaste.py:479 +#: flatcamTools/ToolTransform.py:337 +msgid "Add" +msgstr "" + +#: FlatCAMApp.py:5060 FlatCAMObj.py:3008 +#: flatcamEditors/FlatCAMGrbEditor.py:1835 flatcamGUI/FlatCAMGUI.py:519 +#: flatcamGUI/FlatCAMGUI.py:713 flatcamGUI/FlatCAMGUI.py:1602 +#: flatcamGUI/FlatCAMGUI.py:1934 flatcamGUI/ObjectUI.py:1004 +#: flatcamTools/ToolNonCopperClear.py:146 flatcamTools/ToolPaint.py:143 +#: flatcamTools/ToolSolderPaste.py:121 flatcamTools/ToolSolderPaste.py:481 +msgid "Delete" +msgstr "" + +#: FlatCAMApp.py:5072 +msgid "New Grid ..." +msgstr "" + +#: FlatCAMApp.py:5073 +msgid "Enter a Grid Value:" +msgstr "" + +#: FlatCAMApp.py:5081 FlatCAMApp.py:5108 msgid "" "[WARNING_NOTCL] Please enter a grid value with non-zero value, in Float " "format." msgstr "" -#: FlatCAMApp.py:4988 +#: FlatCAMApp.py:5087 msgid "[success] New Grid added ..." msgstr "" -#: FlatCAMApp.py:4991 +#: FlatCAMApp.py:5090 msgid "[WARNING_NOTCL] Grid already exists ..." msgstr "" -#: FlatCAMApp.py:4994 +#: FlatCAMApp.py:5093 msgid "[WARNING_NOTCL] Adding New Grid cancelled ..." msgstr "" -#: FlatCAMApp.py:5016 +#: FlatCAMApp.py:5115 msgid "[ERROR_NOTCL] Grid Value does not exist ..." msgstr "" -#: FlatCAMApp.py:5019 +#: FlatCAMApp.py:5118 msgid "[success] Grid Value deleted ..." msgstr "" -#: FlatCAMApp.py:5022 +#: FlatCAMApp.py:5121 msgid "[WARNING_NOTCL] Delete Grid value cancelled ..." msgstr "" -#: FlatCAMApp.py:5061 +#: FlatCAMApp.py:5160 msgid "[WARNING_NOTCL] No object selected to copy it's name" msgstr "" -#: FlatCAMApp.py:5065 +#: FlatCAMApp.py:5164 msgid "Name copied on clipboard ..." msgstr "" -#: FlatCAMApp.py:5357 FlatCAMApp.py:5360 FlatCAMApp.py:5363 FlatCAMApp.py:5366 -#: FlatCAMApp.py:5380 FlatCAMApp.py:5383 FlatCAMApp.py:5386 FlatCAMApp.py:5389 -#: FlatCAMApp.py:5428 FlatCAMApp.py:5431 FlatCAMApp.py:5434 FlatCAMApp.py:5437 -#: ObjectCollection.py:711 ObjectCollection.py:714 ObjectCollection.py:717 -#: ObjectCollection.py:720 +#: FlatCAMApp.py:5457 FlatCAMApp.py:5460 FlatCAMApp.py:5463 FlatCAMApp.py:5466 +#: FlatCAMApp.py:5481 FlatCAMApp.py:5484 FlatCAMApp.py:5487 FlatCAMApp.py:5490 +#: FlatCAMApp.py:5530 FlatCAMApp.py:5533 FlatCAMApp.py:5536 FlatCAMApp.py:5539 +#: ObjectCollection.py:717 ObjectCollection.py:720 ObjectCollection.py:723 +#: ObjectCollection.py:726 #, python-brace-format msgid "[selected]{name} selected" msgstr "" -#: FlatCAMApp.py:5554 +#: FlatCAMApp.py:5656 msgid "" "There are files/objects opened in FlatCAM.\n" "Creating a New project will delete them.\n" "Do you want to Save the project?" msgstr "" -#: FlatCAMApp.py:5575 +#: FlatCAMApp.py:5677 msgid "[success] New Project created..." msgstr "" -#: FlatCAMApp.py:5683 FlatCAMApp.py:5686 flatcamGUI/FlatCAMGUI.py:600 -#: flatcamGUI/FlatCAMGUI.py:1806 +#: FlatCAMApp.py:5785 FlatCAMApp.py:5788 flatcamGUI/FlatCAMGUI.py:600 +#: flatcamGUI/FlatCAMGUI.py:1817 msgid "Open Gerber" msgstr "" -#: FlatCAMApp.py:5691 +#: FlatCAMApp.py:5793 msgid "[WARNING_NOTCL] Open Gerber cancelled." msgstr "" -#: FlatCAMApp.py:5712 FlatCAMApp.py:5715 flatcamGUI/FlatCAMGUI.py:601 -#: flatcamGUI/FlatCAMGUI.py:1807 +#: FlatCAMApp.py:5814 FlatCAMApp.py:5817 flatcamGUI/FlatCAMGUI.py:601 +#: flatcamGUI/FlatCAMGUI.py:1818 msgid "Open Excellon" msgstr "" -#: FlatCAMApp.py:5720 +#: FlatCAMApp.py:5822 msgid "[WARNING_NOTCL] Open Excellon cancelled." msgstr "" -#: FlatCAMApp.py:5742 FlatCAMApp.py:5745 +#: FlatCAMApp.py:5844 FlatCAMApp.py:5847 msgid "Open G-Code" msgstr "" -#: FlatCAMApp.py:5750 +#: FlatCAMApp.py:5852 msgid "[WARNING_NOTCL] Open G-Code cancelled." msgstr "" -#: FlatCAMApp.py:5768 FlatCAMApp.py:5771 +#: FlatCAMApp.py:5870 FlatCAMApp.py:5873 msgid "Open Project" msgstr "" -#: FlatCAMApp.py:5779 +#: FlatCAMApp.py:5881 msgid "[WARNING_NOTCL] Open Project cancelled." msgstr "" -#: FlatCAMApp.py:5798 FlatCAMApp.py:5801 +#: FlatCAMApp.py:5900 FlatCAMApp.py:5903 msgid "Open Configuration File" msgstr "" -#: FlatCAMApp.py:5805 +#: FlatCAMApp.py:5907 msgid "[WARNING_NOTCL Open Config cancelled." msgstr "" -#: FlatCAMApp.py:5820 FlatCAMApp.py:6017 FlatCAMApp.py:8103 FlatCAMApp.py:8123 -#: FlatCAMApp.py:8144 FlatCAMApp.py:8166 +#: FlatCAMApp.py:5922 FlatCAMApp.py:6119 FlatCAMApp.py:8206 FlatCAMApp.py:8226 +#: FlatCAMApp.py:8247 FlatCAMApp.py:8269 msgid "[WARNING_NOTCL] No object selected." msgstr "" -#: FlatCAMApp.py:5821 FlatCAMApp.py:6018 +#: FlatCAMApp.py:5923 FlatCAMApp.py:6120 msgid "Please Select a Geometry object to export" msgstr "" -#: FlatCAMApp.py:5832 +#: FlatCAMApp.py:5934 msgid "[ERROR_NOTCL] Only Geometry, Gerber and CNCJob objects can be used." msgstr "" -#: FlatCAMApp.py:5845 FlatCAMApp.py:5849 +#: FlatCAMApp.py:5947 FlatCAMApp.py:5951 msgid "Export SVG" msgstr "" -#: FlatCAMApp.py:5854 +#: FlatCAMApp.py:5956 msgid "[WARNING_NOTCL] Export SVG cancelled." msgstr "" -#: FlatCAMApp.py:5868 +#: FlatCAMApp.py:5970 msgid "[[WARNING_NOTCL]] Data must be a 3D array with last dimension 3 or 4" msgstr "" -#: FlatCAMApp.py:5874 FlatCAMApp.py:5878 +#: FlatCAMApp.py:5976 FlatCAMApp.py:5980 msgid "Export PNG Image" msgstr "" -#: FlatCAMApp.py:5883 +#: FlatCAMApp.py:5985 msgid "Export PNG cancelled." msgstr "" -#: FlatCAMApp.py:5900 +#: FlatCAMApp.py:6002 msgid "" "[WARNING_NOTCL] No object selected. Please select an Gerber object to export." msgstr "" -#: FlatCAMApp.py:5905 +#: FlatCAMApp.py:6007 msgid "" "[ERROR_NOTCL] Failed. Only Gerber objects can be saved as Gerber files..." msgstr "" -#: FlatCAMApp.py:5917 +#: FlatCAMApp.py:6019 msgid "Save Gerber source file" msgstr "" -#: FlatCAMApp.py:5922 +#: FlatCAMApp.py:6024 msgid "[WARNING_NOTCL] Save Gerber source file cancelled." msgstr "" -#: FlatCAMApp.py:5939 +#: FlatCAMApp.py:6041 msgid "" "[WARNING_NOTCL] No object selected. Please select an Excellon object to " "export." msgstr "" -#: FlatCAMApp.py:5944 FlatCAMApp.py:5983 +#: FlatCAMApp.py:6046 FlatCAMApp.py:6085 msgid "" "[ERROR_NOTCL] Failed. Only Excellon objects can be saved as Excellon files..." msgstr "" -#: FlatCAMApp.py:5952 FlatCAMApp.py:5956 +#: FlatCAMApp.py:6054 FlatCAMApp.py:6058 msgid "Save Excellon source file" msgstr "" -#: FlatCAMApp.py:5961 +#: FlatCAMApp.py:6063 msgid "[WARNING_NOTCL] Saving Excellon source file cancelled." msgstr "" -#: FlatCAMApp.py:5978 +#: FlatCAMApp.py:6080 msgid "" "[WARNING_NOTCL] No object selected. Please Select an Excellon object to " "export." msgstr "" -#: FlatCAMApp.py:5991 FlatCAMApp.py:5995 +#: FlatCAMApp.py:6093 FlatCAMApp.py:6097 msgid "Export Excellon" msgstr "" -#: FlatCAMApp.py:6000 +#: FlatCAMApp.py:6102 msgid "[WARNING_NOTCL] Export Excellon cancelled." msgstr "" -#: FlatCAMApp.py:6028 +#: FlatCAMApp.py:6130 msgid "[ERROR_NOTCL] Only Geometry objects can be used." msgstr "" -#: FlatCAMApp.py:6042 FlatCAMApp.py:6046 +#: FlatCAMApp.py:6144 FlatCAMApp.py:6148 msgid "Export DXF" msgstr "" -#: FlatCAMApp.py:6051 +#: FlatCAMApp.py:6153 msgid "[WARNING_NOTCL] Export DXF cancelled." msgstr "" -#: FlatCAMApp.py:6069 FlatCAMApp.py:6072 +#: FlatCAMApp.py:6171 FlatCAMApp.py:6174 msgid "Import SVG" msgstr "" -#: FlatCAMApp.py:6080 +#: FlatCAMApp.py:6182 msgid "[WARNING_NOTCL] Open SVG cancelled." msgstr "" -#: FlatCAMApp.py:6099 FlatCAMApp.py:6102 +#: FlatCAMApp.py:6201 FlatCAMApp.py:6204 msgid "Import DXF" msgstr "" -#: FlatCAMApp.py:6110 +#: FlatCAMApp.py:6212 msgid "[WARNING_NOTCL] Open DXF cancelled." msgstr "" -#: FlatCAMApp.py:6128 +#: FlatCAMApp.py:6230 #, python-format msgid "%s" msgstr "" -#: FlatCAMApp.py:6148 +#: FlatCAMApp.py:6250 msgid "" "[WARNING_NOTCL] Select an Gerber or Excellon file to view it's source file." msgstr "" -#: FlatCAMApp.py:6155 +#: FlatCAMApp.py:6257 msgid "" "[WARNING_NOTCL] There is no selected object for which to see it's source " "file code." msgstr "" -#: FlatCAMApp.py:6163 +#: FlatCAMApp.py:6265 msgid "Source Editor" msgstr "" -#: FlatCAMApp.py:6173 +#: FlatCAMApp.py:6275 #, python-format msgid "[ERROR]App.on_view_source() -->%s" msgstr "" -#: FlatCAMApp.py:6185 FlatCAMApp.py:7206 FlatCAMObj.py:5259 +#: FlatCAMApp.py:6287 FlatCAMApp.py:7308 FlatCAMObj.py:5266 msgid "Code Editor" msgstr "" -#: FlatCAMApp.py:6197 +#: FlatCAMApp.py:6299 msgid "Script Editor" msgstr "" -#: FlatCAMApp.py:6200 +#: FlatCAMApp.py:6302 msgid "" "#\n" "# CREATE A NEW FLATCAM TCL SCRIPT\n" @@ -670,204 +697,204 @@ msgid "" "\n" msgstr "" -#: FlatCAMApp.py:6223 FlatCAMApp.py:6226 +#: FlatCAMApp.py:6325 FlatCAMApp.py:6328 msgid "Open TCL script" msgstr "" -#: FlatCAMApp.py:6234 +#: FlatCAMApp.py:6336 msgid "[WARNING_NOTCL] Open TCL script cancelled." msgstr "" -#: FlatCAMApp.py:6246 +#: FlatCAMApp.py:6348 #, python-format msgid "[ERROR]App.on_fileopenscript() -->%s" msgstr "" -#: FlatCAMApp.py:6272 FlatCAMApp.py:6275 +#: FlatCAMApp.py:6374 FlatCAMApp.py:6377 msgid "Run TCL script" msgstr "" -#: FlatCAMApp.py:6283 +#: FlatCAMApp.py:6385 msgid "[WARNING_NOTCL] Run TCL script cancelled." msgstr "" -#: FlatCAMApp.py:6329 FlatCAMApp.py:6333 +#: FlatCAMApp.py:6431 FlatCAMApp.py:6435 msgid "Save Project As ..." msgstr "" -#: FlatCAMApp.py:6330 +#: FlatCAMApp.py:6432 #, python-brace-format msgid "{l_save}/Project_{date}" msgstr "" -#: FlatCAMApp.py:6338 +#: FlatCAMApp.py:6440 msgid "[WARNING_NOTCL] Save Project cancelled." msgstr "" -#: FlatCAMApp.py:6383 +#: FlatCAMApp.py:6485 msgid "Exporting SVG" msgstr "" -#: FlatCAMApp.py:6416 FlatCAMApp.py:6521 FlatCAMApp.py:6635 +#: FlatCAMApp.py:6518 FlatCAMApp.py:6623 FlatCAMApp.py:6737 #, python-format msgid "[success] SVG file exported to %s" msgstr "" -#: FlatCAMApp.py:6447 FlatCAMApp.py:6567 +#: FlatCAMApp.py:6549 FlatCAMApp.py:6669 #, python-format msgid "[WARNING_NOTCL] No object Box. Using instead %s" msgstr "" -#: FlatCAMApp.py:6524 FlatCAMApp.py:6638 +#: FlatCAMApp.py:6626 FlatCAMApp.py:6740 msgid "Generating Film ... Please wait." msgstr "" -#: FlatCAMApp.py:6785 +#: FlatCAMApp.py:6887 #, python-format msgid "[success] Excellon file exported to %s" msgstr "" -#: FlatCAMApp.py:6792 +#: FlatCAMApp.py:6894 msgid "Exporting Excellon" msgstr "" -#: FlatCAMApp.py:6797 FlatCAMApp.py:6804 +#: FlatCAMApp.py:6899 FlatCAMApp.py:6906 msgid "[ERROR_NOTCL] Could not export Excellon file." msgstr "" -#: FlatCAMApp.py:6843 +#: FlatCAMApp.py:6945 #, python-format msgid "[success] DXF file exported to %s" msgstr "" -#: FlatCAMApp.py:6849 +#: FlatCAMApp.py:6951 msgid "Exporting DXF" msgstr "" -#: FlatCAMApp.py:6854 FlatCAMApp.py:6861 +#: FlatCAMApp.py:6956 FlatCAMApp.py:6963 msgid "[[WARNING_NOTCL]] Could not export DXF file." msgstr "" -#: FlatCAMApp.py:6881 FlatCAMApp.py:6923 FlatCAMApp.py:6964 +#: FlatCAMApp.py:6983 FlatCAMApp.py:7025 FlatCAMApp.py:7066 msgid "" "[ERROR_NOTCL] Not supported type is picked as parameter. Only Geometry and " "Gerber are supported" msgstr "" -#: FlatCAMApp.py:6891 +#: FlatCAMApp.py:6993 msgid "Importing SVG" msgstr "" -#: FlatCAMApp.py:6902 FlatCAMApp.py:6944 FlatCAMApp.py:6984 FlatCAMApp.py:7060 -#: FlatCAMApp.py:7127 FlatCAMApp.py:7192 flatcamTools/ToolPDF.py:275 +#: FlatCAMApp.py:7004 FlatCAMApp.py:7046 FlatCAMApp.py:7086 FlatCAMApp.py:7162 +#: FlatCAMApp.py:7229 FlatCAMApp.py:7294 flatcamTools/ToolPDF.py:212 #, python-format msgid "[success] Opened: %s" msgstr "" -#: FlatCAMApp.py:6933 +#: FlatCAMApp.py:7035 msgid "Importing DXF" msgstr "" -#: FlatCAMApp.py:6972 +#: FlatCAMApp.py:7074 msgid "Importing Image" msgstr "" -#: FlatCAMApp.py:7013 FlatCAMApp.py:7015 +#: FlatCAMApp.py:7115 FlatCAMApp.py:7117 #, python-format msgid "[ERROR_NOTCL] Failed to open file: %s" msgstr "" -#: FlatCAMApp.py:7018 +#: FlatCAMApp.py:7120 #, python-brace-format msgid "[ERROR_NOTCL] Failed to parse file: {name}. {error}" msgstr "" -#: FlatCAMApp.py:7024 FlatCAMObj.py:3963 -#: flatcamEditors/FlatCAMExcEditor.py:1977 -#: flatcamEditors/FlatCAMGrbEditor.py:3018 +#: FlatCAMApp.py:7126 FlatCAMObj.py:3970 +#: flatcamEditors/FlatCAMExcEditor.py:2035 +#: flatcamEditors/FlatCAMGrbEditor.py:3098 msgid "[ERROR] An internal error has ocurred. See shell.\n" msgstr "" -#: FlatCAMApp.py:7033 +#: FlatCAMApp.py:7135 msgid "" "[ERROR_NOTCL] Object is not Gerber file or empty. Aborting object creation." msgstr "" -#: FlatCAMApp.py:7041 +#: FlatCAMApp.py:7143 msgid "Opening Gerber" msgstr "" -#: FlatCAMApp.py:7051 +#: FlatCAMApp.py:7153 msgid "[ERROR_NOTCL] Open Gerber failed. Probable not a Gerber file." msgstr "" -#: FlatCAMApp.py:7086 flatcamTools/ToolPcbWizard.py:421 +#: FlatCAMApp.py:7188 flatcamTools/ToolPcbWizard.py:421 msgid "[ERROR_NOTCL] This is not Excellon file." msgstr "" -#: FlatCAMApp.py:7089 +#: FlatCAMApp.py:7191 #, python-format msgid "[ERROR_NOTCL] Cannot open file: %s" msgstr "" -#: FlatCAMApp.py:7094 flatcamTools/ToolPcbWizard.py:429 +#: FlatCAMApp.py:7196 flatcamTools/ToolPcbWizard.py:429 msgid "[ERROR_NOTCL] An internal error has occurred. See shell.\n" msgstr "" -#: FlatCAMApp.py:7110 flatcamTools/ToolPDF.py:238 +#: FlatCAMApp.py:7212 flatcamTools/ToolPDF.py:261 #: flatcamTools/ToolPcbWizard.py:442 #, python-format msgid "[ERROR_NOTCL] No geometry found in file: %s" msgstr "" -#: FlatCAMApp.py:7113 +#: FlatCAMApp.py:7215 msgid "Opening Excellon." msgstr "" -#: FlatCAMApp.py:7120 +#: FlatCAMApp.py:7222 msgid "[ERROR_NOTCL] Open Excellon file failed. Probable not an Excellon file." msgstr "" -#: FlatCAMApp.py:7159 +#: FlatCAMApp.py:7261 #, python-format msgid "[ERROR_NOTCL] Failed to open %s" msgstr "" -#: FlatCAMApp.py:7169 +#: FlatCAMApp.py:7271 msgid "[ERROR_NOTCL] This is not GCODE" msgstr "" -#: FlatCAMApp.py:7175 +#: FlatCAMApp.py:7277 msgid "Opening G-Code." msgstr "" -#: FlatCAMApp.py:7183 +#: FlatCAMApp.py:7285 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" msgstr "" -#: FlatCAMApp.py:7223 +#: FlatCAMApp.py:7325 #, python-format msgid "[ERROR_NOTCL] Failed to open config file: %s" msgstr "" -#: FlatCAMApp.py:7248 FlatCAMApp.py:7264 +#: FlatCAMApp.py:7350 FlatCAMApp.py:7366 #, python-format msgid "[ERROR_NOTCL] Failed to open project file: %s" msgstr "" -#: FlatCAMApp.py:7290 +#: FlatCAMApp.py:7392 #, python-format msgid "[success] Project loaded from: %s" msgstr "" -#: FlatCAMApp.py:7420 +#: FlatCAMApp.py:7522 msgid "Available commands:\n" msgstr "" -#: FlatCAMApp.py:7422 +#: FlatCAMApp.py:7524 msgid "" "\n" "\n" @@ -875,23 +902,23 @@ msgid "" " Example: help open_gerber" msgstr "" -#: FlatCAMApp.py:7570 +#: FlatCAMApp.py:7672 msgid "Shows list of commands." msgstr "" -#: FlatCAMApp.py:7626 +#: FlatCAMApp.py:7729 msgid "[ERROR_NOTCL] Failed to load recent item list." msgstr "" -#: FlatCAMApp.py:7633 +#: FlatCAMApp.py:7736 msgid "[ERROR_NOTCL] Failed to parse recent item list." msgstr "" -#: FlatCAMApp.py:7694 flatcamGUI/FlatCAMGUI.py:941 +#: FlatCAMApp.py:7797 flatcamGUI/FlatCAMGUI.py:957 msgid "Shortcut Key List" msgstr "" -#: FlatCAMApp.py:7701 +#: FlatCAMApp.py:7804 msgid "" "\n" "

Selected Tab - Choose an Item from " @@ -941,101 +968,101 @@ msgid "" " " msgstr "" -#: FlatCAMApp.py:7805 +#: FlatCAMApp.py:7908 msgid "[WARNING_NOTCL] Failed checking for latest version. Could not connect." msgstr "" -#: FlatCAMApp.py:7812 +#: FlatCAMApp.py:7915 msgid "[ERROR_NOTCL] Could not parse information about latest version." msgstr "" -#: FlatCAMApp.py:7822 +#: FlatCAMApp.py:7925 msgid "[success] FlatCAM is up to date!" msgstr "" -#: FlatCAMApp.py:7827 +#: FlatCAMApp.py:7930 msgid "Newer Version Available" msgstr "" -#: FlatCAMApp.py:7828 +#: FlatCAMApp.py:7931 msgid "" "There is a newer version of FlatCAM available for download:\n" "\n" msgstr "" -#: FlatCAMApp.py:7830 +#: FlatCAMApp.py:7933 msgid "info" msgstr "" -#: FlatCAMApp.py:7849 +#: FlatCAMApp.py:7952 msgid "[success] All plots disabled." msgstr "" -#: FlatCAMApp.py:7855 +#: FlatCAMApp.py:7958 msgid "[success] All non selected plots disabled." msgstr "" -#: FlatCAMApp.py:7861 +#: FlatCAMApp.py:7964 msgid "[success] All plots enabled." msgstr "" -#: FlatCAMApp.py:7972 +#: FlatCAMApp.py:8075 msgid "Saving FlatCAM Project" msgstr "" -#: FlatCAMApp.py:7993 FlatCAMApp.py:8024 +#: FlatCAMApp.py:8096 FlatCAMApp.py:8127 #, python-format msgid "[success] Project saved to: %s" msgstr "" -#: FlatCAMApp.py:8011 +#: FlatCAMApp.py:8114 #, python-format msgid "[ERROR_NOTCL] Failed to verify project file: %s. Retry to save it." msgstr "" -#: FlatCAMApp.py:8018 +#: FlatCAMApp.py:8121 #, python-format msgid "[ERROR_NOTCL] Failed to parse saved project file: %s. Retry to save it." msgstr "" -#: FlatCAMApp.py:8026 +#: FlatCAMApp.py:8129 #, python-format msgid "[ERROR_NOTCL] Failed to save project file: %s. Retry to save it." msgstr "" -#: FlatCAMObj.py:194 +#: FlatCAMObj.py:195 #, python-brace-format msgid "[success] Name changed from {old} to {new}" msgstr "" -#: FlatCAMObj.py:535 FlatCAMObj.py:1741 FlatCAMObj.py:3006 FlatCAMObj.py:5158 +#: FlatCAMObj.py:542 FlatCAMObj.py:1748 FlatCAMObj.py:3013 FlatCAMObj.py:5165 msgid "Basic" msgstr "" -#: FlatCAMObj.py:547 FlatCAMObj.py:1757 FlatCAMObj.py:3028 FlatCAMObj.py:5164 +#: FlatCAMObj.py:554 FlatCAMObj.py:1764 FlatCAMObj.py:3035 FlatCAMObj.py:5171 msgid "Advanced" msgstr "" -#: FlatCAMObj.py:902 FlatCAMObj.py:957 +#: FlatCAMObj.py:909 FlatCAMObj.py:964 #, python-format msgid "[success] Isolation geometry created: %s" msgstr "" -#: FlatCAMObj.py:1126 +#: FlatCAMObj.py:1133 msgid "Plotting Apertures" msgstr "" -#: FlatCAMObj.py:1580 flatcamEditors/FlatCAMExcEditor.py:1327 +#: FlatCAMObj.py:1587 flatcamEditors/FlatCAMExcEditor.py:1327 msgid "Total Drills" msgstr "" -#: FlatCAMObj.py:1606 flatcamEditors/FlatCAMExcEditor.py:1359 +#: FlatCAMObj.py:1613 flatcamEditors/FlatCAMExcEditor.py:1359 msgid "Total Slots" msgstr "" -#: FlatCAMObj.py:1813 FlatCAMObj.py:3079 FlatCAMObj.py:3386 FlatCAMObj.py:3573 -#: FlatCAMObj.py:3586 FlatCAMObj.py:3703 FlatCAMObj.py:4111 FlatCAMObj.py:4344 -#: FlatCAMObj.py:4750 flatcamEditors/FlatCAMExcEditor.py:1434 +#: FlatCAMObj.py:1820 FlatCAMObj.py:3086 FlatCAMObj.py:3393 FlatCAMObj.py:3580 +#: FlatCAMObj.py:3593 FlatCAMObj.py:3710 FlatCAMObj.py:4118 FlatCAMObj.py:4351 +#: FlatCAMObj.py:4757 flatcamEditors/FlatCAMExcEditor.py:1434 #: flatcamTools/ToolCalculators.py:307 flatcamTools/ToolCalculators.py:318 #: flatcamTools/ToolCalculators.py:330 flatcamTools/ToolCalculators.py:345 #: flatcamTools/ToolCalculators.py:358 flatcamTools/ToolCalculators.py:372 @@ -1054,247 +1081,222 @@ msgstr "" msgid "[ERROR_NOTCL] Wrong value format entered, use a number." msgstr "" -#: FlatCAMObj.py:2037 FlatCAMObj.py:2128 FlatCAMObj.py:2243 +#: FlatCAMObj.py:2044 FlatCAMObj.py:2135 FlatCAMObj.py:2250 msgid "" "[ERROR_NOTCL] Please select one or more tools from the list and try again." msgstr "" -#: FlatCAMObj.py:2044 +#: FlatCAMObj.py:2051 msgid "" "[ERROR_NOTCL] Milling tool for DRILLS is larger than hole size. Cancelled." msgstr "" -#: FlatCAMObj.py:2058 FlatCAMObj.py:2152 FlatCAMObj.py:2263 +#: FlatCAMObj.py:2065 FlatCAMObj.py:2159 FlatCAMObj.py:2270 msgid "Tool_nr" msgstr "" -#: FlatCAMObj.py:2058 FlatCAMObj.py:2152 FlatCAMObj.py:2263 +#: FlatCAMObj.py:2065 FlatCAMObj.py:2159 FlatCAMObj.py:2270 #: flatcamEditors/FlatCAMExcEditor.py:781 -#: flatcamEditors/FlatCAMExcEditor.py:1920 flatcamGUI/ObjectUI.py:556 +#: flatcamEditors/FlatCAMExcEditor.py:1978 flatcamGUI/ObjectUI.py:556 #: flatcamTools/ToolNonCopperClear.py:83 flatcamTools/ToolPaint.py:80 #: flatcamTools/ToolPcbWizard.py:78 flatcamTools/ToolSolderPaste.py:81 msgid "Diameter" msgstr "" -#: FlatCAMObj.py:2058 FlatCAMObj.py:2152 FlatCAMObj.py:2263 +#: FlatCAMObj.py:2065 FlatCAMObj.py:2159 FlatCAMObj.py:2270 msgid "Drills_Nr" msgstr "" -#: FlatCAMObj.py:2058 FlatCAMObj.py:2152 FlatCAMObj.py:2263 +#: FlatCAMObj.py:2065 FlatCAMObj.py:2159 FlatCAMObj.py:2270 msgid "Slots_Nr" msgstr "" -#: FlatCAMObj.py:2138 +#: FlatCAMObj.py:2145 msgid "" "[ERROR_NOTCL] Milling tool for SLOTS is larger than hole size. Cancelled." msgstr "" -#: FlatCAMObj.py:2303 FlatCAMObj.py:3999 FlatCAMObj.py:4210 FlatCAMObj.py:4525 +#: FlatCAMObj.py:2310 FlatCAMObj.py:4006 FlatCAMObj.py:4217 FlatCAMObj.py:4532 msgid "" "[ERROR_NOTCL] Wrong value format for self.defaults[\"z_pdepth\"] or self." "options[\"z_pdepth\"]" msgstr "" -#: FlatCAMObj.py:2315 FlatCAMObj.py:4011 FlatCAMObj.py:4222 FlatCAMObj.py:4537 +#: FlatCAMObj.py:2322 FlatCAMObj.py:4018 FlatCAMObj.py:4229 FlatCAMObj.py:4544 msgid "" "[ERROR_NOTCL] Wrong value format for self.defaults[\"feedrate_probe\"] or " "self.options[\"feedrate_probe\"]" msgstr "" -#: FlatCAMObj.py:2347 FlatCAMObj.py:4412 FlatCAMObj.py:4417 FlatCAMObj.py:4563 +#: FlatCAMObj.py:2354 FlatCAMObj.py:4419 FlatCAMObj.py:4424 FlatCAMObj.py:4570 msgid "Generating CNC Code" msgstr "" -#: FlatCAMObj.py:2373 FlatCAMObj.py:4709 camlib.py:5204 camlib.py:5653 -#: camlib.py:5924 +#: FlatCAMObj.py:2380 FlatCAMObj.py:4716 camlib.py:5214 camlib.py:5672 +#: camlib.py:5943 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. " msgstr "" -#: FlatCAMObj.py:2720 FlatCAMObj.py:2962 FlatCAMObj.py:3249 -msgid "Path" -msgstr "" - -#: FlatCAMObj.py:2720 -msgid "In" -msgstr "" - -#: FlatCAMObj.py:2720 -msgid "Out" -msgstr "" - -#: FlatCAMObj.py:2720 FlatCAMObj.py:3044 FlatCAMObj.py:3618 -msgid "Custom" -msgstr "" - -#: FlatCAMObj.py:2721 FlatCAMObj.py:3629 FlatCAMObj.py:3630 FlatCAMObj.py:3639 +#: FlatCAMObj.py:2728 FlatCAMObj.py:3636 FlatCAMObj.py:3637 FlatCAMObj.py:3646 msgid "Iso" msgstr "" -#: FlatCAMObj.py:2721 FlatCAMObj.py:2964 FlatCAMObj.py:3251 +#: FlatCAMObj.py:2728 FlatCAMObj.py:2971 FlatCAMObj.py:3258 msgid "Rough" msgstr "" -#: FlatCAMObj.py:2721 +#: FlatCAMObj.py:2728 msgid "Finish" msgstr "" -#: FlatCAMObj.py:2999 flatcamGUI/FlatCAMGUI.py:518 flatcamGUI/FlatCAMGUI.py:710 -#: flatcamGUI/FlatCAMGUI.py:1580 flatcamGUI/FlatCAMGUI.py:1590 -#: flatcamGUI/FlatCAMGUI.py:1914 flatcamGUI/ObjectUI.py:996 +#: FlatCAMObj.py:3006 flatcamGUI/FlatCAMGUI.py:518 flatcamGUI/FlatCAMGUI.py:711 +#: flatcamGUI/FlatCAMGUI.py:1601 flatcamGUI/FlatCAMGUI.py:1932 +#: flatcamGUI/ObjectUI.py:996 msgid "Copy" msgstr "" -#: FlatCAMObj.py:3001 flatcamEditors/FlatCAMGrbEditor.py:1825 -#: flatcamGUI/FlatCAMGUI.py:519 flatcamGUI/FlatCAMGUI.py:712 -#: flatcamGUI/FlatCAMGUI.py:1581 flatcamGUI/FlatCAMGUI.py:1591 -#: flatcamGUI/FlatCAMGUI.py:1916 flatcamGUI/ObjectUI.py:1004 -#: flatcamTools/ToolNonCopperClear.py:146 flatcamTools/ToolPaint.py:143 -#: flatcamTools/ToolSolderPaste.py:121 flatcamTools/ToolSolderPaste.py:481 -msgid "Delete" -msgstr "" - -#: FlatCAMObj.py:3221 +#: FlatCAMObj.py:3228 msgid "[ERROR_NOTCL] Please enter the desired tool diameter in Float format." msgstr "" -#: FlatCAMObj.py:3296 +#: FlatCAMObj.py:3303 msgid "[success] Tool added in Tool Table." msgstr "" -#: FlatCAMObj.py:3301 +#: FlatCAMObj.py:3308 msgid "[ERROR_NOTCL] Default Tool added. Wrong value format entered." msgstr "" -#: FlatCAMObj.py:3331 FlatCAMObj.py:3341 +#: FlatCAMObj.py:3338 FlatCAMObj.py:3348 msgid "[WARNING_NOTCL] Failed. Select a tool to copy." msgstr "" -#: FlatCAMObj.py:3370 +#: FlatCAMObj.py:3377 msgid "[success] Tool was copied in Tool Table." msgstr "" -#: FlatCAMObj.py:3403 +#: FlatCAMObj.py:3410 msgid "[success] Tool was edited in Tool Table." msgstr "" -#: FlatCAMObj.py:3434 FlatCAMObj.py:3444 +#: FlatCAMObj.py:3441 FlatCAMObj.py:3451 msgid "[WARNING_NOTCL] Failed. Select a tool to delete." msgstr "" -#: FlatCAMObj.py:3468 +#: FlatCAMObj.py:3475 msgid "[success] Tool was deleted in Tool Table." msgstr "" -#: FlatCAMObj.py:3882 +#: FlatCAMObj.py:3889 #, python-format msgid "" "[WARNING_NOTCL] This Geometry can't be processed because it is %s geometry." msgstr "" -#: FlatCAMObj.py:3899 +#: FlatCAMObj.py:3906 msgid "[ERROR_NOTCL] Wrong Tool Dia value format entered, use a number." msgstr "" -#: FlatCAMObj.py:3926 +#: FlatCAMObj.py:3933 msgid "[ERROR_NOTCL] Failed. No tool selected in the tool table ..." msgstr "" -#: FlatCAMObj.py:3964 +#: FlatCAMObj.py:3971 #, python-format msgid "FlatCAMObj.FlatCAMGeometry.mtool_gen_cncjob() --> %s" msgstr "" -#: FlatCAMObj.py:4120 FlatCAMObj.py:4353 +#: FlatCAMObj.py:4127 FlatCAMObj.py:4360 msgid "" "[WARNING] 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:4234 flatcamTools/ToolSolderPaste.py:1107 +#: FlatCAMObj.py:4241 flatcamTools/ToolSolderPaste.py:1107 #: flatcamTools/ToolSolderPaste.py:1162 msgid "[ERROR_NOTCL] Cancelled. Empty file, it has no geometry..." msgstr "" -#: FlatCAMObj.py:4596 FlatCAMObj.py:4606 camlib.py:3426 camlib.py:3435 +#: FlatCAMObj.py:4603 FlatCAMObj.py:4613 camlib.py:3436 camlib.py:3445 msgid "[ERROR_NOTCL] Scale factor has to be a number: integer or float." msgstr "" -#: FlatCAMObj.py:4644 +#: FlatCAMObj.py:4651 msgid "[success] Geometry Scale done." msgstr "" -#: FlatCAMObj.py:4661 camlib.py:3497 +#: FlatCAMObj.py:4668 camlib.py:3507 msgid "" "[ERROR_NOTCL] An (x,y) pair of values are needed. Probable you entered only " "one value in the Offset field." msgstr "" -#: FlatCAMObj.py:4681 +#: FlatCAMObj.py:4688 msgid "[success] Geometry Offset done." msgstr "" -#: FlatCAMObj.py:5226 FlatCAMObj.py:5231 flatcamTools/ToolSolderPaste.py:1361 +#: FlatCAMObj.py:5233 FlatCAMObj.py:5238 flatcamTools/ToolSolderPaste.py:1361 msgid "Export Machine Code ..." msgstr "" -#: FlatCAMObj.py:5237 flatcamTools/ToolSolderPaste.py:1364 +#: FlatCAMObj.py:5244 flatcamTools/ToolSolderPaste.py:1364 msgid "[WARNING_NOTCL] Export Machine Code cancelled ..." msgstr "" -#: FlatCAMObj.py:5248 +#: FlatCAMObj.py:5255 #, python-format msgid "[success] Machine Code file saved to: %s" msgstr "" -#: FlatCAMObj.py:5270 +#: FlatCAMObj.py:5277 #, python-format msgid "[ERROR]FlatCAMCNNJob.on_edit_code_click() -->%s" msgstr "" -#: FlatCAMObj.py:5387 +#: FlatCAMObj.py:5394 #, python-format msgid "" "[WARNING_NOTCL] This CNCJob object can't be processed because it is a %s " "CNCJob object." msgstr "" -#: FlatCAMObj.py:5440 +#: FlatCAMObj.py:5447 msgid "[ERROR_NOTCL] G-code does not have a units code: either G20 or G21" msgstr "" -#: FlatCAMObj.py:5453 +#: FlatCAMObj.py:5460 msgid "" "[ERROR_NOTCL] Cancelled. The Toolchange Custom code is enabled but it's " "empty." msgstr "" -#: FlatCAMObj.py:5460 +#: FlatCAMObj.py:5467 msgid "[success] Toolchange G-code was replaced by a custom code." msgstr "" -#: FlatCAMObj.py:5475 flatcamTools/ToolSolderPaste.py:1390 +#: FlatCAMObj.py:5482 flatcamTools/ToolSolderPaste.py:1390 msgid "[WARNING_NOTCL] No such file or directory" msgstr "" -#: FlatCAMObj.py:5494 FlatCAMObj.py:5506 +#: FlatCAMObj.py:5501 FlatCAMObj.py:5513 msgid "" "[WARNING_NOTCL] The used postprocessor file has to have in it's name: " "'toolchange_custom'" msgstr "" -#: FlatCAMObj.py:5512 +#: FlatCAMObj.py:5519 msgid "[ERROR] There is no postprocessor file." msgstr "" -#: ObjectCollection.py:416 +#: ObjectCollection.py:419 #, python-brace-format -msgid "Object renamed from {old} to {new}" +msgid "Object renamed from {old} to {new}" msgstr "" -#: ObjectCollection.py:751 +#: ObjectCollection.py:757 #, python-format msgid "[ERROR] Cause of error: %s" msgstr "" @@ -1327,43 +1329,43 @@ msgstr "" msgid "[ERROR_NOTCL] Failed to skew. No object selected" msgstr "" -#: camlib.py:2733 camlib.py:2837 +#: camlib.py:2741 camlib.py:2847 #, python-format msgid "[WARNING] Coordinates missing, line ignored: %s" msgstr "" -#: camlib.py:2734 camlib.py:2838 +#: camlib.py:2742 camlib.py:2848 msgid "[WARNING_NOTCL] GERBER file might be CORRUPT. Check the file !!!" msgstr "" -#: camlib.py:2792 +#: camlib.py:2802 #, python-format msgid "" "[ERROR] Region does not have enough points. File will be processed but there " "are parser errors. Line number: %s" msgstr "" -#: camlib.py:3247 +#: camlib.py:3257 #, python-format msgid "" "[ERROR]Gerber Parser ERROR.\n" "%s:" msgstr "" -#: camlib.py:3464 +#: camlib.py:3474 msgid "[success] Gerber Scale done." msgstr "" -#: camlib.py:3521 +#: camlib.py:3531 msgid "[success] Gerber Offset done." msgstr "" -#: camlib.py:3915 +#: camlib.py:3925 #, python-format msgid "[ERROR_NOTCL] This is GCODE mark: %s" msgstr "" -#: camlib.py:4029 +#: camlib.py:4039 #, python-format msgid "" "[WARNING] No tool diameter info's. See shell.\n" @@ -1374,26 +1376,26 @@ msgid "" "diameters to reflect the real diameters." msgstr "" -#: camlib.py:4494 +#: camlib.py:4504 #, python-brace-format msgid "" "[ERROR] Excellon Parser error.\n" "Parsing Failed. Line {l_nr}: {line}\n" msgstr "" -#: camlib.py:4571 +#: camlib.py:4581 msgid "" "[WARNING] Excellon.create_geometry() -> a drill location was skipped due of " "not having a tool associated.\n" "Check the resulting GCode." msgstr "" -#: camlib.py:5113 +#: camlib.py:5123 #, python-format msgid "[ERROR] There is no such parameter: %s" msgstr "" -#: camlib.py:5183 +#: camlib.py:5193 msgid "" "[WARNING] The Cut Z parameter has positive value. It is the depth value to " "drill into material.\n" @@ -1402,27 +1404,27 @@ msgid "" "CNC code (Gcode etc)." msgstr "" -#: camlib.py:5190 camlib.py:5676 camlib.py:5947 +#: camlib.py:5200 camlib.py:5695 camlib.py:5966 #, python-format msgid "" "[WARNING] The Cut Z parameter is zero. There will be no cut, skipping %s file" msgstr "" -#: camlib.py:5412 camlib.py:5507 camlib.py:5565 +#: camlib.py:5429 camlib.py:5526 camlib.py:5584 msgid "[ERROR_NOTCL] The loaded Excellon file has no drills ..." msgstr "" -#: camlib.py:5512 +#: camlib.py:5531 msgid "[ERROR_NOTCL] Wrong optimization type selected." msgstr "" -#: camlib.py:5664 camlib.py:5935 +#: camlib.py:5683 camlib.py:5954 msgid "" "[ERROR_NOTCL] Cut_Z parameter is None or zero. Most likely a bad " "combinations of other parameters." msgstr "" -#: camlib.py:5669 camlib.py:5940 +#: camlib.py:5688 camlib.py:5959 msgid "" "[WARNING] The Cut Z parameter has positive value. It is the depth value to " "cut into material.\n" @@ -1431,11 +1433,11 @@ msgid "" "code (Gcode etc)." msgstr "" -#: camlib.py:5681 camlib.py:5952 +#: camlib.py:5700 camlib.py:5971 msgid "[ERROR_NOTCL] Travel Z parameter is None or zero." msgstr "" -#: camlib.py:5685 camlib.py:5956 +#: camlib.py:5704 camlib.py:5975 msgid "" "[WARNING] The Travel Z parameter has negative value. It is the height value " "to travel between cuts.\n" @@ -1444,31 +1446,31 @@ msgid "" "code (Gcode etc)." msgstr "" -#: camlib.py:5692 camlib.py:5963 +#: camlib.py:5711 camlib.py:5982 #, python-format msgid "" "[WARNING] The Z Travel parameter is zero. This is dangerous, skipping %s file" msgstr "" -#: camlib.py:5822 +#: camlib.py:5841 #, python-format msgid "[ERROR]Expected a Geometry, got %s" msgstr "" -#: camlib.py:5828 +#: camlib.py:5847 msgid "" "[ERROR_NOTCL] Trying to generate a CNC Job from a Geometry object without " "solid_geometry." msgstr "" -#: camlib.py:5867 +#: camlib.py:5886 msgid "" "[ERROR_NOTCL] The Tool Offset value is too negative to use for the " "current_geometry.\n" "Raise the value (in module) and try again." msgstr "" -#: camlib.py:6089 +#: camlib.py:6108 msgid "[ERROR_NOTCL] There is no tool data in the SolderPaste geometry." msgstr "" @@ -1480,8 +1482,8 @@ msgstr "" #: flatcamEditors/FlatCAMExcEditor.py:446 #: flatcamEditors/FlatCAMExcEditor.py:471 #: flatcamEditors/FlatCAMGrbEditor.py:287 -#: flatcamEditors/FlatCAMGrbEditor.py:1447 -#: flatcamEditors/FlatCAMGrbEditor.py:1471 +#: flatcamEditors/FlatCAMGrbEditor.py:1454 +#: flatcamEditors/FlatCAMGrbEditor.py:1478 msgid "Click on target location ..." msgstr "" @@ -1535,7 +1537,7 @@ msgid "[WARNING_NOTCL] Cancelled. No drills selected for resize ..." msgstr "" #: flatcamEditors/FlatCAMExcEditor.py:448 -#: flatcamEditors/FlatCAMGrbEditor.py:1449 +#: flatcamEditors/FlatCAMGrbEditor.py:1456 msgid "Click on reference location ..." msgstr "" @@ -1552,7 +1554,7 @@ msgid "Excellon Editor" msgstr "" #: flatcamEditors/FlatCAMExcEditor.py:761 -#: flatcamEditors/FlatCAMGrbEditor.py:1705 +#: flatcamEditors/FlatCAMGrbEditor.py:1715 msgid "Name:" msgstr "" @@ -1629,7 +1631,7 @@ msgstr "" msgid "Resize drill(s)" msgstr "" -#: flatcamEditors/FlatCAMExcEditor.py:885 flatcamGUI/FlatCAMGUI.py:1586 +#: flatcamEditors/FlatCAMExcEditor.py:885 flatcamGUI/FlatCAMGUI.py:1598 msgid "Add Drill Array" msgstr "" @@ -1644,12 +1646,12 @@ msgid "" msgstr "" #: flatcamEditors/FlatCAMExcEditor.py:896 -#: flatcamEditors/FlatCAMGrbEditor.py:1938 +#: flatcamEditors/FlatCAMGrbEditor.py:1948 msgid "Linear" msgstr "" #: flatcamEditors/FlatCAMExcEditor.py:897 -#: flatcamEditors/FlatCAMGrbEditor.py:1939 +#: flatcamEditors/FlatCAMGrbEditor.py:1949 msgid "Circular" msgstr "" @@ -1663,13 +1665,13 @@ msgstr "" #: flatcamEditors/FlatCAMExcEditor.py:923 #: flatcamEditors/FlatCAMExcEditor.py:968 -#: flatcamEditors/FlatCAMGrbEditor.py:1965 -#: flatcamEditors/FlatCAMGrbEditor.py:2010 +#: flatcamEditors/FlatCAMGrbEditor.py:1975 +#: flatcamEditors/FlatCAMGrbEditor.py:2020 msgid "Direction:" msgstr "" #: flatcamEditors/FlatCAMExcEditor.py:925 -#: flatcamEditors/FlatCAMGrbEditor.py:1967 +#: flatcamEditors/FlatCAMGrbEditor.py:1977 msgid "" "Direction on which the linear array is oriented:\n" "- 'X' - horizontal axis \n" @@ -1677,32 +1679,27 @@ msgid "" "- 'Angle' - a custom angle for the array inclination" msgstr "" -#: flatcamEditors/FlatCAMExcEditor.py:934 -#: flatcamEditors/FlatCAMGrbEditor.py:1976 -msgid "Angle" -msgstr "" - #: flatcamEditors/FlatCAMExcEditor.py:938 -#: flatcamEditors/FlatCAMGrbEditor.py:1980 +#: flatcamEditors/FlatCAMGrbEditor.py:1990 msgid "Pitch:" msgstr "" #: flatcamEditors/FlatCAMExcEditor.py:940 -#: flatcamEditors/FlatCAMGrbEditor.py:1982 +#: flatcamEditors/FlatCAMGrbEditor.py:1992 msgid "Pitch = Distance between elements of the array." msgstr "" #: flatcamEditors/FlatCAMExcEditor.py:947 #: flatcamEditors/FlatCAMExcEditor.py:983 #: flatcamEditors/FlatCAMGeoEditor.py:664 -#: flatcamEditors/FlatCAMGrbEditor.py:1989 -#: flatcamEditors/FlatCAMGrbEditor.py:2025 -#: flatcamEditors/FlatCAMGrbEditor.py:3833 flatcamTools/ToolTransform.py:68 +#: flatcamEditors/FlatCAMGrbEditor.py:1999 +#: flatcamEditors/FlatCAMGrbEditor.py:2035 +#: flatcamEditors/FlatCAMGrbEditor.py:3931 flatcamTools/ToolTransform.py:68 msgid "Angle:" msgstr "" #: flatcamEditors/FlatCAMExcEditor.py:949 -#: flatcamEditors/FlatCAMGrbEditor.py:1991 +#: flatcamEditors/FlatCAMGrbEditor.py:2001 msgid "" "Angle at which the linear array is placed.\n" "The precision is of max 2 decimals.\n" @@ -1711,14 +1708,14 @@ msgid "" msgstr "" #: flatcamEditors/FlatCAMExcEditor.py:970 -#: flatcamEditors/FlatCAMGrbEditor.py:2012 +#: flatcamEditors/FlatCAMGrbEditor.py:2022 msgid "" "Direction for circular array.Can be CW = clockwise or CCW = counter " "clockwise." msgstr "" #: flatcamEditors/FlatCAMExcEditor.py:985 -#: flatcamEditors/FlatCAMGrbEditor.py:2027 +#: flatcamEditors/FlatCAMGrbEditor.py:2037 msgid "Angle at which each element in circular array is placed." msgstr "" @@ -1728,7 +1725,7 @@ msgid "" "Save and reedit Excellon if you need to add this tool. " msgstr "" -#: flatcamEditors/FlatCAMExcEditor.py:1456 flatcamGUI/FlatCAMGUI.py:2956 +#: flatcamEditors/FlatCAMExcEditor.py:1456 flatcamGUI/FlatCAMGUI.py:2980 #, python-brace-format msgid "[success] Added new tool with dia: {dia} {units}" msgstr "" @@ -1742,40 +1739,40 @@ msgstr "" msgid "[success] Deleted tool with dia: {del_dia} {units}" msgstr "" -#: flatcamEditors/FlatCAMExcEditor.py:1974 +#: flatcamEditors/FlatCAMExcEditor.py:2032 msgid "" "[ERROR_NOTCL] There are no Tools definitions in the file. Aborting Excellon " "creation." msgstr "" -#: flatcamEditors/FlatCAMExcEditor.py:1983 +#: flatcamEditors/FlatCAMExcEditor.py:2041 msgid "Creating Excellon." msgstr "" -#: flatcamEditors/FlatCAMExcEditor.py:1992 +#: flatcamEditors/FlatCAMExcEditor.py:2050 msgid "[success] Excellon editing finished." msgstr "" -#: flatcamEditors/FlatCAMExcEditor.py:2009 +#: flatcamEditors/FlatCAMExcEditor.py:2067 msgid "[WARNING_NOTCL] Cancelled. There is no Tool/Drill selected" msgstr "" -#: flatcamEditors/FlatCAMExcEditor.py:2508 +#: flatcamEditors/FlatCAMExcEditor.py:2572 msgid "[success] Done. Drill(s) deleted." msgstr "" -#: flatcamEditors/FlatCAMExcEditor.py:2578 -#: flatcamEditors/FlatCAMGrbEditor.py:3621 +#: flatcamEditors/FlatCAMExcEditor.py:2642 +#: flatcamEditors/FlatCAMGrbEditor.py:3719 msgid "Click on the circular array Center position" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:78 -#: flatcamEditors/FlatCAMGrbEditor.py:1855 +#: flatcamEditors/FlatCAMGrbEditor.py:1865 msgid "Buffer distance:" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:79 -#: flatcamEditors/FlatCAMGrbEditor.py:1856 +#: flatcamEditors/FlatCAMGrbEditor.py:1866 msgid "Buffer corner:" msgstr "" @@ -1789,17 +1786,17 @@ msgid "" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:87 -#: flatcamEditors/FlatCAMGrbEditor.py:1864 +#: flatcamEditors/FlatCAMGrbEditor.py:1874 msgid "Round" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:88 -#: flatcamEditors/FlatCAMGrbEditor.py:1865 +#: flatcamEditors/FlatCAMGrbEditor.py:1875 msgid "Square" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:89 -#: flatcamEditors/FlatCAMGrbEditor.py:1866 +#: flatcamEditors/FlatCAMGrbEditor.py:1876 msgid "Beveled" msgstr "" @@ -1816,17 +1813,17 @@ msgid "Full Buffer" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:125 -#: flatcamEditors/FlatCAMGeoEditor.py:2594 +#: flatcamEditors/FlatCAMGeoEditor.py:2609 msgid "Buffer Tool" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:136 #: flatcamEditors/FlatCAMGeoEditor.py:153 #: flatcamEditors/FlatCAMGeoEditor.py:170 -#: flatcamEditors/FlatCAMGeoEditor.py:2612 -#: flatcamEditors/FlatCAMGeoEditor.py:2638 -#: flatcamEditors/FlatCAMGeoEditor.py:2664 -#: flatcamEditors/FlatCAMGrbEditor.py:3673 +#: flatcamEditors/FlatCAMGeoEditor.py:2627 +#: flatcamEditors/FlatCAMGeoEditor.py:2653 +#: flatcamEditors/FlatCAMGeoEditor.py:2679 +#: flatcamEditors/FlatCAMGrbEditor.py:3771 msgid "" "[WARNING_NOTCL] Buffer distance value is missing or wrong format. Add it and " "retry." @@ -1836,24 +1833,24 @@ msgstr "" msgid "Text Tool" msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:399 flatcamGUI/FlatCAMGUI.py:776 +#: flatcamEditors/FlatCAMGeoEditor.py:399 flatcamGUI/FlatCAMGUI.py:792 msgid "Tool" msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:430 flatcamGUI/FlatCAMGUI.py:3922 -#: flatcamGUI/FlatCAMGUI.py:5128 flatcamGUI/FlatCAMGUI.py:5404 -#: flatcamGUI/FlatCAMGUI.py:5544 flatcamGUI/ObjectUI.py:260 +#: flatcamEditors/FlatCAMGeoEditor.py:430 flatcamGUI/FlatCAMGUI.py:3996 +#: flatcamGUI/FlatCAMGUI.py:5202 flatcamGUI/FlatCAMGUI.py:5478 +#: flatcamGUI/FlatCAMGUI.py:5618 flatcamGUI/ObjectUI.py:260 msgid "Tool dia:" msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:432 flatcamGUI/FlatCAMGUI.py:5546 +#: flatcamEditors/FlatCAMGeoEditor.py:432 flatcamGUI/FlatCAMGUI.py:5620 msgid "" "Diameter of the tool to\n" "be used in the operation." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:441 flatcamGUI/FlatCAMGUI.py:5310 -#: flatcamGUI/FlatCAMGUI.py:5555 flatcamTools/ToolNonCopperClear.py:165 +#: flatcamEditors/FlatCAMGeoEditor.py:441 flatcamGUI/FlatCAMGUI.py:5384 +#: flatcamGUI/FlatCAMGUI.py:5629 flatcamTools/ToolNonCopperClear.py:165 #: flatcamTools/ToolPaint.py:160 msgid "Overlap Rate:" msgstr "" @@ -1873,14 +1870,14 @@ msgid "" "due of too many paths." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:459 flatcamGUI/FlatCAMGUI.py:5326 -#: flatcamGUI/FlatCAMGUI.py:5412 flatcamGUI/FlatCAMGUI.py:5565 +#: flatcamEditors/FlatCAMGeoEditor.py:459 flatcamGUI/FlatCAMGUI.py:5400 +#: flatcamGUI/FlatCAMGUI.py:5486 flatcamGUI/FlatCAMGUI.py:5639 #: flatcamTools/ToolCutOut.py:86 flatcamTools/ToolNonCopperClear.py:181 #: flatcamTools/ToolPaint.py:177 msgid "Margin:" msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:461 flatcamGUI/FlatCAMGUI.py:5567 +#: flatcamEditors/FlatCAMGeoEditor.py:461 flatcamGUI/FlatCAMGUI.py:5641 #: flatcamTools/ToolPaint.py:179 msgid "" "Distance by which to avoid\n" @@ -1888,55 +1885,40 @@ msgid "" "be painted." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:470 flatcamGUI/FlatCAMGUI.py:5335 -#: flatcamGUI/FlatCAMGUI.py:5576 flatcamTools/ToolNonCopperClear.py:190 +#: flatcamEditors/FlatCAMGeoEditor.py:470 flatcamGUI/FlatCAMGUI.py:5409 +#: flatcamGUI/FlatCAMGUI.py:5650 flatcamTools/ToolNonCopperClear.py:190 #: flatcamTools/ToolPaint.py:188 msgid "Method:" msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:472 flatcamGUI/FlatCAMGUI.py:5578 +#: flatcamEditors/FlatCAMGeoEditor.py:472 flatcamGUI/FlatCAMGUI.py:5652 msgid "" "Algorithm to paint the polygon:
Standard: Fixed step inwards." "
Seed-based: Outwards from seed." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:478 flatcamGUI/FlatCAMGUI.py:5344 -#: flatcamGUI/FlatCAMGUI.py:5584 -msgid "Standard" -msgstr "" - -#: flatcamEditors/FlatCAMGeoEditor.py:479 flatcamGUI/FlatCAMGUI.py:5345 -#: flatcamGUI/FlatCAMGUI.py:5585 -msgid "Seed-based" -msgstr "" - -#: flatcamEditors/FlatCAMGeoEditor.py:480 flatcamGUI/FlatCAMGUI.py:5346 -#: flatcamGUI/FlatCAMGUI.py:5586 -msgid "Straight lines" -msgstr "" - -#: flatcamEditors/FlatCAMGeoEditor.py:485 flatcamGUI/FlatCAMGUI.py:5351 -#: flatcamGUI/FlatCAMGUI.py:5591 flatcamTools/ToolNonCopperClear.py:206 +#: flatcamEditors/FlatCAMGeoEditor.py:485 flatcamGUI/FlatCAMGUI.py:5425 +#: flatcamGUI/FlatCAMGUI.py:5665 flatcamTools/ToolNonCopperClear.py:206 #: flatcamTools/ToolPaint.py:204 msgid "Connect:" msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:487 flatcamGUI/FlatCAMGUI.py:5353 -#: flatcamGUI/FlatCAMGUI.py:5593 flatcamTools/ToolNonCopperClear.py:208 +#: flatcamEditors/FlatCAMGeoEditor.py:487 flatcamGUI/FlatCAMGUI.py:5427 +#: flatcamGUI/FlatCAMGUI.py:5667 flatcamTools/ToolNonCopperClear.py:208 #: flatcamTools/ToolPaint.py:206 msgid "" "Draw lines between resulting\n" "segments to minimize tool lifts." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:494 flatcamGUI/FlatCAMGUI.py:5360 -#: flatcamGUI/FlatCAMGUI.py:5601 flatcamTools/ToolNonCopperClear.py:215 +#: flatcamEditors/FlatCAMGeoEditor.py:494 flatcamGUI/FlatCAMGUI.py:5434 +#: flatcamGUI/FlatCAMGUI.py:5675 flatcamTools/ToolNonCopperClear.py:215 #: flatcamTools/ToolPaint.py:213 msgid "Contour:" msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:496 flatcamGUI/FlatCAMGUI.py:5362 -#: flatcamGUI/FlatCAMGUI.py:5603 flatcamTools/ToolNonCopperClear.py:217 +#: flatcamEditors/FlatCAMGeoEditor.py:496 flatcamGUI/FlatCAMGUI.py:5436 +#: flatcamGUI/FlatCAMGUI.py:5677 flatcamTools/ToolNonCopperClear.py:217 #: flatcamTools/ToolPaint.py:215 msgid "" "Cut around the perimeter of the polygon\n" @@ -1948,7 +1930,7 @@ msgid "Paint" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:526 flatcamGUI/FlatCAMGUI.py:635 -#: flatcamGUI/FlatCAMGUI.py:1840 flatcamGUI/ObjectUI.py:1308 +#: flatcamGUI/FlatCAMGUI.py:1851 flatcamGUI/ObjectUI.py:1308 #: flatcamTools/ToolPaint.py:341 msgid "Paint Tool" msgstr "" @@ -1977,62 +1959,62 @@ msgid "" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:605 -#: flatcamEditors/FlatCAMGeoEditor.py:2619 -#: flatcamEditors/FlatCAMGeoEditor.py:2645 -#: flatcamEditors/FlatCAMGeoEditor.py:2671 +#: flatcamEditors/FlatCAMGeoEditor.py:2634 +#: flatcamEditors/FlatCAMGeoEditor.py:2660 +#: flatcamEditors/FlatCAMGeoEditor.py:2686 #: flatcamTools/ToolNonCopperClear.py:813 flatcamTools/ToolProperties.py:104 msgid "Tools" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:616 #: flatcamEditors/FlatCAMGeoEditor.py:989 -#: flatcamEditors/FlatCAMGrbEditor.py:3785 -#: flatcamEditors/FlatCAMGrbEditor.py:4169 flatcamGUI/FlatCAMGUI.py:644 -#: flatcamGUI/FlatCAMGUI.py:1851 flatcamTools/ToolTransform.py:398 +#: flatcamEditors/FlatCAMGrbEditor.py:3883 +#: flatcamEditors/FlatCAMGrbEditor.py:4267 flatcamGUI/FlatCAMGUI.py:646 +#: flatcamGUI/FlatCAMGUI.py:1864 flatcamTools/ToolTransform.py:398 msgid "Transform Tool" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:617 #: flatcamEditors/FlatCAMGeoEditor.py:678 -#: flatcamEditors/FlatCAMGrbEditor.py:3786 -#: flatcamEditors/FlatCAMGrbEditor.py:3847 flatcamTools/ToolTransform.py:24 +#: flatcamEditors/FlatCAMGrbEditor.py:3884 +#: flatcamEditors/FlatCAMGrbEditor.py:3945 flatcamTools/ToolTransform.py:24 #: flatcamTools/ToolTransform.py:82 msgid "Rotate" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:618 -#: flatcamEditors/FlatCAMGrbEditor.py:3787 flatcamTools/ToolTransform.py:25 +#: flatcamEditors/FlatCAMGrbEditor.py:3885 flatcamTools/ToolTransform.py:25 msgid "Skew/Shear" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:619 -#: flatcamEditors/FlatCAMGrbEditor.py:1910 -#: flatcamEditors/FlatCAMGrbEditor.py:3788 flatcamGUI/FlatCAMGUI.py:708 -#: flatcamGUI/FlatCAMGUI.py:1912 flatcamGUI/ObjectUI.py:100 +#: flatcamEditors/FlatCAMGrbEditor.py:1920 +#: flatcamEditors/FlatCAMGrbEditor.py:3886 flatcamGUI/FlatCAMGUI.py:709 +#: flatcamGUI/FlatCAMGUI.py:1930 flatcamGUI/ObjectUI.py:100 #: flatcamTools/ToolTransform.py:26 msgid "Scale" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:620 -#: flatcamEditors/FlatCAMGrbEditor.py:3789 flatcamTools/ToolTransform.py:27 +#: flatcamEditors/FlatCAMGrbEditor.py:3887 flatcamTools/ToolTransform.py:27 msgid "Mirror (Flip)" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:621 -#: flatcamEditors/FlatCAMGrbEditor.py:3790 flatcamGUI/ObjectUI.py:127 +#: flatcamEditors/FlatCAMGrbEditor.py:3888 flatcamGUI/ObjectUI.py:127 #: flatcamGUI/ObjectUI.py:888 flatcamGUI/ObjectUI.py:1446 #: flatcamTools/ToolTransform.py:28 msgid "Offset" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:632 -#: flatcamEditors/FlatCAMGrbEditor.py:3801 +#: flatcamEditors/FlatCAMGrbEditor.py:3899 #, python-format msgid "Editor %s" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:666 -#: flatcamEditors/FlatCAMGrbEditor.py:3835 flatcamTools/ToolTransform.py:70 +#: flatcamEditors/FlatCAMGrbEditor.py:3933 flatcamTools/ToolTransform.py:70 msgid "" "Angle for Rotation action, in degrees.\n" "Float number between -360 and 359.\n" @@ -2041,7 +2023,7 @@ msgid "" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:680 -#: flatcamEditors/FlatCAMGrbEditor.py:3849 +#: flatcamEditors/FlatCAMGrbEditor.py:3947 msgid "" "Rotate the selected shape(s).\n" "The point of reference is the middle of\n" @@ -2049,14 +2031,14 @@ msgid "" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:703 -#: flatcamEditors/FlatCAMGrbEditor.py:3872 flatcamTools/ToolTransform.py:107 +#: flatcamEditors/FlatCAMGrbEditor.py:3970 flatcamTools/ToolTransform.py:107 msgid "Angle X:" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:705 #: flatcamEditors/FlatCAMGeoEditor.py:723 -#: flatcamEditors/FlatCAMGrbEditor.py:3874 -#: flatcamEditors/FlatCAMGrbEditor.py:3892 flatcamTools/ToolTransform.py:109 +#: flatcamEditors/FlatCAMGrbEditor.py:3972 +#: flatcamEditors/FlatCAMGrbEditor.py:3990 flatcamTools/ToolTransform.py:109 #: flatcamTools/ToolTransform.py:127 msgid "" "Angle for Skew action, in degrees.\n" @@ -2064,14 +2046,14 @@ msgid "" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:714 -#: flatcamEditors/FlatCAMGrbEditor.py:3883 flatcamTools/ToolTransform.py:118 +#: flatcamEditors/FlatCAMGrbEditor.py:3981 flatcamTools/ToolTransform.py:118 msgid "Skew X" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:716 #: flatcamEditors/FlatCAMGeoEditor.py:734 -#: flatcamEditors/FlatCAMGrbEditor.py:3885 -#: flatcamEditors/FlatCAMGrbEditor.py:3903 +#: flatcamEditors/FlatCAMGrbEditor.py:3983 +#: flatcamEditors/FlatCAMGrbEditor.py:4001 msgid "" "Skew/shear the selected shape(s).\n" "The point of reference is the middle of\n" @@ -2079,34 +2061,34 @@ msgid "" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:721 -#: flatcamEditors/FlatCAMGrbEditor.py:3890 flatcamTools/ToolTransform.py:125 +#: flatcamEditors/FlatCAMGrbEditor.py:3988 flatcamTools/ToolTransform.py:125 msgid "Angle Y:" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:732 -#: flatcamEditors/FlatCAMGrbEditor.py:3901 flatcamTools/ToolTransform.py:136 +#: flatcamEditors/FlatCAMGrbEditor.py:3999 flatcamTools/ToolTransform.py:136 msgid "Skew Y" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:760 -#: flatcamEditors/FlatCAMGrbEditor.py:3929 flatcamTools/ToolTransform.py:164 +#: flatcamEditors/FlatCAMGrbEditor.py:4027 flatcamTools/ToolTransform.py:164 msgid "Factor X:" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:762 -#: flatcamEditors/FlatCAMGrbEditor.py:3931 flatcamTools/ToolTransform.py:166 +#: flatcamEditors/FlatCAMGrbEditor.py:4029 flatcamTools/ToolTransform.py:166 msgid "Factor for Scale action over X axis." msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:770 -#: flatcamEditors/FlatCAMGrbEditor.py:3939 flatcamTools/ToolTransform.py:174 +#: flatcamEditors/FlatCAMGrbEditor.py:4037 flatcamTools/ToolTransform.py:174 msgid "Scale X" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:772 #: flatcamEditors/FlatCAMGeoEditor.py:789 -#: flatcamEditors/FlatCAMGrbEditor.py:3941 -#: flatcamEditors/FlatCAMGrbEditor.py:3958 +#: flatcamEditors/FlatCAMGrbEditor.py:4039 +#: flatcamEditors/FlatCAMGrbEditor.py:4056 msgid "" "Scale the selected shape(s).\n" "The point of reference depends on \n" @@ -2114,41 +2096,41 @@ msgid "" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:777 -#: flatcamEditors/FlatCAMGrbEditor.py:3946 flatcamTools/ToolTransform.py:181 +#: flatcamEditors/FlatCAMGrbEditor.py:4044 flatcamTools/ToolTransform.py:181 msgid "Factor Y:" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:779 -#: flatcamEditors/FlatCAMGrbEditor.py:3948 flatcamTools/ToolTransform.py:183 +#: flatcamEditors/FlatCAMGrbEditor.py:4046 flatcamTools/ToolTransform.py:183 msgid "Factor for Scale action over Y axis." msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:787 -#: flatcamEditors/FlatCAMGrbEditor.py:3956 flatcamTools/ToolTransform.py:191 +#: flatcamEditors/FlatCAMGrbEditor.py:4054 flatcamTools/ToolTransform.py:191 msgid "Scale Y" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:796 -#: flatcamEditors/FlatCAMGrbEditor.py:3965 flatcamGUI/FlatCAMGUI.py:5950 +#: flatcamEditors/FlatCAMGrbEditor.py:4063 flatcamGUI/FlatCAMGUI.py:6024 #: flatcamTools/ToolTransform.py:200 msgid "Link" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:798 -#: flatcamEditors/FlatCAMGrbEditor.py:3967 +#: flatcamEditors/FlatCAMGrbEditor.py:4065 msgid "" "Scale the selected shape(s)\n" "using the Scale Factor X for both axis." msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:804 -#: flatcamEditors/FlatCAMGrbEditor.py:3973 flatcamGUI/FlatCAMGUI.py:5958 +#: flatcamEditors/FlatCAMGrbEditor.py:4071 flatcamGUI/FlatCAMGUI.py:6032 #: flatcamTools/ToolTransform.py:208 msgid "Scale Reference" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:806 -#: flatcamEditors/FlatCAMGrbEditor.py:3975 +#: flatcamEditors/FlatCAMGrbEditor.py:4073 msgid "" "Scale the selected shape(s)\n" "using the origin reference when checked,\n" @@ -2157,24 +2139,24 @@ msgid "" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:834 -#: flatcamEditors/FlatCAMGrbEditor.py:4004 flatcamTools/ToolTransform.py:238 +#: flatcamEditors/FlatCAMGrbEditor.py:4102 flatcamTools/ToolTransform.py:238 msgid "Value X:" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:836 -#: flatcamEditors/FlatCAMGrbEditor.py:4006 flatcamTools/ToolTransform.py:240 +#: flatcamEditors/FlatCAMGrbEditor.py:4104 flatcamTools/ToolTransform.py:240 msgid "Value for Offset action on X axis." msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:844 -#: flatcamEditors/FlatCAMGrbEditor.py:4014 flatcamTools/ToolTransform.py:248 +#: flatcamEditors/FlatCAMGrbEditor.py:4112 flatcamTools/ToolTransform.py:248 msgid "Offset X" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:846 #: flatcamEditors/FlatCAMGeoEditor.py:864 -#: flatcamEditors/FlatCAMGrbEditor.py:4016 -#: flatcamEditors/FlatCAMGrbEditor.py:4034 +#: flatcamEditors/FlatCAMGrbEditor.py:4114 +#: flatcamEditors/FlatCAMGrbEditor.py:4132 msgid "" "Offset the selected shape(s).\n" "The point of reference is the middle of\n" @@ -2182,46 +2164,46 @@ msgid "" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:852 -#: flatcamEditors/FlatCAMGrbEditor.py:4022 flatcamTools/ToolTransform.py:255 +#: flatcamEditors/FlatCAMGrbEditor.py:4120 flatcamTools/ToolTransform.py:255 msgid "Value Y:" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:854 -#: flatcamEditors/FlatCAMGrbEditor.py:4024 flatcamTools/ToolTransform.py:257 +#: flatcamEditors/FlatCAMGrbEditor.py:4122 flatcamTools/ToolTransform.py:257 msgid "Value for Offset action on Y axis." msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:862 -#: flatcamEditors/FlatCAMGrbEditor.py:4032 flatcamTools/ToolTransform.py:265 +#: flatcamEditors/FlatCAMGrbEditor.py:4130 flatcamTools/ToolTransform.py:265 msgid "Offset Y" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:893 -#: flatcamEditors/FlatCAMGrbEditor.py:4063 flatcamTools/ToolTransform.py:295 +#: flatcamEditors/FlatCAMGrbEditor.py:4161 flatcamTools/ToolTransform.py:295 msgid "Flip on X" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:895 #: flatcamEditors/FlatCAMGeoEditor.py:903 -#: flatcamEditors/FlatCAMGrbEditor.py:4065 -#: flatcamEditors/FlatCAMGrbEditor.py:4073 +#: flatcamEditors/FlatCAMGrbEditor.py:4163 +#: flatcamEditors/FlatCAMGrbEditor.py:4171 msgid "" "Flip the selected shape(s) over the X axis.\n" "Does not create a new shape." msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:901 -#: flatcamEditors/FlatCAMGrbEditor.py:4071 flatcamTools/ToolTransform.py:303 +#: flatcamEditors/FlatCAMGrbEditor.py:4169 flatcamTools/ToolTransform.py:303 msgid "Flip on Y" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:910 -#: flatcamEditors/FlatCAMGrbEditor.py:4080 flatcamTools/ToolTransform.py:312 +#: flatcamEditors/FlatCAMGrbEditor.py:4178 flatcamTools/ToolTransform.py:312 msgid "Ref Pt" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:912 -#: flatcamEditors/FlatCAMGrbEditor.py:4082 +#: flatcamEditors/FlatCAMGrbEditor.py:4180 msgid "" "Flip the selected shape(s)\n" "around the point in Point Entry Field.\n" @@ -2235,30 +2217,20 @@ msgid "" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:924 -#: flatcamEditors/FlatCAMGrbEditor.py:4094 flatcamTools/ToolTransform.py:325 +#: flatcamEditors/FlatCAMGrbEditor.py:4192 flatcamTools/ToolTransform.py:325 msgid "Point:" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:926 -#: flatcamEditors/FlatCAMGrbEditor.py:4096 +#: flatcamEditors/FlatCAMGrbEditor.py:4194 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:936 -#: flatcamEditors/FlatCAMGrbEditor.py:1820 -#: flatcamEditors/FlatCAMGrbEditor.py:4106 flatcamGUI/ObjectUI.py:988 -#: flatcamTools/ToolDblSided.py:160 flatcamTools/ToolDblSided.py:208 -#: flatcamTools/ToolNonCopperClear.py:134 flatcamTools/ToolPaint.py:131 -#: flatcamTools/ToolSolderPaste.py:115 flatcamTools/ToolSolderPaste.py:479 -#: flatcamTools/ToolTransform.py:337 -msgid "Add" -msgstr "" - #: flatcamEditors/FlatCAMGeoEditor.py:938 -#: flatcamEditors/FlatCAMGrbEditor.py:4108 flatcamTools/ToolTransform.py:339 +#: flatcamEditors/FlatCAMGrbEditor.py:4206 flatcamTools/ToolTransform.py:339 msgid "" "The point coordinates can be captured by\n" "left click on canvas together with pressing\n" @@ -2266,246 +2238,246 @@ msgid "" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:1053 -#: flatcamEditors/FlatCAMGrbEditor.py:4233 +#: flatcamEditors/FlatCAMGrbEditor.py:4331 msgid "[WARNING_NOTCL] Transformation cancelled. No shape selected." msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:1074 -#: flatcamEditors/FlatCAMGrbEditor.py:4253 flatcamTools/ToolTransform.py:468 +#: flatcamEditors/FlatCAMGrbEditor.py:4351 flatcamTools/ToolTransform.py:468 msgid "[ERROR_NOTCL] Wrong value format entered for Rotate, use a number." msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:1111 -#: flatcamEditors/FlatCAMGrbEditor.py:4290 flatcamTools/ToolTransform.py:502 +#: flatcamEditors/FlatCAMGrbEditor.py:4388 flatcamTools/ToolTransform.py:502 msgid "[ERROR_NOTCL] Wrong value format entered for Skew X, use a number." msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:1132 -#: flatcamEditors/FlatCAMGrbEditor.py:4311 flatcamTools/ToolTransform.py:520 +#: flatcamEditors/FlatCAMGrbEditor.py:4409 flatcamTools/ToolTransform.py:520 msgid "[ERROR_NOTCL] Wrong value format entered for Skew Y, use a number." msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:1153 -#: flatcamEditors/FlatCAMGrbEditor.py:4332 flatcamTools/ToolTransform.py:538 +#: flatcamEditors/FlatCAMGrbEditor.py:4430 flatcamTools/ToolTransform.py:538 msgid "[ERROR_NOTCL] Wrong value format entered for Scale X, use a number." msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:1190 -#: flatcamEditors/FlatCAMGrbEditor.py:4369 flatcamTools/ToolTransform.py:572 +#: flatcamEditors/FlatCAMGrbEditor.py:4467 flatcamTools/ToolTransform.py:572 msgid "[ERROR_NOTCL] Wrong value format entered for Scale Y, use a number." msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:1222 -#: flatcamEditors/FlatCAMGrbEditor.py:4401 flatcamTools/ToolTransform.py:601 +#: flatcamEditors/FlatCAMGrbEditor.py:4499 flatcamTools/ToolTransform.py:601 msgid "[ERROR_NOTCL] Wrong value format entered for Offset X, use a number." msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:1243 -#: flatcamEditors/FlatCAMGrbEditor.py:4422 flatcamTools/ToolTransform.py:619 +#: flatcamEditors/FlatCAMGrbEditor.py:4520 flatcamTools/ToolTransform.py:619 msgid "[ERROR_NOTCL] Wrong value format entered for Offset Y, use a number." msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:1261 -#: flatcamEditors/FlatCAMGrbEditor.py:4440 +#: flatcamEditors/FlatCAMGrbEditor.py:4538 msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to rotate!" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:1264 -#: flatcamEditors/FlatCAMGrbEditor.py:4443 flatcamTools/ToolTransform.py:640 +#: flatcamEditors/FlatCAMGrbEditor.py:4541 flatcamTools/ToolTransform.py:640 msgid "Appying Rotate" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:1292 -#: flatcamEditors/FlatCAMGrbEditor.py:4471 +#: flatcamEditors/FlatCAMGrbEditor.py:4569 msgid "[success] Done. Rotate completed." msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:1308 -#: flatcamEditors/FlatCAMGrbEditor.py:4487 +#: flatcamEditors/FlatCAMGrbEditor.py:4585 msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to flip!" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:1311 -#: flatcamEditors/FlatCAMGrbEditor.py:4490 flatcamTools/ToolTransform.py:692 +#: flatcamEditors/FlatCAMGrbEditor.py:4588 flatcamTools/ToolTransform.py:692 msgid "Applying Flip" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:1341 -#: flatcamEditors/FlatCAMGrbEditor.py:4520 flatcamTools/ToolTransform.py:735 +#: flatcamEditors/FlatCAMGrbEditor.py:4618 flatcamTools/ToolTransform.py:735 msgid "[success] Flip on the Y axis done ..." msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:1344 -#: flatcamEditors/FlatCAMGrbEditor.py:4523 flatcamTools/ToolTransform.py:745 +#: flatcamEditors/FlatCAMGrbEditor.py:4621 flatcamTools/ToolTransform.py:745 msgid "[success] Flip on the X axis done ..." msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:1363 -#: flatcamEditors/FlatCAMGrbEditor.py:4542 +#: flatcamEditors/FlatCAMGrbEditor.py:4640 msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to shear/skew!" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:1366 -#: flatcamEditors/FlatCAMGrbEditor.py:4545 flatcamTools/ToolTransform.py:762 +#: flatcamEditors/FlatCAMGrbEditor.py:4643 flatcamTools/ToolTransform.py:762 msgid "Applying Skew" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:1391 -#: flatcamEditors/FlatCAMGrbEditor.py:4570 flatcamTools/ToolTransform.py:793 +#: flatcamEditors/FlatCAMGrbEditor.py:4668 flatcamTools/ToolTransform.py:793 #, python-format msgid "[success] Skew on the %s axis done ..." msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:1395 -#: flatcamEditors/FlatCAMGrbEditor.py:4574 flatcamTools/ToolTransform.py:797 +#: flatcamEditors/FlatCAMGrbEditor.py:4672 flatcamTools/ToolTransform.py:797 #, python-format msgid "[ERROR_NOTCL] Due of %s, Skew action was not executed." msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:1406 -#: flatcamEditors/FlatCAMGrbEditor.py:4585 +#: flatcamEditors/FlatCAMGrbEditor.py:4683 msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to scale!" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:1409 -#: flatcamEditors/FlatCAMGrbEditor.py:4588 flatcamTools/ToolTransform.py:811 +#: flatcamEditors/FlatCAMGrbEditor.py:4686 flatcamTools/ToolTransform.py:811 msgid "Applying Scale" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:1442 -#: flatcamEditors/FlatCAMGrbEditor.py:4621 flatcamTools/ToolTransform.py:849 +#: flatcamEditors/FlatCAMGrbEditor.py:4719 flatcamTools/ToolTransform.py:849 #, python-format msgid "[success] Scale on the %s axis done ..." msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:1445 -#: flatcamEditors/FlatCAMGrbEditor.py:4624 flatcamTools/ToolTransform.py:852 +#: flatcamEditors/FlatCAMGrbEditor.py:4722 flatcamTools/ToolTransform.py:852 #, python-format msgid "[ERROR_NOTCL] Due of %s, Scale action was not executed." msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:1454 -#: flatcamEditors/FlatCAMGrbEditor.py:4633 +#: flatcamEditors/FlatCAMGrbEditor.py:4731 msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to offset!" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:1457 -#: flatcamEditors/FlatCAMGrbEditor.py:4636 flatcamTools/ToolTransform.py:864 +#: flatcamEditors/FlatCAMGrbEditor.py:4734 flatcamTools/ToolTransform.py:864 msgid "Applying Offset" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:1481 -#: flatcamEditors/FlatCAMGrbEditor.py:4660 flatcamTools/ToolTransform.py:894 +#: flatcamEditors/FlatCAMGrbEditor.py:4758 flatcamTools/ToolTransform.py:894 #, python-format msgid "[success] Offset on the %s axis done ..." msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:1485 -#: flatcamEditors/FlatCAMGrbEditor.py:4664 flatcamTools/ToolTransform.py:898 +#: flatcamEditors/FlatCAMGrbEditor.py:4762 flatcamTools/ToolTransform.py:898 #, python-format msgid "[ERROR_NOTCL] Due of %s, Offset action was not executed." msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:1489 -#: flatcamEditors/FlatCAMGrbEditor.py:4668 +#: flatcamEditors/FlatCAMGrbEditor.py:4766 msgid "Rotate ..." msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:1490 #: flatcamEditors/FlatCAMGeoEditor.py:1547 #: flatcamEditors/FlatCAMGeoEditor.py:1564 -#: flatcamEditors/FlatCAMGrbEditor.py:4669 -#: flatcamEditors/FlatCAMGrbEditor.py:4726 -#: flatcamEditors/FlatCAMGrbEditor.py:4743 +#: flatcamEditors/FlatCAMGrbEditor.py:4767 +#: flatcamEditors/FlatCAMGrbEditor.py:4824 +#: flatcamEditors/FlatCAMGrbEditor.py:4841 msgid "Enter an Angle Value (degrees):" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:1499 -#: flatcamEditors/FlatCAMGrbEditor.py:4678 +#: flatcamEditors/FlatCAMGrbEditor.py:4776 msgid "[success] Geometry shape rotate done..." msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:1504 -#: flatcamEditors/FlatCAMGrbEditor.py:4683 +#: flatcamEditors/FlatCAMGrbEditor.py:4781 msgid "[WARNING_NOTCL] Geometry shape rotate cancelled..." msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:1510 -#: flatcamEditors/FlatCAMGrbEditor.py:4689 +#: flatcamEditors/FlatCAMGrbEditor.py:4787 msgid "Offset on X axis ..." msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:1511 #: flatcamEditors/FlatCAMGeoEditor.py:1530 -#: flatcamEditors/FlatCAMGrbEditor.py:4690 -#: flatcamEditors/FlatCAMGrbEditor.py:4709 +#: flatcamEditors/FlatCAMGrbEditor.py:4788 +#: flatcamEditors/FlatCAMGrbEditor.py:4807 #, python-format msgid "Enter a distance Value (%s):" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:1520 -#: flatcamEditors/FlatCAMGrbEditor.py:4699 +#: flatcamEditors/FlatCAMGrbEditor.py:4797 msgid "[success] Geometry shape offset on X axis done..." msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:1524 -#: flatcamEditors/FlatCAMGrbEditor.py:4703 +#: flatcamEditors/FlatCAMGrbEditor.py:4801 msgid "[WARNING_NOTCL] Geometry shape offset X cancelled..." msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:1529 -#: flatcamEditors/FlatCAMGrbEditor.py:4708 +#: flatcamEditors/FlatCAMGrbEditor.py:4806 msgid "Offset on Y axis ..." msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:1539 -#: flatcamEditors/FlatCAMGrbEditor.py:4718 +#: flatcamEditors/FlatCAMGrbEditor.py:4816 msgid "[success] Geometry shape offset on Y axis done..." msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:1543 -#: flatcamEditors/FlatCAMGrbEditor.py:4722 +#: flatcamEditors/FlatCAMGrbEditor.py:4820 msgid "[WARNING_NOTCL] Geometry shape offset Y cancelled..." msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:1546 -#: flatcamEditors/FlatCAMGrbEditor.py:4725 +#: flatcamEditors/FlatCAMGrbEditor.py:4823 msgid "Skew on X axis ..." msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:1556 -#: flatcamEditors/FlatCAMGrbEditor.py:4735 +#: flatcamEditors/FlatCAMGrbEditor.py:4833 msgid "[success] Geometry shape skew on X axis done..." msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:1560 -#: flatcamEditors/FlatCAMGrbEditor.py:4739 +#: flatcamEditors/FlatCAMGrbEditor.py:4837 msgid "[WARNING_NOTCL] Geometry shape skew X cancelled..." msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:1563 -#: flatcamEditors/FlatCAMGrbEditor.py:4742 +#: flatcamEditors/FlatCAMGrbEditor.py:4840 msgid "Skew on Y axis ..." msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:1573 -#: flatcamEditors/FlatCAMGrbEditor.py:4752 +#: flatcamEditors/FlatCAMGrbEditor.py:4850 msgid "[success] Geometry shape skew on Y axis done..." msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:1577 -#: flatcamEditors/FlatCAMGrbEditor.py:4756 +#: flatcamEditors/FlatCAMGrbEditor.py:4854 msgid "[WARNING_NOTCL] Geometry shape skew Y cancelled..." msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:1942 #: flatcamEditors/FlatCAMGeoEditor.py:1943 -#: flatcamEditors/FlatCAMGeoEditor.py:1987 -#: flatcamEditors/FlatCAMGeoEditor.py:1988 +#: flatcamEditors/FlatCAMGeoEditor.py:1994 +#: flatcamEditors/FlatCAMGeoEditor.py:1995 #: flatcamEditors/FlatCAMGrbEditor.py:1081 #: flatcamEditors/FlatCAMGrbEditor.py:1082 -#: flatcamEditors/FlatCAMGrbEditor.py:1135 -#: flatcamEditors/FlatCAMGrbEditor.py:1136 +#: flatcamEditors/FlatCAMGrbEditor.py:1142 +#: flatcamEditors/FlatCAMGrbEditor.py:1143 msgid "Click on Center point ..." msgstr "" @@ -2518,243 +2490,244 @@ msgstr "" msgid "[success] Done. Adding Circle completed." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:2008 -#: flatcamEditors/FlatCAMGrbEditor.py:1161 +#: flatcamEditors/FlatCAMGeoEditor.py:2015 +#: flatcamEditors/FlatCAMGrbEditor.py:1168 msgid "Click on Start point ..." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:2010 -#: flatcamEditors/FlatCAMGrbEditor.py:1163 -msgid "Click on Point3 ..." -msgstr "" - -#: flatcamEditors/FlatCAMGeoEditor.py:2012 -#: flatcamEditors/FlatCAMGrbEditor.py:1165 -msgid "Click on Stop point ..." -msgstr "" - #: flatcamEditors/FlatCAMGeoEditor.py:2017 #: flatcamEditors/FlatCAMGrbEditor.py:1170 -msgid "Click on Stop point to complete ..." +msgid "Click on Point3 ..." msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:2019 #: flatcamEditors/FlatCAMGrbEditor.py:1172 +msgid "Click on Stop point ..." +msgstr "" + +#: flatcamEditors/FlatCAMGeoEditor.py:2024 +#: flatcamEditors/FlatCAMGrbEditor.py:1177 +msgid "Click on Stop point to complete ..." +msgstr "" + +#: flatcamEditors/FlatCAMGeoEditor.py:2026 +#: flatcamEditors/FlatCAMGrbEditor.py:1179 msgid "Click on Point2 to complete ..." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:2021 -#: flatcamEditors/FlatCAMGrbEditor.py:1174 +#: flatcamEditors/FlatCAMGeoEditor.py:2028 +#: flatcamEditors/FlatCAMGrbEditor.py:1181 msgid "Click on Center point to complete ..." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:2033 -#: flatcamEditors/FlatCAMGrbEditor.py:1186 +#: flatcamEditors/FlatCAMGeoEditor.py:2040 +#: flatcamEditors/FlatCAMGrbEditor.py:1193 #, python-format msgid "Direction: %s" msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:2043 -#: flatcamEditors/FlatCAMGrbEditor.py:1196 +#: flatcamEditors/FlatCAMGeoEditor.py:2050 +#: flatcamEditors/FlatCAMGrbEditor.py:1203 msgid "Mode: Start -> Stop -> Center. Click on Start point ..." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:2046 -#: flatcamEditors/FlatCAMGrbEditor.py:1199 +#: flatcamEditors/FlatCAMGeoEditor.py:2053 +#: flatcamEditors/FlatCAMGrbEditor.py:1206 msgid "Mode: Point1 -> Point3 -> Point2. Click on Point1 ..." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:2049 -#: flatcamEditors/FlatCAMGrbEditor.py:1202 +#: flatcamEditors/FlatCAMGeoEditor.py:2056 +#: flatcamEditors/FlatCAMGrbEditor.py:1209 msgid "Mode: Center -> Start -> Stop. Click on Center point ..." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:2187 +#: flatcamEditors/FlatCAMGeoEditor.py:2194 msgid "[success] Done. Arc completed." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:2206 +#: flatcamEditors/FlatCAMGeoEditor.py:2213 msgid "Click on 1st corner ..." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:2239 +#: flatcamEditors/FlatCAMGeoEditor.py:2246 msgid "[success] Done. Rectangle completed." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:2258 +#: flatcamEditors/FlatCAMGeoEditor.py:2265 #: flatcamEditors/FlatCAMGrbEditor.py:627 msgid "Click on 1st point ..." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:2265 +#: flatcamEditors/FlatCAMGeoEditor.py:2272 #: flatcamEditors/FlatCAMGrbEditor.py:637 #: flatcamEditors/FlatCAMGrbEditor.py:904 msgid "Click on next Point or click Right mouse button to complete ..." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:2293 +#: flatcamEditors/FlatCAMGeoEditor.py:2300 msgid "[success] Done. Polygon completed." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:2303 -#: flatcamEditors/FlatCAMGeoEditor.py:2349 +#: flatcamEditors/FlatCAMGeoEditor.py:2310 +#: flatcamEditors/FlatCAMGeoEditor.py:2356 #: flatcamEditors/FlatCAMGrbEditor.py:808 #: flatcamEditors/FlatCAMGrbEditor.py:981 msgid "Backtracked one point ..." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:2331 +#: flatcamEditors/FlatCAMGeoEditor.py:2338 msgid "[success] Done. Path completed." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:2443 -#: flatcamEditors/FlatCAMGeoEditor.py:3539 +#: flatcamEditors/FlatCAMGeoEditor.py:2450 +#: flatcamEditors/FlatCAMGeoEditor.py:3611 msgid "[WARNING_NOTCL] Move cancelled. No shape selected." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:2447 +#: flatcamEditors/FlatCAMGeoEditor.py:2454 msgid "Click on reference point." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:2450 +#: flatcamEditors/FlatCAMGeoEditor.py:2457 msgid "Click on destination point." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:2481 +#: flatcamEditors/FlatCAMGeoEditor.py:2488 msgid "[success] Done. Geometry(s) Move completed." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:2526 +#: flatcamEditors/FlatCAMGeoEditor.py:2533 msgid "[success] Done. Geometry(s) Copy completed." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:2538 +#: flatcamEditors/FlatCAMGeoEditor.py:2553 msgid "Click on the Destination point..." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:2552 +#: flatcamEditors/FlatCAMGeoEditor.py:2567 #, python-format msgid "" "[ERROR]Font not supported. Only Regular, Bold, Italic and BoldItalic are " "supported. Error: %s" msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:2562 +#: flatcamEditors/FlatCAMGeoEditor.py:2577 msgid "[success] Done. Adding Text completed." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:2590 +#: flatcamEditors/FlatCAMGeoEditor.py:2605 msgid "Create buffer geometry ..." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:2601 -#: flatcamEditors/FlatCAMGeoEditor.py:2627 -#: flatcamEditors/FlatCAMGeoEditor.py:2653 +#: flatcamEditors/FlatCAMGeoEditor.py:2616 +#: flatcamEditors/FlatCAMGeoEditor.py:2642 +#: flatcamEditors/FlatCAMGeoEditor.py:2668 msgid "[WARNING_NOTCL] Buffer cancelled. No shape selected." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:2623 -#: flatcamEditors/FlatCAMGrbEditor.py:3709 +#: flatcamEditors/FlatCAMGeoEditor.py:2638 +#: flatcamEditors/FlatCAMGrbEditor.py:3807 msgid "[success] Done. Buffer Tool completed." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:2649 +#: flatcamEditors/FlatCAMGeoEditor.py:2664 msgid "[success] Done. Buffer Int Tool completed." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:2675 +#: flatcamEditors/FlatCAMGeoEditor.py:2690 msgid "[success] Done. Buffer Ext Tool completed." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:2708 +#: flatcamEditors/FlatCAMGeoEditor.py:2723 msgid "Create Paint geometry ..." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:2722 -#: flatcamEditors/FlatCAMGrbEditor.py:1657 +#: flatcamEditors/FlatCAMGeoEditor.py:2737 +#: flatcamEditors/FlatCAMGrbEditor.py:1667 msgid "Shape transformations ..." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:3174 +#: flatcamEditors/FlatCAMGeoEditor.py:3237 #, python-brace-format msgid "[WARNING] Editing MultiGeo Geometry, tool: {tool} with diameter: {dia}" msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:3546 +#: flatcamEditors/FlatCAMGeoEditor.py:3618 msgid "[WARNING_NOTCL] Copy cancelled. No shape selected." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:3553 flatcamGUI/FlatCAMGUI.py:2686 -#: flatcamGUI/FlatCAMGUI.py:2732 flatcamGUI/FlatCAMGUI.py:2750 -#: flatcamGUI/FlatCAMGUI.py:2881 flatcamGUI/FlatCAMGUI.py:2893 -#: flatcamGUI/FlatCAMGUI.py:2927 +#: flatcamEditors/FlatCAMGeoEditor.py:3625 flatcamGUI/FlatCAMGUI.py:2710 +#: flatcamGUI/FlatCAMGUI.py:2756 flatcamGUI/FlatCAMGUI.py:2774 +#: flatcamGUI/FlatCAMGUI.py:2905 flatcamGUI/FlatCAMGUI.py:2917 +#: flatcamGUI/FlatCAMGUI.py:2951 msgid "Click on target point." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:3796 +#: flatcamEditors/FlatCAMGeoEditor.py:3868 +#: flatcamEditors/FlatCAMGeoEditor.py:3902 msgid "" "[WARNING_NOTCL] A selection of at least 2 geo items is required to do " "Intersection." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:3834 -#: flatcamEditors/FlatCAMGeoEditor.py:3871 -#: flatcamEditors/FlatCAMGeoEditor.py:3947 +#: flatcamEditors/FlatCAMGeoEditor.py:3986 +#: flatcamEditors/FlatCAMGeoEditor.py:4023 +#: flatcamEditors/FlatCAMGeoEditor.py:4099 msgid "" "[ERROR_NOTCL] Negative buffer value is not accepted. Use Buffer interior to " "generate an 'inside' shape" msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:3842 -#: flatcamEditors/FlatCAMGeoEditor.py:3880 -#: flatcamEditors/FlatCAMGeoEditor.py:3955 +#: flatcamEditors/FlatCAMGeoEditor.py:3994 +#: flatcamEditors/FlatCAMGeoEditor.py:4032 +#: flatcamEditors/FlatCAMGeoEditor.py:4107 msgid "[WARNING_NOTCL] Nothing selected for buffering." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:3846 -#: flatcamEditors/FlatCAMGeoEditor.py:3884 -#: flatcamEditors/FlatCAMGeoEditor.py:3959 +#: flatcamEditors/FlatCAMGeoEditor.py:3998 +#: flatcamEditors/FlatCAMGeoEditor.py:4036 +#: flatcamEditors/FlatCAMGeoEditor.py:4111 msgid "[WARNING_NOTCL] Invalid distance for buffering." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:3856 -#: flatcamEditors/FlatCAMGeoEditor.py:3968 +#: flatcamEditors/FlatCAMGeoEditor.py:4008 +#: flatcamEditors/FlatCAMGeoEditor.py:4120 msgid "" "[ERROR_NOTCL] Failed, the result is empty. Choose a different buffer value." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:3864 +#: flatcamEditors/FlatCAMGeoEditor.py:4016 msgid "[success] Full buffer geometry created." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:3894 +#: flatcamEditors/FlatCAMGeoEditor.py:4046 msgid "" "[ERROR_NOTCL] Failed, the result is empty. Choose a smaller buffer value." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:3909 +#: flatcamEditors/FlatCAMGeoEditor.py:4061 msgid "[success] Interior buffer geometry created." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:3980 +#: flatcamEditors/FlatCAMGeoEditor.py:4132 msgid "[success] Exterior buffer geometry created." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:4044 +#: flatcamEditors/FlatCAMGeoEditor.py:4196 msgid "[WARNING_NOTCL] Nothing selected for painting." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:4050 +#: flatcamEditors/FlatCAMGeoEditor.py:4202 msgid "[WARNING] Invalid value for {}" msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:4056 +#: flatcamEditors/FlatCAMGeoEditor.py:4208 msgid "" "[ERROR_NOTCL] Could not do Paint. Overlap value has to be less than 1.00 " "(100%)." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:4115 +#: flatcamEditors/FlatCAMGeoEditor.py:4267 #, python-format msgid "" "[ERROR] Could not do Paint. Try a different combination of parameters. Or a " @@ -2762,7 +2735,7 @@ msgid "" "%s" msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:4126 +#: flatcamEditors/FlatCAMGeoEditor.py:4278 msgid "[success] Paint done." msgstr "" @@ -2870,88 +2843,88 @@ msgstr "" msgid "Track Mode 5: Free angle ..." msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:1360 +#: flatcamEditors/FlatCAMGrbEditor.py:1367 msgid "Scale the selected Gerber apertures ..." msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:1402 +#: flatcamEditors/FlatCAMGrbEditor.py:1409 msgid "Buffer the selected apertures ..." msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:1503 +#: flatcamEditors/FlatCAMGrbEditor.py:1510 msgid "[success] Done. Apertures Move completed." msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:1558 +#: flatcamEditors/FlatCAMGrbEditor.py:1565 msgid "[success] Done. Apertures copied." msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:1698 flatcamGUI/FlatCAMGUI.py:1574 +#: flatcamEditors/FlatCAMGrbEditor.py:1708 flatcamGUI/FlatCAMGUI.py:1590 msgid "Gerber Editor" msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:1717 flatcamGUI/ObjectUI.py:192 +#: flatcamEditors/FlatCAMGrbEditor.py:1727 flatcamGUI/ObjectUI.py:192 msgid "Apertures:" msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:1719 flatcamGUI/ObjectUI.py:194 +#: flatcamEditors/FlatCAMGrbEditor.py:1729 flatcamGUI/ObjectUI.py:194 msgid "Apertures Table for the Gerber Object." msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:1730 -#: flatcamEditors/FlatCAMGrbEditor.py:2927 flatcamGUI/ObjectUI.py:228 +#: flatcamEditors/FlatCAMGrbEditor.py:1740 +#: flatcamEditors/FlatCAMGrbEditor.py:3007 flatcamGUI/ObjectUI.py:228 msgid "Code" msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:1730 -#: flatcamEditors/FlatCAMGrbEditor.py:2927 flatcamGUI/ObjectUI.py:228 +#: flatcamEditors/FlatCAMGrbEditor.py:1740 +#: flatcamEditors/FlatCAMGrbEditor.py:3007 flatcamGUI/ObjectUI.py:228 #: flatcamGUI/ObjectUI.py:888 flatcamGUI/ObjectUI.py:1446 msgid "Type" msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:1730 -#: flatcamEditors/FlatCAMGrbEditor.py:2927 flatcamGUI/ObjectUI.py:228 +#: flatcamEditors/FlatCAMGrbEditor.py:1740 +#: flatcamEditors/FlatCAMGrbEditor.py:3007 flatcamGUI/ObjectUI.py:228 msgid "Size" msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:1730 -#: flatcamEditors/FlatCAMGrbEditor.py:2927 flatcamGUI/ObjectUI.py:228 +#: flatcamEditors/FlatCAMGrbEditor.py:1740 +#: flatcamEditors/FlatCAMGrbEditor.py:3007 flatcamGUI/ObjectUI.py:228 msgid "Dim" msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:1734 flatcamGUI/ObjectUI.py:232 +#: flatcamEditors/FlatCAMGrbEditor.py:1744 flatcamGUI/ObjectUI.py:232 msgid "Index" msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:1736 flatcamGUI/ObjectUI.py:234 +#: flatcamEditors/FlatCAMGrbEditor.py:1746 flatcamGUI/ObjectUI.py:234 msgid "Aperture Code" msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:1738 flatcamGUI/ObjectUI.py:236 +#: flatcamEditors/FlatCAMGrbEditor.py:1748 flatcamGUI/ObjectUI.py:236 msgid "Type of aperture: circular, rectangle, macros etc" msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:1740 -#: flatcamEditors/FlatCAMGrbEditor.py:1773 flatcamGUI/ObjectUI.py:238 +#: flatcamEditors/FlatCAMGrbEditor.py:1750 +#: flatcamEditors/FlatCAMGrbEditor.py:1783 flatcamGUI/ObjectUI.py:238 msgid "Aperture Size:" msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:1742 flatcamGUI/ObjectUI.py:240 +#: flatcamEditors/FlatCAMGrbEditor.py:1752 flatcamGUI/ObjectUI.py:240 msgid "" "Aperture Dimensions:\n" " - (width, height) for R, O type.\n" " - (dia, nVertices) for P type" msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:1763 +#: flatcamEditors/FlatCAMGrbEditor.py:1773 msgid "Aperture Code:" msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:1765 +#: flatcamEditors/FlatCAMGrbEditor.py:1775 msgid "Code for the new aperture" msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:1775 +#: flatcamEditors/FlatCAMGrbEditor.py:1785 msgid "" "Size for the new aperture.\n" "If aperture type is 'R' or 'O' then\n" @@ -2960,11 +2933,11 @@ msgid "" "sqrt(width**2 + height**2)" msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:1787 +#: flatcamEditors/FlatCAMGrbEditor.py:1797 msgid "Aperture Type:" msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:1789 +#: flatcamEditors/FlatCAMGrbEditor.py:1799 msgid "" "Select the type of new aperture. Can be:\n" "C = circular\n" @@ -2972,42 +2945,42 @@ msgid "" "O = oblong" msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:1800 +#: flatcamEditors/FlatCAMGrbEditor.py:1810 msgid "Aperture Dim:" msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:1802 +#: flatcamEditors/FlatCAMGrbEditor.py:1812 msgid "" "Dimensions for the new aperture.\n" "Active only for rectangular apertures (type R).\n" "The format is (width, height)" msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:1811 +#: flatcamEditors/FlatCAMGrbEditor.py:1821 msgid "Add/Delete Aperture:" msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:1813 +#: flatcamEditors/FlatCAMGrbEditor.py:1823 msgid "Add/Delete an aperture in the aperture table" msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:1822 +#: flatcamEditors/FlatCAMGrbEditor.py:1832 msgid "Add a new aperture to the aperture list." msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:1827 +#: flatcamEditors/FlatCAMGrbEditor.py:1837 msgid "Delete a aperture in the aperture list" msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:1843 +#: flatcamEditors/FlatCAMGrbEditor.py:1853 msgid "Buffer Aperture:" msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:1845 +#: flatcamEditors/FlatCAMGrbEditor.py:1855 msgid "Buffer a aperture in the aperture list" msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:1858 +#: flatcamEditors/FlatCAMGrbEditor.py:1868 msgid "" "There are 3 types of corners:\n" " - 'Round': the corner is rounded.\n" @@ -3016,140 +2989,140 @@ msgid "" "meeting in the corner" msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:1873 flatcamGUI/FlatCAMGUI.py:707 -#: flatcamGUI/FlatCAMGUI.py:1911 +#: flatcamEditors/FlatCAMGrbEditor.py:1883 flatcamGUI/FlatCAMGUI.py:708 +#: flatcamGUI/FlatCAMGUI.py:1929 msgid "Buffer" msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:1887 +#: flatcamEditors/FlatCAMGrbEditor.py:1897 msgid "Scale Aperture:" msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:1889 +#: flatcamEditors/FlatCAMGrbEditor.py:1899 msgid "Scale a aperture in the aperture list" msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:1897 +#: flatcamEditors/FlatCAMGrbEditor.py:1907 msgid "Scale factor:" msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:1899 +#: flatcamEditors/FlatCAMGrbEditor.py:1909 msgid "" "The factor by which to scale the selected aperture.\n" "Values can be between 0.0000 and 999.9999" msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:1927 flatcamGUI/FlatCAMGUI.py:696 -#: flatcamGUI/FlatCAMGUI.py:1906 +#: flatcamEditors/FlatCAMGrbEditor.py:1937 flatcamGUI/FlatCAMGUI.py:698 +#: flatcamGUI/FlatCAMGUI.py:1919 msgid "Add Pad Array" msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:1929 +#: flatcamEditors/FlatCAMGrbEditor.py:1939 msgid "Add an array of pads (linear or circular array)" msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:1935 +#: flatcamEditors/FlatCAMGrbEditor.py:1945 msgid "" "Select the type of pads array to create.\n" "It can be Linear X(Y) or Circular" msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:1946 +#: flatcamEditors/FlatCAMGrbEditor.py:1956 msgid "Nr of pads:" msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:1948 +#: flatcamEditors/FlatCAMGrbEditor.py:1958 msgid "Specify how many pads to be in the array." msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:2420 -#: flatcamEditors/FlatCAMGrbEditor.py:2424 +#: flatcamEditors/FlatCAMGrbEditor.py:2431 +#: flatcamEditors/FlatCAMGrbEditor.py:2435 msgid "" "[WARNING_NOTCL] Aperture code value is missing or wrong format. Add it and " "retry." msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:2461 +#: flatcamEditors/FlatCAMGrbEditor.py:2472 msgid "" "[WARNING_NOTCL] Aperture dimensions value is missing or wrong format. Add it " "in format (width, height) and retry." msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:2473 +#: flatcamEditors/FlatCAMGrbEditor.py:2484 msgid "" "[WARNING_NOTCL] Aperture size value is missing or wrong format. Add it and " "retry." msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:2485 +#: flatcamEditors/FlatCAMGrbEditor.py:2496 msgid "[WARNING_NOTCL] Aperture already in the aperture table." msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:2492 +#: flatcamEditors/FlatCAMGrbEditor.py:2503 #, python-brace-format msgid "[success] Added new aperture with code: {apid}" msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:2521 -#: flatcamEditors/FlatCAMGrbEditor.py:2527 +#: flatcamEditors/FlatCAMGrbEditor.py:2532 +#: flatcamEditors/FlatCAMGrbEditor.py:2538 msgid "[WARNING_NOTCL] Select an aperture in Aperture Table" msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:2550 +#: flatcamEditors/FlatCAMGrbEditor.py:2561 #, python-brace-format msgid "[success] Deleted aperture with code: {del_dia}" msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:2851 +#: flatcamEditors/FlatCAMGrbEditor.py:2931 #, python-format msgid "Adding aperture: %s geo ..." msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:3015 +#: flatcamEditors/FlatCAMGrbEditor.py:3095 msgid "" "[ERROR_NOTCL] There are no Aperture definitions in the file. Aborting Gerber " "creation." msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:3024 +#: flatcamEditors/FlatCAMGrbEditor.py:3104 msgid "Creating Gerber." msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:3032 +#: flatcamEditors/FlatCAMGrbEditor.py:3112 msgid "[success] Gerber editing finished." msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:3049 +#: flatcamEditors/FlatCAMGrbEditor.py:3129 msgid "[WARNING_NOTCL] Cancelled. No aperture is selected" msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:3549 +#: flatcamEditors/FlatCAMGrbEditor.py:3649 msgid "[ERROR_NOTCL] Failed. No aperture geometry is selected." msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:3557 +#: flatcamEditors/FlatCAMGrbEditor.py:3657 msgid "[success] Done. Apertures geometry deleted." msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:3694 +#: flatcamEditors/FlatCAMGrbEditor.py:3792 msgid "" "[WARNING_NOTCL] No aperture to buffer. Select at least one aperture and try " "again." msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:3723 +#: flatcamEditors/FlatCAMGrbEditor.py:3821 msgid "" "[WARNING_NOTCL] Scale factor value is missing or wrong format. Add it and " "retry." msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:3741 +#: flatcamEditors/FlatCAMGrbEditor.py:3839 msgid "" "[WARNING_NOTCL] No aperture to scale. Select at least one aperture and try " "again." msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:3757 +#: flatcamEditors/FlatCAMGrbEditor.py:3855 msgid "[success] Done. Scale Tool completed." msgstr "" @@ -3692,11 +3665,11 @@ msgstr "" msgid "View Source" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:517 flatcamGUI/FlatCAMGUI.py:1592 +#: flatcamGUI/FlatCAMGUI.py:517 flatcamGUI/FlatCAMGUI.py:1603 msgid "Edit" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:523 flatcamGUI/FlatCAMGUI.py:1598 +#: flatcamGUI/FlatCAMGUI.py:523 flatcamGUI/FlatCAMGUI.py:1609 #: flatcamTools/ToolProperties.py:25 msgid "Properties" msgstr "" @@ -3737,15 +3710,15 @@ msgstr "" msgid "Grid Toolbar" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:603 flatcamGUI/FlatCAMGUI.py:1809 +#: flatcamGUI/FlatCAMGUI.py:603 flatcamGUI/FlatCAMGUI.py:1820 msgid "Open project" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:604 flatcamGUI/FlatCAMGUI.py:1810 +#: flatcamGUI/FlatCAMGUI.py:604 flatcamGUI/FlatCAMGUI.py:1821 msgid "Save project" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:607 flatcamGUI/FlatCAMGUI.py:1813 +#: flatcamGUI/FlatCAMGUI.py:607 flatcamGUI/FlatCAMGUI.py:1824 msgid "New Blank Geometry" msgstr "" @@ -3753,278 +3726,283 @@ msgstr "" msgid "New Blank Gerber" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:609 flatcamGUI/FlatCAMGUI.py:1814 +#: flatcamGUI/FlatCAMGUI.py:609 flatcamGUI/FlatCAMGUI.py:1825 msgid "New Blank Excellon" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:611 flatcamGUI/FlatCAMGUI.py:1816 +#: flatcamGUI/FlatCAMGUI.py:611 flatcamGUI/FlatCAMGUI.py:1827 msgid "Editor" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:613 flatcamGUI/FlatCAMGUI.py:1818 +#: flatcamGUI/FlatCAMGUI.py:613 flatcamGUI/FlatCAMGUI.py:1829 msgid "Save Object and close the Editor" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:617 flatcamGUI/FlatCAMGUI.py:1822 +#: flatcamGUI/FlatCAMGUI.py:617 flatcamGUI/FlatCAMGUI.py:1833 msgid "&Delete" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:620 flatcamGUI/FlatCAMGUI.py:1825 +#: flatcamGUI/FlatCAMGUI.py:620 flatcamGUI/FlatCAMGUI.py:1836 msgid "&Replot" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:621 flatcamGUI/FlatCAMGUI.py:1826 +#: flatcamGUI/FlatCAMGUI.py:621 flatcamGUI/FlatCAMGUI.py:1837 msgid "&Clear plot" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:622 flatcamGUI/FlatCAMGUI.py:1827 +#: flatcamGUI/FlatCAMGUI.py:622 flatcamGUI/FlatCAMGUI.py:1838 msgid "Zoom In" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:623 flatcamGUI/FlatCAMGUI.py:1828 +#: flatcamGUI/FlatCAMGUI.py:623 flatcamGUI/FlatCAMGUI.py:1839 msgid "Zoom Out" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:624 flatcamGUI/FlatCAMGUI.py:1562 -#: flatcamGUI/FlatCAMGUI.py:1829 +#: flatcamGUI/FlatCAMGUI.py:624 flatcamGUI/FlatCAMGUI.py:1578 +#: flatcamGUI/FlatCAMGUI.py:1840 msgid "Zoom Fit" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:629 flatcamGUI/FlatCAMGUI.py:1834 +#: flatcamGUI/FlatCAMGUI.py:629 flatcamGUI/FlatCAMGUI.py:1845 msgid "&Command Line" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:632 flatcamGUI/FlatCAMGUI.py:1837 +#: flatcamGUI/FlatCAMGUI.py:632 flatcamGUI/FlatCAMGUI.py:1848 msgid "2Sided Tool" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:633 flatcamGUI/FlatCAMGUI.py:1838 +#: flatcamGUI/FlatCAMGUI.py:633 flatcamGUI/FlatCAMGUI.py:1849 msgid "&Cutout Tool" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:634 flatcamGUI/FlatCAMGUI.py:1839 +#: flatcamGUI/FlatCAMGUI.py:634 flatcamGUI/FlatCAMGUI.py:1850 #: flatcamGUI/ObjectUI.py:392 flatcamTools/ToolNonCopperClear.py:285 msgid "NCC Tool" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:638 flatcamGUI/FlatCAMGUI.py:1843 +#: flatcamGUI/FlatCAMGUI.py:638 flatcamGUI/FlatCAMGUI.py:1854 msgid "Panel Tool" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:639 flatcamGUI/FlatCAMGUI.py:1844 +#: flatcamGUI/FlatCAMGUI.py:639 flatcamGUI/FlatCAMGUI.py:1855 #: flatcamTools/ToolFilm.py:204 msgid "Film Tool" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:640 flatcamGUI/FlatCAMGUI.py:1846 +#: flatcamGUI/FlatCAMGUI.py:640 flatcamGUI/FlatCAMGUI.py:1857 msgid "SolderPaste Tool" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:643 flatcamGUI/FlatCAMGUI.py:1850 +#: flatcamGUI/FlatCAMGUI.py:641 flatcamGUI/FlatCAMGUI.py:1858 +#: flatcamTools/ToolSub.py:26 +msgid "Substract Tool" +msgstr "" + +#: flatcamGUI/FlatCAMGUI.py:645 flatcamGUI/FlatCAMGUI.py:1863 msgid "Calculators Tool" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:647 flatcamGUI/FlatCAMGUI.py:661 -#: flatcamGUI/FlatCAMGUI.py:694 flatcamGUI/FlatCAMGUI.py:1854 -#: flatcamGUI/FlatCAMGUI.py:1904 +#: flatcamGUI/FlatCAMGUI.py:649 flatcamGUI/FlatCAMGUI.py:663 +#: flatcamGUI/FlatCAMGUI.py:696 flatcamGUI/FlatCAMGUI.py:1867 +#: flatcamGUI/FlatCAMGUI.py:1917 msgid "Select" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:648 flatcamGUI/FlatCAMGUI.py:1855 +#: flatcamGUI/FlatCAMGUI.py:650 flatcamGUI/FlatCAMGUI.py:1868 msgid "Add Drill Hole" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:650 flatcamGUI/FlatCAMGUI.py:1857 +#: flatcamGUI/FlatCAMGUI.py:652 flatcamGUI/FlatCAMGUI.py:1870 msgid "Add Drill Hole Array" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:651 flatcamGUI/FlatCAMGUI.py:1858 +#: flatcamGUI/FlatCAMGUI.py:653 flatcamGUI/FlatCAMGUI.py:1871 msgid "Resize Drill" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:654 flatcamGUI/FlatCAMGUI.py:1861 +#: flatcamGUI/FlatCAMGUI.py:656 flatcamGUI/FlatCAMGUI.py:1874 msgid "Copy Drill" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:655 flatcamGUI/FlatCAMGUI.py:1863 +#: flatcamGUI/FlatCAMGUI.py:657 flatcamGUI/FlatCAMGUI.py:1876 msgid "Delete Drill" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:658 flatcamGUI/FlatCAMGUI.py:1866 +#: flatcamGUI/FlatCAMGUI.py:660 flatcamGUI/FlatCAMGUI.py:1879 msgid "Move Drill" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:662 flatcamGUI/FlatCAMGUI.py:1870 +#: flatcamGUI/FlatCAMGUI.py:664 flatcamGUI/FlatCAMGUI.py:1883 msgid "Add Circle" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:663 flatcamGUI/FlatCAMGUI.py:1871 +#: flatcamGUI/FlatCAMGUI.py:665 flatcamGUI/FlatCAMGUI.py:1884 msgid "Add Arc" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:665 flatcamGUI/FlatCAMGUI.py:1873 +#: flatcamGUI/FlatCAMGUI.py:667 flatcamGUI/FlatCAMGUI.py:1886 msgid "Add Rectangle" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:668 flatcamGUI/FlatCAMGUI.py:1876 +#: flatcamGUI/FlatCAMGUI.py:670 flatcamGUI/FlatCAMGUI.py:1889 msgid "Add Path" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:669 flatcamGUI/FlatCAMGUI.py:1878 +#: flatcamGUI/FlatCAMGUI.py:671 flatcamGUI/FlatCAMGUI.py:1891 msgid "Add Polygon" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:671 flatcamGUI/FlatCAMGUI.py:1880 +#: flatcamGUI/FlatCAMGUI.py:673 flatcamGUI/FlatCAMGUI.py:1893 msgid "Add Text" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:672 flatcamGUI/FlatCAMGUI.py:1882 +#: flatcamGUI/FlatCAMGUI.py:674 flatcamGUI/FlatCAMGUI.py:1895 msgid "Add Buffer" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:673 flatcamGUI/FlatCAMGUI.py:1883 +#: flatcamGUI/FlatCAMGUI.py:675 flatcamGUI/FlatCAMGUI.py:1896 msgid "Paint Shape" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:676 flatcamGUI/FlatCAMGUI.py:1886 +#: flatcamGUI/FlatCAMGUI.py:678 flatcamGUI/FlatCAMGUI.py:1899 msgid "Polygon Union" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:678 flatcamGUI/FlatCAMGUI.py:1888 +#: flatcamGUI/FlatCAMGUI.py:680 flatcamGUI/FlatCAMGUI.py:1901 msgid "Polygon Intersection" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:680 flatcamGUI/FlatCAMGUI.py:1890 +#: flatcamGUI/FlatCAMGUI.py:682 flatcamGUI/FlatCAMGUI.py:1903 msgid "Polygon Subtraction" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:683 flatcamGUI/FlatCAMGUI.py:1893 +#: flatcamGUI/FlatCAMGUI.py:685 flatcamGUI/FlatCAMGUI.py:1906 msgid "Cut Path" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:684 +#: flatcamGUI/FlatCAMGUI.py:686 msgid "Copy Shape(s)" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:687 +#: flatcamGUI/FlatCAMGUI.py:689 msgid "Delete Shape '-'" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:689 flatcamGUI/FlatCAMGUI.py:714 -#: flatcamGUI/FlatCAMGUI.py:1898 flatcamGUI/FlatCAMGUI.py:1918 +#: flatcamGUI/FlatCAMGUI.py:691 flatcamGUI/FlatCAMGUI.py:715 +#: flatcamGUI/FlatCAMGUI.py:1911 flatcamGUI/FlatCAMGUI.py:1936 msgid "Transformations" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:691 +#: flatcamGUI/FlatCAMGUI.py:693 msgid "Move Objects " msgstr "" -#: flatcamGUI/FlatCAMGUI.py:695 flatcamGUI/FlatCAMGUI.py:1905 +#: flatcamGUI/FlatCAMGUI.py:697 flatcamGUI/FlatCAMGUI.py:1918 msgid "Add Pad" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:697 flatcamGUI/FlatCAMGUI.py:1907 +#: flatcamGUI/FlatCAMGUI.py:699 flatcamGUI/FlatCAMGUI.py:1920 msgid "Add Track" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:698 flatcamGUI/FlatCAMGUI.py:1908 +#: flatcamGUI/FlatCAMGUI.py:700 flatcamGUI/FlatCAMGUI.py:1921 msgid "Add Region" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:700 +#: flatcamGUI/FlatCAMGUI.py:702 flatcamGUI/FlatCAMGUI.py:1923 msgid "Poligonize" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:703 +#: flatcamGUI/FlatCAMGUI.py:704 flatcamGUI/FlatCAMGUI.py:1925 msgid "SemiDisc" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:704 +#: flatcamGUI/FlatCAMGUI.py:705 flatcamGUI/FlatCAMGUI.py:1926 msgid "Disc" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:716 flatcamGUI/FlatCAMGUI.py:1572 -#: flatcamGUI/FlatCAMGUI.py:1582 flatcamGUI/FlatCAMGUI.py:1597 -#: flatcamGUI/FlatCAMGUI.py:1920 flatcamTools/ToolMove.py:26 +#: flatcamGUI/FlatCAMGUI.py:717 flatcamGUI/FlatCAMGUI.py:1588 +#: flatcamGUI/FlatCAMGUI.py:1608 flatcamGUI/FlatCAMGUI.py:1938 +#: flatcamTools/ToolMove.py:26 msgid "Move" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:722 flatcamGUI/FlatCAMGUI.py:1926 +#: flatcamGUI/FlatCAMGUI.py:723 flatcamGUI/FlatCAMGUI.py:1944 msgid "Snap to grid" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:725 flatcamGUI/FlatCAMGUI.py:1929 +#: flatcamGUI/FlatCAMGUI.py:726 flatcamGUI/FlatCAMGUI.py:1947 msgid "Grid X snapping distance" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:730 flatcamGUI/FlatCAMGUI.py:1934 +#: flatcamGUI/FlatCAMGUI.py:731 flatcamGUI/FlatCAMGUI.py:1952 msgid "Grid Y snapping distance" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:736 flatcamGUI/FlatCAMGUI.py:1940 +#: flatcamGUI/FlatCAMGUI.py:737 flatcamGUI/FlatCAMGUI.py:1958 msgid "" "When active, value on Grid_X\n" "is copied to the Grid_Y value." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:742 flatcamGUI/FlatCAMGUI.py:1946 +#: flatcamGUI/FlatCAMGUI.py:743 flatcamGUI/FlatCAMGUI.py:1964 msgid "Snap to corner" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:746 flatcamGUI/FlatCAMGUI.py:1950 -#: flatcamGUI/FlatCAMGUI.py:3286 +#: flatcamGUI/FlatCAMGUI.py:747 flatcamGUI/FlatCAMGUI.py:1968 +#: flatcamGUI/FlatCAMGUI.py:3311 msgid "Max. magnet distance" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:760 flatcamGUI/FlatCAMGUI.py:1556 +#: flatcamGUI/FlatCAMGUI.py:775 flatcamGUI/FlatCAMGUI.py:1572 msgid "Project" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:769 +#: flatcamGUI/FlatCAMGUI.py:785 msgid "Selected" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:788 flatcamGUI/FlatCAMGUI.py:796 +#: flatcamGUI/FlatCAMGUI.py:804 flatcamGUI/FlatCAMGUI.py:812 msgid "Plot Area" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:820 +#: flatcamGUI/FlatCAMGUI.py:836 msgid "General" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:829 +#: flatcamGUI/FlatCAMGUI.py:845 msgid "APP. DEFAULTS" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:830 +#: flatcamGUI/FlatCAMGUI.py:846 msgid "PROJ. OPTIONS " msgstr "" -#: flatcamGUI/FlatCAMGUI.py:841 +#: flatcamGUI/FlatCAMGUI.py:857 msgid "GERBER" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:850 +#: flatcamGUI/FlatCAMGUI.py:866 msgid "EXCELLON" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:859 +#: flatcamGUI/FlatCAMGUI.py:875 msgid "GEOMETRY" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:869 +#: flatcamGUI/FlatCAMGUI.py:885 msgid "CNC-JOB" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:878 +#: flatcamGUI/FlatCAMGUI.py:894 msgid "TOOLS" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:895 +#: flatcamGUI/FlatCAMGUI.py:911 msgid "Import Preferences" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:898 +#: flatcamGUI/FlatCAMGUI.py:914 msgid "" "Import a full set of FlatCAM settings from a file\n" "previously saved on HDD.\n" @@ -4033,35 +4011,35 @@ msgid "" "on the first start. Do not delete that file." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:905 +#: flatcamGUI/FlatCAMGUI.py:921 msgid "Export Preferences" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:908 +#: flatcamGUI/FlatCAMGUI.py:924 msgid "" "Export a full set of FlatCAM settings in a file\n" "that is saved on HDD." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:913 +#: flatcamGUI/FlatCAMGUI.py:929 msgid "Open Pref Folder" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:916 +#: flatcamGUI/FlatCAMGUI.py:932 msgid "Open the folder where FlatCAM save the preferences files." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:924 +#: flatcamGUI/FlatCAMGUI.py:940 msgid "Save Preferences" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:927 +#: flatcamGUI/FlatCAMGUI.py:943 msgid "" "Save the current settings in the 'current_defaults' file\n" "which is the file storing the working default preferences." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:953 +#: flatcamGUI/FlatCAMGUI.py:969 msgid "" "General Shortcut list
\n" " Editor Shortcut list
\n" "
\n" @@ -4661,147 +4639,141 @@ msgid "" " " msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1550 +#: flatcamGUI/FlatCAMGUI.py:1566 msgid "Disable" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1552 +#: flatcamGUI/FlatCAMGUI.py:1568 msgid "New" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1553 +#: flatcamGUI/FlatCAMGUI.py:1569 msgid "Geometry" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1554 +#: flatcamGUI/FlatCAMGUI.py:1570 msgid "Excellon" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1559 +#: flatcamGUI/FlatCAMGUI.py:1575 msgid "Grids" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1561 +#: flatcamGUI/FlatCAMGUI.py:1577 msgid "View" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1563 +#: flatcamGUI/FlatCAMGUI.py:1579 msgid "Clear Plot" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1564 +#: flatcamGUI/FlatCAMGUI.py:1580 msgid "Replot" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1567 +#: flatcamGUI/FlatCAMGUI.py:1583 msgid "Geo Editor" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1568 +#: flatcamGUI/FlatCAMGUI.py:1584 msgid "Line" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1569 +#: flatcamGUI/FlatCAMGUI.py:1585 msgid "Rectangle" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1570 flatcamGUI/FlatCAMGUI.py:5110 -#: flatcamGUI/ObjectUI.py:1360 +#: flatcamGUI/FlatCAMGUI.py:1586 msgid "Cut" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1575 +#: flatcamGUI/FlatCAMGUI.py:1591 msgid "Pad" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1576 +#: flatcamGUI/FlatCAMGUI.py:1592 msgid "Pad Array" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1577 +#: flatcamGUI/FlatCAMGUI.py:1593 msgid "Track" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1578 +#: flatcamGUI/FlatCAMGUI.py:1594 msgid "Region" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1584 +#: flatcamGUI/FlatCAMGUI.py:1596 msgid "Exc Editor" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1585 +#: flatcamGUI/FlatCAMGUI.py:1597 msgid "Add Drill" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1587 -msgid "Copy Drill(s)" -msgstr "" - -#: flatcamGUI/FlatCAMGUI.py:1618 +#: flatcamGUI/FlatCAMGUI.py:1629 msgid "Print Preview" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1619 +#: flatcamGUI/FlatCAMGUI.py:1630 msgid "Print Code" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1620 +#: flatcamGUI/FlatCAMGUI.py:1631 msgid "Find in Code" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1625 +#: flatcamGUI/FlatCAMGUI.py:1636 msgid "Replace With" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1629 flatcamGUI/FlatCAMGUI.py:5108 -#: flatcamGUI/FlatCAMGUI.py:5618 flatcamGUI/ObjectUI.py:1358 +#: flatcamGUI/FlatCAMGUI.py:1640 msgid "All" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1631 +#: flatcamGUI/FlatCAMGUI.py:1642 msgid "" "When checked it will replace all instances in the 'Find' box\n" "with the text in the 'Replace' box.." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1634 +#: flatcamGUI/FlatCAMGUI.py:1645 msgid "Open Code" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1635 +#: flatcamGUI/FlatCAMGUI.py:1646 msgid "Save Code" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1670 +#: flatcamGUI/FlatCAMGUI.py:1681 msgid "" "Relative neasurement.\n" "Reference is last click position" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1676 +#: flatcamGUI/FlatCAMGUI.py:1687 msgid "" "Absolute neasurement.\n" "Reference is (X=0, Y= 0) position" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1869 +#: flatcamGUI/FlatCAMGUI.py:1882 msgid "Select 'Esc'" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1894 +#: flatcamGUI/FlatCAMGUI.py:1907 msgid "Copy Objects" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1896 +#: flatcamGUI/FlatCAMGUI.py:1909 msgid "Delete Shape" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1901 +#: flatcamGUI/FlatCAMGUI.py:1914 msgid "Move Objects" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:2319 +#: flatcamGUI/FlatCAMGUI.py:2343 msgid "" "Please first select a geometry item to be cutted\n" "then select the geometry item that will be cutted\n" @@ -4809,131 +4781,131 @@ msgid "" "the toolbar button." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:2326 flatcamGUI/FlatCAMGUI.py:2463 -#: flatcamGUI/FlatCAMGUI.py:2522 flatcamGUI/FlatCAMGUI.py:2542 +#: flatcamGUI/FlatCAMGUI.py:2350 flatcamGUI/FlatCAMGUI.py:2487 +#: flatcamGUI/FlatCAMGUI.py:2546 flatcamGUI/FlatCAMGUI.py:2566 msgid "Warning" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:2393 flatcamGUI/FlatCAMGUI.py:2592 -#: flatcamGUI/FlatCAMGUI.py:2803 +#: flatcamGUI/FlatCAMGUI.py:2417 flatcamGUI/FlatCAMGUI.py:2616 +#: flatcamGUI/FlatCAMGUI.py:2827 msgid "[WARNING_NOTCL] Cancelled." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:2458 +#: flatcamGUI/FlatCAMGUI.py:2482 msgid "" "Please select geometry items \n" "on which to perform Intersection Tool." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:2517 +#: flatcamGUI/FlatCAMGUI.py:2541 msgid "" "Please select geometry items \n" "on which to perform Substraction Tool." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:2537 +#: flatcamGUI/FlatCAMGUI.py:2561 msgid "" "Please select geometry items \n" "on which to perform union." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:2608 flatcamGUI/FlatCAMGUI.py:2820 +#: flatcamGUI/FlatCAMGUI.py:2632 flatcamGUI/FlatCAMGUI.py:2844 msgid "[WARNING_NOTCL] Cancelled. Nothing selected to delete." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:2692 flatcamGUI/FlatCAMGUI.py:2887 +#: flatcamGUI/FlatCAMGUI.py:2716 flatcamGUI/FlatCAMGUI.py:2911 msgid "[WARNING_NOTCL] Cancelled. Nothing selected to copy." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:2738 flatcamGUI/FlatCAMGUI.py:2933 +#: flatcamGUI/FlatCAMGUI.py:2762 flatcamGUI/FlatCAMGUI.py:2957 msgid "[WARNING_NOTCL] Cancelled. Nothing selected to move." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:2947 +#: flatcamGUI/FlatCAMGUI.py:2971 msgid "New Tool ..." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:2948 +#: flatcamGUI/FlatCAMGUI.py:2972 msgid "Enter a Tool Diameter:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:2990 +#: flatcamGUI/FlatCAMGUI.py:3014 msgid "Measurement Tool exit..." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3271 +#: flatcamGUI/FlatCAMGUI.py:3296 msgid "Grid X value:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3273 +#: flatcamGUI/FlatCAMGUI.py:3298 msgid "This is the Grid snap value on X axis." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3278 +#: flatcamGUI/FlatCAMGUI.py:3303 msgid "Grid Y value:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3280 +#: flatcamGUI/FlatCAMGUI.py:3305 msgid "This is the Grid snap value on Y axis." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3285 +#: flatcamGUI/FlatCAMGUI.py:3310 msgid "Snap Max:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3290 +#: flatcamGUI/FlatCAMGUI.py:3315 msgid "Workspace:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3292 +#: flatcamGUI/FlatCAMGUI.py:3317 msgid "" "Draw a delimiting rectangle on canvas.\n" "The purpose is to illustrate the limits for our work." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3295 +#: flatcamGUI/FlatCAMGUI.py:3320 msgid "Wk. format:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3297 +#: flatcamGUI/FlatCAMGUI.py:3322 msgid "" "Select the type of rectangle to be used on canvas,\n" "as valid workspace." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3310 +#: flatcamGUI/FlatCAMGUI.py:3335 msgid "Plot Fill:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3312 +#: flatcamGUI/FlatCAMGUI.py:3337 msgid "" "Set the fill color for plotted objects.\n" "First 6 digits are the color and the last 2\n" "digits are for alpha (transparency) level." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3326 flatcamGUI/FlatCAMGUI.py:3376 -#: flatcamGUI/FlatCAMGUI.py:3426 +#: flatcamGUI/FlatCAMGUI.py:3351 flatcamGUI/FlatCAMGUI.py:3401 +#: flatcamGUI/FlatCAMGUI.py:3451 msgid "Alpha Level:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3328 +#: flatcamGUI/FlatCAMGUI.py:3353 msgid "Set the fill transparency for plotted objects." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3345 +#: flatcamGUI/FlatCAMGUI.py:3370 msgid "Plot Line:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3347 +#: flatcamGUI/FlatCAMGUI.py:3372 msgid "Set the line color for plotted objects." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3359 +#: flatcamGUI/FlatCAMGUI.py:3384 msgid "Sel. Fill:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3361 +#: flatcamGUI/FlatCAMGUI.py:3386 msgid "" "Set the fill color for the selection box\n" "in case that the selection is done from left to right.\n" @@ -4941,23 +4913,23 @@ msgid "" "digits are for alpha (transparency) level." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3378 +#: flatcamGUI/FlatCAMGUI.py:3403 msgid "Set the fill transparency for the 'left to right' selection box." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3395 +#: flatcamGUI/FlatCAMGUI.py:3420 msgid "Sel. Line:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3397 +#: flatcamGUI/FlatCAMGUI.py:3422 msgid "Set the line color for the 'left to right' selection box." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3409 +#: flatcamGUI/FlatCAMGUI.py:3434 msgid "Sel2. Fill:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3411 +#: flatcamGUI/FlatCAMGUI.py:3436 msgid "" "Set the fill color for the selection box\n" "in case that the selection is done from right to left.\n" @@ -4965,121 +4937,151 @@ msgid "" "digits are for alpha (transparency) level." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3428 +#: flatcamGUI/FlatCAMGUI.py:3453 msgid "Set the fill transparency for selection 'right to left' box." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3445 +#: flatcamGUI/FlatCAMGUI.py:3470 msgid "Sel2. Line:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3447 +#: flatcamGUI/FlatCAMGUI.py:3472 msgid "Set the line color for the 'right to left' selection box." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3459 +#: flatcamGUI/FlatCAMGUI.py:3484 msgid "Editor Draw:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3461 +#: flatcamGUI/FlatCAMGUI.py:3486 msgid "Set the color for the shape." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3473 +#: flatcamGUI/FlatCAMGUI.py:3498 msgid "Editor Draw Sel.:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3475 +#: flatcamGUI/FlatCAMGUI.py:3500 msgid "Set the color of the shape when selected." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3522 +#: flatcamGUI/FlatCAMGUI.py:3512 +msgid "Project Items:" +msgstr "" + +#: flatcamGUI/FlatCAMGUI.py:3514 +msgid "Set the color of the items in Project Tab Tree." +msgstr "" + +#: flatcamGUI/FlatCAMGUI.py:3525 +msgid "Proj. Dis. Items:" +msgstr "" + +#: flatcamGUI/FlatCAMGUI.py:3527 +msgid "" +"Set the color of the items in Project Tab Tree,\n" +"for the case when the items are disabled." +msgstr "" + +#: flatcamGUI/FlatCAMGUI.py:3578 msgid "GUI Settings" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3529 +#: flatcamGUI/FlatCAMGUI.py:3585 msgid "Layout:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3531 +#: flatcamGUI/FlatCAMGUI.py:3587 msgid "" "Select an layout for FlatCAM.\n" "It is applied immediately." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3547 +#: flatcamGUI/FlatCAMGUI.py:3603 msgid "Style:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3549 +#: flatcamGUI/FlatCAMGUI.py:3605 msgid "" "Select an style for FlatCAM.\n" "It will be applied at the next app start." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3560 +#: flatcamGUI/FlatCAMGUI.py:3616 msgid "HDPI Support:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3562 +#: flatcamGUI/FlatCAMGUI.py:3618 msgid "" "Enable High DPI support for FlatCAM.\n" "It will be applied at the next app start." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3575 +#: flatcamGUI/FlatCAMGUI.py:3631 msgid "Clear GUI Settings:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3577 +#: flatcamGUI/FlatCAMGUI.py:3633 msgid "" "Clear the GUI settings for FlatCAM,\n" "such as: layout, gui state, style, hdpi support etc." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3580 +#: flatcamGUI/FlatCAMGUI.py:3636 msgid "Clear" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3584 +#: flatcamGUI/FlatCAMGUI.py:3640 msgid "Hover Shape:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3586 +#: flatcamGUI/FlatCAMGUI.py:3642 msgid "" "Enable display of a hover shape for FlatCAM objects.\n" "It is displayed whenever the mouse cursor is hovering\n" "over any kind of not-selected object." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3626 +#: flatcamGUI/FlatCAMGUI.py:3649 +msgid "Sel. Shape:" +msgstr "" + +#: flatcamGUI/FlatCAMGUI.py:3651 +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 "" + +#: flatcamGUI/FlatCAMGUI.py:3693 msgid "Are you sure you want to delete the GUI Settings? \n" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3629 +#: flatcamGUI/FlatCAMGUI.py:3696 msgid "Clear GUI Settings" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3650 +#: flatcamGUI/FlatCAMGUI.py:3717 msgid "App Preferences" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3656 +#: flatcamGUI/FlatCAMGUI.py:3723 msgid "Units:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3657 +#: flatcamGUI/FlatCAMGUI.py:3724 msgid "" "The default value for FlatCAM units.\n" "Whatever is selected here is set every time\n" "FLatCAM is started." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3664 +#: flatcamGUI/FlatCAMGUI.py:3731 msgid "APP. LEVEL:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3665 +#: flatcamGUI/FlatCAMGUI.py:3732 msgid "" "Choose the default level of usage for FlatCAM.\n" "BASIC level -> reduced functionality, best for beginner's.\n" @@ -5089,127 +5091,114 @@ msgid "" "the Selected Tab for all kinds of FlatCAM objects." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3670 flatcamGUI/FlatCAMGUI.py:4295 -msgid "Basic" -msgstr "" - -#: flatcamGUI/FlatCAMGUI.py:3671 -msgid "Advanced" -msgstr "" - -#: flatcamGUI/FlatCAMGUI.py:3674 +#: flatcamGUI/FlatCAMGUI.py:3741 msgid "Languages:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3675 +#: flatcamGUI/FlatCAMGUI.py:3742 msgid "Set the language used throughout FlatCAM." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3678 +#: flatcamGUI/FlatCAMGUI.py:3745 msgid "Apply Language" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3681 +#: flatcamGUI/FlatCAMGUI.py:3746 +msgid "" +"Set the language used throughout FlatCAM.\n" +"The app will restart after click.Windows: When FlatCAM is installed in " +"Program Files\n" +"directory, it is possible that the app will not\n" +"restart after the button is clicked due of Windows\n" +"security features. In this case the language will be\n" +"applied at the next app start." +msgstr "" + +#: flatcamGUI/FlatCAMGUI.py:3755 msgid "Shell at StartUp:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3683 flatcamGUI/FlatCAMGUI.py:3688 +#: flatcamGUI/FlatCAMGUI.py:3757 flatcamGUI/FlatCAMGUI.py:3762 msgid "" "Check this box if you want the shell to\n" "start automatically at startup." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3693 +#: flatcamGUI/FlatCAMGUI.py:3767 msgid "Version Check:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3695 flatcamGUI/FlatCAMGUI.py:3700 +#: flatcamGUI/FlatCAMGUI.py:3769 flatcamGUI/FlatCAMGUI.py:3774 msgid "" "Check this box if you want to check\n" "for a new version automatically at startup." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3705 +#: flatcamGUI/FlatCAMGUI.py:3779 msgid "Send Stats:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3707 flatcamGUI/FlatCAMGUI.py:3712 +#: flatcamGUI/FlatCAMGUI.py:3781 flatcamGUI/FlatCAMGUI.py:3786 msgid "" "Check this box if you agree to send anonymous\n" "stats automatically at startup, to help improve FlatCAM." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3719 +#: flatcamGUI/FlatCAMGUI.py:3793 msgid "Pan Button:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3720 +#: flatcamGUI/FlatCAMGUI.py:3794 msgid "" "Select the mouse button to use for panning:\n" "- MMB --> Middle Mouse Button\n" "- RMB --> Right Mouse Button" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3723 -msgid "MMB" -msgstr "" - -#: flatcamGUI/FlatCAMGUI.py:3724 -msgid "RMB" -msgstr "" - -#: flatcamGUI/FlatCAMGUI.py:3727 +#: flatcamGUI/FlatCAMGUI.py:3801 msgid "Multiple Sel:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3728 +#: flatcamGUI/FlatCAMGUI.py:3802 msgid "Select the key used for multiple selection." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3729 -msgid "CTRL" -msgstr "" - -#: flatcamGUI/FlatCAMGUI.py:3730 -msgid "SHIFT" -msgstr "" - -#: flatcamGUI/FlatCAMGUI.py:3733 +#: flatcamGUI/FlatCAMGUI.py:3807 msgid "Project at StartUp:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3735 flatcamGUI/FlatCAMGUI.py:3740 +#: flatcamGUI/FlatCAMGUI.py:3809 flatcamGUI/FlatCAMGUI.py:3814 msgid "" "Check this box if you want the project/selected/tool tab area to\n" "to be shown automatically at startup." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3745 +#: flatcamGUI/FlatCAMGUI.py:3819 msgid "Project AutoHide:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3747 flatcamGUI/FlatCAMGUI.py:3753 +#: flatcamGUI/FlatCAMGUI.py:3821 flatcamGUI/FlatCAMGUI.py:3827 msgid "" "Check this box if you want the project/selected/tool tab area to\n" "hide automatically when there are no objects loaded and\n" "to show whenever a new object is created." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3759 +#: flatcamGUI/FlatCAMGUI.py:3833 msgid "Enable ToolTips:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3761 flatcamGUI/FlatCAMGUI.py:3766 +#: flatcamGUI/FlatCAMGUI.py:3835 flatcamGUI/FlatCAMGUI.py:3840 msgid "" "Check this box if you want to have toolTips displayed\n" "when hovering with mouse over items throughout the App." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3769 +#: flatcamGUI/FlatCAMGUI.py:3843 msgid "Workers number:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3771 flatcamGUI/FlatCAMGUI.py:3780 +#: flatcamGUI/FlatCAMGUI.py:3845 flatcamGUI/FlatCAMGUI.py:3854 msgid "" "The number of Qthreads made available to the App.\n" "A bigger number may finish the jobs more quickly but\n" @@ -5219,108 +5208,108 @@ msgid "" "After change, it will be applied at next App start." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3821 +#: flatcamGUI/FlatCAMGUI.py:3895 msgid "Save Compressed Project" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3823 +#: flatcamGUI/FlatCAMGUI.py:3897 msgid "" "Whether to save a compressed or uncompressed project.\n" "When checked it will save a compressed FlatCAM project." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3834 +#: flatcamGUI/FlatCAMGUI.py:3908 msgid "Compression Level:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3836 +#: flatcamGUI/FlatCAMGUI.py:3910 msgid "" "The level of compression used when saving\n" "a FlatCAM project. Higher value means better compression\n" "but require more RAM usage and more processing time." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3862 flatcamGUI/FlatCAMGUI.py:4103 -#: flatcamGUI/FlatCAMGUI.py:4758 flatcamGUI/FlatCAMGUI.py:5082 +#: flatcamGUI/FlatCAMGUI.py:3936 flatcamGUI/FlatCAMGUI.py:4177 +#: flatcamGUI/FlatCAMGUI.py:4832 flatcamGUI/FlatCAMGUI.py:5156 #: flatcamGUI/ObjectUI.py:150 flatcamGUI/ObjectUI.py:505 #: flatcamGUI/ObjectUI.py:830 flatcamGUI/ObjectUI.py:1344 msgid "Plot Options:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3869 flatcamGUI/FlatCAMGUI.py:4115 -#: flatcamGUI/ObjectUI.py:506 +#: flatcamGUI/FlatCAMGUI.py:3943 flatcamGUI/FlatCAMGUI.py:4189 +#: flatcamGUI/ObjectUI.py:156 flatcamGUI/ObjectUI.py:506 msgid "Solid" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3871 flatcamGUI/ObjectUI.py:158 +#: flatcamGUI/FlatCAMGUI.py:3945 flatcamGUI/ObjectUI.py:158 msgid "Solid color polygons." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3876 +#: flatcamGUI/FlatCAMGUI.py:3950 flatcamGUI/ObjectUI.py:164 msgid "M-Color" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3878 flatcamGUI/ObjectUI.py:166 +#: flatcamGUI/FlatCAMGUI.py:3952 flatcamGUI/ObjectUI.py:166 msgid "Draw polygons in different colors." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3883 flatcamGUI/FlatCAMGUI.py:4109 -#: flatcamGUI/FlatCAMGUI.py:4762 flatcamGUI/ObjectUI.py:172 +#: flatcamGUI/FlatCAMGUI.py:3957 flatcamGUI/FlatCAMGUI.py:4183 +#: flatcamGUI/FlatCAMGUI.py:4836 flatcamGUI/ObjectUI.py:172 msgid "Plot" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3885 flatcamGUI/FlatCAMGUI.py:4764 +#: flatcamGUI/FlatCAMGUI.py:3959 flatcamGUI/FlatCAMGUI.py:4838 #: flatcamGUI/ObjectUI.py:174 flatcamGUI/ObjectUI.py:546 #: flatcamGUI/ObjectUI.py:876 flatcamGUI/ObjectUI.py:1431 msgid "Plot (show) this object." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3890 flatcamGUI/FlatCAMGUI.py:4771 -#: flatcamGUI/FlatCAMGUI.py:5118 +#: flatcamGUI/FlatCAMGUI.py:3964 flatcamGUI/FlatCAMGUI.py:4845 +#: flatcamGUI/FlatCAMGUI.py:5192 msgid "Circle Steps:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3892 +#: flatcamGUI/FlatCAMGUI.py:3966 msgid "" "The number of circle steps for Gerber \n" "circular aperture linear approximation." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3907 +#: flatcamGUI/FlatCAMGUI.py:3981 msgid "Gerber Options" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3911 flatcamGUI/ObjectUI.py:251 +#: flatcamGUI/FlatCAMGUI.py:3985 flatcamGUI/ObjectUI.py:251 msgid "Isolation Routing:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3913 flatcamGUI/ObjectUI.py:253 +#: flatcamGUI/FlatCAMGUI.py:3987 flatcamGUI/ObjectUI.py:253 msgid "" "Create a Geometry object with\n" "toolpaths to cut outside polygons." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3924 flatcamGUI/FlatCAMGUI.py:4481 -#: flatcamGUI/FlatCAMGUI.py:5406 flatcamGUI/ObjectUI.py:785 +#: flatcamGUI/FlatCAMGUI.py:3998 flatcamGUI/FlatCAMGUI.py:4555 +#: flatcamGUI/FlatCAMGUI.py:5480 flatcamGUI/ObjectUI.py:785 #: flatcamGUI/ObjectUI.py:801 msgid "Diameter of the cutting tool." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3931 +#: flatcamGUI/FlatCAMGUI.py:4005 msgid "Width (# passes):" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3933 flatcamGUI/ObjectUI.py:275 +#: flatcamGUI/FlatCAMGUI.py:4007 flatcamGUI/ObjectUI.py:275 msgid "" "Width of the isolation gap in\n" "number (integer) of tool widths." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3941 flatcamGUI/ObjectUI.py:283 +#: flatcamGUI/FlatCAMGUI.py:4015 flatcamGUI/ObjectUI.py:283 msgid "Pass overlap:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3943 flatcamGUI/ObjectUI.py:285 +#: flatcamGUI/FlatCAMGUI.py:4017 flatcamGUI/ObjectUI.py:285 #, python-format msgid "" "How much (fraction) of the tool width to overlap each tool pass.\n" @@ -5329,50 +5318,42 @@ msgid "" "above." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3951 flatcamGUI/ObjectUI.py:295 +#: flatcamGUI/FlatCAMGUI.py:4025 flatcamGUI/ObjectUI.py:295 msgid "Milling Type:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3953 flatcamGUI/ObjectUI.py:297 +#: flatcamGUI/FlatCAMGUI.py:4027 flatcamGUI/ObjectUI.py:297 msgid "" "Milling type:\n" "- climb / best for precision milling and to reduce tool usage\n" "- conventional / useful when there is no backlash compensation" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3958 flatcamGUI/ObjectUI.py:302 -msgid "Climb" -msgstr "" - -#: flatcamGUI/FlatCAMGUI.py:3959 flatcamGUI/ObjectUI.py:303 -msgid "Conv." -msgstr "" - -#: flatcamGUI/FlatCAMGUI.py:3963 +#: flatcamGUI/FlatCAMGUI.py:4037 msgid "Combine Passes" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3965 flatcamGUI/ObjectUI.py:309 +#: flatcamGUI/FlatCAMGUI.py:4039 flatcamGUI/ObjectUI.py:309 msgid "Combine all passes into one object" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3970 +#: flatcamGUI/FlatCAMGUI.py:4044 msgid "Clear non-copper:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3972 flatcamGUI/FlatCAMGUI.py:5294 +#: flatcamGUI/FlatCAMGUI.py:4046 flatcamGUI/FlatCAMGUI.py:5368 #: flatcamGUI/ObjectUI.py:386 msgid "" "Create a Geometry object with\n" "toolpaths to cut all non-copper regions." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3981 flatcamGUI/FlatCAMGUI.py:4007 +#: flatcamGUI/FlatCAMGUI.py:4055 flatcamGUI/FlatCAMGUI.py:4081 #: flatcamGUI/ObjectUI.py:430 flatcamGUI/ObjectUI.py:464 msgid "Boundary Margin:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3983 flatcamGUI/ObjectUI.py:432 +#: flatcamGUI/FlatCAMGUI.py:4057 flatcamGUI/ObjectUI.py:432 msgid "" "Specify the edge of the PCB\n" "by drawing a box around all\n" @@ -5380,27 +5361,27 @@ msgid "" "distance." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3993 flatcamGUI/FlatCAMGUI.py:4016 +#: flatcamGUI/FlatCAMGUI.py:4067 flatcamGUI/FlatCAMGUI.py:4090 msgid "Rounded corners" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3995 +#: flatcamGUI/FlatCAMGUI.py:4069 msgid "" "Creates a Geometry objects with polygons\n" "covering the copper-free areas of the PCB." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4001 flatcamGUI/ObjectUI.py:454 +#: flatcamGUI/FlatCAMGUI.py:4075 flatcamGUI/ObjectUI.py:454 msgid "Bounding Box:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4009 flatcamGUI/ObjectUI.py:466 +#: flatcamGUI/FlatCAMGUI.py:4083 flatcamGUI/ObjectUI.py:466 msgid "" "Distance of the edges of the box\n" "to the nearest polygon." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4018 flatcamGUI/ObjectUI.py:476 +#: flatcamGUI/FlatCAMGUI.py:4092 flatcamGUI/ObjectUI.py:476 msgid "" "If the bounding box is \n" "to have rounded corners\n" @@ -5408,74 +5389,74 @@ msgid "" "the margin." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4032 +#: flatcamGUI/FlatCAMGUI.py:4106 msgid "Gerber Adv. Options" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4036 +#: flatcamGUI/FlatCAMGUI.py:4110 msgid "Advanced Param.:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4038 +#: flatcamGUI/FlatCAMGUI.py:4112 msgid "" "A list of Gerber advanced parameters.\n" "Those parameters are available only for\n" "Advanced App. Level." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4048 flatcamGUI/ObjectUI.py:314 +#: flatcamGUI/FlatCAMGUI.py:4122 flatcamGUI/ObjectUI.py:314 msgid "\"Follow\"" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4050 flatcamGUI/ObjectUI.py:316 +#: flatcamGUI/FlatCAMGUI.py:4124 flatcamGUI/ObjectUI.py:316 msgid "" "Generate a 'Follow' geometry.\n" "This means that it will cut through\n" "the middle of the trace." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4058 +#: flatcamGUI/FlatCAMGUI.py:4132 msgid "Table Show/Hide" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4060 +#: flatcamGUI/FlatCAMGUI.py:4134 msgid "" "Toggle the display of the Gerber Apertures Table.\n" "Also, on hide, it will delete all mark shapes\n" "that are drawn on canvas." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4068 +#: flatcamGUI/FlatCAMGUI.py:4142 msgid "Ap. Scale Factor:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4070 +#: flatcamGUI/FlatCAMGUI.py:4144 msgid "" "Change the size of the selected apertures.\n" "Factor by which to multiply\n" "geometric features of this object." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4080 +#: flatcamGUI/FlatCAMGUI.py:4154 msgid "Ap. Buffer Factor:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4082 +#: flatcamGUI/FlatCAMGUI.py:4156 msgid "" "Change the size of the selected apertures.\n" "Factor by which to expand/shrink\n" "geometric features of this object." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4100 +#: flatcamGUI/FlatCAMGUI.py:4174 msgid "Excellon General" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4122 +#: flatcamGUI/FlatCAMGUI.py:4196 msgid "Excellon Format:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4124 +#: flatcamGUI/FlatCAMGUI.py:4198 msgid "" "The NC drill files, usually named Excellon files\n" "are files that can be found in different formats.\n" @@ -5498,41 +5479,41 @@ msgid "" "KiCAD 3:5 INCH TZ" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4149 +#: flatcamGUI/FlatCAMGUI.py:4223 msgid "INCH:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4152 +#: flatcamGUI/FlatCAMGUI.py:4226 msgid "Default values for INCH are 2:4" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4160 flatcamGUI/FlatCAMGUI.py:4193 -#: flatcamGUI/FlatCAMGUI.py:4670 +#: flatcamGUI/FlatCAMGUI.py:4234 flatcamGUI/FlatCAMGUI.py:4267 +#: flatcamGUI/FlatCAMGUI.py:4744 msgid "" "This numbers signify the number of digits in\n" "the whole part of Excellon coordinates." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4174 flatcamGUI/FlatCAMGUI.py:4207 -#: flatcamGUI/FlatCAMGUI.py:4684 +#: flatcamGUI/FlatCAMGUI.py:4248 flatcamGUI/FlatCAMGUI.py:4281 +#: flatcamGUI/FlatCAMGUI.py:4758 msgid "" "This numbers signify the number of digits in\n" "the decimal part of Excellon coordinates." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4182 +#: flatcamGUI/FlatCAMGUI.py:4256 msgid "METRIC:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4185 +#: flatcamGUI/FlatCAMGUI.py:4259 msgid "Default values for METRIC are 3:3" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4216 +#: flatcamGUI/FlatCAMGUI.py:4290 msgid "Default Zeros:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4219 flatcamGUI/FlatCAMGUI.py:4719 +#: flatcamGUI/FlatCAMGUI.py:4293 flatcamGUI/FlatCAMGUI.py:4793 msgid "" "This sets the type of Excellon zeros.\n" "If LZ then Leading Zeros are kept and\n" @@ -5541,15 +5522,7 @@ msgid "" "and Leading Zeros are removed." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4227 flatcamGUI/FlatCAMGUI.py:4726 -msgid "LZ" -msgstr "" - -#: flatcamGUI/FlatCAMGUI.py:4228 flatcamGUI/FlatCAMGUI.py:4727 -msgid "TZ" -msgstr "" - -#: flatcamGUI/FlatCAMGUI.py:4230 +#: flatcamGUI/FlatCAMGUI.py:4304 msgid "" "This sets the default type of Excellon zeros.\n" "If it is not detected in the parsed file the value here\n" @@ -5559,11 +5532,11 @@ msgid "" "and Leading Zeros are removed." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4244 +#: flatcamGUI/FlatCAMGUI.py:4318 msgid "Default Units:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4247 +#: flatcamGUI/FlatCAMGUI.py:4321 msgid "" "This sets the default units of Excellon files.\n" "If it is not detected in the parsed file the value here\n" @@ -5571,30 +5544,22 @@ msgid "" "therefore this parameter will be used." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4255 flatcamGUI/FlatCAMGUI.py:4646 -msgid "INCH" -msgstr "" - -#: flatcamGUI/FlatCAMGUI.py:4256 flatcamGUI/FlatCAMGUI.py:4647 -msgid "MM" -msgstr "" - -#: flatcamGUI/FlatCAMGUI.py:4258 +#: flatcamGUI/FlatCAMGUI.py:4332 msgid "" "This sets the units of Excellon files.\n" "Some Excellon files don't have an header\n" "therefore this parameter will be used." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4274 +#: flatcamGUI/FlatCAMGUI.py:4348 msgid "Excellon Optimization:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4281 +#: flatcamGUI/FlatCAMGUI.py:4355 msgid "Algorithm: " msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4284 flatcamGUI/FlatCAMGUI.py:4297 +#: flatcamGUI/FlatCAMGUI.py:4358 flatcamGUI/FlatCAMGUI.py:4371 msgid "" "This sets the optimization type for the Excellon drill path.\n" "If MH is checked then Google OR-Tools algorithm with MetaHeuristic\n" @@ -5606,15 +5571,11 @@ msgid "" "Travelling Salesman algorithm for path optimization." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4294 -msgid "MH" -msgstr "" - -#: flatcamGUI/FlatCAMGUI.py:4309 +#: flatcamGUI/FlatCAMGUI.py:4383 msgid "Optimization Time: " msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4312 +#: flatcamGUI/FlatCAMGUI.py:4386 msgid "" "When OR-Tools Metaheuristic (MH) is enabled there is a\n" "maximum threshold for how much time is spent doing the\n" @@ -5622,120 +5583,120 @@ msgid "" "In seconds." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4353 +#: flatcamGUI/FlatCAMGUI.py:4427 msgid "Excellon Options" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4356 flatcamGUI/ObjectUI.py:584 +#: flatcamGUI/FlatCAMGUI.py:4430 flatcamGUI/ObjectUI.py:584 msgid "Create CNC Job" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4358 +#: flatcamGUI/FlatCAMGUI.py:4432 msgid "" "Parameters used to create a CNC Job object\n" "for this drill object." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4366 flatcamGUI/FlatCAMGUI.py:4822 -#: flatcamGUI/FlatCAMGUI.py:5830 flatcamGUI/ObjectUI.py:595 +#: flatcamGUI/FlatCAMGUI.py:4440 flatcamGUI/FlatCAMGUI.py:4896 +#: flatcamGUI/FlatCAMGUI.py:5904 flatcamGUI/ObjectUI.py:595 #: flatcamGUI/ObjectUI.py:1059 flatcamTools/ToolCalculators.py:108 msgid "Cut Z:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4368 flatcamGUI/ObjectUI.py:597 +#: flatcamGUI/FlatCAMGUI.py:4442 flatcamGUI/ObjectUI.py:597 msgid "" "Drill depth (negative)\n" "below the copper surface." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4375 flatcamGUI/FlatCAMGUI.py:4855 +#: flatcamGUI/FlatCAMGUI.py:4449 flatcamGUI/FlatCAMGUI.py:4929 #: flatcamGUI/ObjectUI.py:605 flatcamGUI/ObjectUI.py:1095 msgid "Travel Z:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4377 flatcamGUI/ObjectUI.py:607 +#: flatcamGUI/FlatCAMGUI.py:4451 flatcamGUI/ObjectUI.py:607 msgid "" "Tool height when travelling\n" "across the XY plane." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4385 flatcamGUI/FlatCAMGUI.py:4865 +#: flatcamGUI/FlatCAMGUI.py:4459 flatcamGUI/FlatCAMGUI.py:4939 msgid "Tool change:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4387 flatcamGUI/FlatCAMGUI.py:4867 +#: flatcamGUI/FlatCAMGUI.py:4461 flatcamGUI/FlatCAMGUI.py:4941 #: flatcamGUI/ObjectUI.py:617 msgid "" "Include tool-change sequence\n" "in G-Code (Pause for tool change)." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4394 flatcamGUI/FlatCAMGUI.py:4875 +#: flatcamGUI/FlatCAMGUI.py:4468 flatcamGUI/FlatCAMGUI.py:4949 msgid "Toolchange Z:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4396 flatcamGUI/FlatCAMGUI.py:4877 +#: flatcamGUI/FlatCAMGUI.py:4470 flatcamGUI/FlatCAMGUI.py:4951 msgid "Toolchange Z position." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4402 +#: flatcamGUI/FlatCAMGUI.py:4476 msgid "Feedrate:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4404 +#: flatcamGUI/FlatCAMGUI.py:4478 msgid "" "Tool speed while drilling\n" "(in units per minute)." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4412 +#: flatcamGUI/FlatCAMGUI.py:4486 msgid "Spindle Speed:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4414 flatcamGUI/FlatCAMGUI.py:4907 +#: flatcamGUI/FlatCAMGUI.py:4488 flatcamGUI/FlatCAMGUI.py:4981 #: flatcamGUI/ObjectUI.py:681 msgid "" "Speed of the spindle\n" "in RPM (optional)" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4422 flatcamGUI/FlatCAMGUI.py:4915 +#: flatcamGUI/FlatCAMGUI.py:4496 flatcamGUI/FlatCAMGUI.py:4989 #: flatcamGUI/ObjectUI.py:689 flatcamGUI/ObjectUI.py:1218 msgid "Dwell:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4424 flatcamGUI/FlatCAMGUI.py:4917 +#: flatcamGUI/FlatCAMGUI.py:4498 flatcamGUI/FlatCAMGUI.py:4991 #: flatcamGUI/ObjectUI.py:691 flatcamGUI/ObjectUI.py:1221 msgid "" "Pause to allow the spindle to reach its\n" "speed before cutting." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4427 flatcamGUI/FlatCAMGUI.py:4920 +#: flatcamGUI/FlatCAMGUI.py:4501 flatcamGUI/FlatCAMGUI.py:4994 msgid "Duration:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4429 flatcamGUI/FlatCAMGUI.py:4922 +#: flatcamGUI/FlatCAMGUI.py:4503 flatcamGUI/FlatCAMGUI.py:4996 #: flatcamGUI/ObjectUI.py:696 flatcamGUI/ObjectUI.py:1228 msgid "Number of milliseconds for spindle to dwell." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4441 flatcamGUI/FlatCAMGUI.py:4932 +#: flatcamGUI/FlatCAMGUI.py:4515 flatcamGUI/FlatCAMGUI.py:5006 #: flatcamGUI/ObjectUI.py:704 msgid "Postprocessor:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4443 +#: flatcamGUI/FlatCAMGUI.py:4517 msgid "" "The postprocessor file that dictates\n" "gcode output." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4453 +#: flatcamGUI/FlatCAMGUI.py:4527 msgid "Gcode: " msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4455 +#: flatcamGUI/FlatCAMGUI.py:4529 msgid "" "Choose what to use for GCode generation:\n" "'Drills', 'Slots' or 'Both'.\n" @@ -5743,107 +5704,93 @@ msgid "" "converted to drills." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4460 flatcamGUI/ObjectUI.py:556 -#: flatcamGUI/ObjectUI.py:752 -msgid "Drills" -msgstr "" - -#: flatcamGUI/FlatCAMGUI.py:4461 flatcamGUI/ObjectUI.py:556 -#: flatcamGUI/ObjectUI.py:753 -msgid "Slots" -msgstr "" - -#: flatcamGUI/FlatCAMGUI.py:4462 flatcamGUI/ObjectUI.py:754 -msgid "Both" -msgstr "" - -#: flatcamGUI/FlatCAMGUI.py:4471 flatcamGUI/ObjectUI.py:769 +#: flatcamGUI/FlatCAMGUI.py:4545 flatcamGUI/ObjectUI.py:769 msgid "Mill Holes" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4473 flatcamGUI/ObjectUI.py:771 +#: flatcamGUI/FlatCAMGUI.py:4547 flatcamGUI/ObjectUI.py:771 msgid "Create Geometry for milling holes." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4479 +#: flatcamGUI/FlatCAMGUI.py:4553 msgid "Drill Tool dia:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4486 +#: flatcamGUI/FlatCAMGUI.py:4560 msgid "Slot Tool dia:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4488 +#: flatcamGUI/FlatCAMGUI.py:4562 msgid "" "Diameter of the cutting tool\n" "when milling slots." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4500 +#: flatcamGUI/FlatCAMGUI.py:4574 msgid "Defaults" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4513 +#: flatcamGUI/FlatCAMGUI.py:4587 msgid "Excellon Adv. Options" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4519 flatcamGUI/FlatCAMGUI.py:4955 +#: flatcamGUI/FlatCAMGUI.py:4593 flatcamGUI/FlatCAMGUI.py:5029 msgid "Advanced Options:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4521 +#: flatcamGUI/FlatCAMGUI.py:4595 msgid "" "Parameters used to create a CNC Job object\n" "for this drill object that are shown when App Level is Advanced." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4529 +#: flatcamGUI/FlatCAMGUI.py:4603 msgid "Offset Z:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4531 flatcamGUI/ObjectUI.py:574 +#: flatcamGUI/FlatCAMGUI.py:4605 flatcamGUI/ObjectUI.py:574 msgid "" "Some drill bits (the larger ones) need to drill deeper\n" "to create the desired exit hole diameter due of the tip shape.\n" "The value here can compensate the Cut Z parameter." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4538 flatcamGUI/FlatCAMGUI.py:4966 +#: flatcamGUI/FlatCAMGUI.py:4612 flatcamGUI/FlatCAMGUI.py:5040 msgid "Toolchange X,Y:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4540 flatcamGUI/FlatCAMGUI.py:4968 +#: flatcamGUI/FlatCAMGUI.py:4614 flatcamGUI/FlatCAMGUI.py:5042 msgid "Toolchange X,Y position." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4546 flatcamGUI/FlatCAMGUI.py:4975 +#: flatcamGUI/FlatCAMGUI.py:4620 flatcamGUI/FlatCAMGUI.py:5049 #: flatcamGUI/ObjectUI.py:634 msgid "Start move Z:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4548 +#: flatcamGUI/FlatCAMGUI.py:4622 msgid "" "Height of the tool just after start.\n" "Delete the value if you don't need this feature." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4555 flatcamGUI/FlatCAMGUI.py:4985 +#: flatcamGUI/FlatCAMGUI.py:4629 flatcamGUI/FlatCAMGUI.py:5059 #: flatcamGUI/ObjectUI.py:644 flatcamGUI/ObjectUI.py:1141 msgid "End move Z:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4557 flatcamGUI/FlatCAMGUI.py:4987 +#: flatcamGUI/FlatCAMGUI.py:4631 flatcamGUI/FlatCAMGUI.py:5061 msgid "" "Height of the tool after\n" "the last move at the end of the job." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4564 flatcamGUI/FlatCAMGUI.py:4995 +#: flatcamGUI/FlatCAMGUI.py:4638 flatcamGUI/FlatCAMGUI.py:5069 #: flatcamGUI/ObjectUI.py:665 msgid "Feedrate Rapids:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4566 flatcamGUI/ObjectUI.py:667 +#: flatcamGUI/FlatCAMGUI.py:4640 flatcamGUI/ObjectUI.py:667 msgid "" "Tool speed while drilling\n" "(in units per minute).\n" @@ -5852,33 +5799,33 @@ msgid "" "ignore for any other cases." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4577 flatcamGUI/FlatCAMGUI.py:5019 +#: flatcamGUI/FlatCAMGUI.py:4651 flatcamGUI/FlatCAMGUI.py:5093 #: flatcamGUI/ObjectUI.py:715 flatcamGUI/ObjectUI.py:1250 msgid "Probe Z depth:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4579 flatcamGUI/FlatCAMGUI.py:5021 +#: flatcamGUI/FlatCAMGUI.py:4653 flatcamGUI/FlatCAMGUI.py:5095 #: flatcamGUI/ObjectUI.py:717 flatcamGUI/ObjectUI.py:1253 msgid "" "The maximum depth that the probe is allowed\n" "to probe. Negative value, in current units." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4587 flatcamGUI/FlatCAMGUI.py:5029 +#: flatcamGUI/FlatCAMGUI.py:4661 flatcamGUI/FlatCAMGUI.py:5103 #: flatcamGUI/ObjectUI.py:727 flatcamGUI/ObjectUI.py:1264 msgid "Feedrate Probe:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4589 flatcamGUI/FlatCAMGUI.py:5031 +#: flatcamGUI/FlatCAMGUI.py:4663 flatcamGUI/FlatCAMGUI.py:5105 #: flatcamGUI/ObjectUI.py:729 flatcamGUI/ObjectUI.py:1267 msgid "The feedrate used while the probe is probing." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4595 flatcamGUI/FlatCAMGUI.py:5038 +#: flatcamGUI/FlatCAMGUI.py:4669 flatcamGUI/FlatCAMGUI.py:5112 msgid "Fast Plunge:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4597 flatcamGUI/FlatCAMGUI.py:5040 +#: flatcamGUI/FlatCAMGUI.py:4671 flatcamGUI/FlatCAMGUI.py:5114 msgid "" "By checking this, the vertical move from\n" "Z_Toolchange to Z_move is done with G0,\n" @@ -5886,11 +5833,11 @@ msgid "" "WARNING: the move is done at Toolchange X,Y coords." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4606 +#: flatcamGUI/FlatCAMGUI.py:4680 msgid "Fast Retract:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4608 +#: flatcamGUI/FlatCAMGUI.py:4682 msgid "" "Exit hole strategy.\n" " - When uncheked, while exiting the drilled hole the drill bit\n" @@ -5900,33 +5847,33 @@ msgid "" "(travel height) is done as fast as possible (G0) in one move." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4627 +#: flatcamGUI/FlatCAMGUI.py:4701 msgid "Excellon Export" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4630 +#: flatcamGUI/FlatCAMGUI.py:4704 msgid "Export Options:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4632 +#: flatcamGUI/FlatCAMGUI.py:4706 msgid "" "The parameters set here are used in the file exported\n" "when using the File -> Export -> Export Excellon menu entry." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4641 +#: flatcamGUI/FlatCAMGUI.py:4715 msgid "Units:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4643 flatcamGUI/FlatCAMGUI.py:4649 +#: flatcamGUI/FlatCAMGUI.py:4717 flatcamGUI/FlatCAMGUI.py:4723 msgid "The units used in the Excellon file." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4655 +#: flatcamGUI/FlatCAMGUI.py:4729 msgid "Int/Decimals:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4657 +#: flatcamGUI/FlatCAMGUI.py:4731 msgid "" "The NC drill files, usually named Excellon files\n" "are files that can be found in different formats.\n" @@ -5934,11 +5881,11 @@ msgid "" "coordinates are not using period." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4693 +#: flatcamGUI/FlatCAMGUI.py:4767 msgid "Format:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4695 flatcamGUI/FlatCAMGUI.py:4705 +#: flatcamGUI/FlatCAMGUI.py:4769 flatcamGUI/FlatCAMGUI.py:4779 msgid "" "Select the kind of coordinates format used.\n" "Coordinates can be saved with decimal point or without.\n" @@ -5948,19 +5895,11 @@ msgid "" "or TZ = trailing zeros are kept." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4702 -msgid "Decimal" -msgstr "" - -#: flatcamGUI/FlatCAMGUI.py:4703 -msgid "No-Decimal" -msgstr "" - -#: flatcamGUI/FlatCAMGUI.py:4716 +#: flatcamGUI/FlatCAMGUI.py:4790 msgid "Zeros:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4729 +#: flatcamGUI/FlatCAMGUI.py:4803 msgid "" "This sets the default type of Excellon zeros.\n" "If LZ then Leading Zeros are kept and\n" @@ -5969,64 +5908,64 @@ msgid "" "and Leading Zeros are removed." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4755 +#: flatcamGUI/FlatCAMGUI.py:4829 msgid "Geometry General" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4773 +#: flatcamGUI/FlatCAMGUI.py:4847 msgid "" "The number of circle steps for Geometry \n" "circle and arc shapes linear approximation." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4781 +#: flatcamGUI/FlatCAMGUI.py:4855 msgid "Tools" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4788 +#: flatcamGUI/FlatCAMGUI.py:4862 msgid "Tool dia: " msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4790 +#: flatcamGUI/FlatCAMGUI.py:4864 msgid "" "The diameter of the cutting\n" "tool.." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4805 +#: flatcamGUI/FlatCAMGUI.py:4879 msgid "Geometry Options" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4810 +#: flatcamGUI/FlatCAMGUI.py:4884 msgid "Create CNC Job:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4812 +#: flatcamGUI/FlatCAMGUI.py:4886 msgid "" "Create a CNC Job object\n" "tracing the contours of this\n" "Geometry object." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4824 flatcamGUI/ObjectUI.py:1062 +#: flatcamGUI/FlatCAMGUI.py:4898 flatcamGUI/ObjectUI.py:1062 msgid "" "Cutting depth (negative)\n" "below the copper surface." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4832 +#: flatcamGUI/FlatCAMGUI.py:4906 msgid "Multidepth" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4834 +#: flatcamGUI/FlatCAMGUI.py:4908 msgid "Multidepth usage: True or False." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4839 +#: flatcamGUI/FlatCAMGUI.py:4913 msgid "Depth/Pass:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4841 +#: flatcamGUI/FlatCAMGUI.py:4915 msgid "" "The depth to cut on each pass,\n" "when multidepth is enabled.\n" @@ -6035,61 +5974,61 @@ msgid "" "which has negative value." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4857 flatcamGUI/ObjectUI.py:1098 +#: flatcamGUI/FlatCAMGUI.py:4931 flatcamGUI/ObjectUI.py:1098 msgid "" "Height of the tool when\n" "moving without cutting." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4884 flatcamGUI/ObjectUI.py:1153 +#: flatcamGUI/FlatCAMGUI.py:4958 flatcamGUI/ObjectUI.py:1153 msgid "Feed Rate X-Y:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4886 flatcamGUI/ObjectUI.py:1156 +#: flatcamGUI/FlatCAMGUI.py:4960 flatcamGUI/ObjectUI.py:1156 msgid "" "Cutting speed in the XY\n" "plane in units per minute" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4894 +#: flatcamGUI/FlatCAMGUI.py:4968 msgid "Feed Rate Z:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4896 +#: flatcamGUI/FlatCAMGUI.py:4970 msgid "" "Cutting speed in the XY\n" "plane in units per minute.\n" "It is called also Plunge." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4905 flatcamGUI/ObjectUI.py:679 +#: flatcamGUI/FlatCAMGUI.py:4979 flatcamGUI/ObjectUI.py:679 #: flatcamGUI/ObjectUI.py:1205 msgid "Spindle speed:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4934 +#: flatcamGUI/FlatCAMGUI.py:5008 msgid "" "The postprocessor file that dictates\n" "Machine Code output." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4950 +#: flatcamGUI/FlatCAMGUI.py:5024 msgid "Geometry Adv. Options" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4957 +#: flatcamGUI/FlatCAMGUI.py:5031 msgid "" "Parameters to create a CNC Job object\n" "tracing the contours of a Geometry object." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4977 +#: flatcamGUI/FlatCAMGUI.py:5051 msgid "" "Height of the tool just after starting the work.\n" "Delete the value if you don't need this feature." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4997 +#: flatcamGUI/FlatCAMGUI.py:5071 msgid "" "Cutting speed in the XY plane\n" "(in units per minute).\n" @@ -6098,11 +6037,11 @@ msgid "" "ignore for any other cases." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5009 +#: flatcamGUI/FlatCAMGUI.py:5083 msgid "Re-cut 1st pt." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5011 flatcamGUI/ObjectUI.py:1196 +#: flatcamGUI/FlatCAMGUI.py:5085 flatcamGUI/ObjectUI.py:1196 msgid "" "In order to remove possible\n" "copper leftovers where first cut\n" @@ -6110,42 +6049,42 @@ msgid "" "extended cut over the first cut section." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5050 +#: flatcamGUI/FlatCAMGUI.py:5124 msgid "Seg. X size:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5052 +#: flatcamGUI/FlatCAMGUI.py:5126 msgid "" "The size of the trace segment on the X axis.\n" "Useful for auto-leveling.\n" "A value of 0 means no segmentation on the X axis." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5061 +#: flatcamGUI/FlatCAMGUI.py:5135 msgid "Seg. Y size:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5063 +#: flatcamGUI/FlatCAMGUI.py:5137 msgid "" "The size of the trace segment on the Y axis.\n" "Useful for auto-leveling.\n" "A value of 0 means no segmentation on the Y axis." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5079 +#: flatcamGUI/FlatCAMGUI.py:5153 msgid "CNC Job General" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5092 flatcamGUI/ObjectUI.py:544 +#: flatcamGUI/FlatCAMGUI.py:5166 flatcamGUI/ObjectUI.py:544 #: flatcamGUI/ObjectUI.py:874 flatcamGUI/ObjectUI.py:1428 msgid "Plot Object" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5099 +#: flatcamGUI/FlatCAMGUI.py:5173 msgid "Plot kind:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5101 flatcamGUI/ObjectUI.py:1350 +#: flatcamGUI/FlatCAMGUI.py:5175 flatcamGUI/ObjectUI.py:1350 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" @@ -6153,87 +6092,83 @@ msgid "" "which means the moves that cut into the material." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5109 flatcamGUI/ObjectUI.py:1359 -msgid "Travel" -msgstr "" - -#: flatcamGUI/FlatCAMGUI.py:5120 +#: flatcamGUI/FlatCAMGUI.py:5194 msgid "" "The number of circle steps for GCode \n" "circle and arc shapes linear approximation." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5130 +#: flatcamGUI/FlatCAMGUI.py:5204 msgid "" "Diameter of the tool to be\n" "rendered in the plot." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5138 +#: flatcamGUI/FlatCAMGUI.py:5212 msgid "Coords dec.:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5140 +#: flatcamGUI/FlatCAMGUI.py:5214 msgid "" "The number of decimals to be used for \n" "the X, Y, Z coordinates in CNC code (GCODE, etc.)" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5148 +#: flatcamGUI/FlatCAMGUI.py:5222 msgid "Feedrate dec.:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5150 +#: flatcamGUI/FlatCAMGUI.py:5224 msgid "" "The number of decimals to be used for \n" "the Feedrate parameter in CNC code (GCODE, etc.)" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5165 +#: flatcamGUI/FlatCAMGUI.py:5239 msgid "CNC Job Options" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5168 flatcamGUI/FlatCAMGUI.py:5209 +#: flatcamGUI/FlatCAMGUI.py:5242 flatcamGUI/FlatCAMGUI.py:5283 msgid "Export G-Code:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5170 flatcamGUI/FlatCAMGUI.py:5211 +#: flatcamGUI/FlatCAMGUI.py:5244 flatcamGUI/FlatCAMGUI.py:5285 #: flatcamGUI/ObjectUI.py:1464 msgid "" "Export and save G-Code to\n" "make this object to a file." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5176 +#: flatcamGUI/FlatCAMGUI.py:5250 msgid "Prepend to G-Code:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5178 +#: flatcamGUI/FlatCAMGUI.py:5252 msgid "" "Type here any G-Code commands you would\n" "like to add at the beginning of the G-Code file." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5187 +#: flatcamGUI/FlatCAMGUI.py:5261 msgid "Append to G-Code:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5189 flatcamGUI/ObjectUI.py:1486 +#: flatcamGUI/FlatCAMGUI.py:5263 flatcamGUI/ObjectUI.py:1486 msgid "" "Type here any G-Code commands you would\n" "like to append to the generated file.\n" "I.e.: M2 (End of program)" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5206 +#: flatcamGUI/FlatCAMGUI.py:5280 msgid "CNC Job Adv. Options" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5217 flatcamGUI/ObjectUI.py:1504 +#: flatcamGUI/FlatCAMGUI.py:5291 flatcamGUI/ObjectUI.py:1504 msgid "Toolchange G-Code:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5219 +#: flatcamGUI/FlatCAMGUI.py:5293 msgid "" "Type here any G-Code commands you would\n" "like to be executed when Toolchange event is encountered.\n" @@ -6241,95 +6176,95 @@ msgid "" "or a Toolchange Macro." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5233 flatcamGUI/ObjectUI.py:1526 +#: flatcamGUI/FlatCAMGUI.py:5307 flatcamGUI/ObjectUI.py:1526 msgid "Use Toolchange Macro" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5235 flatcamGUI/ObjectUI.py:1529 +#: flatcamGUI/FlatCAMGUI.py:5309 flatcamGUI/ObjectUI.py:1529 msgid "" "Check this box if you want to use\n" "a Custom Toolchange GCode (macro)." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5247 flatcamGUI/ObjectUI.py:1538 +#: flatcamGUI/FlatCAMGUI.py:5321 flatcamGUI/ObjectUI.py:1538 msgid "" "A list of the FlatCAM variables that can be used\n" "in the Toolchange event.\n" "They have to be surrounded by the '%' symbol" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5254 flatcamGUI/ObjectUI.py:1545 +#: flatcamGUI/FlatCAMGUI.py:5328 flatcamGUI/ObjectUI.py:1545 msgid "Parameters" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5257 flatcamGUI/ObjectUI.py:1548 +#: flatcamGUI/FlatCAMGUI.py:5331 flatcamGUI/ObjectUI.py:1548 msgid "FlatCAM CNC parameters" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5258 flatcamGUI/ObjectUI.py:1549 +#: flatcamGUI/FlatCAMGUI.py:5332 flatcamGUI/ObjectUI.py:1549 msgid "tool = tool number" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5259 flatcamGUI/ObjectUI.py:1550 +#: flatcamGUI/FlatCAMGUI.py:5333 flatcamGUI/ObjectUI.py:1550 msgid "tooldia = tool diameter" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5260 flatcamGUI/ObjectUI.py:1551 +#: flatcamGUI/FlatCAMGUI.py:5334 flatcamGUI/ObjectUI.py:1551 msgid "t_drills = for Excellon, total number of drills" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5261 flatcamGUI/ObjectUI.py:1552 +#: flatcamGUI/FlatCAMGUI.py:5335 flatcamGUI/ObjectUI.py:1552 msgid "x_toolchange = X coord for Toolchange" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5262 flatcamGUI/ObjectUI.py:1553 +#: flatcamGUI/FlatCAMGUI.py:5336 flatcamGUI/ObjectUI.py:1553 msgid "y_toolchange = Y coord for Toolchange" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5263 flatcamGUI/ObjectUI.py:1554 +#: flatcamGUI/FlatCAMGUI.py:5337 flatcamGUI/ObjectUI.py:1554 msgid "z_toolchange = Z coord for Toolchange" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5264 +#: flatcamGUI/FlatCAMGUI.py:5338 msgid "z_cut = Z depth for the cut" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5265 +#: flatcamGUI/FlatCAMGUI.py:5339 msgid "z_move = Z height for travel" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5266 flatcamGUI/ObjectUI.py:1557 +#: flatcamGUI/FlatCAMGUI.py:5340 flatcamGUI/ObjectUI.py:1557 msgid "z_depthpercut = the step value for multidepth cut" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5267 flatcamGUI/ObjectUI.py:1558 +#: flatcamGUI/FlatCAMGUI.py:5341 flatcamGUI/ObjectUI.py:1558 msgid "spindlesspeed = the value for the spindle speed" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5268 flatcamGUI/ObjectUI.py:1559 +#: flatcamGUI/FlatCAMGUI.py:5342 flatcamGUI/ObjectUI.py:1559 msgid "dwelltime = time to dwell to allow the spindle to reach it's set RPM" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5289 +#: flatcamGUI/FlatCAMGUI.py:5363 msgid "NCC Tool Options" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5292 flatcamGUI/FlatCAMGUI.py:5393 -#: flatcamGUI/FlatCAMGUI.py:5472 flatcamGUI/FlatCAMGUI.py:5531 -#: flatcamGUI/FlatCAMGUI.py:5634 flatcamGUI/FlatCAMGUI.py:5695 -#: flatcamGUI/FlatCAMGUI.py:5894 flatcamGUI/FlatCAMGUI.py:6021 +#: flatcamGUI/FlatCAMGUI.py:5366 flatcamGUI/FlatCAMGUI.py:5467 +#: flatcamGUI/FlatCAMGUI.py:5546 flatcamGUI/FlatCAMGUI.py:5605 +#: flatcamGUI/FlatCAMGUI.py:5708 flatcamGUI/FlatCAMGUI.py:5769 +#: flatcamGUI/FlatCAMGUI.py:5968 flatcamGUI/FlatCAMGUI.py:6095 msgid "Parameters:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5302 flatcamGUI/FlatCAMGUI.py:6032 +#: flatcamGUI/FlatCAMGUI.py:5376 flatcamGUI/FlatCAMGUI.py:6106 msgid "Tools dia:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5304 +#: flatcamGUI/FlatCAMGUI.py:5378 msgid "Diameters of the cutting tools, separated by ','" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5312 flatcamTools/ToolNonCopperClear.py:167 +#: flatcamGUI/FlatCAMGUI.py:5386 flatcamTools/ToolNonCopperClear.py:167 #, python-format msgid "" "How much (fraction) of the tool width to overlap each tool pass.\n" @@ -6344,11 +6279,11 @@ msgid "" "due of too many paths." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5328 flatcamTools/ToolNonCopperClear.py:183 +#: flatcamGUI/FlatCAMGUI.py:5402 flatcamTools/ToolNonCopperClear.py:183 msgid "Bounding box margin." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5337 flatcamTools/ToolNonCopperClear.py:192 +#: flatcamGUI/FlatCAMGUI.py:5411 flatcamTools/ToolNonCopperClear.py:192 #: flatcamTools/ToolPaint.py:190 msgid "" "Algorithm for non-copper clearing:
Standard: Fixed step inwards." @@ -6356,12 +6291,12 @@ msgid "" "lines." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5369 flatcamTools/ToolNonCopperClear.py:224 +#: flatcamGUI/FlatCAMGUI.py:5443 flatcamTools/ToolNonCopperClear.py:224 #: flatcamTools/ToolPaint.py:222 msgid "Rest M.:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5371 +#: flatcamGUI/FlatCAMGUI.py:5445 msgid "" "If checked, use 'rest machining'.\n" "Basically it will clear copper outside PCB features,\n" @@ -6371,39 +6306,39 @@ msgid "" "If not checked, use the standard algorithm." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5390 +#: flatcamGUI/FlatCAMGUI.py:5464 msgid "Cutout Tool Options" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5395 flatcamGUI/ObjectUI.py:402 +#: flatcamGUI/FlatCAMGUI.py:5469 flatcamGUI/ObjectUI.py:402 msgid "" "Create toolpaths to cut around\n" "the PCB and separate it from\n" "the original board." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5414 +#: flatcamGUI/FlatCAMGUI.py:5488 msgid "" "Distance from objects at which\n" "to draw the cutout." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5421 flatcamTools/ToolCutOut.py:96 +#: flatcamGUI/FlatCAMGUI.py:5495 flatcamTools/ToolCutOut.py:96 msgid "Gap size:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5423 +#: flatcamGUI/FlatCAMGUI.py:5497 msgid "" "Size of the gaps in the toolpath\n" "that will remain to hold the\n" "board in place." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5431 flatcamTools/ToolCutOut.py:133 +#: flatcamGUI/FlatCAMGUI.py:5505 flatcamTools/ToolCutOut.py:133 msgid "Gaps:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5433 +#: flatcamGUI/FlatCAMGUI.py:5507 msgid "" "Number of bridge gaps used for the cutout.\n" "There can be maximum 8 bridges/gaps.\n" @@ -6416,73 +6351,57 @@ msgid "" "- 8 - 2*left + 2*right +2*top + 2*bottom" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5454 flatcamTools/ToolCutOut.py:115 +#: flatcamGUI/FlatCAMGUI.py:5528 flatcamTools/ToolCutOut.py:115 msgid "Convex Sh.:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5456 flatcamTools/ToolCutOut.py:117 +#: flatcamGUI/FlatCAMGUI.py:5530 flatcamTools/ToolCutOut.py:117 msgid "Create a convex shape surrounding the entire PCB." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5469 +#: flatcamGUI/FlatCAMGUI.py:5543 msgid "2Sided Tool Options" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5474 +#: flatcamGUI/FlatCAMGUI.py:5548 msgid "" "A tool to help in creating a double sided\n" "PCB using alignment holes." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5484 flatcamTools/ToolDblSided.py:235 +#: flatcamGUI/FlatCAMGUI.py:5558 flatcamTools/ToolDblSided.py:235 msgid "Drill diam.:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5486 flatcamTools/ToolDblSided.py:226 +#: flatcamGUI/FlatCAMGUI.py:5560 flatcamTools/ToolDblSided.py:226 #: flatcamTools/ToolDblSided.py:237 msgid "Diameter of the drill for the alignment holes." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5493 -msgid "X" -msgstr "" - -#: flatcamGUI/FlatCAMGUI.py:5494 -msgid "Y" -msgstr "" - -#: flatcamGUI/FlatCAMGUI.py:5495 flatcamTools/ToolDblSided.py:120 +#: flatcamGUI/FlatCAMGUI.py:5569 flatcamTools/ToolDblSided.py:120 msgid "Mirror Axis:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5497 flatcamTools/ToolDblSided.py:122 +#: flatcamGUI/FlatCAMGUI.py:5571 flatcamTools/ToolDblSided.py:122 msgid "Mirror vertically (X) or horizontally (Y)." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5506 -msgid "Point" -msgstr "" - -#: flatcamGUI/FlatCAMGUI.py:5507 -msgid "Box" -msgstr "" - -#: flatcamGUI/FlatCAMGUI.py:5508 flatcamTools/ToolDblSided.py:133 +#: flatcamGUI/FlatCAMGUI.py:5582 flatcamTools/ToolDblSided.py:133 msgid "Axis Ref:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5510 +#: flatcamGUI/FlatCAMGUI.py:5584 msgid "" "The axis should pass through a point or cut\n" " a specified box (in a Geometry object) in \n" "the middle." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5526 +#: flatcamGUI/FlatCAMGUI.py:5600 msgid "Paint Tool Options" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5533 flatcamGUI/ObjectUI.py:1299 +#: flatcamGUI/FlatCAMGUI.py:5607 flatcamGUI/ObjectUI.py:1299 msgid "" "Creates tool paths to cover the\n" "whole area of a polygon (remove\n" @@ -6490,48 +6409,36 @@ msgid "" "to click on the desired polygon." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5557 +#: flatcamGUI/FlatCAMGUI.py:5631 msgid "" "How much (fraction) of the tool\n" "width to overlap each tool pass." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5611 flatcamTools/ToolPaint.py:237 +#: flatcamGUI/FlatCAMGUI.py:5685 flatcamTools/ToolPaint.py:237 msgid "Selection:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5613 +#: flatcamGUI/FlatCAMGUI.py:5687 msgid "How to select the polygons to paint." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5617 -msgid "Single" -msgstr "" - -#: flatcamGUI/FlatCAMGUI.py:5631 +#: flatcamGUI/FlatCAMGUI.py:5705 msgid "Film Tool Options" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5636 +#: flatcamGUI/FlatCAMGUI.py:5710 msgid "" "Create a PCB film from a Gerber or Geometry\n" "FlatCAM object.\n" "The file is saved in SVG format." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5645 -msgid "Pos" -msgstr "" - -#: flatcamGUI/FlatCAMGUI.py:5646 -msgid "Neg" -msgstr "" - -#: flatcamGUI/FlatCAMGUI.py:5647 flatcamTools/ToolFilm.py:116 +#: flatcamGUI/FlatCAMGUI.py:5721 flatcamTools/ToolFilm.py:116 msgid "Film Type:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5649 flatcamTools/ToolFilm.py:118 +#: flatcamGUI/FlatCAMGUI.py:5723 flatcamTools/ToolFilm.py:118 msgid "" "Generate a Positive black film or a Negative film.\n" "Positive means that it will print the features\n" @@ -6541,11 +6448,11 @@ msgid "" "The Film format is SVG." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5660 flatcamTools/ToolFilm.py:130 +#: flatcamGUI/FlatCAMGUI.py:5734 flatcamTools/ToolFilm.py:130 msgid "Border:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5662 flatcamTools/ToolFilm.py:132 +#: flatcamGUI/FlatCAMGUI.py:5736 flatcamTools/ToolFilm.py:132 msgid "" "Specify a border around the object.\n" "Only for negative film.\n" @@ -6557,11 +6464,11 @@ msgid "" "surroundings if not for this border." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5675 flatcamTools/ToolFilm.py:144 +#: flatcamGUI/FlatCAMGUI.py:5749 flatcamTools/ToolFilm.py:144 msgid "Scale Stroke:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5677 flatcamTools/ToolFilm.py:146 +#: flatcamGUI/FlatCAMGUI.py:5751 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 " @@ -6569,77 +6476,69 @@ msgid "" "therefore the fine features may be more affected by this parameter." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5692 +#: flatcamGUI/FlatCAMGUI.py:5766 msgid "Panelize Tool Options" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5697 +#: flatcamGUI/FlatCAMGUI.py:5771 msgid "" "Create an object that contains an array of (x, y) elements,\n" "each element is a copy of the source object spaced\n" "at a X distance, Y distance of each other." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5708 flatcamTools/ToolPanelize.py:113 +#: flatcamGUI/FlatCAMGUI.py:5782 flatcamTools/ToolPanelize.py:113 msgid "Spacing cols:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5710 flatcamTools/ToolPanelize.py:115 +#: flatcamGUI/FlatCAMGUI.py:5784 flatcamTools/ToolPanelize.py:115 msgid "" "Spacing between columns of the desired panel.\n" "In current units." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5718 flatcamTools/ToolPanelize.py:122 +#: flatcamGUI/FlatCAMGUI.py:5792 flatcamTools/ToolPanelize.py:122 msgid "Spacing rows:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5720 flatcamTools/ToolPanelize.py:124 +#: flatcamGUI/FlatCAMGUI.py:5794 flatcamTools/ToolPanelize.py:124 msgid "" "Spacing between rows of the desired panel.\n" "In current units." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5728 flatcamTools/ToolPanelize.py:131 +#: flatcamGUI/FlatCAMGUI.py:5802 flatcamTools/ToolPanelize.py:131 msgid "Columns:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5730 flatcamTools/ToolPanelize.py:133 +#: flatcamGUI/FlatCAMGUI.py:5804 flatcamTools/ToolPanelize.py:133 msgid "Number of columns of the desired panel" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5737 flatcamTools/ToolPanelize.py:139 +#: flatcamGUI/FlatCAMGUI.py:5811 flatcamTools/ToolPanelize.py:139 msgid "Rows:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5739 flatcamTools/ToolPanelize.py:141 +#: flatcamGUI/FlatCAMGUI.py:5813 flatcamTools/ToolPanelize.py:141 msgid "Number of rows of the desired panel" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5745 -msgid "Gerber" -msgstr "" - -#: flatcamGUI/FlatCAMGUI.py:5746 -msgid "Geo" -msgstr "" - -#: flatcamGUI/FlatCAMGUI.py:5747 flatcamTools/ToolPanelize.py:148 +#: flatcamGUI/FlatCAMGUI.py:5821 flatcamTools/ToolPanelize.py:148 msgid "Panel Type:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5749 +#: flatcamGUI/FlatCAMGUI.py:5823 msgid "" "Choose the type of object for the panel object:\n" "- Gerber\n" "- Geometry" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5758 +#: flatcamGUI/FlatCAMGUI.py:5832 msgid "Constrain within:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5760 flatcamTools/ToolPanelize.py:160 +#: flatcamGUI/FlatCAMGUI.py:5834 flatcamTools/ToolPanelize.py:160 msgid "" "Area define by DX and DY within to constrain the panel.\n" "DX and DY values are in current units.\n" @@ -6648,171 +6547,171 @@ msgid "" "they fit completely within selected area." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5769 flatcamTools/ToolPanelize.py:169 +#: flatcamGUI/FlatCAMGUI.py:5843 flatcamTools/ToolPanelize.py:169 msgid "Width (DX):" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5771 flatcamTools/ToolPanelize.py:171 +#: flatcamGUI/FlatCAMGUI.py:5845 flatcamTools/ToolPanelize.py:171 msgid "" "The width (DX) within which the panel must fit.\n" "In current units." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5778 flatcamTools/ToolPanelize.py:177 +#: flatcamGUI/FlatCAMGUI.py:5852 flatcamTools/ToolPanelize.py:177 msgid "Height (DY):" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5780 flatcamTools/ToolPanelize.py:179 +#: flatcamGUI/FlatCAMGUI.py:5854 flatcamTools/ToolPanelize.py:179 msgid "" "The height (DY)within which the panel must fit.\n" "In current units." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5794 +#: flatcamGUI/FlatCAMGUI.py:5868 msgid "Calculators Tool Options" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5797 +#: flatcamGUI/FlatCAMGUI.py:5871 msgid "V-Shape Tool Calculator:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5799 +#: flatcamGUI/FlatCAMGUI.py:5873 msgid "" "Calculate the tool diameter for a given V-shape tool,\n" "having the tip diameter, tip angle and\n" "depth-of-cut as parameters." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5810 flatcamTools/ToolCalculators.py:94 +#: flatcamGUI/FlatCAMGUI.py:5884 flatcamTools/ToolCalculators.py:94 msgid "Tip Diameter:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5812 +#: flatcamGUI/FlatCAMGUI.py:5886 msgid "" "This is the tool tip diameter.\n" "It is specified by manufacturer." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5820 +#: flatcamGUI/FlatCAMGUI.py:5894 msgid "Tip angle:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5822 +#: flatcamGUI/FlatCAMGUI.py:5896 msgid "" "This is the angle on the tip of the tool.\n" "It is specified by manufacturer." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5832 +#: flatcamGUI/FlatCAMGUI.py:5906 msgid "" "This is depth to cut into material.\n" "In the CNCJob object it is the CutZ parameter." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5839 +#: flatcamGUI/FlatCAMGUI.py:5913 msgid "ElectroPlating Calculator:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5841 flatcamTools/ToolCalculators.py:152 +#: flatcamGUI/FlatCAMGUI.py:5915 flatcamTools/ToolCalculators.py:152 msgid "" "This calculator is useful for those who plate the via/pad/drill holes,\n" "using a method like grahite ink or calcium hypophosphite ink or palladium " "chloride." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5851 flatcamTools/ToolCalculators.py:161 +#: flatcamGUI/FlatCAMGUI.py:5925 flatcamTools/ToolCalculators.py:161 msgid "Board Length:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5853 flatcamTools/ToolCalculators.py:165 +#: flatcamGUI/FlatCAMGUI.py:5927 flatcamTools/ToolCalculators.py:165 msgid "This is the board length. In centimeters." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5859 flatcamTools/ToolCalculators.py:167 +#: flatcamGUI/FlatCAMGUI.py:5933 flatcamTools/ToolCalculators.py:167 msgid "Board Width:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5861 flatcamTools/ToolCalculators.py:171 +#: flatcamGUI/FlatCAMGUI.py:5935 flatcamTools/ToolCalculators.py:171 msgid "This is the board width.In centimeters." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5866 flatcamTools/ToolCalculators.py:173 +#: flatcamGUI/FlatCAMGUI.py:5940 flatcamTools/ToolCalculators.py:173 msgid "Current Density:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5869 flatcamTools/ToolCalculators.py:177 +#: flatcamGUI/FlatCAMGUI.py:5943 flatcamTools/ToolCalculators.py:177 msgid "" "Current density to pass through the board. \n" "In Amps per Square Feet ASF." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5875 flatcamTools/ToolCalculators.py:181 +#: flatcamGUI/FlatCAMGUI.py:5949 flatcamTools/ToolCalculators.py:181 msgid "Copper Growth:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5878 flatcamTools/ToolCalculators.py:185 +#: flatcamGUI/FlatCAMGUI.py:5952 flatcamTools/ToolCalculators.py:185 msgid "" "How thick the copper growth is intended to be.\n" "In microns." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5891 +#: flatcamGUI/FlatCAMGUI.py:5965 msgid "Transform Tool Options" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5896 +#: flatcamGUI/FlatCAMGUI.py:5970 msgid "" "Various transformations that can be applied\n" "on a FlatCAM object." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5906 +#: flatcamGUI/FlatCAMGUI.py:5980 msgid "Rotate Angle:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5908 +#: flatcamGUI/FlatCAMGUI.py:5982 msgid "Angle for rotation. In degrees." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5915 +#: flatcamGUI/FlatCAMGUI.py:5989 msgid "Skew_X angle:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5917 +#: flatcamGUI/FlatCAMGUI.py:5991 msgid "Angle for Skew/Shear on X axis. In degrees." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5924 +#: flatcamGUI/FlatCAMGUI.py:5998 msgid "Skew_Y angle:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5926 +#: flatcamGUI/FlatCAMGUI.py:6000 msgid "Angle for Skew/Shear on Y axis. In degrees." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5933 +#: flatcamGUI/FlatCAMGUI.py:6007 msgid "Scale_X factor:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5935 +#: flatcamGUI/FlatCAMGUI.py:6009 msgid "Factor for scaling on X axis." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5942 +#: flatcamGUI/FlatCAMGUI.py:6016 msgid "Scale_Y factor:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5944 +#: flatcamGUI/FlatCAMGUI.py:6018 msgid "Factor for scaling on Y axis." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5952 +#: flatcamGUI/FlatCAMGUI.py:6026 msgid "" "Scale the selected object(s)\n" "using the Scale_X factor for both axis." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5960 flatcamTools/ToolTransform.py:210 +#: flatcamGUI/FlatCAMGUI.py:6034 flatcamTools/ToolTransform.py:210 msgid "" "Scale the selected object(s)\n" "using the origin reference when checked,\n" @@ -6820,27 +6719,27 @@ msgid "" "of the selected objects when unchecked." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5969 +#: flatcamGUI/FlatCAMGUI.py:6043 msgid "Offset_X val:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5971 +#: flatcamGUI/FlatCAMGUI.py:6045 msgid "Distance to offset on X axis. In current units." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5978 +#: flatcamGUI/FlatCAMGUI.py:6052 msgid "Offset_Y val:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5980 +#: flatcamGUI/FlatCAMGUI.py:6054 msgid "Distance to offset on Y axis. In current units." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5986 +#: flatcamGUI/FlatCAMGUI.py:6060 msgid "Mirror Reference" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5988 flatcamTools/ToolTransform.py:314 +#: flatcamGUI/FlatCAMGUI.py:6062 flatcamTools/ToolTransform.py:314 msgid "" "Flip the selected object(s)\n" "around the point in Point Entry Field.\n" @@ -6853,174 +6752,174 @@ msgid "" "Point Entry field and click Flip on X(Y)" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5999 +#: flatcamGUI/FlatCAMGUI.py:6073 msgid " Mirror Ref. Point:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6001 flatcamTools/ToolTransform.py:327 +#: flatcamGUI/FlatCAMGUI.py:6075 flatcamTools/ToolTransform.py:327 msgid "" "Coordinates in format (x, y) used as reference for mirroring.\n" "The 'x' in (x, y) will be used when using Flip on X and\n" "the 'y' in (x, y) will be used when using Flip on Y and" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6018 +#: flatcamGUI/FlatCAMGUI.py:6092 msgid "SolderPaste Tool Options" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6023 +#: flatcamGUI/FlatCAMGUI.py:6097 msgid "" "A tool to create GCode for dispensing\n" "solder paste onto a PCB." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6034 +#: flatcamGUI/FlatCAMGUI.py:6108 msgid "Diameters of nozzle tools, separated by ','" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6041 +#: flatcamGUI/FlatCAMGUI.py:6115 msgid "New Nozzle Dia:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6043 flatcamTools/ToolSolderPaste.py:103 +#: flatcamGUI/FlatCAMGUI.py:6117 flatcamTools/ToolSolderPaste.py:103 msgid "Diameter for the new Nozzle tool to add in the Tool Table" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6051 flatcamTools/ToolSolderPaste.py:166 +#: flatcamGUI/FlatCAMGUI.py:6125 flatcamTools/ToolSolderPaste.py:166 msgid "Z Dispense Start:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6053 flatcamTools/ToolSolderPaste.py:168 +#: flatcamGUI/FlatCAMGUI.py:6127 flatcamTools/ToolSolderPaste.py:168 msgid "The height (Z) when solder paste dispensing starts." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6060 flatcamTools/ToolSolderPaste.py:174 +#: flatcamGUI/FlatCAMGUI.py:6134 flatcamTools/ToolSolderPaste.py:174 msgid "Z Dispense:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6062 flatcamTools/ToolSolderPaste.py:176 +#: flatcamGUI/FlatCAMGUI.py:6136 flatcamTools/ToolSolderPaste.py:176 msgid "The height (Z) when doing solder paste dispensing." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6069 flatcamTools/ToolSolderPaste.py:183 +#: flatcamGUI/FlatCAMGUI.py:6143 flatcamTools/ToolSolderPaste.py:183 msgid "Z Dispense Stop:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6071 flatcamTools/ToolSolderPaste.py:185 +#: flatcamGUI/FlatCAMGUI.py:6145 flatcamTools/ToolSolderPaste.py:185 msgid "The height (Z) when solder paste dispensing stops." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6078 flatcamTools/ToolSolderPaste.py:191 +#: flatcamGUI/FlatCAMGUI.py:6152 flatcamTools/ToolSolderPaste.py:191 msgid "Z Travel:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6080 flatcamTools/ToolSolderPaste.py:193 +#: flatcamGUI/FlatCAMGUI.py:6154 flatcamTools/ToolSolderPaste.py:193 msgid "" "The height (Z) for travel between pads\n" "(without dispensing solder paste)." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6088 flatcamTools/ToolSolderPaste.py:200 +#: flatcamGUI/FlatCAMGUI.py:6162 flatcamTools/ToolSolderPaste.py:200 msgid "Z Toolchange:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6090 flatcamTools/ToolSolderPaste.py:202 +#: flatcamGUI/FlatCAMGUI.py:6164 flatcamTools/ToolSolderPaste.py:202 msgid "The height (Z) for tool (nozzle) change." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6097 flatcamTools/ToolSolderPaste.py:208 +#: flatcamGUI/FlatCAMGUI.py:6171 flatcamTools/ToolSolderPaste.py:208 msgid "XY Toolchange:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6099 flatcamTools/ToolSolderPaste.py:210 +#: flatcamGUI/FlatCAMGUI.py:6173 flatcamTools/ToolSolderPaste.py:210 msgid "" "The X,Y location for tool (nozzle) change.\n" "The format is (x, y) where x and y are real numbers." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6107 flatcamTools/ToolSolderPaste.py:217 +#: flatcamGUI/FlatCAMGUI.py:6181 flatcamTools/ToolSolderPaste.py:217 msgid "Feedrate X-Y:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6109 flatcamTools/ToolSolderPaste.py:219 +#: flatcamGUI/FlatCAMGUI.py:6183 flatcamTools/ToolSolderPaste.py:219 msgid "Feedrate (speed) while moving on the X-Y plane." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6116 flatcamTools/ToolSolderPaste.py:225 +#: flatcamGUI/FlatCAMGUI.py:6190 flatcamTools/ToolSolderPaste.py:225 msgid "Feedrate Z:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6118 flatcamTools/ToolSolderPaste.py:227 +#: flatcamGUI/FlatCAMGUI.py:6192 flatcamTools/ToolSolderPaste.py:227 msgid "" "Feedrate (speed) while moving vertically\n" "(on Z plane)." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6126 flatcamTools/ToolSolderPaste.py:234 +#: flatcamGUI/FlatCAMGUI.py:6200 flatcamTools/ToolSolderPaste.py:234 msgid "Feedrate Z Dispense:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6128 flatcamTools/ToolSolderPaste.py:236 +#: flatcamGUI/FlatCAMGUI.py:6202 flatcamTools/ToolSolderPaste.py:236 msgid "" "Feedrate (speed) while moving up vertically\n" " to Dispense position (on Z plane)." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6136 flatcamTools/ToolSolderPaste.py:243 +#: flatcamGUI/FlatCAMGUI.py:6210 flatcamTools/ToolSolderPaste.py:243 msgid "Spindle Speed FWD:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6138 flatcamTools/ToolSolderPaste.py:245 +#: flatcamGUI/FlatCAMGUI.py:6212 flatcamTools/ToolSolderPaste.py:245 msgid "" "The dispenser speed while pushing solder paste\n" "through the dispenser nozzle." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6146 flatcamTools/ToolSolderPaste.py:252 +#: flatcamGUI/FlatCAMGUI.py:6220 flatcamTools/ToolSolderPaste.py:252 msgid "Dwell FWD:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6148 flatcamTools/ToolSolderPaste.py:254 +#: flatcamGUI/FlatCAMGUI.py:6222 flatcamTools/ToolSolderPaste.py:254 msgid "Pause after solder dispensing." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6155 flatcamTools/ToolSolderPaste.py:260 +#: flatcamGUI/FlatCAMGUI.py:6229 flatcamTools/ToolSolderPaste.py:260 msgid "Spindle Speed REV:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6157 flatcamTools/ToolSolderPaste.py:262 +#: flatcamGUI/FlatCAMGUI.py:6231 flatcamTools/ToolSolderPaste.py:262 msgid "" "The dispenser speed while retracting solder paste\n" "through the dispenser nozzle." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6165 flatcamTools/ToolSolderPaste.py:269 +#: flatcamGUI/FlatCAMGUI.py:6239 flatcamTools/ToolSolderPaste.py:269 msgid "Dwell REV:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6167 flatcamTools/ToolSolderPaste.py:271 +#: flatcamGUI/FlatCAMGUI.py:6241 flatcamTools/ToolSolderPaste.py:271 msgid "" "Pause after solder paste dispenser retracted,\n" "to allow pressure equilibrium." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6174 flatcamTools/ToolSolderPaste.py:277 +#: flatcamGUI/FlatCAMGUI.py:6248 flatcamTools/ToolSolderPaste.py:277 msgid "PostProcessors:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6176 flatcamTools/ToolSolderPaste.py:279 +#: flatcamGUI/FlatCAMGUI.py:6250 flatcamTools/ToolSolderPaste.py:279 msgid "Files that control the GCode generation." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6206 flatcamGUI/FlatCAMGUI.py:6212 +#: flatcamGUI/FlatCAMGUI.py:6280 flatcamGUI/FlatCAMGUI.py:6286 msgid "Idle." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6236 +#: flatcamGUI/FlatCAMGUI.py:6310 msgid "Application started ..." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6237 +#: flatcamGUI/FlatCAMGUI.py:6311 msgid "Hello!" msgstr "" @@ -7087,14 +6986,6 @@ msgstr "" msgid "Gerber Object" msgstr "" -#: flatcamGUI/ObjectUI.py:156 -msgid "Solid " -msgstr "" - -#: flatcamGUI/ObjectUI.py:164 -msgid "M-Color " -msgstr "" - #: flatcamGUI/ObjectUI.py:182 flatcamGUI/ObjectUI.py:517 #: flatcamGUI/ObjectUI.py:836 flatcamGUI/ObjectUI.py:1366 msgid "Name:" @@ -7262,6 +7153,14 @@ msgstr "" msgid "Tools Table" msgstr "" +#: flatcamGUI/ObjectUI.py:556 +msgid "Drills" +msgstr "" + +#: flatcamGUI/ObjectUI.py:556 +msgid "Slots" +msgstr "" + #: flatcamGUI/ObjectUI.py:557 msgid "Offset Z" msgstr "" @@ -8010,6 +7909,8 @@ msgstr "" #: flatcamTools/ToolCutOut.py:338 flatcamTools/ToolCutOut.py:483 #: flatcamTools/ToolNonCopperClear.py:666 flatcamTools/ToolPaint.py:764 #: flatcamTools/ToolPanelize.py:293 flatcamTools/ToolPanelize.py:307 +#: flatcamTools/ToolSub.py:234 flatcamTools/ToolSub.py:246 +#: flatcamTools/ToolSub.py:364 flatcamTools/ToolSub.py:376 #, python-format msgid "[ERROR_NOTCL] Could not retrieve object: %s" msgstr "" @@ -8755,31 +8656,36 @@ msgid "" "settings." msgstr "" -#: flatcamTools/ToolPDF.py:37 +#: flatcamTools/ToolPDF.py:38 msgid "PDF Import Tool" msgstr "" -#: flatcamTools/ToolPDF.py:142 flatcamTools/ToolPDF.py:146 +#: flatcamTools/ToolPDF.py:152 flatcamTools/ToolPDF.py:156 msgid "Open PDF" msgstr "" -#: flatcamTools/ToolPDF.py:149 +#: flatcamTools/ToolPDF.py:159 msgid "[WARNING_NOTCL] Open PDF cancelled." msgstr "" -#: flatcamTools/ToolPDF.py:170 +#: flatcamTools/ToolPDF.py:186 msgid "Parsing PDF file ..." msgstr "" -#: flatcamTools/ToolPDF.py:266 +#: flatcamTools/ToolPDF.py:264 flatcamTools/ToolPDF.py:300 #, python-format msgid "Rendering PDF layer #%d ..." msgstr "" -#: flatcamTools/ToolPDF.py:270 +#: flatcamTools/ToolPDF.py:268 flatcamTools/ToolPDF.py:304 msgid "[ERROR_NOTCL] Open PDF file failed." msgstr "" +#: flatcamTools/ToolPDF.py:273 flatcamTools/ToolPDF.py:309 +#, python-format +msgid "[success] Rendered: %s" +msgstr "" + #: flatcamTools/ToolPaint.py:24 msgid "Paint Area" msgstr "" @@ -9400,6 +9306,112 @@ msgstr "" msgid "[success] Solder paste dispenser GCode file saved to: %s" msgstr "" +#: flatcamTools/ToolSub.py:55 +msgid "Gerber Objects" +msgstr "" + +#: flatcamTools/ToolSub.py:64 flatcamTools/ToolSub.py:110 +msgid "Target:" +msgstr "" + +#: flatcamTools/ToolSub.py:66 +msgid "" +"Gerber object from which to substract\n" +"the substractor Gerber object." +msgstr "" + +#: flatcamTools/ToolSub.py:78 flatcamTools/ToolSub.py:124 +msgid "Substractor:" +msgstr "" + +#: flatcamTools/ToolSub.py:80 +msgid "" +"Gerber object that will be substracted\n" +"from the target Gerber object." +msgstr "" + +#: flatcamTools/ToolSub.py:87 +msgid "Substract Gerber" +msgstr "" + +#: flatcamTools/ToolSub.py:89 +msgid "" +"Will remove the area occupied by the substractor\n" +"Gerber from the Target Gerber.\n" +"Can be used to remove the overlapping silkscreen\n" +"over the soldermask." +msgstr "" + +#: flatcamTools/ToolSub.py:101 +msgid "Geometry Objects" +msgstr "" + +#: flatcamTools/ToolSub.py:112 +msgid "" +"Geometry object from which to substract\n" +"the substractor Geometry object." +msgstr "" + +#: flatcamTools/ToolSub.py:126 +msgid "" +"Geometry object that will be substracted\n" +"from the target Geometry object." +msgstr "" + +#: flatcamTools/ToolSub.py:133 +msgid "Substract Geometry" +msgstr "" + +#: flatcamTools/ToolSub.py:135 +msgid "" +"Will remove the area occupied by the substractor\n" +"Geometry from the Target Geometry." +msgstr "" + +#: flatcamTools/ToolSub.py:212 +msgid "Sub Tool" +msgstr "" + +#: flatcamTools/ToolSub.py:227 flatcamTools/ToolSub.py:357 +msgid "[ERROR_NOTCL] No Target object loaded." +msgstr "" + +#: flatcamTools/ToolSub.py:239 flatcamTools/ToolSub.py:369 +msgid "[ERROR_NOTCL] No Substractor object loaded." +msgstr "" + +#: flatcamTools/ToolSub.py:277 +#, python-format +msgid "Parsing aperture %s geometry ..." +msgstr "" + +#: flatcamTools/ToolSub.py:331 flatcamTools/ToolSub.py:475 +msgid "Generating new object ..." +msgstr "" + +#: flatcamTools/ToolSub.py:334 flatcamTools/ToolSub.py:478 +msgid "[ERROR_NOTCL] Generating new object failed." +msgstr "" + +#: flatcamTools/ToolSub.py:339 flatcamTools/ToolSub.py:483 +#, python-format +msgid "[success] Created: %s" +msgstr "" + +#: flatcamTools/ToolSub.py:380 +msgid "" +"[ERROR_NOTCL] Currently, the Substractor geometry cannot be of type Multigeo." +msgstr "" + +#: flatcamTools/ToolSub.py:425 +msgid "Parsing solid_geometry ..." +msgstr "" + +#: flatcamTools/ToolSub.py:427 +#, python-format +msgid "Parsing tool %s geometry ..." +msgstr "" + #: flatcamTools/ToolTransform.py:23 msgid "Object Transform" msgstr ""