From a1f7c8699618ea769c089c8c9812cfe4558dc038 Mon Sep 17 00:00:00 2001 From: Marius Stanciu Date: Fri, 12 Apr 2019 22:55:20 +0300 Subject: [PATCH] - made optional the saving of an edited object. Now the user can cancel the changes to the object. - replaced the standard buttons in the QMessageBox's used in the app with custom ones that can have text translated - updated the POT translation file and the MO/PO files for English and Romanian language --- FlatCAMApp.py | 223 +- FlatCAMTranslation.py | 10 +- README.md | 3 + flatcamEditors/FlatCAMExcEditor.py | 8 + flatcamEditors/FlatCAMGeoEditor.py | 21 +- flatcamEditors/FlatCAMGrbEditor.py | 8 + flatcamGUI/FlatCAMGUI.py | 15 +- locale/en/LC_MESSAGES/strings.mo | Bin 260853 -> 260939 bytes locale/en/LC_MESSAGES/strings.po | 1922 ++++---- locale/ro/LC_MESSAGES/strings.mo | Bin 263972 -> 278654 bytes locale/ro/LC_MESSAGES/strings.po | 6946 +++++++++++++++++----------- locale_template/strings.pot | 1637 +++---- 12 files changed, 6053 insertions(+), 4740 deletions(-) diff --git a/FlatCAMApp.py b/FlatCAMApp.py index 42d0bc45..123dc481 100644 --- a/FlatCAMApp.py +++ b/FlatCAMApp.py @@ -2086,16 +2086,18 @@ class App(QtCore.QObject): """ self.report_usage("object2editor()") - # adjust the visibility of some of the canvas context menu - self.ui.popmenu_edit.setVisible(False) - self.ui.popmenu_save.setVisible(True) - - # adjust the status of the menu entries related to the editor - self.ui.menueditedit.setDisabled(True) - self.ui.menueditok.setDisabled(False) - edited_object = self.collection.get_active() + if isinstance(edited_object, FlatCAMGerber) or isinstance(edited_object, FlatCAMGeometry) or \ + isinstance(edited_object, FlatCAMExcellon): + + # adjust the status of the menu entries related to the editor + self.ui.menueditedit.setDisabled(True) + self.ui.menueditok.setDisabled(False) + else: + self.inform.emit(_("[WARNING_NOTCL] Select a Geometry or Excellon Object to edit.")) + return + if isinstance(edited_object, FlatCAMGeometry): # store the Geometry Editor Toolbar visibility before entering in the Editor self.geo_editor.toolbar_old_state = True if self.ui.geo_edit_toolbar.isVisible() else False @@ -2131,10 +2133,6 @@ class App(QtCore.QObject): # set call source to the Editor we go into self.call_source = 'grb_editor' - else: - self.inform.emit(_("[WARNING_NOTCL] Select a Geometry or Excellon Object to edit.")) - return - # make sure that we can't select another object while in Editor Mode: self.collection.view.setSelectionMode(QtWidgets.QAbstractItemView.NoSelection) @@ -2168,60 +2166,96 @@ class App(QtCore.QObject): edited_obj = self.collection.get_active() obj_type = "" - if isinstance(edited_obj, FlatCAMGeometry): - obj_type = "Geometry" - if cleanup is None: - self.geo_editor.update_fcgeometry(edited_obj) - self.geo_editor.update_options(edited_obj) - self.geo_editor.deactivate() + if cleanup is None: + msgbox = QtWidgets.QMessageBox() + msgbox.setText(_("Do you want to save the edited object?")) + msgbox.setWindowTitle(_("Close Editor")) + msgbox.setWindowIcon(QtGui.QIcon('share/save_as.png')) - # update the geo object options so it is including the bounding box values - try: - xmin, ymin, xmax, ymax = edited_obj.bounds() - edited_obj.options['xmin'] = xmin - edited_obj.options['ymin'] = ymin - edited_obj.options['xmax'] = xmax - edited_obj.options['ymax'] = ymax - except AttributeError as e: - self.inform.emit(_("[WARNING] Object empty after edit.")) - log. debug("App.editor2object() --> Geometry --> %s" % str(e)) + bt_yes = msgbox.addButton(_('Yes'), QtWidgets.QMessageBox.YesRole) + bt_no = msgbox.addButton(_('No'), QtWidgets.QMessageBox.NoRole) + bt_cancel = msgbox.addButton(_('Cancel'), QtWidgets.QMessageBox.RejectRole) - elif isinstance(edited_obj, FlatCAMGerber): - new_obj = self.collection.get_active() - obj_type = "Gerber" - if cleanup is None: - self.grb_editor.update_fcgerber(edited_obj) - self.grb_editor.update_options(new_obj) - self.grb_editor.deactivate_grb_editor() + msgbox.setDefaultButton(bt_yes) + msgbox.exec_() + response = msgbox.clickedButton() - # delete the old object (the source object) if it was an empty one - if edited_obj.solid_geometry.is_empty: - old_name = edited_obj.options['name'] - self.collection.set_active(old_name) - self.collection.delete_active() - else: - # update the geo object options so it is including the bounding box values - # but don't do this for objects that are made out of empty source objects, it will fail - try: - xmin, ymin, xmax, ymax = new_obj.bounds() - new_obj.options['xmin'] = xmin - new_obj.options['ymin'] = ymin - new_obj.options['xmax'] = xmax - new_obj.options['ymax'] = ymax - except Exception as e: - self.inform.emit(_("[WARNING] Object empty after edit.")) - log.debug("App.editor2object() --> Gerber --> %s" % str(e)) + if response == bt_yes: + if isinstance(edited_obj, FlatCAMGeometry): + obj_type = "Geometry" + if cleanup is None: + self.geo_editor.update_fcgeometry(edited_obj) + self.geo_editor.update_options(edited_obj) + self.geo_editor.deactivate() - elif isinstance(edited_obj, FlatCAMExcellon): - obj_type = "Excellon" - if cleanup is None: - self.exc_editor.update_fcexcellon(edited_obj) - self.exc_editor.update_options(edited_obj) - self.exc_editor.deactivate() + # update the geo object options so it is including the bounding box values + try: + xmin, ymin, xmax, ymax = edited_obj.bounds() + edited_obj.options['xmin'] = xmin + edited_obj.options['ymin'] = ymin + edited_obj.options['xmax'] = xmax + edited_obj.options['ymax'] = ymax + except AttributeError as e: + self.inform.emit(_("[WARNING] Object empty after edit.")) + log.debug("App.editor2object() --> Geometry --> %s" % str(e)) + elif isinstance(edited_obj, FlatCAMGerber): + new_obj = self.collection.get_active() + obj_type = "Gerber" + if cleanup is None: + self.grb_editor.update_fcgerber(edited_obj) + self.grb_editor.update_options(new_obj) + self.grb_editor.deactivate_grb_editor() + # delete the old object (the source object) if it was an empty one + if edited_obj.solid_geometry.is_empty: + old_name = edited_obj.options['name'] + self.collection.set_active(old_name) + self.collection.delete_active() + else: + # update the geo object options so it is including the bounding box values + # but don't do this for objects that are made out of empty source objects, it will fail + try: + xmin, ymin, xmax, ymax = new_obj.bounds() + new_obj.options['xmin'] = xmin + new_obj.options['ymin'] = ymin + new_obj.options['xmax'] = xmax + new_obj.options['ymax'] = ymax + except Exception as e: + self.inform.emit(_("[WARNING] Object empty after edit.")) + log.debug("App.editor2object() --> Gerber --> %s" % str(e)) + elif isinstance(edited_obj, FlatCAMExcellon): + obj_type = "Excellon" + if cleanup is None: + self.exc_editor.update_fcexcellon(edited_obj) + self.exc_editor.update_options(edited_obj) + self.exc_editor.deactivate() + else: + self.inform.emit(_("[WARNING_NOTCL] Select a Gerber, Geometry or Excellon Object to update.")) + return + + self.inform.emit(_("[selected] %s is updated, returning to App...") % obj_type) + elif response == bt_no: + if isinstance(edited_obj, FlatCAMGeometry): + self.geo_editor.deactivate() + elif isinstance(edited_obj, FlatCAMGerber): + self.grb_editor.deactivate_grb_editor() + elif isinstance(edited_obj, FlatCAMExcellon): + self.exc_editor.deactivate() + else: + self.inform.emit(_("[WARNING_NOTCL] Select a Gerber, Geometry or Excellon Object to update.")) + return + elif response == bt_cancel: + return else: - self.inform.emit(_("[WARNING_NOTCL] Select a Gerber, Geometry or Excellon Object to update.")) - return + if isinstance(edited_obj, FlatCAMGeometry): + self.geo_editor.deactivate() + elif isinstance(edited_obj, FlatCAMGerber): + self.grb_editor.deactivate_grb_editor() + elif isinstance(edited_obj, FlatCAMExcellon): + self.exc_editor.deactivate() + else: + self.inform.emit(_("[WARNING_NOTCL] Select a Gerber, Geometry or Excellon Object to update.")) + return # if notebook is hidden we show it if self.ui.splitter.sizes()[0] == 0: @@ -2233,11 +2267,7 @@ class App(QtCore.QObject): edited_obj.plot() self.ui.plot_tab_area.setTabText(0, "Plot Area") self.ui.plot_tab_area.protectTab(0) - self.inform.emit(_("[selected] %s is updated, returning to App...") % obj_type) - # reset the Object UI to original settings - # edited_obj.set_ui(edited_obj.ui_type()) - # edited_obj.build_ui() # make sure that we reenable the selection on Project Tab after returning from Editor Mode: self.collection.view.setSelectionMode(QtWidgets.QAbstractItemView.ExtendedSelection) @@ -3222,17 +3252,19 @@ class App(QtCore.QObject): "Do you want to Save the project?")) msgbox.setWindowTitle(_("Save changes")) msgbox.setWindowIcon(QtGui.QIcon('share/save_as.png')) - msgbox.setStandardButtons(QtWidgets.QMessageBox.Yes | QtWidgets.QMessageBox.No | - QtWidgets.QMessageBox.Cancel) - msgbox.setDefaultButton(QtWidgets.QMessageBox.Yes) + bt_yes = msgbox.addButton(_('Yes'), QtWidgets.QMessageBox.YesRole) + bt_no = msgbox.addButton(_('No'), QtWidgets.QMessageBox.NoRole) + bt_cancel = msgbox.addButton(_('Cancel'), QtWidgets.QMessageBox.RejectRole) - response = msgbox.exec_() + msgbox.setDefaultButton(bt_yes) + msgbox.exec_() + response = msgbox.clickedButton() - if response == QtWidgets.QMessageBox.Yes: + if response == bt_yes: self.on_file_saveprojectas(thread=True, quit=True) - elif response == QtWidgets.QMessageBox.No: + elif response == bt_no: self.quit_application() - elif response == QtWidgets.QMessageBox.Cancel: + elif response == bt_cancel: return else: self.quit_application() @@ -3553,12 +3585,14 @@ class App(QtCore.QObject): msgbox.setText("Change project units ...") msgbox.setInformativeText("Changing the units of the project causes all geometrical " "properties of all objects to be scaled accordingly.\nContinue?") - msgbox.setStandardButtons(QtWidgets.QMessageBox.Cancel | QtWidgets.QMessageBox.Ok) - msgbox.setDefaultButton(QtWidgets.QMessageBox.Ok) + bt_ok = msgbox.addButton(_('Ok'), QtWidgets.QMessageBox.AcceptRole) + bt_cancel = msgbox.addButton(_('Cancel'), QtWidgets.QMessageBox.RejectRole) - response = msgbox.exec_() + msgbox.setDefaultButton(bt_ok) + msgbox.exec_() + response = msgbox.clickedButton() - if response == QtWidgets.QMessageBox.Ok: + if response == bt_ok: self.options_read_form() scale_options(factor) self.options_write_form() @@ -4316,8 +4350,9 @@ class App(QtCore.QObject): "Go to Preferences -> General - Show Advanced Options.")) msgbox.setWindowTitle("Tool adding ...") msgbox.setWindowIcon(QtGui.QIcon('share/warning.png')) - msgbox.setStandardButtons(QtWidgets.QMessageBox.Ok) - msgbox.setDefaultButton(QtWidgets.QMessageBox.Ok) + bt_ok = msgbox.addButton(_('Ok'), QtWidgets.QMessageBox.AcceptRole) + + msgbox.setDefaultButton(bt_ok) msgbox.exec_() # work only if the notebook tab on focus is the Tools_Tab @@ -5526,17 +5561,20 @@ class App(QtCore.QObject): "Do you want to Save the project?")) msgbox.setWindowTitle(_("Save changes")) msgbox.setWindowIcon(QtGui.QIcon('share/save_as.png')) - msgbox.setStandardButtons(QtWidgets.QMessageBox.Cancel | QtWidgets.QMessageBox.Yes | - QtWidgets.QMessageBox.No) - msgbox.setDefaultButton(QtWidgets.QMessageBox.Ok) + bt_yes = msgbox.addButton(_('Yes'), QtWidgets.QMessageBox.YesRole) + bt_no = msgbox.addButton(_('No'), QtWidgets.QMessageBox.NoRole) + bt_cancel = msgbox.addButton(_('Cancel'), QtWidgets.QMessageBox.RejectRole) - response = msgbox.exec_() + msgbox.setDefaultButton(bt_yes) + msgbox.exec_() + response = msgbox.clickedButton() - if response == QtWidgets.QMessageBox.Yes: + if response == bt_yes: self.on_file_saveprojectas() - elif response == QtWidgets.QMessageBox.Cancel: + elif response == bt_cancel: return - self.on_file_new() + elif response == bt_no: + self.on_file_new() else: self.on_file_new() self.inform.emit(_("[success] New Project created...")) @@ -5788,8 +5826,8 @@ class App(QtCore.QObject): msg = _("Please Select a Geometry object to export") msgbox = QtWidgets.QMessageBox() msgbox.setInformativeText(msg) - msgbox.setStandardButtons(QtWidgets.QMessageBox.Ok) - msgbox.setDefaultButton(QtWidgets.QMessageBox.Ok) + bt_ok = msgbox.addButton(_('Ok'), QtWidgets.QMessageBox.AcceptRole) + msgbox.setDefaultButton(bt_ok) msgbox.exec_() return @@ -5799,8 +5837,8 @@ class App(QtCore.QObject): msg = _("[ERROR_NOTCL] Only Geometry, Gerber and CNCJob objects can be used.") msgbox = QtWidgets.QMessageBox() msgbox.setInformativeText(msg) - msgbox.setStandardButtons(QtWidgets.QMessageBox.Ok) - msgbox.setDefaultButton(QtWidgets.QMessageBox.Ok) + bt_ok = msgbox.addButton(_('Ok'), QtWidgets.QMessageBox.AcceptRole) + msgbox.setDefaultButton(bt_ok) msgbox.exec_() return @@ -5985,8 +6023,8 @@ class App(QtCore.QObject): msg = _("Please Select a Geometry object to export") msgbox = QtWidgets.QMessageBox() msgbox.setInformativeText(msg) - msgbox.setStandardButtons(QtWidgets.QMessageBox.Ok) - msgbox.setDefaultButton(QtWidgets.QMessageBox.Ok) + bt_ok = msgbox.addButton(_('Ok'), QtWidgets.QMessageBox.AcceptRole) + msgbox.setDefaultButton(bt_ok) msgbox.exec_() return @@ -5995,9 +6033,10 @@ class App(QtCore.QObject): msg = _("[ERROR_NOTCL] Only Geometry objects can be used.") msgbox = QtWidgets.QMessageBox() msgbox.setInformativeText(msg) - msgbox.setStandardButtons(QtWidgets.QMessageBox.Ok) - msgbox.setDefaultButton(QtWidgets.QMessageBox.Ok) + bt_ok = msgbox.addButton(_('Ok'), QtWidgets.QMessageBox.AcceptRole) + msgbox.setDefaultButton(bt_ok) msgbox.exec_() + return name = self.collection.get_active().options["name"] diff --git a/FlatCAMTranslation.py b/FlatCAMTranslation.py index ec86e44d..99ef91e4 100644 --- a/FlatCAMTranslation.py +++ b/FlatCAMTranslation.py @@ -86,12 +86,14 @@ def on_language_apply_click(app, restart=False): msgbox.setInformativeText("Are you sure do you want to change the current language to %s?" % name.capitalize()) msgbox.setWindowTitle("Apply Language ...") msgbox.setWindowIcon(QtGui.QIcon('share/language32.png')) - msgbox.setStandardButtons(QtWidgets.QMessageBox.Yes | QtWidgets.QMessageBox.Cancel) - msgbox.setDefaultButton(QtWidgets.QMessageBox.Yes) + bt_yes = msgbox.addButton(_('Yes'), QtWidgets.QMessageBox.YesRole) + bt_no = msgbox.addButton(_('No'), QtWidgets.QMessageBox.NoRole) - response = msgbox.exec_() + msgbox.setDefaultButton(bt_yes) + msgbox.exec_() + response = msgbox.clickedButton() - if response == QtWidgets.QMessageBox.Cancel: + if response == bt_no: return else: settings = QSettings("Open Source", "FlatCAM") diff --git a/README.md b/README.md index 08bee953..a8887911 100644 --- a/README.md +++ b/README.md @@ -23,6 +23,9 @@ CAD program, and create G-Code for Isolation routing. - when adding an aperture with code '0' (zero) it will automatically be set with size zero and type: 'REG' (from region); here we store all the regions from a Gerber file, the ones without a declared aperture - Gerber Editor: added support for Gerber polarity change commands (LPD, LPC) - moved the polarity change processing from FlatCAMGrbEditor() class to camlib.Gerber().parse_lines() +- made optional the saving of an edited object. Now the user can cancel the changes to the object. +- replaced the standard buttons in the QMessageBox's used in the app with custom ones that can have text translated +- updated the POT translation file and the MO/PO files for English and Romanian language 11.04.2019 diff --git a/flatcamEditors/FlatCAMExcEditor.py b/flatcamEditors/FlatCAMExcEditor.py index b188ba89..5dc5c731 100644 --- a/flatcamEditors/FlatCAMExcEditor.py +++ b/flatcamEditors/FlatCAMExcEditor.py @@ -1604,6 +1604,10 @@ class FlatCAMExcEditor(QtCore.QObject): if self.app.ui.grid_snap_btn.isChecked() is False: self.app.ui.grid_snap_btn.trigger() + # adjust the visibility of some of the canvas context menu + self.app.ui.popmenu_edit.setVisible(False) + self.app.ui.popmenu_save.setVisible(True) + # Tell the App that the editor is active self.editor_active = True @@ -1657,6 +1661,10 @@ class FlatCAMExcEditor(QtCore.QObject): self.app.ui.g_editor_cmenu.setEnabled(False) self.app.ui.e_editor_cmenu.setEnabled(False) + # adjust the visibility of some of the canvas context menu + self.app.ui.popmenu_edit.setVisible(True) + self.app.ui.popmenu_save.setVisible(False) + # Show original geometry if self.exc_obj: self.exc_obj.visible = True diff --git a/flatcamEditors/FlatCAMGeoEditor.py b/flatcamEditors/FlatCAMGeoEditor.py index 0627e620..a3d26f0d 100644 --- a/flatcamEditors/FlatCAMGeoEditor.py +++ b/flatcamEditors/FlatCAMGeoEditor.py @@ -2864,6 +2864,10 @@ class FlatCAMGeoEditor(QtCore.QObject): for w in sel_tab_widget_list: w.setEnabled(False) + # adjust the visibility of some of the canvas context menu + self.app.ui.popmenu_edit.setVisible(False) + self.app.ui.popmenu_save.setVisible(True) + # Tell the App that the editor is active self.editor_active = True @@ -2915,6 +2919,18 @@ class FlatCAMGeoEditor(QtCore.QObject): # Tell the app that the editor is no longer active self.editor_active = False + # adjust the visibility of some of the canvas context menu + self.app.ui.popmenu_edit.setVisible(True) + self.app.ui.popmenu_save.setVisible(False) + + try: + # re-enable all the widgets in the Selected Tab that were disabled after entering in Edit Geometry Mode + sel_tab_widget_list = self.app.ui.selected_tab.findChildren(QtWidgets.QWidget) + for w in sel_tab_widget_list: + w.setEnabled(True) + except Exception as e: + log.debug("FlatCAMGeoEditor.deactivate() --> %s" % str(e)) + # Show original geometry if self.fcgeometry: self.fcgeometry.visible = True @@ -3637,11 +3653,6 @@ class FlatCAMGeoEditor(QtCore.QObject): for shape in self.storage.get_objects(): fcgeometry.solid_geometry.append(shape.geo) - # re-enable all the widgets in the Selected Tab that were disabled after entering in Edit Geometry Mode - sel_tab_widget_list = self.app.ui.selected_tab.findChildren(QtWidgets.QWidget) - for w in sel_tab_widget_list: - w.setEnabled(True) - def update_options(self, obj): if self.paint_tooldia: obj.options['cnctooldia'] = self.paint_tooldia diff --git a/flatcamEditors/FlatCAMGrbEditor.py b/flatcamEditors/FlatCAMGrbEditor.py index 14f7e8a9..8a0660f9 100644 --- a/flatcamEditors/FlatCAMGrbEditor.py +++ b/flatcamEditors/FlatCAMGrbEditor.py @@ -1767,6 +1767,10 @@ class FlatCAMGrbEditor(QtCore.QObject): if self.app.ui.grid_snap_btn.isChecked() is False: self.app.ui.grid_snap_btn.trigger() + # adjust the visibility of some of the canvas context menu + self.app.ui.popmenu_edit.setVisible(False) + self.app.ui.popmenu_save.setVisible(True) + # Tell the App that the editor is active self.editor_active = True @@ -1821,6 +1825,10 @@ class FlatCAMGrbEditor(QtCore.QObject): self.app.ui.grb_editor_cmenu.setEnabled(False) self.app.ui.e_editor_cmenu.setEnabled(False) + # adjust the visibility of some of the canvas context menu + self.app.ui.popmenu_edit.setVisible(True) + self.app.ui.popmenu_save.setVisible(False) + # Show original geometry if self.gerber_obj: self.gerber_obj.visible = True diff --git a/flatcamGUI/FlatCAMGUI.py b/flatcamGUI/FlatCAMGUI.py index 53be0c8d..91a3693c 100644 --- a/flatcamGUI/FlatCAMGUI.py +++ b/flatcamGUI/FlatCAMGUI.py @@ -223,7 +223,7 @@ class FlatCAMGUI(QtWidgets.QMainWindow): # Separator self.menuedit.addSeparator() self.menueditedit = self.menuedit.addAction(QtGui.QIcon('share/edit16.png'), _('Edit Object\tE')) - self.menueditok = self.menuedit.addAction(QtGui.QIcon('share/edit_ok16.png'), _('Save && Close Editor\tCTRL+S')) + self.menueditok = self.menuedit.addAction(QtGui.QIcon('share/edit_ok16.png'), _('Close Editor\tCTRL+S')) # adjust the initial state of the menu entries related to the editor self.menueditedit.setDisabled(False) @@ -1546,7 +1546,7 @@ class FlatCAMGUI(QtWidgets.QMainWindow): self.popmenu_copy = self.popMenu.addAction(QtGui.QIcon('share/copy32.png'), _("Copy")) self.popmenu_delete = self.popMenu.addAction(QtGui.QIcon('share/delete32.png'), _("Delete")) self.popmenu_edit = self.popMenu.addAction(QtGui.QIcon('share/edit32.png'), _("Edit")) - self.popmenu_save = self.popMenu.addAction(QtGui.QIcon('share/floppy32.png'), _("Save && Close Edit")) + self.popmenu_save = self.popMenu.addAction(QtGui.QIcon('share/floppy32.png'), _("Close Editor")) self.popmenu_save.setVisible(False) self.popMenu.addSeparator() @@ -3534,18 +3534,19 @@ class GeneralGUISetGroupUI(OptionsGroupUI): def handle_clear(self): msgbox = QtWidgets.QMessageBox() - # msgbox.setText("Save changes ...") msgbox.setText(_("Are you sure you want to delete the GUI Settings? " "\n") ) msgbox.setWindowTitle(_("Clear GUI Settings")) msgbox.setWindowIcon(QtGui.QIcon('share/trash32.png')) - msgbox.setStandardButtons(QtWidgets.QMessageBox.Yes | QtWidgets.QMessageBox.No) - msgbox.setDefaultButton(QtWidgets.QMessageBox.No) + bt_yes = msgbox.addButton(_('Yes'), QtWidgets.QMessageBox.YesRole) + bt_no = msgbox.addButton(_('No'), QtWidgets.QMessageBox.NoRole) - response = msgbox.exec_() + msgbox.setDefaultButton(bt_no) + msgbox.exec_() + response = msgbox.clickedButton() - if response == QtWidgets.QMessageBox.Yes: + if response == bt_yes: settings = QSettings("Open Source", "FlatCAM") for key in settings.allKeys(): settings.remove(key) diff --git a/locale/en/LC_MESSAGES/strings.mo b/locale/en/LC_MESSAGES/strings.mo index 9c40f97ad86f3c40e410bcf33ef1ad3c65a6f3ef..b27ffd8b2d7d223b44be4a5cf197603d95736a6b 100644 GIT binary patch delta 36546 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 delta 36463 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 diff --git a/locale/en/LC_MESSAGES/strings.po b/locale/en/LC_MESSAGES/strings.po index 33bc858b..aa7b5d99 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-12 16:43+0300\n" -"PO-Revision-Date: 2019-04-12 16:43+0300\n" +"POT-Creation-Date: 2019-04-12 21:46+0300\n" +"PO-Revision-Date: 2019-04-12 21:46+0300\n" "Last-Translator: \n" "Language-Team: \n" "Language: en\n" @@ -37,9 +37,13 @@ msgstr "Open Config file failed." #: FlatCAMApp.py:1916 msgid "Open Script file failed." -msgstr "Open Config file failed." +msgstr "Open Script file failed." -#: FlatCAMApp.py:2106 +#: FlatCAMApp.py:2098 +msgid "[WARNING_NOTCL] Select a Geometry or Excellon Object to edit." +msgstr "[WARNING_NOTCL] Select a Geometry or Excellon Object to edit." + +#: FlatCAMApp.py:2108 msgid "" "[WARNING_NOTCL] Simultanoeus editing of tools geometry in a MultiGeo " "Geometry is not possible.\n" @@ -49,19 +53,38 @@ msgstr "" "Geometry is not possible.\n" " Edit only one geometry at a time." -#: FlatCAMApp.py:2135 -msgid "[WARNING_NOTCL] Select a Geometry or Excellon Object to edit." -msgstr "[WARNING_NOTCL] Select a Geometry or Excellon Object to edit." - -#: FlatCAMApp.py:2146 +#: FlatCAMApp.py:2144 msgid "[WARNING_NOTCL] Editor is activated ..." msgstr "[WARNING_NOTCL] Editor is activated ..." -#: FlatCAMApp.py:2186 FlatCAMApp.py:2212 +#: FlatCAMApp.py:2171 +msgid "Do you want to save the edited object?" +msgstr "Do you want to save the edited object?" + +#: FlatCAMApp.py:2172 flatcamGUI/FlatCAMGUI.py:1549 +#| msgid "Code Editor" +msgid "Close Editor" +msgstr "Close Editor" + +#: FlatCAMApp.py:2175 FlatCAMApp.py:3255 FlatCAMApp.py:5564 +#: FlatCAMTranslation.py:89 flatcamGUI/FlatCAMGUI.py:3542 +msgid "Yes" +msgstr "Yes" + +#: FlatCAMApp.py:2176 FlatCAMApp.py:3256 FlatCAMApp.py:5565 +#: FlatCAMTranslation.py:90 flatcamGUI/FlatCAMGUI.py:3543 +msgid "No" +msgstr "No" + +#: FlatCAMApp.py:2177 FlatCAMApp.py:3257 FlatCAMApp.py:3589 FlatCAMApp.py:5566 +msgid "Cancel" +msgstr "Cancel" + +#: FlatCAMApp.py:2199 FlatCAMApp.py:2224 msgid "[WARNING] Object empty after edit." msgstr "[WARNING] Object empty after edit." -#: FlatCAMApp.py:2223 +#: FlatCAMApp.py:2233 FlatCAMApp.py:2245 FlatCAMApp.py:2257 msgid "[WARNING_NOTCL] Select a Gerber, Geometry or Excellon Object to update." msgstr "" "[WARNING_NOTCL] Select a Gerber, Geometry or Excellon Object to update." @@ -71,56 +94,56 @@ msgstr "" msgid "[selected] %s is updated, returning to App..." msgstr "[selected] %s is updated, returning to App..." -#: FlatCAMApp.py:2563 +#: FlatCAMApp.py:2593 msgid "[ERROR] Could not load defaults file." msgstr "[ERROR] Could not load defaults file." -#: FlatCAMApp.py:2575 +#: FlatCAMApp.py:2605 msgid "[ERROR] Failed to parse defaults file." msgstr "[ERROR] Failed to parse defaults file." -#: FlatCAMApp.py:2596 FlatCAMApp.py:2599 +#: FlatCAMApp.py:2626 FlatCAMApp.py:2629 msgid "Import FlatCAM Preferences" msgstr "Import FlatCAM Preferences" -#: FlatCAMApp.py:2604 +#: FlatCAMApp.py:2634 msgid "[WARNING_NOTCL] FlatCAM preferences import cancelled." msgstr "[WARNING_NOTCL] FlatCAM preferences import cancelled." -#: FlatCAMApp.py:2612 FlatCAMApp.py:2659 FlatCAMApp.py:3104 +#: FlatCAMApp.py:2642 FlatCAMApp.py:2689 FlatCAMApp.py:3134 msgid "[ERROR_NOTCL] Could not load defaults file." msgstr "[ERROR_NOTCL] Could not load defaults file." -#: FlatCAMApp.py:2620 FlatCAMApp.py:3113 +#: FlatCAMApp.py:2650 FlatCAMApp.py:3143 msgid "[ERROR_NOTCL] Failed to parse defaults file." msgstr "[ERROR_NOTCL] Failed to parse defaults file." -#: FlatCAMApp.py:2623 +#: FlatCAMApp.py:2653 #, python-format msgid "[success] Imported Defaults from %s" msgstr "[success] Imported Defaults from %s" -#: FlatCAMApp.py:2633 FlatCAMApp.py:2637 +#: FlatCAMApp.py:2663 FlatCAMApp.py:2667 msgid "Export FlatCAM Preferences" msgstr "Export FlatCAM Preferences" -#: FlatCAMApp.py:2643 +#: FlatCAMApp.py:2673 msgid "[WARNING_NOTCL] FlatCAM preferences export cancelled." msgstr "[WARNING_NOTCL] FlatCAM preferences export cancelled." -#: FlatCAMApp.py:2678 FlatCAMApp.py:3158 +#: FlatCAMApp.py:2708 FlatCAMApp.py:3188 msgid "[ERROR_NOTCL] Failed to write defaults to file." msgstr "[ERROR_NOTCL] Failed to write defaults to file." -#: FlatCAMApp.py:2730 +#: FlatCAMApp.py:2760 msgid "[ERROR_NOTCL] Failed to open recent files file for writing." msgstr "[ERROR_NOTCL] Failed to open recent files file for writing." -#: FlatCAMApp.py:2815 camlib.py:4312 +#: FlatCAMApp.py:2845 camlib.py:4430 msgid "[ERROR_NOTCL] An internal error has ocurred. See shell.\n" msgstr "[ERROR_NOTCL] An internal error has ocurred. See shell.\n" -#: FlatCAMApp.py:2816 +#: FlatCAMApp.py:2846 #, python-brace-format msgid "" "Object ({kind}) failed because: {error} \n" @@ -129,11 +152,11 @@ msgstr "" "Object ({kind}) failed because: {error} \n" "\n" -#: FlatCAMApp.py:2836 +#: FlatCAMApp.py:2866 msgid "Converting units to " msgstr "Converting units to " -#: FlatCAMApp.py:2906 FlatCAMApp.py:2909 FlatCAMApp.py:2912 FlatCAMApp.py:2915 +#: FlatCAMApp.py:2936 FlatCAMApp.py:2939 FlatCAMApp.py:2942 FlatCAMApp.py:2945 #, python-brace-format msgid "" "[selected] {kind} created/selected: {name}{name}" -#: FlatCAMApp.py:3009 +#: FlatCAMApp.py:3039 #, python-brace-format msgid "" "FlatCAM
Version {version} {beta} ({date}) - " @@ -165,31 +188,31 @@ msgstr "" "a>
DOWNLOAD area
here.
" -#: FlatCAMApp.py:3162 +#: FlatCAMApp.py:3192 msgid "[success] Defaults saved." msgstr "[success] Defaults saved." -#: FlatCAMApp.py:3183 +#: FlatCAMApp.py:3213 msgid "[ERROR_NOTCL] Could not load factory defaults file." msgstr "[ERROR_NOTCL] Could not load factory defaults file." -#: FlatCAMApp.py:3192 +#: FlatCAMApp.py:3222 msgid "[ERROR_NOTCL] Failed to parse factory defaults file." msgstr "[ERROR_NOTCL] Failed to parse factory defaults file." -#: FlatCAMApp.py:3206 +#: FlatCAMApp.py:3236 msgid "[ERROR_NOTCL] Failed to write factory defaults to file." msgstr "[ERROR_NOTCL] Failed to write factory defaults to file." -#: FlatCAMApp.py:3210 +#: FlatCAMApp.py:3240 msgid "Factory defaults saved." msgstr "Factory defaults saved." -#: FlatCAMApp.py:3215 flatcamGUI/FlatCAMGUI.py:2974 +#: FlatCAMApp.py:3245 flatcamGUI/FlatCAMGUI.py:2974 msgid "[WARNING_NOTCL] Application is saving the project. Please wait ..." msgstr "[WARNING_NOTCL] Application is saving the project. Please wait ..." -#: FlatCAMApp.py:3220 +#: FlatCAMApp.py:3250 msgid "" "There are files/objects modified in FlatCAM. \n" "Do you want to Save the project?" @@ -197,11 +220,11 @@ msgstr "" "There are files/objects modified in FlatCAM. \n" "Do you want to Save the project?" -#: FlatCAMApp.py:3223 FlatCAMApp.py:5527 +#: FlatCAMApp.py:3253 FlatCAMApp.py:5562 msgid "Save changes" msgstr "Save changes" -#: FlatCAMApp.py:3288 +#: FlatCAMApp.py:3320 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 " @@ -217,62 +240,67 @@ msgstr "" "be lost and the result may not be what was expected. \n" "Check the generated GCODE." -#: FlatCAMApp.py:3329 +#: FlatCAMApp.py:3361 msgid "[ERROR_NOTCL] Failed. Excellon joining works only on Excellon objects." msgstr "[ERROR_NOTCL] Failed. Excellon joining works only on Excellon objects." -#: FlatCAMApp.py:3351 +#: FlatCAMApp.py:3383 msgid "[ERROR_NOTCL] Failed. Gerber joining works only on Gerber objects." msgstr "[ERROR_NOTCL] Failed. Gerber joining works only on Gerber objects." -#: FlatCAMApp.py:3366 FlatCAMApp.py:3391 +#: FlatCAMApp.py:3398 FlatCAMApp.py:3423 msgid "[ERROR_NOTCL] Failed. Select a Geometry Object and try again." msgstr "[ERROR_NOTCL] Failed. Select a Geometry Object and try again." -#: FlatCAMApp.py:3370 FlatCAMApp.py:3395 +#: FlatCAMApp.py:3402 FlatCAMApp.py:3427 #, python-format msgid "[ERROR_NOTCL] Expected a FlatCAMGeometry, got %s" msgstr "[ERROR_NOTCL] Expected a FlatCAMGeometry, got %s" -#: FlatCAMApp.py:3383 +#: FlatCAMApp.py:3415 msgid "[success] A Geometry object was converted to MultiGeo type." msgstr "[success] A Geometry object was converted to MultiGeo type." -#: FlatCAMApp.py:3409 +#: FlatCAMApp.py:3441 msgid "[success] A Geometry object was converted to SingleGeo type." msgstr "[success] A Geometry object was converted to SingleGeo type." -#: FlatCAMApp.py:3595 +#: FlatCAMApp.py:3588 FlatCAMApp.py:4353 FlatCAMApp.py:5829 FlatCAMApp.py:5840 +#: FlatCAMApp.py:6026 FlatCAMApp.py:6036 +msgid "Ok" +msgstr "" + +#: FlatCAMApp.py:3629 #, python-format msgid "[success] Converted units to %s" msgstr "[success] Converted units to %s" -#: FlatCAMApp.py:3606 +#: FlatCAMApp.py:3640 msgid "[WARNING_NOTCL] Units conversion cancelled." msgstr "[WARNING_NOTCL] Units conversion cancelled." -#: FlatCAMApp.py:4188 +#: FlatCAMApp.py:4222 msgid "Open file" msgstr "Open file" -#: FlatCAMApp.py:4219 FlatCAMApp.py:4224 +#: FlatCAMApp.py:4253 FlatCAMApp.py:4258 msgid "Export G-Code ..." msgstr "Export G-Code ..." -#: FlatCAMApp.py:4227 +#: FlatCAMApp.py:4261 msgid "[WARNING_NOTCL] Export Code cancelled." msgstr "[WARNING_NOTCL] Export Code cancelled." -#: FlatCAMApp.py:4237 +#: FlatCAMApp.py:4271 msgid "[WARNING] No such file or directory" msgstr "[WARNING] No such file or directory" -#: FlatCAMApp.py:4244 +#: FlatCAMApp.py:4278 #, python-format msgid "Saved to: %s" msgstr "Saved to: %s" -#: FlatCAMApp.py:4307 FlatCAMApp.py:4339 FlatCAMApp.py:4350 FlatCAMApp.py:4361 +#: FlatCAMApp.py:4341 FlatCAMApp.py:4374 FlatCAMApp.py:4385 FlatCAMApp.py:4396 #: flatcamTools/ToolNonCopperClear.py:488 flatcamTools/ToolSolderPaste.py:764 msgid "" "[WARNING_NOTCL] Please enter a tool diameter with non-zero value, in Float " @@ -281,12 +309,12 @@ msgstr "" "[WARNING_NOTCL] Please enter a tool diameter with non-zero value, in Float " "format." -#: FlatCAMApp.py:4312 FlatCAMApp.py:4344 FlatCAMApp.py:4355 FlatCAMApp.py:4366 +#: FlatCAMApp.py:4346 FlatCAMApp.py:4379 FlatCAMApp.py:4390 FlatCAMApp.py:4401 #: flatcamGUI/FlatCAMGUI.py:2891 msgid "[WARNING_NOTCL] Adding Tool cancelled ..." msgstr "[WARNING_NOTCL] Adding Tool cancelled ..." -#: FlatCAMApp.py:4315 +#: FlatCAMApp.py:4349 msgid "" "Adding Tool works only when Advanced is checked.\n" "Go to Preferences -> General - Show Advanced Options." @@ -294,108 +322,108 @@ msgstr "" "Adding Tool works only when Advanced is checked.\n" "Go to Preferences -> General - Show Advanced Options." -#: FlatCAMApp.py:4420 +#: FlatCAMApp.py:4455 msgid "Object(s) deleted ..." msgstr "Object(s) deleted ..." -#: FlatCAMApp.py:4424 +#: FlatCAMApp.py:4459 msgid "Failed. No object(s) selected..." msgstr "Failed. No object(s) selected..." -#: FlatCAMApp.py:4426 +#: FlatCAMApp.py:4461 msgid "Save the work in Editor and try again ..." msgstr "Save the work in Editor and try again ..." -#: FlatCAMApp.py:4439 +#: FlatCAMApp.py:4474 msgid "Click to set the origin ..." msgstr "Click to set the origin ..." -#: FlatCAMApp.py:4452 +#: FlatCAMApp.py:4487 msgid "Jump to ..." msgstr "Jump to ..." -#: FlatCAMApp.py:4453 +#: FlatCAMApp.py:4488 msgid "Enter the coordinates in format X,Y:" msgstr "Enter the coordinates in format X,Y:" -#: FlatCAMApp.py:4460 +#: FlatCAMApp.py:4495 msgid "Wrong coordinates. Enter coordinates in format: X,Y" msgstr "Wrong coordinates. Enter coordinates in format: X,Y" -#: FlatCAMApp.py:4478 +#: FlatCAMApp.py:4513 msgid "Done." msgstr "Done." -#: FlatCAMApp.py:4637 +#: FlatCAMApp.py:4672 msgid "[success] Origin set ..." msgstr "[success] Origin set ..." -#: FlatCAMApp.py:4655 +#: FlatCAMApp.py:4690 msgid "Preferences" msgstr "Preferences" -#: FlatCAMApp.py:4675 +#: FlatCAMApp.py:4710 msgid "[WARNING_NOTCL] No object selected to Flip on Y axis." msgstr "[WARNING_NOTCL] No object selected to Flip on Y axis." -#: FlatCAMApp.py:4700 +#: FlatCAMApp.py:4735 msgid "[success] Flip on Y axis done." msgstr "[success] Flip on Y axis done." -#: FlatCAMApp.py:4702 FlatCAMApp.py:4742 +#: FlatCAMApp.py:4737 FlatCAMApp.py:4777 #: flatcamEditors/FlatCAMGeoEditor.py:1353 -#: flatcamEditors/FlatCAMGrbEditor.py:3497 flatcamTools/ToolTransform.py:750 +#: flatcamEditors/FlatCAMGrbEditor.py:3522 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:4715 +#: FlatCAMApp.py:4750 msgid "[WARNING_NOTCL] No object selected to Flip on X axis." msgstr "[WARNING_NOTCL] No object selected to Flip on X axis." -#: FlatCAMApp.py:4740 +#: FlatCAMApp.py:4775 msgid "[success] Flip on X axis done." msgstr "[success] Flip on X axis done." -#: FlatCAMApp.py:4755 +#: FlatCAMApp.py:4790 msgid "[WARNING_NOTCL] No object selected to Rotate." msgstr "[WARNING_NOTCL] No object selected to Rotate." -#: FlatCAMApp.py:4758 FlatCAMApp.py:4803 FlatCAMApp.py:4834 +#: FlatCAMApp.py:4793 FlatCAMApp.py:4838 FlatCAMApp.py:4869 msgid "Transform" msgstr "Transform" -#: FlatCAMApp.py:4758 FlatCAMApp.py:4803 FlatCAMApp.py:4834 +#: FlatCAMApp.py:4793 FlatCAMApp.py:4838 FlatCAMApp.py:4869 msgid "Enter the Angle value:" msgstr "Enter the Angle value:" -#: FlatCAMApp.py:4788 +#: FlatCAMApp.py:4823 msgid "[success] Rotation done." msgstr "[success] Rotation done." -#: FlatCAMApp.py:4790 flatcamEditors/FlatCAMGeoEditor.py:1296 -#: flatcamEditors/FlatCAMGrbEditor.py:3440 flatcamTools/ToolTransform.py:678 +#: FlatCAMApp.py:4825 flatcamEditors/FlatCAMGeoEditor.py:1296 +#: flatcamEditors/FlatCAMGrbEditor.py:3465 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:4801 +#: FlatCAMApp.py:4836 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:4822 +#: FlatCAMApp.py:4857 msgid "[success] Skew on X axis done." msgstr "[success] Skew on X axis done." -#: FlatCAMApp.py:4832 +#: FlatCAMApp.py:4867 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:4853 +#: FlatCAMApp.py:4888 msgid "[success] Skew on Y axis done." msgstr "[success] Skew on Y axis done." -#: FlatCAMApp.py:4949 FlatCAMApp.py:4976 +#: FlatCAMApp.py:4984 FlatCAMApp.py:5011 msgid "" "[WARNING_NOTCL] Please enter a grid value with non-zero value, in Float " "format." @@ -403,48 +431,48 @@ msgstr "" "[WARNING_NOTCL] Please enter a grid value with non-zero value, in Float " "format." -#: FlatCAMApp.py:4955 +#: FlatCAMApp.py:4990 msgid "[success] New Grid added ..." msgstr "[success] New Grid added ..." -#: FlatCAMApp.py:4958 +#: FlatCAMApp.py:4993 msgid "[WARNING_NOTCL] Grid already exists ..." msgstr "[WARNING_NOTCL] Grid already exists ..." -#: FlatCAMApp.py:4961 +#: FlatCAMApp.py:4996 msgid "[WARNING_NOTCL] Adding New Grid cancelled ..." msgstr "[WARNING_NOTCL] Adding New Grid cancelled ..." -#: FlatCAMApp.py:4983 +#: FlatCAMApp.py:5018 msgid "[ERROR_NOTCL] Grid Value does not exist ..." msgstr "[ERROR_NOTCL] Grid Value does not exist ..." -#: FlatCAMApp.py:4986 +#: FlatCAMApp.py:5021 msgid "[success] Grid Value deleted ..." msgstr "[success] Grid Value deleted ..." -#: FlatCAMApp.py:4989 +#: FlatCAMApp.py:5024 msgid "[WARNING_NOTCL] Delete Grid value cancelled ..." msgstr "[WARNING_NOTCL] Delete Grid value cancelled ..." -#: FlatCAMApp.py:5028 +#: FlatCAMApp.py:5063 msgid "[WARNING_NOTCL] No object selected to copy it's name" msgstr "[WARNING_NOTCL] No object selected to copy it's name" -#: FlatCAMApp.py:5032 +#: FlatCAMApp.py:5067 msgid "Name copied on clipboard ..." msgstr "Name copied on clipboard ..." -#: FlatCAMApp.py:5327 FlatCAMApp.py:5330 FlatCAMApp.py:5333 FlatCAMApp.py:5336 -#: FlatCAMApp.py:5350 FlatCAMApp.py:5353 FlatCAMApp.py:5356 FlatCAMApp.py:5359 -#: FlatCAMApp.py:5398 FlatCAMApp.py:5401 FlatCAMApp.py:5404 FlatCAMApp.py:5407 +#: FlatCAMApp.py:5362 FlatCAMApp.py:5365 FlatCAMApp.py:5368 FlatCAMApp.py:5371 +#: FlatCAMApp.py:5385 FlatCAMApp.py:5388 FlatCAMApp.py:5391 FlatCAMApp.py:5394 +#: FlatCAMApp.py:5433 FlatCAMApp.py:5436 FlatCAMApp.py:5439 FlatCAMApp.py:5442 #: ObjectCollection.py:711 ObjectCollection.py:714 ObjectCollection.py:717 #: ObjectCollection.py:720 #, python-brace-format msgid "[selected]{name} selected" msgstr "[selected]{name} selected" -#: FlatCAMApp.py:5524 +#: FlatCAMApp.py:5559 msgid "" "There are files/objects opened in FlatCAM.\n" "Creating a New project will delete them.\n" @@ -454,106 +482,106 @@ msgstr "" "Creating a New project will delete them.\n" "Do you want to Save the project?" -#: FlatCAMApp.py:5542 +#: FlatCAMApp.py:5580 msgid "[success] New Project created..." msgstr "[success] New Project created..." -#: FlatCAMApp.py:5650 FlatCAMApp.py:5653 flatcamGUI/FlatCAMGUI.py:594 +#: FlatCAMApp.py:5688 FlatCAMApp.py:5691 flatcamGUI/FlatCAMGUI.py:594 #: flatcamGUI/FlatCAMGUI.py:1762 msgid "Open Gerber" msgstr "Open Gerber" -#: FlatCAMApp.py:5658 +#: FlatCAMApp.py:5696 msgid "[WARNING_NOTCL] Open Gerber cancelled." msgstr "[WARNING_NOTCL] Open Gerber cancelled." -#: FlatCAMApp.py:5679 FlatCAMApp.py:5682 flatcamGUI/FlatCAMGUI.py:595 +#: FlatCAMApp.py:5717 FlatCAMApp.py:5720 flatcamGUI/FlatCAMGUI.py:595 #: flatcamGUI/FlatCAMGUI.py:1763 msgid "Open Excellon" msgstr "Open Excellon" -#: FlatCAMApp.py:5687 +#: FlatCAMApp.py:5725 msgid "[WARNING_NOTCL] Open Excellon cancelled." msgstr "[WARNING_NOTCL] Open Excellon cancelled." -#: FlatCAMApp.py:5709 FlatCAMApp.py:5712 +#: FlatCAMApp.py:5747 FlatCAMApp.py:5750 msgid "Open G-Code" msgstr "Open G-Code" -#: FlatCAMApp.py:5717 +#: FlatCAMApp.py:5755 msgid "[WARNING_NOTCL] Open G-Code cancelled." msgstr "[WARNING_NOTCL] Open G-Code cancelled." -#: FlatCAMApp.py:5735 FlatCAMApp.py:5738 +#: FlatCAMApp.py:5773 FlatCAMApp.py:5776 msgid "Open Project" msgstr "Open Project" -#: FlatCAMApp.py:5746 +#: FlatCAMApp.py:5784 msgid "[WARNING_NOTCL] Open Project cancelled." msgstr "[WARNING_NOTCL] Open Project cancelled." -#: FlatCAMApp.py:5765 FlatCAMApp.py:5768 +#: FlatCAMApp.py:5803 FlatCAMApp.py:5806 msgid "Open Configuration File" msgstr "Open Configuration File" -#: FlatCAMApp.py:5772 +#: FlatCAMApp.py:5810 msgid "[WARNING_NOTCL Open Config cancelled." msgstr "[WARNING_NOTCL Open Config cancelled." -#: FlatCAMApp.py:5787 FlatCAMApp.py:5984 FlatCAMApp.py:8066 FlatCAMApp.py:8086 -#: FlatCAMApp.py:8107 FlatCAMApp.py:8129 +#: FlatCAMApp.py:5825 FlatCAMApp.py:6022 FlatCAMApp.py:8105 FlatCAMApp.py:8125 +#: FlatCAMApp.py:8146 FlatCAMApp.py:8168 msgid "[WARNING_NOTCL] No object selected." msgstr "[WARNING_NOTCL] No object selected." -#: FlatCAMApp.py:5788 FlatCAMApp.py:5985 +#: FlatCAMApp.py:5826 FlatCAMApp.py:6023 msgid "Please Select a Geometry object to export" msgstr "Please Select a Geometry object to export" -#: FlatCAMApp.py:5799 +#: FlatCAMApp.py:5837 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:5812 FlatCAMApp.py:5816 +#: FlatCAMApp.py:5850 FlatCAMApp.py:5854 msgid "Export SVG" msgstr "Export SVG" -#: FlatCAMApp.py:5821 +#: FlatCAMApp.py:5859 msgid "[WARNING_NOTCL] Export SVG cancelled." msgstr "[WARNING_NOTCL] Export SVG cancelled." -#: FlatCAMApp.py:5835 +#: FlatCAMApp.py:5873 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:5841 FlatCAMApp.py:5845 +#: FlatCAMApp.py:5879 FlatCAMApp.py:5883 msgid "Export PNG Image" msgstr "Export PNG Image" -#: FlatCAMApp.py:5850 +#: FlatCAMApp.py:5888 msgid "Export PNG cancelled." msgstr "Export PNG cancelled." -#: FlatCAMApp.py:5867 +#: FlatCAMApp.py:5905 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:5872 +#: FlatCAMApp.py:5910 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:5884 +#: FlatCAMApp.py:5922 msgid "Save Gerber source file" msgstr "Save Gerber source file" -#: FlatCAMApp.py:5889 +#: FlatCAMApp.py:5927 msgid "[WARNING_NOTCL] Save Gerber source file cancelled." msgstr "[WARNING_NOTCL] Save Gerber source file cancelled." -#: FlatCAMApp.py:5906 +#: FlatCAMApp.py:5944 msgid "" "[WARNING_NOTCL] No object selected. Please select an Excellon object to " "export." @@ -561,21 +589,21 @@ msgstr "" "[WARNING_NOTCL] No object selected. Please select an Excellon object to " "export." -#: FlatCAMApp.py:5911 FlatCAMApp.py:5950 +#: FlatCAMApp.py:5949 FlatCAMApp.py:5988 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:5919 FlatCAMApp.py:5923 +#: FlatCAMApp.py:5957 FlatCAMApp.py:5961 msgid "Save Excellon source file" msgstr "Save Excellon source file" -#: FlatCAMApp.py:5928 +#: FlatCAMApp.py:5966 msgid "[WARNING_NOTCL] Saving Excellon source file cancelled." msgstr "[WARNING_NOTCL] Saving Excellon source file cancelled." -#: FlatCAMApp.py:5945 +#: FlatCAMApp.py:5983 msgid "" "[WARNING_NOTCL] No object selected. Please Select an Excellon object to " "export." @@ -583,54 +611,54 @@ msgstr "" "[WARNING_NOTCL] No object selected. Please Select an Excellon object to " "export." -#: FlatCAMApp.py:5958 FlatCAMApp.py:5962 +#: FlatCAMApp.py:5996 FlatCAMApp.py:6000 msgid "Export Excellon" msgstr "Export Excellon" -#: FlatCAMApp.py:5967 +#: FlatCAMApp.py:6005 msgid "[WARNING_NOTCL] Export Excellon cancelled." msgstr "[WARNING_NOTCL] Export Excellon cancelled." -#: FlatCAMApp.py:5995 +#: FlatCAMApp.py:6033 msgid "[ERROR_NOTCL] Only Geometry objects can be used." msgstr "[ERROR_NOTCL] Only Geometry objects can be used." -#: FlatCAMApp.py:6008 FlatCAMApp.py:6012 +#: FlatCAMApp.py:6047 FlatCAMApp.py:6051 msgid "Export DXF" msgstr "Export DXF" -#: FlatCAMApp.py:6017 +#: FlatCAMApp.py:6056 msgid "[WARNING_NOTCL] Export DXF cancelled." msgstr "[WARNING_NOTCL] Export DXF cancelled." -#: FlatCAMApp.py:6035 FlatCAMApp.py:6038 +#: FlatCAMApp.py:6074 FlatCAMApp.py:6077 msgid "Import SVG" msgstr "Import SVG" -#: FlatCAMApp.py:6046 +#: FlatCAMApp.py:6085 msgid "[WARNING_NOTCL] Open SVG cancelled." msgstr "[WARNING_NOTCL] Open SVG cancelled." -#: FlatCAMApp.py:6065 FlatCAMApp.py:6068 +#: FlatCAMApp.py:6104 FlatCAMApp.py:6107 msgid "Import DXF" msgstr "Import DXF" -#: FlatCAMApp.py:6076 +#: FlatCAMApp.py:6115 msgid "[WARNING_NOTCL] Open DXF cancelled." msgstr "[WARNING_NOTCL] Open DXF cancelled." -#: FlatCAMApp.py:6094 +#: FlatCAMApp.py:6133 #, python-format msgid "%s" msgstr "%s" -#: FlatCAMApp.py:6114 +#: FlatCAMApp.py:6153 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:6121 +#: FlatCAMApp.py:6160 msgid "" "[WARNING_NOTCL] There is no selected object for which to see it's source " "file code." @@ -638,24 +666,24 @@ msgstr "" "[WARNING_NOTCL] There is no selected object for which to see it's source " "file code." -#: FlatCAMApp.py:6129 +#: FlatCAMApp.py:6168 msgid "Source Editor" msgstr "Source Editor" -#: FlatCAMApp.py:6139 +#: FlatCAMApp.py:6178 #, python-format msgid "[ERROR]App.on_view_source() -->%s" msgstr "[ERROR]App.on_view_source() -->%s" -#: FlatCAMApp.py:6151 FlatCAMApp.py:7172 FlatCAMObj.py:5257 +#: FlatCAMApp.py:6190 FlatCAMApp.py:7211 FlatCAMObj.py:5257 msgid "Code Editor" msgstr "Code Editor" -#: FlatCAMApp.py:6163 +#: FlatCAMApp.py:6202 msgid "Script Editor" msgstr "Script Editor" -#: FlatCAMApp.py:6166 +#: FlatCAMApp.py:6205 msgid "" "#\n" "# CREATE A NEW FLATCAM TCL SCRIPT\n" @@ -699,85 +727,85 @@ msgstr "" "#\n" "\n" -#: FlatCAMApp.py:6189 FlatCAMApp.py:6192 +#: FlatCAMApp.py:6228 FlatCAMApp.py:6231 msgid "Open TCL script" msgstr "Open TCL script" -#: FlatCAMApp.py:6200 +#: FlatCAMApp.py:6239 msgid "[WARNING_NOTCL] Open TCL script cancelled." msgstr "[WARNING_NOTCL] Open TCL script cancelled." -#: FlatCAMApp.py:6212 +#: FlatCAMApp.py:6251 #, python-format msgid "[ERROR]App.on_fileopenscript() -->%s" msgstr "[ERROR]App.on_fileopenscript() -->%s" -#: FlatCAMApp.py:6238 FlatCAMApp.py:6241 +#: FlatCAMApp.py:6277 FlatCAMApp.py:6280 msgid "Run TCL script" msgstr "Run TCL script" -#: FlatCAMApp.py:6249 +#: FlatCAMApp.py:6288 msgid "[WARNING_NOTCL] Run TCL script cancelled." msgstr "[WARNING_NOTCL] Run TCL script cancelled." -#: FlatCAMApp.py:6295 FlatCAMApp.py:6299 +#: FlatCAMApp.py:6334 FlatCAMApp.py:6338 msgid "Save Project As ..." msgstr "Save Project As ..." -#: FlatCAMApp.py:6296 +#: FlatCAMApp.py:6335 #, python-brace-format msgid "{l_save}/Project_{date}" msgstr "{l_save}/Project_{date}" -#: FlatCAMApp.py:6304 +#: FlatCAMApp.py:6343 msgid "[WARNING_NOTCL] Save Project cancelled." msgstr "[WARNING_NOTCL] Save Project cancelled." -#: FlatCAMApp.py:6349 +#: FlatCAMApp.py:6388 msgid "Exporting SVG" msgstr "Exporting SVG" -#: FlatCAMApp.py:6382 FlatCAMApp.py:6487 FlatCAMApp.py:6601 +#: FlatCAMApp.py:6421 FlatCAMApp.py:6526 FlatCAMApp.py:6640 #, python-format msgid "[success] SVG file exported to %s" msgstr "[success] SVG file exported to %s" -#: FlatCAMApp.py:6413 FlatCAMApp.py:6533 +#: FlatCAMApp.py:6452 FlatCAMApp.py:6572 #, python-format msgid "[WARNING_NOTCL] No object Box. Using instead %s" msgstr "[WARNING_NOTCL] No object Box. Using instead %s" -#: FlatCAMApp.py:6490 FlatCAMApp.py:6604 +#: FlatCAMApp.py:6529 FlatCAMApp.py:6643 msgid "Generating Film ... Please wait." msgstr "Generating Film ... Please wait." -#: FlatCAMApp.py:6751 +#: FlatCAMApp.py:6790 #, python-format msgid "[success] Excellon file exported to %s" msgstr "[success] Excellon file exported to %s" -#: FlatCAMApp.py:6758 +#: FlatCAMApp.py:6797 msgid "Exporting Excellon" msgstr "Exporting Excellon" -#: FlatCAMApp.py:6763 FlatCAMApp.py:6770 +#: FlatCAMApp.py:6802 FlatCAMApp.py:6809 msgid "[ERROR_NOTCL] Could not export Excellon file." msgstr "[ERROR_NOTCL] Could not export Excellon file." -#: FlatCAMApp.py:6809 +#: FlatCAMApp.py:6848 #, python-format msgid "[success] DXF file exported to %s" msgstr "[success] DXF file exported to %s" -#: FlatCAMApp.py:6815 +#: FlatCAMApp.py:6854 msgid "Exporting DXF" msgstr "Exporting DXF" -#: FlatCAMApp.py:6820 FlatCAMApp.py:6827 +#: FlatCAMApp.py:6859 FlatCAMApp.py:6866 msgid "[[WARNING_NOTCL]] Could not export DXF file." msgstr "[[WARNING_NOTCL]] Could not export DXF file." -#: FlatCAMApp.py:6847 FlatCAMApp.py:6889 FlatCAMApp.py:6930 +#: FlatCAMApp.py:6886 FlatCAMApp.py:6928 FlatCAMApp.py:6969 msgid "" "[ERROR_NOTCL] Not supported type is picked as parameter. Only Geometry and " "Gerber are supported" @@ -785,95 +813,95 @@ msgstr "" "[ERROR_NOTCL] Not supported type is picked as parameter. Only Geometry and " "Gerber are supported" -#: FlatCAMApp.py:6857 +#: FlatCAMApp.py:6896 msgid "Importing SVG" msgstr "Importing SVG" -#: FlatCAMApp.py:6868 FlatCAMApp.py:6910 FlatCAMApp.py:6950 FlatCAMApp.py:7026 -#: FlatCAMApp.py:7093 FlatCAMApp.py:7158 +#: FlatCAMApp.py:6907 FlatCAMApp.py:6949 FlatCAMApp.py:6989 FlatCAMApp.py:7065 +#: FlatCAMApp.py:7132 FlatCAMApp.py:7197 #, python-format msgid "[success] Opened: %s" msgstr "[success] Opened: %s" -#: FlatCAMApp.py:6899 +#: FlatCAMApp.py:6938 msgid "Importing DXF" msgstr "Importing DXF" -#: FlatCAMApp.py:6938 +#: FlatCAMApp.py:6977 msgid "Importing Image" msgstr "Importing Image" -#: FlatCAMApp.py:6979 FlatCAMApp.py:6981 +#: FlatCAMApp.py:7018 FlatCAMApp.py:7020 #, python-format msgid "[ERROR_NOTCL] Failed to open file: %s" msgstr "[ERROR_NOTCL] Failed to open file: %s" -#: FlatCAMApp.py:6984 +#: FlatCAMApp.py:7023 #, python-brace-format msgid "[ERROR_NOTCL] Failed to parse file: {name}. {error}" msgstr "[ERROR_NOTCL] Failed to parse file: {name}. {error}" -#: FlatCAMApp.py:6990 FlatCAMObj.py:3961 -#: flatcamEditors/FlatCAMExcEditor.py:1919 -#: flatcamEditors/FlatCAMGrbEditor.py:2036 +#: FlatCAMApp.py:7029 FlatCAMObj.py:3961 +#: flatcamEditors/FlatCAMExcEditor.py:1927 +#: flatcamEditors/FlatCAMGrbEditor.py:2061 msgid "[ERROR] An internal error has ocurred. See shell.\n" msgstr "[ERROR] An internal error has ocurred. See shell.\n" -#: FlatCAMApp.py:6999 +#: FlatCAMApp.py:7038 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:7007 +#: FlatCAMApp.py:7046 msgid "Opening Gerber" msgstr "Opening Gerber" -#: FlatCAMApp.py:7017 +#: FlatCAMApp.py:7056 msgid "[ERROR_NOTCL] Open Gerber failed. Probable not a Gerber file." msgstr "[ERROR_NOTCL] Open Gerber failed. Probable not a Gerber file." -#: FlatCAMApp.py:7052 +#: FlatCAMApp.py:7091 msgid "[ERROR_NOTCL] This is not Excellon file." msgstr "[ERROR_NOTCL] This is not Excellon file." -#: FlatCAMApp.py:7055 +#: FlatCAMApp.py:7094 #, python-format msgid "[ERROR_NOTCL] Cannot open file: %s" msgstr "[ERROR_NOTCL] Cannot open file: %s" -#: FlatCAMApp.py:7060 +#: FlatCAMApp.py:7099 msgid "[ERROR_NOTCL] An internal error has occurred. See shell.\n" msgstr "[ERROR_NOTCL] An internal error has occurred. See shell.\n" -#: FlatCAMApp.py:7076 +#: FlatCAMApp.py:7115 #, python-format msgid "[ERROR_NOTCL] No geometry found in file: %s" msgstr "[ERROR_NOTCL] No geometry found in file: %s" -#: FlatCAMApp.py:7079 +#: FlatCAMApp.py:7118 msgid "Opening Excellon." msgstr "Opening Excellon." -#: FlatCAMApp.py:7086 +#: FlatCAMApp.py:7125 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:7125 +#: FlatCAMApp.py:7164 #, python-format msgid "[ERROR_NOTCL] Failed to open %s" msgstr "[ERROR_NOTCL] Failed to open %s" -#: FlatCAMApp.py:7135 +#: FlatCAMApp.py:7174 msgid "[ERROR_NOTCL] This is not GCODE" msgstr "[ERROR_NOTCL] This is not GCODE" -#: FlatCAMApp.py:7141 +#: FlatCAMApp.py:7180 msgid "Opening G-Code." msgstr "Opening G-Code." -#: FlatCAMApp.py:7149 +#: FlatCAMApp.py:7188 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 " @@ -883,26 +911,26 @@ msgstr "" " Attempting to create a FlatCAM CNCJob Object from G-Code file failed during " "processing" -#: FlatCAMApp.py:7189 +#: FlatCAMApp.py:7228 #, python-format msgid "[ERROR_NOTCL] Failed to open config file: %s" msgstr "[ERROR_NOTCL] Failed to open config file: %s" -#: FlatCAMApp.py:7214 FlatCAMApp.py:7230 +#: FlatCAMApp.py:7253 FlatCAMApp.py:7269 #, python-format msgid "[ERROR_NOTCL] Failed to open project file: %s" msgstr "[ERROR_NOTCL] Failed to open project file: %s" -#: FlatCAMApp.py:7256 +#: FlatCAMApp.py:7295 #, python-format msgid "[success] Project loaded from: %s" msgstr "[success] Project loaded from: %s" -#: FlatCAMApp.py:7386 +#: FlatCAMApp.py:7425 msgid "Available commands:\n" msgstr "Available commands:\n" -#: FlatCAMApp.py:7388 +#: FlatCAMApp.py:7427 msgid "" "\n" "\n" @@ -914,23 +942,23 @@ msgstr "" "Type help for usage.\n" " Example: help open_gerber" -#: FlatCAMApp.py:7536 +#: FlatCAMApp.py:7575 msgid "Shows list of commands." msgstr "Shows list of commands." -#: FlatCAMApp.py:7589 +#: FlatCAMApp.py:7628 msgid "[ERROR_NOTCL] Failed to load recent item list." msgstr "[ERROR_NOTCL] Failed to load recent item list." -#: FlatCAMApp.py:7596 +#: FlatCAMApp.py:7635 msgid "[ERROR_NOTCL] Failed to parse recent item list." msgstr "[ERROR_NOTCL] Failed to parse recent item list." -#: FlatCAMApp.py:7657 flatcamGUI/FlatCAMGUI.py:929 +#: FlatCAMApp.py:7696 flatcamGUI/FlatCAMGUI.py:929 msgid "Shortcut Key List" msgstr "Shortcut Key List" -#: FlatCAMApp.py:7664 +#: FlatCAMApp.py:7703 msgid "" "\n" "

Selected Tab - Choose an Item from " @@ -1026,23 +1054,23 @@ msgstr "" "\n" " " -#: FlatCAMApp.py:7768 +#: FlatCAMApp.py:7807 msgid "[WARNING_NOTCL] Failed checking for latest version. Could not connect." msgstr "[WARNING_NOTCL] Failed checking for latest version. Could not connect." -#: FlatCAMApp.py:7775 +#: FlatCAMApp.py:7814 msgid "[ERROR_NOTCL] Could not parse information about latest version." msgstr "[ERROR_NOTCL] Could not parse information about latest version." -#: FlatCAMApp.py:7785 +#: FlatCAMApp.py:7824 msgid "[success] FlatCAM is up to date!" msgstr "[success] FlatCAM is up to date!" -#: FlatCAMApp.py:7790 +#: FlatCAMApp.py:7829 msgid "Newer Version Available" msgstr "Newer Version Available" -#: FlatCAMApp.py:7791 +#: FlatCAMApp.py:7830 msgid "" "There is a newer version of FlatCAM available for download:\n" "\n" @@ -1050,43 +1078,43 @@ msgstr "" "There is a newer version of FlatCAM available for download:\n" "\n" -#: FlatCAMApp.py:7793 +#: FlatCAMApp.py:7832 msgid "info" msgstr "info" -#: FlatCAMApp.py:7812 +#: FlatCAMApp.py:7851 msgid "[success] All plots disabled." msgstr "[success] All plots disabled." -#: FlatCAMApp.py:7818 +#: FlatCAMApp.py:7857 msgid "[success] All non selected plots disabled." msgstr "[success] All non selected plots disabled." -#: FlatCAMApp.py:7824 +#: FlatCAMApp.py:7863 msgid "[success] All plots enabled." msgstr "[success] All plots enabled." -#: FlatCAMApp.py:7935 +#: FlatCAMApp.py:7974 msgid "Saving FlatCAM Project" msgstr "Saving FlatCAM Project" -#: FlatCAMApp.py:7956 FlatCAMApp.py:7987 +#: FlatCAMApp.py:7995 FlatCAMApp.py:8026 #, python-format msgid "[success] Project saved to: %s" msgstr "[success] Project saved to: %s" -#: FlatCAMApp.py:7974 +#: FlatCAMApp.py:8013 #, 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:7981 +#: FlatCAMApp.py:8020 #, 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:7989 +#: FlatCAMApp.py:8028 #, 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." @@ -1160,7 +1188,7 @@ msgstr "Tool_nr" #: FlatCAMObj.py:2058 FlatCAMObj.py:2152 FlatCAMObj.py:2263 #: flatcamEditors/FlatCAMExcEditor.py:753 -#: flatcamEditors/FlatCAMExcEditor.py:1862 flatcamGUI/ObjectUI.py:556 +#: flatcamEditors/FlatCAMExcEditor.py:1870 flatcamGUI/ObjectUI.py:556 #: flatcamTools/ToolNonCopperClear.py:83 flatcamTools/ToolPaint.py:80 #: flatcamTools/ToolSolderPaste.py:81 msgid "Diameter" @@ -1200,8 +1228,8 @@ msgstr "" msgid "Generating CNC Code" msgstr "Generating CNC Code" -#: FlatCAMObj.py:2373 FlatCAMObj.py:4707 camlib.py:5023 camlib.py:5459 -#: camlib.py:5730 +#: FlatCAMObj.py:2373 FlatCAMObj.py:4707 camlib.py:5141 camlib.py:5577 +#: camlib.py:5848 msgid "" "[ERROR]The Toolchange X,Y field in Edit -> Preferences has to be in the " "format (x, y) \n" @@ -1318,7 +1346,7 @@ msgstr "" msgid "[ERROR_NOTCL] Cancelled. Empty file, it has no geometry..." msgstr "[ERROR_NOTCL] Cancelled. Empty file, it has no geometry..." -#: FlatCAMObj.py:4594 FlatCAMObj.py:4604 camlib.py:3292 camlib.py:3301 +#: FlatCAMObj.py:4594 FlatCAMObj.py:4604 camlib.py:3410 camlib.py:3419 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." @@ -1326,7 +1354,7 @@ msgstr "[ERROR_NOTCL] Scale factor has to be a number: integer or float." msgid "[success] Geometry Scale done." msgstr "[success] Geometry Scale done." -#: FlatCAMObj.py:4659 camlib.py:3363 +#: FlatCAMObj.py:4659 camlib.py:3481 msgid "" "[ERROR_NOTCL] An (x,y) pair of values are needed. Probable you entered only " "one value in the Offset field." @@ -1435,16 +1463,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:2673 camlib.py:2763 +#: camlib.py:2728 camlib.py:2832 #, python-format msgid "[WARNING] Coordinates missing, line ignored: %s" msgstr "[WARNING] Coordinates missing, line ignored: %s" -#: camlib.py:2674 camlib.py:2764 +#: camlib.py:2729 camlib.py:2833 msgid "[WARNING_NOTCL] GERBER file might be CORRUPT. Check the file !!!" msgstr "[WARNING_NOTCL] GERBER file might be CORRUPT. Check the file !!!" -#: camlib.py:2732 +#: camlib.py:2787 #, python-format msgid "" "[ERROR] Region does not have enough points. File will be processed but there " @@ -1453,7 +1481,7 @@ msgstr "" "[ERROR] Region does not have enough points. File will be processed but there " "are parser errors. Line number: %s" -#: camlib.py:3113 +#: camlib.py:3231 #, python-format msgid "" "[ERROR]Gerber Parser ERROR.\n" @@ -1462,20 +1490,20 @@ msgstr "" "[ERROR]Gerber Parser ERROR.\n" "%s:" -#: camlib.py:3330 +#: camlib.py:3448 msgid "[success] Gerber Scale done." msgstr "[success] Gerber Scale done." -#: camlib.py:3387 +#: camlib.py:3505 msgid "[success] Gerber Offset done." msgstr "[success] Gerber Offset done." -#: camlib.py:3769 +#: camlib.py:3887 #, python-format msgid "[ERROR_NOTCL] This is GCODE mark: %s" msgstr "[ERROR_NOTCL] This is GCODE mark: %s" -#: camlib.py:4313 +#: camlib.py:4431 #, python-brace-format msgid "" "[ERROR] Excellon Parser error.\n" @@ -1484,7 +1512,7 @@ msgstr "" "[ERROR] Excellon Parser error.\n" "Parsing Failed. Line {l_nr}: {line}\n" -#: camlib.py:4390 +#: camlib.py:4508 msgid "" "[WARNING] Excellon.create_geometry() -> a drill location was skipped due of " "not having a tool associated.\n" @@ -1494,12 +1522,12 @@ msgstr "" "not having a tool associated.\n" "Check the resulting GCode." -#: camlib.py:4932 +#: camlib.py:5050 #, python-format msgid "[ERROR] There is no such parameter: %s" msgstr "[ERROR] There is no such parameter: %s" -#: camlib.py:5002 +#: camlib.py:5120 msgid "" "[WARNING] The Cut Z parameter has positive value. It is the depth value to " "drill into material.\n" @@ -1513,22 +1541,22 @@ msgstr "" "therefore the app will convert the value to negative. Check the resulting " "CNC code (Gcode etc)." -#: camlib.py:5009 camlib.py:5482 camlib.py:5753 +#: camlib.py:5127 camlib.py:5600 camlib.py:5871 #, 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:5225 camlib.py:5320 camlib.py:5371 +#: camlib.py:5343 camlib.py:5438 camlib.py:5489 msgid "[ERROR_NOTCL] The loaded Excellon file has no drills ..." msgstr "[ERROR_NOTCL] The loaded Excellon file has no drills ..." -#: camlib.py:5325 +#: camlib.py:5443 msgid "[ERROR_NOTCL] Wrong optimization type selected." msgstr "[ERROR_NOTCL] Wrong optimization type selected." -#: camlib.py:5470 camlib.py:5741 +#: camlib.py:5588 camlib.py:5859 msgid "" "[ERROR_NOTCL] Cut_Z parameter is None or zero. Most likely a bad " "combinations of other parameters." @@ -1536,7 +1564,7 @@ msgstr "" "[ERROR_NOTCL] Cut_Z parameter is None or zero. Most likely a bad " "combinations of other parameters." -#: camlib.py:5475 camlib.py:5746 +#: camlib.py:5593 camlib.py:5864 msgid "" "[WARNING] The Cut Z parameter has positive value. It is the depth value to " "cut into material.\n" @@ -1550,11 +1578,11 @@ msgstr "" "therefore the app will convert the value to negative.Check the resulting CNC " "code (Gcode etc)." -#: camlib.py:5487 camlib.py:5758 +#: camlib.py:5605 camlib.py:5876 msgid "[ERROR_NOTCL] Travel Z parameter is None or zero." msgstr "[ERROR_NOTCL] Travel Z parameter is None or zero." -#: camlib.py:5491 camlib.py:5762 +#: camlib.py:5609 camlib.py:5880 msgid "" "[WARNING] The Travel Z parameter has negative value. It is the height value " "to travel between cuts.\n" @@ -1568,19 +1596,19 @@ msgstr "" "therefore the app will convert the value to positive.Check the resulting CNC " "code (Gcode etc)." -#: camlib.py:5498 camlib.py:5769 +#: camlib.py:5616 camlib.py:5887 #, 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:5628 +#: camlib.py:5746 #, python-format msgid "[ERROR]Expected a Geometry, got %s" msgstr "[ERROR]Expected a Geometry, got %s" -#: camlib.py:5634 +#: camlib.py:5752 msgid "" "[ERROR_NOTCL] Trying to generate a CNC Job from a Geometry object without " "solid_geometry." @@ -1588,7 +1616,7 @@ msgstr "" "[ERROR_NOTCL] Trying to generate a CNC Job from a Geometry object without " "solid_geometry." -#: camlib.py:5673 +#: camlib.py:5791 msgid "" "[ERROR_NOTCL] The Tool Offset value is too negative to use for the " "current_geometry.\n" @@ -1598,7 +1626,7 @@ msgstr "" "current_geometry.\n" "Raise the value (in module) and try again." -#: camlib.py:5895 +#: camlib.py:6013 msgid "[ERROR_NOTCL] There is no tool data in the SolderPaste geometry." msgstr "[ERROR_NOTCL] There is no tool data in the SolderPaste geometry." @@ -1845,7 +1873,7 @@ msgstr "Pitch = Distance between elements of the array." #: flatcamEditors/FlatCAMGeoEditor.py:663 #: flatcamEditors/FlatCAMGrbEditor.py:1128 #: flatcamEditors/FlatCAMGrbEditor.py:1164 -#: flatcamEditors/FlatCAMGrbEditor.py:2797 flatcamTools/ToolTransform.py:68 +#: flatcamEditors/FlatCAMGrbEditor.py:2822 flatcamTools/ToolTransform.py:68 msgid "Angle:" msgstr "Angle:" @@ -1890,7 +1918,7 @@ msgid "[success] Added new tool with dia: {dia} {units}" msgstr "[success] Added new tool with dia: {dia} {units}" #: flatcamEditors/FlatCAMExcEditor.py:1453 -#: flatcamEditors/FlatCAMGrbEditor.py:1623 +#: flatcamEditors/FlatCAMGrbEditor.py:1638 msgid "[WARNING_NOTCL] Select a tool in Tool Table" msgstr "[WARNING_NOTCL] Select a tool in Tool Table" @@ -1899,7 +1927,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:1916 +#: flatcamEditors/FlatCAMExcEditor.py:1924 msgid "" "[ERROR_NOTCL] There are no Tools definitions in the file. Aborting Excellon " "creation." @@ -1907,24 +1935,24 @@ msgstr "" "[ERROR_NOTCL] There are no Tools definitions in the file. Aborting Excellon " "creation." -#: flatcamEditors/FlatCAMExcEditor.py:1925 +#: flatcamEditors/FlatCAMExcEditor.py:1933 msgid "Creating Excellon." msgstr "Creating Excellon." -#: flatcamEditors/FlatCAMExcEditor.py:1934 +#: flatcamEditors/FlatCAMExcEditor.py:1942 msgid "[success] Excellon editing finished." msgstr "[success] Excellon editing finished." -#: flatcamEditors/FlatCAMExcEditor.py:1951 +#: flatcamEditors/FlatCAMExcEditor.py:1959 msgid "[WARNING_NOTCL] Cancelled. There is no Tool/Drill selected" msgstr "[WARNING_NOTCL] Cancelled. There is no Tool/Drill selected" -#: flatcamEditors/FlatCAMExcEditor.py:2450 +#: flatcamEditors/FlatCAMExcEditor.py:2458 msgid "[success] Done. Drill(s) deleted." msgstr "[success] Done. Drill(s) deleted." -#: flatcamEditors/FlatCAMExcEditor.py:2520 -#: flatcamEditors/FlatCAMGrbEditor.py:2594 +#: flatcamEditors/FlatCAMExcEditor.py:2528 +#: flatcamEditors/FlatCAMGrbEditor.py:2619 msgid "Click on the circular array Center position" msgstr "Click on the circular array Center position" @@ -1988,7 +2016,7 @@ msgstr "Buffer Tool" #: flatcamEditors/FlatCAMGeoEditor.py:2523 #: flatcamEditors/FlatCAMGeoEditor.py:2549 #: flatcamEditors/FlatCAMGeoEditor.py:2575 -#: flatcamEditors/FlatCAMGrbEditor.py:2637 +#: flatcamEditors/FlatCAMGrbEditor.py:2662 msgid "" "[WARNING_NOTCL] Buffer distance value is missing or wrong format. Add it and " "retry." @@ -2004,13 +2032,13 @@ msgstr "Text Tool" msgid "Tool" msgstr "Tool" -#: flatcamEditors/FlatCAMGeoEditor.py:429 flatcamGUI/FlatCAMGUI.py:3832 -#: flatcamGUI/FlatCAMGUI.py:5038 flatcamGUI/FlatCAMGUI.py:5314 -#: flatcamGUI/FlatCAMGUI.py:5454 flatcamGUI/ObjectUI.py:260 +#: flatcamEditors/FlatCAMGeoEditor.py:429 flatcamGUI/FlatCAMGUI.py:3833 +#: flatcamGUI/FlatCAMGUI.py:5039 flatcamGUI/FlatCAMGUI.py:5315 +#: flatcamGUI/FlatCAMGUI.py:5455 flatcamGUI/ObjectUI.py:260 msgid "Tool dia:" msgstr "Tool dia:" -#: flatcamEditors/FlatCAMGeoEditor.py:431 flatcamGUI/FlatCAMGUI.py:5456 +#: flatcamEditors/FlatCAMGeoEditor.py:431 flatcamGUI/FlatCAMGUI.py:5457 msgid "" "Diameter of the tool to\n" "be used in the operation." @@ -2018,8 +2046,8 @@ msgstr "" "Diameter of the tool to\n" "be used in the operation." -#: flatcamEditors/FlatCAMGeoEditor.py:440 flatcamGUI/FlatCAMGUI.py:5220 -#: flatcamGUI/FlatCAMGUI.py:5465 flatcamTools/ToolNonCopperClear.py:165 +#: flatcamEditors/FlatCAMGeoEditor.py:440 flatcamGUI/FlatCAMGUI.py:5221 +#: flatcamGUI/FlatCAMGUI.py:5466 flatcamTools/ToolNonCopperClear.py:165 #: flatcamTools/ToolPaint.py:160 msgid "Overlap Rate:" msgstr "Overlap Rate:" @@ -2049,14 +2077,14 @@ msgstr "" "Higher values = slow processing and slow execution on CNC\n" "due of too many paths." -#: flatcamEditors/FlatCAMGeoEditor.py:458 flatcamGUI/FlatCAMGUI.py:5236 -#: flatcamGUI/FlatCAMGUI.py:5322 flatcamGUI/FlatCAMGUI.py:5475 +#: flatcamEditors/FlatCAMGeoEditor.py:458 flatcamGUI/FlatCAMGUI.py:5237 +#: flatcamGUI/FlatCAMGUI.py:5323 flatcamGUI/FlatCAMGUI.py:5476 #: flatcamTools/ToolCutOut.py:86 flatcamTools/ToolNonCopperClear.py:181 #: flatcamTools/ToolPaint.py:177 msgid "Margin:" msgstr "Margin:" -#: flatcamEditors/FlatCAMGeoEditor.py:460 flatcamGUI/FlatCAMGUI.py:5477 +#: flatcamEditors/FlatCAMGeoEditor.py:460 flatcamGUI/FlatCAMGUI.py:5478 #: flatcamTools/ToolPaint.py:179 msgid "" "Distance by which to avoid\n" @@ -2067,13 +2095,13 @@ msgstr "" "the edges of the polygon to\n" "be painted." -#: flatcamEditors/FlatCAMGeoEditor.py:469 flatcamGUI/FlatCAMGUI.py:5245 -#: flatcamGUI/FlatCAMGUI.py:5486 flatcamTools/ToolNonCopperClear.py:190 +#: flatcamEditors/FlatCAMGeoEditor.py:469 flatcamGUI/FlatCAMGUI.py:5246 +#: flatcamGUI/FlatCAMGUI.py:5487 flatcamTools/ToolNonCopperClear.py:190 #: flatcamTools/ToolPaint.py:188 msgid "Method:" msgstr "Method:" -#: flatcamEditors/FlatCAMGeoEditor.py:471 flatcamGUI/FlatCAMGUI.py:5488 +#: flatcamEditors/FlatCAMGeoEditor.py:471 flatcamGUI/FlatCAMGUI.py:5489 msgid "" "Algorithm to paint the polygon:
Standard: Fixed step inwards." "
Seed-based: Outwards from seed." @@ -2081,29 +2109,29 @@ msgstr "" "Algorithm to paint the polygon:
Standard: Fixed step inwards." "
Seed-based: Outwards from seed." -#: flatcamEditors/FlatCAMGeoEditor.py:477 flatcamGUI/FlatCAMGUI.py:5254 -#: flatcamGUI/FlatCAMGUI.py:5494 +#: flatcamEditors/FlatCAMGeoEditor.py:477 flatcamGUI/FlatCAMGUI.py:5255 +#: flatcamGUI/FlatCAMGUI.py:5495 msgid "Standard" msgstr "Standard" -#: flatcamEditors/FlatCAMGeoEditor.py:478 flatcamGUI/FlatCAMGUI.py:5255 -#: flatcamGUI/FlatCAMGUI.py:5495 +#: flatcamEditors/FlatCAMGeoEditor.py:478 flatcamGUI/FlatCAMGUI.py:5256 +#: flatcamGUI/FlatCAMGUI.py:5496 msgid "Seed-based" msgstr "Seed-based" -#: flatcamEditors/FlatCAMGeoEditor.py:479 flatcamGUI/FlatCAMGUI.py:5256 -#: flatcamGUI/FlatCAMGUI.py:5496 +#: flatcamEditors/FlatCAMGeoEditor.py:479 flatcamGUI/FlatCAMGUI.py:5257 +#: flatcamGUI/FlatCAMGUI.py:5497 msgid "Straight lines" msgstr "Straight lines" -#: flatcamEditors/FlatCAMGeoEditor.py:484 flatcamGUI/FlatCAMGUI.py:5261 -#: flatcamGUI/FlatCAMGUI.py:5501 flatcamTools/ToolNonCopperClear.py:206 +#: flatcamEditors/FlatCAMGeoEditor.py:484 flatcamGUI/FlatCAMGUI.py:5262 +#: flatcamGUI/FlatCAMGUI.py:5502 flatcamTools/ToolNonCopperClear.py:206 #: flatcamTools/ToolPaint.py:204 msgid "Connect:" msgstr "Connect:" -#: flatcamEditors/FlatCAMGeoEditor.py:486 flatcamGUI/FlatCAMGUI.py:5263 -#: flatcamGUI/FlatCAMGUI.py:5503 flatcamTools/ToolNonCopperClear.py:208 +#: flatcamEditors/FlatCAMGeoEditor.py:486 flatcamGUI/FlatCAMGUI.py:5264 +#: flatcamGUI/FlatCAMGUI.py:5504 flatcamTools/ToolNonCopperClear.py:208 #: flatcamTools/ToolPaint.py:206 msgid "" "Draw lines between resulting\n" @@ -2112,14 +2140,14 @@ msgstr "" "Draw lines between resulting\n" "segments to minimize tool lifts." -#: flatcamEditors/FlatCAMGeoEditor.py:493 flatcamGUI/FlatCAMGUI.py:5270 -#: flatcamGUI/FlatCAMGUI.py:5511 flatcamTools/ToolNonCopperClear.py:215 +#: flatcamEditors/FlatCAMGeoEditor.py:493 flatcamGUI/FlatCAMGUI.py:5271 +#: flatcamGUI/FlatCAMGUI.py:5512 flatcamTools/ToolNonCopperClear.py:215 #: flatcamTools/ToolPaint.py:213 msgid "Contour:" msgstr "Contour:" -#: flatcamEditors/FlatCAMGeoEditor.py:495 flatcamGUI/FlatCAMGUI.py:5272 -#: flatcamGUI/FlatCAMGUI.py:5513 flatcamTools/ToolNonCopperClear.py:217 +#: flatcamEditors/FlatCAMGeoEditor.py:495 flatcamGUI/FlatCAMGUI.py:5273 +#: flatcamGUI/FlatCAMGUI.py:5514 flatcamTools/ToolNonCopperClear.py:217 #: flatcamTools/ToolPaint.py:215 msgid "" "Cut around the perimeter of the polygon\n" @@ -2176,53 +2204,53 @@ msgstr "Tools" #: flatcamEditors/FlatCAMGeoEditor.py:615 #: flatcamEditors/FlatCAMGeoEditor.py:988 -#: flatcamEditors/FlatCAMGrbEditor.py:2749 -#: flatcamEditors/FlatCAMGrbEditor.py:3133 flatcamGUI/FlatCAMGUI.py:638 +#: flatcamEditors/FlatCAMGrbEditor.py:2774 +#: flatcamEditors/FlatCAMGrbEditor.py:3158 flatcamGUI/FlatCAMGUI.py:638 #: flatcamGUI/FlatCAMGUI.py:1807 flatcamTools/ToolTransform.py:398 msgid "Transform Tool" msgstr "Transform Tool" #: flatcamEditors/FlatCAMGeoEditor.py:616 #: flatcamEditors/FlatCAMGeoEditor.py:677 -#: flatcamEditors/FlatCAMGrbEditor.py:2750 -#: flatcamEditors/FlatCAMGrbEditor.py:2811 flatcamTools/ToolTransform.py:24 +#: flatcamEditors/FlatCAMGrbEditor.py:2775 +#: flatcamEditors/FlatCAMGrbEditor.py:2836 flatcamTools/ToolTransform.py:24 #: flatcamTools/ToolTransform.py:82 msgid "Rotate" msgstr "Rotate" #: flatcamEditors/FlatCAMGeoEditor.py:617 -#: flatcamEditors/FlatCAMGrbEditor.py:2751 flatcamTools/ToolTransform.py:25 +#: flatcamEditors/FlatCAMGrbEditor.py:2776 flatcamTools/ToolTransform.py:25 msgid "Skew/Shear" msgstr "Skew/Shear" #: flatcamEditors/FlatCAMGeoEditor.py:618 #: flatcamEditors/FlatCAMGrbEditor.py:1049 -#: flatcamEditors/FlatCAMGrbEditor.py:2752 flatcamGUI/FlatCAMGUI.py:696 +#: flatcamEditors/FlatCAMGrbEditor.py:2777 flatcamGUI/FlatCAMGUI.py:696 #: flatcamGUI/FlatCAMGUI.py:1868 flatcamGUI/ObjectUI.py:100 #: flatcamTools/ToolTransform.py:26 msgid "Scale" msgstr "Scale" #: flatcamEditors/FlatCAMGeoEditor.py:619 -#: flatcamEditors/FlatCAMGrbEditor.py:2753 flatcamTools/ToolTransform.py:27 +#: flatcamEditors/FlatCAMGrbEditor.py:2778 flatcamTools/ToolTransform.py:27 msgid "Mirror (Flip)" msgstr "Mirror (Flip)" #: flatcamEditors/FlatCAMGeoEditor.py:620 -#: flatcamEditors/FlatCAMGrbEditor.py:2754 flatcamGUI/ObjectUI.py:127 +#: flatcamEditors/FlatCAMGrbEditor.py:2779 flatcamGUI/ObjectUI.py:127 #: flatcamGUI/ObjectUI.py:888 flatcamGUI/ObjectUI.py:1446 #: flatcamTools/ToolTransform.py:28 msgid "Offset" msgstr "Offset" #: flatcamEditors/FlatCAMGeoEditor.py:631 -#: flatcamEditors/FlatCAMGrbEditor.py:2765 +#: flatcamEditors/FlatCAMGrbEditor.py:2790 #, python-format msgid "Editor %s" msgstr "Editor %s" #: flatcamEditors/FlatCAMGeoEditor.py:665 -#: flatcamEditors/FlatCAMGrbEditor.py:2799 flatcamTools/ToolTransform.py:70 +#: flatcamEditors/FlatCAMGrbEditor.py:2824 flatcamTools/ToolTransform.py:70 msgid "" "Angle for Rotation action, in degrees.\n" "Float number between -360 and 359.\n" @@ -2235,7 +2263,7 @@ msgstr "" "Negative numbers for CCW motion." #: flatcamEditors/FlatCAMGeoEditor.py:679 -#: flatcamEditors/FlatCAMGrbEditor.py:2813 +#: flatcamEditors/FlatCAMGrbEditor.py:2838 msgid "" "Rotate the selected shape(s).\n" "The point of reference is the middle of\n" @@ -2246,14 +2274,14 @@ msgstr "" "the bounding box for all selected shapes." #: flatcamEditors/FlatCAMGeoEditor.py:702 -#: flatcamEditors/FlatCAMGrbEditor.py:2836 flatcamTools/ToolTransform.py:107 +#: flatcamEditors/FlatCAMGrbEditor.py:2861 flatcamTools/ToolTransform.py:107 msgid "Angle X:" msgstr "Angle X:" #: flatcamEditors/FlatCAMGeoEditor.py:704 #: flatcamEditors/FlatCAMGeoEditor.py:722 -#: flatcamEditors/FlatCAMGrbEditor.py:2838 -#: flatcamEditors/FlatCAMGrbEditor.py:2856 flatcamTools/ToolTransform.py:109 +#: flatcamEditors/FlatCAMGrbEditor.py:2863 +#: flatcamEditors/FlatCAMGrbEditor.py:2881 flatcamTools/ToolTransform.py:109 #: flatcamTools/ToolTransform.py:127 msgid "" "Angle for Skew action, in degrees.\n" @@ -2263,14 +2291,14 @@ msgstr "" "Float number between -360 and 359." #: flatcamEditors/FlatCAMGeoEditor.py:713 -#: flatcamEditors/FlatCAMGrbEditor.py:2847 flatcamTools/ToolTransform.py:118 +#: flatcamEditors/FlatCAMGrbEditor.py:2872 flatcamTools/ToolTransform.py:118 msgid "Skew X" msgstr "Skew X" #: flatcamEditors/FlatCAMGeoEditor.py:715 #: flatcamEditors/FlatCAMGeoEditor.py:733 -#: flatcamEditors/FlatCAMGrbEditor.py:2849 -#: flatcamEditors/FlatCAMGrbEditor.py:2867 +#: flatcamEditors/FlatCAMGrbEditor.py:2874 +#: flatcamEditors/FlatCAMGrbEditor.py:2892 msgid "" "Skew/shear the selected shape(s).\n" "The point of reference is the middle of\n" @@ -2281,34 +2309,34 @@ msgstr "" "the bounding box for all selected shapes." #: flatcamEditors/FlatCAMGeoEditor.py:720 -#: flatcamEditors/FlatCAMGrbEditor.py:2854 flatcamTools/ToolTransform.py:125 +#: flatcamEditors/FlatCAMGrbEditor.py:2879 flatcamTools/ToolTransform.py:125 msgid "Angle Y:" msgstr "Angle Y:" #: flatcamEditors/FlatCAMGeoEditor.py:731 -#: flatcamEditors/FlatCAMGrbEditor.py:2865 flatcamTools/ToolTransform.py:136 +#: flatcamEditors/FlatCAMGrbEditor.py:2890 flatcamTools/ToolTransform.py:136 msgid "Skew Y" msgstr "Skew Y" #: flatcamEditors/FlatCAMGeoEditor.py:759 -#: flatcamEditors/FlatCAMGrbEditor.py:2893 flatcamTools/ToolTransform.py:164 +#: flatcamEditors/FlatCAMGrbEditor.py:2918 flatcamTools/ToolTransform.py:164 msgid "Factor X:" msgstr "Factor X:" #: flatcamEditors/FlatCAMGeoEditor.py:761 -#: flatcamEditors/FlatCAMGrbEditor.py:2895 flatcamTools/ToolTransform.py:166 +#: flatcamEditors/FlatCAMGrbEditor.py:2920 flatcamTools/ToolTransform.py:166 msgid "Factor for Scale action over X axis." msgstr "Factor for Scale action over X axis." #: flatcamEditors/FlatCAMGeoEditor.py:769 -#: flatcamEditors/FlatCAMGrbEditor.py:2903 flatcamTools/ToolTransform.py:174 +#: flatcamEditors/FlatCAMGrbEditor.py:2928 flatcamTools/ToolTransform.py:174 msgid "Scale X" msgstr "Scale X" #: flatcamEditors/FlatCAMGeoEditor.py:771 #: flatcamEditors/FlatCAMGeoEditor.py:788 -#: flatcamEditors/FlatCAMGrbEditor.py:2905 -#: flatcamEditors/FlatCAMGrbEditor.py:2922 +#: flatcamEditors/FlatCAMGrbEditor.py:2930 +#: flatcamEditors/FlatCAMGrbEditor.py:2947 msgid "" "Scale the selected shape(s).\n" "The point of reference depends on \n" @@ -2319,28 +2347,28 @@ msgstr "" "the Scale reference checkbox state." #: flatcamEditors/FlatCAMGeoEditor.py:776 -#: flatcamEditors/FlatCAMGrbEditor.py:2910 flatcamTools/ToolTransform.py:181 +#: flatcamEditors/FlatCAMGrbEditor.py:2935 flatcamTools/ToolTransform.py:181 msgid "Factor Y:" msgstr "Factor Y:" #: flatcamEditors/FlatCAMGeoEditor.py:778 -#: flatcamEditors/FlatCAMGrbEditor.py:2912 flatcamTools/ToolTransform.py:183 +#: flatcamEditors/FlatCAMGrbEditor.py:2937 flatcamTools/ToolTransform.py:183 msgid "Factor for Scale action over Y axis." msgstr "Factor for Scale action over Y axis." #: flatcamEditors/FlatCAMGeoEditor.py:786 -#: flatcamEditors/FlatCAMGrbEditor.py:2920 flatcamTools/ToolTransform.py:191 +#: flatcamEditors/FlatCAMGrbEditor.py:2945 flatcamTools/ToolTransform.py:191 msgid "Scale Y" msgstr "Scale Y" #: flatcamEditors/FlatCAMGeoEditor.py:795 -#: flatcamEditors/FlatCAMGrbEditor.py:2929 flatcamGUI/FlatCAMGUI.py:5860 +#: flatcamEditors/FlatCAMGrbEditor.py:2954 flatcamGUI/FlatCAMGUI.py:5861 #: flatcamTools/ToolTransform.py:200 msgid "Link" msgstr "Link" #: flatcamEditors/FlatCAMGeoEditor.py:797 -#: flatcamEditors/FlatCAMGrbEditor.py:2931 +#: flatcamEditors/FlatCAMGrbEditor.py:2956 msgid "" "Scale the selected shape(s)\n" "using the Scale Factor X for both axis." @@ -2349,13 +2377,13 @@ msgstr "" "using the Scale Factor X for both axis." #: flatcamEditors/FlatCAMGeoEditor.py:803 -#: flatcamEditors/FlatCAMGrbEditor.py:2937 flatcamGUI/FlatCAMGUI.py:5868 +#: flatcamEditors/FlatCAMGrbEditor.py:2962 flatcamGUI/FlatCAMGUI.py:5869 #: flatcamTools/ToolTransform.py:208 msgid "Scale Reference" msgstr "Scale Reference" #: flatcamEditors/FlatCAMGeoEditor.py:805 -#: flatcamEditors/FlatCAMGrbEditor.py:2939 +#: flatcamEditors/FlatCAMGrbEditor.py:2964 msgid "" "Scale the selected shape(s)\n" "using the origin reference when checked,\n" @@ -2368,24 +2396,24 @@ msgstr "" "of the selected shapes when unchecked." #: flatcamEditors/FlatCAMGeoEditor.py:833 -#: flatcamEditors/FlatCAMGrbEditor.py:2968 flatcamTools/ToolTransform.py:238 +#: flatcamEditors/FlatCAMGrbEditor.py:2993 flatcamTools/ToolTransform.py:238 msgid "Value X:" msgstr "Value X:" #: flatcamEditors/FlatCAMGeoEditor.py:835 -#: flatcamEditors/FlatCAMGrbEditor.py:2970 flatcamTools/ToolTransform.py:240 +#: flatcamEditors/FlatCAMGrbEditor.py:2995 flatcamTools/ToolTransform.py:240 msgid "Value for Offset action on X axis." msgstr "Value for Offset action on X axis." #: flatcamEditors/FlatCAMGeoEditor.py:843 -#: flatcamEditors/FlatCAMGrbEditor.py:2978 flatcamTools/ToolTransform.py:248 +#: flatcamEditors/FlatCAMGrbEditor.py:3003 flatcamTools/ToolTransform.py:248 msgid "Offset X" msgstr "Offset X" #: flatcamEditors/FlatCAMGeoEditor.py:845 #: flatcamEditors/FlatCAMGeoEditor.py:863 -#: flatcamEditors/FlatCAMGrbEditor.py:2980 -#: flatcamEditors/FlatCAMGrbEditor.py:2998 +#: flatcamEditors/FlatCAMGrbEditor.py:3005 +#: flatcamEditors/FlatCAMGrbEditor.py:3023 msgid "" "Offset the selected shape(s).\n" "The point of reference is the middle of\n" @@ -2396,29 +2424,29 @@ msgstr "" "the bounding box for all selected shapes.\n" #: flatcamEditors/FlatCAMGeoEditor.py:851 -#: flatcamEditors/FlatCAMGrbEditor.py:2986 flatcamTools/ToolTransform.py:255 +#: flatcamEditors/FlatCAMGrbEditor.py:3011 flatcamTools/ToolTransform.py:255 msgid "Value Y:" msgstr "Value Y:" #: flatcamEditors/FlatCAMGeoEditor.py:853 -#: flatcamEditors/FlatCAMGrbEditor.py:2988 flatcamTools/ToolTransform.py:257 +#: flatcamEditors/FlatCAMGrbEditor.py:3013 flatcamTools/ToolTransform.py:257 msgid "Value for Offset action on Y axis." msgstr "Value for Offset action on Y axis." #: flatcamEditors/FlatCAMGeoEditor.py:861 -#: flatcamEditors/FlatCAMGrbEditor.py:2996 flatcamTools/ToolTransform.py:265 +#: flatcamEditors/FlatCAMGrbEditor.py:3021 flatcamTools/ToolTransform.py:265 msgid "Offset Y" msgstr "Offset Y" #: flatcamEditors/FlatCAMGeoEditor.py:892 -#: flatcamEditors/FlatCAMGrbEditor.py:3027 flatcamTools/ToolTransform.py:295 +#: flatcamEditors/FlatCAMGrbEditor.py:3052 flatcamTools/ToolTransform.py:295 msgid "Flip on X" msgstr "Flip on X" #: flatcamEditors/FlatCAMGeoEditor.py:894 #: flatcamEditors/FlatCAMGeoEditor.py:902 -#: flatcamEditors/FlatCAMGrbEditor.py:3029 -#: flatcamEditors/FlatCAMGrbEditor.py:3037 +#: flatcamEditors/FlatCAMGrbEditor.py:3054 +#: flatcamEditors/FlatCAMGrbEditor.py:3062 msgid "" "Flip the selected shape(s) over the X axis.\n" "Does not create a new shape." @@ -2427,17 +2455,17 @@ msgstr "" "Does not create a new shape." #: flatcamEditors/FlatCAMGeoEditor.py:900 -#: flatcamEditors/FlatCAMGrbEditor.py:3035 flatcamTools/ToolTransform.py:303 +#: flatcamEditors/FlatCAMGrbEditor.py:3060 flatcamTools/ToolTransform.py:303 msgid "Flip on Y" msgstr "Flip on Y" #: flatcamEditors/FlatCAMGeoEditor.py:909 -#: flatcamEditors/FlatCAMGrbEditor.py:3044 flatcamTools/ToolTransform.py:312 +#: flatcamEditors/FlatCAMGrbEditor.py:3069 flatcamTools/ToolTransform.py:312 msgid "Ref Pt" msgstr "Ref Pt" #: flatcamEditors/FlatCAMGeoEditor.py:911 -#: flatcamEditors/FlatCAMGrbEditor.py:3046 +#: flatcamEditors/FlatCAMGrbEditor.py:3071 msgid "" "Flip the selected shape(s)\n" "around the point in Point Entry Field.\n" @@ -2460,12 +2488,12 @@ msgstr "" "Point Entry field and click Flip on X(Y)" #: flatcamEditors/FlatCAMGeoEditor.py:923 -#: flatcamEditors/FlatCAMGrbEditor.py:3058 flatcamTools/ToolTransform.py:325 +#: flatcamEditors/FlatCAMGrbEditor.py:3083 flatcamTools/ToolTransform.py:325 msgid "Point:" msgstr "Point:" #: flatcamEditors/FlatCAMGeoEditor.py:925 -#: flatcamEditors/FlatCAMGrbEditor.py:3060 +#: flatcamEditors/FlatCAMGrbEditor.py:3085 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" @@ -2476,7 +2504,7 @@ msgstr "" "the 'y' in (x, y) will be used when using Flip on Y." #: flatcamEditors/FlatCAMGeoEditor.py:935 -#: flatcamEditors/FlatCAMGrbEditor.py:3070 flatcamGUI/ObjectUI.py:988 +#: flatcamEditors/FlatCAMGrbEditor.py:3095 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:478 @@ -2485,7 +2513,7 @@ msgid "Add" msgstr "Add" #: flatcamEditors/FlatCAMGeoEditor.py:937 -#: flatcamEditors/FlatCAMGrbEditor.py:3072 flatcamTools/ToolTransform.py:339 +#: flatcamEditors/FlatCAMGrbEditor.py:3097 flatcamTools/ToolTransform.py:339 msgid "" "The point coordinates can be captured by\n" "left click on canvas together with pressing\n" @@ -2496,236 +2524,236 @@ msgstr "" "SHIFT key. Then click Add button to insert." #: flatcamEditors/FlatCAMGeoEditor.py:1052 -#: flatcamEditors/FlatCAMGrbEditor.py:3197 +#: flatcamEditors/FlatCAMGrbEditor.py:3222 msgid "[WARNING_NOTCL] Transformation cancelled. No shape selected." msgstr "[WARNING_NOTCL] Transformation cancelled. No shape selected." #: flatcamEditors/FlatCAMGeoEditor.py:1073 -#: flatcamEditors/FlatCAMGrbEditor.py:3217 flatcamTools/ToolTransform.py:468 +#: flatcamEditors/FlatCAMGrbEditor.py:3242 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:1110 -#: flatcamEditors/FlatCAMGrbEditor.py:3254 flatcamTools/ToolTransform.py:502 +#: flatcamEditors/FlatCAMGrbEditor.py:3279 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:1131 -#: flatcamEditors/FlatCAMGrbEditor.py:3275 flatcamTools/ToolTransform.py:520 +#: flatcamEditors/FlatCAMGrbEditor.py:3300 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:1152 -#: flatcamEditors/FlatCAMGrbEditor.py:3296 flatcamTools/ToolTransform.py:538 +#: flatcamEditors/FlatCAMGrbEditor.py:3321 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:1189 -#: flatcamEditors/FlatCAMGrbEditor.py:3333 flatcamTools/ToolTransform.py:572 +#: flatcamEditors/FlatCAMGrbEditor.py:3358 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:1221 -#: flatcamEditors/FlatCAMGrbEditor.py:3365 flatcamTools/ToolTransform.py:601 +#: flatcamEditors/FlatCAMGrbEditor.py:3390 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:1242 -#: flatcamEditors/FlatCAMGrbEditor.py:3386 flatcamTools/ToolTransform.py:619 +#: flatcamEditors/FlatCAMGrbEditor.py:3411 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:1260 -#: flatcamEditors/FlatCAMGrbEditor.py:3404 +#: flatcamEditors/FlatCAMGrbEditor.py:3429 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:1263 -#: flatcamEditors/FlatCAMGrbEditor.py:3407 flatcamTools/ToolTransform.py:640 +#: flatcamEditors/FlatCAMGrbEditor.py:3432 flatcamTools/ToolTransform.py:640 msgid "Appying Rotate" msgstr "Appying Rotate" #: flatcamEditors/FlatCAMGeoEditor.py:1291 -#: flatcamEditors/FlatCAMGrbEditor.py:3435 +#: flatcamEditors/FlatCAMGrbEditor.py:3460 msgid "[success] Done. Rotate completed." msgstr "[success] Done. Rotate completed." #: flatcamEditors/FlatCAMGeoEditor.py:1307 -#: flatcamEditors/FlatCAMGrbEditor.py:3451 +#: flatcamEditors/FlatCAMGrbEditor.py:3476 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:1310 -#: flatcamEditors/FlatCAMGrbEditor.py:3454 flatcamTools/ToolTransform.py:692 +#: flatcamEditors/FlatCAMGrbEditor.py:3479 flatcamTools/ToolTransform.py:692 msgid "Applying Flip" msgstr "Applying Flip" #: flatcamEditors/FlatCAMGeoEditor.py:1340 -#: flatcamEditors/FlatCAMGrbEditor.py:3484 flatcamTools/ToolTransform.py:735 +#: flatcamEditors/FlatCAMGrbEditor.py:3509 flatcamTools/ToolTransform.py:735 msgid "[success] Flip on the Y axis done ..." msgstr "[success] Flip on the Y axis done ..." #: flatcamEditors/FlatCAMGeoEditor.py:1343 -#: flatcamEditors/FlatCAMGrbEditor.py:3487 flatcamTools/ToolTransform.py:745 +#: flatcamEditors/FlatCAMGrbEditor.py:3512 flatcamTools/ToolTransform.py:745 msgid "[success] Flip on the X axis done ..." msgstr "[success] Flip on the X axis done ..." #: flatcamEditors/FlatCAMGeoEditor.py:1362 -#: flatcamEditors/FlatCAMGrbEditor.py:3506 +#: flatcamEditors/FlatCAMGrbEditor.py:3531 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:1365 -#: flatcamEditors/FlatCAMGrbEditor.py:3509 flatcamTools/ToolTransform.py:762 +#: flatcamEditors/FlatCAMGrbEditor.py:3534 flatcamTools/ToolTransform.py:762 msgid "Applying Skew" msgstr "Applying Skew" #: flatcamEditors/FlatCAMGeoEditor.py:1390 -#: flatcamEditors/FlatCAMGrbEditor.py:3534 flatcamTools/ToolTransform.py:793 +#: flatcamEditors/FlatCAMGrbEditor.py:3559 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:1394 -#: flatcamEditors/FlatCAMGrbEditor.py:3538 flatcamTools/ToolTransform.py:797 +#: flatcamEditors/FlatCAMGrbEditor.py:3563 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:1405 -#: flatcamEditors/FlatCAMGrbEditor.py:3549 +#: flatcamEditors/FlatCAMGrbEditor.py:3574 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:1408 -#: flatcamEditors/FlatCAMGrbEditor.py:3552 flatcamTools/ToolTransform.py:811 +#: flatcamEditors/FlatCAMGrbEditor.py:3577 flatcamTools/ToolTransform.py:811 msgid "Applying Scale" msgstr "Applying Scale" #: flatcamEditors/FlatCAMGeoEditor.py:1441 -#: flatcamEditors/FlatCAMGrbEditor.py:3585 flatcamTools/ToolTransform.py:849 +#: flatcamEditors/FlatCAMGrbEditor.py:3610 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:1444 -#: flatcamEditors/FlatCAMGrbEditor.py:3588 flatcamTools/ToolTransform.py:852 +#: flatcamEditors/FlatCAMGrbEditor.py:3613 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:1453 -#: flatcamEditors/FlatCAMGrbEditor.py:3597 +#: flatcamEditors/FlatCAMGrbEditor.py:3622 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:1456 -#: flatcamEditors/FlatCAMGrbEditor.py:3600 flatcamTools/ToolTransform.py:864 +#: flatcamEditors/FlatCAMGrbEditor.py:3625 flatcamTools/ToolTransform.py:864 msgid "Applying Offset" msgstr "Applying Offset" #: flatcamEditors/FlatCAMGeoEditor.py:1480 -#: flatcamEditors/FlatCAMGrbEditor.py:3624 flatcamTools/ToolTransform.py:894 +#: flatcamEditors/FlatCAMGrbEditor.py:3649 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:1484 -#: flatcamEditors/FlatCAMGrbEditor.py:3628 flatcamTools/ToolTransform.py:898 +#: flatcamEditors/FlatCAMGrbEditor.py:3653 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:1488 -#: flatcamEditors/FlatCAMGrbEditor.py:3632 +#: flatcamEditors/FlatCAMGrbEditor.py:3657 msgid "Rotate ..." msgstr "Rotate ..." #: flatcamEditors/FlatCAMGeoEditor.py:1489 #: flatcamEditors/FlatCAMGeoEditor.py:1546 #: flatcamEditors/FlatCAMGeoEditor.py:1563 -#: flatcamEditors/FlatCAMGrbEditor.py:3633 -#: flatcamEditors/FlatCAMGrbEditor.py:3690 -#: flatcamEditors/FlatCAMGrbEditor.py:3707 +#: flatcamEditors/FlatCAMGrbEditor.py:3658 +#: flatcamEditors/FlatCAMGrbEditor.py:3715 +#: flatcamEditors/FlatCAMGrbEditor.py:3732 msgid "Enter an Angle Value (degrees):" msgstr "Enter an Angle Value (degrees):" #: flatcamEditors/FlatCAMGeoEditor.py:1498 -#: flatcamEditors/FlatCAMGrbEditor.py:3642 +#: flatcamEditors/FlatCAMGrbEditor.py:3667 msgid "[success] Geometry shape rotate done..." msgstr "[success] Geometry shape rotate done..." #: flatcamEditors/FlatCAMGeoEditor.py:1503 -#: flatcamEditors/FlatCAMGrbEditor.py:3647 +#: flatcamEditors/FlatCAMGrbEditor.py:3672 msgid "[WARNING_NOTCL] Geometry shape rotate cancelled..." msgstr "[WARNING_NOTCL] Geometry shape rotate cancelled..." #: flatcamEditors/FlatCAMGeoEditor.py:1509 -#: flatcamEditors/FlatCAMGrbEditor.py:3653 +#: flatcamEditors/FlatCAMGrbEditor.py:3678 msgid "Offset on X axis ..." msgstr "Offset on X axis ..." #: flatcamEditors/FlatCAMGeoEditor.py:1510 #: flatcamEditors/FlatCAMGeoEditor.py:1529 -#: flatcamEditors/FlatCAMGrbEditor.py:3654 -#: flatcamEditors/FlatCAMGrbEditor.py:3673 +#: flatcamEditors/FlatCAMGrbEditor.py:3679 +#: flatcamEditors/FlatCAMGrbEditor.py:3698 #, python-format msgid "Enter a distance Value (%s):" msgstr "Enter a distance Value (%s):" #: flatcamEditors/FlatCAMGeoEditor.py:1519 -#: flatcamEditors/FlatCAMGrbEditor.py:3663 +#: flatcamEditors/FlatCAMGrbEditor.py:3688 msgid "[success] Geometry shape offset on X axis done..." msgstr "[success] Geometry shape offset on X axis done..." #: flatcamEditors/FlatCAMGeoEditor.py:1523 -#: flatcamEditors/FlatCAMGrbEditor.py:3667 +#: flatcamEditors/FlatCAMGrbEditor.py:3692 msgid "[WARNING_NOTCL] Geometry shape offset X cancelled..." msgstr "[WARNING_NOTCL] Geometry shape offset X cancelled..." #: flatcamEditors/FlatCAMGeoEditor.py:1528 -#: flatcamEditors/FlatCAMGrbEditor.py:3672 +#: flatcamEditors/FlatCAMGrbEditor.py:3697 msgid "Offset on Y axis ..." msgstr "Offset on Y axis ..." #: flatcamEditors/FlatCAMGeoEditor.py:1538 -#: flatcamEditors/FlatCAMGrbEditor.py:3682 +#: flatcamEditors/FlatCAMGrbEditor.py:3707 msgid "[success] Geometry shape offset on Y axis done..." msgstr "[success] Geometry shape offset on Y axis done..." #: flatcamEditors/FlatCAMGeoEditor.py:1542 -#: flatcamEditors/FlatCAMGrbEditor.py:3686 +#: flatcamEditors/FlatCAMGrbEditor.py:3711 msgid "[WARNING_NOTCL] Geometry shape offset Y cancelled..." msgstr "[WARNING_NOTCL] Geometry shape offset Y cancelled..." #: flatcamEditors/FlatCAMGeoEditor.py:1545 -#: flatcamEditors/FlatCAMGrbEditor.py:3689 +#: flatcamEditors/FlatCAMGrbEditor.py:3714 msgid "Skew on X axis ..." msgstr "Skew on X axis ..." #: flatcamEditors/FlatCAMGeoEditor.py:1555 -#: flatcamEditors/FlatCAMGrbEditor.py:3699 +#: flatcamEditors/FlatCAMGrbEditor.py:3724 msgid "[success] Geometry shape skew on X axis done..." msgstr "[success] Geometry shape skew on X axis done..." #: flatcamEditors/FlatCAMGeoEditor.py:1559 -#: flatcamEditors/FlatCAMGrbEditor.py:3703 +#: flatcamEditors/FlatCAMGrbEditor.py:3728 msgid "[WARNING_NOTCL] Geometry shape skew X cancelled..." msgstr "[WARNING_NOTCL] Geometry shape skew X cancelled..." #: flatcamEditors/FlatCAMGeoEditor.py:1562 -#: flatcamEditors/FlatCAMGrbEditor.py:3706 +#: flatcamEditors/FlatCAMGrbEditor.py:3731 msgid "Skew on Y axis ..." msgstr "Skew on Y axis ..." #: flatcamEditors/FlatCAMGeoEditor.py:1572 -#: flatcamEditors/FlatCAMGrbEditor.py:3716 +#: flatcamEditors/FlatCAMGrbEditor.py:3741 msgid "[success] Geometry shape skew on Y axis done..." msgstr "[success] Geometry shape skew on Y axis done..." #: flatcamEditors/FlatCAMGeoEditor.py:1576 -#: flatcamEditors/FlatCAMGrbEditor.py:3720 +#: flatcamEditors/FlatCAMGrbEditor.py:3745 msgid "[WARNING_NOTCL] Geometry shape skew Y cancelled..." msgstr "[WARNING_NOTCL] Geometry shape skew Y cancelled..." @@ -2782,7 +2810,7 @@ msgid "[success] Done. Path completed." msgstr "[success] Done. Path completed." #: flatcamEditors/FlatCAMGeoEditor.py:2354 -#: flatcamEditors/FlatCAMGeoEditor.py:3426 +#: flatcamEditors/FlatCAMGeoEditor.py:3442 msgid "[WARNING_NOTCL] Move cancelled. No shape selected." msgstr "[WARNING_NOTCL] Move cancelled. No shape selected." @@ -2830,7 +2858,7 @@ msgid "[WARNING_NOTCL] Buffer cancelled. No shape selected." msgstr "[WARNING_NOTCL] Buffer cancelled. No shape selected." #: flatcamEditors/FlatCAMGeoEditor.py:2534 -#: flatcamEditors/FlatCAMGrbEditor.py:2673 +#: flatcamEditors/FlatCAMGrbEditor.py:2698 msgid "[success] Done. Buffer Tool completed." msgstr "[success] Done. Buffer Tool completed." @@ -2851,29 +2879,29 @@ msgstr "Create Paint geometry ..." msgid "Shape transformations ..." msgstr "Shape transformations ..." -#: flatcamEditors/FlatCAMGeoEditor.py:3061 +#: flatcamEditors/FlatCAMGeoEditor.py:3077 #, 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:3300 -#: flatcamEditors/FlatCAMGrbEditor.py:2242 flatcamGUI/FlatCAMGUI.py:2320 +#: flatcamEditors/FlatCAMGeoEditor.py:3316 +#: flatcamEditors/FlatCAMGrbEditor.py:2267 flatcamGUI/FlatCAMGUI.py:2320 #: flatcamGUI/FlatCAMGUI.py:2332 msgid "[success] Done." msgstr "[success] Done." -#: flatcamEditors/FlatCAMGeoEditor.py:3433 +#: flatcamEditors/FlatCAMGeoEditor.py:3449 msgid "[WARNING_NOTCL] Copy cancelled. No shape selected." msgstr "[WARNING_NOTCL] Copy cancelled. No shape selected." -#: flatcamEditors/FlatCAMGeoEditor.py:3440 flatcamGUI/FlatCAMGUI.py:2623 +#: flatcamEditors/FlatCAMGeoEditor.py:3456 flatcamGUI/FlatCAMGUI.py:2623 #: flatcamGUI/FlatCAMGUI.py:2657 flatcamGUI/FlatCAMGUI.py:2675 #: flatcamGUI/FlatCAMGUI.py:2813 flatcamGUI/FlatCAMGUI.py:2825 #: flatcamGUI/FlatCAMGUI.py:2859 msgid "Click on target point." msgstr "Click on target point." -#: flatcamEditors/FlatCAMGeoEditor.py:3688 +#: flatcamEditors/FlatCAMGeoEditor.py:3699 msgid "" "[WARNING_NOTCL] A selection of at least 2 geo items is required to do " "Intersection." @@ -2881,9 +2909,9 @@ msgstr "" "[WARNING_NOTCL] A selection of at least 2 geo items is required to do " "Intersection." -#: flatcamEditors/FlatCAMGeoEditor.py:3726 -#: flatcamEditors/FlatCAMGeoEditor.py:3763 -#: flatcamEditors/FlatCAMGeoEditor.py:3839 +#: flatcamEditors/FlatCAMGeoEditor.py:3737 +#: flatcamEditors/FlatCAMGeoEditor.py:3774 +#: flatcamEditors/FlatCAMGeoEditor.py:3850 msgid "" "[ERROR_NOTCL] Negative buffer value is not accepted. Use Buffer interior to " "generate an 'inside' shape" @@ -2891,52 +2919,52 @@ msgstr "" "[ERROR_NOTCL] Negative buffer value is not accepted. Use Buffer interior to " "generate an 'inside' shape" -#: flatcamEditors/FlatCAMGeoEditor.py:3734 -#: flatcamEditors/FlatCAMGeoEditor.py:3772 -#: flatcamEditors/FlatCAMGeoEditor.py:3847 +#: flatcamEditors/FlatCAMGeoEditor.py:3745 +#: flatcamEditors/FlatCAMGeoEditor.py:3783 +#: flatcamEditors/FlatCAMGeoEditor.py:3858 msgid "[WARNING_NOTCL] Nothing selected for buffering." msgstr "[WARNING_NOTCL] Nothing selected for buffering." -#: flatcamEditors/FlatCAMGeoEditor.py:3738 -#: flatcamEditors/FlatCAMGeoEditor.py:3776 -#: flatcamEditors/FlatCAMGeoEditor.py:3851 +#: flatcamEditors/FlatCAMGeoEditor.py:3749 +#: flatcamEditors/FlatCAMGeoEditor.py:3787 +#: flatcamEditors/FlatCAMGeoEditor.py:3862 msgid "[WARNING_NOTCL] Invalid distance for buffering." msgstr "[WARNING_NOTCL] Invalid distance for buffering." -#: flatcamEditors/FlatCAMGeoEditor.py:3748 -#: flatcamEditors/FlatCAMGeoEditor.py:3860 +#: flatcamEditors/FlatCAMGeoEditor.py:3759 +#: flatcamEditors/FlatCAMGeoEditor.py:3871 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:3756 +#: flatcamEditors/FlatCAMGeoEditor.py:3767 msgid "[success] Full buffer geometry created." msgstr "[success] Full buffer geometry created." -#: flatcamEditors/FlatCAMGeoEditor.py:3786 +#: flatcamEditors/FlatCAMGeoEditor.py:3797 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:3801 +#: flatcamEditors/FlatCAMGeoEditor.py:3812 msgid "[success] Interior buffer geometry created." msgstr "[success] Interior buffer geometry created." -#: flatcamEditors/FlatCAMGeoEditor.py:3872 +#: flatcamEditors/FlatCAMGeoEditor.py:3883 msgid "[success] Exterior buffer geometry created." msgstr "[success] Exterior buffer geometry created." -#: flatcamEditors/FlatCAMGeoEditor.py:3936 +#: flatcamEditors/FlatCAMGeoEditor.py:3947 msgid "[WARNING_NOTCL] Nothing selected for painting." msgstr "[WARNING_NOTCL] Nothing selected for painting." -#: flatcamEditors/FlatCAMGeoEditor.py:3942 +#: flatcamEditors/FlatCAMGeoEditor.py:3953 msgid "[WARNING] Invalid value for {}" msgstr "[WARNING] Invalid value for {}" -#: flatcamEditors/FlatCAMGeoEditor.py:3948 +#: flatcamEditors/FlatCAMGeoEditor.py:3959 msgid "" "[ERROR_NOTCL] Could not do Paint. Overlap value has to be less than 1.00 " "(100%)." @@ -2944,7 +2972,7 @@ msgstr "" "[ERROR_NOTCL] Could not do Paint. Overlap value has to be less than 1.00 " "(100%)." -#: flatcamEditors/FlatCAMGeoEditor.py:4007 +#: flatcamEditors/FlatCAMGeoEditor.py:4018 #, python-format msgid "" "[ERROR] Could not do Paint. Try a different combination of parameters. Or a " @@ -2955,7 +2983,7 @@ msgstr "" "different method of Paint\n" "%s" -#: flatcamEditors/FlatCAMGeoEditor.py:4018 +#: flatcamEditors/FlatCAMGeoEditor.py:4029 msgid "[success] Paint done." msgstr "[success] Paint done." @@ -3023,23 +3051,23 @@ msgid "Apertures Table for the Gerber Object." msgstr "Apertures Table for the Gerber Object." #: flatcamEditors/FlatCAMGrbEditor.py:865 -#: flatcamEditors/FlatCAMGrbEditor.py:1945 flatcamGUI/ObjectUI.py:228 +#: flatcamEditors/FlatCAMGrbEditor.py:1970 flatcamGUI/ObjectUI.py:228 msgid "Code" msgstr "Code" #: flatcamEditors/FlatCAMGrbEditor.py:865 -#: flatcamEditors/FlatCAMGrbEditor.py:1945 flatcamGUI/ObjectUI.py:228 +#: flatcamEditors/FlatCAMGrbEditor.py:1970 flatcamGUI/ObjectUI.py:228 #: flatcamGUI/ObjectUI.py:888 flatcamGUI/ObjectUI.py:1446 msgid "Type" msgstr "Type" #: flatcamEditors/FlatCAMGrbEditor.py:865 -#: flatcamEditors/FlatCAMGrbEditor.py:1945 flatcamGUI/ObjectUI.py:228 +#: flatcamEditors/FlatCAMGrbEditor.py:1970 flatcamGUI/ObjectUI.py:228 msgid "Size" msgstr "Size" #: flatcamEditors/FlatCAMGrbEditor.py:865 -#: flatcamEditors/FlatCAMGrbEditor.py:1945 flatcamGUI/ObjectUI.py:228 +#: flatcamEditors/FlatCAMGrbEditor.py:1970 flatcamGUI/ObjectUI.py:228 msgid "Dim" msgstr "Dim" @@ -3236,7 +3264,7 @@ msgstr "" "[WARNING_NOTCL] Aperture code value is missing or wrong format. Add it and " "retry." -#: flatcamEditors/FlatCAMGrbEditor.py:1562 +#: flatcamEditors/FlatCAMGrbEditor.py:1577 msgid "" "[WARNING_NOTCL] Aperture dimensions value is missing or wrong format. Add it " "in format (width, height) and retry." @@ -3244,7 +3272,7 @@ msgstr "" "[WARNING_NOTCL] Aperture dimensions value is missing or wrong format. Add it " "in format (width, height) and retry." -#: flatcamEditors/FlatCAMGrbEditor.py:1574 +#: flatcamEditors/FlatCAMGrbEditor.py:1589 msgid "" "[WARNING_NOTCL] Aperture size value is missing or wrong format. Add it and " "retry." @@ -3252,26 +3280,26 @@ msgstr "" "[WARNING_NOTCL] Aperture size value is missing or wrong format. Add it and " "retry." -#: flatcamEditors/FlatCAMGrbEditor.py:1586 +#: flatcamEditors/FlatCAMGrbEditor.py:1601 msgid "[WARNING_NOTCL] Aperture already in the aperture table." msgstr "[WARNING_NOTCL] Aperture already in the aperture table." -#: flatcamEditors/FlatCAMGrbEditor.py:1593 +#: flatcamEditors/FlatCAMGrbEditor.py:1608 #, python-brace-format msgid "[success] Added new aperture with code: {apid}" msgstr "[success] Added new aperture with code: {apid}" -#: flatcamEditors/FlatCAMGrbEditor.py:1645 +#: flatcamEditors/FlatCAMGrbEditor.py:1660 #, python-brace-format msgid "[success] Deleted aperture with code: {del_dia}" msgstr "[success] Deleted aperture with code: {del_dia}" -#: flatcamEditors/FlatCAMGrbEditor.py:1879 +#: flatcamEditors/FlatCAMGrbEditor.py:1902 #, python-format msgid "Adding aperture: %s geo ..." msgstr "Adding aperture: %s geo ..." -#: flatcamEditors/FlatCAMGrbEditor.py:2033 +#: flatcamEditors/FlatCAMGrbEditor.py:2058 msgid "" "[ERROR_NOTCL] There are no Aperture definitions in the file. Aborting Gerber " "creation." @@ -3279,23 +3307,23 @@ msgstr "" "[ERROR_NOTCL] There are no Aperture definitions in the file. Aborting Gerber " "creation." -#: flatcamEditors/FlatCAMGrbEditor.py:2042 +#: flatcamEditors/FlatCAMGrbEditor.py:2067 msgid "Creating Gerber." msgstr "Creating Gerber." -#: flatcamEditors/FlatCAMGrbEditor.py:2050 +#: flatcamEditors/FlatCAMGrbEditor.py:2075 msgid "[success] Gerber editing finished." msgstr "[success] Gerber editing finished." -#: flatcamEditors/FlatCAMGrbEditor.py:2067 +#: flatcamEditors/FlatCAMGrbEditor.py:2092 msgid "[WARNING_NOTCL] Cancelled. No aperture is selected" msgstr "[WARNING_NOTCL] Cancelled. No aperture is selected" -#: flatcamEditors/FlatCAMGrbEditor.py:2530 +#: flatcamEditors/FlatCAMGrbEditor.py:2555 msgid "[success] Done. Apertures deleted." msgstr "[success] Done. Apertures deleted." -#: flatcamEditors/FlatCAMGrbEditor.py:2658 +#: flatcamEditors/FlatCAMGrbEditor.py:2683 msgid "" "[WARNING_NOTCL] No aperture to buffer. Select at least one aperture and try " "again." @@ -3303,7 +3331,7 @@ msgstr "" "[WARNING_NOTCL] No aperture to buffer. Select at least one aperture and try " "again." -#: flatcamEditors/FlatCAMGrbEditor.py:2687 +#: flatcamEditors/FlatCAMGrbEditor.py:2712 msgid "" "[WARNING_NOTCL] Scale factor value is missing or wrong format. Add it and " "retry." @@ -3311,7 +3339,7 @@ msgstr "" "[WARNING_NOTCL] Scale factor value is missing or wrong format. Add it and " "retry." -#: flatcamEditors/FlatCAMGrbEditor.py:2705 +#: flatcamEditors/FlatCAMGrbEditor.py:2730 msgid "" "[WARNING_NOTCL] No aperture to scale. Select at least one aperture and try " "again." @@ -3319,7 +3347,7 @@ msgstr "" "[WARNING_NOTCL] No aperture to scale. Select at least one aperture and try " "again." -#: flatcamEditors/FlatCAMGrbEditor.py:2721 +#: flatcamEditors/FlatCAMGrbEditor.py:2746 msgid "[success] Done. Scale Tool completed." msgstr "[success] Done. Scale Tool completed." @@ -3510,7 +3538,9 @@ msgid "Edit Object\tE" msgstr "Edit Object\tE" #: flatcamGUI/FlatCAMGUI.py:226 -msgid "Save && Close Editor\tCTRL+S" +#, fuzzy +#| msgid "Save && Close Editor\tCTRL+S" +msgid "Close Editor\tCTRL+S" msgstr "Save && Close Editor\tCTRL+S" #: flatcamGUI/FlatCAMGUI.py:234 @@ -4785,281 +4815,6 @@ msgstr "" " " #: flatcamGUI/FlatCAMGUI.py:1218 -#| 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" -#| "
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+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" -#| " " msgid "" "Editor Shortcut list
\n" "
\n" @@ -5675,7 +5430,7 @@ msgstr "Line" msgid "Rectangle" msgstr "Rectangle" -#: flatcamGUI/FlatCAMGUI.py:1526 flatcamGUI/FlatCAMGUI.py:5020 +#: flatcamGUI/FlatCAMGUI.py:1526 flatcamGUI/FlatCAMGUI.py:5021 #: flatcamGUI/ObjectUI.py:1360 msgid "Cut" msgstr "Cut" @@ -5708,10 +5463,6 @@ msgstr "Add Drill" msgid "Copy Drill(s)" msgstr "Copy Drill(s)" -#: flatcamGUI/FlatCAMGUI.py:1549 -msgid "Save && Close Edit" -msgstr "Save && Close Edit" - #: flatcamGUI/FlatCAMGUI.py:1574 msgid "Print Preview" msgstr "Print Preview" @@ -5728,8 +5479,8 @@ msgstr "Find in Code" msgid "Replace With" msgstr "Replace With" -#: flatcamGUI/FlatCAMGUI.py:1585 flatcamGUI/FlatCAMGUI.py:5018 -#: flatcamGUI/FlatCAMGUI.py:5528 flatcamGUI/ObjectUI.py:1358 +#: flatcamGUI/FlatCAMGUI.py:1585 flatcamGUI/FlatCAMGUI.py:5019 +#: flatcamGUI/FlatCAMGUI.py:5529 flatcamGUI/ObjectUI.py:1358 msgid "All" msgstr "All" @@ -6064,23 +5815,23 @@ msgstr "" "It is displayed whenever the mouse cursor is hovering\n" "over any kind of not-selected object." -#: flatcamGUI/FlatCAMGUI.py:3538 +#: flatcamGUI/FlatCAMGUI.py:3537 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:3541 +#: flatcamGUI/FlatCAMGUI.py:3540 msgid "Clear GUI Settings" msgstr "Clear GUI Settings" -#: flatcamGUI/FlatCAMGUI.py:3560 +#: flatcamGUI/FlatCAMGUI.py:3561 msgid "App Preferences" msgstr "App Preferences" -#: flatcamGUI/FlatCAMGUI.py:3566 +#: flatcamGUI/FlatCAMGUI.py:3567 msgid "Units:" msgstr "Units:" -#: flatcamGUI/FlatCAMGUI.py:3567 +#: flatcamGUI/FlatCAMGUI.py:3568 msgid "" "The default value for FlatCAM units.\n" "Whatever is selected here is set every time\n" @@ -6090,11 +5841,11 @@ msgstr "" "Whatever is selected here is set every time\n" "FLatCAM is started." -#: flatcamGUI/FlatCAMGUI.py:3574 +#: flatcamGUI/FlatCAMGUI.py:3575 msgid "APP. LEVEL:" msgstr "APP. LEVEL:" -#: flatcamGUI/FlatCAMGUI.py:3575 +#: flatcamGUI/FlatCAMGUI.py:3576 msgid "" "Choose the default level of usage for FlatCAM.\n" "BASIC level -> reduced functionality, best for beginner's.\n" @@ -6110,31 +5861,31 @@ msgstr "" "The choice here will influence the parameters in\n" "the Selected Tab for all kinds of FlatCAM objects." -#: flatcamGUI/FlatCAMGUI.py:3580 flatcamGUI/FlatCAMGUI.py:4205 +#: flatcamGUI/FlatCAMGUI.py:3581 flatcamGUI/FlatCAMGUI.py:4206 msgid "Basic" msgstr "Basic" -#: flatcamGUI/FlatCAMGUI.py:3581 +#: flatcamGUI/FlatCAMGUI.py:3582 msgid "Advanced" msgstr "Advanced" -#: flatcamGUI/FlatCAMGUI.py:3584 +#: flatcamGUI/FlatCAMGUI.py:3585 msgid "Languages:" msgstr "Languages:" -#: flatcamGUI/FlatCAMGUI.py:3585 +#: flatcamGUI/FlatCAMGUI.py:3586 msgid "Set the language used throughout FlatCAM." msgstr "Set the language used throughout FlatCAM." -#: flatcamGUI/FlatCAMGUI.py:3588 +#: flatcamGUI/FlatCAMGUI.py:3589 msgid "Apply Language" msgstr "Apply Language" -#: flatcamGUI/FlatCAMGUI.py:3591 +#: flatcamGUI/FlatCAMGUI.py:3592 msgid "Shell at StartUp:" msgstr "Shell at StartUp:" -#: flatcamGUI/FlatCAMGUI.py:3593 flatcamGUI/FlatCAMGUI.py:3598 +#: flatcamGUI/FlatCAMGUI.py:3594 flatcamGUI/FlatCAMGUI.py:3599 msgid "" "Check this box if you want the shell to\n" "start automatically at startup." @@ -6142,11 +5893,11 @@ msgstr "" "Check this box if you want the shell to\n" "start automatically at startup." -#: flatcamGUI/FlatCAMGUI.py:3603 +#: flatcamGUI/FlatCAMGUI.py:3604 msgid "Version Check:" msgstr "Version Check:" -#: flatcamGUI/FlatCAMGUI.py:3605 flatcamGUI/FlatCAMGUI.py:3610 +#: flatcamGUI/FlatCAMGUI.py:3606 flatcamGUI/FlatCAMGUI.py:3611 msgid "" "Check this box if you want to check\n" "for a new version automatically at startup." @@ -6154,11 +5905,11 @@ msgstr "" "Check this box if you want to check\n" "for a new version automatically at startup." -#: flatcamGUI/FlatCAMGUI.py:3615 +#: flatcamGUI/FlatCAMGUI.py:3616 msgid "Send Stats:" msgstr "Send Stats:" -#: flatcamGUI/FlatCAMGUI.py:3617 flatcamGUI/FlatCAMGUI.py:3622 +#: flatcamGUI/FlatCAMGUI.py:3618 flatcamGUI/FlatCAMGUI.py:3623 msgid "" "Check this box if you agree to send anonymous\n" "stats automatically at startup, to help improve FlatCAM." @@ -6166,11 +5917,11 @@ msgstr "" "Check this box if you agree to send anonymous\n" "stats automatically at startup, to help improve FlatCAM." -#: flatcamGUI/FlatCAMGUI.py:3629 +#: flatcamGUI/FlatCAMGUI.py:3630 msgid "Pan Button:" msgstr "Pan Button:" -#: flatcamGUI/FlatCAMGUI.py:3630 +#: flatcamGUI/FlatCAMGUI.py:3631 msgid "" "Select the mouse button to use for panning:\n" "- MMB --> Middle Mouse Button\n" @@ -6180,35 +5931,35 @@ msgstr "" "- MMB --> Middle Mouse Button\n" "- RMB --> Right Mouse Button" -#: flatcamGUI/FlatCAMGUI.py:3633 +#: flatcamGUI/FlatCAMGUI.py:3634 msgid "MMB" msgstr "MMB" -#: flatcamGUI/FlatCAMGUI.py:3634 +#: flatcamGUI/FlatCAMGUI.py:3635 msgid "RMB" msgstr "RMB" -#: flatcamGUI/FlatCAMGUI.py:3637 +#: flatcamGUI/FlatCAMGUI.py:3638 msgid "Multiple Sel:" msgstr "Multiple Sel:" -#: flatcamGUI/FlatCAMGUI.py:3638 +#: flatcamGUI/FlatCAMGUI.py:3639 msgid "Select the key used for multiple selection." msgstr "Select the key used for multiple selection." -#: flatcamGUI/FlatCAMGUI.py:3639 +#: flatcamGUI/FlatCAMGUI.py:3640 msgid "CTRL" msgstr "CTRL" -#: flatcamGUI/FlatCAMGUI.py:3640 +#: flatcamGUI/FlatCAMGUI.py:3641 msgid "SHIFT" msgstr "SHIFT" -#: flatcamGUI/FlatCAMGUI.py:3643 +#: flatcamGUI/FlatCAMGUI.py:3644 msgid "Project at StartUp:" msgstr "Project at StartUp:" -#: flatcamGUI/FlatCAMGUI.py:3645 flatcamGUI/FlatCAMGUI.py:3650 +#: flatcamGUI/FlatCAMGUI.py:3646 flatcamGUI/FlatCAMGUI.py:3651 msgid "" "Check this box if you want the project/selected/tool tab area to\n" "to be shown automatically at startup." @@ -6216,11 +5967,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:3655 +#: flatcamGUI/FlatCAMGUI.py:3656 msgid "Project AutoHide:" msgstr "Project AutoHide:" -#: flatcamGUI/FlatCAMGUI.py:3657 flatcamGUI/FlatCAMGUI.py:3663 +#: flatcamGUI/FlatCAMGUI.py:3658 flatcamGUI/FlatCAMGUI.py:3664 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" @@ -6230,11 +5981,11 @@ msgstr "" "hide automatically when there are no objects loaded and\n" "to show whenever a new object is created." -#: flatcamGUI/FlatCAMGUI.py:3669 +#: flatcamGUI/FlatCAMGUI.py:3670 msgid "Enable ToolTips:" msgstr "Enable ToolTips:" -#: flatcamGUI/FlatCAMGUI.py:3671 flatcamGUI/FlatCAMGUI.py:3676 +#: flatcamGUI/FlatCAMGUI.py:3672 flatcamGUI/FlatCAMGUI.py:3677 msgid "" "Check this box if you want to have toolTips displayed\n" "when hovering with mouse over items throughout the App." @@ -6242,11 +5993,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:3679 +#: flatcamGUI/FlatCAMGUI.py:3680 msgid "Workers number:" msgstr "Workers number:" -#: flatcamGUI/FlatCAMGUI.py:3681 flatcamGUI/FlatCAMGUI.py:3690 +#: flatcamGUI/FlatCAMGUI.py:3682 flatcamGUI/FlatCAMGUI.py:3691 msgid "" "The number of Qthreads made available to the App.\n" "A bigger number may finish the jobs more quickly but\n" @@ -6262,11 +6013,11 @@ msgstr "" "Default value is 2.\n" "After change, it will be applied at next App start." -#: flatcamGUI/FlatCAMGUI.py:3731 +#: flatcamGUI/FlatCAMGUI.py:3732 msgid "Save Compressed Project" msgstr "Save Compressed Project" -#: flatcamGUI/FlatCAMGUI.py:3733 +#: flatcamGUI/FlatCAMGUI.py:3734 msgid "" "Whether to save a compressed or uncompressed project.\n" "When checked it will save a compressed FlatCAM project." @@ -6274,11 +6025,11 @@ msgstr "" "Whether to save a compressed or uncompressed project.\n" "When checked it will save a compressed FlatCAM project." -#: flatcamGUI/FlatCAMGUI.py:3744 +#: flatcamGUI/FlatCAMGUI.py:3745 msgid "Compression Level:" msgstr "Compression Level:" -#: flatcamGUI/FlatCAMGUI.py:3746 +#: flatcamGUI/FlatCAMGUI.py:3747 msgid "" "The level of compression used when saving\n" "a FlatCAM project. Higher value means better compression\n" @@ -6288,47 +6039,47 @@ msgstr "" "a FlatCAM project. Higher value means better compression\n" "but require more RAM usage and more processing time." -#: flatcamGUI/FlatCAMGUI.py:3772 flatcamGUI/FlatCAMGUI.py:4013 -#: flatcamGUI/FlatCAMGUI.py:4668 flatcamGUI/FlatCAMGUI.py:4992 +#: flatcamGUI/FlatCAMGUI.py:3773 flatcamGUI/FlatCAMGUI.py:4014 +#: flatcamGUI/FlatCAMGUI.py:4669 flatcamGUI/FlatCAMGUI.py:4993 #: 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:3779 flatcamGUI/FlatCAMGUI.py:4025 +#: flatcamGUI/FlatCAMGUI.py:3780 flatcamGUI/FlatCAMGUI.py:4026 #: flatcamGUI/ObjectUI.py:506 msgid "Solid" msgstr "Solid" -#: flatcamGUI/FlatCAMGUI.py:3781 flatcamGUI/ObjectUI.py:158 +#: flatcamGUI/FlatCAMGUI.py:3782 flatcamGUI/ObjectUI.py:158 msgid "Solid color polygons." msgstr "Solid color polygons." -#: flatcamGUI/FlatCAMGUI.py:3786 +#: flatcamGUI/FlatCAMGUI.py:3787 msgid "M-Color" msgstr "M-Color" -#: flatcamGUI/FlatCAMGUI.py:3788 flatcamGUI/ObjectUI.py:166 +#: flatcamGUI/FlatCAMGUI.py:3789 flatcamGUI/ObjectUI.py:166 msgid "Draw polygons in different colors." msgstr "Draw polygons in different colors." -#: flatcamGUI/FlatCAMGUI.py:3793 flatcamGUI/FlatCAMGUI.py:4019 -#: flatcamGUI/FlatCAMGUI.py:4672 flatcamGUI/ObjectUI.py:172 +#: flatcamGUI/FlatCAMGUI.py:3794 flatcamGUI/FlatCAMGUI.py:4020 +#: flatcamGUI/FlatCAMGUI.py:4673 flatcamGUI/ObjectUI.py:172 msgid "Plot" msgstr "Plot" -#: flatcamGUI/FlatCAMGUI.py:3795 flatcamGUI/FlatCAMGUI.py:4674 +#: flatcamGUI/FlatCAMGUI.py:3796 flatcamGUI/FlatCAMGUI.py:4675 #: 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:3800 flatcamGUI/FlatCAMGUI.py:4681 -#: flatcamGUI/FlatCAMGUI.py:5028 +#: flatcamGUI/FlatCAMGUI.py:3801 flatcamGUI/FlatCAMGUI.py:4682 +#: flatcamGUI/FlatCAMGUI.py:5029 msgid "Circle Steps:" msgstr "Circle Steps:" -#: flatcamGUI/FlatCAMGUI.py:3802 +#: flatcamGUI/FlatCAMGUI.py:3803 msgid "" "The number of circle steps for Gerber \n" "circular aperture linear approximation." @@ -6336,15 +6087,15 @@ msgstr "" "The number of circle steps for Gerber \n" "circular aperture linear approximation." -#: flatcamGUI/FlatCAMGUI.py:3817 +#: flatcamGUI/FlatCAMGUI.py:3818 msgid "Gerber Options" msgstr "Gerber Options" -#: flatcamGUI/FlatCAMGUI.py:3821 flatcamGUI/ObjectUI.py:251 +#: flatcamGUI/FlatCAMGUI.py:3822 flatcamGUI/ObjectUI.py:251 msgid "Isolation Routing:" msgstr "Isolation Routing:" -#: flatcamGUI/FlatCAMGUI.py:3823 flatcamGUI/ObjectUI.py:253 +#: flatcamGUI/FlatCAMGUI.py:3824 flatcamGUI/ObjectUI.py:253 msgid "" "Create a Geometry object with\n" "toolpaths to cut outside polygons." @@ -6352,17 +6103,17 @@ msgstr "" "Create a Geometry object with\n" "toolpaths to cut outside polygons." -#: flatcamGUI/FlatCAMGUI.py:3834 flatcamGUI/FlatCAMGUI.py:4391 -#: flatcamGUI/FlatCAMGUI.py:5316 flatcamGUI/ObjectUI.py:785 +#: flatcamGUI/FlatCAMGUI.py:3835 flatcamGUI/FlatCAMGUI.py:4392 +#: flatcamGUI/FlatCAMGUI.py:5317 flatcamGUI/ObjectUI.py:785 #: flatcamGUI/ObjectUI.py:801 msgid "Diameter of the cutting tool." msgstr "Diameter of the cutting tool." -#: flatcamGUI/FlatCAMGUI.py:3841 +#: flatcamGUI/FlatCAMGUI.py:3842 msgid "Width (# passes):" msgstr "Width (# passes):" -#: flatcamGUI/FlatCAMGUI.py:3843 flatcamGUI/ObjectUI.py:275 +#: flatcamGUI/FlatCAMGUI.py:3844 flatcamGUI/ObjectUI.py:275 msgid "" "Width of the isolation gap in\n" "number (integer) of tool widths." @@ -6370,11 +6121,11 @@ msgstr "" "Width of the isolation gap in\n" "number (integer) of tool widths." -#: flatcamGUI/FlatCAMGUI.py:3851 flatcamGUI/ObjectUI.py:283 +#: flatcamGUI/FlatCAMGUI.py:3852 flatcamGUI/ObjectUI.py:283 msgid "Pass overlap:" msgstr "Pass overlap:" -#: flatcamGUI/FlatCAMGUI.py:3853 flatcamGUI/ObjectUI.py:285 +#: flatcamGUI/FlatCAMGUI.py:3854 flatcamGUI/ObjectUI.py:285 #, python-format msgid "" "How much (fraction) of the tool width to overlap each tool pass.\n" @@ -6387,11 +6138,11 @@ msgstr "" "A value here of 0.25 means an overlap of 25%% from the tool diameter found " "above." -#: flatcamGUI/FlatCAMGUI.py:3861 flatcamGUI/ObjectUI.py:295 +#: flatcamGUI/FlatCAMGUI.py:3862 flatcamGUI/ObjectUI.py:295 msgid "Milling Type:" msgstr "Milling Type:" -#: flatcamGUI/FlatCAMGUI.py:3863 flatcamGUI/ObjectUI.py:297 +#: flatcamGUI/FlatCAMGUI.py:3864 flatcamGUI/ObjectUI.py:297 msgid "" "Milling type:\n" "- climb / best for precision milling and to reduce tool usage\n" @@ -6401,27 +6152,27 @@ msgstr "" "- climb / best for precision milling and to reduce tool usage\n" "- conventional / useful when there is no backlash compensation" -#: flatcamGUI/FlatCAMGUI.py:3868 flatcamGUI/ObjectUI.py:302 +#: flatcamGUI/FlatCAMGUI.py:3869 flatcamGUI/ObjectUI.py:302 msgid "Climb" msgstr "Climb" -#: flatcamGUI/FlatCAMGUI.py:3869 flatcamGUI/ObjectUI.py:303 +#: flatcamGUI/FlatCAMGUI.py:3870 flatcamGUI/ObjectUI.py:303 msgid "Conv." msgstr "Conv." -#: flatcamGUI/FlatCAMGUI.py:3873 +#: flatcamGUI/FlatCAMGUI.py:3874 msgid "Combine Passes" msgstr "Combine Passes" -#: flatcamGUI/FlatCAMGUI.py:3875 flatcamGUI/ObjectUI.py:309 +#: flatcamGUI/FlatCAMGUI.py:3876 flatcamGUI/ObjectUI.py:309 msgid "Combine all passes into one object" msgstr "Combine all passes into one object" -#: flatcamGUI/FlatCAMGUI.py:3880 +#: flatcamGUI/FlatCAMGUI.py:3881 msgid "Clear non-copper:" msgstr "Clear non-copper:" -#: flatcamGUI/FlatCAMGUI.py:3882 flatcamGUI/FlatCAMGUI.py:5204 +#: flatcamGUI/FlatCAMGUI.py:3883 flatcamGUI/FlatCAMGUI.py:5205 #: flatcamGUI/ObjectUI.py:386 msgid "" "Create a Geometry object with\n" @@ -6430,12 +6181,12 @@ msgstr "" "Create a Geometry object with\n" "toolpaths to cut all non-copper regions." -#: flatcamGUI/FlatCAMGUI.py:3891 flatcamGUI/FlatCAMGUI.py:3917 +#: flatcamGUI/FlatCAMGUI.py:3892 flatcamGUI/FlatCAMGUI.py:3918 #: flatcamGUI/ObjectUI.py:430 flatcamGUI/ObjectUI.py:464 msgid "Boundary Margin:" msgstr "Boundary Margin:" -#: flatcamGUI/FlatCAMGUI.py:3893 flatcamGUI/ObjectUI.py:432 +#: flatcamGUI/FlatCAMGUI.py:3894 flatcamGUI/ObjectUI.py:432 msgid "" "Specify the edge of the PCB\n" "by drawing a box around all\n" @@ -6447,11 +6198,11 @@ msgstr "" "objects with this minimum\n" "distance." -#: flatcamGUI/FlatCAMGUI.py:3903 flatcamGUI/FlatCAMGUI.py:3926 +#: flatcamGUI/FlatCAMGUI.py:3904 flatcamGUI/FlatCAMGUI.py:3927 msgid "Rounded corners" msgstr "Rounded corners" -#: flatcamGUI/FlatCAMGUI.py:3905 +#: flatcamGUI/FlatCAMGUI.py:3906 msgid "" "Creates a Geometry objects with polygons\n" "covering the copper-free areas of the PCB." @@ -6459,11 +6210,11 @@ msgstr "" "Creates a Geometry objects with polygons\n" "covering the copper-free areas of the PCB." -#: flatcamGUI/FlatCAMGUI.py:3911 flatcamGUI/ObjectUI.py:454 +#: flatcamGUI/FlatCAMGUI.py:3912 flatcamGUI/ObjectUI.py:454 msgid "Bounding Box:" msgstr "Bounding Box:" -#: flatcamGUI/FlatCAMGUI.py:3919 flatcamGUI/ObjectUI.py:466 +#: flatcamGUI/FlatCAMGUI.py:3920 flatcamGUI/ObjectUI.py:466 msgid "" "Distance of the edges of the box\n" "to the nearest polygon." @@ -6471,7 +6222,7 @@ msgstr "" "Distance of the edges of the box\n" "to the nearest polygon." -#: flatcamGUI/FlatCAMGUI.py:3928 flatcamGUI/ObjectUI.py:476 +#: flatcamGUI/FlatCAMGUI.py:3929 flatcamGUI/ObjectUI.py:476 msgid "" "If the bounding box is \n" "to have rounded corners\n" @@ -6483,15 +6234,15 @@ msgstr "" "their radius is equal to\n" "the margin." -#: flatcamGUI/FlatCAMGUI.py:3942 +#: flatcamGUI/FlatCAMGUI.py:3943 msgid "Gerber Adv. Options" msgstr "Gerber Adv. Options" -#: flatcamGUI/FlatCAMGUI.py:3946 +#: flatcamGUI/FlatCAMGUI.py:3947 msgid "Advanced Param.:" msgstr "Advanced Param.:" -#: flatcamGUI/FlatCAMGUI.py:3948 +#: flatcamGUI/FlatCAMGUI.py:3949 msgid "" "A list of Gerber advanced parameters.\n" "Those parameters are available only for\n" @@ -6501,11 +6252,11 @@ msgstr "" "Those parameters are available only for\n" "Advanced App. Level." -#: flatcamGUI/FlatCAMGUI.py:3958 flatcamGUI/ObjectUI.py:314 +#: flatcamGUI/FlatCAMGUI.py:3959 flatcamGUI/ObjectUI.py:314 msgid "\"Follow\"" msgstr "\"Follow\"" -#: flatcamGUI/FlatCAMGUI.py:3960 flatcamGUI/ObjectUI.py:316 +#: flatcamGUI/FlatCAMGUI.py:3961 flatcamGUI/ObjectUI.py:316 msgid "" "Generate a 'Follow' geometry.\n" "This means that it will cut through\n" @@ -6515,11 +6266,11 @@ msgstr "" "This means that it will cut through\n" "the middle of the trace." -#: flatcamGUI/FlatCAMGUI.py:3968 +#: flatcamGUI/FlatCAMGUI.py:3969 msgid "Table Show/Hide" msgstr "Table Show/Hide" -#: flatcamGUI/FlatCAMGUI.py:3970 +#: flatcamGUI/FlatCAMGUI.py:3971 msgid "" "Toggle the display of the Gerber Apertures Table.\n" "Also, on hide, it will delete all mark shapes\n" @@ -6529,11 +6280,11 @@ msgstr "" "Also, on hide, it will delete all mark shapes\n" "that are drawn on canvas." -#: flatcamGUI/FlatCAMGUI.py:3978 +#: flatcamGUI/FlatCAMGUI.py:3979 msgid "Ap. Scale Factor:" msgstr "Ap. Scale Factor:" -#: flatcamGUI/FlatCAMGUI.py:3980 +#: flatcamGUI/FlatCAMGUI.py:3981 msgid "" "Change the size of the selected apertures.\n" "Factor by which to multiply\n" @@ -6543,11 +6294,11 @@ msgstr "" "Factor by which to multiply\n" "geometric features of this object." -#: flatcamGUI/FlatCAMGUI.py:3990 +#: flatcamGUI/FlatCAMGUI.py:3991 msgid "Ap. Buffer Factor:" msgstr "Ap. Buffer Factor:" -#: flatcamGUI/FlatCAMGUI.py:3992 +#: flatcamGUI/FlatCAMGUI.py:3993 msgid "" "Change the size of the selected apertures.\n" "Factor by which to expand/shrink\n" @@ -6557,15 +6308,15 @@ msgstr "" "Factor by which to expand/shrink\n" "geometric features of this object." -#: flatcamGUI/FlatCAMGUI.py:4010 +#: flatcamGUI/FlatCAMGUI.py:4011 msgid "Excellon General" msgstr "Excellon General" -#: flatcamGUI/FlatCAMGUI.py:4032 +#: flatcamGUI/FlatCAMGUI.py:4033 msgid "Excellon Format:" msgstr "Excellon Format:" -#: flatcamGUI/FlatCAMGUI.py:4034 +#: flatcamGUI/FlatCAMGUI.py:4035 msgid "" "The NC drill files, usually named Excellon files\n" "are files that can be found in different formats.\n" @@ -6607,16 +6358,16 @@ msgstr "" "Sprint Layout 2:4 INCH LZ\n" "KiCAD 3:5 INCH TZ" -#: flatcamGUI/FlatCAMGUI.py:4059 +#: flatcamGUI/FlatCAMGUI.py:4060 msgid "INCH:" msgstr "INCH:" -#: flatcamGUI/FlatCAMGUI.py:4062 +#: flatcamGUI/FlatCAMGUI.py:4063 msgid "Default values for INCH are 2:4" msgstr "Default values for INCH are 2:4" -#: flatcamGUI/FlatCAMGUI.py:4070 flatcamGUI/FlatCAMGUI.py:4103 -#: flatcamGUI/FlatCAMGUI.py:4580 +#: flatcamGUI/FlatCAMGUI.py:4071 flatcamGUI/FlatCAMGUI.py:4104 +#: flatcamGUI/FlatCAMGUI.py:4581 msgid "" "This numbers signify the number of digits in\n" "the whole part of Excellon coordinates." @@ -6624,8 +6375,8 @@ msgstr "" "This numbers signify the number of digits in\n" "the whole part of Excellon coordinates." -#: flatcamGUI/FlatCAMGUI.py:4084 flatcamGUI/FlatCAMGUI.py:4117 -#: flatcamGUI/FlatCAMGUI.py:4594 +#: flatcamGUI/FlatCAMGUI.py:4085 flatcamGUI/FlatCAMGUI.py:4118 +#: flatcamGUI/FlatCAMGUI.py:4595 msgid "" "This numbers signify the number of digits in\n" "the decimal part of Excellon coordinates." @@ -6633,19 +6384,19 @@ msgstr "" "This numbers signify the number of digits in\n" "the decimal part of Excellon coordinates." -#: flatcamGUI/FlatCAMGUI.py:4092 +#: flatcamGUI/FlatCAMGUI.py:4093 msgid "METRIC:" msgstr "METRIC:" -#: flatcamGUI/FlatCAMGUI.py:4095 +#: flatcamGUI/FlatCAMGUI.py:4096 msgid "Default values for METRIC are 3:3" msgstr "Default values for METRIC are 3:3" -#: flatcamGUI/FlatCAMGUI.py:4126 +#: flatcamGUI/FlatCAMGUI.py:4127 msgid "Default Zeros:" msgstr "Default Zeros:" -#: flatcamGUI/FlatCAMGUI.py:4129 flatcamGUI/FlatCAMGUI.py:4629 +#: flatcamGUI/FlatCAMGUI.py:4130 flatcamGUI/FlatCAMGUI.py:4630 msgid "" "This sets the type of Excellon zeros.\n" "If LZ then Leading Zeros are kept and\n" @@ -6659,15 +6410,15 @@ msgstr "" "If TZ is checked then Trailing Zeros are kept\n" "and Leading Zeros are removed." -#: flatcamGUI/FlatCAMGUI.py:4137 flatcamGUI/FlatCAMGUI.py:4636 +#: flatcamGUI/FlatCAMGUI.py:4138 flatcamGUI/FlatCAMGUI.py:4637 msgid "LZ" msgstr "LZ" -#: flatcamGUI/FlatCAMGUI.py:4138 flatcamGUI/FlatCAMGUI.py:4637 +#: flatcamGUI/FlatCAMGUI.py:4139 flatcamGUI/FlatCAMGUI.py:4638 msgid "TZ" msgstr "TZ" -#: flatcamGUI/FlatCAMGUI.py:4140 +#: flatcamGUI/FlatCAMGUI.py:4141 msgid "" "This sets the default type of Excellon zeros.\n" "If it is not detected in the parsed file the value here\n" @@ -6683,11 +6434,11 @@ msgstr "" "If TZ is checked then Trailing Zeros are kept\n" "and Leading Zeros are removed." -#: flatcamGUI/FlatCAMGUI.py:4154 +#: flatcamGUI/FlatCAMGUI.py:4155 msgid "Default Units:" msgstr "Default Units:" -#: flatcamGUI/FlatCAMGUI.py:4157 +#: flatcamGUI/FlatCAMGUI.py:4158 msgid "" "This sets the default units of Excellon files.\n" "If it is not detected in the parsed file the value here\n" @@ -6699,15 +6450,15 @@ msgstr "" "will be used.Some Excellon files don't have an header\n" "therefore this parameter will be used." -#: flatcamGUI/FlatCAMGUI.py:4165 flatcamGUI/FlatCAMGUI.py:4556 +#: flatcamGUI/FlatCAMGUI.py:4166 flatcamGUI/FlatCAMGUI.py:4557 msgid "INCH" msgstr "INCH" -#: flatcamGUI/FlatCAMGUI.py:4166 flatcamGUI/FlatCAMGUI.py:4557 +#: flatcamGUI/FlatCAMGUI.py:4167 flatcamGUI/FlatCAMGUI.py:4558 msgid "MM" msgstr "MM" -#: flatcamGUI/FlatCAMGUI.py:4168 +#: flatcamGUI/FlatCAMGUI.py:4169 msgid "" "This sets the units of Excellon files.\n" "Some Excellon files don't have an header\n" @@ -6717,15 +6468,15 @@ msgstr "" "Some Excellon files don't have an header\n" "therefore this parameter will be used." -#: flatcamGUI/FlatCAMGUI.py:4184 +#: flatcamGUI/FlatCAMGUI.py:4185 msgid "Excellon Optimization:" msgstr "Excellon Optimization:" -#: flatcamGUI/FlatCAMGUI.py:4191 +#: flatcamGUI/FlatCAMGUI.py:4192 msgid "Algorithm: " msgstr "Algorithm: " -#: flatcamGUI/FlatCAMGUI.py:4194 flatcamGUI/FlatCAMGUI.py:4207 +#: flatcamGUI/FlatCAMGUI.py:4195 flatcamGUI/FlatCAMGUI.py:4208 msgid "" "This sets the optimization type for the Excellon drill path.\n" "If MH is checked then Google OR-Tools algorithm with MetaHeuristic\n" @@ -6745,15 +6496,15 @@ msgstr "" "If DISABLED, then FlatCAM works in 32bit mode and it uses \n" "Travelling Salesman algorithm for path optimization." -#: flatcamGUI/FlatCAMGUI.py:4204 +#: flatcamGUI/FlatCAMGUI.py:4205 msgid "MH" msgstr "MH" -#: flatcamGUI/FlatCAMGUI.py:4219 +#: flatcamGUI/FlatCAMGUI.py:4220 msgid "Optimization Time: " msgstr "Optimization Time: " -#: flatcamGUI/FlatCAMGUI.py:4222 +#: flatcamGUI/FlatCAMGUI.py:4223 msgid "" "When OR-Tools Metaheuristic (MH) is enabled there is a\n" "maximum threshold for how much time is spent doing the\n" @@ -6765,15 +6516,15 @@ msgstr "" "path optimization. This max duration is set here.\n" "In seconds." -#: flatcamGUI/FlatCAMGUI.py:4263 +#: flatcamGUI/FlatCAMGUI.py:4264 msgid "Excellon Options" msgstr "Excellon Options" -#: flatcamGUI/FlatCAMGUI.py:4266 flatcamGUI/ObjectUI.py:584 +#: flatcamGUI/FlatCAMGUI.py:4267 flatcamGUI/ObjectUI.py:584 msgid "Create CNC Job" msgstr "Create CNC Job" -#: flatcamGUI/FlatCAMGUI.py:4268 +#: flatcamGUI/FlatCAMGUI.py:4269 msgid "" "Parameters used to create a CNC Job object\n" "for this drill object." @@ -6781,13 +6532,13 @@ msgstr "" "Parameters used to create a CNC Job object\n" "for this drill object." -#: flatcamGUI/FlatCAMGUI.py:4276 flatcamGUI/FlatCAMGUI.py:4732 -#: flatcamGUI/FlatCAMGUI.py:5740 flatcamGUI/ObjectUI.py:595 +#: flatcamGUI/FlatCAMGUI.py:4277 flatcamGUI/FlatCAMGUI.py:4733 +#: flatcamGUI/FlatCAMGUI.py:5741 flatcamGUI/ObjectUI.py:595 #: flatcamGUI/ObjectUI.py:1059 flatcamTools/ToolCalculators.py:108 msgid "Cut Z:" msgstr "Cut Z:" -#: flatcamGUI/FlatCAMGUI.py:4278 flatcamGUI/ObjectUI.py:597 +#: flatcamGUI/FlatCAMGUI.py:4279 flatcamGUI/ObjectUI.py:597 msgid "" "Drill depth (negative)\n" "below the copper surface." @@ -6795,12 +6546,12 @@ msgstr "" "Drill depth (negative)\n" "below the copper surface." -#: flatcamGUI/FlatCAMGUI.py:4285 flatcamGUI/FlatCAMGUI.py:4765 +#: flatcamGUI/FlatCAMGUI.py:4286 flatcamGUI/FlatCAMGUI.py:4766 #: flatcamGUI/ObjectUI.py:605 flatcamGUI/ObjectUI.py:1095 msgid "Travel Z:" msgstr "Travel Z:" -#: flatcamGUI/FlatCAMGUI.py:4287 flatcamGUI/ObjectUI.py:607 +#: flatcamGUI/FlatCAMGUI.py:4288 flatcamGUI/ObjectUI.py:607 msgid "" "Tool height when travelling\n" "across the XY plane." @@ -6808,11 +6559,11 @@ msgstr "" "Tool height when travelling\n" "across the XY plane." -#: flatcamGUI/FlatCAMGUI.py:4295 flatcamGUI/FlatCAMGUI.py:4775 +#: flatcamGUI/FlatCAMGUI.py:4296 flatcamGUI/FlatCAMGUI.py:4776 msgid "Tool change:" msgstr "Tool change:" -#: flatcamGUI/FlatCAMGUI.py:4297 flatcamGUI/FlatCAMGUI.py:4777 +#: flatcamGUI/FlatCAMGUI.py:4298 flatcamGUI/FlatCAMGUI.py:4778 #: flatcamGUI/ObjectUI.py:617 msgid "" "Include tool-change sequence\n" @@ -6821,19 +6572,19 @@ msgstr "" "Include tool-change sequence\n" "in G-Code (Pause for tool change)." -#: flatcamGUI/FlatCAMGUI.py:4304 flatcamGUI/FlatCAMGUI.py:4785 +#: flatcamGUI/FlatCAMGUI.py:4305 flatcamGUI/FlatCAMGUI.py:4786 msgid "Toolchange Z:" msgstr "Toolchange Z:" -#: flatcamGUI/FlatCAMGUI.py:4306 flatcamGUI/FlatCAMGUI.py:4787 +#: flatcamGUI/FlatCAMGUI.py:4307 flatcamGUI/FlatCAMGUI.py:4788 msgid "Toolchange Z position." msgstr "Toolchange Z position." -#: flatcamGUI/FlatCAMGUI.py:4312 +#: flatcamGUI/FlatCAMGUI.py:4313 msgid "Feedrate:" msgstr "Feedrate:" -#: flatcamGUI/FlatCAMGUI.py:4314 +#: flatcamGUI/FlatCAMGUI.py:4315 msgid "" "Tool speed while drilling\n" "(in units per minute)." @@ -6841,11 +6592,11 @@ msgstr "" "Tool speed while drilling\n" "(in units per minute)." -#: flatcamGUI/FlatCAMGUI.py:4322 +#: flatcamGUI/FlatCAMGUI.py:4323 msgid "Spindle Speed:" msgstr "Spindle Speed:" -#: flatcamGUI/FlatCAMGUI.py:4324 flatcamGUI/FlatCAMGUI.py:4817 +#: flatcamGUI/FlatCAMGUI.py:4325 flatcamGUI/FlatCAMGUI.py:4818 #: flatcamGUI/ObjectUI.py:681 msgid "" "Speed of the spindle\n" @@ -6854,12 +6605,12 @@ msgstr "" "Speed of the spindle\n" "in RPM (optional)" -#: flatcamGUI/FlatCAMGUI.py:4332 flatcamGUI/FlatCAMGUI.py:4825 +#: flatcamGUI/FlatCAMGUI.py:4333 flatcamGUI/FlatCAMGUI.py:4826 #: flatcamGUI/ObjectUI.py:689 flatcamGUI/ObjectUI.py:1218 msgid "Dwell:" msgstr "Dwell:" -#: flatcamGUI/FlatCAMGUI.py:4334 flatcamGUI/FlatCAMGUI.py:4827 +#: flatcamGUI/FlatCAMGUI.py:4335 flatcamGUI/FlatCAMGUI.py:4828 #: flatcamGUI/ObjectUI.py:691 flatcamGUI/ObjectUI.py:1221 msgid "" "Pause to allow the spindle to reach its\n" @@ -6868,21 +6619,21 @@ msgstr "" "Pause to allow the spindle to reach its\n" "speed before cutting." -#: flatcamGUI/FlatCAMGUI.py:4337 flatcamGUI/FlatCAMGUI.py:4830 +#: flatcamGUI/FlatCAMGUI.py:4338 flatcamGUI/FlatCAMGUI.py:4831 msgid "Duration:" msgstr "Duration:" -#: flatcamGUI/FlatCAMGUI.py:4339 flatcamGUI/FlatCAMGUI.py:4832 +#: flatcamGUI/FlatCAMGUI.py:4340 flatcamGUI/FlatCAMGUI.py:4833 #: 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:4351 flatcamGUI/FlatCAMGUI.py:4842 +#: flatcamGUI/FlatCAMGUI.py:4352 flatcamGUI/FlatCAMGUI.py:4843 #: flatcamGUI/ObjectUI.py:704 msgid "Postprocessor:" msgstr "Postprocessor:" -#: flatcamGUI/FlatCAMGUI.py:4353 +#: flatcamGUI/FlatCAMGUI.py:4354 msgid "" "The postprocessor file that dictates\n" "gcode output." @@ -6890,11 +6641,11 @@ msgstr "" "The postprocessor file that dictates\n" "gcode output." -#: flatcamGUI/FlatCAMGUI.py:4363 +#: flatcamGUI/FlatCAMGUI.py:4364 msgid "Gcode: " msgstr "Gcode: " -#: flatcamGUI/FlatCAMGUI.py:4365 +#: flatcamGUI/FlatCAMGUI.py:4366 msgid "" "Choose what to use for GCode generation:\n" "'Drills', 'Slots' or 'Both'.\n" @@ -6906,37 +6657,37 @@ msgstr "" "When choosing 'Slots' or 'Both', slots will be\n" "converted to drills." -#: flatcamGUI/FlatCAMGUI.py:4370 flatcamGUI/ObjectUI.py:556 +#: flatcamGUI/FlatCAMGUI.py:4371 flatcamGUI/ObjectUI.py:556 #: flatcamGUI/ObjectUI.py:752 msgid "Drills" msgstr "Drills" -#: flatcamGUI/FlatCAMGUI.py:4371 flatcamGUI/ObjectUI.py:556 +#: flatcamGUI/FlatCAMGUI.py:4372 flatcamGUI/ObjectUI.py:556 #: flatcamGUI/ObjectUI.py:753 msgid "Slots" msgstr "Slots" -#: flatcamGUI/FlatCAMGUI.py:4372 flatcamGUI/ObjectUI.py:754 +#: flatcamGUI/FlatCAMGUI.py:4373 flatcamGUI/ObjectUI.py:754 msgid "Both" msgstr "Both" -#: flatcamGUI/FlatCAMGUI.py:4381 flatcamGUI/ObjectUI.py:769 +#: flatcamGUI/FlatCAMGUI.py:4382 flatcamGUI/ObjectUI.py:769 msgid "Mill Holes" msgstr "Mill Holes" -#: flatcamGUI/FlatCAMGUI.py:4383 flatcamGUI/ObjectUI.py:771 +#: flatcamGUI/FlatCAMGUI.py:4384 flatcamGUI/ObjectUI.py:771 msgid "Create Geometry for milling holes." msgstr "Create Geometry for milling holes." -#: flatcamGUI/FlatCAMGUI.py:4389 +#: flatcamGUI/FlatCAMGUI.py:4390 msgid "Drill Tool dia:" msgstr "Drill Tool dia:" -#: flatcamGUI/FlatCAMGUI.py:4396 +#: flatcamGUI/FlatCAMGUI.py:4397 msgid "Slot Tool dia:" msgstr "Slot Tool dia:" -#: flatcamGUI/FlatCAMGUI.py:4398 +#: flatcamGUI/FlatCAMGUI.py:4399 msgid "" "Diameter of the cutting tool\n" "when milling slots." @@ -6944,19 +6695,19 @@ msgstr "" "Diameter of the cutting tool\n" "when milling slots." -#: flatcamGUI/FlatCAMGUI.py:4410 +#: flatcamGUI/FlatCAMGUI.py:4411 msgid "Defaults" msgstr "Defaults" -#: flatcamGUI/FlatCAMGUI.py:4423 +#: flatcamGUI/FlatCAMGUI.py:4424 msgid "Excellon Adv. Options" msgstr "Excellon Adv. Options" -#: flatcamGUI/FlatCAMGUI.py:4429 flatcamGUI/FlatCAMGUI.py:4865 +#: flatcamGUI/FlatCAMGUI.py:4430 flatcamGUI/FlatCAMGUI.py:4866 msgid "Advanced Options:" msgstr "Advanced Options:" -#: flatcamGUI/FlatCAMGUI.py:4431 +#: flatcamGUI/FlatCAMGUI.py:4432 msgid "" "Parameters used to create a CNC Job object\n" "for this drill object that are shown when App Level is Advanced." @@ -6964,11 +6715,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:4439 +#: flatcamGUI/FlatCAMGUI.py:4440 msgid "Offset Z:" msgstr "Offset Z:" -#: flatcamGUI/FlatCAMGUI.py:4441 flatcamGUI/ObjectUI.py:574 +#: flatcamGUI/FlatCAMGUI.py:4442 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" @@ -6978,20 +6729,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:4448 flatcamGUI/FlatCAMGUI.py:4876 +#: flatcamGUI/FlatCAMGUI.py:4449 flatcamGUI/FlatCAMGUI.py:4877 msgid "Toolchange X,Y:" msgstr "Toolchange X,Y:" -#: flatcamGUI/FlatCAMGUI.py:4450 flatcamGUI/FlatCAMGUI.py:4878 +#: flatcamGUI/FlatCAMGUI.py:4451 flatcamGUI/FlatCAMGUI.py:4879 msgid "Toolchange X,Y position." msgstr "Toolchange X,Y position." -#: flatcamGUI/FlatCAMGUI.py:4456 flatcamGUI/FlatCAMGUI.py:4885 +#: flatcamGUI/FlatCAMGUI.py:4457 flatcamGUI/FlatCAMGUI.py:4886 #: flatcamGUI/ObjectUI.py:634 msgid "Start move Z:" msgstr "Start move Z:" -#: flatcamGUI/FlatCAMGUI.py:4458 +#: flatcamGUI/FlatCAMGUI.py:4459 msgid "" "Height of the tool just after start.\n" "Delete the value if you don't need this feature." @@ -6999,12 +6750,12 @@ msgstr "" "Height of the tool just after start.\n" "Delete the value if you don't need this feature." -#: flatcamGUI/FlatCAMGUI.py:4465 flatcamGUI/FlatCAMGUI.py:4895 +#: flatcamGUI/FlatCAMGUI.py:4466 flatcamGUI/FlatCAMGUI.py:4896 #: flatcamGUI/ObjectUI.py:644 flatcamGUI/ObjectUI.py:1141 msgid "End move Z:" msgstr "End move Z:" -#: flatcamGUI/FlatCAMGUI.py:4467 flatcamGUI/FlatCAMGUI.py:4897 +#: flatcamGUI/FlatCAMGUI.py:4468 flatcamGUI/FlatCAMGUI.py:4898 msgid "" "Height of the tool after\n" "the last move at the end of the job." @@ -7012,12 +6763,12 @@ msgstr "" "Height of the tool after\n" "the last move at the end of the job." -#: flatcamGUI/FlatCAMGUI.py:4474 flatcamGUI/FlatCAMGUI.py:4905 +#: flatcamGUI/FlatCAMGUI.py:4475 flatcamGUI/FlatCAMGUI.py:4906 #: flatcamGUI/ObjectUI.py:665 msgid "Feedrate Rapids:" msgstr "Feedrate Rapids:" -#: flatcamGUI/FlatCAMGUI.py:4476 flatcamGUI/ObjectUI.py:667 +#: flatcamGUI/FlatCAMGUI.py:4477 flatcamGUI/ObjectUI.py:667 msgid "" "Tool speed while drilling\n" "(in units per minute).\n" @@ -7031,12 +6782,12 @@ msgstr "" "It is useful only for Marlin,\n" "ignore for any other cases." -#: flatcamGUI/FlatCAMGUI.py:4487 flatcamGUI/FlatCAMGUI.py:4929 +#: flatcamGUI/FlatCAMGUI.py:4488 flatcamGUI/FlatCAMGUI.py:4930 #: flatcamGUI/ObjectUI.py:715 flatcamGUI/ObjectUI.py:1250 msgid "Probe Z depth:" msgstr "Probe Z depth:" -#: flatcamGUI/FlatCAMGUI.py:4489 flatcamGUI/FlatCAMGUI.py:4931 +#: flatcamGUI/FlatCAMGUI.py:4490 flatcamGUI/FlatCAMGUI.py:4932 #: flatcamGUI/ObjectUI.py:717 flatcamGUI/ObjectUI.py:1253 msgid "" "The maximum depth that the probe is allowed\n" @@ -7045,21 +6796,21 @@ msgstr "" "The maximum depth that the probe is allowed\n" "to probe. Negative value, in current units." -#: flatcamGUI/FlatCAMGUI.py:4497 flatcamGUI/FlatCAMGUI.py:4939 +#: flatcamGUI/FlatCAMGUI.py:4498 flatcamGUI/FlatCAMGUI.py:4940 #: flatcamGUI/ObjectUI.py:727 flatcamGUI/ObjectUI.py:1264 msgid "Feedrate Probe:" msgstr "Feedrate Probe:" -#: flatcamGUI/FlatCAMGUI.py:4499 flatcamGUI/FlatCAMGUI.py:4941 +#: flatcamGUI/FlatCAMGUI.py:4500 flatcamGUI/FlatCAMGUI.py:4942 #: 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:4505 flatcamGUI/FlatCAMGUI.py:4948 +#: flatcamGUI/FlatCAMGUI.py:4506 flatcamGUI/FlatCAMGUI.py:4949 msgid "Fast Plunge:" msgstr "Fast Plunge:" -#: flatcamGUI/FlatCAMGUI.py:4507 flatcamGUI/FlatCAMGUI.py:4950 +#: flatcamGUI/FlatCAMGUI.py:4508 flatcamGUI/FlatCAMGUI.py:4951 msgid "" "By checking this, the vertical move from\n" "Z_Toolchange to Z_move is done with G0,\n" @@ -7071,11 +6822,11 @@ msgstr "" "meaning the fastest speed available.\n" "WARNING: the move is done at Toolchange X,Y coords." -#: flatcamGUI/FlatCAMGUI.py:4516 +#: flatcamGUI/FlatCAMGUI.py:4517 msgid "Fast Retract:" msgstr "Fast Retract:" -#: flatcamGUI/FlatCAMGUI.py:4518 +#: flatcamGUI/FlatCAMGUI.py:4519 msgid "" "Exit hole strategy.\n" " - When uncheked, while exiting the drilled hole the drill bit\n" @@ -7091,15 +6842,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:4537 +#: flatcamGUI/FlatCAMGUI.py:4538 msgid "Excellon Export" msgstr "Excellon Export" -#: flatcamGUI/FlatCAMGUI.py:4540 +#: flatcamGUI/FlatCAMGUI.py:4541 msgid "Export Options:" msgstr "Export Options:" -#: flatcamGUI/FlatCAMGUI.py:4542 +#: flatcamGUI/FlatCAMGUI.py:4543 msgid "" "The parameters set here are used in the file exported\n" "when using the File -> Export -> Export Excellon menu entry." @@ -7107,19 +6858,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:4551 +#: flatcamGUI/FlatCAMGUI.py:4552 msgid "Units:" msgstr "Units:" -#: flatcamGUI/FlatCAMGUI.py:4553 flatcamGUI/FlatCAMGUI.py:4559 +#: flatcamGUI/FlatCAMGUI.py:4554 flatcamGUI/FlatCAMGUI.py:4560 msgid "The units used in the Excellon file." msgstr "The units used in the Excellon file." -#: flatcamGUI/FlatCAMGUI.py:4565 +#: flatcamGUI/FlatCAMGUI.py:4566 msgid "Int/Decimals:" msgstr "Int/Decimals:" -#: flatcamGUI/FlatCAMGUI.py:4567 +#: flatcamGUI/FlatCAMGUI.py:4568 msgid "" "The NC drill files, usually named Excellon files\n" "are files that can be found in different formats.\n" @@ -7131,11 +6882,11 @@ msgstr "" "Here we set the format used when the provided\n" "coordinates are not using period." -#: flatcamGUI/FlatCAMGUI.py:4603 +#: flatcamGUI/FlatCAMGUI.py:4604 msgid "Format:" msgstr "Format:" -#: flatcamGUI/FlatCAMGUI.py:4605 flatcamGUI/FlatCAMGUI.py:4615 +#: flatcamGUI/FlatCAMGUI.py:4606 flatcamGUI/FlatCAMGUI.py:4616 msgid "" "Select the kind of coordinates format used.\n" "Coordinates can be saved with decimal point or without.\n" @@ -7151,19 +6902,19 @@ msgstr "" "Also it will have to be specified if LZ = leading zeros are kept\n" "or TZ = trailing zeros are kept." -#: flatcamGUI/FlatCAMGUI.py:4612 +#: flatcamGUI/FlatCAMGUI.py:4613 msgid "Decimal" msgstr "Decimal" -#: flatcamGUI/FlatCAMGUI.py:4613 +#: flatcamGUI/FlatCAMGUI.py:4614 msgid "No-Decimal" msgstr "No-Decimal" -#: flatcamGUI/FlatCAMGUI.py:4626 +#: flatcamGUI/FlatCAMGUI.py:4627 msgid "Zeros:" msgstr "Zeros:" -#: flatcamGUI/FlatCAMGUI.py:4639 +#: flatcamGUI/FlatCAMGUI.py:4640 msgid "" "This sets the default type of Excellon zeros.\n" "If LZ then Leading Zeros are kept and\n" @@ -7177,11 +6928,11 @@ msgstr "" "If TZ is checked then Trailing Zeros are kept\n" "and Leading Zeros are removed." -#: flatcamGUI/FlatCAMGUI.py:4665 +#: flatcamGUI/FlatCAMGUI.py:4666 msgid "Geometry General" msgstr "Geometry General" -#: flatcamGUI/FlatCAMGUI.py:4683 +#: flatcamGUI/FlatCAMGUI.py:4684 msgid "" "The number of circle steps for Geometry \n" "circle and arc shapes linear approximation." @@ -7189,15 +6940,15 @@ msgstr "" "The number of circle steps for Geometry \n" "circle and arc shapes linear approximation." -#: flatcamGUI/FlatCAMGUI.py:4691 +#: flatcamGUI/FlatCAMGUI.py:4692 msgid "Tools" msgstr "Tools" -#: flatcamGUI/FlatCAMGUI.py:4698 +#: flatcamGUI/FlatCAMGUI.py:4699 msgid "Tool dia: " msgstr "Tool dia: " -#: flatcamGUI/FlatCAMGUI.py:4700 +#: flatcamGUI/FlatCAMGUI.py:4701 msgid "" "The diameter of the cutting\n" "tool.." @@ -7205,15 +6956,15 @@ msgstr "" "The diameter of the cutting\n" "tool.." -#: flatcamGUI/FlatCAMGUI.py:4715 +#: flatcamGUI/FlatCAMGUI.py:4716 msgid "Geometry Options" msgstr "Geometry Options" -#: flatcamGUI/FlatCAMGUI.py:4720 +#: flatcamGUI/FlatCAMGUI.py:4721 msgid "Create CNC Job:" msgstr "Create CNC Job:" -#: flatcamGUI/FlatCAMGUI.py:4722 +#: flatcamGUI/FlatCAMGUI.py:4723 msgid "" "Create a CNC Job object\n" "tracing the contours of this\n" @@ -7223,7 +6974,7 @@ msgstr "" "tracing the contours of this\n" "Geometry object." -#: flatcamGUI/FlatCAMGUI.py:4734 flatcamGUI/ObjectUI.py:1062 +#: flatcamGUI/FlatCAMGUI.py:4735 flatcamGUI/ObjectUI.py:1062 msgid "" "Cutting depth (negative)\n" "below the copper surface." @@ -7231,19 +6982,19 @@ msgstr "" "Cutting depth (negative)\n" "below the copper surface." -#: flatcamGUI/FlatCAMGUI.py:4742 +#: flatcamGUI/FlatCAMGUI.py:4743 msgid "Multidepth" msgstr "Multidepth" -#: flatcamGUI/FlatCAMGUI.py:4744 +#: flatcamGUI/FlatCAMGUI.py:4745 msgid "Multidepth usage: True or False." msgstr "Multidepth usage: True or False." -#: flatcamGUI/FlatCAMGUI.py:4749 +#: flatcamGUI/FlatCAMGUI.py:4750 msgid "Depth/Pass:" msgstr "Depth/Pass:" -#: flatcamGUI/FlatCAMGUI.py:4751 +#: flatcamGUI/FlatCAMGUI.py:4752 msgid "" "The depth to cut on each pass,\n" "when multidepth is enabled.\n" @@ -7257,7 +7008,7 @@ msgstr "" "it is a fraction from the depth\n" "which has negative value." -#: flatcamGUI/FlatCAMGUI.py:4767 flatcamGUI/ObjectUI.py:1098 +#: flatcamGUI/FlatCAMGUI.py:4768 flatcamGUI/ObjectUI.py:1098 msgid "" "Height of the tool when\n" "moving without cutting." @@ -7265,11 +7016,11 @@ msgstr "" "Height of the tool when\n" "moving without cutting." -#: flatcamGUI/FlatCAMGUI.py:4794 flatcamGUI/ObjectUI.py:1153 +#: flatcamGUI/FlatCAMGUI.py:4795 flatcamGUI/ObjectUI.py:1153 msgid "Feed Rate X-Y:" msgstr "Feed Rate X-Y:" -#: flatcamGUI/FlatCAMGUI.py:4796 flatcamGUI/ObjectUI.py:1156 +#: flatcamGUI/FlatCAMGUI.py:4797 flatcamGUI/ObjectUI.py:1156 msgid "" "Cutting speed in the XY\n" "plane in units per minute" @@ -7277,11 +7028,11 @@ msgstr "" "Cutting speed in the XY\n" "plane in units per minute" -#: flatcamGUI/FlatCAMGUI.py:4804 +#: flatcamGUI/FlatCAMGUI.py:4805 msgid "Feed Rate Z:" msgstr "Feed Rate Z:" -#: flatcamGUI/FlatCAMGUI.py:4806 +#: flatcamGUI/FlatCAMGUI.py:4807 msgid "" "Cutting speed in the XY\n" "plane in units per minute.\n" @@ -7291,12 +7042,12 @@ msgstr "" "plane in units per minute.\n" "It is called also Plunge." -#: flatcamGUI/FlatCAMGUI.py:4815 flatcamGUI/ObjectUI.py:679 +#: flatcamGUI/FlatCAMGUI.py:4816 flatcamGUI/ObjectUI.py:679 #: flatcamGUI/ObjectUI.py:1205 msgid "Spindle speed:" msgstr "Spindle speed:" -#: flatcamGUI/FlatCAMGUI.py:4844 +#: flatcamGUI/FlatCAMGUI.py:4845 msgid "" "The postprocessor file that dictates\n" "Machine Code output." @@ -7304,11 +7055,11 @@ msgstr "" "The postprocessor file that dictates\n" "Machine Code output." -#: flatcamGUI/FlatCAMGUI.py:4860 +#: flatcamGUI/FlatCAMGUI.py:4861 msgid "Geometry Adv. Options" msgstr "Geometry Adv. Options" -#: flatcamGUI/FlatCAMGUI.py:4867 +#: flatcamGUI/FlatCAMGUI.py:4868 msgid "" "Parameters to create a CNC Job object\n" "tracing the contours of a Geometry object." @@ -7316,7 +7067,7 @@ msgstr "" "Parameters to create a CNC Job object\n" "tracing the contours of a Geometry object." -#: flatcamGUI/FlatCAMGUI.py:4887 +#: flatcamGUI/FlatCAMGUI.py:4888 msgid "" "Height of the tool just after starting the work.\n" "Delete the value if you don't need this feature." @@ -7324,7 +7075,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:4907 +#: flatcamGUI/FlatCAMGUI.py:4908 msgid "" "Cutting speed in the XY plane\n" "(in units per minute).\n" @@ -7338,11 +7089,11 @@ msgstr "" "It is useful only for Marlin,\n" "ignore for any other cases." -#: flatcamGUI/FlatCAMGUI.py:4919 +#: flatcamGUI/FlatCAMGUI.py:4920 msgid "Re-cut 1st pt." msgstr "Re-cut 1st pt." -#: flatcamGUI/FlatCAMGUI.py:4921 flatcamGUI/ObjectUI.py:1196 +#: flatcamGUI/FlatCAMGUI.py:4922 flatcamGUI/ObjectUI.py:1196 msgid "" "In order to remove possible\n" "copper leftovers where first cut\n" @@ -7354,11 +7105,11 @@ msgstr "" "meet with last cut, we generate an\n" "extended cut over the first cut section." -#: flatcamGUI/FlatCAMGUI.py:4960 +#: flatcamGUI/FlatCAMGUI.py:4961 msgid "Seg. X size:" msgstr "Seg. X size:" -#: flatcamGUI/FlatCAMGUI.py:4962 +#: flatcamGUI/FlatCAMGUI.py:4963 msgid "" "The size of the trace segment on the X axis.\n" "Useful for auto-leveling.\n" @@ -7368,11 +7119,11 @@ msgstr "" "Useful for auto-leveling.\n" "A value of 0 means no segmentation on the X axis." -#: flatcamGUI/FlatCAMGUI.py:4971 +#: flatcamGUI/FlatCAMGUI.py:4972 msgid "Seg. Y size:" msgstr "Seg. Y size:" -#: flatcamGUI/FlatCAMGUI.py:4973 +#: flatcamGUI/FlatCAMGUI.py:4974 msgid "" "The size of the trace segment on the Y axis.\n" "Useful for auto-leveling.\n" @@ -7382,20 +7133,20 @@ msgstr "" "Useful for auto-leveling.\n" "A value of 0 means no segmentation on the Y axis." -#: flatcamGUI/FlatCAMGUI.py:4989 +#: flatcamGUI/FlatCAMGUI.py:4990 msgid "CNC Job General" msgstr "CNC Job General" -#: flatcamGUI/FlatCAMGUI.py:5002 flatcamGUI/ObjectUI.py:544 +#: flatcamGUI/FlatCAMGUI.py:5003 flatcamGUI/ObjectUI.py:544 #: flatcamGUI/ObjectUI.py:874 flatcamGUI/ObjectUI.py:1428 msgid "Plot Object" msgstr "Plot Object" -#: flatcamGUI/FlatCAMGUI.py:5009 +#: flatcamGUI/FlatCAMGUI.py:5010 msgid "Plot kind:" msgstr "Plot kind:" -#: flatcamGUI/FlatCAMGUI.py:5011 flatcamGUI/ObjectUI.py:1350 +#: flatcamGUI/FlatCAMGUI.py:5012 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" @@ -7407,11 +7158,11 @@ 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:5019 flatcamGUI/ObjectUI.py:1359 +#: flatcamGUI/FlatCAMGUI.py:5020 flatcamGUI/ObjectUI.py:1359 msgid "Travel" msgstr "Travel" -#: flatcamGUI/FlatCAMGUI.py:5030 +#: flatcamGUI/FlatCAMGUI.py:5031 msgid "" "The number of circle steps for GCode \n" "circle and arc shapes linear approximation." @@ -7419,7 +7170,7 @@ msgstr "" "The number of circle steps for GCode \n" "circle and arc shapes linear approximation." -#: flatcamGUI/FlatCAMGUI.py:5040 +#: flatcamGUI/FlatCAMGUI.py:5041 msgid "" "Diameter of the tool to be\n" "rendered in the plot." @@ -7427,11 +7178,11 @@ msgstr "" "Diameter of the tool to be\n" "rendered in the plot." -#: flatcamGUI/FlatCAMGUI.py:5048 +#: flatcamGUI/FlatCAMGUI.py:5049 msgid "Coords dec.:" msgstr "Coords dec.:" -#: flatcamGUI/FlatCAMGUI.py:5050 +#: flatcamGUI/FlatCAMGUI.py:5051 msgid "" "The number of decimals to be used for \n" "the X, Y, Z coordinates in CNC code (GCODE, etc.)" @@ -7439,11 +7190,11 @@ msgstr "" "The number of decimals to be used for \n" "the X, Y, Z coordinates in CNC code (GCODE, etc.)" -#: flatcamGUI/FlatCAMGUI.py:5058 +#: flatcamGUI/FlatCAMGUI.py:5059 msgid "Feedrate dec.:" msgstr "Feedrate dec.:" -#: flatcamGUI/FlatCAMGUI.py:5060 +#: flatcamGUI/FlatCAMGUI.py:5061 msgid "" "The number of decimals to be used for \n" "the Feedrate parameter in CNC code (GCODE, etc.)" @@ -7451,15 +7202,15 @@ msgstr "" "The number of decimals to be used for \n" "the Feedrate parameter in CNC code (GCODE, etc.)" -#: flatcamGUI/FlatCAMGUI.py:5075 +#: flatcamGUI/FlatCAMGUI.py:5076 msgid "CNC Job Options" msgstr "CNC Job Options" -#: flatcamGUI/FlatCAMGUI.py:5078 flatcamGUI/FlatCAMGUI.py:5119 +#: flatcamGUI/FlatCAMGUI.py:5079 flatcamGUI/FlatCAMGUI.py:5120 msgid "Export G-Code:" msgstr "Export G-Code:" -#: flatcamGUI/FlatCAMGUI.py:5080 flatcamGUI/FlatCAMGUI.py:5121 +#: flatcamGUI/FlatCAMGUI.py:5081 flatcamGUI/FlatCAMGUI.py:5122 #: flatcamGUI/ObjectUI.py:1464 msgid "" "Export and save G-Code to\n" @@ -7468,11 +7219,11 @@ msgstr "" "Export and save G-Code to\n" "make this object to a file." -#: flatcamGUI/FlatCAMGUI.py:5086 +#: flatcamGUI/FlatCAMGUI.py:5087 msgid "Prepend to G-Code:" msgstr "Prepend to G-Code:" -#: flatcamGUI/FlatCAMGUI.py:5088 +#: flatcamGUI/FlatCAMGUI.py:5089 msgid "" "Type here any G-Code commands you would\n" "like to add at the beginning of the G-Code file." @@ -7480,11 +7231,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:5097 +#: flatcamGUI/FlatCAMGUI.py:5098 msgid "Append to G-Code:" msgstr "Append to G-Code:" -#: flatcamGUI/FlatCAMGUI.py:5099 flatcamGUI/ObjectUI.py:1486 +#: flatcamGUI/FlatCAMGUI.py:5100 flatcamGUI/ObjectUI.py:1486 msgid "" "Type here any G-Code commands you would\n" "like to append to the generated file.\n" @@ -7494,15 +7245,15 @@ msgstr "" "like to append to the generated file.\n" "I.e.: M2 (End of program)" -#: flatcamGUI/FlatCAMGUI.py:5116 +#: flatcamGUI/FlatCAMGUI.py:5117 msgid "CNC Job Adv. Options" msgstr "CNC Job Adv. Options" -#: flatcamGUI/FlatCAMGUI.py:5127 flatcamGUI/ObjectUI.py:1504 +#: flatcamGUI/FlatCAMGUI.py:5128 flatcamGUI/ObjectUI.py:1504 msgid "Toolchange G-Code:" msgstr "Toolchange G-Code:" -#: flatcamGUI/FlatCAMGUI.py:5129 +#: flatcamGUI/FlatCAMGUI.py:5130 msgid "" "Type here any G-Code commands you would\n" "like to be executed when Toolchange event is encountered.\n" @@ -7514,11 +7265,11 @@ msgstr "" "This will constitute a Custom Toolchange GCode,\n" "or a Toolchange Macro." -#: flatcamGUI/FlatCAMGUI.py:5143 flatcamGUI/ObjectUI.py:1526 +#: flatcamGUI/FlatCAMGUI.py:5144 flatcamGUI/ObjectUI.py:1526 msgid "Use Toolchange Macro" msgstr "Use Toolchange Macro" -#: flatcamGUI/FlatCAMGUI.py:5145 flatcamGUI/ObjectUI.py:1529 +#: flatcamGUI/FlatCAMGUI.py:5146 flatcamGUI/ObjectUI.py:1529 msgid "" "Check this box if you want to use\n" "a Custom Toolchange GCode (macro)." @@ -7526,7 +7277,7 @@ msgstr "" "Check this box if you want to use\n" "a Custom Toolchange GCode (macro)." -#: flatcamGUI/FlatCAMGUI.py:5157 flatcamGUI/ObjectUI.py:1538 +#: flatcamGUI/FlatCAMGUI.py:5158 flatcamGUI/ObjectUI.py:1538 msgid "" "A list of the FlatCAM variables that can be used\n" "in the Toolchange event.\n" @@ -7536,78 +7287,78 @@ msgstr "" "in the Toolchange event.\n" "They have to be surrounded by the '%' symbol" -#: flatcamGUI/FlatCAMGUI.py:5164 flatcamGUI/ObjectUI.py:1545 +#: flatcamGUI/FlatCAMGUI.py:5165 flatcamGUI/ObjectUI.py:1545 msgid "Parameters" msgstr "Parameters" -#: flatcamGUI/FlatCAMGUI.py:5167 flatcamGUI/ObjectUI.py:1548 +#: flatcamGUI/FlatCAMGUI.py:5168 flatcamGUI/ObjectUI.py:1548 msgid "FlatCAM CNC parameters" msgstr "FlatCAM CNC parameters" -#: flatcamGUI/FlatCAMGUI.py:5168 flatcamGUI/ObjectUI.py:1549 +#: flatcamGUI/FlatCAMGUI.py:5169 flatcamGUI/ObjectUI.py:1549 msgid "tool = tool number" msgstr "tool = tool number" -#: flatcamGUI/FlatCAMGUI.py:5169 flatcamGUI/ObjectUI.py:1550 +#: flatcamGUI/FlatCAMGUI.py:5170 flatcamGUI/ObjectUI.py:1550 msgid "tooldia = tool diameter" msgstr "tooldia = tool diameter" -#: flatcamGUI/FlatCAMGUI.py:5170 flatcamGUI/ObjectUI.py:1551 +#: flatcamGUI/FlatCAMGUI.py:5171 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:5171 flatcamGUI/ObjectUI.py:1552 +#: flatcamGUI/FlatCAMGUI.py:5172 flatcamGUI/ObjectUI.py:1552 msgid "x_toolchange = X coord for Toolchange" msgstr "x_toolchange = X coord for Toolchange" -#: flatcamGUI/FlatCAMGUI.py:5172 flatcamGUI/ObjectUI.py:1553 +#: flatcamGUI/FlatCAMGUI.py:5173 flatcamGUI/ObjectUI.py:1553 msgid "y_toolchange = Y coord for Toolchange" msgstr "y_toolchange = Y coord for Toolchange" -#: flatcamGUI/FlatCAMGUI.py:5173 flatcamGUI/ObjectUI.py:1554 +#: flatcamGUI/FlatCAMGUI.py:5174 flatcamGUI/ObjectUI.py:1554 msgid "z_toolchange = Z coord for Toolchange" msgstr "z_toolchange = Z coord for Toolchange" -#: flatcamGUI/FlatCAMGUI.py:5174 +#: flatcamGUI/FlatCAMGUI.py:5175 msgid "z_cut = Z depth for the cut" msgstr "z_cut = Z depth for the cut" -#: flatcamGUI/FlatCAMGUI.py:5175 +#: flatcamGUI/FlatCAMGUI.py:5176 msgid "z_move = Z height for travel" msgstr "z_move = Z height for travel" -#: flatcamGUI/FlatCAMGUI.py:5176 flatcamGUI/ObjectUI.py:1557 +#: flatcamGUI/FlatCAMGUI.py:5177 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:5177 flatcamGUI/ObjectUI.py:1558 +#: flatcamGUI/FlatCAMGUI.py:5178 flatcamGUI/ObjectUI.py:1558 msgid "spindlesspeed = the value for the spindle speed" msgstr "spindlesspeed = the value for the spindle speed" -#: flatcamGUI/FlatCAMGUI.py:5178 flatcamGUI/ObjectUI.py:1559 +#: flatcamGUI/FlatCAMGUI.py:5179 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:5199 +#: flatcamGUI/FlatCAMGUI.py:5200 msgid "NCC Tool Options" msgstr "NCC Tool Options" -#: flatcamGUI/FlatCAMGUI.py:5202 flatcamGUI/FlatCAMGUI.py:5303 -#: flatcamGUI/FlatCAMGUI.py:5382 flatcamGUI/FlatCAMGUI.py:5441 -#: flatcamGUI/FlatCAMGUI.py:5544 flatcamGUI/FlatCAMGUI.py:5605 -#: flatcamGUI/FlatCAMGUI.py:5804 flatcamGUI/FlatCAMGUI.py:5931 +#: flatcamGUI/FlatCAMGUI.py:5203 flatcamGUI/FlatCAMGUI.py:5304 +#: flatcamGUI/FlatCAMGUI.py:5383 flatcamGUI/FlatCAMGUI.py:5442 +#: flatcamGUI/FlatCAMGUI.py:5545 flatcamGUI/FlatCAMGUI.py:5606 +#: flatcamGUI/FlatCAMGUI.py:5805 flatcamGUI/FlatCAMGUI.py:5932 msgid "Parameters:" msgstr "Parameters:" -#: flatcamGUI/FlatCAMGUI.py:5212 flatcamGUI/FlatCAMGUI.py:5942 +#: flatcamGUI/FlatCAMGUI.py:5213 flatcamGUI/FlatCAMGUI.py:5943 msgid "Tools dia:" msgstr "Tools dia:" -#: flatcamGUI/FlatCAMGUI.py:5214 +#: flatcamGUI/FlatCAMGUI.py:5215 msgid "Diameters of the cutting tools, separated by ','" msgstr "Diameters of the cutting tools, separated by ','" -#: flatcamGUI/FlatCAMGUI.py:5222 flatcamTools/ToolNonCopperClear.py:167 +#: flatcamGUI/FlatCAMGUI.py:5223 flatcamTools/ToolNonCopperClear.py:167 #, python-format msgid "" "How much (fraction) of the tool width to overlap each tool pass.\n" @@ -7632,11 +7383,11 @@ msgstr "" "Higher values = slow processing and slow execution on CNC\n" "due of too many paths." -#: flatcamGUI/FlatCAMGUI.py:5238 flatcamTools/ToolNonCopperClear.py:183 +#: flatcamGUI/FlatCAMGUI.py:5239 flatcamTools/ToolNonCopperClear.py:183 msgid "Bounding box margin." msgstr "Bounding box margin." -#: flatcamGUI/FlatCAMGUI.py:5247 flatcamTools/ToolNonCopperClear.py:192 +#: flatcamGUI/FlatCAMGUI.py:5248 flatcamTools/ToolNonCopperClear.py:192 #: flatcamTools/ToolPaint.py:190 msgid "" "Algorithm for non-copper clearing:
Standard: Fixed step inwards." @@ -7647,12 +7398,12 @@ msgstr "" "
Seed-based: Outwards from seed.
Line-based: Parallel " "lines." -#: flatcamGUI/FlatCAMGUI.py:5279 flatcamTools/ToolNonCopperClear.py:224 +#: flatcamGUI/FlatCAMGUI.py:5280 flatcamTools/ToolNonCopperClear.py:224 #: flatcamTools/ToolPaint.py:222 msgid "Rest M.:" msgstr "Rest M.:" -#: flatcamGUI/FlatCAMGUI.py:5281 +#: flatcamGUI/FlatCAMGUI.py:5282 msgid "" "If checked, use 'rest machining'.\n" "Basically it will clear copper outside PCB features,\n" @@ -7668,11 +7419,11 @@ msgstr "" "could not be cleared by previous tool.\n" "If not checked, use the standard algorithm." -#: flatcamGUI/FlatCAMGUI.py:5300 +#: flatcamGUI/FlatCAMGUI.py:5301 msgid "Cutout Tool Options" msgstr "Cutout Tool Options" -#: flatcamGUI/FlatCAMGUI.py:5305 flatcamGUI/ObjectUI.py:402 +#: flatcamGUI/FlatCAMGUI.py:5306 flatcamGUI/ObjectUI.py:402 msgid "" "Create toolpaths to cut around\n" "the PCB and separate it from\n" @@ -7682,7 +7433,7 @@ msgstr "" "the PCB and separate it from\n" "the original board." -#: flatcamGUI/FlatCAMGUI.py:5324 +#: flatcamGUI/FlatCAMGUI.py:5325 msgid "" "Distance from objects at which\n" "to draw the cutout." @@ -7690,11 +7441,11 @@ msgstr "" "Distance from objects at which\n" "to draw the cutout." -#: flatcamGUI/FlatCAMGUI.py:5331 flatcamTools/ToolCutOut.py:96 +#: flatcamGUI/FlatCAMGUI.py:5332 flatcamTools/ToolCutOut.py:96 msgid "Gap size:" msgstr "Gap size:" -#: flatcamGUI/FlatCAMGUI.py:5333 +#: flatcamGUI/FlatCAMGUI.py:5334 msgid "" "Size of the gaps in the toolpath\n" "that will remain to hold the\n" @@ -7704,11 +7455,11 @@ msgstr "" "that will remain to hold the\n" "board in place." -#: flatcamGUI/FlatCAMGUI.py:5341 flatcamTools/ToolCutOut.py:133 +#: flatcamGUI/FlatCAMGUI.py:5342 flatcamTools/ToolCutOut.py:133 msgid "Gaps:" msgstr "Gaps:" -#: flatcamGUI/FlatCAMGUI.py:5343 +#: flatcamGUI/FlatCAMGUI.py:5344 msgid "" "Number of bridge gaps used for the cutout.\n" "There can be maximum 8 bridges/gaps.\n" @@ -7730,19 +7481,19 @@ msgstr "" "- 2tb - 2*top + 2*bottom\n" "- 8 - 2*left + 2*right +2*top + 2*bottom" -#: flatcamGUI/FlatCAMGUI.py:5364 flatcamTools/ToolCutOut.py:115 +#: flatcamGUI/FlatCAMGUI.py:5365 flatcamTools/ToolCutOut.py:115 msgid "Convex Sh.:" msgstr "Convex Sh.:" -#: flatcamGUI/FlatCAMGUI.py:5366 flatcamTools/ToolCutOut.py:117 +#: flatcamGUI/FlatCAMGUI.py:5367 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:5379 +#: flatcamGUI/FlatCAMGUI.py:5380 msgid "2Sided Tool Options" msgstr "2Sided Tool Options" -#: flatcamGUI/FlatCAMGUI.py:5384 +#: flatcamGUI/FlatCAMGUI.py:5385 msgid "" "A tool to help in creating a double sided\n" "PCB using alignment holes." @@ -7750,44 +7501,44 @@ msgstr "" "A tool to help in creating a double sided\n" "PCB using alignment holes." -#: flatcamGUI/FlatCAMGUI.py:5394 flatcamTools/ToolDblSided.py:235 +#: flatcamGUI/FlatCAMGUI.py:5395 flatcamTools/ToolDblSided.py:235 msgid "Drill diam.:" msgstr "Drill diam.:" -#: flatcamGUI/FlatCAMGUI.py:5396 flatcamTools/ToolDblSided.py:226 +#: flatcamGUI/FlatCAMGUI.py:5397 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:5403 +#: flatcamGUI/FlatCAMGUI.py:5404 msgid "X" msgstr "X" -#: flatcamGUI/FlatCAMGUI.py:5404 +#: flatcamGUI/FlatCAMGUI.py:5405 msgid "Y" msgstr "Y" -#: flatcamGUI/FlatCAMGUI.py:5405 flatcamTools/ToolDblSided.py:120 +#: flatcamGUI/FlatCAMGUI.py:5406 flatcamTools/ToolDblSided.py:120 msgid "Mirror Axis:" msgstr "Mirror Axis:" -#: flatcamGUI/FlatCAMGUI.py:5407 flatcamTools/ToolDblSided.py:122 +#: flatcamGUI/FlatCAMGUI.py:5408 flatcamTools/ToolDblSided.py:122 msgid "Mirror vertically (X) or horizontally (Y)." msgstr "Mirror vertically (X) or horizontally (Y)." -#: flatcamGUI/FlatCAMGUI.py:5416 +#: flatcamGUI/FlatCAMGUI.py:5417 msgid "Point" msgstr "Point" -#: flatcamGUI/FlatCAMGUI.py:5417 +#: flatcamGUI/FlatCAMGUI.py:5418 msgid "Box" msgstr "Box" -#: flatcamGUI/FlatCAMGUI.py:5418 flatcamTools/ToolDblSided.py:133 +#: flatcamGUI/FlatCAMGUI.py:5419 flatcamTools/ToolDblSided.py:133 msgid "Axis Ref:" msgstr "Axis Ref:" -#: flatcamGUI/FlatCAMGUI.py:5420 +#: flatcamGUI/FlatCAMGUI.py:5421 msgid "" "The axis should pass through a point or cut\n" " a specified box (in a Geometry object) in \n" @@ -7797,11 +7548,11 @@ msgstr "" " a specified box (in a Geometry object) in \n" "the middle." -#: flatcamGUI/FlatCAMGUI.py:5436 +#: flatcamGUI/FlatCAMGUI.py:5437 msgid "Paint Tool Options" msgstr "Paint Tool Options" -#: flatcamGUI/FlatCAMGUI.py:5443 flatcamGUI/ObjectUI.py:1299 +#: flatcamGUI/FlatCAMGUI.py:5444 flatcamGUI/ObjectUI.py:1299 msgid "" "Creates tool paths to cover the\n" "whole area of a polygon (remove\n" @@ -7813,7 +7564,7 @@ msgstr "" "all copper). You will be asked\n" "to click on the desired polygon." -#: flatcamGUI/FlatCAMGUI.py:5467 +#: flatcamGUI/FlatCAMGUI.py:5468 msgid "" "How much (fraction) of the tool\n" "width to overlap each tool pass." @@ -7821,23 +7572,23 @@ msgstr "" "How much (fraction) of the tool\n" "width to overlap each tool pass." -#: flatcamGUI/FlatCAMGUI.py:5521 flatcamTools/ToolPaint.py:237 +#: flatcamGUI/FlatCAMGUI.py:5522 flatcamTools/ToolPaint.py:237 msgid "Selection:" msgstr "Selection:" -#: flatcamGUI/FlatCAMGUI.py:5523 +#: flatcamGUI/FlatCAMGUI.py:5524 msgid "How to select the polygons to paint." msgstr "How to select the polygons to paint." -#: flatcamGUI/FlatCAMGUI.py:5527 +#: flatcamGUI/FlatCAMGUI.py:5528 msgid "Single" msgstr "Single" -#: flatcamGUI/FlatCAMGUI.py:5541 +#: flatcamGUI/FlatCAMGUI.py:5542 msgid "Film Tool Options" msgstr "Film Tool Options" -#: flatcamGUI/FlatCAMGUI.py:5546 +#: flatcamGUI/FlatCAMGUI.py:5547 msgid "" "Create a PCB film from a Gerber or Geometry\n" "FlatCAM object.\n" @@ -7847,19 +7598,19 @@ msgstr "" "FlatCAM object.\n" "The file is saved in SVG format." -#: flatcamGUI/FlatCAMGUI.py:5555 +#: flatcamGUI/FlatCAMGUI.py:5556 msgid "Pos" msgstr "Pos" -#: flatcamGUI/FlatCAMGUI.py:5556 +#: flatcamGUI/FlatCAMGUI.py:5557 msgid "Neg" msgstr "Neg" -#: flatcamGUI/FlatCAMGUI.py:5557 flatcamTools/ToolFilm.py:116 +#: flatcamGUI/FlatCAMGUI.py:5558 flatcamTools/ToolFilm.py:116 msgid "Film Type:" msgstr "Film Type:" -#: flatcamGUI/FlatCAMGUI.py:5559 flatcamTools/ToolFilm.py:118 +#: flatcamGUI/FlatCAMGUI.py:5560 flatcamTools/ToolFilm.py:118 msgid "" "Generate a Positive black film or a Negative film.\n" "Positive means that it will print the features\n" @@ -7875,11 +7626,11 @@ msgstr "" "with white on a black canvas.\n" "The Film format is SVG." -#: flatcamGUI/FlatCAMGUI.py:5570 flatcamTools/ToolFilm.py:130 +#: flatcamGUI/FlatCAMGUI.py:5571 flatcamTools/ToolFilm.py:130 msgid "Border:" msgstr "Border:" -#: flatcamGUI/FlatCAMGUI.py:5572 flatcamTools/ToolFilm.py:132 +#: flatcamGUI/FlatCAMGUI.py:5573 flatcamTools/ToolFilm.py:132 msgid "" "Specify a border around the object.\n" "Only for negative film.\n" @@ -7899,11 +7650,11 @@ msgstr "" "white color like the rest and which may confound with the\n" "surroundings if not for this border." -#: flatcamGUI/FlatCAMGUI.py:5585 flatcamTools/ToolFilm.py:144 +#: flatcamGUI/FlatCAMGUI.py:5586 flatcamTools/ToolFilm.py:144 msgid "Scale Stroke:" msgstr "Scale Stroke:" -#: flatcamGUI/FlatCAMGUI.py:5587 flatcamTools/ToolFilm.py:146 +#: flatcamGUI/FlatCAMGUI.py:5588 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 " @@ -7915,11 +7666,11 @@ msgstr "" "thinner,\n" "therefore the fine features may be more affected by this parameter." -#: flatcamGUI/FlatCAMGUI.py:5602 +#: flatcamGUI/FlatCAMGUI.py:5603 msgid "Panelize Tool Options" msgstr "Panelize Tool Options" -#: flatcamGUI/FlatCAMGUI.py:5607 +#: flatcamGUI/FlatCAMGUI.py:5608 msgid "" "Create an object that contains an array of (x, y) elements,\n" "each element is a copy of the source object spaced\n" @@ -7929,11 +7680,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:5618 flatcamTools/ToolPanelize.py:113 +#: flatcamGUI/FlatCAMGUI.py:5619 flatcamTools/ToolPanelize.py:113 msgid "Spacing cols:" msgstr "Spacing cols:" -#: flatcamGUI/FlatCAMGUI.py:5620 flatcamTools/ToolPanelize.py:115 +#: flatcamGUI/FlatCAMGUI.py:5621 flatcamTools/ToolPanelize.py:115 msgid "" "Spacing between columns of the desired panel.\n" "In current units." @@ -7941,11 +7692,11 @@ msgstr "" "Spacing between columns of the desired panel.\n" "In current units." -#: flatcamGUI/FlatCAMGUI.py:5628 flatcamTools/ToolPanelize.py:122 +#: flatcamGUI/FlatCAMGUI.py:5629 flatcamTools/ToolPanelize.py:122 msgid "Spacing rows:" msgstr "Spacing rows:" -#: flatcamGUI/FlatCAMGUI.py:5630 flatcamTools/ToolPanelize.py:124 +#: flatcamGUI/FlatCAMGUI.py:5631 flatcamTools/ToolPanelize.py:124 msgid "" "Spacing between rows of the desired panel.\n" "In current units." @@ -7953,35 +7704,35 @@ msgstr "" "Spacing between rows of the desired panel.\n" "In current units." -#: flatcamGUI/FlatCAMGUI.py:5638 flatcamTools/ToolPanelize.py:131 +#: flatcamGUI/FlatCAMGUI.py:5639 flatcamTools/ToolPanelize.py:131 msgid "Columns:" msgstr "Columns:" -#: flatcamGUI/FlatCAMGUI.py:5640 flatcamTools/ToolPanelize.py:133 +#: flatcamGUI/FlatCAMGUI.py:5641 flatcamTools/ToolPanelize.py:133 msgid "Number of columns of the desired panel" msgstr "Number of columns of the desired panel" -#: flatcamGUI/FlatCAMGUI.py:5647 flatcamTools/ToolPanelize.py:139 +#: flatcamGUI/FlatCAMGUI.py:5648 flatcamTools/ToolPanelize.py:139 msgid "Rows:" msgstr "Rows:" -#: flatcamGUI/FlatCAMGUI.py:5649 flatcamTools/ToolPanelize.py:141 +#: flatcamGUI/FlatCAMGUI.py:5650 flatcamTools/ToolPanelize.py:141 msgid "Number of rows of the desired panel" msgstr "Number of rows of the desired panel" -#: flatcamGUI/FlatCAMGUI.py:5655 +#: flatcamGUI/FlatCAMGUI.py:5656 msgid "Gerber" msgstr "Gerber" -#: flatcamGUI/FlatCAMGUI.py:5656 +#: flatcamGUI/FlatCAMGUI.py:5657 msgid "Geo" msgstr "Geo" -#: flatcamGUI/FlatCAMGUI.py:5657 flatcamTools/ToolPanelize.py:148 +#: flatcamGUI/FlatCAMGUI.py:5658 flatcamTools/ToolPanelize.py:148 msgid "Panel Type:" msgstr "Panel Type:" -#: flatcamGUI/FlatCAMGUI.py:5659 +#: flatcamGUI/FlatCAMGUI.py:5660 msgid "" "Choose the type of object for the panel object:\n" "- Gerber\n" @@ -7991,11 +7742,11 @@ msgstr "" "- Gerber\n" "- Geometry" -#: flatcamGUI/FlatCAMGUI.py:5668 +#: flatcamGUI/FlatCAMGUI.py:5669 msgid "Constrain within:" msgstr "Constrain within:" -#: flatcamGUI/FlatCAMGUI.py:5670 flatcamTools/ToolPanelize.py:160 +#: flatcamGUI/FlatCAMGUI.py:5671 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" @@ -8009,11 +7760,11 @@ msgstr "" "the final panel will have as many columns and rows as\n" "they fit completely within selected area." -#: flatcamGUI/FlatCAMGUI.py:5679 flatcamTools/ToolPanelize.py:169 +#: flatcamGUI/FlatCAMGUI.py:5680 flatcamTools/ToolPanelize.py:169 msgid "Width (DX):" msgstr "Width (DX):" -#: flatcamGUI/FlatCAMGUI.py:5681 flatcamTools/ToolPanelize.py:171 +#: flatcamGUI/FlatCAMGUI.py:5682 flatcamTools/ToolPanelize.py:171 msgid "" "The width (DX) within which the panel must fit.\n" "In current units." @@ -8021,11 +7772,11 @@ msgstr "" "The width (DX) within which the panel must fit.\n" "In current units." -#: flatcamGUI/FlatCAMGUI.py:5688 flatcamTools/ToolPanelize.py:177 +#: flatcamGUI/FlatCAMGUI.py:5689 flatcamTools/ToolPanelize.py:177 msgid "Height (DY):" msgstr "Height (DY):" -#: flatcamGUI/FlatCAMGUI.py:5690 flatcamTools/ToolPanelize.py:179 +#: flatcamGUI/FlatCAMGUI.py:5691 flatcamTools/ToolPanelize.py:179 msgid "" "The height (DY)within which the panel must fit.\n" "In current units." @@ -8033,15 +7784,15 @@ msgstr "" "The height (DY)within which the panel must fit.\n" "In current units." -#: flatcamGUI/FlatCAMGUI.py:5704 +#: flatcamGUI/FlatCAMGUI.py:5705 msgid "Calculators Tool Options" msgstr "Calculators Tool Options" -#: flatcamGUI/FlatCAMGUI.py:5707 +#: flatcamGUI/FlatCAMGUI.py:5708 msgid "V-Shape Tool Calculator:" msgstr "V-Shape Tool Calculator:" -#: flatcamGUI/FlatCAMGUI.py:5709 +#: flatcamGUI/FlatCAMGUI.py:5710 msgid "" "Calculate the tool diameter for a given V-shape tool,\n" "having the tip diameter, tip angle and\n" @@ -8051,11 +7802,11 @@ msgstr "" "having the tip diameter, tip angle and\n" "depth-of-cut as parameters." -#: flatcamGUI/FlatCAMGUI.py:5720 flatcamTools/ToolCalculators.py:94 +#: flatcamGUI/FlatCAMGUI.py:5721 flatcamTools/ToolCalculators.py:94 msgid "Tip Diameter:" msgstr "Tip Diameter:" -#: flatcamGUI/FlatCAMGUI.py:5722 +#: flatcamGUI/FlatCAMGUI.py:5723 msgid "" "This is the tool tip diameter.\n" "It is specified by manufacturer." @@ -8063,11 +7814,11 @@ msgstr "" "This is the tool tip diameter.\n" "It is specified by manufacturer." -#: flatcamGUI/FlatCAMGUI.py:5730 +#: flatcamGUI/FlatCAMGUI.py:5731 msgid "Tip angle:" msgstr "Tip angle:" -#: flatcamGUI/FlatCAMGUI.py:5732 +#: flatcamGUI/FlatCAMGUI.py:5733 msgid "" "This is the angle on the tip of the tool.\n" "It is specified by manufacturer." @@ -8075,7 +7826,7 @@ msgstr "" "This is the angle on the tip of the tool.\n" "It is specified by manufacturer." -#: flatcamGUI/FlatCAMGUI.py:5742 +#: flatcamGUI/FlatCAMGUI.py:5743 msgid "" "This is depth to cut into material.\n" "In the CNCJob object it is the CutZ parameter." @@ -8083,11 +7834,11 @@ msgstr "" "This is depth to cut into material.\n" "In the CNCJob object it is the CutZ parameter." -#: flatcamGUI/FlatCAMGUI.py:5749 +#: flatcamGUI/FlatCAMGUI.py:5750 msgid "ElectroPlating Calculator:" msgstr "ElectroPlating Calculator:" -#: flatcamGUI/FlatCAMGUI.py:5751 flatcamTools/ToolCalculators.py:152 +#: flatcamGUI/FlatCAMGUI.py:5752 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 " @@ -8097,27 +7848,27 @@ msgstr "" "using a method like grahite ink or calcium hypophosphite ink or palladium " "chloride." -#: flatcamGUI/FlatCAMGUI.py:5761 flatcamTools/ToolCalculators.py:161 +#: flatcamGUI/FlatCAMGUI.py:5762 flatcamTools/ToolCalculators.py:161 msgid "Board Length:" msgstr "Board Length:" -#: flatcamGUI/FlatCAMGUI.py:5763 flatcamTools/ToolCalculators.py:165 +#: flatcamGUI/FlatCAMGUI.py:5764 flatcamTools/ToolCalculators.py:165 msgid "This is the board length. In centimeters." msgstr "This is the board length. In centimeters." -#: flatcamGUI/FlatCAMGUI.py:5769 flatcamTools/ToolCalculators.py:167 +#: flatcamGUI/FlatCAMGUI.py:5770 flatcamTools/ToolCalculators.py:167 msgid "Board Width:" msgstr "Board Width:" -#: flatcamGUI/FlatCAMGUI.py:5771 flatcamTools/ToolCalculators.py:171 +#: flatcamGUI/FlatCAMGUI.py:5772 flatcamTools/ToolCalculators.py:171 msgid "This is the board width.In centimeters." msgstr "This is the board width.In centimeters." -#: flatcamGUI/FlatCAMGUI.py:5776 flatcamTools/ToolCalculators.py:173 +#: flatcamGUI/FlatCAMGUI.py:5777 flatcamTools/ToolCalculators.py:173 msgid "Current Density:" msgstr "Current Density:" -#: flatcamGUI/FlatCAMGUI.py:5779 flatcamTools/ToolCalculators.py:177 +#: flatcamGUI/FlatCAMGUI.py:5780 flatcamTools/ToolCalculators.py:177 msgid "" "Current density to pass through the board. \n" "In Amps per Square Feet ASF." @@ -8125,11 +7876,11 @@ msgstr "" "Current density to pass through the board. \n" "In Amps per Square Feet ASF." -#: flatcamGUI/FlatCAMGUI.py:5785 flatcamTools/ToolCalculators.py:181 +#: flatcamGUI/FlatCAMGUI.py:5786 flatcamTools/ToolCalculators.py:181 msgid "Copper Growth:" msgstr "Copper Growth:" -#: flatcamGUI/FlatCAMGUI.py:5788 flatcamTools/ToolCalculators.py:185 +#: flatcamGUI/FlatCAMGUI.py:5789 flatcamTools/ToolCalculators.py:185 msgid "" "How thick the copper growth is intended to be.\n" "In microns." @@ -8137,11 +7888,11 @@ msgstr "" "How thick the copper growth is intended to be.\n" "In microns." -#: flatcamGUI/FlatCAMGUI.py:5801 +#: flatcamGUI/FlatCAMGUI.py:5802 msgid "Transform Tool Options" msgstr "Transform Tool Options" -#: flatcamGUI/FlatCAMGUI.py:5806 +#: flatcamGUI/FlatCAMGUI.py:5807 msgid "" "Various transformations that can be applied\n" "on a FlatCAM object." @@ -8149,47 +7900,47 @@ msgstr "" "Various transformations that can be applied\n" "on a FlatCAM object." -#: flatcamGUI/FlatCAMGUI.py:5816 +#: flatcamGUI/FlatCAMGUI.py:5817 msgid "Rotate Angle:" msgstr "Rotate Angle:" -#: flatcamGUI/FlatCAMGUI.py:5818 +#: flatcamGUI/FlatCAMGUI.py:5819 msgid "Angle for rotation. In degrees." msgstr "Angle for rotation. In degrees." -#: flatcamGUI/FlatCAMGUI.py:5825 +#: flatcamGUI/FlatCAMGUI.py:5826 msgid "Skew_X angle:" msgstr "Skew_X angle:" -#: flatcamGUI/FlatCAMGUI.py:5827 +#: flatcamGUI/FlatCAMGUI.py:5828 msgid "Angle for Skew/Shear on X axis. In degrees." msgstr "Angle for Skew/Shear on X axis. In degrees." -#: flatcamGUI/FlatCAMGUI.py:5834 +#: flatcamGUI/FlatCAMGUI.py:5835 msgid "Skew_Y angle:" msgstr "Skew_Y angle:" -#: flatcamGUI/FlatCAMGUI.py:5836 +#: flatcamGUI/FlatCAMGUI.py:5837 msgid "Angle for Skew/Shear on Y axis. In degrees." msgstr "Angle for Skew/Shear on Y axis. In degrees." -#: flatcamGUI/FlatCAMGUI.py:5843 +#: flatcamGUI/FlatCAMGUI.py:5844 msgid "Scale_X factor:" msgstr "Scale_X factor:" -#: flatcamGUI/FlatCAMGUI.py:5845 +#: flatcamGUI/FlatCAMGUI.py:5846 msgid "Factor for scaling on X axis." msgstr "Factor for scaling on X axis." -#: flatcamGUI/FlatCAMGUI.py:5852 +#: flatcamGUI/FlatCAMGUI.py:5853 msgid "Scale_Y factor:" msgstr "Scale_Y factor:" -#: flatcamGUI/FlatCAMGUI.py:5854 +#: flatcamGUI/FlatCAMGUI.py:5855 msgid "Factor for scaling on Y axis." msgstr "Factor for scaling on Y axis." -#: flatcamGUI/FlatCAMGUI.py:5862 +#: flatcamGUI/FlatCAMGUI.py:5863 msgid "" "Scale the selected object(s)\n" "using the Scale_X factor for both axis." @@ -8197,7 +7948,7 @@ msgstr "" "Scale the selected object(s)\n" "using the Scale_X factor for both axis." -#: flatcamGUI/FlatCAMGUI.py:5870 flatcamTools/ToolTransform.py:210 +#: flatcamGUI/FlatCAMGUI.py:5871 flatcamTools/ToolTransform.py:210 msgid "" "Scale the selected object(s)\n" "using the origin reference when checked,\n" @@ -8209,27 +7960,27 @@ msgstr "" "and the center of the biggest bounding box\n" "of the selected objects when unchecked." -#: flatcamGUI/FlatCAMGUI.py:5879 +#: flatcamGUI/FlatCAMGUI.py:5880 msgid "Offset_X val:" msgstr "Offset_X val:" -#: flatcamGUI/FlatCAMGUI.py:5881 +#: flatcamGUI/FlatCAMGUI.py:5882 msgid "Distance to offset on X axis. In current units." msgstr "Distance to offset on X axis. In current units." -#: flatcamGUI/FlatCAMGUI.py:5888 +#: flatcamGUI/FlatCAMGUI.py:5889 msgid "Offset_Y val:" msgstr "Offset_Y val:" -#: flatcamGUI/FlatCAMGUI.py:5890 +#: flatcamGUI/FlatCAMGUI.py:5891 msgid "Distance to offset on Y axis. In current units." msgstr "Distance to offset on Y axis. In current units." -#: flatcamGUI/FlatCAMGUI.py:5896 +#: flatcamGUI/FlatCAMGUI.py:5897 msgid "Mirror Reference" msgstr "Mirror Reference" -#: flatcamGUI/FlatCAMGUI.py:5898 flatcamTools/ToolTransform.py:314 +#: flatcamGUI/FlatCAMGUI.py:5899 flatcamTools/ToolTransform.py:314 msgid "" "Flip the selected object(s)\n" "around the point in Point Entry Field.\n" @@ -8251,11 +8002,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:5909 +#: flatcamGUI/FlatCAMGUI.py:5910 msgid " Mirror Ref. Point:" msgstr " Mirror Ref. Point:" -#: flatcamGUI/FlatCAMGUI.py:5911 flatcamTools/ToolTransform.py:327 +#: flatcamGUI/FlatCAMGUI.py:5912 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" @@ -8265,11 +8016,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:5928 +#: flatcamGUI/FlatCAMGUI.py:5929 msgid "SolderPaste Tool Options" msgstr "SolderPaste Tool Options" -#: flatcamGUI/FlatCAMGUI.py:5933 +#: flatcamGUI/FlatCAMGUI.py:5934 msgid "" "A tool to create GCode for dispensing\n" "solder paste onto a PCB." @@ -8277,47 +8028,47 @@ msgstr "" "A tool to create GCode for dispensing\n" "solder paste onto a PCB." -#: flatcamGUI/FlatCAMGUI.py:5944 +#: flatcamGUI/FlatCAMGUI.py:5945 msgid "Diameters of nozzle tools, separated by ','" msgstr "Diameters of nozzle tools, separated by ','" -#: flatcamGUI/FlatCAMGUI.py:5951 +#: flatcamGUI/FlatCAMGUI.py:5952 msgid "New Nozzle Dia:" msgstr "New Nozzle Dia:" -#: flatcamGUI/FlatCAMGUI.py:5953 flatcamTools/ToolSolderPaste.py:103 +#: flatcamGUI/FlatCAMGUI.py:5954 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:5961 flatcamTools/ToolSolderPaste.py:166 +#: flatcamGUI/FlatCAMGUI.py:5962 flatcamTools/ToolSolderPaste.py:166 msgid "Z Dispense Start:" msgstr "Z Dispense Start:" -#: flatcamGUI/FlatCAMGUI.py:5963 flatcamTools/ToolSolderPaste.py:168 +#: flatcamGUI/FlatCAMGUI.py:5964 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:5970 flatcamTools/ToolSolderPaste.py:174 +#: flatcamGUI/FlatCAMGUI.py:5971 flatcamTools/ToolSolderPaste.py:174 msgid "Z Dispense:" msgstr "Z Dispense:" -#: flatcamGUI/FlatCAMGUI.py:5972 flatcamTools/ToolSolderPaste.py:176 +#: flatcamGUI/FlatCAMGUI.py:5973 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:5979 flatcamTools/ToolSolderPaste.py:183 +#: flatcamGUI/FlatCAMGUI.py:5980 flatcamTools/ToolSolderPaste.py:183 msgid "Z Dispense Stop:" msgstr "Z Dispense Stop:" -#: flatcamGUI/FlatCAMGUI.py:5981 flatcamTools/ToolSolderPaste.py:185 +#: flatcamGUI/FlatCAMGUI.py:5982 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:5988 flatcamTools/ToolSolderPaste.py:191 +#: flatcamGUI/FlatCAMGUI.py:5989 flatcamTools/ToolSolderPaste.py:191 msgid "Z Travel:" msgstr "Z Travel:" -#: flatcamGUI/FlatCAMGUI.py:5990 flatcamTools/ToolSolderPaste.py:193 +#: flatcamGUI/FlatCAMGUI.py:5991 flatcamTools/ToolSolderPaste.py:193 msgid "" "The height (Z) for travel between pads\n" "(without dispensing solder paste)." @@ -8325,19 +8076,19 @@ msgstr "" "The height (Z) for travel between pads\n" "(without dispensing solder paste)." -#: flatcamGUI/FlatCAMGUI.py:5998 flatcamTools/ToolSolderPaste.py:200 +#: flatcamGUI/FlatCAMGUI.py:5999 flatcamTools/ToolSolderPaste.py:200 msgid "Z Toolchange:" msgstr "Z Toolchange:" -#: flatcamGUI/FlatCAMGUI.py:6000 flatcamTools/ToolSolderPaste.py:202 +#: flatcamGUI/FlatCAMGUI.py:6001 flatcamTools/ToolSolderPaste.py:202 msgid "The height (Z) for tool (nozzle) change." msgstr "The height (Z) for tool (nozzle) change." -#: flatcamGUI/FlatCAMGUI.py:6007 flatcamTools/ToolSolderPaste.py:208 +#: flatcamGUI/FlatCAMGUI.py:6008 flatcamTools/ToolSolderPaste.py:208 msgid "XY Toolchange:" msgstr "XY Toolchange:" -#: flatcamGUI/FlatCAMGUI.py:6009 flatcamTools/ToolSolderPaste.py:210 +#: flatcamGUI/FlatCAMGUI.py:6010 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." @@ -8345,19 +8096,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:6017 flatcamTools/ToolSolderPaste.py:217 +#: flatcamGUI/FlatCAMGUI.py:6018 flatcamTools/ToolSolderPaste.py:217 msgid "Feedrate X-Y:" msgstr "Feedrate X-Y:" -#: flatcamGUI/FlatCAMGUI.py:6019 flatcamTools/ToolSolderPaste.py:219 +#: flatcamGUI/FlatCAMGUI.py:6020 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:6026 flatcamTools/ToolSolderPaste.py:225 +#: flatcamGUI/FlatCAMGUI.py:6027 flatcamTools/ToolSolderPaste.py:225 msgid "Feedrate Z:" msgstr "Feedrate Z:" -#: flatcamGUI/FlatCAMGUI.py:6028 flatcamTools/ToolSolderPaste.py:227 +#: flatcamGUI/FlatCAMGUI.py:6029 flatcamTools/ToolSolderPaste.py:227 msgid "" "Feedrate (speed) while moving vertically\n" "(on Z plane)." @@ -8365,11 +8116,11 @@ msgstr "" "Feedrate (speed) while moving vertically\n" "(on Z plane)." -#: flatcamGUI/FlatCAMGUI.py:6036 flatcamTools/ToolSolderPaste.py:234 +#: flatcamGUI/FlatCAMGUI.py:6037 flatcamTools/ToolSolderPaste.py:234 msgid "Feedrate Z Dispense:" msgstr "Feedrate Z Dispense:" -#: flatcamGUI/FlatCAMGUI.py:6038 flatcamTools/ToolSolderPaste.py:236 +#: flatcamGUI/FlatCAMGUI.py:6039 flatcamTools/ToolSolderPaste.py:236 msgid "" "Feedrate (speed) while moving up vertically\n" " to Dispense position (on Z plane)." @@ -8377,11 +8128,11 @@ msgstr "" "Feedrate (speed) while moving up vertically\n" " to Dispense position (on Z plane)." -#: flatcamGUI/FlatCAMGUI.py:6046 flatcamTools/ToolSolderPaste.py:243 +#: flatcamGUI/FlatCAMGUI.py:6047 flatcamTools/ToolSolderPaste.py:243 msgid "Spindle Speed FWD:" msgstr "Spindle Speed FWD:" -#: flatcamGUI/FlatCAMGUI.py:6048 flatcamTools/ToolSolderPaste.py:245 +#: flatcamGUI/FlatCAMGUI.py:6049 flatcamTools/ToolSolderPaste.py:245 msgid "" "The dispenser speed while pushing solder paste\n" "through the dispenser nozzle." @@ -8389,19 +8140,19 @@ msgstr "" "The dispenser speed while pushing solder paste\n" "through the dispenser nozzle." -#: flatcamGUI/FlatCAMGUI.py:6056 flatcamTools/ToolSolderPaste.py:252 +#: flatcamGUI/FlatCAMGUI.py:6057 flatcamTools/ToolSolderPaste.py:252 msgid "Dwell FWD:" msgstr "Dwell FWD:" -#: flatcamGUI/FlatCAMGUI.py:6058 flatcamTools/ToolSolderPaste.py:254 +#: flatcamGUI/FlatCAMGUI.py:6059 flatcamTools/ToolSolderPaste.py:254 msgid "Pause after solder dispensing." msgstr "Pause after solder dispensing." -#: flatcamGUI/FlatCAMGUI.py:6065 flatcamTools/ToolSolderPaste.py:260 +#: flatcamGUI/FlatCAMGUI.py:6066 flatcamTools/ToolSolderPaste.py:260 msgid "Spindle Speed REV:" msgstr "Spindle Speed REV:" -#: flatcamGUI/FlatCAMGUI.py:6067 flatcamTools/ToolSolderPaste.py:262 +#: flatcamGUI/FlatCAMGUI.py:6068 flatcamTools/ToolSolderPaste.py:262 msgid "" "The dispenser speed while retracting solder paste\n" "through the dispenser nozzle." @@ -8409,11 +8160,11 @@ msgstr "" "The dispenser speed while retracting solder paste\n" "through the dispenser nozzle." -#: flatcamGUI/FlatCAMGUI.py:6075 flatcamTools/ToolSolderPaste.py:269 +#: flatcamGUI/FlatCAMGUI.py:6076 flatcamTools/ToolSolderPaste.py:269 msgid "Dwell REV:" msgstr "Dwell REV:" -#: flatcamGUI/FlatCAMGUI.py:6077 flatcamTools/ToolSolderPaste.py:271 +#: flatcamGUI/FlatCAMGUI.py:6078 flatcamTools/ToolSolderPaste.py:271 msgid "" "Pause after solder paste dispenser retracted,\n" "to allow pressure equilibrium." @@ -8421,23 +8172,23 @@ msgstr "" "Pause after solder paste dispenser retracted,\n" "to allow pressure equilibrium." -#: flatcamGUI/FlatCAMGUI.py:6084 flatcamTools/ToolSolderPaste.py:277 +#: flatcamGUI/FlatCAMGUI.py:6085 flatcamTools/ToolSolderPaste.py:277 msgid "PostProcessors:" msgstr "PostProcessors:" -#: flatcamGUI/FlatCAMGUI.py:6086 flatcamTools/ToolSolderPaste.py:279 +#: flatcamGUI/FlatCAMGUI.py:6087 flatcamTools/ToolSolderPaste.py:279 msgid "Files that control the GCode generation." msgstr "Files that control the GCode generation." -#: flatcamGUI/FlatCAMGUI.py:6116 flatcamGUI/FlatCAMGUI.py:6122 +#: flatcamGUI/FlatCAMGUI.py:6117 flatcamGUI/FlatCAMGUI.py:6123 msgid "Idle." msgstr "Idle." -#: flatcamGUI/FlatCAMGUI.py:6146 +#: flatcamGUI/FlatCAMGUI.py:6147 msgid "Application started ..." msgstr "Application started ..." -#: flatcamGUI/FlatCAMGUI.py:6147 +#: flatcamGUI/FlatCAMGUI.py:6148 msgid "Hello!" msgstr "Hello!" @@ -11278,6 +11029,9 @@ 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 "Save && Close Edit" +#~ msgstr "Save && Close Edit" + #~ msgid "" #~ "Editor Shortcut list
\n" #~ "
\n" diff --git a/locale/ro/LC_MESSAGES/strings.mo b/locale/ro/LC_MESSAGES/strings.mo index a19c5c93ed0dd327027d0d297062bc9e97b70432..dfc2258acde2e052340c0064dc2269b22dc75962 100644 GIT binary patch delta 44771 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 NrF1Ae*Oi)={$G8ouPFck delta 38697 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 diff --git a/locale/ro/LC_MESSAGES/strings.po b/locale/ro/LC_MESSAGES/strings.po index 4b959668..9184243b 100644 --- a/locale/ro/LC_MESSAGES/strings.po +++ b/locale/ro/LC_MESSAGES/strings.po @@ -5,8 +5,8 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"POT-Creation-Date: 2019-03-28 23:43+0200\n" -"PO-Revision-Date: 2019-03-29 00:14+0200\n" +"POT-Creation-Date: 2019-04-12 21:46+0300\n" +"PO-Revision-Date: 2019-04-12 22:53+0300\n" "Last-Translator: \n" "Language-Team: \n" "Language: ro\n" @@ -23,24 +23,30 @@ msgstr "" "X-Poedit-SearchPathExcluded-1: tests\n" "X-Poedit-SearchPathExcluded-2: doc\n" -#: FlatCAMApp.py:845 +#: FlatCAMApp.py:857 msgid "[ERROR] Could not find the Language files. The App strings are missing." msgstr "" "[ERROR]Nu am gasit fişierele cu traduceri. Mesajele aplicaţiei lipsesc." -#: FlatCAMApp.py:1987 ObjectCollection.py:80 flatcamTools/ToolImage.py:213 +#: FlatCAMApp.py:1888 ObjectCollection.py:80 flatcamTools/ToolImage.py:213 msgid "Open cancelled." msgstr "Deschidere anulata." -#: FlatCAMApp.py:2001 +#: FlatCAMApp.py:1902 msgid "Open Config file failed." msgstr "Deschiderea fişierului de configurare a eşuat." -#: FlatCAMApp.py:2015 +#: FlatCAMApp.py:1916 msgid "Open Script file failed." msgstr "Deschiderea fişierului Script eşuat." -#: FlatCAMApp.py:2204 +#: FlatCAMApp.py:2098 +msgid "[WARNING_NOTCL] Select a Geometry or Excellon Object to edit." +msgstr "" +"[WARNING_NOTCL] Selectează un obiect tip Geometrie sau Excellon pentru " +"editare." + +#: FlatCAMApp.py:2108 msgid "" "[WARNING_NOTCL] Simultanoeus editing of tools geometry in a MultiGeo " "Geometry is not possible.\n" @@ -50,86 +56,102 @@ msgstr "" "obiect tip Geometrie MultiGeo nu este posibila.\n" "Se poate edita numai o singură geometrie de fiecare data." -#: FlatCAMApp.py:2224 -msgid "[WARNING_NOTCL] Select a Geometry or Excellon Object to edit." -msgstr "" -"[WARNING_NOTCL] Selectează un obiect tip Geometrie sau Excellon pentru " -"editare." - -#: FlatCAMApp.py:2235 +#: FlatCAMApp.py:2144 msgid "[WARNING_NOTCL] Editor is activated ..." msgstr "[WARNING_NOTCL] Editorul este activ. .." -#: FlatCAMApp.py:2274 +#: FlatCAMApp.py:2171 +msgid "Do you want to save the edited object?" +msgstr "Vrei sa salvezi obiectul editat?" + +#: FlatCAMApp.py:2172 flatcamGUI/FlatCAMGUI.py:1549 +msgid "Close Editor" +msgstr "Inchide Editorul" + +#: FlatCAMApp.py:2175 FlatCAMApp.py:3255 FlatCAMApp.py:5564 +#: FlatCAMTranslation.py:89 flatcamGUI/FlatCAMGUI.py:3542 +msgid "Yes" +msgstr "Da" + +#: FlatCAMApp.py:2176 FlatCAMApp.py:3256 FlatCAMApp.py:5565 +#: FlatCAMTranslation.py:90 flatcamGUI/FlatCAMGUI.py:3543 +msgid "No" +msgstr "Nu" + +#: FlatCAMApp.py:2177 FlatCAMApp.py:3257 FlatCAMApp.py:3589 FlatCAMApp.py:5566 +msgid "Cancel" +msgstr "Anuleaza" + +#: FlatCAMApp.py:2199 FlatCAMApp.py:2224 msgid "[WARNING] Object empty after edit." msgstr "[WARNING] Obiectul nu are date dupa editare." -#: FlatCAMApp.py:2283 -msgid "[WARNING_NOTCL] Select a Geometry or Excellon Object to update." +#: FlatCAMApp.py:2233 FlatCAMApp.py:2245 FlatCAMApp.py:2257 +msgid "[WARNING_NOTCL] Select a Gerber, Geometry or Excellon Object to update." msgstr "" -"[WARNING_NOTCL] Selectează un obiect tip Geometrie sau Excellon pentru " -"salvare." +"[WARNING_NOTCL] Selectează un obiect tip Gerber, Geometrie sau Excellon " +"pentru salvare." -#: FlatCAMApp.py:2296 +#: FlatCAMApp.py:2236 #, python-format msgid "[selected] %s is updated, returning to App..." msgstr "[selected] %s este actualizat, intoarcere la aplicaţie." -#: FlatCAMApp.py:2619 +#: FlatCAMApp.py:2593 msgid "[ERROR] Could not load defaults file." -msgstr "[ERROR] Nu am putut incarca fişierul cu valori default." +msgstr "[ERROR] Nu am putut incărca fişierul cu valori default." -#: FlatCAMApp.py:2631 +#: FlatCAMApp.py:2605 msgid "[ERROR] Failed to parse defaults file." msgstr "[ERROR] Parsarea fişierului cu valori default a eșuat." -#: FlatCAMApp.py:2652 FlatCAMApp.py:2655 +#: FlatCAMApp.py:2626 FlatCAMApp.py:2629 msgid "Import FlatCAM Preferences" msgstr "Importa Preferințele FlatCAM" -#: FlatCAMApp.py:2660 +#: FlatCAMApp.py:2634 msgid "[WARNING_NOTCL] FlatCAM preferences import cancelled." msgstr "[WARNING_NOTCL] Importul preferințelor FlatCAM a eșuat." -#: FlatCAMApp.py:2668 FlatCAMApp.py:2715 FlatCAMApp.py:3148 +#: FlatCAMApp.py:2642 FlatCAMApp.py:2689 FlatCAMApp.py:3134 msgid "[ERROR_NOTCL] Could not load defaults file." msgstr "" -"[ERROR_NOTCL] Nu a fost posibila incarcarea fişierului cu valori default." +"[ERROR_NOTCL] Nu a fost posibila incărcarea fişierului cu valori default." -#: FlatCAMApp.py:2676 FlatCAMApp.py:3157 +#: FlatCAMApp.py:2650 FlatCAMApp.py:3143 msgid "[ERROR_NOTCL] Failed to parse defaults file." msgstr "[ERROR_NOTCL] Parsarea fişierului cu valori default a eșuat." -#: FlatCAMApp.py:2679 +#: FlatCAMApp.py:2653 #, python-format msgid "[success] Imported Defaults from %s" msgstr "[success] Valorile default au fost importate din %s" -#: FlatCAMApp.py:2689 FlatCAMApp.py:2693 +#: FlatCAMApp.py:2663 FlatCAMApp.py:2667 msgid "Export FlatCAM Preferences" msgstr "Exporta Preferințele FlatCAM" -#: FlatCAMApp.py:2699 +#: FlatCAMApp.py:2673 msgid "[WARNING_NOTCL] FlatCAM preferences export cancelled." msgstr "[WARNING_NOTCL] Exportul preferințelor FlatCAM este anulat." -#: FlatCAMApp.py:2734 FlatCAMApp.py:3171 +#: FlatCAMApp.py:2708 FlatCAMApp.py:3188 msgid "[ERROR_NOTCL] Failed to write defaults to file." msgstr "[ERROR_NOTCL] Salvarea valorilor default intr-un fişier a eșuat." -#: FlatCAMApp.py:2786 +#: FlatCAMApp.py:2760 msgid "[ERROR_NOTCL] Failed to open recent files file for writing." msgstr "" "[ERROR_NOTCL] Deschiderea fişierului cu >fişiere recente< pentru a fi salvat " "a eșuat." -#: FlatCAMApp.py:2871 camlib.py:4228 +#: FlatCAMApp.py:2845 camlib.py:4430 msgid "[ERROR_NOTCL] An internal error has ocurred. See shell.\n" msgstr "" "[ERROR_NOTCL] A aparut o eroare interna. Verifică in TCL Shell pt mai multe " "detalii.\n" -#: FlatCAMApp.py:2872 +#: FlatCAMApp.py:2846 #, python-brace-format msgid "" "Object ({kind}) failed because: {error} \n" @@ -138,11 +160,11 @@ msgstr "" "Obiectul ({kind}) a eșuat din cauza: {error} \n" "\n" -#: FlatCAMApp.py:2892 +#: FlatCAMApp.py:2866 msgid "Converting units to " msgstr "Se convertesc unitatile la " -#: FlatCAMApp.py:2950 FlatCAMApp.py:2953 FlatCAMApp.py:2956 FlatCAMApp.py:2959 +#: FlatCAMApp.py:2936 FlatCAMApp.py:2939 FlatCAMApp.py:2942 FlatCAMApp.py:2945 #, python-brace-format msgid "" "[selected] {kind} created/selected: {name}{name}" -#: FlatCAMApp.py:3053 +#: FlatCAMApp.py:3039 #, python-brace-format msgid "" "FlatCAM
Version {version} {beta} ({date}) - " @@ -173,31 +195,35 @@ msgstr "" "flatcam/src/Beta/\">aici.
Sectiunea DOWNLOAD este aici.
" -#: FlatCAMApp.py:3203 +#: FlatCAMApp.py:3192 msgid "[success] Defaults saved." msgstr "[success] Valorile default au fost salvate." -#: FlatCAMApp.py:3224 +#: FlatCAMApp.py:3213 msgid "[ERROR_NOTCL] Could not load factory defaults file." msgstr "" -"[ERROR_NOTCL] Fişierul cu valori default de fabrica nu a putut fi deschis." +"[ERROR_NOTCL] Fişierul cu valori default de fabrică nu a putut fi deschis." -#: FlatCAMApp.py:3233 +#: FlatCAMApp.py:3222 msgid "[ERROR_NOTCL] Failed to parse factory defaults file." msgstr "" -"[ERROR_NOTCL] Parsarea fişierului cu valori default de fabrica a eșuat." +"[ERROR_NOTCL] Parsarea fişierului cu valori default de fabrică a eșuat." -#: FlatCAMApp.py:3247 +#: FlatCAMApp.py:3236 msgid "[ERROR_NOTCL] Failed to write factory defaults to file." msgstr "" -"[ERROR_NOTCL]] Salvarea fişierului cu valori default de fabrica intr-un " +"[ERROR_NOTCL]] Salvarea fişierului cu valori default de fabrică intr-un " "fişier a eșuat." -#: FlatCAMApp.py:3251 +#: FlatCAMApp.py:3240 msgid "Factory defaults saved." -msgstr "Valori default de fabrica au fost salvate." +msgstr "Valori default de fabrică au fost salvate." -#: FlatCAMApp.py:3256 +#: FlatCAMApp.py:3245 flatcamGUI/FlatCAMGUI.py:2974 +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:3250 msgid "" "There are files/objects modified in FlatCAM. \n" "Do you want to Save the project?" @@ -205,11 +231,11 @@ msgstr "" "FlatCAM are fişiere/obiecte care au fost modificate. \n" "Dorești să Salvezi proiectul?" -#: FlatCAMApp.py:3259 FlatCAMApp.py:5516 +#: FlatCAMApp.py:3253 FlatCAMApp.py:5562 msgid "Save changes" msgstr "Salvează modificarile." -#: FlatCAMApp.py:3319 +#: FlatCAMApp.py:3320 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 " @@ -219,74 +245,79 @@ msgid "" "Check the generated GCODE." msgstr "" "[ERROR] Fuziune eșuata. Obiectele Geometrii sunt de tipuri diferite.\n" -"Cel putin unul este de tip Multigeo și celalalt este tip SinglGeo. O " +"Cel puțin unul este de tip Multigeo și celalalt este tip SinglGeo. O " "posibilitate este să convertesti dintr-unul in celalalt și să reincerci " "fuzionarea \n" "dar un cazul conversiei de la MultiGeo to SingleGeo, se pot pierde " "informatii și rezultatul ar putea să nu fie cel dorit. \n" "Verifică codul G-Code generat." -#: FlatCAMApp.py:3360 +#: FlatCAMApp.py:3361 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:3383 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:3398 FlatCAMApp.py:3423 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:3402 FlatCAMApp.py:3427 #, 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:3415 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:3441 msgid "[success] A Geometry object was converted to SingleGeo type." msgstr "[success] Un obiect Geometrie a fost convertit la tipul SingleGeo ." -#: FlatCAMApp.py:3626 +#: FlatCAMApp.py:3588 FlatCAMApp.py:4353 FlatCAMApp.py:5829 FlatCAMApp.py:5840 +#: FlatCAMApp.py:6026 FlatCAMApp.py:6036 +msgid "Ok" +msgstr "Ok" + +#: FlatCAMApp.py:3629 #, python-format msgid "[success] Converted units to %s" msgstr "[success] Conversie unitati la %s" -#: FlatCAMApp.py:3637 +#: FlatCAMApp.py:3640 msgid "[WARNING_NOTCL] Units conversion cancelled." msgstr "[WARNING_NOTCL] Conversia unitatilor este anulata." -#: FlatCAMApp.py:4208 +#: FlatCAMApp.py:4222 msgid "Open file" msgstr "Deschide fişierul ..." -#: FlatCAMApp.py:4239 FlatCAMApp.py:4244 +#: FlatCAMApp.py:4253 FlatCAMApp.py:4258 msgid "Export G-Code ..." msgstr "Exporta G-Code ..." -#: FlatCAMApp.py:4247 +#: FlatCAMApp.py:4261 msgid "[WARNING_NOTCL] Export Code cancelled." msgstr "[WARNING_NOTCL Exportul GCode este anulat." -#: FlatCAMApp.py:4257 +#: FlatCAMApp.py:4271 msgid "[WARNING] No such file or directory" msgstr "[WARNING] Nu exista un aşa fişier sau director" -#: FlatCAMApp.py:4264 +#: FlatCAMApp.py:4278 #, python-format msgid "Saved to: %s" msgstr "Salvat in: %s" -#: FlatCAMApp.py:4327 FlatCAMApp.py:4359 FlatCAMApp.py:4370 FlatCAMApp.py:4381 +#: FlatCAMApp.py:4341 FlatCAMApp.py:4374 FlatCAMApp.py:4385 FlatCAMApp.py:4396 #: flatcamTools/ToolNonCopperClear.py:488 flatcamTools/ToolSolderPaste.py:764 msgid "" "[WARNING_NOTCL] Please enter a tool diameter with non-zero value, in Float " @@ -295,12 +326,12 @@ msgstr "" "[WARNING_NOTCL] Introdu un diametru al uneltei valid: valoare ne-nula in " "format Real." -#: FlatCAMApp.py:4332 FlatCAMApp.py:4364 FlatCAMApp.py:4375 FlatCAMApp.py:4386 -#: flatcamGUI/FlatCAMGUI.py:2501 +#: FlatCAMApp.py:4346 FlatCAMApp.py:4379 FlatCAMApp.py:4390 FlatCAMApp.py:4401 +#: flatcamGUI/FlatCAMGUI.py:2891 msgid "[WARNING_NOTCL] Adding Tool cancelled ..." msgstr "[WARNING_NOTCL] Adaugarea unei unelte anulata ..." -#: FlatCAMApp.py:4335 +#: FlatCAMApp.py:4349 msgid "" "Adding Tool works only when Advanced is checked.\n" "Go to Preferences -> General - Show Advanced Options." @@ -308,157 +339,159 @@ msgstr "" "Adaugarea de unelte noi functionează doar in modul Avansat.\n" "Pentru aceasta mergi in Preferințe -> General - Activează Modul Avansat." -#: FlatCAMApp.py:4440 +#: FlatCAMApp.py:4455 msgid "Object(s) deleted ..." msgstr "Obiect(ele) șters(e)." -#: FlatCAMApp.py:4444 +#: FlatCAMApp.py:4459 msgid "Failed. No object(s) selected..." msgstr "Esuat. Nici-un obiect nu este selectat." -#: FlatCAMApp.py:4446 +#: FlatCAMApp.py:4461 msgid "Save the work in Editor and try again ..." msgstr "Salvează continutul din Editor și încearcă din nou." -#: FlatCAMApp.py:4459 +#: FlatCAMApp.py:4474 msgid "Click to set the origin ..." msgstr "Click pentru a seta originea..." -#: FlatCAMApp.py:4471 +#: FlatCAMApp.py:4487 msgid "Jump to ..." msgstr "Sari la ..." -#: FlatCAMApp.py:4472 +#: FlatCAMApp.py:4488 msgid "Enter the coordinates in format X,Y:" msgstr "Introduceți coordonatele in format X,Y:" -#: FlatCAMApp.py:4479 +#: FlatCAMApp.py:4495 msgid "Wrong coordinates. Enter coordinates in format: X,Y" msgstr "Coordonate gresite. Introduceți coordonatele in format X,Y." -#: FlatCAMApp.py:4494 +#: FlatCAMApp.py:4513 msgid "Done." msgstr "Executat." -#: FlatCAMApp.py:4626 +#: FlatCAMApp.py:4672 msgid "[success] Origin set ..." msgstr "[success] Originea a fost setată ..." -#: FlatCAMApp.py:4644 +#: FlatCAMApp.py:4690 msgid "Preferences" msgstr "Preferințe" -#: FlatCAMApp.py:4664 +#: FlatCAMApp.py:4710 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:4689 +#: FlatCAMApp.py:4735 msgid "[success] Flip on Y axis done." msgstr "[success] Oglindire pe axa Y executată." -#: FlatCAMApp.py:4691 FlatCAMApp.py:4731 FlatCAMEditor.py:1340 -#: flatcamTools/ToolTransform.py:750 +#: FlatCAMApp.py:4737 FlatCAMApp.py:4777 +#: flatcamEditors/FlatCAMGeoEditor.py:1353 +#: flatcamEditors/FlatCAMGrbEditor.py:3522 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:4704 +#: FlatCAMApp.py:4750 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:4729 +#: FlatCAMApp.py:4775 msgid "[success] Flip on X axis done." msgstr "[success] Oglindirea pe axa X executată." -#: FlatCAMApp.py:4744 +#: FlatCAMApp.py:4790 msgid "[WARNING_NOTCL] No object selected to Rotate." msgstr "[WARNING_NOTCL] Nici-un obiect selectat pentru Rotaţie." -#: FlatCAMApp.py:4747 FlatCAMApp.py:4792 FlatCAMApp.py:4823 +#: FlatCAMApp.py:4793 FlatCAMApp.py:4838 FlatCAMApp.py:4869 msgid "Transform" msgstr "Transformare" -#: FlatCAMApp.py:4747 FlatCAMApp.py:4792 FlatCAMApp.py:4823 +#: FlatCAMApp.py:4793 FlatCAMApp.py:4838 FlatCAMApp.py:4869 msgid "Enter the Angle value:" msgstr "Introduceți valoaea Unghiului:" -#: FlatCAMApp.py:4777 +#: FlatCAMApp.py:4823 msgid "[success] Rotation done." msgstr "[success] Rotaţie executată." -#: FlatCAMApp.py:4779 FlatCAMEditor.py:1283 flatcamTools/ToolTransform.py:678 +#: FlatCAMApp.py:4825 flatcamEditors/FlatCAMGeoEditor.py:1296 +#: flatcamEditors/FlatCAMGrbEditor.py:3465 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:4790 +#: FlatCAMApp.py:4836 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:4811 +#: FlatCAMApp.py:4857 msgid "[success] Skew on X axis done." msgstr "[success] Deformare pe axa X executată." -#: FlatCAMApp.py:4821 +#: FlatCAMApp.py:4867 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:4842 +#: FlatCAMApp.py:4888 msgid "[success] Skew on Y axis done." msgstr "[success] Deformare pe axa Y executată." -#: FlatCAMApp.py:4938 FlatCAMApp.py:4965 +#: FlatCAMApp.py:4984 FlatCAMApp.py:5011 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:4944 +#: FlatCAMApp.py:4990 msgid "[success] New Grid added ..." msgstr "[success] O noua valoare pt Grila a fost adăugată..." -#: FlatCAMApp.py:4947 +#: FlatCAMApp.py:4993 msgid "[WARNING_NOTCL] Grid already exists ..." msgstr "[WARNING_NOTCL] Grila exista deja." -#: FlatCAMApp.py:4950 +#: FlatCAMApp.py:4996 msgid "[WARNING_NOTCL] Adding New Grid cancelled ..." msgstr "[WARNING_NOTCL] Adaugarea unei valori de Grila a fost anulata ..." -#: FlatCAMApp.py:4972 +#: FlatCAMApp.py:5018 msgid "[ERROR_NOTCL] Grid Value does not exist ..." msgstr "[ERROR_NOTCL] Valoarea Grilei nu exista ..." -#: FlatCAMApp.py:4975 +#: FlatCAMApp.py:5021 msgid "[success] Grid Value deleted ..." msgstr "[success] Valoarea Grila a fost stearsa." -#: FlatCAMApp.py:4978 +#: FlatCAMApp.py:5024 msgid "[WARNING_NOTCL] Delete Grid value cancelled ..." msgstr "[WARNING_NOTCL] Ștergerea unei valori de Grila a fost anulata ..." -#: FlatCAMApp.py:5017 +#: FlatCAMApp.py:5063 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:5021 +#: FlatCAMApp.py:5067 msgid "Name copied on clipboard ..." msgstr "Numele a fost copiat pe Clipboard ..." -#: FlatCAMApp.py:5316 FlatCAMApp.py:5319 FlatCAMApp.py:5322 FlatCAMApp.py:5325 -#: FlatCAMApp.py:5339 FlatCAMApp.py:5342 FlatCAMApp.py:5345 FlatCAMApp.py:5348 -#: FlatCAMApp.py:5387 FlatCAMApp.py:5390 FlatCAMApp.py:5393 FlatCAMApp.py:5396 -#: ObjectCollection.py:698 ObjectCollection.py:701 ObjectCollection.py:704 -#: ObjectCollection.py:707 +#: FlatCAMApp.py:5362 FlatCAMApp.py:5365 FlatCAMApp.py:5368 FlatCAMApp.py:5371 +#: FlatCAMApp.py:5385 FlatCAMApp.py:5388 FlatCAMApp.py:5391 FlatCAMApp.py:5394 +#: FlatCAMApp.py:5433 FlatCAMApp.py:5436 FlatCAMApp.py:5439 FlatCAMApp.py:5442 +#: ObjectCollection.py:711 ObjectCollection.py:714 ObjectCollection.py:717 +#: ObjectCollection.py:720 #, python-brace-format msgid "[selected]{name} selected" msgstr "[selected]{name} selectat" -#: FlatCAMApp.py:5513 +#: FlatCAMApp.py:5559 msgid "" "There are files/objects opened in FlatCAM.\n" "Creating a New project will delete them.\n" @@ -468,111 +501,111 @@ msgstr "" "Crearea unui nou Proiect le va șterge..\n" "Doriti să Salvati proiectul curentt?" -#: FlatCAMApp.py:5531 +#: FlatCAMApp.py:5580 msgid "[success] New Project created..." msgstr "[success] Un nou Proiect a fost creat..." -#: FlatCAMApp.py:5632 FlatCAMApp.py:5635 flatcamGUI/FlatCAMGUI.py:551 -#: flatcamGUI/FlatCAMGUI.py:1600 +#: FlatCAMApp.py:5688 FlatCAMApp.py:5691 flatcamGUI/FlatCAMGUI.py:594 +#: flatcamGUI/FlatCAMGUI.py:1762 msgid "Open Gerber" -msgstr "Incarca Gerber" +msgstr "Încarcă Gerber" -#: FlatCAMApp.py:5640 +#: FlatCAMApp.py:5696 msgid "[WARNING_NOTCL] Open Gerber cancelled." -msgstr "[WARNING_NOTCL] Incarcarea unui fişier Gerber este anulata." +msgstr "[WARNING_NOTCL] Incărcarea unui fişier Gerber este anulata." -#: FlatCAMApp.py:5661 FlatCAMApp.py:5664 flatcamGUI/FlatCAMGUI.py:552 -#: flatcamGUI/FlatCAMGUI.py:1601 +#: FlatCAMApp.py:5717 FlatCAMApp.py:5720 flatcamGUI/FlatCAMGUI.py:595 +#: flatcamGUI/FlatCAMGUI.py:1763 msgid "Open Excellon" -msgstr "Incarca Excellon" +msgstr "Încarcă Excellon" -#: FlatCAMApp.py:5669 +#: FlatCAMApp.py:5725 msgid "[WARNING_NOTCL] Open Excellon cancelled." -msgstr "[WARNING_NOTCL] Incarcarea unui fişier Excellon este anulata." - -#: FlatCAMApp.py:5691 FlatCAMApp.py:5694 -msgid "Open G-Code" -msgstr "Incarca G-Code" - -#: FlatCAMApp.py:5699 -msgid "[WARNING_NOTCL] Open G-Code cancelled." -msgstr "[WARNING_NOTCL] Incarcarea unui fişier G-Code este anulata." - -#: FlatCAMApp.py:5717 FlatCAMApp.py:5720 -msgid "Open Project" -msgstr "Incarca Project" - -#: FlatCAMApp.py:5728 -msgid "[WARNING_NOTCL] Open Project cancelled." -msgstr "[WARNING_NOTCL] Incarcarea unui Proiect a fost anulata." +msgstr "[WARNING_NOTCL] Incărcarea unui fişier Excellon este anulata." #: FlatCAMApp.py:5747 FlatCAMApp.py:5750 +msgid "Open G-Code" +msgstr "Încarcă G-Code" + +#: FlatCAMApp.py:5755 +msgid "[WARNING_NOTCL] Open G-Code cancelled." +msgstr "[WARNING_NOTCL] Incărcarea unui fişier G-Code este anulata." + +#: FlatCAMApp.py:5773 FlatCAMApp.py:5776 +msgid "Open Project" +msgstr "Încarcă Project" + +#: FlatCAMApp.py:5784 +msgid "[WARNING_NOTCL] Open Project cancelled." +msgstr "[WARNING_NOTCL] Incărcarea unui Proiect a fost anulata." + +#: FlatCAMApp.py:5803 FlatCAMApp.py:5806 msgid "Open Configuration File" -msgstr "Incarca un fişier de Configurare" +msgstr "Încarcă un fişier de Configurare" -#: FlatCAMApp.py:5754 +#: FlatCAMApp.py:5810 msgid "[WARNING_NOTCL Open Config cancelled." -msgstr "[WARNING_NOTCL] Incarcarea unui fişier de Configurare este anulata." +msgstr "[WARNING_NOTCL] Incărcarea unui fişier de Configurare este anulata." -#: FlatCAMApp.py:5769 FlatCAMApp.py:5966 FlatCAMApp.py:8013 FlatCAMApp.py:8033 -#: FlatCAMApp.py:8054 FlatCAMApp.py:8076 +#: FlatCAMApp.py:5825 FlatCAMApp.py:6022 FlatCAMApp.py:8105 FlatCAMApp.py:8125 +#: FlatCAMApp.py:8146 FlatCAMApp.py:8168 msgid "[WARNING_NOTCL] No object selected." msgstr "[WARNING_NOTCL] Nici-un obiect selectat." -#: FlatCAMApp.py:5770 FlatCAMApp.py:5967 +#: FlatCAMApp.py:5826 FlatCAMApp.py:6023 msgid "Please Select a Geometry object to export" msgstr "Selectează un obiect Geometrie pentru export" -#: FlatCAMApp.py:5781 +#: FlatCAMApp.py:5837 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:5794 FlatCAMApp.py:5798 +#: FlatCAMApp.py:5850 FlatCAMApp.py:5854 msgid "Export SVG" msgstr "Exporta SVG" -#: FlatCAMApp.py:5803 +#: FlatCAMApp.py:5859 msgid "[WARNING_NOTCL] Export SVG cancelled." msgstr "[WARNING_NOTCL] Exportul SVG este anulat." -#: FlatCAMApp.py:5817 +#: FlatCAMApp.py:5873 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:5823 FlatCAMApp.py:5827 +#: FlatCAMApp.py:5879 FlatCAMApp.py:5883 msgid "Export PNG Image" msgstr "Exporta imagine PNG" -#: FlatCAMApp.py:5832 +#: FlatCAMApp.py:5888 msgid "Export PNG cancelled." msgstr "Exportul imagine PNG este anulat." -#: FlatCAMApp.py:5849 +#: FlatCAMApp.py:5905 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:5854 +#: FlatCAMApp.py:5910 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:5866 +#: FlatCAMApp.py:5922 msgid "Save Gerber source file" msgstr "Salvează codul sursa Gerber ca fişier" -#: FlatCAMApp.py:5871 +#: FlatCAMApp.py:5927 msgid "[WARNING_NOTCL] Save Gerber source file cancelled." msgstr "[WARNING_NOTCL] Salvarea codului sursa Gerber este anulata." -#: FlatCAMApp.py:5888 +#: FlatCAMApp.py:5944 msgid "" "[WARNING_NOTCL] No object selected. Please select an Excellon object to " "export." @@ -580,22 +613,22 @@ msgstr "" "[WARNING_NOTCL] Nici-un obiect selectat. Selectează un obiect Excellon " "pentru export." -#: FlatCAMApp.py:5893 FlatCAMApp.py:5932 +#: FlatCAMApp.py:5949 FlatCAMApp.py:5988 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:5901 FlatCAMApp.py:5905 +#: FlatCAMApp.py:5957 FlatCAMApp.py:5961 msgid "Save Excellon source file" msgstr "Salvează codul sursa Excellon ca fişier" -#: FlatCAMApp.py:5910 +#: FlatCAMApp.py:5966 msgid "[WARNING_NOTCL] Saving Excellon source file cancelled." msgstr "[WARNING_NOTCL] Salvarea codului sursa Excellon este anulata." -#: FlatCAMApp.py:5927 +#: FlatCAMApp.py:5983 msgid "" "[WARNING_NOTCL] No object selected. Please Select an Excellon object to " "export." @@ -603,78 +636,78 @@ msgstr "" "[WARNING_NOTCL] Nici-un obiect selectat. Selectează un obiect Excellon " "pentru export." -#: FlatCAMApp.py:5940 FlatCAMApp.py:5944 +#: FlatCAMApp.py:5996 FlatCAMApp.py:6000 msgid "Export Excellon" msgstr "Exporta Excellon" -#: FlatCAMApp.py:5949 +#: FlatCAMApp.py:6005 msgid "[WARNING_NOTCL] Export Excellon cancelled." msgstr "[WARNING_NOTCL] Exportul Excellon anulat." -#: FlatCAMApp.py:5977 +#: FlatCAMApp.py:6033 msgid "[ERROR_NOTCL] Only Geometry objects can be used." msgstr "[ERROR_NOTCL] Doar obiecte tip Geometrie pot fi folosite." -#: FlatCAMApp.py:5990 FlatCAMApp.py:5994 +#: FlatCAMApp.py:6047 FlatCAMApp.py:6051 msgid "Export DXF" msgstr "Exporta DXF" -#: FlatCAMApp.py:5999 +#: FlatCAMApp.py:6056 msgid "[WARNING_NOTCL] Export DXF cancelled." msgstr "[WARNING_NOTCL] Exportul DXF anulat." -#: FlatCAMApp.py:6017 FlatCAMApp.py:6020 +#: FlatCAMApp.py:6074 FlatCAMApp.py:6077 msgid "Import SVG" msgstr "Importa SVG" -#: FlatCAMApp.py:6028 +#: FlatCAMApp.py:6085 msgid "[WARNING_NOTCL] Open SVG cancelled." msgstr "[WARNING_NOTCL] Importul SVG anulat." -#: FlatCAMApp.py:6047 FlatCAMApp.py:6050 +#: FlatCAMApp.py:6104 FlatCAMApp.py:6107 msgid "Import DXF" msgstr "Importa DXF" -#: FlatCAMApp.py:6058 +#: FlatCAMApp.py:6115 msgid "[WARNING_NOTCL] Open DXF cancelled." -msgstr "[WARNING_NOTCL] Incarcarea fişier DXF anulata." +msgstr "[WARNING_NOTCL] Incărcarea fişier DXF anulata." -#: FlatCAMApp.py:6076 +#: FlatCAMApp.py:6133 #, python-format msgid "%s" msgstr "%s" -#: FlatCAMApp.py:6096 +#: FlatCAMApp.py:6153 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:6103 +#: FlatCAMApp.py:6160 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:6111 +#: FlatCAMApp.py:6168 msgid "Source Editor" msgstr "Editor Cod" -#: FlatCAMApp.py:6121 +#: FlatCAMApp.py:6178 #, python-format msgid "[ERROR]App.on_view_source() -->%s" msgstr "[ERROR]App.on_view_source() -->%s" -#: FlatCAMApp.py:6133 FlatCAMApp.py:7154 FlatCAMObj.py:5432 +#: FlatCAMApp.py:6190 FlatCAMApp.py:7211 FlatCAMObj.py:5257 msgid "Code Editor" msgstr "Editor Cod" -#: FlatCAMApp.py:6145 +#: FlatCAMApp.py:6202 msgid "Script Editor" msgstr "Editor Script." -#: FlatCAMApp.py:6148 +#: FlatCAMApp.py:6205 msgid "" "#\n" "# CREATE A NEW FLATCAM TCL SCRIPT\n" @@ -718,86 +751,86 @@ msgstr "" "#\n" "\n" -#: FlatCAMApp.py:6171 FlatCAMApp.py:6174 +#: FlatCAMApp.py:6228 FlatCAMApp.py:6231 msgid "Open TCL script" -msgstr "Incarca TCL script" +msgstr "Încarcă TCL script" -#: FlatCAMApp.py:6182 +#: FlatCAMApp.py:6239 msgid "[WARNING_NOTCL] Open TCL script cancelled." -msgstr "[WARNING_NOTCL] Incarcarea TCL script anulata." +msgstr "[WARNING_NOTCL] Incărcarea TCL script anulata." -#: FlatCAMApp.py:6194 +#: FlatCAMApp.py:6251 #, python-format msgid "[ERROR]App.on_fileopenscript() -->%s" msgstr "[ERROR]App.on_fileopenscript() -->%s" -#: FlatCAMApp.py:6220 FlatCAMApp.py:6223 +#: FlatCAMApp.py:6277 FlatCAMApp.py:6280 msgid "Run TCL script" msgstr "Ruleaza TCL script" -#: FlatCAMApp.py:6231 +#: FlatCAMApp.py:6288 msgid "[WARNING_NOTCL] Run TCL script cancelled." msgstr "[WARNING_NOTCL] Rularea fisierului Script a fost anulata." -#: FlatCAMApp.py:6277 FlatCAMApp.py:6281 +#: FlatCAMApp.py:6334 FlatCAMApp.py:6338 msgid "Save Project As ..." msgstr "Salvează Proiectul ca ..." -#: FlatCAMApp.py:6278 +#: FlatCAMApp.py:6335 #, python-brace-format msgid "{l_save}/Project_{date}" msgstr "{l_save}/Proiect_{date}" -#: FlatCAMApp.py:6286 +#: FlatCAMApp.py:6343 msgid "[WARNING_NOTCL] Save Project cancelled." msgstr "[WARNING_NOTCL] Salvarea Proiect anulata." -#: FlatCAMApp.py:6331 +#: FlatCAMApp.py:6388 msgid "Exporting SVG" msgstr "SVG in curs de export" -#: FlatCAMApp.py:6364 FlatCAMApp.py:6469 FlatCAMApp.py:6583 +#: FlatCAMApp.py:6421 FlatCAMApp.py:6526 FlatCAMApp.py:6640 #, python-format msgid "[success] SVG file exported to %s" msgstr "[success] Fişier SVG exportat in %s" -#: FlatCAMApp.py:6395 FlatCAMApp.py:6515 +#: FlatCAMApp.py:6452 FlatCAMApp.py:6572 #, 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:6472 FlatCAMApp.py:6586 +#: FlatCAMApp.py:6529 FlatCAMApp.py:6643 msgid "Generating Film ... Please wait." msgstr "Filmul se generează ... Aşteaptă!" -#: FlatCAMApp.py:6733 +#: FlatCAMApp.py:6790 #, python-format msgid "[success] Excellon file exported to %s" msgstr "[success] Fişierul Excellon exportat in %s" -#: FlatCAMApp.py:6740 +#: FlatCAMApp.py:6797 msgid "Exporting Excellon" msgstr "Excellon in curs de export" -#: FlatCAMApp.py:6745 FlatCAMApp.py:6752 +#: FlatCAMApp.py:6802 FlatCAMApp.py:6809 msgid "[ERROR_NOTCL] Could not export Excellon file." msgstr "[ERROR_NOTCL] Fişierul Excellon nu a putut fi exportat." -#: FlatCAMApp.py:6791 +#: FlatCAMApp.py:6848 #, python-format msgid "[success] DXF file exported to %s" msgstr "[success] Fişierul DXF exportat in %s" -#: FlatCAMApp.py:6797 +#: FlatCAMApp.py:6854 msgid "Exporting DXF" msgstr "DXF in curs de export" -#: FlatCAMApp.py:6802 FlatCAMApp.py:6809 +#: FlatCAMApp.py:6859 FlatCAMApp.py:6866 msgid "[[WARNING_NOTCL]] Could not export DXF file." msgstr "[[WARNING_NOTCL]] Fişierul DXF nu a putut fi exportat." -#: FlatCAMApp.py:6829 FlatCAMApp.py:6871 FlatCAMApp.py:6912 +#: FlatCAMApp.py:6886 FlatCAMApp.py:6928 FlatCAMApp.py:6969 msgid "" "[ERROR_NOTCL] Not supported type is picked as parameter. Only Geometry and " "Gerber are supported" @@ -805,100 +838,102 @@ msgstr "" "[ERROR_NOTCL] Typul parametrului nu este compatibil. Doar Geometrie is " "Gerber sunt acceptate." -#: FlatCAMApp.py:6839 +#: FlatCAMApp.py:6896 msgid "Importing SVG" msgstr "SVG in curs de ia fi importat" -#: FlatCAMApp.py:6850 FlatCAMApp.py:6892 FlatCAMApp.py:6932 FlatCAMApp.py:7008 -#: FlatCAMApp.py:7075 FlatCAMApp.py:7140 +#: FlatCAMApp.py:6907 FlatCAMApp.py:6949 FlatCAMApp.py:6989 FlatCAMApp.py:7065 +#: FlatCAMApp.py:7132 FlatCAMApp.py:7197 #, python-format msgid "[success] Opened: %s" -msgstr "[success] Incarcat: %s" +msgstr "[success] Incărcat: %s" -#: FlatCAMApp.py:6881 +#: FlatCAMApp.py:6938 msgid "Importing DXF" msgstr "DXF in curs de a fi importat" -#: FlatCAMApp.py:6920 +#: FlatCAMApp.py:6977 msgid "Importing Image" msgstr "Imaginea in curs de a fi importata" -#: FlatCAMApp.py:6961 FlatCAMApp.py:6963 +#: FlatCAMApp.py:7018 FlatCAMApp.py:7020 #, python-format msgid "[ERROR_NOTCL] Failed to open file: %s" -msgstr "[ERROR_NOTCL] Esec in incarcarea fişierului %s" +msgstr "[ERROR_NOTCL] Esec in incărcarea fişierului %s" -#: FlatCAMApp.py:6966 +#: FlatCAMApp.py:7023 #, python-brace-format msgid "[ERROR_NOTCL] Failed to parse file: {name}. {error}" msgstr "[ERROR_NOTCL] Esec in parsarea fişierului: {name}. {error}" -#: FlatCAMApp.py:6972 FlatCAMEditor.py:5820 FlatCAMObj.py:4136 +#: FlatCAMApp.py:7029 FlatCAMObj.py:3961 +#: flatcamEditors/FlatCAMExcEditor.py:1927 +#: flatcamEditors/FlatCAMGrbEditor.py:2061 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:6981 +#: FlatCAMApp.py:7038 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:6989 +#: FlatCAMApp.py:7046 msgid "Opening Gerber" -msgstr "Gerber in curs de incarcare" +msgstr "Gerber in curs de incărcare" -#: FlatCAMApp.py:6999 +#: FlatCAMApp.py:7056 msgid "[ERROR_NOTCL] Open Gerber failed. Probable not a Gerber file." msgstr "" -"[ERROR_NOTCL] Incarcarea Gerber a eșuat. Probabil nu este de tip Gerber." +"[ERROR_NOTCL] Incărcarea Gerber a eșuat. Probabil nu este de tip Gerber." -#: FlatCAMApp.py:7034 +#: FlatCAMApp.py:7091 msgid "[ERROR_NOTCL] This is not Excellon file." msgstr "[ERROR_NOTCL] Acesta nu este un fişier Excellon." -#: FlatCAMApp.py:7037 +#: FlatCAMApp.py:7094 #, python-format msgid "[ERROR_NOTCL] Cannot open file: %s" -msgstr "[ERROR_NOTCL] Fişierul %s nu se poate incarca." +msgstr "[ERROR_NOTCL] Fişierul %s nu se poate incărca." -#: FlatCAMApp.py:7042 +#: FlatCAMApp.py:7099 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:7058 +#: FlatCAMApp.py:7115 #, 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:7061 +#: FlatCAMApp.py:7118 msgid "Opening Excellon." -msgstr "Excellon in curs de incarcare" +msgstr "Excellon in curs de incărcare" -#: FlatCAMApp.py:7068 +#: FlatCAMApp.py:7125 msgid "[ERROR_NOTCL] Open Excellon file failed. Probable not an Excellon file." msgstr "" -"[ERROR_NOTCL] Incarcarea Excellon a eșuat. Probabil nu este de tip Excellon." +"[ERROR_NOTCL] Incărcarea Excellon a eșuat. Probabil nu este de tip Excellon." -#: FlatCAMApp.py:7107 +#: FlatCAMApp.py:7164 #, python-format msgid "[ERROR_NOTCL] Failed to open %s" -msgstr "[ERROR_NOTCL] Incarcarea fişierului %s a eșuat." +msgstr "[ERROR_NOTCL] Incărcarea fişierului %s a eșuat." -#: FlatCAMApp.py:7117 +#: FlatCAMApp.py:7174 msgid "[ERROR_NOTCL] This is not GCODE" msgstr "[ERROR_NOTCL] Acest obiect nu este de tip GCode" -#: FlatCAMApp.py:7123 +#: FlatCAMApp.py:7180 msgid "Opening G-Code." -msgstr "G-Code in curs de incarcare" +msgstr "G-Code in curs de incărcare" -#: FlatCAMApp.py:7131 +#: FlatCAMApp.py:7188 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 " @@ -909,26 +944,26 @@ msgstr "" "Incercarea de a crea un obiect CNCJob din G-Code a eșuat in timpul " "procesarii." -#: FlatCAMApp.py:7171 +#: FlatCAMApp.py:7228 #, python-format msgid "[ERROR_NOTCL] Failed to open config file: %s" -msgstr "[ERROR_NOTCL] Esec in incarcarea fişierului de configurare: %s" +msgstr "[ERROR_NOTCL] Esec in incărcarea fişierului de configurare: %s" -#: FlatCAMApp.py:7196 FlatCAMApp.py:7212 +#: FlatCAMApp.py:7253 FlatCAMApp.py:7269 #, python-format msgid "[ERROR_NOTCL] Failed to open project file: %s" -msgstr "[ERROR_NOTCL] Esec in incarcarea fişierului de configurare: %s" +msgstr "[ERROR_NOTCL] Esec in incărcarea fişierului proiect: %s" -#: FlatCAMApp.py:7238 +#: FlatCAMApp.py:7295 #, python-format msgid "[success] Project loaded from: %s" -msgstr "[success] Proeictul a fost incarcat din: %s" +msgstr "[success] Proeictul a fost incărcat din: %s" -#: FlatCAMApp.py:7368 +#: FlatCAMApp.py:7425 msgid "Available commands:\n" msgstr "Comenzi disponibile:\n" -#: FlatCAMApp.py:7370 +#: FlatCAMApp.py:7427 msgid "" "\n" "\n" @@ -940,23 +975,23 @@ msgstr "" "Introduceți help pentru utilizare.\n" "Exemplu: help open_gerber" -#: FlatCAMApp.py:7518 +#: FlatCAMApp.py:7575 msgid "Shows list of commands." msgstr "Arata o lista de comenzi." -#: FlatCAMApp.py:7571 +#: FlatCAMApp.py:7628 msgid "[ERROR_NOTCL] Failed to load recent item list." -msgstr "[ERROR_NOTCL] Esec in incarcarea listei cu obiecte recente." +msgstr "[ERROR_NOTCL] Esec in incărcarea listei cu obiecte recente." -#: FlatCAMApp.py:7578 +#: FlatCAMApp.py:7635 msgid "[ERROR_NOTCL] Failed to parse recent item list." msgstr "[ERROR_NOTCL] Esec in parsarea listei cu obiecte recente." -#: FlatCAMApp.py:7639 flatcamGUI/FlatCAMGUI.py:866 +#: FlatCAMApp.py:7696 flatcamGUI/FlatCAMGUI.py:929 msgid "Shortcut Key List" msgstr "Lista cu taste Shortcut" -#: FlatCAMApp.py:7646 +#: FlatCAMApp.py:7703 msgid "" "\n" "

Selected Tab - Choose an Item from " @@ -1013,7 +1048,7 @@ msgstr "" "Fluxul normal când se lucrează in FlatCAM este următorul:

\n" "\n" "
    \n" -"\t
  1. Incarca/Importa un fiÅŸier Gerber, " +"\t
  2. Încarcă/Importa un fişier Gerber, " "Excellon, Gcode, DXF, Imagine Raster sau SVG in FlatCAM folosind ori " "meniurile, toolbarurile, tastele shortcut sau chiar tragerea și eliberarea " "fişierelor in fereastra FlatCAM.
    \n" @@ -1053,1277 +1088,113 @@ msgstr "" "\n" " " -#: FlatCAMApp.py:7750 +#: FlatCAMApp.py:7807 msgid "[WARNING_NOTCL] Failed checking for latest version. Could not connect." msgstr "" "[WARNING_NOTCL] Verificarea pentru ultima versiune a eșuat. Nu a fost " "posibila conectarea la server." -#: FlatCAMApp.py:7757 +#: FlatCAMApp.py:7814 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:7767 +#: FlatCAMApp.py:7824 msgid "[success] FlatCAM is up to date!" msgstr "[success] FlatCAM este la ultima versiune!" -#: FlatCAMApp.py:7772 +#: FlatCAMApp.py:7829 msgid "Newer Version Available" -msgstr "O noua versiune este disponibila" +msgstr "O nouă versiune este disponibila" -#: FlatCAMApp.py:7773 +#: FlatCAMApp.py:7830 msgid "" "There is a newer version of FlatCAM available for download:\n" "\n" msgstr "" -"O noua versiune de FlatCAM este disponibila pentru download::\n" +"O nouă versiune de FlatCAM este disponibilă pentru download::\n" "\n" -#: FlatCAMApp.py:7775 +#: FlatCAMApp.py:7832 msgid "info" msgstr "Informaţie" -#: FlatCAMApp.py:7794 +#: FlatCAMApp.py:7851 msgid "[success] All plots disabled." msgstr "[success] Toate afisarile sunt dezactivate." -#: FlatCAMApp.py:7800 +#: FlatCAMApp.py:7857 msgid "[success] All non selected plots disabled." msgstr "[success] Toate afisarile care nu sunt selectate sunt dezactivate." -#: FlatCAMApp.py:7806 +#: FlatCAMApp.py:7863 msgid "[success] All plots enabled." msgstr "[success] Toate afisarile sunt activate." -#: FlatCAMApp.py:7916 +#: FlatCAMApp.py:7974 msgid "Saving FlatCAM Project" msgstr "Proiectul FlatCAM este in curs de salvare" -#: FlatCAMApp.py:7937 FlatCAMApp.py:7968 +#: FlatCAMApp.py:7995 FlatCAMApp.py:8026 #, python-format msgid "[success] Project saved to: %s" msgstr "[success] Proiectul s-a salvat in: %s" -#: FlatCAMApp.py:7955 +#: FlatCAMApp.py:8013 #, 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:7962 +#: FlatCAMApp.py:8020 #, 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:7970 +#: FlatCAMApp.py:8028 #, 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." -#: FlatCAMEditor.py:76 -msgid "Buffer distance:" -msgstr "Distanta pt bufer:" - -#: FlatCAMEditor.py:77 -msgid "Buffer corner:" -msgstr "Coltul pt bufer:" - -#: FlatCAMEditor.py:79 -msgid "" -"There are 3 types of corners:\n" -" - 'Round': the corner is rounded for exterior buffer.\n" -" - 'Square:' the corner is met in a sharp angle for exterior buffer.\n" -" - 'Beveled:' the corner is a line that directly connects the features " -"meeting in the corner" -msgstr "" -"Sunt disponibile 3 tipuri de colțuri:\n" -" - 'Rotund': coltul este rotunjit in cazul buferului exterior.\n" -" - 'Patrat:' colțurile formează unghi de 90 grade pt buferul exterior\n" -" - 'Beveled:' coltul este inlocuit cu o linie care uneste capetele liniilor " -"care formează coltul" - -#: FlatCAMEditor.py:85 -msgid "Round" -msgstr "Rotund" - -#: FlatCAMEditor.py:86 -msgid "Square" -msgstr "Patrat" - -#: FlatCAMEditor.py:87 -msgid "Beveled" -msgstr "Beveled" - -#: FlatCAMEditor.py:94 -msgid "Buffer Interior" -msgstr "Bufer interior" - -#: FlatCAMEditor.py:96 -msgid "Buffer Exterior" -msgstr "Bufer Exterior" - -#: FlatCAMEditor.py:102 -msgid "Full Buffer" -msgstr "Bufer complet" - -#: FlatCAMEditor.py:123 FlatCAMEditor.py:2623 -msgid "Buffer Tool" -msgstr "Unealta Bufer" - -#: FlatCAMEditor.py:134 FlatCAMEditor.py:151 FlatCAMEditor.py:168 -#: FlatCAMEditor.py:2641 FlatCAMEditor.py:2667 FlatCAMEditor.py:2693 -msgid "" -"[WARNING_NOTCL] Buffer distance value is missing or wrong format. Add it and " -"retry." -msgstr "" -"[WARNING_NOTCL] Valoarea distantei bufer lipseste sau este intr-un format " -"gresit. Adaugă din nou și reîncearcă." - -#: FlatCAMEditor.py:416 flatcamGUI/FlatCAMGUI.py:3419 -#: flatcamGUI/FlatCAMGUI.py:4625 flatcamGUI/FlatCAMGUI.py:4901 -#: flatcamGUI/FlatCAMGUI.py:5032 flatcamGUI/ObjectUI.py:346 -msgid "Tool dia:" -msgstr "Dia unealtă:" - -#: FlatCAMEditor.py:418 flatcamGUI/FlatCAMGUI.py:5034 -msgid "" -"Diameter of the tool to\n" -"be used in the operation." -msgstr "" -"Diametrul uneltei care este utilizata in operaţie. \n" -"Este și lăţimea de tăiere pentru uneltele cilindrice." - -#: FlatCAMEditor.py:427 flatcamGUI/FlatCAMGUI.py:4807 -#: flatcamGUI/FlatCAMGUI.py:5043 flatcamTools/ToolNonCopperClear.py:165 -#: flatcamTools/ToolPaint.py:160 -msgid "Overlap:" -msgstr "Suprapunere:" - -#: FlatCAMEditor.py:429 flatcamTools/ToolPaint.py:162 -#, python-format -msgid "" -"How much (fraction) of the tool width to overlap each tool pass.\n" -"Example:\n" -"A value here of 0.25 means 25% from the tool diameter found above.\n" -"\n" -"Adjust the value starting with lower values\n" -"and increasing it if areas that should be painted are still \n" -"not painted.\n" -"Lower values = faster processing, faster execution on PCB.\n" -"Higher values = slow processing and slow execution on CNC\n" -"due of too many paths." -msgstr "" -"Cat de mult (fracţie) din diametrul uneltei să se suprapună la fiecare " -"trecere a uneltei.\n" -"Exemplu:\n" -"O valoare aici de 0.25 inseamna 25% din diametrul uneltei de mai sus.\n" -"\n" -"Ajustează valoarea incepand de la valori mici și pe urma creste daca ariile " -"care ar trebui\n" -" >pictate< inca nu sunt procesate.\n" -"Valori scazute = procesare rapida,execuţie rapida a PCB-ului.\n" -"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." - -#: FlatCAMEditor.py:445 flatcamGUI/FlatCAMGUI.py:4823 -#: flatcamGUI/FlatCAMGUI.py:4909 flatcamGUI/FlatCAMGUI.py:5053 -#: flatcamTools/ToolCutOut.py:86 flatcamTools/ToolNonCopperClear.py:181 -#: flatcamTools/ToolPaint.py:177 -msgid "Margin:" -msgstr "Margine:" - -#: FlatCAMEditor.py:447 flatcamGUI/FlatCAMGUI.py:5055 -#: flatcamTools/ToolPaint.py:179 -msgid "" -"Distance by which to avoid\n" -"the edges of the polygon to\n" -"be painted." -msgstr "" -"Distanta fata de marginile\n" -"poligonului care trebuie\n" -"să fie >pictat<." - -#: FlatCAMEditor.py:456 flatcamGUI/FlatCAMGUI.py:4832 -#: flatcamGUI/FlatCAMGUI.py:5064 flatcamTools/ToolNonCopperClear.py:190 -#: flatcamTools/ToolPaint.py:188 -msgid "Method:" -msgstr "Metoda:" - -#: FlatCAMEditor.py:458 flatcamGUI/FlatCAMGUI.py:5066 -msgid "" -"Algorithm to paint the polygon:
    Standard: Fixed step inwards." -"
    Seed-based: Outwards from seed." -msgstr "" -"Algoritm pentru a picta poligonul
    Standard: Pas fix spre interior." -"
    Samanta: Spre exterior pornind de la un punct-samanta." - -#: FlatCAMEditor.py:464 flatcamGUI/FlatCAMGUI.py:4841 -#: flatcamGUI/FlatCAMGUI.py:5072 -msgid "Standard" -msgstr "Standard" - -#: FlatCAMEditor.py:465 flatcamGUI/FlatCAMGUI.py:4842 -#: flatcamGUI/FlatCAMGUI.py:5073 -msgid "Seed-based" -msgstr "Punct-samanta" - -#: FlatCAMEditor.py:466 flatcamGUI/FlatCAMGUI.py:4843 -#: flatcamGUI/FlatCAMGUI.py:5074 -msgid "Straight lines" -msgstr "Linii drepte" - -#: FlatCAMEditor.py:471 flatcamGUI/FlatCAMGUI.py:4848 -#: flatcamGUI/FlatCAMGUI.py:5079 flatcamTools/ToolNonCopperClear.py:206 -#: flatcamTools/ToolPaint.py:204 -msgid "Connect:" -msgstr "Conectează:" - -#: FlatCAMEditor.py:473 flatcamGUI/FlatCAMGUI.py:4850 -#: flatcamGUI/FlatCAMGUI.py:5081 flatcamTools/ToolNonCopperClear.py:208 -#: flatcamTools/ToolPaint.py:206 -msgid "" -"Draw lines between resulting\n" -"segments to minimize tool lifts." -msgstr "" -"Desenează linii între segmentele\n" -"rezultate pentru a minimiza miscarile\n" -"de ridicare a uneltei." - -#: FlatCAMEditor.py:480 flatcamGUI/FlatCAMGUI.py:4857 -#: flatcamGUI/FlatCAMGUI.py:5089 flatcamTools/ToolNonCopperClear.py:215 -#: flatcamTools/ToolPaint.py:213 -msgid "Contour:" -msgstr "Contur:" - -#: FlatCAMEditor.py:482 flatcamGUI/FlatCAMGUI.py:4859 -#: flatcamGUI/FlatCAMGUI.py:5091 flatcamTools/ToolNonCopperClear.py:217 -#: flatcamTools/ToolPaint.py:215 -msgid "" -"Cut around the perimeter of the polygon\n" -"to trim rough edges." -msgstr "" -"Taie de-a lungul perimetrului poligonului\n" -"pentru a elimina bavurile." - -#: FlatCAMEditor.py:494 -msgid "Paint" -msgstr "Pictează" - -#: FlatCAMEditor.py:512 flatcamGUI/FlatCAMGUI.py:585 -#: flatcamGUI/FlatCAMGUI.py:1634 flatcamGUI/ObjectUI.py:1394 -#: flatcamTools/ToolPaint.py:340 -msgid "Paint Tool" -msgstr "Unealta Paint" - -#: FlatCAMEditor.py:548 -msgid "[WARNING_NOTCL] Paint cancelled. No shape selected." -msgstr "[WARNING_NOTCL] Operaţie Paint anulata. Nici-o forma selectată." - -#: FlatCAMEditor.py:559 flatcamTools/ToolCutOut.py:343 -#: flatcamTools/ToolCutOut.py:481 flatcamTools/ToolCutOut.py:601 -#: flatcamTools/ToolCutOut.py:706 flatcamTools/ToolDblSided.py:363 -msgid "" -"[WARNING_NOTCL] Tool diameter value is missing or wrong format. Add it and " -"retry." -msgstr "" -"[WARNING_NOTCL] Diametrul uneltei lipseste sau este intr-un format " -"incompatibil. Adaugă-l și reîncearcă." - -#: FlatCAMEditor.py:570 -msgid "" -"[WARNING_NOTCL] Overlap value is missing or wrong format. Add it and retry." -msgstr "" -"[WARNING_NOTCL] Valoarea de suprapunere a uneltei lipseste sau este intr-un " -"format incompatibil. Adaugă-o și reîncearcă." - -#: FlatCAMEditor.py:582 -msgid "" -"[WARNING_NOTCL] Margin distance value is missing or wrong format. Add it and " -"retry." -msgstr "" -"[WARNING_NOTCL] Valoarea de margine lipseste sau este intr-un format " -"incompatibil. Adaugă-o și reîncearcă." - -#: FlatCAMEditor.py:591 FlatCAMEditor.py:2648 FlatCAMEditor.py:2674 -#: FlatCAMEditor.py:2700 flatcamTools/ToolNonCopperClear.py:807 -#: flatcamTools/ToolProperties.py:104 -msgid "Tools" -msgstr "Unelte" - -#: FlatCAMEditor.py:602 FlatCAMEditor.py:975 flatcamGUI/FlatCAMGUI.py:594 -#: flatcamGUI/FlatCAMGUI.py:1645 flatcamTools/ToolTransform.py:398 -msgid "Transform Tool" -msgstr "Unealta Transformare" - -#: FlatCAMEditor.py:603 FlatCAMEditor.py:664 flatcamTools/ToolTransform.py:24 -#: flatcamTools/ToolTransform.py:82 -msgid "Rotate" -msgstr "Rotaţie" - -#: FlatCAMEditor.py:604 flatcamTools/ToolTransform.py:25 -msgid "Skew/Shear" -msgstr "Deformare" - -#: FlatCAMEditor.py:605 flatcamGUI/ObjectUI.py:100 flatcamGUI/ObjectUI.py:280 -#: flatcamTools/ToolTransform.py:26 -msgid "Scale" -msgstr "Scalare" - -#: FlatCAMEditor.py:606 flatcamTools/ToolTransform.py:27 -msgid "Mirror (Flip)" -msgstr "Oglindire" - -#: FlatCAMEditor.py:607 flatcamGUI/ObjectUI.py:127 flatcamGUI/ObjectUI.py:974 -#: flatcamGUI/ObjectUI.py:1532 flatcamTools/ToolTransform.py:28 -msgid "Offset" -msgstr "Ofset" - -#: FlatCAMEditor.py:618 -#, python-format -msgid "Editor %s" -msgstr "Editor %s" - -#: FlatCAMEditor.py:650 FlatCAMEditor.py:4869 FlatCAMEditor.py:4905 -#: flatcamTools/ToolTransform.py:68 -msgid "Angle:" -msgstr "Unghi:" - -#: FlatCAMEditor.py:652 flatcamTools/ToolTransform.py:70 -msgid "" -"Angle for Rotation action, in degrees.\n" -"Float number between -360 and 359.\n" -"Positive numbers for CW motion.\n" -"Negative numbers for CCW motion." -msgstr "" -"Unghiul pentru Rotaţie, in grade. Număr Real cu valori între -360 și 359.\n" -"Numerele pozitive inseamna o mișcare in sens ace ceasornic.\n" -"Numerele negative inseamna o mișcare in sens invers ace ceasornic." - -#: FlatCAMEditor.py:666 -msgid "" -"Rotate the selected shape(s).\n" -"The point of reference is the middle of\n" -"the bounding box for all selected shapes." -msgstr "" -"Roteste formele selectate.\n" -"Punctul de referinţă este mijlocul\n" -"formei înconjurătoare care cuprinde\n" -"toate formele selectate." - -#: FlatCAMEditor.py:689 flatcamTools/ToolTransform.py:107 -msgid "Angle X:" -msgstr "Unghi X:" - -#: FlatCAMEditor.py:691 FlatCAMEditor.py:709 flatcamTools/ToolTransform.py:109 -#: flatcamTools/ToolTransform.py:127 -msgid "" -"Angle for Skew action, in degrees.\n" -"Float number between -360 and 359." -msgstr "" -"Valoarea unghiului de Deformare, in grade.\n" -"Ia valori Reale între -360 and 359 grade." - -#: FlatCAMEditor.py:700 flatcamTools/ToolTransform.py:118 -msgid "Skew X" -msgstr "Deformare X" - -#: FlatCAMEditor.py:702 FlatCAMEditor.py:720 -msgid "" -"Skew/shear the selected shape(s).\n" -"The point of reference is the middle of\n" -"the bounding box for all selected shapes." -msgstr "" -"Deformează formele selectate.\n" -"Punctul de referinţă este mijlocul\n" -"formei înconjurătoare care cuprinde\n" -"toate formele selectate." - -#: FlatCAMEditor.py:707 flatcamTools/ToolTransform.py:125 -msgid "Angle Y:" -msgstr "Unghi Y:" - -#: FlatCAMEditor.py:718 flatcamTools/ToolTransform.py:136 -msgid "Skew Y" -msgstr "Deformare Y" - -#: FlatCAMEditor.py:746 flatcamTools/ToolTransform.py:164 -msgid "Factor X:" -msgstr "Factor X:" - -#: FlatCAMEditor.py:748 flatcamTools/ToolTransform.py:166 -msgid "Factor for Scale action over X axis." -msgstr "Factor pentru scalarea pe axa X" - -#: FlatCAMEditor.py:756 flatcamTools/ToolTransform.py:174 -msgid "Scale X" -msgstr "Scalează X" - -#: FlatCAMEditor.py:758 FlatCAMEditor.py:775 -msgid "" -"Scale the selected shape(s).\n" -"The point of reference depends on \n" -"the Scale reference checkbox state." -msgstr "" -"Scalează formele selectate.\n" -"Punctul de referinţă depinde de \n" -"starea checkbox-ului >Referința scalare<." - -#: FlatCAMEditor.py:763 flatcamTools/ToolTransform.py:181 -msgid "Factor Y:" -msgstr "Factor Y:" - -#: FlatCAMEditor.py:765 flatcamTools/ToolTransform.py:183 -msgid "Factor for Scale action over Y axis." -msgstr "Factor pentru scalarea pe axa Y." - -#: FlatCAMEditor.py:773 flatcamTools/ToolTransform.py:191 -msgid "Scale Y" -msgstr "Scalează Y" - -#: FlatCAMEditor.py:782 flatcamGUI/FlatCAMGUI.py:5438 -#: flatcamTools/ToolTransform.py:200 -msgid "Link" -msgstr "Legatura" - -#: FlatCAMEditor.py:784 -msgid "" -"Scale the selected shape(s)\n" -"using the Scale Factor X for both axis." -msgstr "" -"Scalează formele selectate\n" -"folsoind factorul: Factor X pentru ambele axe." - -#: FlatCAMEditor.py:790 flatcamGUI/FlatCAMGUI.py:5446 -#: flatcamTools/ToolTransform.py:208 -msgid "Scale Reference" -msgstr "Referința scalare" - -#: FlatCAMEditor.py:792 -msgid "" -"Scale the selected shape(s)\n" -"using the origin reference when checked,\n" -"and the center of the biggest bounding box\n" -"of the selected shapes when unchecked." -msgstr "" -"Scalează formele selectate.\n" -"Punctul de referinţă este mijlocul\n" -"formei înconjurătoare care cuprinde\n" -"toate formele selectate când nu este\n" -"bifat și este originea când este bifat." - -#: FlatCAMEditor.py:820 flatcamTools/ToolTransform.py:238 -msgid "Value X:" -msgstr "Valoare X:" - -#: FlatCAMEditor.py:822 flatcamTools/ToolTransform.py:240 -msgid "Value for Offset action on X axis." -msgstr "Valoare pentru deplasarea pe axa X." - -#: FlatCAMEditor.py:830 flatcamTools/ToolTransform.py:248 -msgid "Offset X" -msgstr "Ofset pe X" - -#: FlatCAMEditor.py:832 FlatCAMEditor.py:850 -msgid "" -"Offset the selected shape(s).\n" -"The point of reference is the middle of\n" -"the bounding box for all selected shapes.\n" -msgstr "" -"Deplasează formele selectate\n" -"Punctul de referinţă este mijlocul\n" -"formei înconjurătoare care cuprinde\n" -"toate formele selectate.\n" - -#: FlatCAMEditor.py:838 flatcamTools/ToolTransform.py:255 -msgid "Value Y:" -msgstr "Valoare Y:" - -#: FlatCAMEditor.py:840 flatcamTools/ToolTransform.py:257 -msgid "Value for Offset action on Y axis." -msgstr "Valoare pentru deplasarea pe axa Y." - -#: FlatCAMEditor.py:848 flatcamTools/ToolTransform.py:265 -msgid "Offset Y" -msgstr "Ofset pe Y" - -#: FlatCAMEditor.py:879 flatcamTools/ToolTransform.py:295 -msgid "Flip on X" -msgstr "Oglindește pe X" - -#: FlatCAMEditor.py:881 FlatCAMEditor.py:889 -msgid "" -"Flip the selected shape(s) over the X axis.\n" -"Does not create a new shape." -msgstr "" -"Oglindește formele selectate peste axa X\n" -"Nu crează noi forme." - -#: FlatCAMEditor.py:887 flatcamTools/ToolTransform.py:303 -msgid "Flip on Y" -msgstr "Oglindește pe Y" - -#: FlatCAMEditor.py:896 flatcamTools/ToolTransform.py:312 -msgid "Ref Pt" -msgstr "Pt ref" - -#: FlatCAMEditor.py:898 -msgid "" -"Flip the selected shape(s)\n" -"around the point in Point Entry Field.\n" -"\n" -"The point coordinates can be captured by\n" -"left click on canvas together with pressing\n" -"SHIFT key. \n" -"Then click Add button to insert coordinates.\n" -"Or enter the coords in format (x, y) in the\n" -"Point Entry field and click Flip on X(Y)" -msgstr "" -"Oglindește formele selectate\n" -"in jurul punctului din câmpul >Punct<\n" -"\n" -"Coordonatele punctului pot fi obtinute\n" -"prin click pe canvas in timp ce se tine apasata\n" -"tasta SHIFT.\n" -"Apoi click pe butonul >Adaugă< pentru a insera\n" -"coordonatele.\n" -"Alternativ se pot introduce manual in formatul (x, y). \n" -"La final click pe >Oglindește pe X(Y)<." - -#: FlatCAMEditor.py:910 flatcamTools/ToolTransform.py:325 -msgid "Point:" -msgstr "Punct:" - -#: FlatCAMEditor.py:912 -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 "" -"Coordonatele in format (x, y) folosite pentru oglindire.\n" -"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." - -#: FlatCAMEditor.py:922 flatcamGUI/ObjectUI.py:1074 -#: flatcamTools/ToolDblSided.py:160 flatcamTools/ToolDblSided.py:208 -#: flatcamTools/ToolNonCopperClear.py:134 flatcamTools/ToolPaint.py:131 -#: flatcamTools/ToolSolderPaste.py:115 flatcamTools/ToolSolderPaste.py:478 -#: flatcamTools/ToolTransform.py:337 -msgid "Add" -msgstr "Adaugă" - -#: FlatCAMEditor.py:924 flatcamTools/ToolTransform.py:339 -msgid "" -"The point coordinates can be captured by\n" -"left click on canvas together with pressing\n" -"SHIFT key. Then click Add button to insert." -msgstr "" -"Coordonatele punctului se pot obtine\n" -"prin click pe canvas in timp ce se tine apasata\n" -"tasta SHIFT.\n" -"La final, apasa butonul >Adaugă< pt a le insera." - -#: FlatCAMEditor.py:1039 -msgid "[WARNING_NOTCL] Transformation cancelled. No shape selected." -msgstr "[WARNING_NOTCL] Transformare anulata. Nici-o forma nu este selectată." - -#: FlatCAMEditor.py:1060 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." - -#: FlatCAMEditor.py:1097 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." - -#: FlatCAMEditor.py:1118 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." - -#: FlatCAMEditor.py:1139 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." - -#: FlatCAMEditor.py:1176 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." - -#: FlatCAMEditor.py:1208 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." - -#: FlatCAMEditor.py:1229 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." - -#: FlatCAMEditor.py:1247 -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!" - -#: FlatCAMEditor.py:1250 flatcamTools/ToolTransform.py:640 -msgid "Appying Rotate" -msgstr "Execuţie Rotaţie" - -#: FlatCAMEditor.py:1278 -msgid "[success] Done. Rotate completed." -msgstr "[success] Executat. Rotaţie finalizata." - -#: FlatCAMEditor.py:1294 -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!" - -#: FlatCAMEditor.py:1297 flatcamTools/ToolTransform.py:692 -msgid "Applying Flip" -msgstr "Execuţie Oglindire" - -#: FlatCAMEditor.py:1327 flatcamTools/ToolTransform.py:735 -msgid "[success] Flip on the Y axis done ..." -msgstr "Oglindirea pe axa X efectuata ..." - -#: FlatCAMEditor.py:1330 flatcamTools/ToolTransform.py:745 -msgid "[success] Flip on the X axis done ..." -msgstr "Oglindirea pe axa Y efectuata ..." - -#: FlatCAMEditor.py:1349 -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!" - -#: FlatCAMEditor.py:1352 flatcamTools/ToolTransform.py:762 -msgid "Applying Skew" -msgstr "Execuţie Deformare" - -#: FlatCAMEditor.py:1377 flatcamTools/ToolTransform.py:793 -#, python-format -msgid "[success] Skew on the %s axis done ..." -msgstr "[success] Deformarea pe axa %s executată ..." - -#: FlatCAMEditor.py:1381 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." - -#: FlatCAMEditor.py:1392 -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!" - -#: FlatCAMEditor.py:1395 flatcamTools/ToolTransform.py:811 -msgid "Applying Scale" -msgstr "Execuţie Scalare" - -#: FlatCAMEditor.py:1428 flatcamTools/ToolTransform.py:849 -#, python-format -msgid "[success] Scale on the %s axis done ..." -msgstr "[success] Scalarea pe axa %s executată ..." - -#: FlatCAMEditor.py:1431 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 ..." - -#: FlatCAMEditor.py:1440 -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!" - -#: FlatCAMEditor.py:1443 flatcamTools/ToolTransform.py:864 -msgid "Applying Offset" -msgstr "Execuţie Ofset" - -#: FlatCAMEditor.py:1467 flatcamTools/ToolTransform.py:894 -#, python-format -msgid "[success] Offset on the %s axis done ..." -msgstr "[success] Deplasarea pe axa %s executată ..." - -#: FlatCAMEditor.py:1471 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." - -#: FlatCAMEditor.py:1475 -msgid "Rotate ..." -msgstr "Rotaţie ..." - -#: FlatCAMEditor.py:1476 FlatCAMEditor.py:1533 FlatCAMEditor.py:1550 -msgid "Enter an Angle Value (degrees):" -msgstr "Introdu o valoare in grade pt Unghi:" - -#: FlatCAMEditor.py:1485 -msgid "[success] Geometry shape rotate done..." -msgstr "[success] Rotatia formei geometrice executată ..." - -#: FlatCAMEditor.py:1490 -msgid "[WARNING_NOTCL] Geometry shape rotate cancelled..." -msgstr "[WARNING_NOTCL] Rotatia formei geometrice anulata ..." - -#: FlatCAMEditor.py:1496 -msgid "Offset on X axis ..." -msgstr "Ofset pe axa X ..." - -#: FlatCAMEditor.py:1497 FlatCAMEditor.py:1516 -#, python-format -msgid "Enter a distance Value (%s):" -msgstr "Introdu of valoare pt Distanta (%s):" - -#: FlatCAMEditor.py:1506 -msgid "[success] Geometry shape offset on X axis done..." -msgstr "[success] Deplasarea formei geometrice pe axa X executată ..." - -#: FlatCAMEditor.py:1510 -msgid "[WARNING_NOTCL] Geometry shape offset X cancelled..." -msgstr "[WARNING_NOTCL] Deplasarea formei geometrice pe axa X anulata ..." - -#: FlatCAMEditor.py:1515 -msgid "Offset on Y axis ..." -msgstr "Ofset pe axa Y ..." - -#: FlatCAMEditor.py:1525 -msgid "[success] Geometry shape offset on Y axis done..." -msgstr "[success] Deplasarea formei geometrice pe axa Y executată ..." - -#: FlatCAMEditor.py:1529 -msgid "[WARNING_NOTCL] Geometry shape offset Y cancelled..." -msgstr "[WARNING_NOTCL] Deplasarea formei geometrice pe axa Y anulata ..." - -#: FlatCAMEditor.py:1532 -msgid "Skew on X axis ..." -msgstr "Deformare pe axa X ..." - -#: FlatCAMEditor.py:1542 -msgid "[success] Geometry shape skew on X axis done..." -msgstr "[success] Deformarea formei geometrice pe axa X executată ..." - -#: FlatCAMEditor.py:1546 -msgid "[WARNING_NOTCL] Geometry shape skew X cancelled..." -msgstr "[WARNING_NOTCL] Deformarea formei geometrice pe axa X anulata ..." - -#: FlatCAMEditor.py:1549 -msgid "Skew on Y axis ..." -msgstr "Deformare pe axa Y ..." - -#: FlatCAMEditor.py:1559 -msgid "[success] Geometry shape skew on Y axis done..." -msgstr "[success] Deformarea formei geometrice pe axa Y executată ..." - -#: FlatCAMEditor.py:1563 -msgid "[WARNING_NOTCL] Geometry shape skew Y cancelled..." -msgstr "[success] Deformarea formei geometrice pe axa Y executată ..." - -#: FlatCAMEditor.py:1894 FlatCAMEditor.py:1933 -msgid "Click on CENTER ..." -msgstr "Click in Centru ..." - -#: FlatCAMEditor.py:1901 -msgid "Click on Circle perimeter point to complete ..." -msgstr "Click pe un punct aflat pe circumferinta Cercului pentru terminare ..." - -#: FlatCAMEditor.py:1925 -msgid "[success] Done. Adding Circle completed." -msgstr "[success] Executat. Adaugarea unei forme Cerc terminata." - -#: FlatCAMEditor.py:1952 -msgid "Click on Start arc point ..." -msgstr "Click pe punctul de Start al Arcului ..." - -#: FlatCAMEditor.py:1956 -msgid "Click on End arc point to complete ..." -msgstr "Click pe punctul de End al Arcului pentru terminare ..." - -#: FlatCAMEditor.py:2111 -msgid "[success] Done. Arc completed." -msgstr "[success] Executat. Adaugarea unei forme Arc terminata." - -#: FlatCAMEditor.py:2123 -msgid "Click on 1st corner ..." -msgstr "Click pe primul colt ..." - -#: FlatCAMEditor.py:2151 -msgid "[success] Done. Rectangle completed." -msgstr "[success] Executat. Rotaţie finalizata." - -#: FlatCAMEditor.py:2163 -msgid "Click on 1st point ..." -msgstr "Click pe primul punct ..." - -#: FlatCAMEditor.py:2170 -msgid "Click on next Point or click Right mouse button to complete ..." -msgstr "" -"Click pe punctul următor sau click buton dreapta al mousului pentru " -"terminare ..." - -#: FlatCAMEditor.py:2193 -msgid "[success] Done. Polygon completed." -msgstr "[success] Executat. Adaugarea unei forme Poligon terminata." - -#: FlatCAMEditor.py:2212 -msgid "[success] Done. Path completed." -msgstr "[success] Executata. Adaugarea unei forme tip Cale terminata." - -#: FlatCAMEditor.py:2472 FlatCAMEditor.py:4045 -msgid "[WARNING_NOTCL] Move cancelled. No shape selected." -msgstr "[WARNING_NOTCL] Mutare anulata. Nici-o forma nu este selectată." - -#: FlatCAMEditor.py:2476 -msgid "Click on reference point." -msgstr "Click pe punctul de referinţă." - -#: FlatCAMEditor.py:2479 -msgid "Click on destination point." -msgstr "Click pe punctul de Destinaţie." - -#: FlatCAMEditor.py:2510 -msgid "[success] Done. Geometry(s) Move completed." -msgstr "[success] Executat. Mutarea Geometriilor terminata." - -#: FlatCAMEditor.py:2555 -msgid "[success] Done. Geometry(s) Copy completed." -msgstr "[success] Executat. Copierea Geometriilor terminata." - -#: FlatCAMEditor.py:2567 -msgid "Click on the Destination point..." -msgstr "Click pe punctul de Destinaţie ..." - -#: FlatCAMEditor.py:2581 -#, python-format -msgid "" -"[ERROR]Font not supported. Only Regular, Bold, Italic and BoldItalic are " -"supported. Error: %s" -msgstr "" -"[ERROR] Fontul nu este compatibil. Doar cele tip: Regular, Bold, Italic și " -"BoldItalic sunt acceptate. Eroarea:: %s" - -#: FlatCAMEditor.py:2591 -msgid "[success] Done. Adding Text completed." -msgstr "[success] Executat. Adaugarea de Text terminata." - -#: FlatCAMEditor.py:2619 -msgid "Create buffer geometry ..." -msgstr "Crează o geometrie de tipe Bufer ..." - -#: FlatCAMEditor.py:2630 FlatCAMEditor.py:2656 FlatCAMEditor.py:2682 -msgid "[WARNING_NOTCL] Buffer cancelled. No shape selected." -msgstr "" -"[WARNING_NOTCL] Crearea de geometrie Bufer anulata. Nici-o forma geometrică " -"nu este selectată." - -#: FlatCAMEditor.py:2652 -msgid "[success] Done. Buffer Tool completed." -msgstr "[success] Executat. Unealta Bufer terminat." - -#: FlatCAMEditor.py:2678 -msgid "[success] Done. Buffer Int Tool completed." -msgstr "[success] Executat. Unealta Bufer Intern terminat." - -#: FlatCAMEditor.py:2704 -msgid "[success] Done. Buffer Ext Tool completed." -msgstr "[success] Executat. Unealta Bufer Extern terminat." - -#: FlatCAMEditor.py:2737 -msgid "Create Paint geometry ..." -msgstr "Crează o geometrie Paint ..." - -#: FlatCAMEditor.py:2751 -msgid "Shape transformations ..." -msgstr "Transformări de forme geometrice ..." - -#: FlatCAMEditor.py:2776 -msgid "[WARNING_NOTCL] To add a drill first select a tool" -msgstr "" -"[WARNING_NOTCL] Pentru a adăuga o operaţie de găurire mai intai selectează " -"un burghiu (unealtă)" - -#: FlatCAMEditor.py:2785 FlatCAMEditor.py:2875 FlatCAMEditor.py:3148 -#: FlatCAMEditor.py:3173 -msgid "Click on target location ..." -msgstr "Click pe locatia tinta ..." - -#: FlatCAMEditor.py:2825 -msgid "[success] Done. Drill added." -msgstr "[success] Executat. Operaţie de găurire adăugată." - -#: FlatCAMEditor.py:2867 -msgid "[WARNING_NOTCL] To add an Drill Array first select a tool in Tool Table" -msgstr "" -"[WARNING_NOTCL] Pentru a adăuga o arie de operațiuni de găurire mai intai " -"selectează un burghiu (unealtă)" - -#: FlatCAMEditor.py:2892 -msgid "Click on the Drill Circular Array Start position" -msgstr "Click pe punctul de Start al ariei de operațiuni de găurire" - -#: FlatCAMEditor.py:2914 -msgid "" -"[ERROR_NOTCL] The value is not Float. Check for comma instead of dot " -"separator." -msgstr "" -"[ERROR_NOTCL] Valoarea nu este număr Real. Verifică să nu fi folosit virgula " -"in loc de punct ca și separator decimal." - -#: FlatCAMEditor.py:2917 -msgid "[ERROR_NOTCL] The value is mistyped. Check the value." -msgstr "[ERROR_NOTCL] Valoarea este gresita. Verifică ce ai introdus." - -#: FlatCAMEditor.py:3010 -msgid "[WARNING_NOTCL] Too many drills for the selected spacing angle." -msgstr "" -"[WARNING_NOTCL] Prea multe operațiuni de găurire pentru unghiul selectat." - -#: FlatCAMEditor.py:3027 -msgid "[success] Done. Drill Array added." -msgstr "[success] Executat. Aria de operațiuni de găurire a fost adăugată." - -#: FlatCAMEditor.py:3038 -msgid "Click on the Drill(s) to resize ..." -msgstr "" -"Click pe operațiunile de găurire care se doreste să fie redimensionate ..." - -#: FlatCAMEditor.py:3058 -msgid "" -"[ERROR_NOTCL] Resize drill(s) failed. Please enter a diameter for resize." -msgstr "" -"[ERROR_NOTCL] Redimensionarea operațiunilor de găurire a eșuat. Adaugă o " -"valoare pentru dimetrul la care se face redimensionarea." - -#: FlatCAMEditor.py:3130 -msgid "[success] Done. Drill Resize completed." -msgstr "[success] Executat. Redimensionare găurire terminata." - -#: FlatCAMEditor.py:3150 -msgid "Click on reference location ..." -msgstr "Click pe locatia de referinţă ..." - -#: FlatCAMEditor.py:3205 -msgid "[success] Done. Drill(s) Move completed." -msgstr "[success] Executat. Operatiile de găurire au fost mutate." - -#: FlatCAMEditor.py:3258 -msgid "[success] Done. Drill(s) copied." -msgstr "[success] Executat. Operatiile de găurire au fost copiate." - -#: FlatCAMEditor.py:3678 +#: FlatCAMObj.py:194 #, 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}" +msgid "[success] Name changed from {old} to {new}" +msgstr "[success] Numele schimbat din {old} in {new}" -#: FlatCAMEditor.py:3919 flatcamGUI/FlatCAMGUI.py:2131 -#: flatcamGUI/FlatCAMGUI.py:2143 -msgid "[success] Done." -msgstr "[success] Executat." +#: FlatCAMObj.py:535 FlatCAMObj.py:1741 FlatCAMObj.py:3006 FlatCAMObj.py:5156 +msgid "Basic" +msgstr "Baza" -#: FlatCAMEditor.py:4052 -msgid "[WARNING_NOTCL] Copy cancelled. No shape selected." -msgstr "" -"[WARNING_NOTCL] Copiere anulata. Nici-o forma geometrică nu este selectată." +#: FlatCAMObj.py:547 FlatCAMObj.py:1757 FlatCAMObj.py:3028 FlatCAMObj.py:5162 +msgid "Advanced" +msgstr "Avansat" -#: FlatCAMEditor.py:4059 flatcamGUI/FlatCAMGUI.py:2423 -#: flatcamGUI/FlatCAMGUI.py:2435 flatcamGUI/FlatCAMGUI.py:2469 -msgid "Click on target point." -msgstr "Click pe punctul tinta." - -#: FlatCAMEditor.py:4307 -msgid "" -"[WARNING_NOTCL] A selection of at least 2 geo items is required to do " -"Intersection." -msgstr "" -"[WARNING_NOTCL] Cel putin o selecţie de doua forme geometrice este necesară " -"pentru a face o Intersecţie." - -#: FlatCAMEditor.py:4345 FlatCAMEditor.py:4382 FlatCAMEditor.py:4454 -msgid "" -"[ERROR_NOTCL] Negative buffer value is not accepted. Use Buffer interior to " -"generate an 'inside' shape" -msgstr "" -"[ERROR_NOTCL] O valoare de bufer negativă nu se acceptă. Folosete Bufer " -"Interior pentru a genera o forma geo. interioara." - -#: FlatCAMEditor.py:4353 FlatCAMEditor.py:4391 FlatCAMEditor.py:4462 -msgid "[WARNING_NOTCL] Nothing selected for buffering." -msgstr "" -"[WARNING_NOTCL] Nici-o forma geometrică nu este selectată pentru a face " -"Bufer." - -#: FlatCAMEditor.py:4357 FlatCAMEditor.py:4395 FlatCAMEditor.py:4466 -msgid "[WARNING_NOTCL] Invalid distance for buffering." -msgstr "[WARNING_NOTCL] Distanta invalida pentru a face Bufer." - -#: FlatCAMEditor.py:4367 FlatCAMEditor.py:4475 -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." - -#: FlatCAMEditor.py:4375 -msgid "[success] Full buffer geometry created." -msgstr "[success] Geometrie tip Bufer Complet creată." - -#: FlatCAMEditor.py:4404 -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." - -#: FlatCAMEditor.py:4416 FlatCAMEditor.py:4487 -msgid "[success] Exterior buffer geometry created." -msgstr "[success] Geometrie Bufer Exterior creată." - -#: FlatCAMEditor.py:4551 -msgid "[WARNING_NOTCL] Nothing selected for painting." -msgstr "" -"[WARNING_NOTCL] Nici-o forma geometrică nu este selectată pentru Paint." - -#: FlatCAMEditor.py:4557 -msgid "[WARNING] Invalid value for {}" -msgstr "[WARNING] Valoare invalida pentru {}" - -#: FlatCAMEditor.py:4563 -msgid "" -"[ERROR_NOTCL] Could not do Paint. Overlap value has to be less than 1.00 " -"(100%)." -msgstr "" -"[ERROR_NOTCL] Nu se poate face Paint. Valoarea de suprapunere trebuie să fie " -"mai putin de 1.00 (100%)." - -#: FlatCAMEditor.py:4622 +#: FlatCAMObj.py:902 FlatCAMObj.py:957 #, python-format -msgid "" -"[ERROR] Could not do Paint. Try a different combination of parameters. Or a " -"different method of Paint\n" -"%s" -msgstr "" -"[ERROR] Nu se poate face Paint. Incearcă o combinaţie diferita de parametri. " -"Or o metoda diferita de Paint\n" -"%s" +msgid "[success] Isolation geometry created: %s" +msgstr "[success] Geometria de izolare creată: %s" -#: FlatCAMEditor.py:4633 -msgid "[success] Paint done." -msgstr "[success] Paint executat." +#: FlatCAMObj.py:1126 +msgid "Plotting Apertures" +msgstr "Aperturile sunt in curs de afișare" -#: FlatCAMEditor.py:4665 -msgid "Excellon Editor" -msgstr "Editor Excellon" - -#: FlatCAMEditor.py:4672 -msgid "Name:" -msgstr "Nume:" - -#: FlatCAMEditor.py:4692 flatcamTools/ToolNonCopperClear.py:72 -#: flatcamTools/ToolPaint.py:69 flatcamTools/ToolSolderPaste.py:70 -msgid "Tools Table" -msgstr "Tabela Unelte" - -#: FlatCAMEditor.py:4694 flatcamGUI/ObjectUI.py:624 -msgid "" -"Tools in this Excellon object\n" -"when are used for drilling." -msgstr "" -"Burghie (unelte) in acest obiect Excellon\n" -"când se face găurire." - -#: FlatCAMEditor.py:4703 FlatCAMEditor.py:5763 FlatCAMObj.py:2233 -#: FlatCAMObj.py:2327 FlatCAMObj.py:2438 flatcamGUI/ObjectUI.py:642 -#: flatcamTools/ToolNonCopperClear.py:83 flatcamTools/ToolPaint.py:80 -#: flatcamTools/ToolSolderPaste.py:81 -msgid "Diameter" -msgstr "Diametru" - -#: FlatCAMEditor.py:4711 -msgid "Add/Delete Tool" -msgstr "Adaugă/Șterge Unealta" - -#: FlatCAMEditor.py:4713 -msgid "" -"Add/Delete a tool to the tool list\n" -"for this Excellon object." -msgstr "" -"Adaugă/Șterge o unealtă la lista de unelte\n" -"pentru acest obiect Excellon." - -#: FlatCAMEditor.py:4721 flatcamTools/ToolCutOut.py:77 -msgid "Tool Dia:" -msgstr "Dia. Unealta:" - -#: FlatCAMEditor.py:4723 flatcamGUI/ObjectUI.py:1061 -msgid "Diameter for the new tool" -msgstr "Diametru pentru noua unealtă (burghiu, freza)" - -#: FlatCAMEditor.py:4732 -msgid "Add Tool" -msgstr "Adaugă Unealta" - -#: FlatCAMEditor.py:4734 -msgid "" -"Add a new tool to the tool list\n" -"with the diameter specified above." -msgstr "" -"Adaugă o unealtă noua la lista de unelte\n" -"cu diametrul specificat deasupra." - -#: FlatCAMEditor.py:4744 -msgid "Delete Tool" -msgstr "Șterge Unealta" - -#: FlatCAMEditor.py:4746 -msgid "" -"Delete a tool in the tool list\n" -"by selecting a row in the tool table." -msgstr "" -"Șterge o unealtă in lista de unelte\n" -"prin selectarea unei linii in tabela de unelte." - -#: FlatCAMEditor.py:4764 -msgid "Resize Drill(s)" -msgstr "Redimensionare operațiuni de găurire" - -#: FlatCAMEditor.py:4766 -msgid "Resize a drill or a selection of drills." -msgstr "" -"Redimensionează o operaţie de găurire sau o selecţie de operațiuni de " -"găurire." - -#: FlatCAMEditor.py:4773 -msgid "Resize Dia:" -msgstr "Redimensionare Dia:" - -#: FlatCAMEditor.py:4775 -msgid "Diameter to resize to." -msgstr "Diametrul la care se face redimensionarea." - -#: FlatCAMEditor.py:4783 -msgid "Resize" -msgstr "Redimensionează" - -#: FlatCAMEditor.py:4785 -msgid "Resize drill(s)" -msgstr "Redimensionează op. de găurire." - -#: FlatCAMEditor.py:4807 flatcamGUI/FlatCAMGUI.py:1394 -msgid "Add Drill Array" -msgstr "Adaugă o arie de op. găurire" - -#: FlatCAMEditor.py:4809 -msgid "Add an array of drills (linear or circular array)" -msgstr "Adaugă o arie de operațiuni de găurire (arie lineara sau circulara)." - -#: FlatCAMEditor.py:4815 -msgid "" -"Select the type of drills array to create.\n" -"It can be Linear X(Y) or Circular" -msgstr "" -"Selectează tipul de arii de operațiuni de găurire.\n" -"Poate fi Liniar X(Y) sau Circular." - -#: FlatCAMEditor.py:4818 -msgid "Linear" -msgstr "Liniar" - -#: FlatCAMEditor.py:4819 -msgid "Circular" -msgstr "Circular" - -#: FlatCAMEditor.py:4826 -msgid "Nr of drills:" -msgstr "Nr. op. găurire" - -#: FlatCAMEditor.py:4828 -msgid "Specify how many drills to be in the array." -msgstr "Specifica cate operațiuni de găurire să fie incluse in arie." - -#: FlatCAMEditor.py:4845 FlatCAMEditor.py:4890 -msgid "Direction:" -msgstr "Direcţie:" - -#: FlatCAMEditor.py:4847 -msgid "" -"Direction on which the linear array is oriented:\n" -"- 'X' - horizontal axis \n" -"- 'Y' - vertical axis or \n" -"- 'Angle' - a custom angle for the array inclination" -msgstr "" -"Directia in care aria lineara este orientata:\n" -"- 'X' - pe axa orizontala \n" -"- 'Y' - pe axa verticala sau \n" -"- 'Unghi' - un unghi particular pentru inclinatia ariei" - -#: FlatCAMEditor.py:4856 -msgid "Angle" -msgstr "Unghi" - -#: FlatCAMEditor.py:4860 -msgid "Pitch:" -msgstr "Pas:" - -#: FlatCAMEditor.py:4862 -msgid "Pitch = Distance between elements of the array." -msgstr "Pas = Distanta între elementele ariei." - -#: FlatCAMEditor.py:4871 -msgid "" -"Angle at which the linear array is placed.\n" -"The precision is of max 2 decimals.\n" -"Min value is: -359.99 degrees.\n" -"Max value is: 360.00 degrees." -msgstr "" -"Unghiul global la care aria lineara este plasata.\n" -"Precizia este de max 2 zecimale.\n" -"Val minima este: -359.99 grade.\n" -"Val maxima este: 360.00 grade." - -#: FlatCAMEditor.py:4892 -msgid "" -"Direction for circular array.Can be CW = clockwise or CCW = counter " -"clockwise." -msgstr "" -"Directia pentru aria circulara. Poate fi CW = in sensul acelor de ceasornic " -"sau CCW = invers acelor de ceasornic" - -#: FlatCAMEditor.py:4907 -msgid "Angle at which each element in circular array is placed." -msgstr "" -"Unghiul la care fiecare element al ariei circulare este plasat fata de " -"originea ariei." - -#: FlatCAMEditor.py:5228 FlatCAMObj.py:1755 +#: FlatCAMObj.py:1580 flatcamEditors/FlatCAMExcEditor.py:1293 msgid "Total Drills" msgstr "Nr. Tot. Op. Găurire" -#: FlatCAMEditor.py:5260 FlatCAMObj.py:1781 +#: FlatCAMObj.py:1606 flatcamEditors/FlatCAMExcEditor.py:1325 msgid "Total Slots" msgstr "Nr. Tot. Sloturi" -#: FlatCAMEditor.py:5334 FlatCAMObj.py:1988 FlatCAMObj.py:3253 -#: FlatCAMObj.py:3559 FlatCAMObj.py:3746 FlatCAMObj.py:3759 FlatCAMObj.py:3876 -#: FlatCAMObj.py:4284 FlatCAMObj.py:4517 FlatCAMObj.py:4923 +#: FlatCAMObj.py:1813 FlatCAMObj.py:3078 FlatCAMObj.py:3384 FlatCAMObj.py:3571 +#: FlatCAMObj.py:3584 FlatCAMObj.py:3701 FlatCAMObj.py:4109 FlatCAMObj.py:4342 +#: FlatCAMObj.py:4748 flatcamEditors/FlatCAMExcEditor.py:1400 #: flatcamTools/ToolCalculators.py:307 flatcamTools/ToolCalculators.py:318 #: flatcamTools/ToolCalculators.py:330 flatcamTools/ToolCalculators.py:345 #: flatcamTools/ToolCalculators.py:358 flatcamTools/ToolCalculators.py:372 @@ -2332,9 +1203,9 @@ msgstr "Nr. Tot. Sloturi" #: flatcamTools/ToolFilm.py:248 flatcamTools/ToolNonCopperClear.py:479 #: flatcamTools/ToolNonCopperClear.py:550 #: flatcamTools/ToolNonCopperClear.py:626 -#: flatcamTools/ToolNonCopperClear.py:638 flatcamTools/ToolPaint.py:537 -#: flatcamTools/ToolPaint.py:607 flatcamTools/ToolPaint.py:743 -#: flatcamTools/ToolPaint.py:833 flatcamTools/ToolPaint.py:988 +#: flatcamTools/ToolNonCopperClear.py:643 flatcamTools/ToolPaint.py:537 +#: flatcamTools/ToolPaint.py:607 flatcamTools/ToolPaint.py:742 +#: flatcamTools/ToolPaint.py:839 flatcamTools/ToolPaint.py:994 #: flatcamTools/ToolPanelize.py:323 flatcamTools/ToolPanelize.py:335 #: flatcamTools/ToolPanelize.py:348 flatcamTools/ToolPanelize.py:361 #: flatcamTools/ToolPanelize.py:373 flatcamTools/ToolPanelize.py:384 @@ -2342,145 +1213,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." -#: FlatCAMEditor.py:5347 -msgid "" -"[WARNING_NOTCL] Tool already in the original or actual tool list.\n" -"Save and reedit Excellon if you need to add this tool. " -msgstr "" -"[WARNING_NOTCL] Unealta este deja in lista originala sau actuala de unelte.\n" -"Salvează și reeditează obiectul Excellon daca ai nevoie să adaugi aceasta " -"unealtă." - -#: FlatCAMEditor.py:5356 flatcamGUI/FlatCAMGUI.py:2498 -#, python-brace-format -msgid "[success] Added new tool with dia: {dia} {units}" -msgstr "[success] O noua unealtă este adăugată cu diametrul: {dia} {units}" - -#: FlatCAMEditor.py:5387 -msgid "[WARNING_NOTCL] Select a tool in Tool Table" -msgstr "[WARNING_NOTCL] Selectează o unealtă in Tabela de Unelte" - -#: FlatCAMEditor.py:5420 -#, python-brace-format -msgid "[success] Deleted tool with dia: {del_dia} {units}" -msgstr "[success] Unealta stearsa cu diametrul: {del_dia} {units}" - -#: FlatCAMEditor.py:5817 -msgid "" -"[ERROR_NOTCL] There are no Tools definitions in the file. Aborting Excellon " -"creation." -msgstr "" -"[ERROR_NOTCL] Nu exista definitii de unelte in fişier. Se anulează crearea " -"de obiect Excellon." - -#: FlatCAMEditor.py:5826 -msgid "Creating Excellon." -msgstr "In curs de creere Excellon." - -#: FlatCAMEditor.py:5835 -msgid "[success] Excellon editing finished." -msgstr "[success] Editarea Excellon a fost terminata." - -#: FlatCAMEditor.py:5852 -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." - -#: FlatCAMEditor.py:6334 -msgid "[success] Done. Drill(s) deleted." -msgstr "[success] Executat. Operatiile de găurire șterse." - -#: FlatCAMEditor.py:6404 -msgid "Click on the circular array Center position" -msgstr "Click pe punctul de Centru al ariei circulare." - -#: FlatCAMObj.py:194 -#, python-brace-format -msgid "[success] Name changed from {old} to {new}" -msgstr "[success] Numele schimbat din {old} in {new}" - -#: FlatCAMObj.py:543 FlatCAMObj.py:1916 FlatCAMObj.py:3181 FlatCAMObj.py:5331 -msgid "Basic" -msgstr "Baza" - -#: FlatCAMObj.py:555 FlatCAMObj.py:1932 FlatCAMObj.py:3203 FlatCAMObj.py:5337 -msgid "Advanced" -msgstr "Avansat" - -#: FlatCAMObj.py:910 FlatCAMObj.py:965 -#, python-format -msgid "[success] Isolation geometry created: %s" -msgstr "[success] Geometria de izolare creată: %s" - -#: FlatCAMObj.py:1059 -msgid "" -"[ERROR_NOTCL] The aperture scale factor value is missing or wrong format." -msgstr "" -"[ERROR_NOTCL] Factorul de scalare a aperturii lipseste sau este in format " -"gresit." - -#: FlatCAMObj.py:1074 FlatCAMObj.py:1109 -msgid "" -"[WARNING_NOTCL] No aperture to scale. Select at least one aperture and try " -"again." -msgstr "" -"[WARNING_NOTCL] Nici-o apertura sel. pt scalare. Selectează cel putin o " -"apertura și încearcă din nou." - -#: FlatCAMObj.py:1094 -msgid "[ERROR_NOTCL] The aperture buffer value is missing or wrong format." -msgstr "[ERROR_NOTCL] Valoarea pt bufer apertura lipseste " - -#: FlatCAMObj.py:1166 -msgid "Generating Gerber" -msgstr "Gerber in curs de creare" - -#: FlatCAMObj.py:1174 -msgid "[ERROR_NOTCL] Creation of Gerber failed." -msgstr "[ERROR_NOTCL] Crearea unui fişier Gerber a eșuat." - -#: FlatCAMObj.py:1181 -#, python-format -msgid "[success] Created: %s" -msgstr "[success] Creat: %s" - -#: FlatCAMObj.py:1301 -msgid "Plotting Apertures" -msgstr "Aperturile sunt in curs de afișare" - -#: FlatCAMObj.py:2212 FlatCAMObj.py:2303 FlatCAMObj.py:2418 +#: FlatCAMObj.py:2037 FlatCAMObj.py:2128 FlatCAMObj.py:2243 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:2219 +#: FlatCAMObj.py:2044 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:2233 FlatCAMObj.py:2327 FlatCAMObj.py:2438 +#: FlatCAMObj.py:2058 FlatCAMObj.py:2152 FlatCAMObj.py:2263 msgid "Tool_nr" msgstr "Nr. Unealta" -#: FlatCAMObj.py:2233 FlatCAMObj.py:2327 FlatCAMObj.py:2438 +#: FlatCAMObj.py:2058 FlatCAMObj.py:2152 FlatCAMObj.py:2263 +#: flatcamEditors/FlatCAMExcEditor.py:753 +#: flatcamEditors/FlatCAMExcEditor.py:1870 flatcamGUI/ObjectUI.py:556 +#: flatcamTools/ToolNonCopperClear.py:83 flatcamTools/ToolPaint.py:80 +#: flatcamTools/ToolSolderPaste.py:81 +msgid "Diameter" +msgstr "Diametru" + +#: FlatCAMObj.py:2058 FlatCAMObj.py:2152 FlatCAMObj.py:2263 msgid "Drills_Nr" msgstr "Nr. gaura" -#: FlatCAMObj.py:2233 FlatCAMObj.py:2327 FlatCAMObj.py:2438 +#: FlatCAMObj.py:2058 FlatCAMObj.py:2152 FlatCAMObj.py:2263 msgid "Slots_Nr" msgstr "Nr. slot" -#: FlatCAMObj.py:2313 +#: FlatCAMObj.py:2138 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:2478 FlatCAMObj.py:4172 FlatCAMObj.py:4383 FlatCAMObj.py:4698 +#: FlatCAMObj.py:2303 FlatCAMObj.py:3997 FlatCAMObj.py:4208 FlatCAMObj.py:4523 msgid "" "[ERROR_NOTCL] Wrong value format for self.defaults[\"z_pdepth\"] or self." "options[\"z_pdepth\"]" @@ -2488,7 +1261,7 @@ msgstr "" "[ERROR_NOTCL] Valoare gresita pt self.defaults[\"z_pdepth\"] sau self." "options[\"z_pdepth\"]" -#: FlatCAMObj.py:2490 FlatCAMObj.py:4184 FlatCAMObj.py:4395 FlatCAMObj.py:4710 +#: FlatCAMObj.py:2315 FlatCAMObj.py:4009 FlatCAMObj.py:4220 FlatCAMObj.py:4535 msgid "" "[ERROR_NOTCL] Wrong value format for self.defaults[\"feedrate_probe\"] or " "self.options[\"feedrate_probe\"]" @@ -2496,12 +1269,12 @@ msgstr "" "[ERROR_NOTCL] Valoare gresita pt self.defaults[\"feedrate_probe\"] sau self." "options[\"feedrate_probe\"]" -#: FlatCAMObj.py:2522 FlatCAMObj.py:4585 FlatCAMObj.py:4590 FlatCAMObj.py:4736 +#: FlatCAMObj.py:2347 FlatCAMObj.py:4410 FlatCAMObj.py:4415 FlatCAMObj.py:4561 msgid "Generating CNC Code" msgstr "CNC Code in curs de generare" -#: FlatCAMObj.py:2548 FlatCAMObj.py:4882 camlib.py:4939 camlib.py:5375 -#: camlib.py:5646 +#: FlatCAMObj.py:2373 FlatCAMObj.py:4707 camlib.py:5141 camlib.py:5577 +#: camlib.py:5848 msgid "" "[ERROR]The Toolchange X,Y field in Edit -> Preferences has to be in the " "format (x, y) \n" @@ -2511,81 +1284,82 @@ msgstr "" "să fie in formatul (x, y) \n" "dar are o singură valoare in loc de doua. " -#: FlatCAMObj.py:2895 FlatCAMObj.py:3137 FlatCAMObj.py:3422 +#: FlatCAMObj.py:2720 FlatCAMObj.py:2962 FlatCAMObj.py:3247 msgid "Path" msgstr "Pe cale" -#: FlatCAMObj.py:2895 +#: FlatCAMObj.py:2720 msgid "In" msgstr "În" -#: FlatCAMObj.py:2895 +#: FlatCAMObj.py:2720 msgid "Out" msgstr "Afară" -#: FlatCAMObj.py:2895 FlatCAMObj.py:3218 FlatCAMObj.py:3791 +#: FlatCAMObj.py:2720 FlatCAMObj.py:3043 FlatCAMObj.py:3616 msgid "Custom" msgstr "Personalizat" -#: FlatCAMObj.py:2896 FlatCAMObj.py:3802 FlatCAMObj.py:3803 FlatCAMObj.py:3812 +#: FlatCAMObj.py:2721 FlatCAMObj.py:3627 FlatCAMObj.py:3628 FlatCAMObj.py:3637 msgid "Iso" msgstr "Izo." -#: FlatCAMObj.py:2896 FlatCAMObj.py:3139 FlatCAMObj.py:3424 +#: FlatCAMObj.py:2721 FlatCAMObj.py:2964 FlatCAMObj.py:3249 msgid "Rough" msgstr "Grosier" -#: FlatCAMObj.py:2896 +#: FlatCAMObj.py:2721 msgid "Finish" msgstr "Finisare" -#: FlatCAMObj.py:3174 flatcamGUI/FlatCAMGUI.py:473 -#: flatcamGUI/FlatCAMGUI.py:1398 flatcamGUI/ObjectUI.py:1082 +#: FlatCAMObj.py:2999 flatcamGUI/FlatCAMGUI.py:512 flatcamGUI/FlatCAMGUI.py:698 +#: flatcamGUI/FlatCAMGUI.py:1536 flatcamGUI/FlatCAMGUI.py:1546 +#: flatcamGUI/FlatCAMGUI.py:1870 flatcamGUI/ObjectUI.py:996 msgid "Copy" msgstr "Copiaza" -#: FlatCAMObj.py:3176 flatcamGUI/FlatCAMGUI.py:474 -#: flatcamGUI/FlatCAMGUI.py:1399 flatcamGUI/ObjectUI.py:259 -#: flatcamGUI/ObjectUI.py:1090 flatcamTools/ToolNonCopperClear.py:146 -#: flatcamTools/ToolPaint.py:143 flatcamTools/ToolSolderPaste.py:121 -#: flatcamTools/ToolSolderPaste.py:480 +#: FlatCAMObj.py:3001 flatcamGUI/FlatCAMGUI.py:513 flatcamGUI/FlatCAMGUI.py:700 +#: flatcamGUI/FlatCAMGUI.py:1537 flatcamGUI/FlatCAMGUI.py:1547 +#: flatcamGUI/FlatCAMGUI.py:1872 flatcamGUI/ObjectUI.py:1004 +#: flatcamTools/ToolNonCopperClear.py:146 flatcamTools/ToolPaint.py:143 +#: flatcamTools/ToolSolderPaste.py:121 flatcamTools/ToolSolderPaste.py:480 msgid "Delete" msgstr "Șterge" -#: FlatCAMObj.py:3394 +#: FlatCAMObj.py:3219 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:3469 +#: FlatCAMObj.py:3294 msgid "[success] Tool added in Tool Table." msgstr "[success] Unealta adăugată in Tabela de Unelte." -#: FlatCAMObj.py:3474 +#: FlatCAMObj.py:3299 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:3504 FlatCAMObj.py:3514 +#: FlatCAMObj.py:3329 FlatCAMObj.py:3339 msgid "[WARNING_NOTCL] Failed. Select a tool to copy." msgstr "[WARNING_NOTCL] Esuat. Selectează o unealtă pt copiere." -#: FlatCAMObj.py:3543 +#: FlatCAMObj.py:3368 msgid "[success] Tool was copied in Tool Table." msgstr "[success] Unealta a fost copiata in Tabela de Unelte." -#: FlatCAMObj.py:3576 +#: FlatCAMObj.py:3401 msgid "[success] Tool was edited in Tool Table." msgstr "[success] Unealta a fost editata in Tabela de Unelte." -#: FlatCAMObj.py:3607 FlatCAMObj.py:3617 +#: FlatCAMObj.py:3432 FlatCAMObj.py:3442 msgid "[WARNING_NOTCL] Failed. Select a tool to delete." msgstr "[WARNING_NOTCL] Esuat. Selectează o unealtă pentru ștergere." -#: FlatCAMObj.py:3641 +#: FlatCAMObj.py:3466 msgid "[success] Tool was deleted in Tool Table." msgstr "[success] Unealta a fost stearsa din Tabela de Unelte." -#: FlatCAMObj.py:4055 +#: FlatCAMObj.py:3880 #, python-format msgid "" "[WARNING_NOTCL] This Geometry can't be processed because it is %s geometry." @@ -2593,23 +1367,23 @@ msgstr "" "[WARNING_NOTCL] Acest obiect Geometrie nu poate fi procesar decoarece este " "Geometrie %s." -#: FlatCAMObj.py:4072 +#: FlatCAMObj.py:3897 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:4099 +#: FlatCAMObj.py:3924 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:4137 +#: FlatCAMObj.py:3962 #, python-format msgid "FlatCAMObj.FlatCAMGeometry.mtool_gen_cncjob() --> %s" msgstr "FlatCAMObj.FlatCAMGeometry.mtool_gen_cncjob() --> %s" -#: FlatCAMObj.py:4293 FlatCAMObj.py:4526 +#: FlatCAMObj.py:4118 FlatCAMObj.py:4351 msgid "" "[WARNING] Tool Offset is selected in Tool Table but no value is provided.\n" "Add a Tool Offset or change the Offset Type." @@ -2618,21 +1392,21 @@ msgstr "" "val. nu este oferita.\n" "Adaugă un ofset pt unealtă sau schimbă Tipul Ofset." -#: FlatCAMObj.py:4407 flatcamTools/ToolSolderPaste.py:1106 +#: FlatCAMObj.py:4232 flatcamTools/ToolSolderPaste.py:1106 #: flatcamTools/ToolSolderPaste.py:1161 msgid "[ERROR_NOTCL] Cancelled. Empty file, it has no geometry..." msgstr "[ERROR_NOTCL] Anulat. Fişier gol, nu are date geometrice." -#: FlatCAMObj.py:4769 FlatCAMObj.py:4779 camlib.py:3229 camlib.py:3238 +#: FlatCAMObj.py:4594 FlatCAMObj.py:4604 camlib.py:3410 camlib.py:3419 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:4817 +#: FlatCAMObj.py:4642 msgid "[success] Geometry Scale done." msgstr "[success] Scalare Geometrie executată." -#: FlatCAMObj.py:4834 camlib.py:3300 +#: FlatCAMObj.py:4659 camlib.py:3481 msgid "" "[ERROR_NOTCL] An (x,y) pair of values are needed. Probable you entered only " "one value in the Offset field." @@ -2640,29 +1414,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:4854 +#: FlatCAMObj.py:4679 msgid "[success] Geometry Offset done." msgstr "[success] Ofset Geometrie executat." -#: FlatCAMObj.py:5399 FlatCAMObj.py:5404 flatcamTools/ToolSolderPaste.py:1360 +#: FlatCAMObj.py:5224 FlatCAMObj.py:5229 flatcamTools/ToolSolderPaste.py:1360 msgid "Export Machine Code ..." msgstr "Exporta CNC Cod Masina ..." -#: FlatCAMObj.py:5410 flatcamTools/ToolSolderPaste.py:1363 +#: FlatCAMObj.py:5235 flatcamTools/ToolSolderPaste.py:1363 msgid "[WARNING_NOTCL] Export Machine Code cancelled ..." msgstr "[WARNING_NOTCL] Exportul codului masina CNC a fost anulat ..." -#: FlatCAMObj.py:5421 +#: FlatCAMObj.py:5246 #, python-format msgid "[success] Machine Code file saved to: %s" msgstr "[success] Fişierul cu cod CNC este salvat in: %s" -#: FlatCAMObj.py:5443 +#: FlatCAMObj.py:5268 #, python-format msgid "[ERROR]FlatCAMCNNJob.on_edit_code_click() -->%s" msgstr "[ERROR]FlatCAMCNNJob.on_edit_code_click() -->%s" -#: FlatCAMObj.py:5549 +#: FlatCAMObj.py:5385 #, python-format msgid "" "[WARNING_NOTCL] This CNCJob object can't be processed because it is a %s " @@ -2671,11 +1445,11 @@ msgstr "" "[WARNING_NOTCL] Acest obiect CNCJob nu poate fi procesar deoarece este un " "obiect CNCJob tip %s." -#: FlatCAMObj.py:5602 +#: FlatCAMObj.py:5438 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:5615 +#: FlatCAMObj.py:5451 msgid "" "[ERROR_NOTCL] Cancelled. The Toolchange Custom code is enabled but it's " "empty." @@ -2683,17 +1457,17 @@ msgstr "" "[ERROR_NOTCL] Anulat. Codul G-Code din Macro-ul Schimbare unealtă este " "activat dar nuc contine nimic." -#: FlatCAMObj.py:5622 +#: FlatCAMObj.py:5458 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:5637 flatcamTools/ToolSolderPaste.py:1389 +#: FlatCAMObj.py:5473 flatcamTools/ToolSolderPaste.py:1389 msgid "[WARNING_NOTCL] No such file or directory" msgstr "[WARNING_NOTCL] Nu exista un asemenea fişier sau director" -#: FlatCAMObj.py:5656 FlatCAMObj.py:5668 +#: FlatCAMObj.py:5492 FlatCAMObj.py:5504 msgid "" "[WARNING_NOTCL] The used postprocessor file has to have in it's name: " "'toolchange_custom'" @@ -2701,16 +1475,16 @@ msgstr "" "[WARNING_NOTCL] Postprocesorul folosit trebuie să aibă in numele sau: " "'toolchange_custom'" -#: FlatCAMObj.py:5674 +#: FlatCAMObj.py:5510 msgid "[ERROR] There is no postprocessor file." msgstr "[ERROR] Nu exista nici-un fişier postprocesor." -#: ObjectCollection.py:403 +#: ObjectCollection.py:416 #, python-brace-format msgid "Object renamed from {old} to {new}" msgstr "Obiectul este redenumit din {old} in {new}." -#: ObjectCollection.py:738 +#: ObjectCollection.py:751 #, python-format msgid "[ERROR] Cause of error: %s" msgstr "[ERROR] Motivul erorii: %s" @@ -2744,17 +1518,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:2647 camlib.py:2727 +#: camlib.py:2728 camlib.py:2832 #, python-format msgid "[WARNING] Coordinates missing, line ignored: %s" msgstr "[WARNING] Coordonatele lipsesc, linia este ignorata: %s" -#: camlib.py:2648 camlib.py:2728 +#: camlib.py:2729 camlib.py:2833 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:2696 +#: camlib.py:2787 #, python-format msgid "" "[ERROR] Region does not have enough points. File will be processed but there " @@ -2763,7 +1537,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:3051 +#: camlib.py:3231 #, python-format msgid "" "[ERROR]Gerber Parser ERROR.\n" @@ -2772,20 +1546,20 @@ msgstr "" "[ERROR] Eroare in parserul Gerber.\n" "%s:" -#: camlib.py:3267 +#: camlib.py:3448 msgid "[success] Gerber Scale done." msgstr "[success] Scalarea Gerber efectuata." -#: camlib.py:3324 +#: camlib.py:3505 msgid "[success] Gerber Offset done." msgstr "[success] Offsetare Gerber efectuata." -#: camlib.py:3699 +#: camlib.py:3887 #, python-format msgid "[ERROR_NOTCL] This is GCODE mark: %s" msgstr "[ERROR_NOTCL] Acesta este un marcaj Gerber: %s" -#: camlib.py:4229 +#: camlib.py:4431 #, python-brace-format msgid "" "[ERROR] Excellon Parser error.\n" @@ -2795,7 +1569,7 @@ msgstr "" "Parsare eșuata. Linia {l_nr}: {line}\n" "\n" -#: camlib.py:4306 +#: camlib.py:4508 msgid "" "[WARNING] Excellon.create_geometry() -> a drill location was skipped due of " "not having a tool associated.\n" @@ -2805,12 +1579,12 @@ msgstr "" "deoarece nu are o unealtă asociata.\n" "Verifică codul G-Code rezultat." -#: camlib.py:4848 +#: camlib.py:5050 #, python-format msgid "[ERROR] There is no such parameter: %s" msgstr "[ERROR] Nu exista un asemenea parametru: %s" -#: camlib.py:4918 +#: camlib.py:5120 msgid "" "[WARNING] The Cut Z parameter has positive value. It is the depth value to " "drill into material.\n" @@ -2823,7 +1597,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:4925 camlib.py:5398 camlib.py:5669 +#: camlib.py:5127 camlib.py:5600 camlib.py:5871 #, python-format msgid "" "[WARNING] The Cut Z parameter is zero. There will be no cut, skipping %s file" @@ -2831,15 +1605,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:5141 camlib.py:5236 camlib.py:5287 +#: camlib.py:5343 camlib.py:5438 camlib.py:5489 msgid "[ERROR_NOTCL] The loaded Excellon file has no drills ..." -msgstr "[ERROR_NOTCL] Fişierul Excellon incarcat nu are găuri ..." +msgstr "[ERROR_NOTCL] Fişierul Excellon incărcat nu are găuri ..." -#: camlib.py:5241 +#: camlib.py:5443 msgid "[ERROR_NOTCL] Wrong optimization type selected." msgstr "[ERROR_NOTCL] Un tip de optimizare incorrect a fost selectat." -#: camlib.py:5386 camlib.py:5657 +#: camlib.py:5588 camlib.py:5859 msgid "" "[ERROR_NOTCL] Cut_Z parameter is None or zero. Most likely a bad " "combinations of other parameters." @@ -2847,7 +1621,7 @@ msgstr "" "[ERROR_NOTCL] Parametrul >Z tăiere< este None sau zero. Cel mai probabil o " "combinaţie nefericita de parametri." -#: camlib.py:5391 camlib.py:5662 +#: camlib.py:5593 camlib.py:5864 msgid "" "[WARNING] The Cut Z parameter has positive value. It is the depth value to " "cut into material.\n" @@ -2860,11 +1634,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:5403 camlib.py:5674 +#: camlib.py:5605 camlib.py:5876 msgid "[ERROR_NOTCL] Travel Z parameter is None or zero." msgstr "[ERROR_NOTCL] Parametrul >Z deplasare< este None sau zero." -#: camlib.py:5407 camlib.py:5678 +#: camlib.py:5609 camlib.py:5880 msgid "" "[WARNING] The Travel Z parameter has negative value. It is the height value " "to travel between cuts.\n" @@ -2878,7 +1652,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:5414 camlib.py:5685 +#: camlib.py:5616 camlib.py:5887 #, python-format msgid "" "[WARNING] The Z Travel parameter is zero. This is dangerous, skipping %s file" @@ -2886,12 +1660,12 @@ msgstr "" "[WARNING] Parametrul >Z deplasare< este zero. Aceasta este periculos, prin " "urmare fişierul %s nu se procesează." -#: camlib.py:5544 +#: camlib.py:5746 #, python-format msgid "[ERROR]Expected a Geometry, got %s" msgstr "[ERROR] Se astepta o Geometrie, am primit in schimb %s" -#: camlib.py:5550 +#: camlib.py:5752 msgid "" "[ERROR_NOTCL] Trying to generate a CNC Job from a Geometry object without " "solid_geometry." @@ -2899,7 +1673,7 @@ msgstr "" "[ERROR_NOTCL] Se încearcă generarea unui CNC Job dintr-un obiect Geometrie " "fără atributul solid_geometry." -#: camlib.py:5589 +#: camlib.py:5791 msgid "" "[ERROR_NOTCL] The Tool Offset value is too negative to use for the " "current_geometry.\n" @@ -2909,11 +1683,1795 @@ msgstr "" "fi folosita. \n" "Mareste valoarea absoluta și încearcă din nou." -#: camlib.py:5811 +#: camlib.py:6013 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." +#: flatcamEditors/FlatCAMExcEditor.py:44 +msgid "[WARNING_NOTCL] To add a drill first select a tool" +msgstr "" +"[WARNING_NOTCL] Pentru a adăuga o operaţie de găurire mai intai selectează " +"un burghiu (unealtă)" + +#: flatcamEditors/FlatCAMExcEditor.py:53 flatcamEditors/FlatCAMExcEditor.py:143 +#: flatcamEditors/FlatCAMExcEditor.py:420 +#: flatcamEditors/FlatCAMExcEditor.py:445 +#: flatcamEditors/FlatCAMGrbEditor.py:223 +#: flatcamEditors/FlatCAMGrbEditor.py:604 +#: flatcamEditors/FlatCAMGrbEditor.py:628 +msgid "Click on target location ..." +msgstr "Click pe locatia tinta ..." + +#: flatcamEditors/FlatCAMExcEditor.py:93 +msgid "[success] Done. Drill added." +msgstr "[success] Executat. Operaţie de găurire adăugată." + +#: flatcamEditors/FlatCAMExcEditor.py:135 +msgid "[WARNING_NOTCL] To add an Drill Array first select a tool in Tool Table" +msgstr "" +"[WARNING_NOTCL] Pentru a adăuga o arie de operațiuni de găurire mai intai " +"selectează un burghiu (unealtă)" + +#: flatcamEditors/FlatCAMExcEditor.py:160 +msgid "Click on the Drill Circular Array Start position" +msgstr "Click pe punctul de Start al ariei de operațiuni de găurire" + +#: flatcamEditors/FlatCAMExcEditor.py:182 +#: flatcamEditors/FlatCAMGrbEditor.py:262 +msgid "" +"[ERROR_NOTCL] The value is not Float. Check for comma instead of dot " +"separator." +msgstr "" +"[ERROR_NOTCL] Valoarea nu este număr Real. Verifică să nu fi folosit virgula " +"in loc de punct ca și separator decimal." + +#: flatcamEditors/FlatCAMExcEditor.py:185 +#: flatcamEditors/FlatCAMGrbEditor.py:265 +msgid "[ERROR_NOTCL] The value is mistyped. Check the value." +msgstr "[ERROR_NOTCL] Valoarea este gresita. Verifică ce ai introdus." + +#: flatcamEditors/FlatCAMExcEditor.py:278 +msgid "[WARNING_NOTCL] Too many drills for the selected spacing angle." +msgstr "" +"[WARNING_NOTCL] Prea multe operațiuni de găurire pentru unghiul selectat." + +#: flatcamEditors/FlatCAMExcEditor.py:295 +msgid "[success] Done. Drill Array added." +msgstr "[success] Executat. Aria de operațiuni de găurire a fost adăugată." + +#: flatcamEditors/FlatCAMExcEditor.py:306 +msgid "Click on the Drill(s) to resize ..." +msgstr "" +"Click pe operațiunile de găurire care se doreste să fie redimensionate ..." + +#: flatcamEditors/FlatCAMExcEditor.py:326 +msgid "" +"[ERROR_NOTCL] Resize drill(s) failed. Please enter a diameter for resize." +msgstr "" +"[ERROR_NOTCL] Redimensionarea operațiunilor de găurire a eșuat. Adaugă o " +"valoare pentru dimetrul la care se face redimensionarea." + +#: flatcamEditors/FlatCAMExcEditor.py:396 +msgid "[success] Done. Drill Resize completed." +msgstr "[success] Executat. Redimensionare găurire terminata." + +#: flatcamEditors/FlatCAMExcEditor.py:399 +msgid "[WARNING_NOTCL] Cancelled. No drills selected for resize ..." +msgstr "" +"[WARNING_NOTCL] Anulat. Nimic nu este selectat pentruredimensionare ..." + +#: flatcamEditors/FlatCAMExcEditor.py:422 +#: flatcamEditors/FlatCAMGrbEditor.py:606 +msgid "Click on reference location ..." +msgstr "Click pe locatia de referinţă ..." + +#: flatcamEditors/FlatCAMExcEditor.py:477 +msgid "[success] Done. Drill(s) Move completed." +msgstr "[success] Executat. Operatiile de găurire au fost mutate." + +#: flatcamEditors/FlatCAMExcEditor.py:530 +msgid "[success] Done. Drill(s) copied." +msgstr "[success] Executat. Operatiile de găurire au fost copiate." + +#: flatcamEditors/FlatCAMExcEditor.py:712 +msgid "Excellon Editor" +msgstr "Editor Excellon" + +#: flatcamEditors/FlatCAMExcEditor.py:719 +#: flatcamEditors/FlatCAMGrbEditor.py:840 +msgid "Name:" +msgstr "Nume:" + +#: flatcamEditors/FlatCAMExcEditor.py:739 flatcamTools/ToolNonCopperClear.py:72 +#: flatcamTools/ToolPaint.py:69 flatcamTools/ToolSolderPaste.py:70 +msgid "Tools Table" +msgstr "Tabela Unelte" + +#: flatcamEditors/FlatCAMExcEditor.py:741 flatcamGUI/ObjectUI.py:538 +msgid "" +"Tools in this Excellon object\n" +"when are used for drilling." +msgstr "" +"Burghie (unelte) in acest obiect Excellon\n" +"când se face găurire." + +#: flatcamEditors/FlatCAMExcEditor.py:761 +msgid "Add/Delete Tool" +msgstr "Adaugă/Șterge Unealta" + +#: flatcamEditors/FlatCAMExcEditor.py:763 +msgid "" +"Add/Delete a tool to the tool list\n" +"for this Excellon object." +msgstr "" +"Adaugă/Șterge o unealtă la lista de unelte\n" +"pentru acest obiect Excellon." + +#: flatcamEditors/FlatCAMExcEditor.py:771 flatcamTools/ToolCutOut.py:77 +msgid "Tool Dia:" +msgstr "Dia. Unealta:" + +#: flatcamEditors/FlatCAMExcEditor.py:773 flatcamGUI/ObjectUI.py:975 +msgid "Diameter for the new tool" +msgstr "Diametru pentru noua unealtă (burghiu, freza)" + +#: flatcamEditors/FlatCAMExcEditor.py:782 +msgid "Add Tool" +msgstr "Adaugă Unealta" + +#: flatcamEditors/FlatCAMExcEditor.py:784 +msgid "" +"Add a new tool to the tool list\n" +"with the diameter specified above." +msgstr "" +"Adaugă o unealtă noua la lista de unelte\n" +"cu diametrul specificat deasupra." + +#: flatcamEditors/FlatCAMExcEditor.py:794 +msgid "Delete Tool" +msgstr "Șterge Unealta" + +#: flatcamEditors/FlatCAMExcEditor.py:796 +msgid "" +"Delete a tool in the tool list\n" +"by selecting a row in the tool table." +msgstr "" +"Șterge o unealtă in lista de unelte\n" +"prin selectarea unei linii in tabela de unelte." + +#: flatcamEditors/FlatCAMExcEditor.py:814 +msgid "Resize Drill(s)" +msgstr "Redimensionare operațiuni de găurire" + +#: flatcamEditors/FlatCAMExcEditor.py:816 +msgid "Resize a drill or a selection of drills." +msgstr "" +"Redimensionează o operaţie de găurire sau o selecţie de operațiuni de " +"găurire." + +#: flatcamEditors/FlatCAMExcEditor.py:823 +msgid "Resize Dia:" +msgstr "Redimensionare Dia:" + +#: flatcamEditors/FlatCAMExcEditor.py:825 +msgid "Diameter to resize to." +msgstr "Diametrul la care se face redimensionarea." + +#: flatcamEditors/FlatCAMExcEditor.py:833 +msgid "Resize" +msgstr "Redimensionează" + +#: flatcamEditors/FlatCAMExcEditor.py:835 +msgid "Resize drill(s)" +msgstr "Redimensionează op. de găurire." + +#: flatcamEditors/FlatCAMExcEditor.py:857 flatcamGUI/FlatCAMGUI.py:1542 +msgid "Add Drill Array" +msgstr "Adaugă o arie de op. găurire" + +#: flatcamEditors/FlatCAMExcEditor.py:859 +msgid "Add an array of drills (linear or circular array)" +msgstr "Adaugă o arie de operațiuni de găurire (arie lineara sau circulara)." + +#: flatcamEditors/FlatCAMExcEditor.py:865 +msgid "" +"Select the type of drills array to create.\n" +"It can be Linear X(Y) or Circular" +msgstr "" +"Selectează tipul de arii de operațiuni de găurire.\n" +"Poate fi Liniar X(Y) sau Circular." + +#: flatcamEditors/FlatCAMExcEditor.py:868 +#: flatcamEditors/FlatCAMGrbEditor.py:1077 +msgid "Linear" +msgstr "Liniar" + +#: flatcamEditors/FlatCAMExcEditor.py:869 +#: flatcamEditors/FlatCAMGrbEditor.py:1078 +msgid "Circular" +msgstr "Circular" + +#: flatcamEditors/FlatCAMExcEditor.py:876 +msgid "Nr of drills:" +msgstr "Nr. op. găurire" + +#: flatcamEditors/FlatCAMExcEditor.py:878 +msgid "Specify how many drills to be in the array." +msgstr "Specifica cate operațiuni de găurire să fie incluse in arie." + +#: flatcamEditors/FlatCAMExcEditor.py:895 +#: flatcamEditors/FlatCAMExcEditor.py:940 +#: flatcamEditors/FlatCAMGrbEditor.py:1104 +#: flatcamEditors/FlatCAMGrbEditor.py:1149 +msgid "Direction:" +msgstr "Direcţie:" + +#: flatcamEditors/FlatCAMExcEditor.py:897 +#: flatcamEditors/FlatCAMGrbEditor.py:1106 +msgid "" +"Direction on which the linear array is oriented:\n" +"- 'X' - horizontal axis \n" +"- 'Y' - vertical axis or \n" +"- 'Angle' - a custom angle for the array inclination" +msgstr "" +"Directia in care aria lineara este orientata:\n" +"- 'X' - pe axa orizontala \n" +"- 'Y' - pe axa verticala sau \n" +"- 'Unghi' - un unghi particular pentru inclinatia ariei" + +#: flatcamEditors/FlatCAMExcEditor.py:906 +#: flatcamEditors/FlatCAMGrbEditor.py:1115 +msgid "Angle" +msgstr "Unghi" + +#: flatcamEditors/FlatCAMExcEditor.py:910 +#: flatcamEditors/FlatCAMGrbEditor.py:1119 +msgid "Pitch:" +msgstr "Pas:" + +#: flatcamEditors/FlatCAMExcEditor.py:912 +#: flatcamEditors/FlatCAMGrbEditor.py:1121 +msgid "Pitch = Distance between elements of the array." +msgstr "Pas = Distanta între elementele ariei." + +#: flatcamEditors/FlatCAMExcEditor.py:919 +#: flatcamEditors/FlatCAMExcEditor.py:955 +#: flatcamEditors/FlatCAMGeoEditor.py:663 +#: flatcamEditors/FlatCAMGrbEditor.py:1128 +#: flatcamEditors/FlatCAMGrbEditor.py:1164 +#: flatcamEditors/FlatCAMGrbEditor.py:2822 flatcamTools/ToolTransform.py:68 +msgid "Angle:" +msgstr "Unghi:" + +#: flatcamEditors/FlatCAMExcEditor.py:921 +#: flatcamEditors/FlatCAMGrbEditor.py:1130 +msgid "" +"Angle at which the linear array is placed.\n" +"The precision is of max 2 decimals.\n" +"Min value is: -359.99 degrees.\n" +"Max value is: 360.00 degrees." +msgstr "" +"Unghiul global la care aria lineara este plasata.\n" +"Precizia este de max 2 zecimale.\n" +"Val minima este: -359.99 grade.\n" +"Val maxima este: 360.00 grade." + +#: flatcamEditors/FlatCAMExcEditor.py:942 +#: flatcamEditors/FlatCAMGrbEditor.py:1151 +msgid "" +"Direction for circular array.Can be CW = clockwise or CCW = counter " +"clockwise." +msgstr "" +"Directia pentru aria circulara. Poate fi CW = in sensul acelor de ceasornic " +"sau CCW = invers acelor de ceasornic" + +#: flatcamEditors/FlatCAMExcEditor.py:957 +#: flatcamEditors/FlatCAMGrbEditor.py:1166 +msgid "Angle at which each element in circular array is placed." +msgstr "" +"Unghiul la care fiecare element al ariei circulare este plasat fata de " +"originea ariei." + +#: flatcamEditors/FlatCAMExcEditor.py:1413 +msgid "" +"[WARNING_NOTCL] Tool already in the original or actual tool list.\n" +"Save and reedit Excellon if you need to add this tool. " +msgstr "" +"[WARNING_NOTCL] Unealta este deja in lista originala sau actuala de unelte.\n" +"Salvează și reeditează obiectul Excellon daca ai nevoie să adaugi aceasta " +"unealtă." + +#: flatcamEditors/FlatCAMExcEditor.py:1422 flatcamGUI/FlatCAMGUI.py:2888 +#, python-brace-format +msgid "[success] Added new tool with dia: {dia} {units}" +msgstr "[success] O noua unealtă este adăugată cu diametrul: {dia} {units}" + +#: flatcamEditors/FlatCAMExcEditor.py:1453 +#: flatcamEditors/FlatCAMGrbEditor.py:1638 +msgid "[WARNING_NOTCL] Select a tool in Tool Table" +msgstr "[WARNING_NOTCL] Selectează o unealtă in Tabela de Unelte" + +#: flatcamEditors/FlatCAMExcEditor.py:1486 +#, python-brace-format +msgid "[success] Deleted tool with dia: {del_dia} {units}" +msgstr "[success] Unealta stearsa cu diametrul: {del_dia} {units}" + +#: flatcamEditors/FlatCAMExcEditor.py:1924 +msgid "" +"[ERROR_NOTCL] There are no Tools definitions in the file. Aborting Excellon " +"creation." +msgstr "" +"[ERROR_NOTCL] Nu exista definitii de unelte in fişier. Se anulează crearea " +"de obiect Excellon." + +#: flatcamEditors/FlatCAMExcEditor.py:1933 +msgid "Creating Excellon." +msgstr "In curs de creere Excellon." + +#: flatcamEditors/FlatCAMExcEditor.py:1942 +msgid "[success] Excellon editing finished." +msgstr "[success] Editarea Excellon a fost terminata." + +#: flatcamEditors/FlatCAMExcEditor.py:1959 +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:2458 +msgid "[success] Done. Drill(s) deleted." +msgstr "[success] Executat. Operatiile de găurire șterse." + +#: flatcamEditors/FlatCAMExcEditor.py:2528 +#: flatcamEditors/FlatCAMGrbEditor.py:2619 +msgid "Click on the circular array Center position" +msgstr "Click pe punctul de Centru al ariei circulare." + +#: flatcamEditors/FlatCAMGeoEditor.py:77 flatcamEditors/FlatCAMGrbEditor.py:994 +msgid "Buffer distance:" +msgstr "Distanta pt bufer:" + +#: flatcamEditors/FlatCAMGeoEditor.py:78 flatcamEditors/FlatCAMGrbEditor.py:995 +msgid "Buffer corner:" +msgstr "Coltul pt bufer:" + +#: flatcamEditors/FlatCAMGeoEditor.py:80 +msgid "" +"There are 3 types of corners:\n" +" - 'Round': the corner is rounded for exterior buffer.\n" +" - 'Square:' the corner is met in a sharp angle for exterior buffer.\n" +" - 'Beveled:' the corner is a line that directly connects the features " +"meeting in the corner" +msgstr "" +"Sunt disponibile 3 tipuri de colțuri:\n" +" - 'Rotund': coltul este rotunjit in cazul buferului exterior.\n" +" - 'Patrat:' colțurile formează unghi de 90 grade pt buferul exterior\n" +" - 'Beveled:' coltul este inlocuit cu o linie care uneste capetele liniilor " +"care formează coltul" + +#: flatcamEditors/FlatCAMGeoEditor.py:86 +#: flatcamEditors/FlatCAMGrbEditor.py:1003 +msgid "Round" +msgstr "Rotund" + +#: flatcamEditors/FlatCAMGeoEditor.py:87 +#: flatcamEditors/FlatCAMGrbEditor.py:1004 +msgid "Square" +msgstr "Patrat" + +#: flatcamEditors/FlatCAMGeoEditor.py:88 +#: flatcamEditors/FlatCAMGrbEditor.py:1005 +msgid "Beveled" +msgstr "Beveled" + +#: flatcamEditors/FlatCAMGeoEditor.py:95 +msgid "Buffer Interior" +msgstr "Bufer interior" + +#: flatcamEditors/FlatCAMGeoEditor.py:97 +msgid "Buffer Exterior" +msgstr "Bufer Exterior" + +#: flatcamEditors/FlatCAMGeoEditor.py:103 +msgid "Full Buffer" +msgstr "Bufer complet" + +#: flatcamEditors/FlatCAMGeoEditor.py:124 +#: flatcamEditors/FlatCAMGeoEditor.py:2505 +msgid "Buffer Tool" +msgstr "Unealta Bufer" + +#: flatcamEditors/FlatCAMGeoEditor.py:135 +#: flatcamEditors/FlatCAMGeoEditor.py:152 +#: flatcamEditors/FlatCAMGeoEditor.py:169 +#: flatcamEditors/FlatCAMGeoEditor.py:2523 +#: flatcamEditors/FlatCAMGeoEditor.py:2549 +#: flatcamEditors/FlatCAMGeoEditor.py:2575 +#: flatcamEditors/FlatCAMGrbEditor.py:2662 +msgid "" +"[WARNING_NOTCL] Buffer distance value is missing or wrong format. Add it and " +"retry." +msgstr "" +"[WARNING_NOTCL] Valoarea distantei bufer lipseste sau este intr-un format " +"gresit. Adaugă din nou și reîncearcă." + +#: flatcamEditors/FlatCAMGeoEditor.py:340 +msgid "Text Tool" +msgstr "Unealta Text" + +#: flatcamEditors/FlatCAMGeoEditor.py:398 flatcamGUI/FlatCAMGUI.py:764 +msgid "Tool" +msgstr "Unealta" + +#: flatcamEditors/FlatCAMGeoEditor.py:429 flatcamGUI/FlatCAMGUI.py:3833 +#: flatcamGUI/FlatCAMGUI.py:5039 flatcamGUI/FlatCAMGUI.py:5315 +#: flatcamGUI/FlatCAMGUI.py:5455 flatcamGUI/ObjectUI.py:260 +msgid "Tool dia:" +msgstr "Dia unealtă:" + +#: flatcamEditors/FlatCAMGeoEditor.py:431 flatcamGUI/FlatCAMGUI.py:5457 +msgid "" +"Diameter of the tool to\n" +"be used in the operation." +msgstr "" +"Diametrul uneltei care este utilizata in operaţie. \n" +"Este și lăţimea de tăiere pentru uneltele cilindrice." + +#: flatcamEditors/FlatCAMGeoEditor.py:440 flatcamGUI/FlatCAMGUI.py:5221 +#: flatcamGUI/FlatCAMGUI.py:5466 flatcamTools/ToolNonCopperClear.py:165 +#: flatcamTools/ToolPaint.py:160 +msgid "Overlap Rate:" +msgstr "Rata suprapunere:" + +#: flatcamEditors/FlatCAMGeoEditor.py:442 flatcamTools/ToolPaint.py:162 +#, python-format +msgid "" +"How much (fraction) of the tool width to overlap each tool pass.\n" +"Example:\n" +"A value here of 0.25 means 25% from the tool diameter found above.\n" +"\n" +"Adjust the value starting with lower values\n" +"and increasing it if areas that should be painted are still \n" +"not painted.\n" +"Lower values = faster processing, faster execution on PCB.\n" +"Higher values = slow processing and slow execution on CNC\n" +"due of too many paths." +msgstr "" +"Cat de mult (fracţie) din diametrul uneltei să se suprapună la fiecare " +"trecere a uneltei.\n" +"Exemplu:\n" +"O valoare aici de 0.25 inseamna 25% din diametrul uneltei de mai sus.\n" +"\n" +"Ajustează valoarea incepand de la valori mici și pe urma creste daca ariile " +"care ar trebui\n" +" >pictate< inca nu sunt procesate.\n" +"Valori scazute = procesare rapida,execuţie rapida a PCB-ului.\n" +"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:458 flatcamGUI/FlatCAMGUI.py:5237 +#: flatcamGUI/FlatCAMGUI.py:5323 flatcamGUI/FlatCAMGUI.py:5476 +#: flatcamTools/ToolCutOut.py:86 flatcamTools/ToolNonCopperClear.py:181 +#: flatcamTools/ToolPaint.py:177 +msgid "Margin:" +msgstr "Margine:" + +#: flatcamEditors/FlatCAMGeoEditor.py:460 flatcamGUI/FlatCAMGUI.py:5478 +#: flatcamTools/ToolPaint.py:179 +msgid "" +"Distance by which to avoid\n" +"the edges of the polygon to\n" +"be painted." +msgstr "" +"Distanta fata de marginile\n" +"poligonului care trebuie\n" +"să fie >pictat<." + +#: flatcamEditors/FlatCAMGeoEditor.py:469 flatcamGUI/FlatCAMGUI.py:5246 +#: flatcamGUI/FlatCAMGUI.py:5487 flatcamTools/ToolNonCopperClear.py:190 +#: flatcamTools/ToolPaint.py:188 +msgid "Method:" +msgstr "Metoda:" + +#: flatcamEditors/FlatCAMGeoEditor.py:471 flatcamGUI/FlatCAMGUI.py:5489 +msgid "" +"Algorithm to paint the polygon:
    Standard: Fixed step inwards." +"
    Seed-based: Outwards from seed." +msgstr "" +"Algoritm pentru a picta poligonul
    Standard: Pas fix spre interior." +"
    Samanta: Spre exterior pornind de la un punct-samanta." + +#: flatcamEditors/FlatCAMGeoEditor.py:477 flatcamGUI/FlatCAMGUI.py:5255 +#: flatcamGUI/FlatCAMGUI.py:5495 +msgid "Standard" +msgstr "Standard" + +#: flatcamEditors/FlatCAMGeoEditor.py:478 flatcamGUI/FlatCAMGUI.py:5256 +#: flatcamGUI/FlatCAMGUI.py:5496 +msgid "Seed-based" +msgstr "Punct-samanta" + +#: flatcamEditors/FlatCAMGeoEditor.py:479 flatcamGUI/FlatCAMGUI.py:5257 +#: flatcamGUI/FlatCAMGUI.py:5497 +msgid "Straight lines" +msgstr "Linii drepte" + +#: flatcamEditors/FlatCAMGeoEditor.py:484 flatcamGUI/FlatCAMGUI.py:5262 +#: flatcamGUI/FlatCAMGUI.py:5502 flatcamTools/ToolNonCopperClear.py:206 +#: flatcamTools/ToolPaint.py:204 +msgid "Connect:" +msgstr "Conectează:" + +#: flatcamEditors/FlatCAMGeoEditor.py:486 flatcamGUI/FlatCAMGUI.py:5264 +#: flatcamGUI/FlatCAMGUI.py:5504 flatcamTools/ToolNonCopperClear.py:208 +#: flatcamTools/ToolPaint.py:206 +msgid "" +"Draw lines between resulting\n" +"segments to minimize tool lifts." +msgstr "" +"Desenează linii între segmentele\n" +"rezultate pentru a minimiza miscarile\n" +"de ridicare a uneltei." + +#: flatcamEditors/FlatCAMGeoEditor.py:493 flatcamGUI/FlatCAMGUI.py:5271 +#: flatcamGUI/FlatCAMGUI.py:5512 flatcamTools/ToolNonCopperClear.py:215 +#: flatcamTools/ToolPaint.py:213 +msgid "Contour:" +msgstr "Contur:" + +#: flatcamEditors/FlatCAMGeoEditor.py:495 flatcamGUI/FlatCAMGUI.py:5273 +#: flatcamGUI/FlatCAMGUI.py:5514 flatcamTools/ToolNonCopperClear.py:217 +#: flatcamTools/ToolPaint.py:215 +msgid "" +"Cut around the perimeter of the polygon\n" +"to trim rough edges." +msgstr "" +"Taie de-a lungul perimetrului poligonului\n" +"pentru a elimina bavurile." + +#: flatcamEditors/FlatCAMGeoEditor.py:507 +msgid "Paint" +msgstr "Pictează" + +#: flatcamEditors/FlatCAMGeoEditor.py:525 flatcamGUI/FlatCAMGUI.py:629 +#: flatcamGUI/FlatCAMGUI.py:1796 flatcamGUI/ObjectUI.py:1308 +#: flatcamTools/ToolPaint.py:340 +msgid "Paint Tool" +msgstr "Unealta Paint" + +#: flatcamEditors/FlatCAMGeoEditor.py:561 +msgid "[WARNING_NOTCL] Paint cancelled. No shape selected." +msgstr "[WARNING_NOTCL] Operaţie Paint anulata. Nici-o forma selectată." + +#: flatcamEditors/FlatCAMGeoEditor.py:572 flatcamTools/ToolCutOut.py:352 +#: flatcamTools/ToolCutOut.py:496 flatcamTools/ToolCutOut.py:616 +#: flatcamTools/ToolCutOut.py:721 flatcamTools/ToolDblSided.py:363 +msgid "" +"[WARNING_NOTCL] Tool diameter value is missing or wrong format. Add it and " +"retry." +msgstr "" +"[WARNING_NOTCL] Diametrul uneltei lipseste sau este intr-un format " +"incompatibil. Adaugă-l și reîncearcă." + +#: flatcamEditors/FlatCAMGeoEditor.py:583 +msgid "" +"[WARNING_NOTCL] Overlap value is missing or wrong format. Add it and retry." +msgstr "" +"[WARNING_NOTCL] Valoarea de suprapunere a uneltei lipseste sau este intr-un " +"format incompatibil. Adaugă-o și reîncearcă." + +#: flatcamEditors/FlatCAMGeoEditor.py:595 +msgid "" +"[WARNING_NOTCL] Margin distance value is missing or wrong format. Add it and " +"retry." +msgstr "" +"[WARNING_NOTCL] Valoarea de margine lipseste sau este intr-un format " +"incompatibil. Adaugă-o și reîncearcă." + +#: flatcamEditors/FlatCAMGeoEditor.py:604 +#: flatcamEditors/FlatCAMGeoEditor.py:2530 +#: flatcamEditors/FlatCAMGeoEditor.py:2556 +#: flatcamEditors/FlatCAMGeoEditor.py:2582 flatcamTools/ToolMeasurement.py:202 +#: flatcamTools/ToolNonCopperClear.py:812 flatcamTools/ToolProperties.py:104 +msgid "Tools" +msgstr "Unelte" + +#: flatcamEditors/FlatCAMGeoEditor.py:615 +#: flatcamEditors/FlatCAMGeoEditor.py:988 +#: flatcamEditors/FlatCAMGrbEditor.py:2774 +#: flatcamEditors/FlatCAMGrbEditor.py:3158 flatcamGUI/FlatCAMGUI.py:638 +#: flatcamGUI/FlatCAMGUI.py:1807 flatcamTools/ToolTransform.py:398 +msgid "Transform Tool" +msgstr "Unealta Transformare" + +#: flatcamEditors/FlatCAMGeoEditor.py:616 +#: flatcamEditors/FlatCAMGeoEditor.py:677 +#: flatcamEditors/FlatCAMGrbEditor.py:2775 +#: flatcamEditors/FlatCAMGrbEditor.py:2836 flatcamTools/ToolTransform.py:24 +#: flatcamTools/ToolTransform.py:82 +msgid "Rotate" +msgstr "Rotaţie" + +#: flatcamEditors/FlatCAMGeoEditor.py:617 +#: flatcamEditors/FlatCAMGrbEditor.py:2776 flatcamTools/ToolTransform.py:25 +msgid "Skew/Shear" +msgstr "Deformare" + +#: flatcamEditors/FlatCAMGeoEditor.py:618 +#: flatcamEditors/FlatCAMGrbEditor.py:1049 +#: flatcamEditors/FlatCAMGrbEditor.py:2777 flatcamGUI/FlatCAMGUI.py:696 +#: flatcamGUI/FlatCAMGUI.py:1868 flatcamGUI/ObjectUI.py:100 +#: flatcamTools/ToolTransform.py:26 +msgid "Scale" +msgstr "Scalare" + +#: flatcamEditors/FlatCAMGeoEditor.py:619 +#: flatcamEditors/FlatCAMGrbEditor.py:2778 flatcamTools/ToolTransform.py:27 +msgid "Mirror (Flip)" +msgstr "Oglindire" + +#: flatcamEditors/FlatCAMGeoEditor.py:620 +#: flatcamEditors/FlatCAMGrbEditor.py:2779 flatcamGUI/ObjectUI.py:127 +#: flatcamGUI/ObjectUI.py:888 flatcamGUI/ObjectUI.py:1446 +#: flatcamTools/ToolTransform.py:28 +msgid "Offset" +msgstr "Ofset" + +#: flatcamEditors/FlatCAMGeoEditor.py:631 +#: flatcamEditors/FlatCAMGrbEditor.py:2790 +#, python-format +msgid "Editor %s" +msgstr "Editor %s" + +#: flatcamEditors/FlatCAMGeoEditor.py:665 +#: flatcamEditors/FlatCAMGrbEditor.py:2824 flatcamTools/ToolTransform.py:70 +msgid "" +"Angle for Rotation action, in degrees.\n" +"Float number between -360 and 359.\n" +"Positive numbers for CW motion.\n" +"Negative numbers for CCW motion." +msgstr "" +"Unghiul pentru Rotaţie, in grade. Număr Real cu valori între -360 și 359.\n" +"Numerele pozitive inseamna o mișcare in sens ace ceasornic.\n" +"Numerele negative inseamna o mișcare in sens invers ace ceasornic." + +#: flatcamEditors/FlatCAMGeoEditor.py:679 +#: flatcamEditors/FlatCAMGrbEditor.py:2838 +msgid "" +"Rotate the selected shape(s).\n" +"The point of reference is the middle of\n" +"the bounding box for all selected shapes." +msgstr "" +"Roteste formele selectate.\n" +"Punctul de referinţă este mijlocul\n" +"formei înconjurătoare care cuprinde\n" +"toate formele selectate." + +#: flatcamEditors/FlatCAMGeoEditor.py:702 +#: flatcamEditors/FlatCAMGrbEditor.py:2861 flatcamTools/ToolTransform.py:107 +msgid "Angle X:" +msgstr "Unghi X:" + +#: flatcamEditors/FlatCAMGeoEditor.py:704 +#: flatcamEditors/FlatCAMGeoEditor.py:722 +#: flatcamEditors/FlatCAMGrbEditor.py:2863 +#: flatcamEditors/FlatCAMGrbEditor.py:2881 flatcamTools/ToolTransform.py:109 +#: flatcamTools/ToolTransform.py:127 +msgid "" +"Angle for Skew action, in degrees.\n" +"Float number between -360 and 359." +msgstr "" +"Valoarea unghiului de Deformare, in grade.\n" +"Ia valori Reale între -360 and 359 grade." + +#: flatcamEditors/FlatCAMGeoEditor.py:713 +#: flatcamEditors/FlatCAMGrbEditor.py:2872 flatcamTools/ToolTransform.py:118 +msgid "Skew X" +msgstr "Deformare X" + +#: flatcamEditors/FlatCAMGeoEditor.py:715 +#: flatcamEditors/FlatCAMGeoEditor.py:733 +#: flatcamEditors/FlatCAMGrbEditor.py:2874 +#: flatcamEditors/FlatCAMGrbEditor.py:2892 +msgid "" +"Skew/shear the selected shape(s).\n" +"The point of reference is the middle of\n" +"the bounding box for all selected shapes." +msgstr "" +"Deformează formele selectate.\n" +"Punctul de referinţă este mijlocul\n" +"formei înconjurătoare care cuprinde\n" +"toate formele selectate." + +#: flatcamEditors/FlatCAMGeoEditor.py:720 +#: flatcamEditors/FlatCAMGrbEditor.py:2879 flatcamTools/ToolTransform.py:125 +msgid "Angle Y:" +msgstr "Unghi Y:" + +#: flatcamEditors/FlatCAMGeoEditor.py:731 +#: flatcamEditors/FlatCAMGrbEditor.py:2890 flatcamTools/ToolTransform.py:136 +msgid "Skew Y" +msgstr "Deformare Y" + +#: flatcamEditors/FlatCAMGeoEditor.py:759 +#: flatcamEditors/FlatCAMGrbEditor.py:2918 flatcamTools/ToolTransform.py:164 +msgid "Factor X:" +msgstr "Factor X:" + +#: flatcamEditors/FlatCAMGeoEditor.py:761 +#: flatcamEditors/FlatCAMGrbEditor.py:2920 flatcamTools/ToolTransform.py:166 +msgid "Factor for Scale action over X axis." +msgstr "Factor pentru scalarea pe axa X" + +#: flatcamEditors/FlatCAMGeoEditor.py:769 +#: flatcamEditors/FlatCAMGrbEditor.py:2928 flatcamTools/ToolTransform.py:174 +msgid "Scale X" +msgstr "Scalează X" + +#: flatcamEditors/FlatCAMGeoEditor.py:771 +#: flatcamEditors/FlatCAMGeoEditor.py:788 +#: flatcamEditors/FlatCAMGrbEditor.py:2930 +#: flatcamEditors/FlatCAMGrbEditor.py:2947 +msgid "" +"Scale the selected shape(s).\n" +"The point of reference depends on \n" +"the Scale reference checkbox state." +msgstr "" +"Scalează formele selectate.\n" +"Punctul de referinţă depinde de \n" +"starea checkbox-ului >Referința scalare<." + +#: flatcamEditors/FlatCAMGeoEditor.py:776 +#: flatcamEditors/FlatCAMGrbEditor.py:2935 flatcamTools/ToolTransform.py:181 +msgid "Factor Y:" +msgstr "Factor Y:" + +#: flatcamEditors/FlatCAMGeoEditor.py:778 +#: flatcamEditors/FlatCAMGrbEditor.py:2937 flatcamTools/ToolTransform.py:183 +msgid "Factor for Scale action over Y axis." +msgstr "Factor pentru scalarea pe axa Y." + +#: flatcamEditors/FlatCAMGeoEditor.py:786 +#: flatcamEditors/FlatCAMGrbEditor.py:2945 flatcamTools/ToolTransform.py:191 +msgid "Scale Y" +msgstr "Scalează Y" + +#: flatcamEditors/FlatCAMGeoEditor.py:795 +#: flatcamEditors/FlatCAMGrbEditor.py:2954 flatcamGUI/FlatCAMGUI.py:5861 +#: flatcamTools/ToolTransform.py:200 +msgid "Link" +msgstr "Legatura" + +#: flatcamEditors/FlatCAMGeoEditor.py:797 +#: flatcamEditors/FlatCAMGrbEditor.py:2956 +msgid "" +"Scale the selected shape(s)\n" +"using the Scale Factor X for both axis." +msgstr "" +"Scalează formele selectate\n" +"folsoind factorul: Factor X pentru ambele axe." + +#: flatcamEditors/FlatCAMGeoEditor.py:803 +#: flatcamEditors/FlatCAMGrbEditor.py:2962 flatcamGUI/FlatCAMGUI.py:5869 +#: flatcamTools/ToolTransform.py:208 +msgid "Scale Reference" +msgstr "Referința scalare" + +#: flatcamEditors/FlatCAMGeoEditor.py:805 +#: flatcamEditors/FlatCAMGrbEditor.py:2964 +msgid "" +"Scale the selected shape(s)\n" +"using the origin reference when checked,\n" +"and the center of the biggest bounding box\n" +"of the selected shapes when unchecked." +msgstr "" +"Scalează formele selectate.\n" +"Punctul de referinţă este mijlocul\n" +"formei înconjurătoare care cuprinde\n" +"toate formele selectate când nu este\n" +"bifat și este originea când este bifat." + +#: flatcamEditors/FlatCAMGeoEditor.py:833 +#: flatcamEditors/FlatCAMGrbEditor.py:2993 flatcamTools/ToolTransform.py:238 +msgid "Value X:" +msgstr "Valoare X:" + +#: flatcamEditors/FlatCAMGeoEditor.py:835 +#: flatcamEditors/FlatCAMGrbEditor.py:2995 flatcamTools/ToolTransform.py:240 +msgid "Value for Offset action on X axis." +msgstr "Valoare pentru deplasarea pe axa X." + +#: flatcamEditors/FlatCAMGeoEditor.py:843 +#: flatcamEditors/FlatCAMGrbEditor.py:3003 flatcamTools/ToolTransform.py:248 +msgid "Offset X" +msgstr "Ofset pe X" + +#: flatcamEditors/FlatCAMGeoEditor.py:845 +#: flatcamEditors/FlatCAMGeoEditor.py:863 +#: flatcamEditors/FlatCAMGrbEditor.py:3005 +#: flatcamEditors/FlatCAMGrbEditor.py:3023 +msgid "" +"Offset the selected shape(s).\n" +"The point of reference is the middle of\n" +"the bounding box for all selected shapes.\n" +msgstr "" +"Deplasează formele selectate\n" +"Punctul de referinţă este mijlocul\n" +"formei înconjurătoare care cuprinde\n" +"toate formele selectate.\n" + +#: flatcamEditors/FlatCAMGeoEditor.py:851 +#: flatcamEditors/FlatCAMGrbEditor.py:3011 flatcamTools/ToolTransform.py:255 +msgid "Value Y:" +msgstr "Valoare Y:" + +#: flatcamEditors/FlatCAMGeoEditor.py:853 +#: flatcamEditors/FlatCAMGrbEditor.py:3013 flatcamTools/ToolTransform.py:257 +msgid "Value for Offset action on Y axis." +msgstr "Valoare pentru deplasarea pe axa Y." + +#: flatcamEditors/FlatCAMGeoEditor.py:861 +#: flatcamEditors/FlatCAMGrbEditor.py:3021 flatcamTools/ToolTransform.py:265 +msgid "Offset Y" +msgstr "Ofset pe Y" + +#: flatcamEditors/FlatCAMGeoEditor.py:892 +#: flatcamEditors/FlatCAMGrbEditor.py:3052 flatcamTools/ToolTransform.py:295 +msgid "Flip on X" +msgstr "Oglindește pe X" + +#: flatcamEditors/FlatCAMGeoEditor.py:894 +#: flatcamEditors/FlatCAMGeoEditor.py:902 +#: flatcamEditors/FlatCAMGrbEditor.py:3054 +#: flatcamEditors/FlatCAMGrbEditor.py:3062 +msgid "" +"Flip the selected shape(s) over the X axis.\n" +"Does not create a new shape." +msgstr "" +"Oglindește formele selectate peste axa X\n" +"Nu crează noi forme." + +#: flatcamEditors/FlatCAMGeoEditor.py:900 +#: flatcamEditors/FlatCAMGrbEditor.py:3060 flatcamTools/ToolTransform.py:303 +msgid "Flip on Y" +msgstr "Oglindește pe Y" + +#: flatcamEditors/FlatCAMGeoEditor.py:909 +#: flatcamEditors/FlatCAMGrbEditor.py:3069 flatcamTools/ToolTransform.py:312 +msgid "Ref Pt" +msgstr "Pt ref" + +#: flatcamEditors/FlatCAMGeoEditor.py:911 +#: flatcamEditors/FlatCAMGrbEditor.py:3071 +msgid "" +"Flip the selected shape(s)\n" +"around the point in Point Entry Field.\n" +"\n" +"The point coordinates can be captured by\n" +"left click on canvas together with pressing\n" +"SHIFT key. \n" +"Then click Add button to insert coordinates.\n" +"Or enter the coords in format (x, y) in the\n" +"Point Entry field and click Flip on X(Y)" +msgstr "" +"Oglindește formele selectate\n" +"in jurul punctului din câmpul >Punct<\n" +"\n" +"Coordonatele punctului pot fi obtinute\n" +"prin click pe canvas in timp ce se tine apasata\n" +"tasta SHIFT.\n" +"Apoi click pe butonul >Adaugă< pentru a insera\n" +"coordonatele.\n" +"Alternativ se pot introduce manual in formatul (x, y). \n" +"La final click pe >Oglindește pe X(Y)<." + +#: flatcamEditors/FlatCAMGeoEditor.py:923 +#: flatcamEditors/FlatCAMGrbEditor.py:3083 flatcamTools/ToolTransform.py:325 +msgid "Point:" +msgstr "Punct:" + +#: flatcamEditors/FlatCAMGeoEditor.py:925 +#: flatcamEditors/FlatCAMGrbEditor.py:3085 +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 "" +"Coordonatele in format (x, y) folosite pentru oglindire.\n" +"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:935 +#: flatcamEditors/FlatCAMGrbEditor.py:3095 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:478 +#: flatcamTools/ToolTransform.py:337 +msgid "Add" +msgstr "Adaugă" + +#: flatcamEditors/FlatCAMGeoEditor.py:937 +#: flatcamEditors/FlatCAMGrbEditor.py:3097 flatcamTools/ToolTransform.py:339 +msgid "" +"The point coordinates can be captured by\n" +"left click on canvas together with pressing\n" +"SHIFT key. Then click Add button to insert." +msgstr "" +"Coordonatele punctului se pot obtine\n" +"prin click pe canvas in timp ce se tine apasata\n" +"tasta SHIFT.\n" +"La final, apasa butonul >Adaugă< pt a le insera." + +#: flatcamEditors/FlatCAMGeoEditor.py:1052 +#: flatcamEditors/FlatCAMGrbEditor.py:3222 +msgid "[WARNING_NOTCL] Transformation cancelled. No shape selected." +msgstr "[WARNING_NOTCL] Transformare anulata. Nici-o forma nu este selectată." + +#: flatcamEditors/FlatCAMGeoEditor.py:1073 +#: flatcamEditors/FlatCAMGrbEditor.py:3242 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:1110 +#: flatcamEditors/FlatCAMGrbEditor.py:3279 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:1131 +#: flatcamEditors/FlatCAMGrbEditor.py:3300 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:1152 +#: flatcamEditors/FlatCAMGrbEditor.py:3321 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:1189 +#: flatcamEditors/FlatCAMGrbEditor.py:3358 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:1221 +#: flatcamEditors/FlatCAMGrbEditor.py:3390 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:1242 +#: flatcamEditors/FlatCAMGrbEditor.py:3411 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:1260 +#: flatcamEditors/FlatCAMGrbEditor.py:3429 +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:1263 +#: flatcamEditors/FlatCAMGrbEditor.py:3432 flatcamTools/ToolTransform.py:640 +msgid "Appying Rotate" +msgstr "Execuţie Rotaţie" + +#: flatcamEditors/FlatCAMGeoEditor.py:1291 +#: flatcamEditors/FlatCAMGrbEditor.py:3460 +msgid "[success] Done. Rotate completed." +msgstr "[success] Executat. Rotaţie finalizata." + +#: flatcamEditors/FlatCAMGeoEditor.py:1307 +#: flatcamEditors/FlatCAMGrbEditor.py:3476 +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:1310 +#: flatcamEditors/FlatCAMGrbEditor.py:3479 flatcamTools/ToolTransform.py:692 +msgid "Applying Flip" +msgstr "Execuţie Oglindire" + +#: flatcamEditors/FlatCAMGeoEditor.py:1340 +#: flatcamEditors/FlatCAMGrbEditor.py:3509 flatcamTools/ToolTransform.py:735 +msgid "[success] Flip on the Y axis done ..." +msgstr "Oglindirea pe axa X efectuata ..." + +#: flatcamEditors/FlatCAMGeoEditor.py:1343 +#: flatcamEditors/FlatCAMGrbEditor.py:3512 flatcamTools/ToolTransform.py:745 +msgid "[success] Flip on the X axis done ..." +msgstr "Oglindirea pe axa Y efectuata ..." + +#: flatcamEditors/FlatCAMGeoEditor.py:1362 +#: flatcamEditors/FlatCAMGrbEditor.py:3531 +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:1365 +#: flatcamEditors/FlatCAMGrbEditor.py:3534 flatcamTools/ToolTransform.py:762 +msgid "Applying Skew" +msgstr "Execuţie Deformare" + +#: flatcamEditors/FlatCAMGeoEditor.py:1390 +#: flatcamEditors/FlatCAMGrbEditor.py:3559 flatcamTools/ToolTransform.py:793 +#, python-format +msgid "[success] Skew on the %s axis done ..." +msgstr "[success] Deformarea pe axa %s executată ..." + +#: flatcamEditors/FlatCAMGeoEditor.py:1394 +#: flatcamEditors/FlatCAMGrbEditor.py:3563 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:1405 +#: flatcamEditors/FlatCAMGrbEditor.py:3574 +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:1408 +#: flatcamEditors/FlatCAMGrbEditor.py:3577 flatcamTools/ToolTransform.py:811 +msgid "Applying Scale" +msgstr "Execuţie Scalare" + +#: flatcamEditors/FlatCAMGeoEditor.py:1441 +#: flatcamEditors/FlatCAMGrbEditor.py:3610 flatcamTools/ToolTransform.py:849 +#, python-format +msgid "[success] Scale on the %s axis done ..." +msgstr "[success] Scalarea pe axa %s executată ..." + +#: flatcamEditors/FlatCAMGeoEditor.py:1444 +#: flatcamEditors/FlatCAMGrbEditor.py:3613 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:1453 +#: flatcamEditors/FlatCAMGrbEditor.py:3622 +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:1456 +#: flatcamEditors/FlatCAMGrbEditor.py:3625 flatcamTools/ToolTransform.py:864 +msgid "Applying Offset" +msgstr "Execuţie Ofset" + +#: flatcamEditors/FlatCAMGeoEditor.py:1480 +#: flatcamEditors/FlatCAMGrbEditor.py:3649 flatcamTools/ToolTransform.py:894 +#, python-format +msgid "[success] Offset on the %s axis done ..." +msgstr "[success] Deplasarea pe axa %s executată ..." + +#: flatcamEditors/FlatCAMGeoEditor.py:1484 +#: flatcamEditors/FlatCAMGrbEditor.py:3653 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:1488 +#: flatcamEditors/FlatCAMGrbEditor.py:3657 +msgid "Rotate ..." +msgstr "Rotaţie ..." + +#: flatcamEditors/FlatCAMGeoEditor.py:1489 +#: flatcamEditors/FlatCAMGeoEditor.py:1546 +#: flatcamEditors/FlatCAMGeoEditor.py:1563 +#: flatcamEditors/FlatCAMGrbEditor.py:3658 +#: flatcamEditors/FlatCAMGrbEditor.py:3715 +#: flatcamEditors/FlatCAMGrbEditor.py:3732 +msgid "Enter an Angle Value (degrees):" +msgstr "Introdu o valoare in grade pt Unghi:" + +#: flatcamEditors/FlatCAMGeoEditor.py:1498 +#: flatcamEditors/FlatCAMGrbEditor.py:3667 +msgid "[success] Geometry shape rotate done..." +msgstr "[success] Rotatia formei geometrice executată ..." + +#: flatcamEditors/FlatCAMGeoEditor.py:1503 +#: flatcamEditors/FlatCAMGrbEditor.py:3672 +msgid "[WARNING_NOTCL] Geometry shape rotate cancelled..." +msgstr "[WARNING_NOTCL] Rotatia formei geometrice anulata ..." + +#: flatcamEditors/FlatCAMGeoEditor.py:1509 +#: flatcamEditors/FlatCAMGrbEditor.py:3678 +msgid "Offset on X axis ..." +msgstr "Ofset pe axa X ..." + +#: flatcamEditors/FlatCAMGeoEditor.py:1510 +#: flatcamEditors/FlatCAMGeoEditor.py:1529 +#: flatcamEditors/FlatCAMGrbEditor.py:3679 +#: flatcamEditors/FlatCAMGrbEditor.py:3698 +#, python-format +msgid "Enter a distance Value (%s):" +msgstr "Introdu of valoare pt Distanta (%s):" + +#: flatcamEditors/FlatCAMGeoEditor.py:1519 +#: flatcamEditors/FlatCAMGrbEditor.py:3688 +msgid "[success] Geometry shape offset on X axis done..." +msgstr "[success] Deplasarea formei geometrice pe axa X executată ..." + +#: flatcamEditors/FlatCAMGeoEditor.py:1523 +#: flatcamEditors/FlatCAMGrbEditor.py:3692 +msgid "[WARNING_NOTCL] Geometry shape offset X cancelled..." +msgstr "[WARNING_NOTCL] Deplasarea formei geometrice pe axa X anulata ..." + +#: flatcamEditors/FlatCAMGeoEditor.py:1528 +#: flatcamEditors/FlatCAMGrbEditor.py:3697 +msgid "Offset on Y axis ..." +msgstr "Ofset pe axa Y ..." + +#: flatcamEditors/FlatCAMGeoEditor.py:1538 +#: flatcamEditors/FlatCAMGrbEditor.py:3707 +msgid "[success] Geometry shape offset on Y axis done..." +msgstr "[success] Deplasarea formei geometrice pe axa Y executată ..." + +#: flatcamEditors/FlatCAMGeoEditor.py:1542 +#: flatcamEditors/FlatCAMGrbEditor.py:3711 +msgid "[WARNING_NOTCL] Geometry shape offset Y cancelled..." +msgstr "[WARNING_NOTCL] Deplasarea formei geometrice pe axa Y anulata ..." + +#: flatcamEditors/FlatCAMGeoEditor.py:1545 +#: flatcamEditors/FlatCAMGrbEditor.py:3714 +msgid "Skew on X axis ..." +msgstr "Deformare pe axa X ..." + +#: flatcamEditors/FlatCAMGeoEditor.py:1555 +#: flatcamEditors/FlatCAMGrbEditor.py:3724 +msgid "[success] Geometry shape skew on X axis done..." +msgstr "[success] Deformarea formei geometrice pe axa X executată ..." + +#: flatcamEditors/FlatCAMGeoEditor.py:1559 +#: flatcamEditors/FlatCAMGrbEditor.py:3728 +msgid "[WARNING_NOTCL] Geometry shape skew X cancelled..." +msgstr "[WARNING_NOTCL] Deformarea formei geometrice pe axa X anulata ..." + +#: flatcamEditors/FlatCAMGeoEditor.py:1562 +#: flatcamEditors/FlatCAMGrbEditor.py:3731 +msgid "Skew on Y axis ..." +msgstr "Deformare pe axa Y ..." + +#: flatcamEditors/FlatCAMGeoEditor.py:1572 +#: flatcamEditors/FlatCAMGrbEditor.py:3741 +msgid "[success] Geometry shape skew on Y axis done..." +msgstr "[success] Deformarea formei geometrice pe axa Y executată ..." + +#: flatcamEditors/FlatCAMGeoEditor.py:1576 +#: flatcamEditors/FlatCAMGrbEditor.py:3745 +msgid "[WARNING_NOTCL] Geometry shape skew Y cancelled..." +msgstr "[success] Deformarea formei geometrice pe axa Y executată ..." + +#: flatcamEditors/FlatCAMGeoEditor.py:1934 +#: flatcamEditors/FlatCAMGeoEditor.py:1973 +msgid "Click on CENTER ..." +msgstr "Click in Centru ..." + +#: flatcamEditors/FlatCAMGeoEditor.py:1941 +msgid "Click on Circle perimeter point to complete ..." +msgstr "Click pe un punct aflat pe circumferinta Cercului pentru terminare ..." + +#: flatcamEditors/FlatCAMGeoEditor.py:1965 +msgid "[success] Done. Adding Circle completed." +msgstr "[success] Executat. Adaugarea unei forme Cerc terminata." + +#: flatcamEditors/FlatCAMGeoEditor.py:1992 +msgid "Click on Start arc point ..." +msgstr "Click pe punctul de Start al Arcului ..." + +#: flatcamEditors/FlatCAMGeoEditor.py:1996 +msgid "Click on End arc point to complete ..." +msgstr "Click pe punctul de End al Arcului pentru terminare ..." + +#: flatcamEditors/FlatCAMGeoEditor.py:2151 +msgid "[success] Done. Arc completed." +msgstr "[success] Executat. Adaugarea unei forme Arc terminata." + +#: flatcamEditors/FlatCAMGeoEditor.py:2163 +msgid "Click on 1st corner ..." +msgstr "Click pe primul colt ..." + +#: flatcamEditors/FlatCAMGeoEditor.py:2191 +msgid "[success] Done. Rectangle completed." +msgstr "[success] Executat. Rotaţie finalizata." + +#: flatcamEditors/FlatCAMGeoEditor.py:2203 +#: flatcamEditors/FlatCAMGrbEditor.py:452 +msgid "Click on 1st point ..." +msgstr "Click pe primul punct ..." + +#: flatcamEditors/FlatCAMGeoEditor.py:2210 +#: flatcamEditors/FlatCAMGrbEditor.py:459 +msgid "Click on next Point or click Right mouse button to complete ..." +msgstr "" +"Click pe punctul următor sau click buton dreapta al mousului pentru " +"terminare ..." + +#: flatcamEditors/FlatCAMGeoEditor.py:2233 +msgid "[success] Done. Polygon completed." +msgstr "[success] Executat. Adaugarea unei forme Poligon terminata." + +#: flatcamEditors/FlatCAMGeoEditor.py:2252 +#: flatcamEditors/FlatCAMGrbEditor.py:502 +msgid "[success] Done. Path completed." +msgstr "[success] Executata. Adaugarea unei forme tip Cale terminata." + +#: flatcamEditors/FlatCAMGeoEditor.py:2354 +#: flatcamEditors/FlatCAMGeoEditor.py:3442 +msgid "[WARNING_NOTCL] Move cancelled. No shape selected." +msgstr "[WARNING_NOTCL] Mutare anulata. Nici-o forma nu este selectată." + +#: flatcamEditors/FlatCAMGeoEditor.py:2358 +msgid "Click on reference point." +msgstr "Click pe punctul de referinţă." + +#: flatcamEditors/FlatCAMGeoEditor.py:2361 +msgid "Click on destination point." +msgstr "Click pe punctul de Destinaţie." + +#: flatcamEditors/FlatCAMGeoEditor.py:2392 +msgid "[success] Done. Geometry(s) Move completed." +msgstr "[success] Executat. Mutarea Geometriilor terminata." + +#: flatcamEditors/FlatCAMGeoEditor.py:2437 +msgid "[success] Done. Geometry(s) Copy completed." +msgstr "[success] Executat. Copierea Geometriilor terminata." + +#: flatcamEditors/FlatCAMGeoEditor.py:2449 +msgid "Click on the Destination point..." +msgstr "Click pe punctul de Destinaţie ..." + +#: flatcamEditors/FlatCAMGeoEditor.py:2463 +#, python-format +msgid "" +"[ERROR]Font not supported. Only Regular, Bold, Italic and BoldItalic are " +"supported. Error: %s" +msgstr "" +"[ERROR] Fontul nu este compatibil. Doar cele tip: Regular, Bold, Italic și " +"BoldItalic sunt acceptate. Eroarea:: %s" + +#: flatcamEditors/FlatCAMGeoEditor.py:2473 +msgid "[success] Done. Adding Text completed." +msgstr "[success] Executat. Adaugarea de Text terminata." + +#: flatcamEditors/FlatCAMGeoEditor.py:2501 +msgid "Create buffer geometry ..." +msgstr "Crează o geometrie de tipe Bufer ..." + +#: flatcamEditors/FlatCAMGeoEditor.py:2512 +#: flatcamEditors/FlatCAMGeoEditor.py:2538 +#: flatcamEditors/FlatCAMGeoEditor.py:2564 +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:2534 +#: flatcamEditors/FlatCAMGrbEditor.py:2698 +msgid "[success] Done. Buffer Tool completed." +msgstr "[success] Executat. Unealta Bufer terminat." + +#: flatcamEditors/FlatCAMGeoEditor.py:2560 +msgid "[success] Done. Buffer Int Tool completed." +msgstr "[success] Executat. Unealta Bufer Intern terminat." + +#: flatcamEditors/FlatCAMGeoEditor.py:2586 +msgid "[success] Done. Buffer Ext Tool completed." +msgstr "[success] Executat. Unealta Bufer Extern terminat." + +#: flatcamEditors/FlatCAMGeoEditor.py:2619 +msgid "Create Paint geometry ..." +msgstr "Crează o geometrie Paint ..." + +#: flatcamEditors/FlatCAMGeoEditor.py:2633 +#: flatcamEditors/FlatCAMGrbEditor.py:797 +msgid "Shape transformations ..." +msgstr "Transformări de forme geometrice ..." + +#: flatcamEditors/FlatCAMGeoEditor.py:3077 +#, 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:3316 +#: flatcamEditors/FlatCAMGrbEditor.py:2267 flatcamGUI/FlatCAMGUI.py:2320 +#: flatcamGUI/FlatCAMGUI.py:2332 +msgid "[success] Done." +msgstr "[success] Executat." + +#: flatcamEditors/FlatCAMGeoEditor.py:3449 +msgid "[WARNING_NOTCL] Copy cancelled. No shape selected." +msgstr "" +"[WARNING_NOTCL] Copiere anulata. Nici-o forma geometrică nu este selectată." + +#: flatcamEditors/FlatCAMGeoEditor.py:3456 flatcamGUI/FlatCAMGUI.py:2623 +#: flatcamGUI/FlatCAMGUI.py:2657 flatcamGUI/FlatCAMGUI.py:2675 +#: flatcamGUI/FlatCAMGUI.py:2813 flatcamGUI/FlatCAMGUI.py:2825 +#: flatcamGUI/FlatCAMGUI.py:2859 +msgid "Click on target point." +msgstr "Click pe punctul tinta." + +#: flatcamEditors/FlatCAMGeoEditor.py:3699 +msgid "" +"[WARNING_NOTCL] A selection of at least 2 geo items is required to do " +"Intersection." +msgstr "" +"[WARNING_NOTCL] Cel puțin o selecţie de doua forme geometrice este necesară " +"pentru a face o Intersecţie." + +#: flatcamEditors/FlatCAMGeoEditor.py:3737 +#: flatcamEditors/FlatCAMGeoEditor.py:3774 +#: flatcamEditors/FlatCAMGeoEditor.py:3850 +msgid "" +"[ERROR_NOTCL] Negative buffer value is not accepted. Use Buffer interior to " +"generate an 'inside' shape" +msgstr "" +"[ERROR_NOTCL] O valoare de bufer negativă nu se acceptă. Folosete Bufer " +"Interior pentru a genera o forma geo. interioara." + +#: flatcamEditors/FlatCAMGeoEditor.py:3745 +#: flatcamEditors/FlatCAMGeoEditor.py:3783 +#: flatcamEditors/FlatCAMGeoEditor.py:3858 +msgid "[WARNING_NOTCL] Nothing selected for buffering." +msgstr "" +"[WARNING_NOTCL] Nici-o forma geometrică nu este selectată pentru a face " +"Bufer." + +#: flatcamEditors/FlatCAMGeoEditor.py:3749 +#: flatcamEditors/FlatCAMGeoEditor.py:3787 +#: flatcamEditors/FlatCAMGeoEditor.py:3862 +msgid "[WARNING_NOTCL] Invalid distance for buffering." +msgstr "[WARNING_NOTCL] Distanta invalida pentru a face Bufer." + +#: flatcamEditors/FlatCAMGeoEditor.py:3759 +#: flatcamEditors/FlatCAMGeoEditor.py:3871 +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:3767 +msgid "[success] Full buffer geometry created." +msgstr "[success] Geometrie tip Bufer Complet creată." + +#: flatcamEditors/FlatCAMGeoEditor.py:3797 +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:3812 +msgid "[success] Interior buffer geometry created." +msgstr "[success] Geometrie Bufer interior creată." + +#: flatcamEditors/FlatCAMGeoEditor.py:3883 +msgid "[success] Exterior buffer geometry created." +msgstr "[success] Geometrie Bufer Exterior creată." + +#: flatcamEditors/FlatCAMGeoEditor.py:3947 +msgid "[WARNING_NOTCL] Nothing selected for painting." +msgstr "" +"[WARNING_NOTCL] Nici-o forma geometrică nu este selectată pentru Paint." + +#: flatcamEditors/FlatCAMGeoEditor.py:3953 +msgid "[WARNING] Invalid value for {}" +msgstr "[WARNING] Valoare invalida pentru {}" + +#: flatcamEditors/FlatCAMGeoEditor.py:3959 +msgid "" +"[ERROR_NOTCL] Could not do Paint. Overlap value has to be less than 1.00 " +"(100%)." +msgstr "" +"[ERROR_NOTCL] Nu se poate face Paint. Valoarea de suprapunere trebuie să fie " +"mai puțin de 1.00 (100%)." + +#: flatcamEditors/FlatCAMGeoEditor.py:4018 +#, python-format +msgid "" +"[ERROR] Could not do Paint. Try a different combination of parameters. Or a " +"different method of Paint\n" +"%s" +msgstr "" +"[ERROR] Nu se poate face Paint. Incearcă o combinaţie diferita de parametri. " +"Or o metoda diferita de Paint\n" +"%s" + +#: flatcamEditors/FlatCAMGeoEditor.py:4029 +msgid "[success] Paint done." +msgstr "[success] Paint executat." + +#: flatcamEditors/FlatCAMGrbEditor.py:58 flatcamEditors/FlatCAMGrbEditor.py:63 +msgid "Click to place ..." +msgstr "Click pt a plasa ..." + +#: flatcamEditors/FlatCAMGrbEditor.py:149 +#: flatcamEditors/FlatCAMGrbEditor.py:386 +msgid "" +"Incompatible aperture type. Select an aperture with type 'C', 'R' or 'O'." +msgstr "" +"Tip de apertură incompatibil. Selectează o apertură cu tipul 'C', 'R' sau " +"'O'." + +#: flatcamEditors/FlatCAMGrbEditor.py:161 +msgid "[success] Done. Adding Pad completed." +msgstr "[success] Executat. Adăugarea padului terminată." + +#: flatcamEditors/FlatCAMGrbEditor.py:215 +msgid "[WARNING_NOTCL] To add an Pad Array first select a tool in Tool Table" +msgstr "" +"[WARNING_NOTCL] Pentru a adăuga o arie de paduri mai intai selectează o " +"apertura (unealtă) in Tabela de Unelte" + +#: flatcamEditors/FlatCAMGrbEditor.py:240 +msgid "Click on the Pad Circular Array Start position" +msgstr "Click pe punctul de Start al ariei de paduri" + +#: flatcamEditors/FlatCAMGrbEditor.py:411 +msgid "[WARNING_NOTCL] Too many Pads for the selected spacing angle." +msgstr "[WARNING_NOTCL] Prea multe paduri pentru unghiul selectat." + +#: flatcamEditors/FlatCAMGrbEditor.py:433 +msgid "[success] Done. Pad Array added." +msgstr "[success] Executat. Aria de paduri a fost adăugată." + +#: flatcamEditors/FlatCAMGrbEditor.py:482 +msgid "[success] Done. Region completed." +msgstr "[success] Executat. Adăugarea unei Regiuni terminată." + +#: flatcamEditors/FlatCAMGrbEditor.py:527 +msgid "Scale the selected Gerber apertures ..." +msgstr "Șterge aperturile Gerber selectate ..." + +#: flatcamEditors/FlatCAMGrbEditor.py:564 +msgid "Buffer the selected apertures ..." +msgstr "Bufereaza aperturile selectate." + +#: flatcamEditors/FlatCAMGrbEditor.py:660 +msgid "[success] Done. Apertures Move completed." +msgstr "[success] Executat. Mutarea Aperturilor terminată." + +#: flatcamEditors/FlatCAMGrbEditor.py:710 +msgid "[success] Done. Apertures copied." +msgstr "[success] Executat. Aperturile au fost copiate." + +#: flatcamEditors/FlatCAMGrbEditor.py:833 flatcamGUI/FlatCAMGUI.py:1530 +msgid "Gerber Editor" +msgstr "Editor Gerber" + +#: flatcamEditors/FlatCAMGrbEditor.py:852 flatcamGUI/ObjectUI.py:192 +msgid "Apertures:" +msgstr "Aperturi:" + +#: flatcamEditors/FlatCAMGrbEditor.py:854 flatcamGUI/ObjectUI.py:194 +msgid "Apertures Table for the Gerber Object." +msgstr "Tabela de aperturi pt obiectul Gerber." + +#: flatcamEditors/FlatCAMGrbEditor.py:865 +#: flatcamEditors/FlatCAMGrbEditor.py:1970 flatcamGUI/ObjectUI.py:228 +msgid "Code" +msgstr "Cod" + +#: flatcamEditors/FlatCAMGrbEditor.py:865 +#: flatcamEditors/FlatCAMGrbEditor.py:1970 flatcamGUI/ObjectUI.py:228 +#: flatcamGUI/ObjectUI.py:888 flatcamGUI/ObjectUI.py:1446 +msgid "Type" +msgstr "Tip" + +#: flatcamEditors/FlatCAMGrbEditor.py:865 +#: flatcamEditors/FlatCAMGrbEditor.py:1970 flatcamGUI/ObjectUI.py:228 +msgid "Size" +msgstr "Dimens." + +#: flatcamEditors/FlatCAMGrbEditor.py:865 +#: flatcamEditors/FlatCAMGrbEditor.py:1970 flatcamGUI/ObjectUI.py:228 +msgid "Dim" +msgstr "Dim" + +#: flatcamEditors/FlatCAMGrbEditor.py:869 flatcamGUI/ObjectUI.py:232 +msgid "Index" +msgstr "Index" + +#: flatcamEditors/FlatCAMGrbEditor.py:871 flatcamGUI/ObjectUI.py:234 +msgid "Aperture Code" +msgstr "Cod" + +#: flatcamEditors/FlatCAMGrbEditor.py:873 flatcamGUI/ObjectUI.py:236 +msgid "Type of aperture: circular, rectangle, macros etc" +msgstr "" +"Tipul aperturilor:\n" +"- circular\n" +"- patrulater\n" +"- macro-uri\n" +"etc" + +#: flatcamEditors/FlatCAMGrbEditor.py:875 +#: flatcamEditors/FlatCAMGrbEditor.py:908 flatcamGUI/ObjectUI.py:238 +msgid "Aperture Size:" +msgstr "Dim. aper." + +#: flatcamEditors/FlatCAMGrbEditor.py:877 flatcamGUI/ObjectUI.py:240 +msgid "" +"Aperture Dimensions:\n" +" - (width, height) for R, O type.\n" +" - (dia, nVertices) for P type" +msgstr "" +"Dimensiunile aperturilor:\n" +"- (latime, inaltime) pt tipurile R, O.\n" +"- (diametru, nVertices) pt tipul P" + +#: flatcamEditors/FlatCAMGrbEditor.py:898 +msgid "Aperture Code:" +msgstr "Cod apertură" + +#: flatcamEditors/FlatCAMGrbEditor.py:900 +msgid "Code for the new aperture" +msgstr "Diametru pentru noua apertură" + +#: flatcamEditors/FlatCAMGrbEditor.py:910 +msgid "" +"Size for the new aperture.\n" +"If aperture type is 'R' or 'O' then\n" +"this value is automatically\n" +"calculated as:\n" +"sqrt(width**2 + height**2)" +msgstr "" +"Dimensiunea pt noua apertură.\n" +"Dacă tipul aperturii este 'R' sau 'O'\n" +"valoarea este calculată automat prin:\n" +"sqrt(lătime**2 + inăltime**2)" + +#: flatcamEditors/FlatCAMGrbEditor.py:922 +msgid "Aperture Type:" +msgstr "Tip aper." + +#: flatcamEditors/FlatCAMGrbEditor.py:924 +msgid "" +"Select the type of new aperture. Can be:\n" +"C = circular\n" +"R = rectangular\n" +"O = oblong" +msgstr "" +"Selectează noul tip de apertură. Poate fi:\n" +"C = circular\n" +"R = rectangular\n" +"O = oval" + +#: flatcamEditors/FlatCAMGrbEditor.py:935 +msgid "Aperture Dim:" +msgstr "Dim. aper." + +#: flatcamEditors/FlatCAMGrbEditor.py:937 +msgid "" +"Dimensions for the new aperture.\n" +"Active only for rectangular apertures (type R).\n" +"The format is (width, height)" +msgstr "" +"Dimensiunile pentru noua apertură.\n" +"Activă doar pentru aperturile rectangulare (tip 'R').\n" +"Formatul este (lătime, inăltime)" + +#: flatcamEditors/FlatCAMGrbEditor.py:946 +msgid "Add Aperture:" +msgstr "Adaugă aper." + +#: flatcamEditors/FlatCAMGrbEditor.py:948 +msgid "Add an aperture to the aperture list" +msgstr "Adaugă o apertură in lista de aperturi" + +#: flatcamEditors/FlatCAMGrbEditor.py:952 +#: flatcamEditors/FlatCAMGrbEditor.py:965 +msgid "Go" +msgstr "Fă!" + +#: flatcamEditors/FlatCAMGrbEditor.py:954 +msgid "Add a new aperture to the aperture list." +msgstr "Adaugă o nouă apertură in lista de aperturi." + +#: flatcamEditors/FlatCAMGrbEditor.py:958 +msgid "Del Aperture:" +msgstr "Șterge apertura:" + +#: flatcamEditors/FlatCAMGrbEditor.py:960 +msgid "" +"Delete a aperture in the aperture list.\n" +"It will delete also the associated geometry." +msgstr "" +"Sterge o apertură in lista de aperturi.\n" +"Va sterge si geometriile asociate." + +#: flatcamEditors/FlatCAMGrbEditor.py:967 +msgid "Delete a aperture in the aperture list" +msgstr "Șterge o apertură din lista de aperturi." + +#: flatcamEditors/FlatCAMGrbEditor.py:982 +msgid "Buffer Aperture:" +msgstr "Bufer pt apertură:" + +#: flatcamEditors/FlatCAMGrbEditor.py:984 +msgid "Buffer a aperture in the aperture list" +msgstr "Fă bufer pt o apertură din lista de aperturi" + +#: flatcamEditors/FlatCAMGrbEditor.py:997 +msgid "" +"There are 3 types of corners:\n" +" - 'Round': the corner is rounded.\n" +" - 'Square:' the corner is met in a sharp angle.\n" +" - 'Beveled:' the corner is a line that directly connects the features " +"meeting in the corner" +msgstr "" +"Sunt disponibile 3 tipuri de colțuri:\n" +" - 'Rotund': coltul este rotunjit.\n" +" - 'Patrat:' colțurile formează unghi de 90 grade.\n" +" - 'Beveled:' coltul este inlocuit cu o linie care uneste capetele liniilor " +"care formează coltul" + +#: flatcamEditors/FlatCAMGrbEditor.py:1012 flatcamGUI/FlatCAMGUI.py:695 +#: flatcamGUI/FlatCAMGUI.py:1867 +msgid "Buffer" +msgstr "Bufer" + +#: flatcamEditors/FlatCAMGrbEditor.py:1026 +msgid "Scale Aperture:" +msgstr "Scalează ap.:" + +#: flatcamEditors/FlatCAMGrbEditor.py:1028 +msgid "Scale a aperture in the aperture list" +msgstr "Scalează o apertură in lista de aperturi" + +#: flatcamEditors/FlatCAMGrbEditor.py:1036 +msgid "Scale factor:" +msgstr "Factor Scalare:" + +#: flatcamEditors/FlatCAMGrbEditor.py:1038 +msgid "" +"The factor by which to scale the selected aperture.\n" +"Values can be between 0.0000 and 999.9999" +msgstr "" +"Factorul cu care se va face scalarea aperturii selectate.\n" +"Poate lua valori intre: 0.000 si 999.9999" + +#: flatcamEditors/FlatCAMGrbEditor.py:1066 flatcamGUI/FlatCAMGUI.py:690 +#: flatcamGUI/FlatCAMGUI.py:1862 +msgid "Add Pad Array" +msgstr "Adaugă o arie de paduri" + +#: flatcamEditors/FlatCAMGrbEditor.py:1068 +msgid "Add an array of pads (linear or circular array)" +msgstr "Adaugă o arie de paduri (arie lineara sau circulara)." + +#: flatcamEditors/FlatCAMGrbEditor.py:1074 +msgid "" +"Select the type of pads array to create.\n" +"It can be Linear X(Y) or Circular" +msgstr "" +"Selectează tipul de arii de paduri.\n" +"Poate fi Liniar X(Y) sau Circular." + +#: flatcamEditors/FlatCAMGrbEditor.py:1085 +msgid "Nr of pads:" +msgstr "Nr. paduri:" + +#: flatcamEditors/FlatCAMGrbEditor.py:1087 +msgid "Specify how many pads to be in the array." +msgstr "Specifica cate paduri să fie incluse in arie." + +#: flatcamEditors/FlatCAMGrbEditor.py:1536 +#: flatcamEditors/FlatCAMGrbEditor.py:1540 +msgid "" +"[WARNING_NOTCL] Aperture code value is missing or wrong format. Add it and " +"retry." +msgstr "" +"[WARNING_NOTCL] Valoarea codului aperturii lipseste sau este in format " +"greșit. Adaugă din nou și reîncearcă." + +#: flatcamEditors/FlatCAMGrbEditor.py:1577 +msgid "" +"[WARNING_NOTCL] Aperture dimensions value is missing or wrong format. Add it " +"in format (width, height) and retry." +msgstr "" +"[WARNING_NOTCL] Dimensiunile aperturii lipsesc sau sunt intr-un format " +"greșit. Adaugă din nou și reîncearcă." + +#: flatcamEditors/FlatCAMGrbEditor.py:1589 +msgid "" +"[WARNING_NOTCL] Aperture size value is missing or wrong format. Add it and " +"retry." +msgstr "" +"[WARNING_NOTCL] Valoarea mărimii aperturii lipseste sau este in format " +"greșit. Adaugă din nou și reîncearcă." + +#: flatcamEditors/FlatCAMGrbEditor.py:1601 +msgid "[WARNING_NOTCL] Aperture already in the aperture table." +msgstr "[WARNING_NOTCL] Apertura este deja in lista de aperturi." + +#: flatcamEditors/FlatCAMGrbEditor.py:1608 +#, 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:1660 +#, python-brace-format +msgid "[success] Deleted aperture with code: {del_dia}" +msgstr "[success] Unealta cu diametrul: {del_dia} a fost stearsă" + +#: flatcamEditors/FlatCAMGrbEditor.py:1902 +#, python-format +msgid "Adding aperture: %s geo ..." +msgstr "Se adaugă apertura: %s geo ..." + +#: flatcamEditors/FlatCAMGrbEditor.py:2058 +msgid "" +"[ERROR_NOTCL] There are no Aperture definitions in the file. Aborting Gerber " +"creation." +msgstr "" +"[ERROR_NOTCL] Nu există definitii de aperturi in fişier. Se anulează crearea " +"de obiect Gerber." + +#: flatcamEditors/FlatCAMGrbEditor.py:2067 +msgid "Creating Gerber." +msgstr "Gerber in curs de creare." + +#: flatcamEditors/FlatCAMGrbEditor.py:2075 +msgid "[success] Gerber editing finished." +msgstr "[success] Editarea Gerber a fost terminată." + +#: flatcamEditors/FlatCAMGrbEditor.py:2092 +msgid "[WARNING_NOTCL] Cancelled. No aperture is selected" +msgstr "[WARNING_NOTCL] Anulat. Nici-o apertură nu este selectată." + +#: flatcamEditors/FlatCAMGrbEditor.py:2555 +msgid "[success] Done. Apertures deleted." +msgstr "[success] Executat. Aperturile au fost șterse." + +#: flatcamEditors/FlatCAMGrbEditor.py:2683 +msgid "" +"[WARNING_NOTCL] No aperture to buffer. Select at least one aperture and try " +"again." +msgstr "" +"[WARNING_NOTCL] Nici-o apertura sel. pt a face bufer. Selectează cel puțin o " +"apertura și încearcă din nou." + +#: flatcamEditors/FlatCAMGrbEditor.py:2712 +msgid "" +"[WARNING_NOTCL] Scale factor value is missing or wrong format. Add it and " +"retry." +msgstr "" +"[WARNING_NOTCL] Valoarea factorului de scalare lipseste sau este in format " +"gresit. Adaugă din nou și reîncearcă." + +#: flatcamEditors/FlatCAMGrbEditor.py:2730 +msgid "" +"[WARNING_NOTCL] No aperture to scale. Select at least one aperture and try " +"again." +msgstr "" +"[WARNING_NOTCL] Nici-o apertură sel. pt scalare. Selectează cel puțin o " +"apertură și încearcă din nou." + +#: flatcamEditors/FlatCAMGrbEditor.py:2746 +msgid "[success] Done. Scale Tool completed." +msgstr "[success] Executat. Unealta Scalare a terminat." + #: flatcamGUI/FlatCAMGUI.py:50 msgid "&File" msgstr "&Fişiere" @@ -2939,58 +3497,66 @@ msgid "Will create a new, empty Geometry Object." msgstr "Va crea un obiect nou de tip Geometrie, fără continut." #: flatcamGUI/FlatCAMGUI.py:69 +msgid "Gerber\tB" +msgstr "Gerber\tB" + +#: flatcamGUI/FlatCAMGUI.py:71 +msgid "Will create a new, empty Gerber Object." +msgstr "Va crea un obiect nou de tip Gerber, fără continut." + +#: flatcamGUI/FlatCAMGUI.py:73 msgid "Excellon\tL" msgstr "Excellon\tL" -#: flatcamGUI/FlatCAMGUI.py:71 +#: flatcamGUI/FlatCAMGUI.py:75 msgid "Will create a new, empty Excellon Object." msgstr "Va crea un obiect nou de tip Excellon, fără continut." -#: flatcamGUI/FlatCAMGUI.py:74 +#: flatcamGUI/FlatCAMGUI.py:78 msgid "Open" -msgstr "Incarca" +msgstr "Încarcă" -#: flatcamGUI/FlatCAMGUI.py:79 +#: flatcamGUI/FlatCAMGUI.py:83 msgid "Open &Gerber ...\tCTRL+G" -msgstr "Incarca &Gerber ...\tCTRL+G" +msgstr "Încarcă &Gerber ...\tCTRL+G" -#: flatcamGUI/FlatCAMGUI.py:86 +#: flatcamGUI/FlatCAMGUI.py:90 msgid "Open &Excellon ...\tCTRL+E" -msgstr "Incarca &Excellon ...\tCTRL+E" - -#: flatcamGUI/FlatCAMGUI.py:91 -msgid "Open G-&Code ..." -msgstr "Incarca G-&Code ..." +msgstr "Încarcă &Excellon ...\tCTRL+E" #: flatcamGUI/FlatCAMGUI.py:95 -msgid "Open &Project ..." -msgstr "Incarca &Project ..." +msgid "Open G-&Code ..." +msgstr "Încarcă G-&Code ..." -#: flatcamGUI/FlatCAMGUI.py:101 -msgid "Open Config ..." -msgstr "Incarca Config ..." +#: flatcamGUI/FlatCAMGUI.py:99 +msgid "Open &Project ..." +msgstr "Încarcă &Project ..." #: flatcamGUI/FlatCAMGUI.py:105 +msgid "Open Config ..." +msgstr "Încarcă Config ..." + +#: flatcamGUI/FlatCAMGUI.py:109 msgid "Recent files" msgstr "Fişierele Recente" -#: flatcamGUI/FlatCAMGUI.py:111 +#: flatcamGUI/FlatCAMGUI.py:115 msgid "Scripting" msgstr "Scripting" -#: flatcamGUI/FlatCAMGUI.py:114 +#: flatcamGUI/FlatCAMGUI.py:118 msgid "New Script ..." msgstr "Script nou ..." -#: flatcamGUI/FlatCAMGUI.py:116 +#: flatcamGUI/FlatCAMGUI.py:120 msgid "Open Script ..." -msgstr "Incarca &Script..." +msgstr "Încarcă &Script..." -#: flatcamGUI/FlatCAMGUI.py:118 +#: flatcamGUI/FlatCAMGUI.py:122 msgid "Run Script ...\tSHIFT+S" msgstr "Rulează Script ...\tSHIFT+S" -#: flatcamGUI/FlatCAMGUI.py:121 +#: flatcamGUI/FlatCAMGUI.py:125 msgid "" "Will run the opened Tcl Script thus\n" "enabling the automation of certain\n" @@ -3000,43 +3566,43 @@ msgstr "" "o automatizare a anumitor functii\n" "din FlatCAM." -#: flatcamGUI/FlatCAMGUI.py:134 +#: flatcamGUI/FlatCAMGUI.py:138 msgid "Import" msgstr "Import" -#: flatcamGUI/FlatCAMGUI.py:136 +#: flatcamGUI/FlatCAMGUI.py:140 msgid "&SVG as Geometry Object ..." msgstr "&SVG ca și obiect Geometrie ..." -#: flatcamGUI/FlatCAMGUI.py:139 +#: flatcamGUI/FlatCAMGUI.py:143 msgid "&SVG as Gerber Object ..." msgstr "&SVG ca și obiect Gerber ..." -#: flatcamGUI/FlatCAMGUI.py:144 +#: flatcamGUI/FlatCAMGUI.py:148 msgid "&DXF as Geometry Object ..." msgstr "&DXF ca și obiect Geometrie ..." -#: flatcamGUI/FlatCAMGUI.py:147 +#: flatcamGUI/FlatCAMGUI.py:151 msgid "&DXF as Gerber Object ..." msgstr "&DXF ca și obiect Gerber ..." -#: flatcamGUI/FlatCAMGUI.py:152 +#: flatcamGUI/FlatCAMGUI.py:156 msgid "Export" msgstr "Export" -#: flatcamGUI/FlatCAMGUI.py:155 +#: flatcamGUI/FlatCAMGUI.py:159 msgid "Export &SVG ..." msgstr "Exporta &SVG ..." -#: flatcamGUI/FlatCAMGUI.py:158 +#: flatcamGUI/FlatCAMGUI.py:162 msgid "Export DXF ..." msgstr "Exporta DXF ..." -#: flatcamGUI/FlatCAMGUI.py:163 +#: flatcamGUI/FlatCAMGUI.py:167 msgid "Export &PNG ..." msgstr "Exporta &PNG ..." -#: flatcamGUI/FlatCAMGUI.py:165 +#: flatcamGUI/FlatCAMGUI.py:169 msgid "" "Will export an image in PNG format,\n" "the saved image will contain the visual \n" @@ -3046,11 +3612,11 @@ msgstr "" "imagina salvata va contine elementele vizuale\n" "afisate in zona de afișare." -#: flatcamGUI/FlatCAMGUI.py:173 +#: flatcamGUI/FlatCAMGUI.py:177 msgid "Export &Excellon ..." msgstr "Exporta Excellon ..." -#: flatcamGUI/FlatCAMGUI.py:176 +#: flatcamGUI/FlatCAMGUI.py:180 msgid "" "Will export an Excellon Object as Excellon file,\n" "the coordinates format, the file units and zeros\n" @@ -3060,51 +3626,51 @@ msgstr "" "Formatul coordonatelor, unitatile de masura și tipul\n" "de zerouri se vor seta in Preferințe -> Export Excellon." -#: flatcamGUI/FlatCAMGUI.py:187 +#: flatcamGUI/FlatCAMGUI.py:191 msgid "Save &Defaults" msgstr "Salvează valori &Default" -#: flatcamGUI/FlatCAMGUI.py:193 flatcamGUI/FlatCAMGUI.py:475 +#: flatcamGUI/FlatCAMGUI.py:197 flatcamGUI/FlatCAMGUI.py:514 msgid "Save" msgstr "Salvează" -#: flatcamGUI/FlatCAMGUI.py:195 +#: flatcamGUI/FlatCAMGUI.py:199 msgid "&Save Project ..." msgstr "&Salvează Proiect ..." -#: flatcamGUI/FlatCAMGUI.py:200 +#: flatcamGUI/FlatCAMGUI.py:204 msgid "Save Project &As ...\tCTRL+S" msgstr "Salvează Proiect &ca ...\tCTRL+S" -#: flatcamGUI/FlatCAMGUI.py:204 +#: flatcamGUI/FlatCAMGUI.py:208 msgid "Save Project C&opy ..." msgstr "Salvează o C&opie Proiect..." -#: flatcamGUI/FlatCAMGUI.py:212 +#: flatcamGUI/FlatCAMGUI.py:216 msgid "E&xit" msgstr "Iesire" -#: flatcamGUI/FlatCAMGUI.py:218 +#: flatcamGUI/FlatCAMGUI.py:222 msgid "&Edit" msgstr "&Editare" -#: flatcamGUI/FlatCAMGUI.py:221 +#: flatcamGUI/FlatCAMGUI.py:225 msgid "Edit Object\tE" msgstr "Editare Obiect\tE" -#: flatcamGUI/FlatCAMGUI.py:222 -msgid "Save && Close Editor\tCTRL+S" -msgstr "Salvează && Inchide Editor\tCTRL+S" +#: flatcamGUI/FlatCAMGUI.py:226 +msgid "Close Editor\tCTRL+S" +msgstr "Salvează Editor\tCTRL+S" -#: flatcamGUI/FlatCAMGUI.py:230 +#: flatcamGUI/FlatCAMGUI.py:234 msgid "Conversion" msgstr "Conversii" -#: flatcamGUI/FlatCAMGUI.py:232 +#: flatcamGUI/FlatCAMGUI.py:236 msgid "&Join Geo/Gerber/Exc -> Geo" msgstr "&Fuzionează Geo/Gerber/Exc -> Geo" -#: flatcamGUI/FlatCAMGUI.py:234 +#: flatcamGUI/FlatCAMGUI.py:238 msgid "" "Merge a selection of objects, which can be of type:\n" "- Gerber\n" @@ -3118,29 +3684,29 @@ msgstr "" "- Geometrie\n" "intr-un nou obiect tip Geometrie >combo<." -#: flatcamGUI/FlatCAMGUI.py:241 +#: flatcamGUI/FlatCAMGUI.py:245 msgid "Join Excellon(s) -> Excellon" msgstr "Fuzionează Excellon(s) -> Excellon" -#: flatcamGUI/FlatCAMGUI.py:243 +#: flatcamGUI/FlatCAMGUI.py:247 msgid "Merge a selection of Excellon objects into a new combo Excellon object." msgstr "" "Fuzionează o selecţie de obiecte Excellon intr-un nou obiect Excellon >combo<" -#: flatcamGUI/FlatCAMGUI.py:246 +#: flatcamGUI/FlatCAMGUI.py:250 msgid "Join Gerber(s) -> Gerber" msgstr "Fuzionează Gerber(s) -> Gerber" -#: flatcamGUI/FlatCAMGUI.py:248 +#: flatcamGUI/FlatCAMGUI.py:252 msgid "Merge a selection of Gerber objects into a new combo Gerber object." msgstr "" "Fuzionează o selecţie de obiecte Gerber intr-un nou obiect Gerber >combo<" -#: flatcamGUI/FlatCAMGUI.py:253 +#: flatcamGUI/FlatCAMGUI.py:257 msgid "Convert Single to MultiGeo" msgstr "Converteste SingleGeo in MultiGeo" -#: flatcamGUI/FlatCAMGUI.py:255 +#: flatcamGUI/FlatCAMGUI.py:259 msgid "" "Will convert a Geometry object from single_geometry type\n" "to a multi_geometry type." @@ -3148,11 +3714,11 @@ msgstr "" "Va converti un obiect Geometrie din tipul simpla geometrie (SingleGeo)\n" "la tipul geometrie complexa (MultiGeo)." -#: flatcamGUI/FlatCAMGUI.py:259 +#: flatcamGUI/FlatCAMGUI.py:263 msgid "Convert Multi to SingleGeo" msgstr "Converteste MultiGeo in SingleGeo" -#: flatcamGUI/FlatCAMGUI.py:261 +#: flatcamGUI/FlatCAMGUI.py:265 msgid "" "Will convert a Geometry object from multi_geometry type\n" "to a single_geometry type." @@ -3160,492 +3726,556 @@ msgstr "" "Va converti un obiect Geometrie din tipul geometrie complexa (MultiGeo)\n" "la tipul geometrie simpla (SingleGeo)." -#: flatcamGUI/FlatCAMGUI.py:268 +#: flatcamGUI/FlatCAMGUI.py:272 msgid "&Copy Object\tCTRL+C" msgstr "&Copiaza Obiect\tCTRL+C" -#: flatcamGUI/FlatCAMGUI.py:270 +#: flatcamGUI/FlatCAMGUI.py:274 msgid "Copy as &Geom" msgstr "Copiaza ca &Geo" -#: flatcamGUI/FlatCAMGUI.py:273 +#: flatcamGUI/FlatCAMGUI.py:277 msgid "&Delete\tDEL" msgstr "&Șterge\tDEL" -#: flatcamGUI/FlatCAMGUI.py:277 +#: flatcamGUI/FlatCAMGUI.py:281 msgid "Se&t Origin\tO" msgstr "Se&tează Originea\tO" -#: flatcamGUI/FlatCAMGUI.py:278 +#: flatcamGUI/FlatCAMGUI.py:282 msgid "Jump to Location\tJ" msgstr "Sari la Locaţie\tJ" -#: flatcamGUI/FlatCAMGUI.py:283 +#: flatcamGUI/FlatCAMGUI.py:287 msgid "Toggle Units\tQ" msgstr "Comuta Unitati\tQ" -#: flatcamGUI/FlatCAMGUI.py:285 +#: flatcamGUI/FlatCAMGUI.py:289 msgid "&Select All\tCTRL+A" msgstr "&Selectează Tot\tCTRL+A" -#: flatcamGUI/FlatCAMGUI.py:289 +#: flatcamGUI/FlatCAMGUI.py:293 msgid "&Preferences\tSHIFT+P" msgstr "&Preferințe\tSHIFT+P" -#: flatcamGUI/FlatCAMGUI.py:292 +#: flatcamGUI/FlatCAMGUI.py:296 msgid "&Options" msgstr "&Opțiuni" -#: flatcamGUI/FlatCAMGUI.py:307 +#: flatcamGUI/FlatCAMGUI.py:311 msgid "&Rotate Selection\tSHIFT+(R)" msgstr "&Roteste Selectia\tSHIFT+(R)" -#: flatcamGUI/FlatCAMGUI.py:312 +#: flatcamGUI/FlatCAMGUI.py:316 msgid "&Skew on X axis\tSHIFT+X" msgstr "&Deformează pe axa X\tSHIFT+X" -#: flatcamGUI/FlatCAMGUI.py:314 +#: flatcamGUI/FlatCAMGUI.py:318 msgid "S&kew on Y axis\tSHIFT+Y" msgstr "Deformează pe axa Y\tSHIFT+Y" -#: flatcamGUI/FlatCAMGUI.py:319 +#: flatcamGUI/FlatCAMGUI.py:323 msgid "Flip on &X axis\tX" msgstr "Oglindește pe axa &X\tX" -#: flatcamGUI/FlatCAMGUI.py:321 +#: flatcamGUI/FlatCAMGUI.py:325 msgid "Flip on &Y axis\tY" msgstr "Oglindește pe axa &Y\tY" -#: flatcamGUI/FlatCAMGUI.py:326 +#: flatcamGUI/FlatCAMGUI.py:330 msgid "View source\tALT+S" msgstr "Vezi sursa\tALT+S" -#: flatcamGUI/FlatCAMGUI.py:331 +#: flatcamGUI/FlatCAMGUI.py:335 msgid "&View" msgstr "&Vizualizare" -#: flatcamGUI/FlatCAMGUI.py:332 +#: flatcamGUI/FlatCAMGUI.py:336 msgid "Enable all plots\tALT+1" msgstr "Activează toate afisarile\tALT+1" -#: flatcamGUI/FlatCAMGUI.py:334 +#: flatcamGUI/FlatCAMGUI.py:338 msgid "Disable all plots\tALT+2" msgstr "Dezactivează toate afisarile\tALT+2" -#: flatcamGUI/FlatCAMGUI.py:336 +#: flatcamGUI/FlatCAMGUI.py:340 msgid "Disable non-selected\tALT+3" msgstr "Dezactivează non-selectate\tALT+3" -#: flatcamGUI/FlatCAMGUI.py:339 +#: flatcamGUI/FlatCAMGUI.py:343 msgid "&Zoom Fit\tV" msgstr "&Mareste și potriveste\tV" -#: flatcamGUI/FlatCAMGUI.py:340 +#: flatcamGUI/FlatCAMGUI.py:344 msgid "&Zoom In\t-" msgstr "&Mareste\t-" -#: flatcamGUI/FlatCAMGUI.py:341 +#: flatcamGUI/FlatCAMGUI.py:345 msgid "&Zoom Out\t=" msgstr "&Micsorează\t=" -#: flatcamGUI/FlatCAMGUI.py:345 +#: flatcamGUI/FlatCAMGUI.py:349 msgid "Toggle Code Editor\tCTRL+E" msgstr "Comuta Editorul de cod\tCTRL+E" -#: flatcamGUI/FlatCAMGUI.py:348 +#: flatcamGUI/FlatCAMGUI.py:352 msgid "&Toggle FullScreen\tALT+F10" msgstr "Comuta FullScreen\tALT+F10" -#: flatcamGUI/FlatCAMGUI.py:350 +#: flatcamGUI/FlatCAMGUI.py:354 msgid "&Toggle Plot Area\tCTRL+F10" msgstr "Comuta Aria de Afișare\tCTRL+F10" -#: flatcamGUI/FlatCAMGUI.py:352 +#: flatcamGUI/FlatCAMGUI.py:356 msgid "&Toggle Project/Sel/Tool\t`" msgstr "Comuta Proiect/Sel/Unealta\t`" -#: flatcamGUI/FlatCAMGUI.py:355 +#: flatcamGUI/FlatCAMGUI.py:359 msgid "&Toggle Grid Snap\tG" msgstr "Comuta Grid\tG" -#: flatcamGUI/FlatCAMGUI.py:357 +#: flatcamGUI/FlatCAMGUI.py:361 msgid "&Toggle Axis\tSHIFT+G" msgstr "Comuta Axe\tSHIFT+G" -#: flatcamGUI/FlatCAMGUI.py:360 +#: flatcamGUI/FlatCAMGUI.py:364 msgid "Toggle Workspace\tSHIFT+W" msgstr "Comuta Suprafata de lucru\tSHIFT+W" -#: flatcamGUI/FlatCAMGUI.py:364 +#: flatcamGUI/FlatCAMGUI.py:368 msgid "&Tool" msgstr "Unelte" -#: flatcamGUI/FlatCAMGUI.py:366 +#: flatcamGUI/FlatCAMGUI.py:370 msgid "&Command Line\tS" msgstr "&Linie de comanda\tS" -#: flatcamGUI/FlatCAMGUI.py:369 +#: flatcamGUI/FlatCAMGUI.py:373 msgid "&Help" msgstr "Ajutor" -#: flatcamGUI/FlatCAMGUI.py:370 +#: flatcamGUI/FlatCAMGUI.py:374 msgid "Help\tF1" msgstr "Ajutor\tF1" -#: flatcamGUI/FlatCAMGUI.py:371 +#: flatcamGUI/FlatCAMGUI.py:375 msgid "FlatCAM.org" msgstr "FlatCAM.org" -#: flatcamGUI/FlatCAMGUI.py:374 +#: flatcamGUI/FlatCAMGUI.py:378 msgid "Shortcuts List\tF3" msgstr "Lista shortcut-uri\tF3" -#: flatcamGUI/FlatCAMGUI.py:375 +#: flatcamGUI/FlatCAMGUI.py:379 msgid "YouTube Channel\tF4" msgstr "YouTube \tF4" -#: flatcamGUI/FlatCAMGUI.py:377 +#: flatcamGUI/FlatCAMGUI.py:381 msgid "About" msgstr "Despre" -#: flatcamGUI/FlatCAMGUI.py:388 +#: flatcamGUI/FlatCAMGUI.py:392 msgid "Add Circle\tO" msgstr "Adaugă Cerc\tO" -#: flatcamGUI/FlatCAMGUI.py:390 +#: flatcamGUI/FlatCAMGUI.py:394 msgid "Add Arc\tA" msgstr "Adaugă Arc\tA" -#: flatcamGUI/FlatCAMGUI.py:393 +#: flatcamGUI/FlatCAMGUI.py:397 msgid "Add Rectangle\tR" msgstr "Adaugă Patrulater\tR" -#: flatcamGUI/FlatCAMGUI.py:396 +#: flatcamGUI/FlatCAMGUI.py:400 msgid "Add Polygon\tN" msgstr "Adaugă Poligon\tN" -#: flatcamGUI/FlatCAMGUI.py:398 +#: flatcamGUI/FlatCAMGUI.py:402 msgid "Add Path\tP" msgstr "Adaugă Cale\tP" -#: flatcamGUI/FlatCAMGUI.py:400 +#: flatcamGUI/FlatCAMGUI.py:404 msgid "Add Text\tT" msgstr "Adaugă Text\tT" -#: flatcamGUI/FlatCAMGUI.py:403 +#: flatcamGUI/FlatCAMGUI.py:407 msgid "Polygon Union\tU" msgstr "Uniune Poligoane\tU" -#: flatcamGUI/FlatCAMGUI.py:405 +#: flatcamGUI/FlatCAMGUI.py:409 msgid "Polygon Intersection\tE" msgstr "Intersecţie Poligoane\tE" -#: flatcamGUI/FlatCAMGUI.py:407 +#: flatcamGUI/FlatCAMGUI.py:411 msgid "Polygon Subtraction\tS" msgstr "Substracţie Poligoane\tS" -#: flatcamGUI/FlatCAMGUI.py:411 +#: flatcamGUI/FlatCAMGUI.py:415 msgid "Cut Path\tX" msgstr "Tăiere Cale\tX" -#: flatcamGUI/FlatCAMGUI.py:413 +#: flatcamGUI/FlatCAMGUI.py:417 msgid "Copy Geom\tC" msgstr "Copiaza Geo\tC" -#: flatcamGUI/FlatCAMGUI.py:415 +#: flatcamGUI/FlatCAMGUI.py:419 msgid "Delete Shape\tDEL" msgstr "Șterge forma Geo.\tDEL" -#: flatcamGUI/FlatCAMGUI.py:418 +#: flatcamGUI/FlatCAMGUI.py:422 flatcamGUI/FlatCAMGUI.py:489 msgid "Move\tM" msgstr "Muta\tM" -#: flatcamGUI/FlatCAMGUI.py:420 +#: flatcamGUI/FlatCAMGUI.py:424 msgid "Buffer Tool\tB" msgstr "Unealta Bufer\tB" -#: flatcamGUI/FlatCAMGUI.py:423 +#: flatcamGUI/FlatCAMGUI.py:427 msgid "Paint Tool\tI" msgstr "Unealta Paint\t" -#: flatcamGUI/FlatCAMGUI.py:426 +#: flatcamGUI/FlatCAMGUI.py:430 msgid "Transform Tool\tALT+R" msgstr "Unealta Transformare\tALT+R" -#: flatcamGUI/FlatCAMGUI.py:430 +#: flatcamGUI/FlatCAMGUI.py:434 msgid "Toggle Corner Snap\tK" msgstr "Comuta lipire colt\tK" -#: flatcamGUI/FlatCAMGUI.py:433 +#: flatcamGUI/FlatCAMGUI.py:437 msgid ">Excellon Editor<" msgstr ">Editor Excellon<" -#: flatcamGUI/FlatCAMGUI.py:437 +#: flatcamGUI/FlatCAMGUI.py:441 msgid "Add Drill Array\tA" msgstr "Adaugă Arie Găuriri\tA" -#: flatcamGUI/FlatCAMGUI.py:439 +#: flatcamGUI/FlatCAMGUI.py:443 msgid "Add Drill\tD" msgstr "Adaugă Găurire\tD" -#: flatcamGUI/FlatCAMGUI.py:443 +#: flatcamGUI/FlatCAMGUI.py:447 msgid "Resize Drill(S)\tR" msgstr "Redimens. Găuriri\tR" -#: flatcamGUI/FlatCAMGUI.py:445 +#: flatcamGUI/FlatCAMGUI.py:449 flatcamGUI/FlatCAMGUI.py:482 msgid "Copy\tC" msgstr "Copiaza\tC" -#: flatcamGUI/FlatCAMGUI.py:447 +#: flatcamGUI/FlatCAMGUI.py:451 flatcamGUI/FlatCAMGUI.py:484 msgid "Delete\tDEL" msgstr "Șterge\tDEL" -#: flatcamGUI/FlatCAMGUI.py:452 +#: flatcamGUI/FlatCAMGUI.py:456 msgid "Move Drill(s)\tM" msgstr "Muta Găuriri\tM" +#: flatcamGUI/FlatCAMGUI.py:460 +msgid ">Gerber Editor<" +msgstr ">Editor Gerber<" + +#: flatcamGUI/FlatCAMGUI.py:464 +msgid "Add Pad\tP" +msgstr "Adaugă Pad\tP" + #: flatcamGUI/FlatCAMGUI.py:466 +msgid "Add Pad Array\tA" +msgstr "Adaugă Arie paduri\tA" + +#: flatcamGUI/FlatCAMGUI.py:468 +msgid "Add Track\tT" +msgstr "Adaugă Traseu\tA" + +#: flatcamGUI/FlatCAMGUI.py:470 +msgid "Add Region\tN" +msgstr "Adaugă Regiune\tN" + +#: flatcamGUI/FlatCAMGUI.py:474 +msgid "Buffer\tB" +msgstr "Bufer\tB" + +#: flatcamGUI/FlatCAMGUI.py:476 +msgid "Scale\tS" +msgstr "Scalare\tS" + +#: flatcamGUI/FlatCAMGUI.py:478 +msgid "Transform\tALT+R" +msgstr "Unealta Transformare\tALT+R" + +#: flatcamGUI/FlatCAMGUI.py:505 msgid "Enable Plot" msgstr "Activează Afișare" -#: flatcamGUI/FlatCAMGUI.py:467 +#: flatcamGUI/FlatCAMGUI.py:506 msgid "Disable Plot" msgstr "Dezactivează Afișare" -#: flatcamGUI/FlatCAMGUI.py:469 +#: flatcamGUI/FlatCAMGUI.py:508 msgid "Generate CNC" msgstr "Generează CNC" -#: flatcamGUI/FlatCAMGUI.py:470 +#: flatcamGUI/FlatCAMGUI.py:509 msgid "View Source" msgstr "Vizualiz. Sursa" -#: flatcamGUI/FlatCAMGUI.py:472 flatcamGUI/FlatCAMGUI.py:1400 +#: flatcamGUI/FlatCAMGUI.py:511 flatcamGUI/FlatCAMGUI.py:1548 msgid "Edit" msgstr "Editează" -#: flatcamGUI/FlatCAMGUI.py:478 flatcamGUI/FlatCAMGUI.py:1406 +#: flatcamGUI/FlatCAMGUI.py:517 flatcamGUI/FlatCAMGUI.py:1554 #: flatcamTools/ToolProperties.py:25 msgid "Properties" msgstr "Proprietati" -#: flatcamGUI/FlatCAMGUI.py:507 +#: flatcamGUI/FlatCAMGUI.py:546 msgid "File Toolbar" msgstr "Toolbar Fişiere" -#: flatcamGUI/FlatCAMGUI.py:511 +#: flatcamGUI/FlatCAMGUI.py:550 msgid "Edit Toolbar" msgstr "Toolbar Editare" -#: flatcamGUI/FlatCAMGUI.py:515 +#: flatcamGUI/FlatCAMGUI.py:554 msgid "View Toolbar" msgstr "Toolbar Vizualizare" -#: flatcamGUI/FlatCAMGUI.py:519 +#: flatcamGUI/FlatCAMGUI.py:558 msgid "Shell Toolbar" msgstr "Toolbar Linie de comanda" -#: flatcamGUI/FlatCAMGUI.py:523 +#: flatcamGUI/FlatCAMGUI.py:562 msgid "Tools Toolbar" msgstr "Toolbar Unelte" -#: flatcamGUI/FlatCAMGUI.py:527 +#: flatcamGUI/FlatCAMGUI.py:566 msgid "Excellon Editor Toolbar" msgstr "Toolbar Editor Excellon" -#: flatcamGUI/FlatCAMGUI.py:531 +#: flatcamGUI/FlatCAMGUI.py:570 msgid "Geometry Editor Toolbar" msgstr "Toolbar Editor Geometrii" -#: flatcamGUI/FlatCAMGUI.py:535 +#: flatcamGUI/FlatCAMGUI.py:574 +msgid "Gerber Editor Toolbar" +msgstr "Toolbar Editor Gerber" + +#: flatcamGUI/FlatCAMGUI.py:578 msgid "Grid Toolbar" msgstr "Toolbar Grid-uri" -#: flatcamGUI/FlatCAMGUI.py:554 flatcamGUI/FlatCAMGUI.py:1603 +#: flatcamGUI/FlatCAMGUI.py:597 flatcamGUI/FlatCAMGUI.py:1765 msgid "Open project" -msgstr "Incarca Proiect" +msgstr "Încarcă Proiect" -#: flatcamGUI/FlatCAMGUI.py:555 flatcamGUI/FlatCAMGUI.py:1604 +#: flatcamGUI/FlatCAMGUI.py:598 flatcamGUI/FlatCAMGUI.py:1766 msgid "Save project" msgstr "Salvează Proiect" -#: flatcamGUI/FlatCAMGUI.py:558 flatcamGUI/FlatCAMGUI.py:1607 +#: flatcamGUI/FlatCAMGUI.py:601 flatcamGUI/FlatCAMGUI.py:1769 msgid "New Blank Geometry" -msgstr "Geometrie Noua (goala)" +msgstr "Geometrie Noua (goală)" -#: flatcamGUI/FlatCAMGUI.py:559 flatcamGUI/FlatCAMGUI.py:1608 +#: flatcamGUI/FlatCAMGUI.py:602 +msgid "New Blank Gerber" +msgstr "Gerber Nou (gol)" + +#: flatcamGUI/FlatCAMGUI.py:603 flatcamGUI/FlatCAMGUI.py:1770 msgid "New Blank Excellon" msgstr "Excellon nou (gol)" -#: flatcamGUI/FlatCAMGUI.py:561 flatcamGUI/FlatCAMGUI.py:1610 +#: flatcamGUI/FlatCAMGUI.py:605 flatcamGUI/FlatCAMGUI.py:1772 msgid "Editor" msgstr "Editor" -#: flatcamGUI/FlatCAMGUI.py:563 flatcamGUI/FlatCAMGUI.py:1612 +#: flatcamGUI/FlatCAMGUI.py:607 flatcamGUI/FlatCAMGUI.py:1774 msgid "Save Object and close the Editor" msgstr "Salvează Obiectul și inchide Editorul" -#: flatcamGUI/FlatCAMGUI.py:567 flatcamGUI/FlatCAMGUI.py:1616 +#: flatcamGUI/FlatCAMGUI.py:611 flatcamGUI/FlatCAMGUI.py:1778 msgid "&Delete" msgstr "&Șterge" -#: flatcamGUI/FlatCAMGUI.py:570 flatcamGUI/FlatCAMGUI.py:1619 +#: flatcamGUI/FlatCAMGUI.py:614 flatcamGUI/FlatCAMGUI.py:1781 msgid "&Replot" msgstr "&Reafișare" -#: flatcamGUI/FlatCAMGUI.py:571 flatcamGUI/FlatCAMGUI.py:1620 +#: flatcamGUI/FlatCAMGUI.py:615 flatcamGUI/FlatCAMGUI.py:1782 msgid "&Clear plot" msgstr "&Șterge Afișare" -#: flatcamGUI/FlatCAMGUI.py:572 flatcamGUI/FlatCAMGUI.py:1621 +#: flatcamGUI/FlatCAMGUI.py:616 flatcamGUI/FlatCAMGUI.py:1783 msgid "Zoom In" msgstr "Marire" -#: flatcamGUI/FlatCAMGUI.py:573 flatcamGUI/FlatCAMGUI.py:1622 +#: flatcamGUI/FlatCAMGUI.py:617 flatcamGUI/FlatCAMGUI.py:1784 msgid "Zoom Out" msgstr "Micsorare" -#: flatcamGUI/FlatCAMGUI.py:574 flatcamGUI/FlatCAMGUI.py:1380 -#: flatcamGUI/FlatCAMGUI.py:1623 +#: flatcamGUI/FlatCAMGUI.py:618 flatcamGUI/FlatCAMGUI.py:1518 +#: flatcamGUI/FlatCAMGUI.py:1785 msgid "Zoom Fit" msgstr "Marire și ajustare" -#: flatcamGUI/FlatCAMGUI.py:579 flatcamGUI/FlatCAMGUI.py:1628 +#: flatcamGUI/FlatCAMGUI.py:623 flatcamGUI/FlatCAMGUI.py:1790 msgid "&Command Line" msgstr "&Linie de comanda" -#: flatcamGUI/FlatCAMGUI.py:582 flatcamGUI/FlatCAMGUI.py:1631 +#: flatcamGUI/FlatCAMGUI.py:626 flatcamGUI/FlatCAMGUI.py:1793 msgid "2Sided Tool" msgstr "Unealta 2-fețe" -#: flatcamGUI/FlatCAMGUI.py:583 flatcamGUI/FlatCAMGUI.py:1632 +#: flatcamGUI/FlatCAMGUI.py:627 flatcamGUI/FlatCAMGUI.py:1794 msgid "&Cutout Tool" msgstr "Unealta Decupare" -#: flatcamGUI/FlatCAMGUI.py:584 flatcamGUI/FlatCAMGUI.py:1633 -#: flatcamGUI/ObjectUI.py:478 flatcamTools/ToolNonCopperClear.py:284 +#: flatcamGUI/FlatCAMGUI.py:628 flatcamGUI/FlatCAMGUI.py:1795 +#: flatcamGUI/ObjectUI.py:392 flatcamTools/ToolNonCopperClear.py:284 msgid "NCC Tool" msgstr "Unealta NCC" -#: flatcamGUI/FlatCAMGUI.py:588 flatcamGUI/FlatCAMGUI.py:1637 +#: flatcamGUI/FlatCAMGUI.py:632 flatcamGUI/FlatCAMGUI.py:1799 msgid "Panel Tool" msgstr "Unealta Panel" -#: flatcamGUI/FlatCAMGUI.py:589 flatcamGUI/FlatCAMGUI.py:1638 +#: flatcamGUI/FlatCAMGUI.py:633 flatcamGUI/FlatCAMGUI.py:1800 #: flatcamTools/ToolFilm.py:204 msgid "Film Tool" msgstr "Unealta Film" -#: flatcamGUI/FlatCAMGUI.py:590 flatcamGUI/FlatCAMGUI.py:1640 +#: flatcamGUI/FlatCAMGUI.py:634 flatcamGUI/FlatCAMGUI.py:1802 msgid "SolderPaste Tool" msgstr "Unealta Dispenser SP" -#: flatcamGUI/FlatCAMGUI.py:593 flatcamGUI/FlatCAMGUI.py:1644 +#: flatcamGUI/FlatCAMGUI.py:637 flatcamGUI/FlatCAMGUI.py:1806 msgid "Calculators Tool" msgstr "Unealta Calculatoare" -#: flatcamGUI/FlatCAMGUI.py:597 flatcamGUI/FlatCAMGUI.py:611 -#: flatcamGUI/FlatCAMGUI.py:1648 +#: flatcamGUI/FlatCAMGUI.py:641 flatcamGUI/FlatCAMGUI.py:655 +#: flatcamGUI/FlatCAMGUI.py:688 flatcamGUI/FlatCAMGUI.py:1810 +#: flatcamGUI/FlatCAMGUI.py:1860 msgid "Select" msgstr "Selectează" -#: flatcamGUI/FlatCAMGUI.py:598 flatcamGUI/FlatCAMGUI.py:1649 +#: flatcamGUI/FlatCAMGUI.py:642 flatcamGUI/FlatCAMGUI.py:1811 msgid "Add Drill Hole" msgstr "Adaugă o Găurire" -#: flatcamGUI/FlatCAMGUI.py:601 flatcamGUI/FlatCAMGUI.py:1652 +#: flatcamGUI/FlatCAMGUI.py:644 flatcamGUI/FlatCAMGUI.py:1813 +msgid "Add Drill Hole Array" +msgstr "Adaugă o arie de Găuriri" + +#: flatcamGUI/FlatCAMGUI.py:645 flatcamGUI/FlatCAMGUI.py:1814 msgid "Resize Drill" msgstr "Redimens. Găurire" -#: flatcamGUI/FlatCAMGUI.py:604 flatcamGUI/FlatCAMGUI.py:1655 +#: flatcamGUI/FlatCAMGUI.py:648 flatcamGUI/FlatCAMGUI.py:1817 msgid "Copy Drill" msgstr "Copiaza Găurire" -#: flatcamGUI/FlatCAMGUI.py:605 flatcamGUI/FlatCAMGUI.py:1657 +#: flatcamGUI/FlatCAMGUI.py:649 flatcamGUI/FlatCAMGUI.py:1819 msgid "Delete Drill" msgstr "Șterge Găurire" -#: flatcamGUI/FlatCAMGUI.py:608 flatcamGUI/FlatCAMGUI.py:1660 +#: flatcamGUI/FlatCAMGUI.py:652 flatcamGUI/FlatCAMGUI.py:1822 msgid "Move Drill" msgstr "Muta Găurire" -#: flatcamGUI/FlatCAMGUI.py:612 flatcamGUI/FlatCAMGUI.py:1664 +#: flatcamGUI/FlatCAMGUI.py:656 flatcamGUI/FlatCAMGUI.py:1826 msgid "Add Circle" msgstr "Adaugă Cerc" -#: flatcamGUI/FlatCAMGUI.py:613 flatcamGUI/FlatCAMGUI.py:1665 +#: flatcamGUI/FlatCAMGUI.py:657 flatcamGUI/FlatCAMGUI.py:1827 msgid "Add Arc" msgstr "Adaugă Arc" -#: flatcamGUI/FlatCAMGUI.py:615 flatcamGUI/FlatCAMGUI.py:1667 +#: flatcamGUI/FlatCAMGUI.py:659 flatcamGUI/FlatCAMGUI.py:1829 msgid "Add Rectangle" msgstr "Adaugă Patrulater" -#: flatcamGUI/FlatCAMGUI.py:618 flatcamGUI/FlatCAMGUI.py:1670 +#: flatcamGUI/FlatCAMGUI.py:662 flatcamGUI/FlatCAMGUI.py:1832 msgid "Add Path" msgstr "Adaugă Cale" -#: flatcamGUI/FlatCAMGUI.py:619 flatcamGUI/FlatCAMGUI.py:1672 +#: flatcamGUI/FlatCAMGUI.py:663 flatcamGUI/FlatCAMGUI.py:1834 msgid "Add Polygon" msgstr "Adaugă Poligon" -#: flatcamGUI/FlatCAMGUI.py:621 flatcamGUI/FlatCAMGUI.py:1674 +#: flatcamGUI/FlatCAMGUI.py:665 flatcamGUI/FlatCAMGUI.py:1836 msgid "Add Text" msgstr "Adaugă Text" -#: flatcamGUI/FlatCAMGUI.py:622 flatcamGUI/FlatCAMGUI.py:1676 +#: flatcamGUI/FlatCAMGUI.py:666 flatcamGUI/FlatCAMGUI.py:1838 msgid "Add Buffer" msgstr "Adaugă Bufer" -#: flatcamGUI/FlatCAMGUI.py:623 flatcamGUI/FlatCAMGUI.py:1677 +#: flatcamGUI/FlatCAMGUI.py:667 flatcamGUI/FlatCAMGUI.py:1839 msgid "Paint Shape" msgstr "Paint o forma" -#: flatcamGUI/FlatCAMGUI.py:626 flatcamGUI/FlatCAMGUI.py:1680 +#: flatcamGUI/FlatCAMGUI.py:670 flatcamGUI/FlatCAMGUI.py:1842 msgid "Polygon Union" msgstr "Uniune Poligoane" -#: flatcamGUI/FlatCAMGUI.py:628 flatcamGUI/FlatCAMGUI.py:1682 +#: flatcamGUI/FlatCAMGUI.py:672 flatcamGUI/FlatCAMGUI.py:1844 msgid "Polygon Intersection" msgstr "Intersecţie Poligoane" -#: flatcamGUI/FlatCAMGUI.py:630 flatcamGUI/FlatCAMGUI.py:1684 +#: flatcamGUI/FlatCAMGUI.py:674 flatcamGUI/FlatCAMGUI.py:1846 msgid "Polygon Subtraction" msgstr "Substracţie Poligoane" -#: flatcamGUI/FlatCAMGUI.py:633 flatcamGUI/FlatCAMGUI.py:1687 +#: flatcamGUI/FlatCAMGUI.py:677 flatcamGUI/FlatCAMGUI.py:1849 msgid "Cut Path" msgstr "Taie Cale" -#: flatcamGUI/FlatCAMGUI.py:634 +#: flatcamGUI/FlatCAMGUI.py:678 msgid "Copy Shape(s)" msgstr "Copiaza forme geo." -#: flatcamGUI/FlatCAMGUI.py:637 +#: flatcamGUI/FlatCAMGUI.py:681 msgid "Delete Shape '-'" msgstr "Șterge forme geo." -#: flatcamGUI/FlatCAMGUI.py:639 flatcamGUI/FlatCAMGUI.py:1692 +#: flatcamGUI/FlatCAMGUI.py:683 flatcamGUI/FlatCAMGUI.py:702 +#: flatcamGUI/FlatCAMGUI.py:1854 flatcamGUI/FlatCAMGUI.py:1874 msgid "Transformations" msgstr "Transformări" -#: flatcamGUI/FlatCAMGUI.py:641 +#: flatcamGUI/FlatCAMGUI.py:685 msgid "Move Objects " msgstr "Muta obiecte" -#: flatcamGUI/FlatCAMGUI.py:647 flatcamGUI/FlatCAMGUI.py:1701 +#: flatcamGUI/FlatCAMGUI.py:689 flatcamGUI/FlatCAMGUI.py:1861 +msgid "Add Pad" +msgstr "Adaugă Pad" + +#: flatcamGUI/FlatCAMGUI.py:691 flatcamGUI/FlatCAMGUI.py:1863 +msgid "Add Track" +msgstr "Adaugă Traseu" + +#: flatcamGUI/FlatCAMGUI.py:692 flatcamGUI/FlatCAMGUI.py:1864 +msgid "Add Region" +msgstr "Adaugă Regiune" + +#: flatcamGUI/FlatCAMGUI.py:704 flatcamGUI/FlatCAMGUI.py:1528 +#: flatcamGUI/FlatCAMGUI.py:1538 flatcamGUI/FlatCAMGUI.py:1553 +#: flatcamGUI/FlatCAMGUI.py:1876 flatcamTools/ToolMove.py:26 +msgid "Move" +msgstr "Mutare" + +#: flatcamGUI/FlatCAMGUI.py:710 flatcamGUI/FlatCAMGUI.py:1882 msgid "Snap to grid" msgstr "Lipire la grid" -#: flatcamGUI/FlatCAMGUI.py:650 flatcamGUI/FlatCAMGUI.py:1704 +#: flatcamGUI/FlatCAMGUI.py:713 flatcamGUI/FlatCAMGUI.py:1885 msgid "Grid X snapping distance" msgstr "Distanta de lipire la grid pe axa X" -#: flatcamGUI/FlatCAMGUI.py:655 flatcamGUI/FlatCAMGUI.py:1709 +#: flatcamGUI/FlatCAMGUI.py:718 flatcamGUI/FlatCAMGUI.py:1890 msgid "Grid Y snapping distance" msgstr "Distanta de lipire la grid pe axa Y" -#: flatcamGUI/FlatCAMGUI.py:661 flatcamGUI/FlatCAMGUI.py:1715 +#: flatcamGUI/FlatCAMGUI.py:724 flatcamGUI/FlatCAMGUI.py:1896 msgid "" "When active, value on Grid_X\n" "is copied to the Grid_Y value." @@ -3653,68 +4283,64 @@ msgstr "" "când este activ, valoarea de pe Grid_X\n" "este copiata și in Grid_Y" -#: flatcamGUI/FlatCAMGUI.py:667 flatcamGUI/FlatCAMGUI.py:1721 +#: flatcamGUI/FlatCAMGUI.py:730 flatcamGUI/FlatCAMGUI.py:1902 msgid "Snap to corner" msgstr "Lipire la colt" -#: flatcamGUI/FlatCAMGUI.py:671 flatcamGUI/FlatCAMGUI.py:1725 -#: flatcamGUI/FlatCAMGUI.py:2804 +#: flatcamGUI/FlatCAMGUI.py:734 flatcamGUI/FlatCAMGUI.py:1906 +#: flatcamGUI/FlatCAMGUI.py:3197 msgid "Max. magnet distance" msgstr "Distanta magnetica maxima" -#: flatcamGUI/FlatCAMGUI.py:685 flatcamGUI/FlatCAMGUI.py:1374 +#: flatcamGUI/FlatCAMGUI.py:748 flatcamGUI/FlatCAMGUI.py:1512 msgid "Project" msgstr "Proiect" -#: flatcamGUI/FlatCAMGUI.py:694 +#: flatcamGUI/FlatCAMGUI.py:757 msgid "Selected" msgstr "Selectat" -#: flatcamGUI/FlatCAMGUI.py:701 -msgid "Tool" -msgstr "Unealta" - -#: flatcamGUI/FlatCAMGUI.py:713 flatcamGUI/FlatCAMGUI.py:721 +#: flatcamGUI/FlatCAMGUI.py:776 flatcamGUI/FlatCAMGUI.py:784 msgid "Plot Area" msgstr "Arie Afișare" -#: flatcamGUI/FlatCAMGUI.py:745 +#: flatcamGUI/FlatCAMGUI.py:808 msgid "General" msgstr "General" -#: flatcamGUI/FlatCAMGUI.py:754 +#: flatcamGUI/FlatCAMGUI.py:817 msgid "APP. DEFAULTS" msgstr "Default for App" -#: flatcamGUI/FlatCAMGUI.py:755 +#: flatcamGUI/FlatCAMGUI.py:818 msgid "PROJ. OPTIONS " msgstr "Opțiuni Proiect" -#: flatcamGUI/FlatCAMGUI.py:766 +#: flatcamGUI/FlatCAMGUI.py:829 msgid "GERBER" msgstr "GERBER" -#: flatcamGUI/FlatCAMGUI.py:775 +#: flatcamGUI/FlatCAMGUI.py:838 msgid "EXCELLON" msgstr "EXCELLON" -#: flatcamGUI/FlatCAMGUI.py:784 +#: flatcamGUI/FlatCAMGUI.py:847 msgid "GEOMETRY" msgstr "GEOMETRIE" -#: flatcamGUI/FlatCAMGUI.py:794 +#: flatcamGUI/FlatCAMGUI.py:857 msgid "CNC-JOB" msgstr "CNCJob" -#: flatcamGUI/FlatCAMGUI.py:803 +#: flatcamGUI/FlatCAMGUI.py:866 msgid "TOOLS" msgstr "Unelte" -#: flatcamGUI/FlatCAMGUI.py:820 +#: flatcamGUI/FlatCAMGUI.py:883 msgid "Import Preferences" msgstr "Importa Preferințele" -#: flatcamGUI/FlatCAMGUI.py:823 +#: flatcamGUI/FlatCAMGUI.py:886 msgid "" "Import a full set of FlatCAM settings from a file\n" "previously saved on HDD.\n" @@ -3728,11 +4354,11 @@ msgstr "" "FlatCAM salvează automat un fişier numit 'factory_defaults'\n" "la prima pornire. Nu șterge acel fişier." -#: flatcamGUI/FlatCAMGUI.py:830 +#: flatcamGUI/FlatCAMGUI.py:893 msgid "Export Preferences" msgstr "Exporta Preferințele" -#: flatcamGUI/FlatCAMGUI.py:833 +#: flatcamGUI/FlatCAMGUI.py:896 msgid "" "Export a full set of FlatCAM settings in a file\n" "that is saved on HDD." @@ -3740,19 +4366,19 @@ msgstr "" "Exporta un set complet de setari ale FlatCAM\n" "intr-un fişier care se salvează pe HDD." -#: flatcamGUI/FlatCAMGUI.py:838 +#: flatcamGUI/FlatCAMGUI.py:901 msgid "Open Pref Folder" msgstr "Deschide Pref Dir" -#: flatcamGUI/FlatCAMGUI.py:841 +#: flatcamGUI/FlatCAMGUI.py:904 msgid "Open the folder where FlatCAM save the preferences files." msgstr "Deschide directorul unde FlatCAM salvează fişierele cu setari." -#: flatcamGUI/FlatCAMGUI.py:849 +#: flatcamGUI/FlatCAMGUI.py:912 msgid "Save Preferences" msgstr "Salvează Pref" -#: flatcamGUI/FlatCAMGUI.py:852 +#: flatcamGUI/FlatCAMGUI.py:915 msgid "" "Save the current settings in the 'current_defaults' file\n" "which is the file storing the working default preferences." @@ -3760,7 +4386,7 @@ msgstr "" "Salvează setarile 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:878 +#: flatcamGUI/FlatCAMGUI.py:941 msgid "" "General Shortcut list
    \n" " 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" +#| "
    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+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" +#| " " msgid "" "Editor Shortcut list
    \n" "
    \n" @@ -4517,12 +5418,90 @@ msgid "" " \n" " \n" " \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" +"
    A\n" +"  Add Pad Array
    B Buffer
    C Copy
    J Jump to Location (x, y)
    M Move
    N Add Region
    P Add Pad
    S Scale
    T Add Track
      
    Del Delete
    Del Alternate: Delete Apertures
      
    ESC Abort and return to Select
    CTRL+S Save Object and Exit Editor
      
    ALT+R Transformation Tool
    \n" " " msgstr "" -"Editor Shortcut list
    \n" +"Lista de teste shortcut in Editor
    \n" "
    \n" -" EDITORUL DE GEOMETRII
    \n" +" EDITOR GEOMETRII
    \n" " \n" " \n" @@ -4530,7 +5509,7 @@ msgstr "" " \n" " \n" +" \n" " \n" " \n" " \n" @@ -4542,7 +5521,7 @@ msgstr "" " \n" " \n" " \n" -" \n" +" \n" " \n" " \n" " \n" @@ -4550,35 +5529,35 @@ msgstr "" " \n" " \n" " \n" -" \n" +" \n" " \n" " \n" " \n" -" \n" +" \n" " \n" " \n" " \n" -" \n" +" \n" " \n" " \n" " \n" -" \n" +" \n" " \n" " \n" " \n" -" \n" +" \n" " \n" " \n" " \n" -" \n" +" \n" " \n" " \n" " \n" -" \n" +" \n" " \n" " \n" " \n" -" \n" +" \n" " \n" " \n" " \n" @@ -4590,11 +5569,11 @@ msgstr "" " \n" " \n" " \n" -" \n" +" \n" " \n" " \n" " \n" -" \n" +" \n" " \n" " \n" " \n" @@ -4602,11 +5581,11 @@ msgstr "" " \n" " \n" " \n" -" \n" " \n" " \n" " \n" -" \n" +" \n" " \n" " \n" " \n" @@ -4614,15 +5593,15 @@ msgstr "" " \n" " \n" " \n" -" \n" +" \n" " \n" " \n" " \n" -" \n" +" \n" " \n" " \n" " \n" -" \n" +" \n" " \n" " \n" " \n" @@ -4630,15 +5609,15 @@ msgstr "" " \n" " \n" " \n" -" \n" +" \n" " \n" " \n" " \n" -" \n" +" \n" " \n" " \n" " \n" -" \n" +" \n" " \n" " \n" " \n" @@ -4646,26 +5625,27 @@ msgstr "" " \n" " \n" " \n" -" \n" +" \n" " \n" " \n" " \n" -" \n" " \n" " \n" " \n" -" \n" +" \n" " \n" " \n" -" \n" +" \n" " \n" " \n" "
    A\n" -"  Desenează un Arc Deseneaza un arc
    B
    E Unealta IntersecÅ£ie Poligoane Unealta Intersectie Poligoane
    I
    J Sari la LocaÅ£ie (x, y) Sari la locatie (x, y)
    K Comuta lipire colt Comuta magnet colt
    M Muta forma geometrică Muta geometrie
    N Desenează un Poligon Deseneaza un Poligon
    O Desenează un Cerc Deseneaza un Cerc
    P Desenează o Cale Deseneaza o Cale
    R Desenează un Patrulater Deseneaza un Patrulater
    S Unealta SubstracÅ£ie Poligoane Unealta de Substractie Poligoane
    T
    X OglindeÈ™te forma geo pe axa X Oglindire pe axa X
    Y OglindeÈ™te forma geo pe axa Y Oglindire pe axa Y
     
    SHIFT+X Deformează forma geo pe axa X/td>\n" +"  Deformeaza pe axa X
    SHIFT+Y Deformează forma geo pe axa Y Deformeaza pe axa Y
     
    ALT+R Unealta de Trasformări din Editor Unealta Transformare din Editor
    ALT+X Deplasează forma geo pe axa X Deplaseaza pe axa X
    ALT+Y Deplasează forma geo pe axa Y Deplaseaza pe axa Y
     
    CTRL+M Unealta de Masurare Unealta de masurare
    CTRL+S Salvează obiectul È™i ieÈ™i din Editor Inchide Editorul
    CTRL+X Unealta de tăiere Poligoane Unealta de Decupare Poligoane
     
    Space Roteste forma geometrică Roteste geometria
    ENTER Termina desenatul pentru anumite unelte\n" +"  Finalizeaza desenul pt anumite tipuri de " +"geo.
    ESC Renunta È™i intoarce-te la Select Renunta si revino la Unealta Selectie\n" "
    Del È˜terge forma geometrică Sterge geometrie
    \n" "
    \n" "
    \n" -" EDITORUL EXCELLONEDITOR EXCELLON
    \n" " \n" @@ -4673,32 +5653,31 @@ msgstr "" " \n" " \n" " \n" " \n" " \n" -" \n" +" \n" " \n" " \n" " \n" -" \n" +" \n" " \n" " \n" " \n" -" \n" +" \n" " \n" " \n" " \n" -" \n" +" \n" " \n" " \n" " \n" -" \n" +" \n" " \n" " \n" " \n" -" \n" +" \n" " \n" " \n" " \n" @@ -4706,11 +5685,11 @@ msgstr "" " \n" " \n" " \n" -" \n" +" \n" " \n" " \n" " \n" -" \n" +" \n" " \n" " \n" " \n" @@ -4718,108 +5697,196 @@ msgstr "" " \n" " \n" " \n" -" \n" +" \n" " \n" " \n" -" \n" +" \n" +" \n" +" \n" +"
    A\n" -"  Adaugă o arie de găuriri\n" +"  Adauga o arie de gauri
    C Copiaza Găuriri Copiaza gauri
    D Adaugă găurire Adauga o gaura
    J Sari la LocaÅ£ie (x, y) Sari la locatia (x, y)
    M Muta Găuriri Muta gauri
    R Redimensionează găuriri Redimensioneaza gauri
    T Adaugă o noua Unealta Adauga o noua unealta
     
    Del È˜terge Găuriri Sterge gauri
    Del Alternatic: Șterge Unelte Alternativ: Sterge Unelte
     
    ESC Renunta È™i intoarce-te la Select Renunta si revino la Unealta de Selectie\n" "
    CTRL+S Salvează obiectul È™i ieÈ™i din Editor Inchide Editorul
    \n" +"
    \n" +"
    \n" +" EDITOR GERBER
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \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\n" +"  Adauga o arie de Paduri\n" +"
    B Bufer
    C Copiere
    J Sari la locatia (x, y)
    M Muta
    N Adauga Regiune
    P Adauga Pad
    S Scalare
    T Adauga Traseu
      
    Del Stergere
    Del Alternativ: Sterge aperturi
      
    ESC Renunta si revino la Unealta Selectie\n" +"
    CTRL+S Inchide Editorul
      
    ALT+R Unealta Transformare
    \n" " " -#: flatcamGUI/FlatCAMGUI.py:1368 +#: flatcamGUI/FlatCAMGUI.py:1506 msgid "Disable" msgstr "Dezactivează" -#: flatcamGUI/FlatCAMGUI.py:1370 +#: flatcamGUI/FlatCAMGUI.py:1508 msgid "New" msgstr "Nou" -#: flatcamGUI/FlatCAMGUI.py:1371 +#: flatcamGUI/FlatCAMGUI.py:1509 msgid "Geometry" msgstr "Geometrie" -#: flatcamGUI/FlatCAMGUI.py:1372 +#: flatcamGUI/FlatCAMGUI.py:1510 msgid "Excellon" msgstr "Excellon" -#: flatcamGUI/FlatCAMGUI.py:1377 +#: flatcamGUI/FlatCAMGUI.py:1515 msgid "Grids" msgstr "Grid-uri" -#: flatcamGUI/FlatCAMGUI.py:1379 +#: flatcamGUI/FlatCAMGUI.py:1517 msgid "View" msgstr "Vizualizare" -#: flatcamGUI/FlatCAMGUI.py:1381 +#: flatcamGUI/FlatCAMGUI.py:1519 msgid "Clear Plot" msgstr "Șterge Afișare" -#: flatcamGUI/FlatCAMGUI.py:1382 +#: flatcamGUI/FlatCAMGUI.py:1520 msgid "Replot" msgstr "Reafișare" -#: flatcamGUI/FlatCAMGUI.py:1385 +#: flatcamGUI/FlatCAMGUI.py:1523 msgid "Geo Editor" msgstr "Editor Geometrii" -#: flatcamGUI/FlatCAMGUI.py:1386 +#: flatcamGUI/FlatCAMGUI.py:1524 msgid "Line" msgstr "Linie" -#: flatcamGUI/FlatCAMGUI.py:1387 +#: flatcamGUI/FlatCAMGUI.py:1525 msgid "Rectangle" msgstr "Patrulater" -#: flatcamGUI/FlatCAMGUI.py:1388 flatcamGUI/FlatCAMGUI.py:4607 -#: flatcamGUI/ObjectUI.py:1446 +#: flatcamGUI/FlatCAMGUI.py:1526 flatcamGUI/FlatCAMGUI.py:5021 +#: flatcamGUI/ObjectUI.py:1360 msgid "Cut" msgstr "Tăiere" -#: flatcamGUI/FlatCAMGUI.py:1390 flatcamGUI/FlatCAMGUI.py:1405 -#: flatcamTools/ToolMove.py:26 -msgid "Move" -msgstr "Mutare" +#: flatcamGUI/FlatCAMGUI.py:1531 +msgid "Pad" +msgstr "Pad" -#: flatcamGUI/FlatCAMGUI.py:1392 +#: flatcamGUI/FlatCAMGUI.py:1532 +msgid "Pad Array" +msgstr "Arie de paduri" + +#: flatcamGUI/FlatCAMGUI.py:1533 +msgid "Track" +msgstr "Traseu" + +#: flatcamGUI/FlatCAMGUI.py:1534 +msgid "Region" +msgstr "Regiune" + +#: flatcamGUI/FlatCAMGUI.py:1540 msgid "Exc Editor" msgstr "Editor EXC." -#: flatcamGUI/FlatCAMGUI.py:1393 +#: flatcamGUI/FlatCAMGUI.py:1541 msgid "Add Drill" msgstr "Adaugă găurire" -#: flatcamGUI/FlatCAMGUI.py:1395 +#: flatcamGUI/FlatCAMGUI.py:1543 msgid "Copy Drill(s)" msgstr "Copiaza Găurire" -#: flatcamGUI/FlatCAMGUI.py:1401 -msgid "Save && Close Edit" -msgstr "Salvează && Inchide Edit" - -#: flatcamGUI/FlatCAMGUI.py:1426 +#: flatcamGUI/FlatCAMGUI.py:1574 msgid "Print Preview" msgstr "Preview tiparire" -#: flatcamGUI/FlatCAMGUI.py:1427 +#: flatcamGUI/FlatCAMGUI.py:1575 msgid "Print Code" msgstr "Tipareste Cod" -#: flatcamGUI/FlatCAMGUI.py:1428 +#: flatcamGUI/FlatCAMGUI.py:1576 msgid "Find in Code" msgstr "Cauta in Cod" -#: flatcamGUI/FlatCAMGUI.py:1433 +#: flatcamGUI/FlatCAMGUI.py:1581 msgid "Replace With" msgstr "Inlocuieste cu" -#: flatcamGUI/FlatCAMGUI.py:1437 flatcamGUI/FlatCAMGUI.py:4605 -#: flatcamGUI/FlatCAMGUI.py:5106 flatcamGUI/ObjectUI.py:1444 +#: flatcamGUI/FlatCAMGUI.py:1585 flatcamGUI/FlatCAMGUI.py:5019 +#: flatcamGUI/FlatCAMGUI.py:5529 flatcamGUI/ObjectUI.py:1358 msgid "All" msgstr "Toate" -#: flatcamGUI/FlatCAMGUI.py:1439 +#: flatcamGUI/FlatCAMGUI.py:1587 msgid "" "When checked it will replace all instances in the 'Find' box\n" "with the text in the 'Replace' box.." @@ -4828,15 +5895,15 @@ msgstr "" "'Cauta'\n" "cu textul din casuta 'Inlocuieste'" -#: flatcamGUI/FlatCAMGUI.py:1442 +#: flatcamGUI/FlatCAMGUI.py:1590 msgid "Open Code" msgstr "Deschide Cod" -#: flatcamGUI/FlatCAMGUI.py:1443 +#: flatcamGUI/FlatCAMGUI.py:1591 msgid "Save Code" msgstr "Salvează Cod" -#: flatcamGUI/FlatCAMGUI.py:1478 +#: flatcamGUI/FlatCAMGUI.py:1626 msgid "" "Relative neasurement.\n" "Reference is last click position" @@ -4844,7 +5911,7 @@ msgstr "" "Masuratoare relativa.\n" "Referința este poziţia ultimului click pe canvas." -#: flatcamGUI/FlatCAMGUI.py:1484 +#: flatcamGUI/FlatCAMGUI.py:1632 msgid "" "Absolute neasurement.\n" "Reference is (X=0, Y= 0) position" @@ -4852,27 +5919,23 @@ msgstr "" "Masuratoare absoluta.\n" "Referința este originea (0, 0)." -#: flatcamGUI/FlatCAMGUI.py:1651 -msgid "Add Drill Hole Array" -msgstr "Adaugă o arie de Găuriri" - -#: flatcamGUI/FlatCAMGUI.py:1663 +#: flatcamGUI/FlatCAMGUI.py:1825 msgid "Select 'Esc'" msgstr "Select" -#: flatcamGUI/FlatCAMGUI.py:1688 +#: flatcamGUI/FlatCAMGUI.py:1850 msgid "Copy Objects" msgstr "Copiaza Obiecte" -#: flatcamGUI/FlatCAMGUI.py:1690 +#: flatcamGUI/FlatCAMGUI.py:1852 msgid "Delete Shape" msgstr "Șterge forme geo" -#: flatcamGUI/FlatCAMGUI.py:1695 +#: flatcamGUI/FlatCAMGUI.py:1857 msgid "Move Objects" msgstr "Muta Obiecte" -#: flatcamGUI/FlatCAMGUI.py:2077 +#: flatcamGUI/FlatCAMGUI.py:2266 msgid "" "Please first select a geometry item to be cutted\n" "then select the geometry item that will be cutted\n" @@ -4883,16 +5946,17 @@ msgstr "" "apoi selectează forma geo. taietoare. La final apasa tasta ~X~ sau\n" "butonul corespunzator din Toolbar." -#: flatcamGUI/FlatCAMGUI.py:2084 flatcamGUI/FlatCAMGUI.py:2216 -#: flatcamGUI/FlatCAMGUI.py:2275 flatcamGUI/FlatCAMGUI.py:2295 +#: flatcamGUI/FlatCAMGUI.py:2273 flatcamGUI/FlatCAMGUI.py:2405 +#: flatcamGUI/FlatCAMGUI.py:2464 flatcamGUI/FlatCAMGUI.py:2484 msgid "Warning" msgstr "Atenţie" -#: flatcamGUI/FlatCAMGUI.py:2151 flatcamGUI/FlatCAMGUI.py:2345 +#: flatcamGUI/FlatCAMGUI.py:2340 flatcamGUI/FlatCAMGUI.py:2537 +#: flatcamGUI/FlatCAMGUI.py:2735 msgid "[WARNING_NOTCL] Cancelled." msgstr "[WARNING_NOTCL] Anulat." -#: flatcamGUI/FlatCAMGUI.py:2211 +#: flatcamGUI/FlatCAMGUI.py:2400 msgid "" "Please select geometry items \n" "on which to perform Intersection Tool." @@ -4900,7 +5964,7 @@ msgstr "" "Selectează forma geometrică asupra careia să se\n" "aplice Unealta Intersecţie." -#: flatcamGUI/FlatCAMGUI.py:2270 +#: flatcamGUI/FlatCAMGUI.py:2459 msgid "" "Please select geometry items \n" "on which to perform Substraction Tool." @@ -4908,7 +5972,7 @@ msgstr "" "Selectează forma geometrică asupra careia să se\n" "aplice Unealta Substracţie." -#: flatcamGUI/FlatCAMGUI.py:2290 +#: flatcamGUI/FlatCAMGUI.py:2479 msgid "" "Please select geometry items \n" "on which to perform union." @@ -4916,51 +5980,51 @@ msgstr "" "Selectează forma geometrică asupra careia să se\n" "aplice Unealta Uniune." -#: flatcamGUI/FlatCAMGUI.py:2362 +#: flatcamGUI/FlatCAMGUI.py:2552 flatcamGUI/FlatCAMGUI.py:2752 msgid "[WARNING_NOTCL] Cancelled. Nothing selected to delete." msgstr "[WARNING_NOTCL] Anulat. Nimic nu este selectat pentru ștergere." -#: flatcamGUI/FlatCAMGUI.py:2429 +#: flatcamGUI/FlatCAMGUI.py:2629 flatcamGUI/FlatCAMGUI.py:2819 msgid "[WARNING_NOTCL] Cancelled. Nothing selected to copy." msgstr "[WARNING_NOTCL] Anulat. Nimic nu este selectat pentru copiere." -#: flatcamGUI/FlatCAMGUI.py:2475 +#: flatcamGUI/FlatCAMGUI.py:2663 flatcamGUI/FlatCAMGUI.py:2865 msgid "[WARNING_NOTCL] Cancelled. Nothing selected to move." msgstr "[WARNING_NOTCL] Anulat. Nimic nu este selectat pentru mutare." -#: flatcamGUI/FlatCAMGUI.py:2489 +#: flatcamGUI/FlatCAMGUI.py:2879 msgid "New Tool ..." msgstr "O noua Unealta ..." -#: flatcamGUI/FlatCAMGUI.py:2490 +#: flatcamGUI/FlatCAMGUI.py:2880 msgid "Enter a Tool Diameter:" msgstr "Introdu un Diametru de Unealta:" -#: flatcamGUI/FlatCAMGUI.py:2789 +#: flatcamGUI/FlatCAMGUI.py:3182 msgid "Grid X value:" msgstr "Valoarea Grid_X:" -#: flatcamGUI/FlatCAMGUI.py:2791 +#: flatcamGUI/FlatCAMGUI.py:3184 msgid "This is the Grid snap value on X axis." msgstr "Aceasta este valoare pentru lipire pe Grid pe axa X." -#: flatcamGUI/FlatCAMGUI.py:2796 +#: flatcamGUI/FlatCAMGUI.py:3189 msgid "Grid Y value:" msgstr "Valoarea Grid_Y:" -#: flatcamGUI/FlatCAMGUI.py:2798 +#: flatcamGUI/FlatCAMGUI.py:3191 msgid "This is the Grid snap value on Y axis." msgstr "Aceasta este valoare pentru lipire pe Grid pe axa Y." -#: flatcamGUI/FlatCAMGUI.py:2803 +#: flatcamGUI/FlatCAMGUI.py:3196 msgid "Snap Max:" msgstr "Lipire Max:" -#: flatcamGUI/FlatCAMGUI.py:2808 +#: flatcamGUI/FlatCAMGUI.py:3201 msgid "Workspace:" msgstr "Spatiu de lucru:" -#: flatcamGUI/FlatCAMGUI.py:2810 +#: flatcamGUI/FlatCAMGUI.py:3203 msgid "" "Draw a delimiting rectangle on canvas.\n" "The purpose is to illustrate the limits for our work." @@ -4968,11 +6032,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:2813 +#: flatcamGUI/FlatCAMGUI.py:3206 msgid "Wk. format:" msgstr "Format SL:" -#: flatcamGUI/FlatCAMGUI.py:2815 +#: flatcamGUI/FlatCAMGUI.py:3208 msgid "" "Select the type of rectangle to be used on canvas,\n" "as valid workspace." @@ -4980,11 +6044,11 @@ msgstr "" "Selectează tipul de patrulater care va fi desenat pe canvas,\n" "pentru a delimita suprafata de lucru disponibila (SL)." -#: flatcamGUI/FlatCAMGUI.py:2828 +#: flatcamGUI/FlatCAMGUI.py:3221 msgid "Plot Fill:" msgstr "Culoare Afișare:" -#: flatcamGUI/FlatCAMGUI.py:2830 +#: flatcamGUI/FlatCAMGUI.py:3223 msgid "" "Set the fill color for plotted objects.\n" "First 6 digits are the color and the last 2\n" @@ -4994,28 +6058,28 @@ msgstr "" "Primii 6 digiti sunt culoarea efectiva și ultimii\n" "doi sunt pentru nivelul de transparenţă (alfa)." -#: flatcamGUI/FlatCAMGUI.py:2844 flatcamGUI/FlatCAMGUI.py:2894 -#: flatcamGUI/FlatCAMGUI.py:2944 +#: flatcamGUI/FlatCAMGUI.py:3237 flatcamGUI/FlatCAMGUI.py:3287 +#: flatcamGUI/FlatCAMGUI.py:3337 msgid "Alpha Level:" msgstr "Nivel Alfa:" -#: flatcamGUI/FlatCAMGUI.py:2846 +#: flatcamGUI/FlatCAMGUI.py:3239 msgid "Set the fill transparency for plotted objects." msgstr "Setează nivelul de transparenţa pentru obiectele afisate." -#: flatcamGUI/FlatCAMGUI.py:2863 +#: flatcamGUI/FlatCAMGUI.py:3256 msgid "Plot Line:" msgstr "Culoare contur:" -#: flatcamGUI/FlatCAMGUI.py:2865 +#: flatcamGUI/FlatCAMGUI.py:3258 msgid "Set the line color for plotted objects." msgstr "Setează culoarea conturului." -#: flatcamGUI/FlatCAMGUI.py:2877 +#: flatcamGUI/FlatCAMGUI.py:3270 msgid "Sel. Fill:" msgstr "Culoare Selecţie:" -#: flatcamGUI/FlatCAMGUI.py:2879 +#: flatcamGUI/FlatCAMGUI.py:3272 msgid "" "Set the fill color for the selection box\n" "in case that the selection is done from left to right.\n" @@ -5027,27 +6091,27 @@ msgstr "" "Primii 6 digiti sunt culoarea efectiva și ultimii\n" "doi sunt pentru nivelul de transparenţă (alfa)." -#: flatcamGUI/FlatCAMGUI.py:2896 +#: flatcamGUI/FlatCAMGUI.py:3289 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:2913 +#: flatcamGUI/FlatCAMGUI.py:3306 msgid "Sel. Line:" msgstr "Contur Selecţie:" -#: flatcamGUI/FlatCAMGUI.py:2915 +#: flatcamGUI/FlatCAMGUI.py:3308 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:2927 +#: flatcamGUI/FlatCAMGUI.py:3320 msgid "Sel2. Fill:" msgstr "Culoare Selecţie 2:" -#: flatcamGUI/FlatCAMGUI.py:2929 +#: flatcamGUI/FlatCAMGUI.py:3322 msgid "" "Set the fill color for the selection box\n" "in case that the selection is done from right to left.\n" @@ -5059,49 +6123,49 @@ msgstr "" "Primii 6 digiti sunt culoarea efectiva și ultimii\n" "doi sunt pentru nivelul de transparenţă (alfa)." -#: flatcamGUI/FlatCAMGUI.py:2946 +#: flatcamGUI/FlatCAMGUI.py:3339 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:2963 +#: flatcamGUI/FlatCAMGUI.py:3356 msgid "Sel2. Line:" msgstr "Contur Selecţie 2:" -#: flatcamGUI/FlatCAMGUI.py:2965 +#: flatcamGUI/FlatCAMGUI.py:3358 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:2977 +#: flatcamGUI/FlatCAMGUI.py:3370 msgid "Editor Draw:" msgstr "Desen Editor:" -#: flatcamGUI/FlatCAMGUI.py:2979 +#: flatcamGUI/FlatCAMGUI.py:3372 msgid "Set the color for the shape." msgstr "Setează culoarea pentru forma geometrică din Editor." -#: flatcamGUI/FlatCAMGUI.py:2991 +#: flatcamGUI/FlatCAMGUI.py:3384 msgid "Editor Draw Sel.:" msgstr "Sel. Desen Editor:" -#: flatcamGUI/FlatCAMGUI.py:2993 +#: flatcamGUI/FlatCAMGUI.py:3386 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:3040 +#: flatcamGUI/FlatCAMGUI.py:3433 msgid "GUI Settings" msgstr "Setari GUI" -#: flatcamGUI/FlatCAMGUI.py:3047 +#: flatcamGUI/FlatCAMGUI.py:3440 msgid "Layout:" msgstr "Amplasare:" -#: flatcamGUI/FlatCAMGUI.py:3049 +#: flatcamGUI/FlatCAMGUI.py:3442 msgid "" "Select an layout for FlatCAM.\n" "It is applied immediately." @@ -5109,11 +6173,11 @@ msgstr "" "Selectează un stil de amplasare a elementelor GUI in FlatCAM.\n" "Se aplica imediat." -#: flatcamGUI/FlatCAMGUI.py:3065 +#: flatcamGUI/FlatCAMGUI.py:3458 msgid "Style:" msgstr "Stil:" -#: flatcamGUI/FlatCAMGUI.py:3067 +#: flatcamGUI/FlatCAMGUI.py:3460 msgid "" "Select an style for FlatCAM.\n" "It will be applied at the next app start." @@ -5121,24 +6185,24 @@ msgstr "" "Selectează un stil pentru FlatCAM.\n" "Se va aplica la urmatoarea pornire a aplicaţiei." -#: flatcamGUI/FlatCAMGUI.py:3078 +#: flatcamGUI/FlatCAMGUI.py:3471 msgid "HDPI Support:" msgstr "Suport H-DPI:" -#: flatcamGUI/FlatCAMGUI.py:3080 +#: flatcamGUI/FlatCAMGUI.py:3473 msgid "" "Enable High DPI support for FlatCAM.\n" "It will be applied at the next app start." msgstr "" "Activează capabilitatea de DPI cu valoare mare.\n" "Util pentru monitoarele 4k.\n" -"Va fi aplicata la următoarea pornire a aplicaţiei." +"Va fi aplicată la următoarea pornire a aplicaţiei." -#: flatcamGUI/FlatCAMGUI.py:3093 +#: flatcamGUI/FlatCAMGUI.py:3486 msgid "Clear GUI Settings:" msgstr "Șterge setarile GUI:" -#: flatcamGUI/FlatCAMGUI.py:3095 +#: flatcamGUI/FlatCAMGUI.py:3488 msgid "" "Clear the GUI settings for FlatCAM,\n" "such as: layout, gui state, style, hdpi support etc." @@ -5146,15 +6210,15 @@ msgstr "" "Șterge setarile GUI pentru FlatCAM,\n" "cum ar fi: amplasare, stare UI, suport HDPI sau traducerea." -#: flatcamGUI/FlatCAMGUI.py:3098 +#: flatcamGUI/FlatCAMGUI.py:3491 msgid "Clear" msgstr "Șterge" -#: flatcamGUI/FlatCAMGUI.py:3102 +#: flatcamGUI/FlatCAMGUI.py:3495 msgid "Hover Shape:" msgstr "Forma Hover:" -#: flatcamGUI/FlatCAMGUI.py:3104 +#: flatcamGUI/FlatCAMGUI.py:3497 msgid "" "Enable display of a hover shape for FlatCAM objects.\n" "It is displayed whenever the mouse cursor is hovering\n" @@ -5164,27 +6228,23 @@ msgstr "" "in canvas-ul FlatCAM. Forma este afișată doar daca obiectul \n" "nu este selectat." -#: flatcamGUI/FlatCAMGUI.py:3145 +#: flatcamGUI/FlatCAMGUI.py:3537 msgid "Are you sure you want to delete the GUI Settings? \n" msgstr "Esti sigur că dorești să ștergi setarile GUI?\n" -#: flatcamGUI/FlatCAMGUI.py:3148 +#: flatcamGUI/FlatCAMGUI.py:3540 msgid "Clear GUI Settings" msgstr "Șterge Setarile GUI" -#: flatcamGUI/FlatCAMGUI.py:3161 -msgid "[success] GUI settings deleted ..." -msgstr "[success] Setarile GUI au fost șterse ..." - -#: flatcamGUI/FlatCAMGUI.py:3168 +#: flatcamGUI/FlatCAMGUI.py:3561 msgid "App Preferences" msgstr "Preferințele Aplicaţie" -#: flatcamGUI/FlatCAMGUI.py:3174 +#: flatcamGUI/FlatCAMGUI.py:3567 msgid "Units:" msgstr "Unitati:" -#: flatcamGUI/FlatCAMGUI.py:3175 +#: flatcamGUI/FlatCAMGUI.py:3568 msgid "" "The default value for FlatCAM units.\n" "Whatever is selected here is set every time\n" @@ -5193,11 +6253,11 @@ msgstr "" "Unitatea de masura pt FlatCAM.\n" "Este setată la fiecare pornire a programului." -#: flatcamGUI/FlatCAMGUI.py:3182 +#: flatcamGUI/FlatCAMGUI.py:3575 msgid "APP. LEVEL:" msgstr "Nivel aplic.:" -#: flatcamGUI/FlatCAMGUI.py:3183 +#: flatcamGUI/FlatCAMGUI.py:3576 msgid "" "Choose the default level of usage for FlatCAM.\n" "BASIC level -> reduced functionality, best for beginner's.\n" @@ -5213,31 +6273,31 @@ 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:3188 flatcamGUI/FlatCAMGUI.py:3792 +#: flatcamGUI/FlatCAMGUI.py:3581 flatcamGUI/FlatCAMGUI.py:4206 msgid "Basic" msgstr "Baza" -#: flatcamGUI/FlatCAMGUI.py:3189 +#: flatcamGUI/FlatCAMGUI.py:3582 msgid "Advanced" msgstr "Avansat" -#: flatcamGUI/FlatCAMGUI.py:3192 +#: flatcamGUI/FlatCAMGUI.py:3585 msgid "Languages:" msgstr "Traduceri:" -#: flatcamGUI/FlatCAMGUI.py:3193 +#: flatcamGUI/FlatCAMGUI.py:3586 msgid "Set the language used throughout FlatCAM." msgstr "Setează limba folosita pentru textele din FlatCAM." -#: flatcamGUI/FlatCAMGUI.py:3196 +#: flatcamGUI/FlatCAMGUI.py:3589 msgid "Apply Language" msgstr "Aplica Traducere" -#: flatcamGUI/FlatCAMGUI.py:3199 +#: flatcamGUI/FlatCAMGUI.py:3592 msgid "Shell at StartUp:" msgstr "Shell la pornire:" -#: flatcamGUI/FlatCAMGUI.py:3201 flatcamGUI/FlatCAMGUI.py:3206 +#: flatcamGUI/FlatCAMGUI.py:3594 flatcamGUI/FlatCAMGUI.py:3599 msgid "" "Check this box if you want the shell to\n" "start automatically at startup." @@ -5246,11 +6306,11 @@ msgstr "" "automata a ferestrei Shell (linia de comanda)\n" "la initializarea aplicaţiei." -#: flatcamGUI/FlatCAMGUI.py:3211 +#: flatcamGUI/FlatCAMGUI.py:3604 msgid "Version Check:" msgstr "Verificare versiune:" -#: flatcamGUI/FlatCAMGUI.py:3213 flatcamGUI/FlatCAMGUI.py:3218 +#: flatcamGUI/FlatCAMGUI.py:3606 flatcamGUI/FlatCAMGUI.py:3611 msgid "" "Check this box if you want to check\n" "for a new version automatically at startup." @@ -5259,11 +6319,11 @@ msgstr "" "daca exista o versiune mai noua,\n" "la pornirea aplicaţiei." -#: flatcamGUI/FlatCAMGUI.py:3223 +#: flatcamGUI/FlatCAMGUI.py:3616 msgid "Send Stats:" msgstr "Statistici:" -#: flatcamGUI/FlatCAMGUI.py:3225 flatcamGUI/FlatCAMGUI.py:3230 +#: flatcamGUI/FlatCAMGUI.py:3618 flatcamGUI/FlatCAMGUI.py:3623 msgid "" "Check this box if you agree to send anonymous\n" "stats automatically at startup, to help improve FlatCAM." @@ -5273,11 +6333,11 @@ msgstr "" "aplicaţia. In acest fel dezvoltatorii vor sti unde să se focalizeze\n" "in crearea de inbunatatiri." -#: flatcamGUI/FlatCAMGUI.py:3237 +#: flatcamGUI/FlatCAMGUI.py:3630 msgid "Pan Button:" msgstr "Buton Pan (mișcare):" -#: flatcamGUI/FlatCAMGUI.py:3238 +#: flatcamGUI/FlatCAMGUI.py:3631 msgid "" "Select the mouse button to use for panning:\n" "- MMB --> Middle Mouse Button\n" @@ -5287,35 +6347,35 @@ msgstr "" "- MMB - butonul din mijloc al mouse-ului\n" "- RMB - butonul in dreapta al mouse-ului." -#: flatcamGUI/FlatCAMGUI.py:3241 +#: flatcamGUI/FlatCAMGUI.py:3634 msgid "MMB" msgstr "MMB" -#: flatcamGUI/FlatCAMGUI.py:3242 +#: flatcamGUI/FlatCAMGUI.py:3635 msgid "RMB" msgstr "RMB" -#: flatcamGUI/FlatCAMGUI.py:3245 +#: flatcamGUI/FlatCAMGUI.py:3638 msgid "Multiple Sel:" msgstr "Sel. multipla:" -#: flatcamGUI/FlatCAMGUI.py:3246 +#: flatcamGUI/FlatCAMGUI.py:3639 msgid "Select the key used for multiple selection." msgstr "Selectează tasta folosita pentru selectia multipla." -#: flatcamGUI/FlatCAMGUI.py:3247 +#: flatcamGUI/FlatCAMGUI.py:3640 msgid "CTRL" msgstr "CTRL" -#: flatcamGUI/FlatCAMGUI.py:3248 +#: flatcamGUI/FlatCAMGUI.py:3641 msgid "SHIFT" msgstr "SHIFT" -#: flatcamGUI/FlatCAMGUI.py:3251 +#: flatcamGUI/FlatCAMGUI.py:3644 msgid "Project at StartUp:" msgstr "Proiect la pornire:" -#: flatcamGUI/FlatCAMGUI.py:3253 flatcamGUI/FlatCAMGUI.py:3258 +#: flatcamGUI/FlatCAMGUI.py:3646 flatcamGUI/FlatCAMGUI.py:3651 msgid "" "Check this box if you want the project/selected/tool tab area to\n" "to be shown automatically at startup." @@ -5323,25 +6383,25 @@ msgstr "" "Bifează aici daca dorești ca zona Notebook să fie\n" "afișată automat la pornire." -#: flatcamGUI/FlatCAMGUI.py:3263 +#: flatcamGUI/FlatCAMGUI.py:3656 msgid "Project AutoHide:" msgstr "Ascundere Proiect:" -#: flatcamGUI/FlatCAMGUI.py:3265 flatcamGUI/FlatCAMGUI.py:3271 +#: flatcamGUI/FlatCAMGUI.py:3658 flatcamGUI/FlatCAMGUI.py:3664 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 "" "Bifează daca dorești ca zona Notebook să fie ascunsă automat\n" -"când nu sunt obiecte incarcate și să fie afișată automat\n" -"când un obiect nou este creat/incarcat." +"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:3277 +#: flatcamGUI/FlatCAMGUI.py:3670 msgid "Enable ToolTips:" msgstr "Activează ToolTip-uri:" -#: flatcamGUI/FlatCAMGUI.py:3279 flatcamGUI/FlatCAMGUI.py:3284 +#: flatcamGUI/FlatCAMGUI.py:3672 flatcamGUI/FlatCAMGUI.py:3677 msgid "" "Check this box if you want to have toolTips displayed\n" "when hovering with mouse over items throughout the App." @@ -5349,11 +6409,31 @@ 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:3318 +#: flatcamGUI/FlatCAMGUI.py:3680 +msgid "Workers number:" +msgstr "Număr de worker's:" + +#: flatcamGUI/FlatCAMGUI.py:3682 flatcamGUI/FlatCAMGUI.py:3691 +msgid "" +"The number of Qthreads made available to the App.\n" +"A bigger number may finish the jobs more quickly but\n" +"depending on your computer speed, may make the App\n" +"unresponsive. Can have a value between 2 and 16.\n" +"Default value is 2.\n" +"After change, it will be applied at next App start." +msgstr "" +"Număarul de QThread-uri care sunt disponibile pt aplicatie.\n" +"Un număr mai mare va permite terminarea operatiilor mai rapida\n" +"dar in functie de cat de rapid este calculatorul, poate face ca aplicatia\n" +"sa devina temporar blocată. Poate lua o valoare intre 2 si 16.\n" +"Valoarea standard este 2.\n" +"Dupa schimbarea valoarii, se va aplica la următoarea pornire a aplicatiei." + +#: flatcamGUI/FlatCAMGUI.py:3732 msgid "Save Compressed Project" msgstr "Salvează Proiectul comprimat" -#: flatcamGUI/FlatCAMGUI.py:3320 +#: flatcamGUI/FlatCAMGUI.py:3734 msgid "" "Whether to save a compressed or uncompressed project.\n" "When checked it will save a compressed FlatCAM project." @@ -5362,11 +6442,11 @@ msgstr "" "Când este bifat aici, se va salva o arhiva a proiectului\n" "lucru care poate reduce dimensiunea semnificativ." -#: flatcamGUI/FlatCAMGUI.py:3331 +#: flatcamGUI/FlatCAMGUI.py:3745 msgid "Compression Level:" msgstr "Nivel compresie:" -#: flatcamGUI/FlatCAMGUI.py:3333 +#: flatcamGUI/FlatCAMGUI.py:3747 msgid "" "The level of compression used when saving\n" "a FlatCAM project. Higher value means better compression\n" @@ -5377,49 +6457,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:3359 flatcamGUI/FlatCAMGUI.py:3600 -#: flatcamGUI/FlatCAMGUI.py:4255 flatcamGUI/FlatCAMGUI.py:4579 -#: flatcamGUI/ObjectUI.py:150 flatcamGUI/ObjectUI.py:591 -#: flatcamGUI/ObjectUI.py:916 flatcamGUI/ObjectUI.py:1430 +#: flatcamGUI/FlatCAMGUI.py:3773 flatcamGUI/FlatCAMGUI.py:4014 +#: flatcamGUI/FlatCAMGUI.py:4669 flatcamGUI/FlatCAMGUI.py:4993 +#: 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:3366 flatcamGUI/FlatCAMGUI.py:3612 -#: flatcamGUI/ObjectUI.py:592 +#: flatcamGUI/FlatCAMGUI.py:3780 flatcamGUI/FlatCAMGUI.py:4026 +#: flatcamGUI/ObjectUI.py:506 msgid "Solid" msgstr "Solid" -#: flatcamGUI/FlatCAMGUI.py:3368 flatcamGUI/ObjectUI.py:158 +#: flatcamGUI/FlatCAMGUI.py:3782 flatcamGUI/ObjectUI.py:158 msgid "Solid color polygons." msgstr "Poligoane color solide." -#: flatcamGUI/FlatCAMGUI.py:3373 +#: flatcamGUI/FlatCAMGUI.py:3787 msgid "M-Color" msgstr "M-Color" -#: flatcamGUI/FlatCAMGUI.py:3375 flatcamGUI/ObjectUI.py:166 +#: flatcamGUI/FlatCAMGUI.py:3789 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:3380 flatcamGUI/FlatCAMGUI.py:3606 -#: flatcamGUI/FlatCAMGUI.py:4259 flatcamGUI/ObjectUI.py:172 +#: flatcamGUI/FlatCAMGUI.py:3794 flatcamGUI/FlatCAMGUI.py:4020 +#: flatcamGUI/FlatCAMGUI.py:4673 flatcamGUI/ObjectUI.py:172 msgid "Plot" msgstr "Afisează" -#: flatcamGUI/FlatCAMGUI.py:3382 flatcamGUI/FlatCAMGUI.py:4261 -#: flatcamGUI/ObjectUI.py:174 flatcamGUI/ObjectUI.py:632 -#: flatcamGUI/ObjectUI.py:962 flatcamGUI/ObjectUI.py:1517 +#: flatcamGUI/FlatCAMGUI.py:3796 flatcamGUI/FlatCAMGUI.py:4675 +#: 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:3387 flatcamGUI/FlatCAMGUI.py:4268 -#: flatcamGUI/FlatCAMGUI.py:4615 +#: flatcamGUI/FlatCAMGUI.py:3801 flatcamGUI/FlatCAMGUI.py:4682 +#: flatcamGUI/FlatCAMGUI.py:5029 msgid "Circle Steps:" msgstr "Aprox. Cerc" -#: flatcamGUI/FlatCAMGUI.py:3389 +#: flatcamGUI/FlatCAMGUI.py:3803 msgid "" "The number of circle steps for Gerber \n" "circular aperture linear approximation." @@ -5427,15 +6507,15 @@ msgstr "" "Numărul de segmente utilizate pentru\n" "aproximarea lineara a aperturilor Gerber circulare." -#: flatcamGUI/FlatCAMGUI.py:3404 +#: flatcamGUI/FlatCAMGUI.py:3818 msgid "Gerber Options" msgstr "Opțiuni Gerber" -#: flatcamGUI/FlatCAMGUI.py:3408 flatcamGUI/ObjectUI.py:337 +#: flatcamGUI/FlatCAMGUI.py:3822 flatcamGUI/ObjectUI.py:251 msgid "Isolation Routing:" msgstr "Izolare:" -#: flatcamGUI/FlatCAMGUI.py:3410 flatcamGUI/ObjectUI.py:339 +#: flatcamGUI/FlatCAMGUI.py:3824 flatcamGUI/ObjectUI.py:253 msgid "" "Create a Geometry object with\n" "toolpaths to cut outside polygons." @@ -5444,17 +6524,17 @@ msgstr "" "care să fie taiate in afara poligoanelor,\n" "urmărindu-le conturul." -#: flatcamGUI/FlatCAMGUI.py:3421 flatcamGUI/FlatCAMGUI.py:3978 -#: flatcamGUI/FlatCAMGUI.py:4903 flatcamGUI/ObjectUI.py:871 -#: flatcamGUI/ObjectUI.py:887 +#: flatcamGUI/FlatCAMGUI.py:3835 flatcamGUI/FlatCAMGUI.py:4392 +#: flatcamGUI/FlatCAMGUI.py:5317 flatcamGUI/ObjectUI.py:785 +#: flatcamGUI/ObjectUI.py:801 msgid "Diameter of the cutting tool." msgstr "Diametrul uneltei taietoare." -#: flatcamGUI/FlatCAMGUI.py:3428 +#: flatcamGUI/FlatCAMGUI.py:3842 msgid "Width (# passes):" msgstr "Latime(# treceri):" -#: flatcamGUI/FlatCAMGUI.py:3430 flatcamGUI/ObjectUI.py:361 +#: flatcamGUI/FlatCAMGUI.py:3844 flatcamGUI/ObjectUI.py:275 msgid "" "Width of the isolation gap in\n" "number (integer) of tool widths." @@ -5462,11 +6542,11 @@ msgstr "" "Lăţimea spatiului de izolare\n" "in număr intreg de grosimi ale uneltei." -#: flatcamGUI/FlatCAMGUI.py:3438 flatcamGUI/ObjectUI.py:369 +#: flatcamGUI/FlatCAMGUI.py:3852 flatcamGUI/ObjectUI.py:283 msgid "Pass overlap:" msgstr "Suprapunere:" -#: flatcamGUI/FlatCAMGUI.py:3440 flatcamGUI/ObjectUI.py:371 +#: flatcamGUI/FlatCAMGUI.py:3854 flatcamGUI/ObjectUI.py:285 #, python-format msgid "" "How much (fraction) of the tool width to overlap each tool pass.\n" @@ -5480,11 +6560,11 @@ msgstr "" "Exemplu:\n" "O valoare de 0.25 reprezinta o suprapunere de 25%% din diametrul uneltei." -#: flatcamGUI/FlatCAMGUI.py:3448 flatcamGUI/ObjectUI.py:381 +#: flatcamGUI/FlatCAMGUI.py:3862 flatcamGUI/ObjectUI.py:295 msgid "Milling Type:" msgstr "Tip Frezare:" -#: flatcamGUI/FlatCAMGUI.py:3450 flatcamGUI/ObjectUI.py:383 +#: flatcamGUI/FlatCAMGUI.py:3864 flatcamGUI/ObjectUI.py:297 msgid "" "Milling type:\n" "- climb / best for precision milling and to reduce tool usage\n" @@ -5495,28 +6575,28 @@ msgstr "" "uneltei\n" "- conventional -> pentru cazul când nu exista o compensare a 'backlash-ului'" -#: flatcamGUI/FlatCAMGUI.py:3455 flatcamGUI/ObjectUI.py:388 +#: flatcamGUI/FlatCAMGUI.py:3869 flatcamGUI/ObjectUI.py:302 msgid "Climb" msgstr "Urcare" -#: flatcamGUI/FlatCAMGUI.py:3456 flatcamGUI/ObjectUI.py:389 +#: flatcamGUI/FlatCAMGUI.py:3870 flatcamGUI/ObjectUI.py:303 msgid "Conv." msgstr "Conv." -#: flatcamGUI/FlatCAMGUI.py:3460 +#: flatcamGUI/FlatCAMGUI.py:3874 msgid "Combine Passes" msgstr "Combina" -#: flatcamGUI/FlatCAMGUI.py:3462 flatcamGUI/ObjectUI.py:395 +#: flatcamGUI/FlatCAMGUI.py:3876 flatcamGUI/ObjectUI.py:309 msgid "Combine all passes into one object" msgstr "Combina toate trecerile intr-un singur obiect" -#: flatcamGUI/FlatCAMGUI.py:3467 +#: flatcamGUI/FlatCAMGUI.py:3881 msgid "Clear non-copper:" msgstr "Curăță non-Cu:" -#: flatcamGUI/FlatCAMGUI.py:3469 flatcamGUI/FlatCAMGUI.py:4791 -#: flatcamGUI/ObjectUI.py:472 +#: flatcamGUI/FlatCAMGUI.py:3883 flatcamGUI/FlatCAMGUI.py:5205 +#: flatcamGUI/ObjectUI.py:386 msgid "" "Create a Geometry object with\n" "toolpaths to cut all non-copper regions." @@ -5525,12 +6605,12 @@ msgstr "" "care să curete de cupru toate zonele unde se doreste să nu \n" "fie cupru." -#: flatcamGUI/FlatCAMGUI.py:3478 flatcamGUI/FlatCAMGUI.py:3504 -#: flatcamGUI/ObjectUI.py:516 flatcamGUI/ObjectUI.py:550 +#: flatcamGUI/FlatCAMGUI.py:3892 flatcamGUI/FlatCAMGUI.py:3918 +#: flatcamGUI/ObjectUI.py:430 flatcamGUI/ObjectUI.py:464 msgid "Boundary Margin:" msgstr "Margine:" -#: flatcamGUI/FlatCAMGUI.py:3480 flatcamGUI/ObjectUI.py:518 +#: flatcamGUI/FlatCAMGUI.py:3894 flatcamGUI/ObjectUI.py:432 msgid "" "Specify the edge of the PCB\n" "by drawing a box around all\n" @@ -5541,11 +6621,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:3490 flatcamGUI/FlatCAMGUI.py:3513 +#: flatcamGUI/FlatCAMGUI.py:3904 flatcamGUI/FlatCAMGUI.py:3927 msgid "Rounded corners" msgstr "C. rotunjite" -#: flatcamGUI/FlatCAMGUI.py:3492 +#: flatcamGUI/FlatCAMGUI.py:3906 msgid "" "Creates a Geometry objects with polygons\n" "covering the copper-free areas of the PCB." @@ -5553,11 +6633,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:3498 flatcamGUI/ObjectUI.py:540 +#: flatcamGUI/FlatCAMGUI.py:3912 flatcamGUI/ObjectUI.py:454 msgid "Bounding Box:" msgstr "Forma înconjurătoare::" -#: flatcamGUI/FlatCAMGUI.py:3506 flatcamGUI/ObjectUI.py:552 +#: flatcamGUI/FlatCAMGUI.py:3920 flatcamGUI/ObjectUI.py:466 msgid "" "Distance of the edges of the box\n" "to the nearest polygon." @@ -5565,7 +6645,7 @@ msgstr "" "Distanta de la marginile formei înconjurătoare\n" "pana la cel mai apropiat poligon." -#: flatcamGUI/FlatCAMGUI.py:3515 flatcamGUI/ObjectUI.py:562 +#: flatcamGUI/FlatCAMGUI.py:3929 flatcamGUI/ObjectUI.py:476 msgid "" "If the bounding box is \n" "to have rounded corners\n" @@ -5575,15 +6655,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:3529 +#: flatcamGUI/FlatCAMGUI.py:3943 msgid "Gerber Adv. Options" msgstr "Opțiuni Av. Gerber" -#: flatcamGUI/FlatCAMGUI.py:3533 +#: flatcamGUI/FlatCAMGUI.py:3947 msgid "Advanced Param.:" msgstr "Param. avansati.:" -#: flatcamGUI/FlatCAMGUI.py:3535 +#: flatcamGUI/FlatCAMGUI.py:3949 msgid "" "A list of Gerber advanced parameters.\n" "Those parameters are available only for\n" @@ -5594,11 +6674,11 @@ msgstr "" "când este selectat Nivelul Avansat pentru\n" "aplicaţie in Preferințe - > General" -#: flatcamGUI/FlatCAMGUI.py:3545 flatcamGUI/ObjectUI.py:400 +#: flatcamGUI/FlatCAMGUI.py:3959 flatcamGUI/ObjectUI.py:314 msgid "\"Follow\"" msgstr "\"Urmareste\"" -#: flatcamGUI/FlatCAMGUI.py:3547 flatcamGUI/ObjectUI.py:402 +#: flatcamGUI/FlatCAMGUI.py:3961 flatcamGUI/ObjectUI.py:316 msgid "" "Generate a 'Follow' geometry.\n" "This means that it will cut through\n" @@ -5608,11 +6688,11 @@ msgstr "" "Mai exact, in loc să se genereze un poligon se va genera o 'linie'.\n" "In acest fel se taie prin mijlocul unui traseu și nu in jurul lui." -#: flatcamGUI/FlatCAMGUI.py:3555 +#: flatcamGUI/FlatCAMGUI.py:3969 msgid "Table Show/Hide" msgstr "Arata/Ascunde Tabela" -#: flatcamGUI/FlatCAMGUI.py:3557 +#: flatcamGUI/FlatCAMGUI.py:3971 msgid "" "Toggle the display of the Gerber Apertures Table.\n" "Also, on hide, it will delete all mark shapes\n" @@ -5622,11 +6702,11 @@ msgstr "" "când se ascunde aceasta, se vor șterge și toate\n" "posibil afisatele marcaje ale aperturilor." -#: flatcamGUI/FlatCAMGUI.py:3565 +#: flatcamGUI/FlatCAMGUI.py:3979 msgid "Ap. Scale Factor:" msgstr "Factor scalare ap.:" -#: flatcamGUI/FlatCAMGUI.py:3567 flatcamGUI/ObjectUI.py:269 +#: flatcamGUI/FlatCAMGUI.py:3981 msgid "" "Change the size of the selected apertures.\n" "Factor by which to multiply\n" @@ -5636,11 +6716,11 @@ msgstr "" "Factor cu care se multiplica geometriile\n" "acestui obiect." -#: flatcamGUI/FlatCAMGUI.py:3577 +#: flatcamGUI/FlatCAMGUI.py:3991 msgid "Ap. Buffer Factor:" msgstr "Factor bufer ap.:" -#: flatcamGUI/FlatCAMGUI.py:3579 flatcamGUI/ObjectUI.py:290 +#: flatcamGUI/FlatCAMGUI.py:3993 msgid "" "Change the size of the selected apertures.\n" "Factor by which to expand/shrink\n" @@ -5650,15 +6730,15 @@ msgstr "" "Valoare cu care se mareste/micsorează\n" "geometriile acestui obiect." -#: flatcamGUI/FlatCAMGUI.py:3597 +#: flatcamGUI/FlatCAMGUI.py:4011 msgid "Excellon General" msgstr "Excellon General" -#: flatcamGUI/FlatCAMGUI.py:3619 +#: flatcamGUI/FlatCAMGUI.py:4033 msgid "Excellon Format:" msgstr "Formatul Excellon" -#: flatcamGUI/FlatCAMGUI.py:3621 +#: flatcamGUI/FlatCAMGUI.py:4035 msgid "" "The NC drill files, usually named Excellon files\n" "are files that can be found in different formats.\n" @@ -5704,18 +6784,18 @@ msgstr "" "Sprint Layout 2:4 INCH LZ\n" "KiCAD 3:5 INCH TZ" -#: flatcamGUI/FlatCAMGUI.py:3646 +#: flatcamGUI/FlatCAMGUI.py:4060 msgid "INCH:" msgstr "Inch" -#: flatcamGUI/FlatCAMGUI.py:3649 +#: flatcamGUI/FlatCAMGUI.py:4063 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:3657 flatcamGUI/FlatCAMGUI.py:3690 -#: flatcamGUI/FlatCAMGUI.py:4167 +#: flatcamGUI/FlatCAMGUI.py:4071 flatcamGUI/FlatCAMGUI.py:4104 +#: flatcamGUI/FlatCAMGUI.py:4581 msgid "" "This numbers signify the number of digits in\n" "the whole part of Excellon coordinates." @@ -5723,8 +6803,8 @@ msgstr "" "Acest număr reprezinta numărul de digiti din partea\n" "intreaga a coordonatelor Excellon." -#: flatcamGUI/FlatCAMGUI.py:3671 flatcamGUI/FlatCAMGUI.py:3704 -#: flatcamGUI/FlatCAMGUI.py:4181 +#: flatcamGUI/FlatCAMGUI.py:4085 flatcamGUI/FlatCAMGUI.py:4118 +#: flatcamGUI/FlatCAMGUI.py:4595 msgid "" "This numbers signify the number of digits in\n" "the decimal part of Excellon coordinates." @@ -5732,21 +6812,21 @@ msgstr "" "Acest număr reprezinta numărul de digiti din partea\n" "zecimala a coordonatelor Excellon." -#: flatcamGUI/FlatCAMGUI.py:3679 +#: flatcamGUI/FlatCAMGUI.py:4093 msgid "METRIC:" msgstr "Metric" -#: flatcamGUI/FlatCAMGUI.py:3682 +#: flatcamGUI/FlatCAMGUI.py:4096 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:3713 +#: flatcamGUI/FlatCAMGUI.py:4127 msgid "Default Zeros:" msgstr "Suprimare Zero:" -#: flatcamGUI/FlatCAMGUI.py:3716 flatcamGUI/FlatCAMGUI.py:4216 +#: flatcamGUI/FlatCAMGUI.py:4130 flatcamGUI/FlatCAMGUI.py:4630 msgid "" "This sets the type of Excellon zeros.\n" "If LZ then Leading Zeros are kept and\n" @@ -5762,15 +6842,15 @@ msgstr "" "cele de la final sunt pastrate.\n" "(Invers fata de fişierele Gerber)." -#: flatcamGUI/FlatCAMGUI.py:3724 flatcamGUI/FlatCAMGUI.py:4223 +#: flatcamGUI/FlatCAMGUI.py:4138 flatcamGUI/FlatCAMGUI.py:4637 msgid "LZ" msgstr "LZ" -#: flatcamGUI/FlatCAMGUI.py:3725 flatcamGUI/FlatCAMGUI.py:4224 +#: flatcamGUI/FlatCAMGUI.py:4139 flatcamGUI/FlatCAMGUI.py:4638 msgid "TZ" msgstr "TZ" -#: flatcamGUI/FlatCAMGUI.py:3727 +#: flatcamGUI/FlatCAMGUI.py:4141 msgid "" "This sets the default type of Excellon zeros.\n" "If it is not detected in the parsed file the value here\n" @@ -5789,11 +6869,11 @@ msgstr "" "cele de la final sunt pastrate.\n" "(Invers fata de fişierele Gerber)." -#: flatcamGUI/FlatCAMGUI.py:3741 +#: flatcamGUI/FlatCAMGUI.py:4155 msgid "Default Units:" msgstr "Unitati Excellon:" -#: flatcamGUI/FlatCAMGUI.py:3744 +#: flatcamGUI/FlatCAMGUI.py:4158 msgid "" "This sets the default units of Excellon files.\n" "If it is not detected in the parsed file the value here\n" @@ -5807,15 +6887,15 @@ msgstr "" "(unde se gasesc unitatile) și atunci se va folosi\n" "aceasta valoare." -#: flatcamGUI/FlatCAMGUI.py:3752 flatcamGUI/FlatCAMGUI.py:4143 +#: flatcamGUI/FlatCAMGUI.py:4166 flatcamGUI/FlatCAMGUI.py:4557 msgid "INCH" msgstr "Inch" -#: flatcamGUI/FlatCAMGUI.py:3753 flatcamGUI/FlatCAMGUI.py:4144 +#: flatcamGUI/FlatCAMGUI.py:4167 flatcamGUI/FlatCAMGUI.py:4558 msgid "MM" msgstr "MM" -#: flatcamGUI/FlatCAMGUI.py:3755 +#: flatcamGUI/FlatCAMGUI.py:4169 msgid "" "This sets the units of Excellon files.\n" "Some Excellon files don't have an header\n" @@ -5828,15 +6908,15 @@ msgstr "" "(unde se gasesc unitatile) și atunci se va folosi\n" "aceasta valoare." -#: flatcamGUI/FlatCAMGUI.py:3771 +#: flatcamGUI/FlatCAMGUI.py:4185 msgid "Excellon Optimization:" msgstr "Optimizarea traseului Excellon:" -#: flatcamGUI/FlatCAMGUI.py:3778 +#: flatcamGUI/FlatCAMGUI.py:4192 msgid "Algorithm: " msgstr "Algoritm:" -#: flatcamGUI/FlatCAMGUI.py:3781 flatcamGUI/FlatCAMGUI.py:3794 +#: flatcamGUI/FlatCAMGUI.py:4195 flatcamGUI/FlatCAMGUI.py:4208 msgid "" "This sets the optimization type for the Excellon drill path.\n" "If MH is checked then Google OR-Tools algorithm with MetaHeuristic\n" @@ -5860,15 +6940,15 @@ msgstr "" "care nu este compatibila cu pachetul OR Tools și in acest caz se foloseşte\n" "algoritmul default: Travelling Salesman (vanzatorul ambulant)." -#: flatcamGUI/FlatCAMGUI.py:3791 +#: flatcamGUI/FlatCAMGUI.py:4205 msgid "MH" msgstr "MH" -#: flatcamGUI/FlatCAMGUI.py:3806 +#: flatcamGUI/FlatCAMGUI.py:4220 msgid "Optimization Time: " msgstr "Durata optimiz.:" -#: flatcamGUI/FlatCAMGUI.py:3809 +#: flatcamGUI/FlatCAMGUI.py:4223 msgid "" "When OR-Tools Metaheuristic (MH) is enabled there is a\n" "maximum threshold for how much time is spent doing the\n" @@ -5879,15 +6959,15 @@ msgstr "" "reprezinta cat timp se sta pentru fiecare element in\n" "incercarea de a afla calea optima." -#: flatcamGUI/FlatCAMGUI.py:3850 +#: flatcamGUI/FlatCAMGUI.py:4264 msgid "Excellon Options" msgstr "Opțiuni Excellon" -#: flatcamGUI/FlatCAMGUI.py:3853 flatcamGUI/ObjectUI.py:670 +#: flatcamGUI/FlatCAMGUI.py:4267 flatcamGUI/ObjectUI.py:584 msgid "Create CNC Job" msgstr "Crează CNCJob" -#: flatcamGUI/FlatCAMGUI.py:3855 +#: flatcamGUI/FlatCAMGUI.py:4269 msgid "" "Parameters used to create a CNC Job object\n" "for this drill object." @@ -5895,13 +6975,13 @@ msgstr "" "Parametrii folositi pentru a crea un obiect FlatCAM tip CNCJob\n" "din acest obiect Excellon." -#: flatcamGUI/FlatCAMGUI.py:3863 flatcamGUI/FlatCAMGUI.py:4319 -#: flatcamGUI/FlatCAMGUI.py:5318 flatcamGUI/ObjectUI.py:681 -#: flatcamGUI/ObjectUI.py:1145 flatcamTools/ToolCalculators.py:108 +#: flatcamGUI/FlatCAMGUI.py:4277 flatcamGUI/FlatCAMGUI.py:4733 +#: flatcamGUI/FlatCAMGUI.py:5741 flatcamGUI/ObjectUI.py:595 +#: flatcamGUI/ObjectUI.py:1059 flatcamTools/ToolCalculators.py:108 msgid "Cut Z:" msgstr "Z tăiere:" -#: flatcamGUI/FlatCAMGUI.py:3865 flatcamGUI/ObjectUI.py:683 +#: flatcamGUI/FlatCAMGUI.py:4279 flatcamGUI/ObjectUI.py:597 msgid "" "Drill depth (negative)\n" "below the copper surface." @@ -5910,12 +6990,12 @@ msgstr "" "Daca se foloseşte o val. pozitivă, aplicaţia\n" "va incerca in mod automat să schimbe semnul." -#: flatcamGUI/FlatCAMGUI.py:3872 flatcamGUI/FlatCAMGUI.py:4352 -#: flatcamGUI/ObjectUI.py:691 flatcamGUI/ObjectUI.py:1181 +#: flatcamGUI/FlatCAMGUI.py:4286 flatcamGUI/FlatCAMGUI.py:4766 +#: flatcamGUI/ObjectUI.py:605 flatcamGUI/ObjectUI.py:1095 msgid "Travel Z:" msgstr "Z Deplasare:" -#: flatcamGUI/FlatCAMGUI.py:3874 flatcamGUI/ObjectUI.py:693 +#: flatcamGUI/FlatCAMGUI.py:4288 flatcamGUI/ObjectUI.py:607 msgid "" "Tool height when travelling\n" "across the XY plane." @@ -5924,12 +7004,12 @@ msgstr "" "in planul X-Y, fără a efectua taieri, adica\n" "in afara materialului." -#: flatcamGUI/FlatCAMGUI.py:3882 flatcamGUI/FlatCAMGUI.py:4362 +#: flatcamGUI/FlatCAMGUI.py:4296 flatcamGUI/FlatCAMGUI.py:4776 msgid "Tool change:" msgstr "Schimbare unealtă:" -#: flatcamGUI/FlatCAMGUI.py:3884 flatcamGUI/FlatCAMGUI.py:4364 -#: flatcamGUI/ObjectUI.py:703 +#: flatcamGUI/FlatCAMGUI.py:4298 flatcamGUI/FlatCAMGUI.py:4778 +#: flatcamGUI/ObjectUI.py:617 msgid "" "Include tool-change sequence\n" "in G-Code (Pause for tool change)." @@ -5938,11 +7018,11 @@ msgstr "" "in codul G-Code (pauza pentru schimbare unealtă).\n" "De obicei este folosita comanda G-Code M6." -#: flatcamGUI/FlatCAMGUI.py:3891 flatcamGUI/FlatCAMGUI.py:4372 +#: flatcamGUI/FlatCAMGUI.py:4305 flatcamGUI/FlatCAMGUI.py:4786 msgid "Toolchange Z:" msgstr "Z schimb. unealtă:" -#: flatcamGUI/FlatCAMGUI.py:3893 flatcamGUI/FlatCAMGUI.py:4374 +#: flatcamGUI/FlatCAMGUI.py:4307 flatcamGUI/FlatCAMGUI.py:4788 msgid "Toolchange Z position." msgstr "" "Înălţimea la care se efectuează schimbarea uneltei.\n" @@ -5950,11 +7030,11 @@ msgstr "" "'toolchanger' automat sau acolo unde utilizatorul\n" "schimba unealtă manual." -#: flatcamGUI/FlatCAMGUI.py:3899 +#: flatcamGUI/FlatCAMGUI.py:4313 msgid "Feedrate:" msgstr "Feedrate:" -#: flatcamGUI/FlatCAMGUI.py:3901 +#: flatcamGUI/FlatCAMGUI.py:4315 msgid "" "Tool speed while drilling\n" "(in units per minute)." @@ -5962,12 +7042,12 @@ 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:3909 +#: flatcamGUI/FlatCAMGUI.py:4323 msgid "Spindle Speed:" msgstr "Viteza Motor:" -#: flatcamGUI/FlatCAMGUI.py:3911 flatcamGUI/FlatCAMGUI.py:4404 -#: flatcamGUI/ObjectUI.py:767 +#: flatcamGUI/FlatCAMGUI.py:4325 flatcamGUI/FlatCAMGUI.py:4818 +#: flatcamGUI/ObjectUI.py:681 msgid "" "Speed of the spindle\n" "in RPM (optional)" @@ -5977,13 +7057,13 @@ msgstr "" "Acest parametru este optional și se poate lasa gol\n" "daca nu se foloseşte." -#: flatcamGUI/FlatCAMGUI.py:3919 flatcamGUI/FlatCAMGUI.py:4412 -#: flatcamGUI/ObjectUI.py:775 flatcamGUI/ObjectUI.py:1304 +#: flatcamGUI/FlatCAMGUI.py:4333 flatcamGUI/FlatCAMGUI.py:4826 +#: flatcamGUI/ObjectUI.py:689 flatcamGUI/ObjectUI.py:1218 msgid "Dwell:" msgstr "Pauza:" -#: flatcamGUI/FlatCAMGUI.py:3921 flatcamGUI/FlatCAMGUI.py:4414 -#: flatcamGUI/ObjectUI.py:777 flatcamGUI/ObjectUI.py:1307 +#: flatcamGUI/FlatCAMGUI.py:4335 flatcamGUI/FlatCAMGUI.py:4828 +#: flatcamGUI/ObjectUI.py:691 flatcamGUI/ObjectUI.py:1221 msgid "" "Pause to allow the spindle to reach its\n" "speed before cutting." @@ -5991,21 +7071,21 @@ msgstr "" "O pauza care permite motorului să ajunga la turatia specificata,\n" "inainte de a incepe mișcarea spre poziţia de tăiere (găurire)." -#: flatcamGUI/FlatCAMGUI.py:3924 flatcamGUI/FlatCAMGUI.py:4417 +#: flatcamGUI/FlatCAMGUI.py:4338 flatcamGUI/FlatCAMGUI.py:4831 msgid "Duration:" msgstr "Durata:" -#: flatcamGUI/FlatCAMGUI.py:3926 flatcamGUI/FlatCAMGUI.py:4419 -#: flatcamGUI/ObjectUI.py:782 flatcamGUI/ObjectUI.py:1314 +#: flatcamGUI/FlatCAMGUI.py:4340 flatcamGUI/FlatCAMGUI.py:4833 +#: 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:3938 flatcamGUI/FlatCAMGUI.py:4429 -#: flatcamGUI/ObjectUI.py:790 +#: flatcamGUI/FlatCAMGUI.py:4352 flatcamGUI/FlatCAMGUI.py:4843 +#: flatcamGUI/ObjectUI.py:704 msgid "Postprocessor:" msgstr "Postprocesor:" -#: flatcamGUI/FlatCAMGUI.py:3940 +#: flatcamGUI/FlatCAMGUI.py:4354 msgid "" "The postprocessor file that dictates\n" "gcode output." @@ -6014,11 +7094,11 @@ msgstr "" "respecte un anumit format care să fie inteles de diverse\n" "utilaje. Este responsabil de 'personalizarea' G-Code." -#: flatcamGUI/FlatCAMGUI.py:3950 +#: flatcamGUI/FlatCAMGUI.py:4364 msgid "Gcode: " msgstr "G-Code:" -#: flatcamGUI/FlatCAMGUI.py:3952 +#: flatcamGUI/FlatCAMGUI.py:4366 msgid "" "Choose what to use for GCode generation:\n" "'Drills', 'Slots' or 'Both'.\n" @@ -6032,55 +7112,55 @@ msgstr "" "Când se alege Sloturi sau Ambele, sloturile vor fi convertite in serii de " "găuri." -#: flatcamGUI/FlatCAMGUI.py:3957 flatcamGUI/ObjectUI.py:642 -#: flatcamGUI/ObjectUI.py:838 +#: flatcamGUI/FlatCAMGUI.py:4371 flatcamGUI/ObjectUI.py:556 +#: flatcamGUI/ObjectUI.py:752 msgid "Drills" msgstr "Găuri" -#: flatcamGUI/FlatCAMGUI.py:3958 flatcamGUI/ObjectUI.py:642 -#: flatcamGUI/ObjectUI.py:839 +#: flatcamGUI/FlatCAMGUI.py:4372 flatcamGUI/ObjectUI.py:556 +#: flatcamGUI/ObjectUI.py:753 msgid "Slots" msgstr "Sloturi" -#: flatcamGUI/FlatCAMGUI.py:3959 flatcamGUI/ObjectUI.py:840 +#: flatcamGUI/FlatCAMGUI.py:4373 flatcamGUI/ObjectUI.py:754 msgid "Both" msgstr "Ambele" -#: flatcamGUI/FlatCAMGUI.py:3968 flatcamGUI/ObjectUI.py:855 +#: flatcamGUI/FlatCAMGUI.py:4382 flatcamGUI/ObjectUI.py:769 msgid "Mill Holes" msgstr "Frezare găuri" -#: flatcamGUI/FlatCAMGUI.py:3970 flatcamGUI/ObjectUI.py:857 +#: flatcamGUI/FlatCAMGUI.py:4384 flatcamGUI/ObjectUI.py:771 msgid "Create Geometry for milling holes." msgstr "Crează un obiect tip Geometrie pentru frezarea găurilor." -#: flatcamGUI/FlatCAMGUI.py:3976 +#: flatcamGUI/FlatCAMGUI.py:4390 msgid "Drill Tool dia:" msgstr "Dia. Burghiu Găurire:" -#: flatcamGUI/FlatCAMGUI.py:3983 +#: flatcamGUI/FlatCAMGUI.py:4397 msgid "Slot Tool dia:" msgstr "Dia. Freza Slot:" -#: flatcamGUI/FlatCAMGUI.py:3985 +#: flatcamGUI/FlatCAMGUI.py:4399 msgid "" "Diameter of the cutting tool\n" "when milling slots." msgstr "Diametrul frezei când se frezează sloturile." -#: flatcamGUI/FlatCAMGUI.py:3997 +#: flatcamGUI/FlatCAMGUI.py:4411 msgid "Defaults" msgstr "Val. Implicite" -#: flatcamGUI/FlatCAMGUI.py:4010 +#: flatcamGUI/FlatCAMGUI.py:4424 msgid "Excellon Adv. Options" msgstr "Opțiuni Avans. Excellon" -#: flatcamGUI/FlatCAMGUI.py:4016 flatcamGUI/FlatCAMGUI.py:4452 +#: flatcamGUI/FlatCAMGUI.py:4430 flatcamGUI/FlatCAMGUI.py:4866 msgid "Advanced Options:" msgstr "Opțiuni avansate:" -#: flatcamGUI/FlatCAMGUI.py:4018 +#: flatcamGUI/FlatCAMGUI.py:4432 msgid "" "Parameters used to create a CNC Job object\n" "for this drill object that are shown when App Level is Advanced." @@ -6089,11 +7169,11 @@ msgstr "" "pt acest obiect Excellon, parametri care sunt disponibili\n" "doar in modul Avansat al aplicaţiei." -#: flatcamGUI/FlatCAMGUI.py:4026 +#: flatcamGUI/FlatCAMGUI.py:4440 msgid "Offset Z:" msgstr "Z ofset:" -#: flatcamGUI/FlatCAMGUI.py:4028 flatcamGUI/ObjectUI.py:660 +#: flatcamGUI/FlatCAMGUI.py:4442 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" @@ -6106,20 +7186,20 @@ msgstr "" "Valoarea de aici efectuează o compensare asupra\n" "parametrului >Z tăiere<." -#: flatcamGUI/FlatCAMGUI.py:4035 flatcamGUI/FlatCAMGUI.py:4463 +#: flatcamGUI/FlatCAMGUI.py:4449 flatcamGUI/FlatCAMGUI.py:4877 msgid "Toolchange X,Y:" msgstr "X,Y schimb. unealtă:" -#: flatcamGUI/FlatCAMGUI.py:4037 flatcamGUI/FlatCAMGUI.py:4465 +#: flatcamGUI/FlatCAMGUI.py:4451 flatcamGUI/FlatCAMGUI.py:4879 msgid "Toolchange X,Y position." msgstr "Poziţia X,Y in format (x,y) unde se face schimbarea uneltei." -#: flatcamGUI/FlatCAMGUI.py:4043 flatcamGUI/FlatCAMGUI.py:4472 -#: flatcamGUI/ObjectUI.py:720 +#: flatcamGUI/FlatCAMGUI.py:4457 flatcamGUI/FlatCAMGUI.py:4886 +#: flatcamGUI/ObjectUI.py:634 msgid "Start move Z:" msgstr "Z pornire:" -#: flatcamGUI/FlatCAMGUI.py:4045 +#: flatcamGUI/FlatCAMGUI.py:4459 msgid "" "Height of the tool just after start.\n" "Delete the value if you don't need this feature." @@ -6127,23 +7207,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:4052 flatcamGUI/FlatCAMGUI.py:4482 -#: flatcamGUI/ObjectUI.py:730 flatcamGUI/ObjectUI.py:1227 +#: flatcamGUI/FlatCAMGUI.py:4466 flatcamGUI/FlatCAMGUI.py:4896 +#: flatcamGUI/ObjectUI.py:644 flatcamGUI/ObjectUI.py:1141 msgid "End move Z:" msgstr "Z oprire:" -#: flatcamGUI/FlatCAMGUI.py:4054 flatcamGUI/FlatCAMGUI.py:4484 +#: flatcamGUI/FlatCAMGUI.py:4468 flatcamGUI/FlatCAMGUI.py:4898 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:4061 flatcamGUI/FlatCAMGUI.py:4492 -#: flatcamGUI/ObjectUI.py:751 +#: flatcamGUI/FlatCAMGUI.py:4475 flatcamGUI/FlatCAMGUI.py:4906 +#: flatcamGUI/ObjectUI.py:665 msgid "Feedrate Rapids:" msgstr "Feedrate rapizi:" -#: flatcamGUI/FlatCAMGUI.py:4063 flatcamGUI/ObjectUI.py:753 +#: flatcamGUI/FlatCAMGUI.py:4477 flatcamGUI/ObjectUI.py:667 msgid "" "Tool speed while drilling\n" "(in units per minute).\n" @@ -6156,13 +7236,13 @@ msgstr "" "printerul 3D Marlin, implicit când se foloseşte fişierul\n" "postprocesor: Marlin. Ignora aceasta parametru in rest." -#: flatcamGUI/FlatCAMGUI.py:4074 flatcamGUI/FlatCAMGUI.py:4516 -#: flatcamGUI/ObjectUI.py:801 flatcamGUI/ObjectUI.py:1336 +#: flatcamGUI/FlatCAMGUI.py:4488 flatcamGUI/FlatCAMGUI.py:4930 +#: flatcamGUI/ObjectUI.py:715 flatcamGUI/ObjectUI.py:1250 msgid "Probe Z depth:" msgstr "Z sonda:" -#: flatcamGUI/FlatCAMGUI.py:4076 flatcamGUI/FlatCAMGUI.py:4518 -#: flatcamGUI/ObjectUI.py:803 flatcamGUI/ObjectUI.py:1339 +#: flatcamGUI/FlatCAMGUI.py:4490 flatcamGUI/FlatCAMGUI.py:4932 +#: 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." @@ -6170,21 +7250,21 @@ msgstr "" "Adâncimea maxima la care este permis sondei să coboare.\n" "Are o valoare negativă, in unitatile curente." -#: flatcamGUI/FlatCAMGUI.py:4084 flatcamGUI/FlatCAMGUI.py:4526 -#: flatcamGUI/ObjectUI.py:813 flatcamGUI/ObjectUI.py:1350 +#: flatcamGUI/FlatCAMGUI.py:4498 flatcamGUI/FlatCAMGUI.py:4940 +#: flatcamGUI/ObjectUI.py:727 flatcamGUI/ObjectUI.py:1264 msgid "Feedrate Probe:" msgstr "Feedrate sonda:" -#: flatcamGUI/FlatCAMGUI.py:4086 flatcamGUI/FlatCAMGUI.py:4528 -#: flatcamGUI/ObjectUI.py:815 flatcamGUI/ObjectUI.py:1353 +#: flatcamGUI/FlatCAMGUI.py:4500 flatcamGUI/FlatCAMGUI.py:4942 +#: 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:4092 flatcamGUI/FlatCAMGUI.py:4535 +#: flatcamGUI/FlatCAMGUI.py:4506 flatcamGUI/FlatCAMGUI.py:4949 msgid "Fast Plunge:" msgstr "Plonjare rapida:" -#: flatcamGUI/FlatCAMGUI.py:4094 flatcamGUI/FlatCAMGUI.py:4537 +#: flatcamGUI/FlatCAMGUI.py:4508 flatcamGUI/FlatCAMGUI.py:4951 msgid "" "By checking this, the vertical move from\n" "Z_Toolchange to Z_move is done with G0,\n" @@ -6201,11 +7281,11 @@ msgstr "" "schimba\n" "unealta. Daca aveti ceva plasat sub unealtă ceva se va strica." -#: flatcamGUI/FlatCAMGUI.py:4103 +#: flatcamGUI/FlatCAMGUI.py:4517 msgid "Fast Retract:" msgstr "Retragere rapida:" -#: flatcamGUI/FlatCAMGUI.py:4105 +#: flatcamGUI/FlatCAMGUI.py:4519 msgid "" "Exit hole strategy.\n" " - When uncheked, while exiting the drilled hole the drill bit\n" @@ -6224,15 +7304,15 @@ msgstr "" "adâncimea\n" "de deplasare cu viteza maxima G0, intr-o singură mișcare." -#: flatcamGUI/FlatCAMGUI.py:4124 +#: flatcamGUI/FlatCAMGUI.py:4538 msgid "Excellon Export" msgstr "Export Excellon" -#: flatcamGUI/FlatCAMGUI.py:4127 +#: flatcamGUI/FlatCAMGUI.py:4541 msgid "Export Options:" msgstr "Opțiuni Export::" -#: flatcamGUI/FlatCAMGUI.py:4129 +#: flatcamGUI/FlatCAMGUI.py:4543 msgid "" "The parameters set here are used in the file exported\n" "when using the File -> Export -> Export Excellon menu entry." @@ -6241,19 +7321,19 @@ msgstr "" "se exporta un fişier Excellon folosind:\n" "File -> Exporta -> Exporta Excellon" -#: flatcamGUI/FlatCAMGUI.py:4138 +#: flatcamGUI/FlatCAMGUI.py:4552 msgid "Units:" msgstr "Unitati:" -#: flatcamGUI/FlatCAMGUI.py:4140 flatcamGUI/FlatCAMGUI.py:4146 +#: flatcamGUI/FlatCAMGUI.py:4554 flatcamGUI/FlatCAMGUI.py:4560 msgid "The units used in the Excellon file." msgstr "Unitatile de masura folosite in fişierul Excellon." -#: flatcamGUI/FlatCAMGUI.py:4152 +#: flatcamGUI/FlatCAMGUI.py:4566 msgid "Int/Decimals:" msgstr "Int/Zecimale:" -#: flatcamGUI/FlatCAMGUI.py:4154 +#: flatcamGUI/FlatCAMGUI.py:4568 msgid "" "The NC drill files, usually named Excellon files\n" "are files that can be found in different formats.\n" @@ -6265,11 +7345,11 @@ msgstr "" "Aici se setează formatul Excellon când nu se utilizează\n" "coordonate cu zecimale." -#: flatcamGUI/FlatCAMGUI.py:4190 +#: flatcamGUI/FlatCAMGUI.py:4604 msgid "Format:" msgstr "Format:" -#: flatcamGUI/FlatCAMGUI.py:4192 flatcamGUI/FlatCAMGUI.py:4202 +#: flatcamGUI/FlatCAMGUI.py:4606 flatcamGUI/FlatCAMGUI.py:4616 msgid "" "Select the kind of coordinates format used.\n" "Coordinates can be saved with decimal point or without.\n" @@ -6288,19 +7368,19 @@ msgstr "" "- LZ = zerourile prefix sunt pastrate și cele sufix eliminate\n" "- TZ = zerourile prefix sunt eliminate și cele sufix pastrate." -#: flatcamGUI/FlatCAMGUI.py:4199 +#: flatcamGUI/FlatCAMGUI.py:4613 msgid "Decimal" msgstr "Cu dec." -#: flatcamGUI/FlatCAMGUI.py:4200 +#: flatcamGUI/FlatCAMGUI.py:4614 msgid "No-Decimal" msgstr "Fără dec." -#: flatcamGUI/FlatCAMGUI.py:4213 +#: flatcamGUI/FlatCAMGUI.py:4627 msgid "Zeros:" msgstr "Zero-uri:" -#: flatcamGUI/FlatCAMGUI.py:4226 +#: flatcamGUI/FlatCAMGUI.py:4640 msgid "" "This sets the default type of Excellon zeros.\n" "If LZ then Leading Zeros are kept and\n" @@ -6312,11 +7392,11 @@ msgstr "" "- LZ = zerourile prefix sunt pastrate și cele sufix eliminate\n" "- TZ = zerourile prefix sunt eliminate și cele sufix pastrate." -#: flatcamGUI/FlatCAMGUI.py:4252 +#: flatcamGUI/FlatCAMGUI.py:4666 msgid "Geometry General" msgstr "Geometrie General" -#: flatcamGUI/FlatCAMGUI.py:4270 +#: flatcamGUI/FlatCAMGUI.py:4684 msgid "" "The number of circle steps for Geometry \n" "circle and arc shapes linear approximation." @@ -6324,29 +7404,29 @@ msgstr "" "Numărul de segmente utilizate pentru\n" "aproximarea lineara a Geometriilor circulare." -#: flatcamGUI/FlatCAMGUI.py:4278 +#: flatcamGUI/FlatCAMGUI.py:4692 msgid "Tools" msgstr "Unelte" -#: flatcamGUI/FlatCAMGUI.py:4285 +#: flatcamGUI/FlatCAMGUI.py:4699 msgid "Tool dia: " msgstr "Dia Unealta:" -#: flatcamGUI/FlatCAMGUI.py:4287 +#: flatcamGUI/FlatCAMGUI.py:4701 msgid "" "The diameter of the cutting\n" "tool.." msgstr "Diametrul uneltei taietoare ..." -#: flatcamGUI/FlatCAMGUI.py:4302 +#: flatcamGUI/FlatCAMGUI.py:4716 msgid "Geometry Options" msgstr "Opțiuni Geometrie" -#: flatcamGUI/FlatCAMGUI.py:4307 +#: flatcamGUI/FlatCAMGUI.py:4721 msgid "Create CNC Job:" msgstr "Crează CNCJob:" -#: flatcamGUI/FlatCAMGUI.py:4309 +#: flatcamGUI/FlatCAMGUI.py:4723 msgid "" "Create a CNC Job object\n" "tracing the contours of this\n" @@ -6355,7 +7435,7 @@ msgstr "" "Crează un obiect CNCJob care urmareste conturul\n" "acestui obiect tip Geometrie." -#: flatcamGUI/FlatCAMGUI.py:4321 flatcamGUI/ObjectUI.py:1148 +#: flatcamGUI/FlatCAMGUI.py:4735 flatcamGUI/ObjectUI.py:1062 msgid "" "Cutting depth (negative)\n" "below the copper surface." @@ -6363,21 +7443,21 @@ msgstr "" "Adâncimea la care se taie sub suprafata de cupru.\n" "Valoare negativă." -#: flatcamGUI/FlatCAMGUI.py:4329 +#: flatcamGUI/FlatCAMGUI.py:4743 msgid "Multidepth" msgstr "MultiPas" -#: flatcamGUI/FlatCAMGUI.py:4331 +#: flatcamGUI/FlatCAMGUI.py:4745 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:4336 +#: flatcamGUI/FlatCAMGUI.py:4750 msgid "Depth/Pass:" msgstr "Adanc./Trecere" -#: flatcamGUI/FlatCAMGUI.py:4338 +#: flatcamGUI/FlatCAMGUI.py:4752 msgid "" "The depth to cut on each pass,\n" "when multidepth is enabled.\n" @@ -6390,7 +7470,7 @@ msgstr "" "Valoarea este pozitivă desi reprezinta o fracţie\n" "a adancimii de tăiere care este o valoare negativă." -#: flatcamGUI/FlatCAMGUI.py:4354 flatcamGUI/ObjectUI.py:1184 +#: flatcamGUI/FlatCAMGUI.py:4768 flatcamGUI/ObjectUI.py:1098 msgid "" "Height of the tool when\n" "moving without cutting." @@ -6398,11 +7478,11 @@ msgstr "" "Înălţimea la care se misca unealta când nu taie,\n" "deasupra materialului." -#: flatcamGUI/FlatCAMGUI.py:4381 flatcamGUI/ObjectUI.py:1239 +#: flatcamGUI/FlatCAMGUI.py:4795 flatcamGUI/ObjectUI.py:1153 msgid "Feed Rate X-Y:" msgstr "Feedrate X-Y:" -#: flatcamGUI/FlatCAMGUI.py:4383 flatcamGUI/ObjectUI.py:1242 +#: flatcamGUI/FlatCAMGUI.py:4797 flatcamGUI/ObjectUI.py:1156 msgid "" "Cutting speed in the XY\n" "plane in units per minute" @@ -6410,11 +7490,11 @@ msgstr "" "Viteza de tăiere in planul X-Y\n" "in unitati pe minut." -#: flatcamGUI/FlatCAMGUI.py:4391 +#: flatcamGUI/FlatCAMGUI.py:4805 msgid "Feed Rate Z:" msgstr "Feedrate Z:" -#: flatcamGUI/FlatCAMGUI.py:4393 +#: flatcamGUI/FlatCAMGUI.py:4807 msgid "" "Cutting speed in the XY\n" "plane in units per minute.\n" @@ -6424,12 +7504,12 @@ msgstr "" "in unitati pe minut.\n" "Mai este numita și viteza de plonjare." -#: flatcamGUI/FlatCAMGUI.py:4402 flatcamGUI/ObjectUI.py:765 -#: flatcamGUI/ObjectUI.py:1291 +#: flatcamGUI/FlatCAMGUI.py:4816 flatcamGUI/ObjectUI.py:679 +#: flatcamGUI/ObjectUI.py:1205 msgid "Spindle speed:" msgstr "Viteza motor:" -#: flatcamGUI/FlatCAMGUI.py:4431 +#: flatcamGUI/FlatCAMGUI.py:4845 msgid "" "The postprocessor file that dictates\n" "Machine Code output." @@ -6438,11 +7518,11 @@ msgstr "" "respecte un anumit format care să fie inteles de diverse\n" "utilaje. Este responsabil de 'personalizarea' G-Code." -#: flatcamGUI/FlatCAMGUI.py:4447 +#: flatcamGUI/FlatCAMGUI.py:4861 msgid "Geometry Adv. Options" msgstr "Opțiuni Avans. Geometrie" -#: flatcamGUI/FlatCAMGUI.py:4454 +#: flatcamGUI/FlatCAMGUI.py:4868 msgid "" "Parameters to create a CNC Job object\n" "tracing the contours of a Geometry object." @@ -6450,7 +7530,7 @@ msgstr "" "Parametrii folositi pentru a crea un obiect CNCJob,\n" "urmărind contururile unui obiect tip Geometrie." -#: flatcamGUI/FlatCAMGUI.py:4474 +#: flatcamGUI/FlatCAMGUI.py:4888 msgid "" "Height of the tool just after starting the work.\n" "Delete the value if you don't need this feature." @@ -6458,7 +7538,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:4494 +#: flatcamGUI/FlatCAMGUI.py:4908 msgid "" "Cutting speed in the XY plane\n" "(in units per minute).\n" @@ -6471,11 +7551,11 @@ msgstr "" "Este utila doar când se foloseşte cu un printer 3D Marlin,\n" "pentru toate celelalte cazuri ignora acest parametru." -#: flatcamGUI/FlatCAMGUI.py:4506 +#: flatcamGUI/FlatCAMGUI.py:4920 msgid "Re-cut 1st pt." msgstr "Re-tăiere 1-ul pt." -#: flatcamGUI/FlatCAMGUI.py:4508 flatcamGUI/ObjectUI.py:1282 +#: flatcamGUI/FlatCAMGUI.py:4922 flatcamGUI/ObjectUI.py:1196 msgid "" "In order to remove possible\n" "copper leftovers where first cut\n" @@ -6487,11 +7567,11 @@ msgstr "" "cu sfârşitul acesteia (este vorba de un contur), sunt eliminate\n" "prin taierea peste acest punct." -#: flatcamGUI/FlatCAMGUI.py:4547 +#: flatcamGUI/FlatCAMGUI.py:4961 msgid "Seg. X size:" msgstr "Dim. seg X." -#: flatcamGUI/FlatCAMGUI.py:4549 +#: flatcamGUI/FlatCAMGUI.py:4963 msgid "" "The size of the trace segment on the X axis.\n" "Useful for auto-leveling.\n" @@ -6502,11 +7582,11 @@ msgstr "" "O valoare de 0 inseamnaca nu se face segmentare\n" "pe axa X." -#: flatcamGUI/FlatCAMGUI.py:4558 +#: flatcamGUI/FlatCAMGUI.py:4972 msgid "Seg. Y size:" msgstr "Dim. seg Y." -#: flatcamGUI/FlatCAMGUI.py:4560 +#: flatcamGUI/FlatCAMGUI.py:4974 msgid "" "The size of the trace segment on the Y axis.\n" "Useful for auto-leveling.\n" @@ -6517,20 +7597,20 @@ msgstr "" "O valoare de 0 inseamnaca nu se face segmentare\n" "pe axa Y." -#: flatcamGUI/FlatCAMGUI.py:4576 +#: flatcamGUI/FlatCAMGUI.py:4990 msgid "CNC Job General" msgstr "CNCJob General" -#: flatcamGUI/FlatCAMGUI.py:4589 flatcamGUI/ObjectUI.py:630 -#: flatcamGUI/ObjectUI.py:960 flatcamGUI/ObjectUI.py:1514 +#: flatcamGUI/FlatCAMGUI.py:5003 flatcamGUI/ObjectUI.py:544 +#: flatcamGUI/ObjectUI.py:874 flatcamGUI/ObjectUI.py:1428 msgid "Plot Object" msgstr "Afisează" -#: flatcamGUI/FlatCAMGUI.py:4596 +#: flatcamGUI/FlatCAMGUI.py:5010 msgid "Plot kind:" msgstr "Tip afișare:" -#: flatcamGUI/FlatCAMGUI.py:4598 flatcamGUI/ObjectUI.py:1436 +#: flatcamGUI/FlatCAMGUI.py:5012 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" @@ -6543,11 +7623,11 @@ msgstr "" "- Tăiere -> miscarile in material, tăiere\n" "- Amandoua" -#: flatcamGUI/FlatCAMGUI.py:4606 flatcamGUI/ObjectUI.py:1445 +#: flatcamGUI/FlatCAMGUI.py:5020 flatcamGUI/ObjectUI.py:1359 msgid "Travel" msgstr "Voiaj" -#: flatcamGUI/FlatCAMGUI.py:4617 +#: flatcamGUI/FlatCAMGUI.py:5031 msgid "" "The number of circle steps for GCode \n" "circle and arc shapes linear approximation." @@ -6555,17 +7635,17 @@ msgstr "" "Numărul de segmente utilizate pentru\n" "aproximarea lineara a reprezentarilor GCodului circular." -#: flatcamGUI/FlatCAMGUI.py:4627 +#: flatcamGUI/FlatCAMGUI.py:5041 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:4635 +#: flatcamGUI/FlatCAMGUI.py:5049 msgid "Coords dec.:" msgstr "Coord. zec.:" -#: flatcamGUI/FlatCAMGUI.py:4637 +#: flatcamGUI/FlatCAMGUI.py:5051 msgid "" "The number of decimals to be used for \n" "the X, Y, Z coordinates in CNC code (GCODE, etc.)" @@ -6573,11 +7653,11 @@ msgstr "" "Numărul de zecimale care să fie folosit in \n" "coordonatele X,Y,Z in codul CNC (GCode etc)." -#: flatcamGUI/FlatCAMGUI.py:4645 +#: flatcamGUI/FlatCAMGUI.py:5059 msgid "Feedrate dec.:" msgstr "Feedrate zec.:" -#: flatcamGUI/FlatCAMGUI.py:4647 +#: flatcamGUI/FlatCAMGUI.py:5061 msgid "" "The number of decimals to be used for \n" "the Feedrate parameter in CNC code (GCODE, etc.)" @@ -6585,16 +7665,16 @@ msgstr "" "Numărul de zecimale care să fie folosit in \n" "parametrul >Feedrate< in codul CNC (GCode etc)." -#: flatcamGUI/FlatCAMGUI.py:4662 +#: flatcamGUI/FlatCAMGUI.py:5076 msgid "CNC Job Options" msgstr "Opțiuni CNCJob" -#: flatcamGUI/FlatCAMGUI.py:4665 flatcamGUI/FlatCAMGUI.py:4706 +#: flatcamGUI/FlatCAMGUI.py:5079 flatcamGUI/FlatCAMGUI.py:5120 msgid "Export G-Code:" msgstr "Exporta G-Code:" -#: flatcamGUI/FlatCAMGUI.py:4667 flatcamGUI/FlatCAMGUI.py:4708 -#: flatcamGUI/ObjectUI.py:1550 +#: flatcamGUI/FlatCAMGUI.py:5081 flatcamGUI/FlatCAMGUI.py:5122 +#: flatcamGUI/ObjectUI.py:1464 msgid "" "Export and save G-Code to\n" "make this object to a file." @@ -6602,11 +7682,11 @@ msgstr "" "Exporta și salvează codul G-Code intr-un fişier\n" "care este salvat pe HDD." -#: flatcamGUI/FlatCAMGUI.py:4673 +#: flatcamGUI/FlatCAMGUI.py:5087 msgid "Prepend to G-Code:" msgstr "Adaugă la inceputul G-Code:" -#: flatcamGUI/FlatCAMGUI.py:4675 +#: flatcamGUI/FlatCAMGUI.py:5089 msgid "" "Type here any G-Code commands you would\n" "like to add at the beginning of the G-Code file." @@ -6614,11 +7694,11 @@ msgstr "" "Adaugă aici orice comenzi G-Code care se doreste să fie\n" "inserate la inceputul codului G-Code." -#: flatcamGUI/FlatCAMGUI.py:4684 +#: flatcamGUI/FlatCAMGUI.py:5098 msgid "Append to G-Code:" msgstr "Adaugă la sfârşitul G-Code:" -#: flatcamGUI/FlatCAMGUI.py:4686 flatcamGUI/ObjectUI.py:1572 +#: flatcamGUI/FlatCAMGUI.py:5100 flatcamGUI/ObjectUI.py:1486 msgid "" "Type here any G-Code commands you would\n" "like to append to the generated file.\n" @@ -6627,15 +7707,15 @@ msgstr "" "Adaugă aici orice comenzi G-Code care se doreste să fie\n" "inserate la sfârşitul codului G-Code." -#: flatcamGUI/FlatCAMGUI.py:4703 +#: flatcamGUI/FlatCAMGUI.py:5117 msgid "CNC Job Adv. Options" msgstr "Opțiuni Avans. CNCJob" -#: flatcamGUI/FlatCAMGUI.py:4714 flatcamGUI/ObjectUI.py:1590 +#: flatcamGUI/FlatCAMGUI.py:5128 flatcamGUI/ObjectUI.py:1504 msgid "Toolchange G-Code:" msgstr "G-Code pt schimb unealtă:" -#: flatcamGUI/FlatCAMGUI.py:4716 +#: flatcamGUI/FlatCAMGUI.py:5130 msgid "" "Type here any G-Code commands you would\n" "like to be executed when Toolchange event is encountered.\n" @@ -6647,11 +7727,11 @@ msgstr "" "Comanda M6 este inlocuita.\n" "Aceata va constitui un macro pentru schimbul uneltelor." -#: flatcamGUI/FlatCAMGUI.py:4730 flatcamGUI/ObjectUI.py:1612 +#: flatcamGUI/FlatCAMGUI.py:5144 flatcamGUI/ObjectUI.py:1526 msgid "Use Toolchange Macro" msgstr "Fol. Macro schimb unealtă" -#: flatcamGUI/FlatCAMGUI.py:4732 flatcamGUI/ObjectUI.py:1615 +#: flatcamGUI/FlatCAMGUI.py:5146 flatcamGUI/ObjectUI.py:1529 msgid "" "Check this box if you want to use\n" "a Custom Toolchange GCode (macro)." @@ -6659,7 +7739,7 @@ msgstr "" "Bifează aici daca dorești să folosești Macro pentru\n" "schimb unelte." -#: flatcamGUI/FlatCAMGUI.py:4744 flatcamGUI/ObjectUI.py:1624 +#: flatcamGUI/FlatCAMGUI.py:5158 flatcamGUI/ObjectUI.py:1538 msgid "" "A list of the FlatCAM variables that can be used\n" "in the Toolchange event.\n" @@ -6669,78 +7749,78 @@ msgstr "" "de schimb al uneltei (când se intalneste comanda M6).\n" "Este necesar să fie inconjurate de simbolul '%'." -#: flatcamGUI/FlatCAMGUI.py:4751 flatcamGUI/ObjectUI.py:1631 +#: flatcamGUI/FlatCAMGUI.py:5165 flatcamGUI/ObjectUI.py:1545 msgid "Parameters" msgstr "Parametri" -#: flatcamGUI/FlatCAMGUI.py:4754 flatcamGUI/ObjectUI.py:1634 +#: flatcamGUI/FlatCAMGUI.py:5168 flatcamGUI/ObjectUI.py:1548 msgid "FlatCAM CNC parameters" msgstr "Parametri FlatCAM CNC" -#: flatcamGUI/FlatCAMGUI.py:4755 flatcamGUI/ObjectUI.py:1635 +#: flatcamGUI/FlatCAMGUI.py:5169 flatcamGUI/ObjectUI.py:1549 msgid "tool = tool number" msgstr "tool = numărul uneltei" -#: flatcamGUI/FlatCAMGUI.py:4756 flatcamGUI/ObjectUI.py:1636 +#: flatcamGUI/FlatCAMGUI.py:5170 flatcamGUI/ObjectUI.py:1550 msgid "tooldia = tool diameter" msgstr "tooldia = dimaetrul uneltei" -#: flatcamGUI/FlatCAMGUI.py:4757 flatcamGUI/ObjectUI.py:1637 +#: flatcamGUI/FlatCAMGUI.py:5171 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:4758 flatcamGUI/ObjectUI.py:1638 +#: flatcamGUI/FlatCAMGUI.py:5172 flatcamGUI/ObjectUI.py:1552 msgid "x_toolchange = X coord for Toolchange" msgstr "x_toolchange = coord. X pt schimb unealtă" -#: flatcamGUI/FlatCAMGUI.py:4759 flatcamGUI/ObjectUI.py:1639 +#: flatcamGUI/FlatCAMGUI.py:5173 flatcamGUI/ObjectUI.py:1553 msgid "y_toolchange = Y coord for Toolchange" msgstr "y_toolchange = coord. Y pt schimb unealtă" -#: flatcamGUI/FlatCAMGUI.py:4760 flatcamGUI/ObjectUI.py:1640 +#: flatcamGUI/FlatCAMGUI.py:5174 flatcamGUI/ObjectUI.py:1554 msgid "z_toolchange = Z coord for Toolchange" msgstr "z_toolchange = coord. Z pt schimb unealtă" -#: flatcamGUI/FlatCAMGUI.py:4761 +#: flatcamGUI/FlatCAMGUI.py:5175 msgid "z_cut = Z depth for the cut" msgstr "z_cut = Z adâncimea de tăiere" -#: flatcamGUI/FlatCAMGUI.py:4762 +#: flatcamGUI/FlatCAMGUI.py:5176 msgid "z_move = Z height for travel" msgstr "z_move = Z Înălţimea deplasare" -#: flatcamGUI/FlatCAMGUI.py:4763 flatcamGUI/ObjectUI.py:1643 +#: flatcamGUI/FlatCAMGUI.py:5177 flatcamGUI/ObjectUI.py:1557 msgid "z_depthpercut = the step value for multidepth cut" msgstr "z_depthpercut = pasul pentru taierea progresiva" -#: flatcamGUI/FlatCAMGUI.py:4764 flatcamGUI/ObjectUI.py:1644 +#: flatcamGUI/FlatCAMGUI.py:5178 flatcamGUI/ObjectUI.py:1558 msgid "spindlesspeed = the value for the spindle speed" msgstr "spindlesspeed = valoarea viteza motor" -#: flatcamGUI/FlatCAMGUI.py:4765 flatcamGUI/ObjectUI.py:1645 +#: flatcamGUI/FlatCAMGUI.py:5179 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:4786 +#: flatcamGUI/FlatCAMGUI.py:5200 msgid "NCC Tool Options" msgstr "Opțiuni Unealta NCC" -#: flatcamGUI/FlatCAMGUI.py:4789 flatcamGUI/FlatCAMGUI.py:4890 -#: flatcamGUI/FlatCAMGUI.py:4960 flatcamGUI/FlatCAMGUI.py:5019 -#: flatcamGUI/FlatCAMGUI.py:5122 flatcamGUI/FlatCAMGUI.py:5183 -#: flatcamGUI/FlatCAMGUI.py:5382 flatcamGUI/FlatCAMGUI.py:5509 +#: flatcamGUI/FlatCAMGUI.py:5203 flatcamGUI/FlatCAMGUI.py:5304 +#: flatcamGUI/FlatCAMGUI.py:5383 flatcamGUI/FlatCAMGUI.py:5442 +#: flatcamGUI/FlatCAMGUI.py:5545 flatcamGUI/FlatCAMGUI.py:5606 +#: flatcamGUI/FlatCAMGUI.py:5805 flatcamGUI/FlatCAMGUI.py:5932 msgid "Parameters:" msgstr "Parametri:" -#: flatcamGUI/FlatCAMGUI.py:4799 flatcamGUI/FlatCAMGUI.py:5520 +#: flatcamGUI/FlatCAMGUI.py:5213 flatcamGUI/FlatCAMGUI.py:5943 msgid "Tools dia:" msgstr "Dia unealtă:" -#: flatcamGUI/FlatCAMGUI.py:4801 +#: flatcamGUI/FlatCAMGUI.py:5215 msgid "Diameters of the cutting tools, separated by ','" msgstr "Diametrele pentru unelte taietoare, separate cu virgula" -#: flatcamGUI/FlatCAMGUI.py:4809 flatcamTools/ToolNonCopperClear.py:167 +#: flatcamGUI/FlatCAMGUI.py:5223 flatcamTools/ToolNonCopperClear.py:167 #, python-format msgid "" "How much (fraction) of the tool width to overlap each tool pass.\n" @@ -6766,11 +7846,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:4825 flatcamTools/ToolNonCopperClear.py:183 +#: flatcamGUI/FlatCAMGUI.py:5239 flatcamTools/ToolNonCopperClear.py:183 msgid "Bounding box margin." msgstr "Marginea pentru forma înconjurătoare." -#: flatcamGUI/FlatCAMGUI.py:4834 flatcamTools/ToolNonCopperClear.py:192 +#: flatcamGUI/FlatCAMGUI.py:5248 flatcamTools/ToolNonCopperClear.py:192 #: flatcamTools/ToolPaint.py:190 msgid "" "Algorithm for non-copper clearing:
    Standard: Fixed step inwards." @@ -6781,12 +7861,12 @@ msgstr "" "
    Punct-samanta: De la punctul samanta, spre expterior.
    Linii " "drepte: Linii paralele." -#: flatcamGUI/FlatCAMGUI.py:4866 flatcamTools/ToolNonCopperClear.py:224 +#: flatcamGUI/FlatCAMGUI.py:5280 flatcamTools/ToolNonCopperClear.py:224 #: flatcamTools/ToolPaint.py:222 msgid "Rest M.:" msgstr "Rest M.:" -#: flatcamGUI/FlatCAMGUI.py:4868 +#: flatcamGUI/FlatCAMGUI.py:5282 msgid "" "If checked, use 'rest machining'.\n" "Basically it will clear copper outside PCB features,\n" @@ -6804,11 +7884,11 @@ msgstr "" "precedenta.\n" "Daca nu este bifat, foloseşte algoritmul standard." -#: flatcamGUI/FlatCAMGUI.py:4887 +#: flatcamGUI/FlatCAMGUI.py:5301 msgid "Cutout Tool Options" msgstr "Opțiuni Unealta Decupare" -#: flatcamGUI/FlatCAMGUI.py:4892 flatcamGUI/ObjectUI.py:488 +#: flatcamGUI/FlatCAMGUI.py:5306 flatcamGUI/ObjectUI.py:402 msgid "" "Create toolpaths to cut around\n" "the PCB and separate it from\n" @@ -6818,17 +7898,17 @@ msgstr "" "lasand punţi pentru a separa PCB-ul de \n" "placa din care a fost taiat." -#: flatcamGUI/FlatCAMGUI.py:4911 +#: flatcamGUI/FlatCAMGUI.py:5325 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:4918 flatcamTools/ToolCutOut.py:96 +#: flatcamGUI/FlatCAMGUI.py:5332 flatcamTools/ToolCutOut.py:96 msgid "Gap size:" msgstr "Dim. punte:" -#: flatcamGUI/FlatCAMGUI.py:4920 +#: flatcamGUI/FlatCAMGUI.py:5334 msgid "" "Size of the gaps in the toolpath\n" "that will remain to hold the\n" @@ -6838,11 +7918,11 @@ msgstr "" "care vor mentine PCB-ul in poziţie, fără să cada\n" "din placa 'mama' dupa decupare." -#: flatcamGUI/FlatCAMGUI.py:4928 flatcamTools/ToolCutOut.py:125 +#: flatcamGUI/FlatCAMGUI.py:5342 flatcamTools/ToolCutOut.py:133 msgid "Gaps:" msgstr "Punţi:" -#: flatcamGUI/FlatCAMGUI.py:4930 +#: flatcamGUI/FlatCAMGUI.py:5344 msgid "" "Number of bridge gaps used for the cutout.\n" "There can be maximum 8 bridges/gaps.\n" @@ -6864,11 +7944,21 @@ msgstr "" "- 2tb = 2* sus - 2* jos\n" "- 8 = 2* stânga - 2* dreapta - 2* sus - 2* jos" -#: flatcamGUI/FlatCAMGUI.py:4957 +#: flatcamGUI/FlatCAMGUI.py:5365 flatcamTools/ToolCutOut.py:115 +msgid "Convex Sh.:" +msgstr "Formă Conv." + +#: flatcamGUI/FlatCAMGUI.py:5367 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:5380 msgid "2Sided Tool Options" msgstr "Opțiuni Unealta 2Fețe" -#: flatcamGUI/FlatCAMGUI.py:4962 +#: flatcamGUI/FlatCAMGUI.py:5385 msgid "" "A tool to help in creating a double sided\n" "PCB using alignment holes." @@ -6876,44 +7966,44 @@ msgstr "" "O unealtă care ajuta in crearea de PCB-uri cu 2 fețe\n" "folosind găuri de aliniere." -#: flatcamGUI/FlatCAMGUI.py:4972 flatcamTools/ToolDblSided.py:235 +#: flatcamGUI/FlatCAMGUI.py:5395 flatcamTools/ToolDblSided.py:235 msgid "Drill diam.:" msgstr "Dia gaura:" -#: flatcamGUI/FlatCAMGUI.py:4974 flatcamTools/ToolDblSided.py:226 +#: flatcamGUI/FlatCAMGUI.py:5397 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:4981 +#: flatcamGUI/FlatCAMGUI.py:5404 msgid "X" msgstr "X" -#: flatcamGUI/FlatCAMGUI.py:4982 +#: flatcamGUI/FlatCAMGUI.py:5405 msgid "Y" msgstr "Y" -#: flatcamGUI/FlatCAMGUI.py:4983 flatcamTools/ToolDblSided.py:120 +#: flatcamGUI/FlatCAMGUI.py:5406 flatcamTools/ToolDblSided.py:120 msgid "Mirror Axis:" msgstr "Axe oglindire:" -#: flatcamGUI/FlatCAMGUI.py:4985 flatcamTools/ToolDblSided.py:122 +#: flatcamGUI/FlatCAMGUI.py:5408 flatcamTools/ToolDblSided.py:122 msgid "Mirror vertically (X) or horizontally (Y)." msgstr "Oglindește vertical (X) sau orizontal (Y)." -#: flatcamGUI/FlatCAMGUI.py:4994 +#: flatcamGUI/FlatCAMGUI.py:5417 msgid "Point" msgstr "Punct" -#: flatcamGUI/FlatCAMGUI.py:4995 +#: flatcamGUI/FlatCAMGUI.py:5418 msgid "Box" msgstr "Forma" -#: flatcamGUI/FlatCAMGUI.py:4996 flatcamTools/ToolDblSided.py:133 +#: flatcamGUI/FlatCAMGUI.py:5419 flatcamTools/ToolDblSided.py:133 msgid "Axis Ref:" msgstr "Axa de ref.:" -#: flatcamGUI/FlatCAMGUI.py:4998 +#: flatcamGUI/FlatCAMGUI.py:5421 msgid "" "The axis should pass through a point or cut\n" " a specified box (in a Geometry object) in \n" @@ -6922,11 +8012,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:5014 +#: flatcamGUI/FlatCAMGUI.py:5437 msgid "Paint Tool Options" msgstr "Opțiuni Unealta Paint" -#: flatcamGUI/FlatCAMGUI.py:5021 flatcamGUI/ObjectUI.py:1385 +#: flatcamGUI/FlatCAMGUI.py:5444 flatcamGUI/ObjectUI.py:1299 msgid "" "Creates tool paths to cover the\n" "whole area of a polygon (remove\n" @@ -6939,7 +8029,7 @@ msgstr "" "singur poligon se va cere să faceti click pe poligonul\n" "dorit." -#: flatcamGUI/FlatCAMGUI.py:5045 +#: flatcamGUI/FlatCAMGUI.py:5468 msgid "" "How much (fraction) of the tool\n" "width to overlap each tool pass." @@ -6947,23 +8037,23 @@ 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:5099 flatcamTools/ToolPaint.py:237 +#: flatcamGUI/FlatCAMGUI.py:5522 flatcamTools/ToolPaint.py:237 msgid "Selection:" msgstr "Selecţie:" -#: flatcamGUI/FlatCAMGUI.py:5101 +#: flatcamGUI/FlatCAMGUI.py:5524 msgid "How to select the polygons to paint." msgstr "Cum să se selecteze poligoanele de pictat (paint)." -#: flatcamGUI/FlatCAMGUI.py:5105 +#: flatcamGUI/FlatCAMGUI.py:5528 msgid "Single" msgstr "Unic" -#: flatcamGUI/FlatCAMGUI.py:5119 +#: flatcamGUI/FlatCAMGUI.py:5542 msgid "Film Tool Options" msgstr "Opțiuni Unealta Film" -#: flatcamGUI/FlatCAMGUI.py:5124 +#: flatcamGUI/FlatCAMGUI.py:5547 msgid "" "Create a PCB film from a Gerber or Geometry\n" "FlatCAM object.\n" @@ -6972,19 +8062,19 @@ msgstr "" "Crează un film PCB dintr-un obiect Gerber sau tip Geometrie.\n" "Fişierul este salvat in format SVG." -#: flatcamGUI/FlatCAMGUI.py:5133 +#: flatcamGUI/FlatCAMGUI.py:5556 msgid "Pos" msgstr "Pozitiv" -#: flatcamGUI/FlatCAMGUI.py:5134 +#: flatcamGUI/FlatCAMGUI.py:5557 msgid "Neg" msgstr "Negativ" -#: flatcamGUI/FlatCAMGUI.py:5135 flatcamTools/ToolFilm.py:116 +#: flatcamGUI/FlatCAMGUI.py:5558 flatcamTools/ToolFilm.py:116 msgid "Film Type:" msgstr "Tip film:" -#: flatcamGUI/FlatCAMGUI.py:5137 flatcamTools/ToolFilm.py:118 +#: flatcamGUI/FlatCAMGUI.py:5560 flatcamTools/ToolFilm.py:118 msgid "" "Generate a Positive black film or a Negative film.\n" "Positive means that it will print the features\n" @@ -6998,11 +8088,11 @@ msgstr "" "Negativ = traseele vor fi albe pe un fundal negru.\n" "Formatul fişierului pt filmul salvat este SVG." -#: flatcamGUI/FlatCAMGUI.py:5148 flatcamTools/ToolFilm.py:130 +#: flatcamGUI/FlatCAMGUI.py:5571 flatcamTools/ToolFilm.py:130 msgid "Border:" msgstr "Bordura:" -#: flatcamGUI/FlatCAMGUI.py:5150 flatcamTools/ToolFilm.py:132 +#: flatcamGUI/FlatCAMGUI.py:5573 flatcamTools/ToolFilm.py:132 msgid "" "Specify a border around the object.\n" "Only for negative film.\n" @@ -7019,11 +8109,11 @@ msgstr "" "Va crea o bara solida neagra in jurul printului efectiv permitand o\n" "delimitare exacta" -#: flatcamGUI/FlatCAMGUI.py:5163 flatcamTools/ToolFilm.py:144 +#: flatcamGUI/FlatCAMGUI.py:5586 flatcamTools/ToolFilm.py:144 msgid "Scale Stroke:" msgstr "Scalează:" -#: flatcamGUI/FlatCAMGUI.py:5165 flatcamTools/ToolFilm.py:146 +#: flatcamGUI/FlatCAMGUI.py:5588 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 " @@ -7033,11 +8123,11 @@ msgstr "" "Scalează grosimea conturului fiecarui element din fişierul SVG.\n" "Elementele mai mici vor fi afectate mai mult." -#: flatcamGUI/FlatCAMGUI.py:5180 +#: flatcamGUI/FlatCAMGUI.py:5603 msgid "Panelize Tool Options" msgstr "Opțiuni Unealta Panelizare" -#: flatcamGUI/FlatCAMGUI.py:5185 +#: flatcamGUI/FlatCAMGUI.py:5608 msgid "" "Create an object that contains an array of (x, y) elements,\n" "each element is a copy of the source object spaced\n" @@ -7047,11 +8137,11 @@ msgstr "" "unde fiecare element este o copie a obiectului sursa, separat la o\n" "distanţă X, Y unul de celalalt." -#: flatcamGUI/FlatCAMGUI.py:5196 flatcamTools/ToolPanelize.py:113 +#: flatcamGUI/FlatCAMGUI.py:5619 flatcamTools/ToolPanelize.py:113 msgid "Spacing cols:" msgstr "Sep. coloane:" -#: flatcamGUI/FlatCAMGUI.py:5198 flatcamTools/ToolPanelize.py:115 +#: flatcamGUI/FlatCAMGUI.py:5621 flatcamTools/ToolPanelize.py:115 msgid "" "Spacing between columns of the desired panel.\n" "In current units." @@ -7059,11 +8149,11 @@ msgstr "" "Spatiul de separare între coloane.\n" "In unitatile curente." -#: flatcamGUI/FlatCAMGUI.py:5206 flatcamTools/ToolPanelize.py:122 +#: flatcamGUI/FlatCAMGUI.py:5629 flatcamTools/ToolPanelize.py:122 msgid "Spacing rows:" msgstr "Sep. linii:" -#: flatcamGUI/FlatCAMGUI.py:5208 flatcamTools/ToolPanelize.py:124 +#: flatcamGUI/FlatCAMGUI.py:5631 flatcamTools/ToolPanelize.py:124 msgid "" "Spacing between rows of the desired panel.\n" "In current units." @@ -7071,35 +8161,35 @@ msgstr "" "Spatiul de separare între linii.\n" "In unitatile curente." -#: flatcamGUI/FlatCAMGUI.py:5216 flatcamTools/ToolPanelize.py:131 +#: flatcamGUI/FlatCAMGUI.py:5639 flatcamTools/ToolPanelize.py:131 msgid "Columns:" msgstr "Coloane:" -#: flatcamGUI/FlatCAMGUI.py:5218 flatcamTools/ToolPanelize.py:133 +#: flatcamGUI/FlatCAMGUI.py:5641 flatcamTools/ToolPanelize.py:133 msgid "Number of columns of the desired panel" msgstr "Numărul de coloane ale panel-ului dorit." -#: flatcamGUI/FlatCAMGUI.py:5225 flatcamTools/ToolPanelize.py:139 +#: flatcamGUI/FlatCAMGUI.py:5648 flatcamTools/ToolPanelize.py:139 msgid "Rows:" msgstr "Linii:" -#: flatcamGUI/FlatCAMGUI.py:5227 flatcamTools/ToolPanelize.py:141 +#: flatcamGUI/FlatCAMGUI.py:5650 flatcamTools/ToolPanelize.py:141 msgid "Number of rows of the desired panel" msgstr "Numărul de linii ale panel-ului dorit." -#: flatcamGUI/FlatCAMGUI.py:5233 +#: flatcamGUI/FlatCAMGUI.py:5656 msgid "Gerber" msgstr "Gerber" -#: flatcamGUI/FlatCAMGUI.py:5234 +#: flatcamGUI/FlatCAMGUI.py:5657 msgid "Geo" msgstr "Geo" -#: flatcamGUI/FlatCAMGUI.py:5235 flatcamTools/ToolPanelize.py:148 +#: flatcamGUI/FlatCAMGUI.py:5658 flatcamTools/ToolPanelize.py:148 msgid "Panel Type:" msgstr "Tip panel:" -#: flatcamGUI/FlatCAMGUI.py:5237 +#: flatcamGUI/FlatCAMGUI.py:5660 msgid "" "Choose the type of object for the panel object:\n" "- Gerber\n" @@ -7109,11 +8199,11 @@ msgstr "" "- Gerber\n" "- Geometrie" -#: flatcamGUI/FlatCAMGUI.py:5246 +#: flatcamGUI/FlatCAMGUI.py:5669 msgid "Constrain within:" msgstr "Constrange:" -#: flatcamGUI/FlatCAMGUI.py:5248 flatcamTools/ToolPanelize.py:160 +#: flatcamGUI/FlatCAMGUI.py:5671 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" @@ -7127,11 +8217,11 @@ msgstr "" "panelul final va contine numai acel număr de linii/coloane care se inscrie\n" "complet in aria desemnata." -#: flatcamGUI/FlatCAMGUI.py:5257 flatcamTools/ToolPanelize.py:169 +#: flatcamGUI/FlatCAMGUI.py:5680 flatcamTools/ToolPanelize.py:169 msgid "Width (DX):" msgstr "Latime (Dx):" -#: flatcamGUI/FlatCAMGUI.py:5259 flatcamTools/ToolPanelize.py:171 +#: flatcamGUI/FlatCAMGUI.py:5682 flatcamTools/ToolPanelize.py:171 msgid "" "The width (DX) within which the panel must fit.\n" "In current units." @@ -7139,11 +8229,11 @@ msgstr "" "Lăţimea (Dx) in care panelul trebuie să se inscrie.\n" "In unitati curente." -#: flatcamGUI/FlatCAMGUI.py:5266 flatcamTools/ToolPanelize.py:177 +#: flatcamGUI/FlatCAMGUI.py:5689 flatcamTools/ToolPanelize.py:177 msgid "Height (DY):" msgstr "Inaltime (Dy):" -#: flatcamGUI/FlatCAMGUI.py:5268 flatcamTools/ToolPanelize.py:179 +#: flatcamGUI/FlatCAMGUI.py:5691 flatcamTools/ToolPanelize.py:179 msgid "" "The height (DY)within which the panel must fit.\n" "In current units." @@ -7151,15 +8241,15 @@ msgstr "" "Înălţimea (Dy) in care panelul trebuie să se inscrie.\n" "In unitati curente." -#: flatcamGUI/FlatCAMGUI.py:5282 +#: flatcamGUI/FlatCAMGUI.py:5705 msgid "Calculators Tool Options" msgstr "Opțiuni Unealta Calculatoare" -#: flatcamGUI/FlatCAMGUI.py:5285 +#: flatcamGUI/FlatCAMGUI.py:5708 msgid "V-Shape Tool Calculator:" msgstr "Calculator: Unealta V-shape" -#: flatcamGUI/FlatCAMGUI.py:5287 +#: flatcamGUI/FlatCAMGUI.py:5710 msgid "" "Calculate the tool diameter for a given V-shape tool,\n" "having the tip diameter, tip angle and\n" @@ -7169,11 +8259,11 @@ msgstr "" "avand diametrul vârfului și unghiul la vârf cat și\n" "adâncimea de tăiere, ca parametri." -#: flatcamGUI/FlatCAMGUI.py:5298 flatcamTools/ToolCalculators.py:94 +#: flatcamGUI/FlatCAMGUI.py:5721 flatcamTools/ToolCalculators.py:94 msgid "Tip Diameter:" msgstr "Dia vârf:" -#: flatcamGUI/FlatCAMGUI.py:5300 +#: flatcamGUI/FlatCAMGUI.py:5723 msgid "" "This is the tool tip diameter.\n" "It is specified by manufacturer." @@ -7181,11 +8271,11 @@ msgstr "" "Acesta este diametrul la vârf al uneltei.\n" "Este specificat de producator." -#: flatcamGUI/FlatCAMGUI.py:5308 +#: flatcamGUI/FlatCAMGUI.py:5731 msgid "Tip angle:" msgstr "Unghiul la vârf:" -#: flatcamGUI/FlatCAMGUI.py:5310 +#: flatcamGUI/FlatCAMGUI.py:5733 msgid "" "This is the angle on the tip of the tool.\n" "It is specified by manufacturer." @@ -7193,7 +8283,7 @@ msgstr "" "Acesta este unghiul la vârf al uneltei.\n" "Este specificat de producator." -#: flatcamGUI/FlatCAMGUI.py:5320 +#: flatcamGUI/FlatCAMGUI.py:5743 msgid "" "This is depth to cut into material.\n" "In the CNCJob object it is the CutZ parameter." @@ -7201,11 +8291,11 @@ msgstr "" "Aceasta este adâncimea la care se taie in material.\n" "In obiectul CNCJob este parametrul >Z tăiere<." -#: flatcamGUI/FlatCAMGUI.py:5327 +#: flatcamGUI/FlatCAMGUI.py:5750 msgid "ElectroPlating Calculator:" msgstr "Calculator Electroplacare:" -#: flatcamGUI/FlatCAMGUI.py:5329 flatcamTools/ToolCalculators.py:152 +#: flatcamGUI/FlatCAMGUI.py:5752 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 " @@ -7217,31 +8307,31 @@ msgstr "" "- clorura paladiu\n" "- hipofosfit de calciu" -#: flatcamGUI/FlatCAMGUI.py:5339 flatcamTools/ToolCalculators.py:161 +#: flatcamGUI/FlatCAMGUI.py:5762 flatcamTools/ToolCalculators.py:161 msgid "Board Length:" msgstr "Lung. placii:" -#: flatcamGUI/FlatCAMGUI.py:5341 flatcamTools/ToolCalculators.py:165 +#: flatcamGUI/FlatCAMGUI.py:5764 flatcamTools/ToolCalculators.py:165 msgid "This is the board length. In centimeters." msgstr "" "Aceasta este lungimea PCB-ului.\n" "In centimetri. " -#: flatcamGUI/FlatCAMGUI.py:5347 flatcamTools/ToolCalculators.py:167 +#: flatcamGUI/FlatCAMGUI.py:5770 flatcamTools/ToolCalculators.py:167 msgid "Board Width:" msgstr "Lat. placii:" -#: flatcamGUI/FlatCAMGUI.py:5349 flatcamTools/ToolCalculators.py:171 +#: flatcamGUI/FlatCAMGUI.py:5772 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:5354 flatcamTools/ToolCalculators.py:173 +#: flatcamGUI/FlatCAMGUI.py:5777 flatcamTools/ToolCalculators.py:173 msgid "Current Density:" msgstr "Densitate I:" -#: flatcamGUI/FlatCAMGUI.py:5357 flatcamTools/ToolCalculators.py:177 +#: flatcamGUI/FlatCAMGUI.py:5780 flatcamTools/ToolCalculators.py:177 msgid "" "Current density to pass through the board. \n" "In Amps per Square Feet ASF." @@ -7249,11 +8339,11 @@ msgstr "" "Densitatea de curent care să treaca prin placa.\n" "In ASF (amperi pe picior la patrat)." -#: flatcamGUI/FlatCAMGUI.py:5363 flatcamTools/ToolCalculators.py:181 +#: flatcamGUI/FlatCAMGUI.py:5786 flatcamTools/ToolCalculators.py:181 msgid "Copper Growth:" msgstr "Grosime Cu:" -#: flatcamGUI/FlatCAMGUI.py:5366 flatcamTools/ToolCalculators.py:185 +#: flatcamGUI/FlatCAMGUI.py:5789 flatcamTools/ToolCalculators.py:185 msgid "" "How thick the copper growth is intended to be.\n" "In microns." @@ -7261,11 +8351,11 @@ msgstr "" "Cat de gros se doreste să fie stratul de cupru depus.\n" "In microni." -#: flatcamGUI/FlatCAMGUI.py:5379 +#: flatcamGUI/FlatCAMGUI.py:5802 msgid "Transform Tool Options" msgstr "Opțiuni Unealta Transformare" -#: flatcamGUI/FlatCAMGUI.py:5384 +#: flatcamGUI/FlatCAMGUI.py:5807 msgid "" "Various transformations that can be applied\n" "on a FlatCAM object." @@ -7278,47 +8368,47 @@ msgstr "" "- deformare\n" "- oglindire" -#: flatcamGUI/FlatCAMGUI.py:5394 +#: flatcamGUI/FlatCAMGUI.py:5817 msgid "Rotate Angle:" msgstr "Unghi Rotaţie:" -#: flatcamGUI/FlatCAMGUI.py:5396 +#: flatcamGUI/FlatCAMGUI.py:5819 msgid "Angle for rotation. In degrees." msgstr "Unnghiul pentru rotaţie. In grade." -#: flatcamGUI/FlatCAMGUI.py:5403 +#: flatcamGUI/FlatCAMGUI.py:5826 msgid "Skew_X angle:" msgstr "Unghi Deform_X:" -#: flatcamGUI/FlatCAMGUI.py:5405 +#: flatcamGUI/FlatCAMGUI.py:5828 msgid "Angle for Skew/Shear on X axis. In degrees." msgstr "Unghiul pentru deformare pe axa X. In grade." -#: flatcamGUI/FlatCAMGUI.py:5412 +#: flatcamGUI/FlatCAMGUI.py:5835 msgid "Skew_Y angle:" msgstr "Unghi Deform_Y:" -#: flatcamGUI/FlatCAMGUI.py:5414 +#: flatcamGUI/FlatCAMGUI.py:5837 msgid "Angle for Skew/Shear on Y axis. In degrees." msgstr "Unghiul pentru deformare pe axa Y. In grade." -#: flatcamGUI/FlatCAMGUI.py:5421 +#: flatcamGUI/FlatCAMGUI.py:5844 msgid "Scale_X factor:" msgstr "Factor Scal_X:" -#: flatcamGUI/FlatCAMGUI.py:5423 +#: flatcamGUI/FlatCAMGUI.py:5846 msgid "Factor for scaling on X axis." msgstr "Factor de scalare pe axa X." -#: flatcamGUI/FlatCAMGUI.py:5430 +#: flatcamGUI/FlatCAMGUI.py:5853 msgid "Scale_Y factor:" msgstr "Factor Scal_Y:" -#: flatcamGUI/FlatCAMGUI.py:5432 +#: flatcamGUI/FlatCAMGUI.py:5855 msgid "Factor for scaling on Y axis." msgstr "Factor de scalare pe axa Y." -#: flatcamGUI/FlatCAMGUI.py:5440 +#: flatcamGUI/FlatCAMGUI.py:5863 msgid "" "Scale the selected object(s)\n" "using the Scale_X factor for both axis." @@ -7326,7 +8416,7 @@ msgstr "" "Scalează obiectele selectate folosind\n" "Factor Scal_X pentru ambele axe." -#: flatcamGUI/FlatCAMGUI.py:5448 flatcamTools/ToolTransform.py:210 +#: flatcamGUI/FlatCAMGUI.py:5871 flatcamTools/ToolTransform.py:210 msgid "" "Scale the selected object(s)\n" "using the origin reference when checked,\n" @@ -7339,27 +8429,27 @@ msgstr "" "centrul formei inconjuatoare care cuprinde\n" "toate obiectele selectate." -#: flatcamGUI/FlatCAMGUI.py:5457 +#: flatcamGUI/FlatCAMGUI.py:5880 msgid "Offset_X val:" msgstr "Ofset_X:" -#: flatcamGUI/FlatCAMGUI.py:5459 +#: flatcamGUI/FlatCAMGUI.py:5882 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:5466 +#: flatcamGUI/FlatCAMGUI.py:5889 msgid "Offset_Y val:" msgstr "Ofset_Y:" -#: flatcamGUI/FlatCAMGUI.py:5468 +#: flatcamGUI/FlatCAMGUI.py:5891 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:5474 +#: flatcamGUI/FlatCAMGUI.py:5897 msgid "Mirror Reference" msgstr "Referinţă Oglindire" -#: flatcamGUI/FlatCAMGUI.py:5476 flatcamTools/ToolTransform.py:314 +#: flatcamGUI/FlatCAMGUI.py:5899 flatcamTools/ToolTransform.py:314 msgid "" "Flip the selected object(s)\n" "around the point in Point Entry Field.\n" @@ -7382,11 +8472,11 @@ msgstr "" "in forma (x, y).\n" "La final apasa butonul de oglindire pe axa dorita. " -#: flatcamGUI/FlatCAMGUI.py:5487 +#: flatcamGUI/FlatCAMGUI.py:5910 msgid " Mirror Ref. Point:" msgstr "Pt. Ref. Oglindire:" -#: flatcamGUI/FlatCAMGUI.py:5489 flatcamTools/ToolTransform.py:327 +#: flatcamGUI/FlatCAMGUI.py:5912 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" @@ -7397,11 +8487,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:5506 +#: flatcamGUI/FlatCAMGUI.py:5929 msgid "SolderPaste Tool Options" msgstr "Opțiuni Unealta Pasta Fludor" -#: flatcamGUI/FlatCAMGUI.py:5511 +#: flatcamGUI/FlatCAMGUI.py:5934 msgid "" "A tool to create GCode for dispensing\n" "solder paste onto a PCB." @@ -7409,49 +8499,49 @@ msgstr "" "O unealtă care crează cod G-Code pentru dispensarea de pastă de fludor\n" "pe padurile unui PCB." -#: flatcamGUI/FlatCAMGUI.py:5522 +#: flatcamGUI/FlatCAMGUI.py:5945 msgid "Diameters of nozzle tools, separated by ','" msgstr "Diametrele uneltelor (nozzle), separate prin virgula." -#: flatcamGUI/FlatCAMGUI.py:5529 +#: flatcamGUI/FlatCAMGUI.py:5952 msgid "New Nozzle Dia:" msgstr "Nou Dia::" -#: flatcamGUI/FlatCAMGUI.py:5531 flatcamTools/ToolSolderPaste.py:103 +#: flatcamGUI/FlatCAMGUI.py:5954 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:5539 flatcamTools/ToolSolderPaste.py:166 +#: flatcamGUI/FlatCAMGUI.py:5962 flatcamTools/ToolSolderPaste.py:166 msgid "Z Dispense Start:" msgstr "Z start disp.:" -#: flatcamGUI/FlatCAMGUI.py:5541 flatcamTools/ToolSolderPaste.py:168 +#: flatcamGUI/FlatCAMGUI.py:5964 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:5548 flatcamTools/ToolSolderPaste.py:174 +#: flatcamGUI/FlatCAMGUI.py:5971 flatcamTools/ToolSolderPaste.py:174 msgid "Z Dispense:" msgstr "Z disp.:" -#: flatcamGUI/FlatCAMGUI.py:5550 flatcamTools/ToolSolderPaste.py:176 +#: flatcamGUI/FlatCAMGUI.py:5973 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:5557 flatcamTools/ToolSolderPaste.py:183 +#: flatcamGUI/FlatCAMGUI.py:5980 flatcamTools/ToolSolderPaste.py:183 msgid "Z Dispense Stop:" msgstr "Z stop disp.:" -#: flatcamGUI/FlatCAMGUI.py:5559 flatcamTools/ToolSolderPaste.py:185 +#: flatcamGUI/FlatCAMGUI.py:5982 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:5566 flatcamTools/ToolSolderPaste.py:191 +#: flatcamGUI/FlatCAMGUI.py:5989 flatcamTools/ToolSolderPaste.py:191 msgid "Z Travel:" msgstr "Z deplasare:" -#: flatcamGUI/FlatCAMGUI.py:5568 flatcamTools/ToolSolderPaste.py:193 +#: flatcamGUI/FlatCAMGUI.py:5991 flatcamTools/ToolSolderPaste.py:193 msgid "" "The height (Z) for travel between pads\n" "(without dispensing solder paste)." @@ -7459,19 +8549,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:5576 flatcamTools/ToolSolderPaste.py:200 +#: flatcamGUI/FlatCAMGUI.py:5999 flatcamTools/ToolSolderPaste.py:200 msgid "Z Toolchange:" msgstr "Z schimb. unealtă:" -#: flatcamGUI/FlatCAMGUI.py:5578 flatcamTools/ToolSolderPaste.py:202 +#: flatcamGUI/FlatCAMGUI.py:6001 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:5585 flatcamTools/ToolSolderPaste.py:208 +#: flatcamGUI/FlatCAMGUI.py:6008 flatcamTools/ToolSolderPaste.py:208 msgid "XY Toolchange:" msgstr "XY schimb unealtă:" -#: flatcamGUI/FlatCAMGUI.py:5587 flatcamTools/ToolSolderPaste.py:210 +#: flatcamGUI/FlatCAMGUI.py:6010 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." @@ -7479,30 +8569,30 @@ msgstr "" "Coordonatele X, Y pentru schimbarea uneltei (nozzle).\n" "Formatul este (x,y) unde x și y sunt numere Reale." -#: flatcamGUI/FlatCAMGUI.py:5595 flatcamTools/ToolSolderPaste.py:217 +#: flatcamGUI/FlatCAMGUI.py:6018 flatcamTools/ToolSolderPaste.py:217 msgid "Feedrate X-Y:" msgstr "Feedrate X-Y:" -#: flatcamGUI/FlatCAMGUI.py:5597 flatcamTools/ToolSolderPaste.py:219 +#: flatcamGUI/FlatCAMGUI.py:6020 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:5604 flatcamTools/ToolSolderPaste.py:225 +#: flatcamGUI/FlatCAMGUI.py:6027 flatcamTools/ToolSolderPaste.py:225 msgid "Feedrate Z:" msgstr "Feedrate Z:" -#: flatcamGUI/FlatCAMGUI.py:5606 flatcamTools/ToolSolderPaste.py:227 +#: flatcamGUI/FlatCAMGUI.py:6029 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:5614 flatcamTools/ToolSolderPaste.py:234 +#: flatcamGUI/FlatCAMGUI.py:6037 flatcamTools/ToolSolderPaste.py:234 msgid "Feedrate Z Dispense:" msgstr "Feedrate Z disp.:" -#: flatcamGUI/FlatCAMGUI.py:5616 flatcamTools/ToolSolderPaste.py:236 +#: flatcamGUI/FlatCAMGUI.py:6039 flatcamTools/ToolSolderPaste.py:236 msgid "" "Feedrate (speed) while moving up vertically\n" " to Dispense position (on Z plane)." @@ -7510,11 +8600,11 @@ msgstr "" "Viteza de deplasare la mișcarea pe verticala spre\n" "poziţia de dispensare (in planul Z)." -#: flatcamGUI/FlatCAMGUI.py:5624 flatcamTools/ToolSolderPaste.py:243 +#: flatcamGUI/FlatCAMGUI.py:6047 flatcamTools/ToolSolderPaste.py:243 msgid "Spindle Speed FWD:" msgstr "Viteza motor inainte:" -#: flatcamGUI/FlatCAMGUI.py:5626 flatcamTools/ToolSolderPaste.py:245 +#: flatcamGUI/FlatCAMGUI.py:6049 flatcamTools/ToolSolderPaste.py:245 msgid "" "The dispenser speed while pushing solder paste\n" "through the dispenser nozzle." @@ -7522,19 +8612,19 @@ msgstr "" "Viteza motorului de dispensare in timp ce impinge pastă de fludor\n" "prin orificiul uneltei de dispensare." -#: flatcamGUI/FlatCAMGUI.py:5634 flatcamTools/ToolSolderPaste.py:252 +#: flatcamGUI/FlatCAMGUI.py:6057 flatcamTools/ToolSolderPaste.py:252 msgid "Dwell FWD:" msgstr "Pauza dupa disp.:" -#: flatcamGUI/FlatCAMGUI.py:5636 flatcamTools/ToolSolderPaste.py:254 +#: flatcamGUI/FlatCAMGUI.py:6059 flatcamTools/ToolSolderPaste.py:254 msgid "Pause after solder dispensing." msgstr "Pauza dupa dispensarea de pastă de fludor." -#: flatcamGUI/FlatCAMGUI.py:5643 flatcamTools/ToolSolderPaste.py:260 +#: flatcamGUI/FlatCAMGUI.py:6066 flatcamTools/ToolSolderPaste.py:260 msgid "Spindle Speed REV:" msgstr "Viteza motor reverse:" -#: flatcamGUI/FlatCAMGUI.py:5645 flatcamTools/ToolSolderPaste.py:262 +#: flatcamGUI/FlatCAMGUI.py:6068 flatcamTools/ToolSolderPaste.py:262 msgid "" "The dispenser speed while retracting solder paste\n" "through the dispenser nozzle." @@ -7542,11 +8632,11 @@ msgstr "" "Viteza motorului de dispensare in timp ce retrage pasta de fludor\n" "prin orificiul uneltei de dispensare." -#: flatcamGUI/FlatCAMGUI.py:5653 flatcamTools/ToolSolderPaste.py:269 +#: flatcamGUI/FlatCAMGUI.py:6076 flatcamTools/ToolSolderPaste.py:269 msgid "Dwell REV:" msgstr "Pauza dupa rev:" -#: flatcamGUI/FlatCAMGUI.py:5655 flatcamTools/ToolSolderPaste.py:271 +#: flatcamGUI/FlatCAMGUI.py:6078 flatcamTools/ToolSolderPaste.py:271 msgid "" "Pause after solder paste dispenser retracted,\n" "to allow pressure equilibrium." @@ -7554,23 +8644,23 @@ msgstr "" "Pauza dupa ce pasta de fludor a fost retrasă,\n" "necesară pt a ajunge la un echilibru al presiunilor." -#: flatcamGUI/FlatCAMGUI.py:5662 flatcamTools/ToolSolderPaste.py:277 +#: flatcamGUI/FlatCAMGUI.py:6085 flatcamTools/ToolSolderPaste.py:277 msgid "PostProcessors:" msgstr "Postprocesoare:" -#: flatcamGUI/FlatCAMGUI.py:5664 flatcamTools/ToolSolderPaste.py:279 +#: flatcamGUI/FlatCAMGUI.py:6087 flatcamTools/ToolSolderPaste.py:279 msgid "Files that control the GCode generation." msgstr "Fişiere care controlează generarea codului G-Code." -#: flatcamGUI/FlatCAMGUI.py:5694 flatcamGUI/FlatCAMGUI.py:5700 +#: flatcamGUI/FlatCAMGUI.py:6117 flatcamGUI/FlatCAMGUI.py:6123 msgid "Idle." msgstr "Inactiv." -#: flatcamGUI/FlatCAMGUI.py:5724 +#: flatcamGUI/FlatCAMGUI.py:6147 msgid "Application started ..." msgstr "Aplicaţia a pornit ..." -#: flatcamGUI/FlatCAMGUI.py:5725 +#: flatcamGUI/FlatCAMGUI.py:6148 msgid "Hello!" msgstr "Bună!" @@ -7657,19 +8747,11 @@ msgstr "Solid" msgid "M-Color " msgstr "M-Color " -#: flatcamGUI/ObjectUI.py:182 flatcamGUI/ObjectUI.py:603 -#: flatcamGUI/ObjectUI.py:922 flatcamGUI/ObjectUI.py:1452 +#: flatcamGUI/ObjectUI.py:182 flatcamGUI/ObjectUI.py:517 +#: flatcamGUI/ObjectUI.py:836 flatcamGUI/ObjectUI.py:1366 msgid "Name:" msgstr "Nume:" -#: flatcamGUI/ObjectUI.py:192 -msgid "Apertures:" -msgstr "Aperturi:" - -#: flatcamGUI/ObjectUI.py:194 -msgid "Apertures Table for the Gerber Object." -msgstr "Tabela de aperturi pt obiectul Gerber." - #: flatcamGUI/ObjectUI.py:203 msgid "" "Toggle the display of the Gerber Apertures Table.\n" @@ -7693,107 +8775,11 @@ msgstr "" "Când este bifat se vor afisa toate aperturile.\n" "Când este debifat se vor șterge toate marcajele de aperturi." -#: flatcamGUI/ObjectUI.py:228 -msgid "Code" -msgstr "Cod" - -#: flatcamGUI/ObjectUI.py:228 flatcamGUI/ObjectUI.py:974 -#: flatcamGUI/ObjectUI.py:1532 -msgid "Type" -msgstr "Tip" - -#: flatcamGUI/ObjectUI.py:228 -msgid "Size" -msgstr "Dimens." - -#: flatcamGUI/ObjectUI.py:228 -msgid "Dim" -msgstr "Dim" - -#: flatcamGUI/ObjectUI.py:232 -msgid "Index" -msgstr "Index" - -#: flatcamGUI/ObjectUI.py:234 -msgid "Aperture Code" -msgstr "Cod" - -#: flatcamGUI/ObjectUI.py:236 -msgid "Type of aperture: circular, rectangle, macros etc" -msgstr "" -"Tipul aperturilor:\n" -"- circular\n" -"- patrulater\n" -"- macro-uri\n" -"etc" - -#: flatcamGUI/ObjectUI.py:238 -msgid "Aperture Size:" -msgstr "Dim. aper." - -#: flatcamGUI/ObjectUI.py:240 -msgid "" -"Aperture Dimensions:\n" -" - (width, height) for R, O type.\n" -" - (dia, nVertices) for P type" -msgstr "" -"Dimensiunile aperturilor:\n" -"- (latime, inaltime) pt tipurile R, O.\n" -"- (diametru, nVertices) pt tipul P" - #: flatcamGUI/ObjectUI.py:244 msgid "Mark the aperture instances on canvas." msgstr "Marchează aperturile pe canvas." -#: flatcamGUI/ObjectUI.py:252 -msgid "Delete aperture:" -msgstr "Șterge apertura" - -#: flatcamGUI/ObjectUI.py:254 flatcamGUI/ObjectUI.py:261 -msgid "Delete selected apertures." -msgstr "Șterge aperturile selectate." - -#: flatcamGUI/ObjectUI.py:267 -msgid "Scale Factor:" -msgstr "Factor scalare:" - -#: flatcamGUI/ObjectUI.py:282 -msgid "Perform scaling operation on the selected apertures." -msgstr "Efectuează operatia de scalare pt aperturile selectate." - -#: flatcamGUI/ObjectUI.py:288 -msgid "Buffer Factor:" -msgstr "Factor bufer:" - -#: flatcamGUI/ObjectUI.py:301 -msgid "Buffer" -msgstr "Bufer" - -#: flatcamGUI/ObjectUI.py:303 -msgid "Perform buffer operation on the selected apertures." -msgstr "Efectuează operatia de bufer pt aperturile selectate." - -#: flatcamGUI/ObjectUI.py:311 -msgid "Generate new Gerber Object:" -msgstr "Crează un nou obiect Gerber::" - -#: flatcamGUI/ObjectUI.py:313 -msgid "Will generate a new Gerber object from the changed apertures." -msgstr "Va crea un nou obiect tip Gerber din aperturile modificate." - -#: flatcamGUI/ObjectUI.py:319 -msgid "Go" -msgstr "Fă!" - -#: flatcamGUI/ObjectUI.py:321 -msgid "" -"Will generate a new Gerber object from the changed apertures.\n" -"This new object can then be isolated etc." -msgstr "" -"Va genera un nou obiect Gerber din aperturile modificate.\n" -"Acest nou obiect poate fi izolat etc." - -#: flatcamGUI/ObjectUI.py:348 +#: flatcamGUI/ObjectUI.py:262 msgid "" "Diameter of the cutting tool.\n" "If you want to have an isolation path\n" @@ -7806,19 +8792,19 @@ msgstr "" "in interiorul poligonului Gerber (traseu), foloseşte\n" "o valoare negativă pt acest parametru." -#: flatcamGUI/ObjectUI.py:359 +#: flatcamGUI/ObjectUI.py:273 msgid "Passes:" msgstr "Treceri:" -#: flatcamGUI/ObjectUI.py:393 +#: flatcamGUI/ObjectUI.py:307 msgid "Combine" msgstr "Combina" -#: flatcamGUI/ObjectUI.py:409 +#: flatcamGUI/ObjectUI.py:323 msgid "Generate Isolation Geometry:" msgstr "Creează Geometrie de Izolare:" -#: flatcamGUI/ObjectUI.py:411 +#: flatcamGUI/ObjectUI.py:325 msgid "" "Create a Geometry object with toolpaths to cut \n" "isolation outside, inside or on both sides of the\n" @@ -7837,11 +8823,11 @@ msgstr "" "(traseu, zona etc) iar >in interior< inseamna efectiv in interiorul\n" "acelui elem. Gerber (daca poate fi posibil)." -#: flatcamGUI/ObjectUI.py:430 +#: flatcamGUI/ObjectUI.py:344 msgid "FULL Geo" msgstr "Geo Full" -#: flatcamGUI/ObjectUI.py:432 +#: flatcamGUI/ObjectUI.py:346 msgid "" "Create the Geometry Object\n" "for isolation routing. It contains both\n" @@ -7851,11 +8837,11 @@ msgstr "" "Contine atat geometriile exterioare cat și\n" "pe cele interioare." -#: flatcamGUI/ObjectUI.py:441 +#: flatcamGUI/ObjectUI.py:355 msgid "Ext Geo" msgstr "Geo Ext" -#: flatcamGUI/ObjectUI.py:443 +#: flatcamGUI/ObjectUI.py:357 msgid "" "Create the Geometry Object\n" "for isolation routing containing\n" @@ -7865,11 +8851,11 @@ msgstr "" "pt izolare conținând doar\n" "geometriile de exterior." -#: flatcamGUI/ObjectUI.py:450 +#: flatcamGUI/ObjectUI.py:364 msgid "Int Geo" msgstr "Geo Int" -#: flatcamGUI/ObjectUI.py:452 +#: flatcamGUI/ObjectUI.py:366 msgid "" "Create the Geometry Object\n" "for isolation routing containing\n" @@ -7879,11 +8865,11 @@ msgstr "" "pt izolare conținând doar\n" "geometriile de interior." -#: flatcamGUI/ObjectUI.py:470 +#: flatcamGUI/ObjectUI.py:384 msgid "Clear N-copper:" msgstr "Curăță Non-Cu:" -#: flatcamGUI/ObjectUI.py:480 flatcamTools/ToolNonCopperClear.py:240 +#: flatcamGUI/ObjectUI.py:394 flatcamTools/ToolNonCopperClear.py:240 msgid "" "Create the Geometry Object\n" "for non-copper routing." @@ -7892,15 +8878,15 @@ msgstr "" "pt rutare non-cupru (adica pt\n" "curățare zone de cupru)." -#: flatcamGUI/ObjectUI.py:486 +#: flatcamGUI/ObjectUI.py:400 msgid "Board cutout:" msgstr "Decupare PCB:" -#: flatcamGUI/ObjectUI.py:494 +#: flatcamGUI/ObjectUI.py:408 msgid "Cutout Tool" msgstr "Unealta Decupare" -#: flatcamGUI/ObjectUI.py:496 +#: flatcamGUI/ObjectUI.py:410 msgid "" "Generate the geometry for\n" "the board cutout." @@ -7908,11 +8894,11 @@ msgstr "" "Generează un obiect Geometrie\n" "pt decuparea PCB." -#: flatcamGUI/ObjectUI.py:502 +#: flatcamGUI/ObjectUI.py:416 msgid "Non-copper regions:" msgstr "Regiuni fără Cu.:" -#: flatcamGUI/ObjectUI.py:504 +#: flatcamGUI/ObjectUI.py:418 msgid "" "Create polygons covering the\n" "areas without copper on the PCB.\n" @@ -7925,23 +8911,23 @@ msgstr "" "obiectului sursa. Poate fi folosit pt a indeparta\n" "cuprul din zona specificata." -#: flatcamGUI/ObjectUI.py:529 flatcamGUI/ObjectUI.py:560 +#: flatcamGUI/ObjectUI.py:443 flatcamGUI/ObjectUI.py:474 msgid "Rounded Geo" msgstr "Geo rotunjita" -#: flatcamGUI/ObjectUI.py:531 +#: flatcamGUI/ObjectUI.py:445 msgid "Resulting geometry will have rounded corners." msgstr "" "Obiectul Geometrie rezultat \n" "va avea colțurile rotunjite." -#: flatcamGUI/ObjectUI.py:536 flatcamGUI/ObjectUI.py:570 -#: flatcamTools/ToolCutOut.py:159 flatcamTools/ToolCutOut.py:179 -#: flatcamTools/ToolCutOut.py:230 flatcamTools/ToolSolderPaste.py:127 +#: flatcamGUI/ObjectUI.py:450 flatcamGUI/ObjectUI.py:484 +#: flatcamTools/ToolCutOut.py:167 flatcamTools/ToolCutOut.py:187 +#: flatcamTools/ToolCutOut.py:238 flatcamTools/ToolSolderPaste.py:127 msgid "Generate Geo" msgstr "Crează Geo" -#: flatcamGUI/ObjectUI.py:542 +#: flatcamGUI/ObjectUI.py:456 msgid "" "Create a geometry surrounding the Gerber object.\n" "Square shape." @@ -7949,27 +8935,27 @@ msgstr "" "Generează un obiect tip Geometrie care va inconjura\n" "obiectul Gerber. Forma patratica (rectangulara)." -#: flatcamGUI/ObjectUI.py:572 +#: flatcamGUI/ObjectUI.py:486 msgid "Generate the Geometry object." msgstr "Generează obiectul Geometrie." -#: flatcamGUI/ObjectUI.py:583 +#: flatcamGUI/ObjectUI.py:497 msgid "Excellon Object" msgstr "Obiect Excellon" -#: flatcamGUI/ObjectUI.py:594 +#: flatcamGUI/ObjectUI.py:508 msgid "Solid circles." msgstr "Cercuri solide." -#: flatcamGUI/ObjectUI.py:622 flatcamGUI/ObjectUI.py:941 +#: flatcamGUI/ObjectUI.py:536 flatcamGUI/ObjectUI.py:855 msgid "Tools Table" msgstr "Tabela Unelte" -#: flatcamGUI/ObjectUI.py:643 +#: flatcamGUI/ObjectUI.py:557 msgid "Offset Z" msgstr "Ofset Z:" -#: flatcamGUI/ObjectUI.py:647 +#: flatcamGUI/ObjectUI.py:561 msgid "" "This is the Tool Number.\n" "When ToolChange is checked, on toolchange event this value\n" @@ -7980,7 +8966,7 @@ msgstr "" "la evenim. de schimb unealtă, va aparea sub forma T1, T2, etc\n" "in codul masina CNC." -#: flatcamGUI/ObjectUI.py:651 flatcamGUI/ObjectUI.py:987 +#: flatcamGUI/ObjectUI.py:565 flatcamGUI/ObjectUI.py:901 #: flatcamTools/ToolNonCopperClear.py:97 flatcamTools/ToolPaint.py:94 msgid "" "Tool Diameter. It's value (in current FlatCAM units) \n" @@ -7989,7 +8975,7 @@ msgstr "" "Diametrul uneltei. Valoarea să (in unitati curente)\n" "reprezinta lăţimea taieturii in material." -#: flatcamGUI/ObjectUI.py:654 +#: flatcamGUI/ObjectUI.py:568 msgid "" "The number of Drill holes. Holes that are drilled with\n" "a drill bit." @@ -7997,7 +8983,7 @@ msgstr "" "Numărul de găuri. Sunt găuri efectuate prin\n" "operațiuni de găurire efectuate cu un burghiu." -#: flatcamGUI/ObjectUI.py:657 +#: flatcamGUI/ObjectUI.py:571 msgid "" "The number of Slot holes. Holes that are created by\n" "milling them with an endmill bit." @@ -8005,11 +8991,11 @@ msgstr "" "Numărul de sloturi. Sunt găuri efectuate\n" "prin op. de frezare cu o freza." -#: flatcamGUI/ObjectUI.py:664 +#: flatcamGUI/ObjectUI.py:578 msgid "Toggle display of the drills for the current tool." msgstr "Comuta afișarea găurilor pt unealta curentă." -#: flatcamGUI/ObjectUI.py:672 +#: flatcamGUI/ObjectUI.py:586 msgid "" "Create a CNC Job object\n" "for this drill object." @@ -8017,21 +9003,21 @@ msgstr "" "Crează un obiect CNCJob din\n" "acest obiect." -#: flatcamGUI/ObjectUI.py:701 flatcamGUI/ObjectUI.py:1201 +#: flatcamGUI/ObjectUI.py:615 flatcamGUI/ObjectUI.py:1115 msgid "Tool change" msgstr "Schimb unealtă" -#: flatcamGUI/ObjectUI.py:709 flatcamGUI/ObjectUI.py:1194 +#: flatcamGUI/ObjectUI.py:623 flatcamGUI/ObjectUI.py:1108 msgid "Tool change Z:" msgstr "Z schimb unealtă:" -#: flatcamGUI/ObjectUI.py:711 flatcamGUI/ObjectUI.py:1197 +#: flatcamGUI/ObjectUI.py:625 flatcamGUI/ObjectUI.py:1111 msgid "" "Z-axis position (height) for\n" "tool change." msgstr "Înălţimea, pe axa Z, pentru schimbul uneltei." -#: flatcamGUI/ObjectUI.py:722 +#: flatcamGUI/ObjectUI.py:636 msgid "" "Tool height just before starting the work.\n" "Delete the value if you don't need this feature." @@ -8039,17 +9025,17 @@ msgstr "" "Înălţimea uneltei la inceputul lucrului.\n" "Seterge aceasta valoare daca nu este folosita." -#: flatcamGUI/ObjectUI.py:732 +#: flatcamGUI/ObjectUI.py:646 msgid "" "Z-axis position (height) for\n" "the last move." msgstr "Înălţimea, pe axa Z, la finalul lucrului." -#: flatcamGUI/ObjectUI.py:740 +#: flatcamGUI/ObjectUI.py:654 msgid "Feedrate (Plunge):" msgstr "Feedrate (Plonjare):" -#: flatcamGUI/ObjectUI.py:742 +#: flatcamGUI/ObjectUI.py:656 msgid "" "Tool speed while drilling\n" "(in units per minute).\n" @@ -8059,7 +9045,7 @@ msgstr "" "(in unitati pe minut).\n" "Aceasta este mișcarea lineara G01." -#: flatcamGUI/ObjectUI.py:792 +#: flatcamGUI/ObjectUI.py:706 msgid "" "The json file that dictates\n" "gcode output." @@ -8067,7 +9053,7 @@ msgstr "" "Fişierul care dictează codul G-Code \n" "generat. In format JSON." -#: flatcamGUI/ObjectUI.py:824 +#: flatcamGUI/ObjectUI.py:738 msgid "" "Select from the Tools Table above\n" "the tools you want to include." @@ -8075,11 +9061,11 @@ msgstr "" "Selectează din Tabela de Unelte de mai sus,\n" "uneltele care trebuie incluse." -#: flatcamGUI/ObjectUI.py:831 +#: flatcamGUI/ObjectUI.py:745 msgid "Type: " msgstr "Tip:" -#: flatcamGUI/ObjectUI.py:833 +#: flatcamGUI/ObjectUI.py:747 msgid "" "Choose what to use for GCode generation:\n" "'Drills', 'Slots' or 'Both'.\n" @@ -8093,15 +9079,15 @@ msgstr "" "Când se alege >Sloturi< sau >Ambele<, sloturile\n" "vor fi convertite intr-o serie de găuriri." -#: flatcamGUI/ObjectUI.py:848 +#: flatcamGUI/ObjectUI.py:762 msgid "Create GCode" msgstr "Crează GCode" -#: flatcamGUI/ObjectUI.py:850 +#: flatcamGUI/ObjectUI.py:764 msgid "Generate the CNC Job." msgstr "Generează un obiect CNCJob." -#: flatcamGUI/ObjectUI.py:862 +#: flatcamGUI/ObjectUI.py:776 msgid "" "Select from the Tools Table above\n" " the hole dias that are to be milled." @@ -8109,15 +9095,15 @@ msgstr "" "Selecteaa din Tabela de Unelte de mai sus\n" "acele găuri care vor fi frezate." -#: flatcamGUI/ObjectUI.py:869 +#: flatcamGUI/ObjectUI.py:783 msgid "Drills Tool dia:" msgstr "Dia. Burghiu:" -#: flatcamGUI/ObjectUI.py:876 +#: flatcamGUI/ObjectUI.py:790 msgid "Mill Drills Geo" msgstr "Geo pt frezare găuri" -#: flatcamGUI/ObjectUI.py:878 +#: flatcamGUI/ObjectUI.py:792 msgid "" "Create the Geometry Object\n" "for milling DRILLS toolpaths." @@ -8125,15 +9111,15 @@ msgstr "" "Crează un obiect tip Geometrie pt.\n" "frezarea rutelor create din Găuri." -#: flatcamGUI/ObjectUI.py:885 +#: flatcamGUI/ObjectUI.py:799 msgid "Slots Tool dia:" msgstr "Dia freza:" -#: flatcamGUI/ObjectUI.py:892 +#: flatcamGUI/ObjectUI.py:806 msgid "Mill Slots Geo" msgstr "Geo pt. frezare sloturi" -#: flatcamGUI/ObjectUI.py:894 +#: flatcamGUI/ObjectUI.py:808 msgid "" "Create the Geometry Object\n" "for milling SLOTS toolpaths." @@ -8141,11 +9127,11 @@ msgstr "" "Crează un obiect tip Geometrie pt.\n" "frezarea rutelor create din Sloturi." -#: flatcamGUI/ObjectUI.py:912 +#: flatcamGUI/ObjectUI.py:826 msgid "Geometry Object" msgstr "Obiect Geometrie" -#: flatcamGUI/ObjectUI.py:943 +#: flatcamGUI/ObjectUI.py:857 msgid "" "Tools in this Geometry object used for cutting.\n" "The 'Offset' entry will set an offset for the cut.\n" @@ -8175,15 +9161,15 @@ msgstr "" "- V-Dia \n" "- V-unghi" -#: flatcamGUI/ObjectUI.py:974 flatcamGUI/ObjectUI.py:1532 +#: flatcamGUI/ObjectUI.py:888 flatcamGUI/ObjectUI.py:1446 msgid "Dia" msgstr "Dia" -#: flatcamGUI/ObjectUI.py:974 flatcamGUI/ObjectUI.py:1532 +#: flatcamGUI/ObjectUI.py:888 flatcamGUI/ObjectUI.py:1446 msgid "TT" msgstr "TU" -#: flatcamGUI/ObjectUI.py:981 +#: flatcamGUI/ObjectUI.py:895 msgid "" "This is the Tool Number.\n" "When ToolChange is checked, on toolchange event this value\n" @@ -8194,7 +9180,7 @@ msgstr "" "la evenim. de schimb unealtă, va aparea sub forma T1, T2, etc\n" "in codul masina CNC." -#: flatcamGUI/ObjectUI.py:992 +#: flatcamGUI/ObjectUI.py:906 msgid "" "The value for the Offset can be:\n" "- Path -> There is no offset, the tool cut will be done through the geometry " @@ -8210,7 +9196,7 @@ msgstr "" "'buzunar'\n" "- Afară-> Tăietura va urma geometria pe exterior" -#: flatcamGUI/ObjectUI.py:999 +#: flatcamGUI/ObjectUI.py:913 msgid "" "The (Operation) Type has only informative value. Usually the UI form " "values \n" @@ -8231,9 +9217,9 @@ msgstr "" "Finisare -> alegem un feedrate mai mare și tăiere dintr-o singură operaţie\n" "Izolare -> avem nevoie de un feedrate scazut pt ca se foloseşte o freza cu " "un\n" -"vârf fin, ascutit." +"vârf fin, ascuțit." -#: flatcamGUI/ObjectUI.py:1008 +#: flatcamGUI/ObjectUI.py:922 msgid "" "The Tool Type (TT) can be:\n" "- Circular with 1 ... 4 teeth -> it is informative only. Being circular the " @@ -8263,7 +9249,7 @@ msgstr "" "Alegerea tipului V-Shape (forma in V) va selecta automat Tipul de Operaţie " "ca Izolare." -#: flatcamGUI/ObjectUI.py:1019 +#: flatcamGUI/ObjectUI.py:933 msgid "" "Plot column. It is visible only for MultiGeo geometries, meaning geometries " "that holds the geometry\n" @@ -8283,11 +9269,11 @@ msgstr "" "se poate activa/dezactiva\n" "afișarea in canvas." -#: flatcamGUI/ObjectUI.py:1032 +#: flatcamGUI/ObjectUI.py:946 msgid "Tool Offset:" msgstr "Ofset unealtă:" -#: flatcamGUI/ObjectUI.py:1035 +#: flatcamGUI/ObjectUI.py:949 msgid "" "The value to offset the cut when \n" "the Offset type selected is 'Offset'.\n" @@ -8298,11 +9284,11 @@ msgstr "" "este >Ofset<. Aceasta valoare poate fi pozitivă pentru un ofset\n" "in exterior sau poate fi negativă pentru un ofset in interior." -#: flatcamGUI/ObjectUI.py:1058 +#: flatcamGUI/ObjectUI.py:972 msgid "Tool Dia:" msgstr "Dia unealtă:" -#: flatcamGUI/ObjectUI.py:1077 flatcamTools/ToolNonCopperClear.py:136 +#: flatcamGUI/ObjectUI.py:991 flatcamTools/ToolNonCopperClear.py:136 #: flatcamTools/ToolPaint.py:133 msgid "" "Add a new tool to the Tool Table\n" @@ -8311,7 +9297,7 @@ msgstr "" "Adaugă o noua unelata in Tabela de Unelte,\n" "cu diametrul specificat mai sus." -#: flatcamGUI/ObjectUI.py:1085 +#: flatcamGUI/ObjectUI.py:999 msgid "" "Copy a selection of tools in the Tool Table\n" "by first selecting a row in the Tool Table." @@ -8319,7 +9305,7 @@ msgstr "" "Copiaza o selecţie de unelte in Tabela de Unelte prin\n" "selectarea unei linii (sau mai multe) in Tabela de Unelte." -#: flatcamGUI/ObjectUI.py:1093 +#: flatcamGUI/ObjectUI.py:1007 msgid "" "Delete a selection of tools in the Tool Table\n" "by first selecting a row in the Tool Table." @@ -8327,11 +9313,11 @@ msgstr "" "Șterge o selecţie de unelte in Tabela de Unelte prin\n" "selectarea unei linii (sau mai multe) in Tabela de Unelte." -#: flatcamGUI/ObjectUI.py:1109 +#: flatcamGUI/ObjectUI.py:1023 msgid "Tool Data" msgstr "Date Unealta" -#: flatcamGUI/ObjectUI.py:1112 +#: flatcamGUI/ObjectUI.py:1026 msgid "" "The data used for creating GCode.\n" "Each tool store it's own set of such data." @@ -8339,21 +9325,21 @@ msgstr "" "Datele folosite pentru crearea codului GCode.\n" "Fiecare unealtă stochează un subset de asemenea date." -#: flatcamGUI/ObjectUI.py:1122 +#: flatcamGUI/ObjectUI.py:1036 msgid "V-Tip Dia:" msgstr "V-dia:" -#: flatcamGUI/ObjectUI.py:1125 +#: flatcamGUI/ObjectUI.py:1039 msgid "The tip diameter for V-Shape Tool" msgstr "" "Diametrul la vârf al uneltei tip V-Shape.\n" "Forma in V." -#: flatcamGUI/ObjectUI.py:1133 +#: flatcamGUI/ObjectUI.py:1047 msgid "V-Tip Angle:" msgstr "V-unghi:" -#: flatcamGUI/ObjectUI.py:1136 +#: flatcamGUI/ObjectUI.py:1050 msgid "" "The tip angle for V-Shape Tool.\n" "In degree." @@ -8361,11 +9347,11 @@ msgstr "" "Unghiul la vârf pentru unealta tip V-Shape. \n" "In grade." -#: flatcamGUI/ObjectUI.py:1157 +#: flatcamGUI/ObjectUI.py:1071 msgid "Multi-Depth:" msgstr "Multi-Pas:" -#: flatcamGUI/ObjectUI.py:1160 +#: flatcamGUI/ObjectUI.py:1074 msgid "" "Use multiple passes to limit\n" "the cut depth in each pass. Will\n" @@ -8381,13 +9367,13 @@ msgstr "" "In dreapta, introdu adâncimea de tăiere\n" "pentru fiecare trecere (valoare pozitivă)." -#: flatcamGUI/ObjectUI.py:1173 +#: flatcamGUI/ObjectUI.py:1087 msgid "Depth of each pass (positive)." msgstr "" "Adâncimea pentru fiecare trecere.\n" "Valoare pozitivă, in unitatile curente." -#: flatcamGUI/ObjectUI.py:1204 +#: flatcamGUI/ObjectUI.py:1118 msgid "" "Include tool-change sequence\n" "in the Machine Code (Pause for tool change)." @@ -8396,7 +9382,7 @@ msgstr "" "codul masina CNC. O pauza pentru schimbul\n" "uneltei (M6)." -#: flatcamGUI/ObjectUI.py:1230 +#: flatcamGUI/ObjectUI.py:1144 msgid "" "This is the height (Z) at which the CNC\n" "will go as the last move." @@ -8404,11 +9390,11 @@ msgstr "" "Aceasta este înălţimea Z, la care CNC-ul \n" "va fi parcat la finalul de lucru." -#: flatcamGUI/ObjectUI.py:1251 +#: flatcamGUI/ObjectUI.py:1165 msgid "Feed Rate Z (Plunge):" msgstr "Feedrate Z (Plonjare):" -#: flatcamGUI/ObjectUI.py:1254 +#: flatcamGUI/ObjectUI.py:1168 msgid "" "Cutting speed in the Z\n" "plane in units per minute" @@ -8416,11 +9402,11 @@ msgstr "" "Viteza de tăiere in planul Z.\n" "In unitati pe minut." -#: flatcamGUI/ObjectUI.py:1263 +#: flatcamGUI/ObjectUI.py:1177 msgid "Feed Rate Rapids:" msgstr "Feedrate rapizi:" -#: flatcamGUI/ObjectUI.py:1266 +#: flatcamGUI/ObjectUI.py:1180 msgid "" "Cutting speed in the XY\n" "plane in units per minute\n" @@ -8434,11 +9420,11 @@ msgstr "" "printerul 3D Marlin, implicit când se foloseşte fişierul\n" "postprocesor: Marlin. Ignora aceasta parametru in rest." -#: flatcamGUI/ObjectUI.py:1279 +#: flatcamGUI/ObjectUI.py:1193 msgid "Cut over 1st pt" msgstr "Re-tăiere 1-ul pt." -#: flatcamGUI/ObjectUI.py:1294 +#: flatcamGUI/ObjectUI.py:1208 msgid "" "Speed of the spindle in RPM (optional).\n" "If LASER postprocessor is used,\n" @@ -8448,11 +9434,11 @@ msgstr "" "Daca postprocesorul Laser este folosit,\n" "valoarea să este puterea laserului." -#: flatcamGUI/ObjectUI.py:1323 +#: flatcamGUI/ObjectUI.py:1237 msgid "PostProcessor:" msgstr "Postprocesor:" -#: flatcamGUI/ObjectUI.py:1326 +#: flatcamGUI/ObjectUI.py:1240 msgid "" "The Postprocessor file that dictates\n" "the Machine Code (like GCode, RML, HPGL) output." @@ -8461,47 +9447,47 @@ msgstr "" "codului masina CNC (GCode, RML, HPGL) care \n" "mai apoi este salvat." -#: flatcamGUI/ObjectUI.py:1364 +#: flatcamGUI/ObjectUI.py:1278 msgid "" "Add at least one tool in the tool-table.\n" "Click the header to select all, or Ctrl + LMB\n" "for custom selection of tools." msgstr "" -"Adaugă cel putin o unealtă in Tabela de Unelte.\n" +"Adaugă cel puțin o unealtă in Tabela de Unelte.\n" "Click pe header pentru selectarea tuturora asu CTRL + LMB click\n" "pentru o selecţie personalizata de unelte." -#: flatcamGUI/ObjectUI.py:1371 +#: flatcamGUI/ObjectUI.py:1285 msgid "Generate" msgstr "Generează" -#: flatcamGUI/ObjectUI.py:1374 +#: flatcamGUI/ObjectUI.py:1288 msgid "Generate the CNC Job object." msgstr "Generează un obiect CNCJob." -#: flatcamGUI/ObjectUI.py:1382 +#: flatcamGUI/ObjectUI.py:1296 msgid "Paint Area:" msgstr "Unealta Paint" -#: flatcamGUI/ObjectUI.py:1397 +#: flatcamGUI/ObjectUI.py:1311 msgid "Launch Paint Tool in Tools Tab." msgstr "" "Lansează unealta FlatCAM numita Paint și\n" "o instalează in Tab-ul Unealta." -#: flatcamGUI/ObjectUI.py:1414 +#: flatcamGUI/ObjectUI.py:1328 msgid "CNC Job Object" msgstr "Obiect CNCJob" -#: flatcamGUI/ObjectUI.py:1433 +#: flatcamGUI/ObjectUI.py:1347 msgid "Plot kind:" msgstr "Afișare:" -#: flatcamGUI/ObjectUI.py:1458 +#: flatcamGUI/ObjectUI.py:1372 msgid "Travelled dist.:" msgstr "Distanta:" -#: flatcamGUI/ObjectUI.py:1461 flatcamGUI/ObjectUI.py:1468 +#: flatcamGUI/ObjectUI.py:1375 flatcamGUI/ObjectUI.py:1382 msgid "" "This is the total travelled distance on X-Y plane.\n" "In current units." @@ -8509,11 +9495,11 @@ msgstr "" "Aceasta este distanţa totala parcursa in planul X-Y.\n" "In unitatile curente." -#: flatcamGUI/ObjectUI.py:1496 +#: flatcamGUI/ObjectUI.py:1410 msgid "CNC Tools Table" msgstr "Tabela Unelte CNC" -#: flatcamGUI/ObjectUI.py:1499 +#: flatcamGUI/ObjectUI.py:1413 msgid "" "Tools in this CNCJob object used for cutting.\n" "The tool diameter is used for plotting on canvas.\n" @@ -8534,27 +9520,27 @@ msgstr "" "Shape\n" "(cu forma in V)." -#: flatcamGUI/ObjectUI.py:1533 +#: flatcamGUI/ObjectUI.py:1447 msgid "P" msgstr "P" -#: flatcamGUI/ObjectUI.py:1539 +#: flatcamGUI/ObjectUI.py:1453 msgid "Update Plot" msgstr "Actualiz. afișare" -#: flatcamGUI/ObjectUI.py:1541 +#: flatcamGUI/ObjectUI.py:1455 msgid "Update the plot." msgstr "Actualizează afișarea obiectelor." -#: flatcamGUI/ObjectUI.py:1548 +#: flatcamGUI/ObjectUI.py:1462 msgid "Export CNC Code:" msgstr "Exporta codul masina CNC:" -#: flatcamGUI/ObjectUI.py:1556 +#: flatcamGUI/ObjectUI.py:1470 msgid "Prepend to CNC Code:" msgstr "Adaugă la inceput in codul G-Code:" -#: flatcamGUI/ObjectUI.py:1559 +#: flatcamGUI/ObjectUI.py:1473 msgid "" "Type here any G-Code commands you would\n" "like to add to the beginning of the generated file." @@ -8562,11 +9548,11 @@ msgstr "" "Plasează aici acele comenzi GCode care se doreste să fie\n" "adaugate la inceputul codului masina CNC." -#: flatcamGUI/ObjectUI.py:1569 +#: flatcamGUI/ObjectUI.py:1483 msgid "Append to CNC Code" msgstr "Adaugă la sfârşit in codul G-Code:" -#: flatcamGUI/ObjectUI.py:1593 +#: flatcamGUI/ObjectUI.py:1507 msgid "" "Type here any G-Code commands you would\n" "like to be executed when Toolchange event is encountered.\n" @@ -8588,19 +9574,19 @@ msgstr "" "'toolchange_custom'\n" "in numele sau." -#: flatcamGUI/ObjectUI.py:1641 +#: flatcamGUI/ObjectUI.py:1555 msgid "z_cut = depth where to cut" msgstr "z_cut = adâncimea de tăiere" -#: flatcamGUI/ObjectUI.py:1642 +#: flatcamGUI/ObjectUI.py:1556 msgid "z_move = height where to travel" msgstr "z_move = Înălţimea deplasare" -#: flatcamGUI/ObjectUI.py:1660 +#: flatcamGUI/ObjectUI.py:1574 msgid "View CNC Code" msgstr "Vizualiz. codul CNC" -#: flatcamGUI/ObjectUI.py:1663 +#: flatcamGUI/ObjectUI.py:1577 msgid "" "Opens TAB to view/modify/print G-Code\n" "file." @@ -8608,11 +9594,11 @@ msgstr "" "Deschide un nou tab pentru a vizualiza, modifica\n" "sau tipari codul G-Code." -#: flatcamGUI/ObjectUI.py:1669 +#: flatcamGUI/ObjectUI.py:1583 msgid "Save CNC Code" msgstr "Salvează codul CNC" -#: flatcamGUI/ObjectUI.py:1672 +#: flatcamGUI/ObjectUI.py:1586 msgid "" "Opens dialog to save G-Code\n" "file." @@ -8789,17 +9775,17 @@ msgstr "" "in a mentine ataşat PCB-ul la materialul de unde \n" "este decupat." -#: flatcamTools/ToolCutOut.py:114 +#: flatcamTools/ToolCutOut.py:122 msgid "A. Automatic Bridge Gaps" msgstr "A. Punţi realiz. automat" -#: flatcamTools/ToolCutOut.py:116 +#: flatcamTools/ToolCutOut.py:124 msgid "This section handle creation of automatic bridge gaps." msgstr "" "Aceasta sectiune va permite crearea in mod automat\n" "a pana la 8 punţi." -#: flatcamTools/ToolCutOut.py:127 +#: flatcamTools/ToolCutOut.py:135 msgid "" "Number of gaps used for the Automatic cutout.\n" "There can be maximum 8 bridges/gaps.\n" @@ -8821,11 +9807,11 @@ msgstr "" "- 2tb = 2* sus - 2* jos\n" "- 8 = 2* stânga - 2* dreapta - 2* sus - 2* jos" -#: flatcamTools/ToolCutOut.py:150 +#: flatcamTools/ToolCutOut.py:158 msgid "FreeForm:" msgstr "Forma libera:" -#: flatcamTools/ToolCutOut.py:152 +#: flatcamTools/ToolCutOut.py:160 msgid "" "The cutout shape can be of ny shape.\n" "Useful when the PCB has a non-rectangular shape." @@ -8833,7 +9819,7 @@ msgstr "" "Decupajul poate avea orice forma.\n" "Folositor când PCB-ul are o forma neregulata." -#: flatcamTools/ToolCutOut.py:161 +#: flatcamTools/ToolCutOut.py:169 msgid "" "Cutout the selected object.\n" "The cutout shape can be of any shape.\n" @@ -8843,11 +9829,11 @@ msgstr "" "Forma decupajului poate avea orice forma.\n" "Folositor când PCB-ul are o forma neregulata." -#: flatcamTools/ToolCutOut.py:170 +#: flatcamTools/ToolCutOut.py:178 msgid "Rectangular:" msgstr "Patrulater:" -#: flatcamTools/ToolCutOut.py:172 +#: flatcamTools/ToolCutOut.py:180 msgid "" "The resulting cutout shape is\n" "always a rectangle shape and it will be\n" @@ -8857,7 +9843,7 @@ msgstr "" "patratica și va fi forma înconjurătoare a\n" "obiectului FlatCAM decupat." -#: flatcamTools/ToolCutOut.py:181 +#: flatcamTools/ToolCutOut.py:189 msgid "" "Cutout the selected object.\n" "The resulting cutout shape is\n" @@ -8867,11 +9853,11 @@ msgstr "" "Decupează obiectul selectat.\n" "Forma decupajului este tot timpul dreptunghiulara.." -#: flatcamTools/ToolCutOut.py:189 +#: flatcamTools/ToolCutOut.py:197 msgid "B. Manual Bridge Gaps" msgstr "B. Punţi realiz. manual" -#: flatcamTools/ToolCutOut.py:191 +#: flatcamTools/ToolCutOut.py:199 msgid "" "This section handle creation of manual bridge gaps.\n" "This is done by mouse clicking on the perimeter of the\n" @@ -8883,19 +9869,19 @@ msgstr "" "apasarea tastei CTRL, operatia se va repeta automat pana când\n" "se va apasa tasta 'Escape'." -#: flatcamTools/ToolCutOut.py:207 +#: flatcamTools/ToolCutOut.py:215 msgid "Geo Obj:" msgstr "Obiect Geo:" -#: flatcamTools/ToolCutOut.py:209 +#: flatcamTools/ToolCutOut.py:217 msgid "Geometry object used to create the manual cutout." msgstr "Obiect tip Geometrie folosit pentru crearea decupajului manual." -#: flatcamTools/ToolCutOut.py:220 +#: flatcamTools/ToolCutOut.py:228 msgid "Manual Geo:" msgstr "Geo manual:" -#: flatcamTools/ToolCutOut.py:222 flatcamTools/ToolCutOut.py:232 +#: flatcamTools/ToolCutOut.py:230 flatcamTools/ToolCutOut.py:240 msgid "" "If the object to be cutout is a Gerber\n" "first create a Geometry that surrounds it,\n" @@ -8908,11 +9894,11 @@ msgstr "" "Selectează obiectul sursa Gerber in combobox-ul de mai sus,\n" "numit >Obiect<." -#: flatcamTools/ToolCutOut.py:242 +#: flatcamTools/ToolCutOut.py:250 msgid "Manual Add Bridge Gaps:" msgstr "Adaugă punţi manual:" -#: flatcamTools/ToolCutOut.py:244 +#: flatcamTools/ToolCutOut.py:252 msgid "" "Use the left mouse button (LMB) click\n" "to create a bridge gap to separate the PCB from\n" @@ -8921,11 +9907,11 @@ msgstr "" "Folosind click LMB se crează punţi de sustinere a PCB-ului\n" "de materialul din care este decupat." -#: flatcamTools/ToolCutOut.py:251 +#: flatcamTools/ToolCutOut.py:259 msgid "Generate Gap" msgstr "Generează Punte" -#: flatcamTools/ToolCutOut.py:253 +#: flatcamTools/ToolCutOut.py:261 msgid "" "Use the left mouse button (LMB) click\n" "to create a bridge gap to separate the PCB from\n" @@ -8939,14 +9925,14 @@ msgstr "" "apasarea tastei CTRL, operatia se va repeta automat pana când\n" "se va apasa tasta 'Escape'." -#: flatcamTools/ToolCutOut.py:329 flatcamTools/ToolCutOut.py:468 -#: flatcamTools/ToolNonCopperClear.py:660 flatcamTools/ToolPaint.py:757 +#: flatcamTools/ToolCutOut.py:338 flatcamTools/ToolCutOut.py:483 +#: flatcamTools/ToolNonCopperClear.py:665 flatcamTools/ToolPaint.py:763 #: flatcamTools/ToolPanelize.py:293 flatcamTools/ToolPanelize.py:307 #, python-format msgid "[ERROR_NOTCL] Could not retrieve object: %s" -msgstr "[ERROR_NOTCL] Nu s-a putut incarca obiectul: %s" +msgstr "[ERROR_NOTCL] Nu s-a putut incărca obiectul: %s" -#: flatcamTools/ToolCutOut.py:333 +#: flatcamTools/ToolCutOut.py:342 msgid "" "[ERROR_NOTCL] There is no object selected for Cutout.\n" "Select one and try again." @@ -8954,7 +9940,7 @@ msgstr "" "[ERROR_NOTCL] Nu este nici-un obiect selectat pentru decupaj.\n" "Selectează unul și încearcă din nou." -#: flatcamTools/ToolCutOut.py:349 +#: flatcamTools/ToolCutOut.py:358 msgid "" "[WARNING_NOTCL] Tool Diameter is zero value. Change it to a positive real " "number." @@ -8962,29 +9948,29 @@ msgstr "" "[WARNING_NOTCL] Diametrul uneltei este zero. Schimbă-l intr-o val. pozitivă " "Reala." -#: flatcamTools/ToolCutOut.py:359 flatcamTools/ToolCutOut.py:496 -#: flatcamTools/ToolCutOut.py:721 +#: flatcamTools/ToolCutOut.py:368 flatcamTools/ToolCutOut.py:511 +#: flatcamTools/ToolCutOut.py:736 msgid "" "[WARNING_NOTCL] Margin value is missing or wrong format. Add it and retry." msgstr "" "[WARNING_NOTCL] Valoarea marginii lipseste sau este in format gresit. Adaugă " "din nou și reîncearcă." -#: flatcamTools/ToolCutOut.py:370 flatcamTools/ToolCutOut.py:507 -#: flatcamTools/ToolCutOut.py:616 +#: flatcamTools/ToolCutOut.py:379 flatcamTools/ToolCutOut.py:522 +#: flatcamTools/ToolCutOut.py:631 msgid "" "[WARNING_NOTCL] Gap size value is missing or wrong format. Add it and retry." msgstr "" "[WARNING_NOTCL] Valoarea dimensiunii punte lipseste sau este in format " "gresit. Adaugă din nou și reîncearcă." -#: flatcamTools/ToolCutOut.py:377 flatcamTools/ToolCutOut.py:514 +#: flatcamTools/ToolCutOut.py:386 flatcamTools/ToolCutOut.py:529 msgid "[WARNING_NOTCL] Number of gaps value is missing. Add it and retry." msgstr "" "[WARNING_NOTCL] Numărul de punţi lipseste sau este in format gresit. Adaugă " "din nou și reîncearcă." -#: flatcamTools/ToolCutOut.py:381 flatcamTools/ToolCutOut.py:518 +#: flatcamTools/ToolCutOut.py:390 flatcamTools/ToolCutOut.py:533 msgid "" "[WARNING_NOTCL] Gaps value can be only one of: 'lr', 'tb', '2lr', '2tb', 4 " "or 8. Fill in a correct value and retry. " @@ -8992,7 +9978,7 @@ msgstr "" "[WARNING_NOTCL] Valoarea punţilor poate fi numai una dintre: 'lr', 'tb', " "'2lr', '2tb', 4 or 8. Adaugă o valoare permisa și reîncearcă." -#: flatcamTools/ToolCutOut.py:386 flatcamTools/ToolCutOut.py:523 +#: flatcamTools/ToolCutOut.py:395 flatcamTools/ToolCutOut.py:538 msgid "" "[ERROR]Cutout operation cannot be done on a multi-geo Geometry.\n" "Optionally, this Multi-geo Geometry can be converted to Single-geo " @@ -9004,18 +9990,18 @@ msgstr "" "Se poate insa converti MultiGeo in tip SingleGeo și apoi se poate efectua " "decupajul." -#: flatcamTools/ToolCutOut.py:452 flatcamTools/ToolCutOut.py:586 +#: flatcamTools/ToolCutOut.py:467 flatcamTools/ToolCutOut.py:601 msgid "[success] Any form CutOut operation finished." msgstr "[success] Operatia de decupaj cu forma libera s-a terminat." -#: flatcamTools/ToolCutOut.py:472 flatcamTools/ToolPaint.py:761 +#: flatcamTools/ToolCutOut.py:487 flatcamTools/ToolPaint.py:767 #: flatcamTools/ToolPanelize.py:299 #, python-format msgid "[ERROR_NOTCL] Object not found: %s" msgstr "[ERROR_NOTCL] Obiectul nu a fost gasit: %s" -#: flatcamTools/ToolCutOut.py:486 flatcamTools/ToolCutOut.py:606 -#: flatcamTools/ToolCutOut.py:711 +#: flatcamTools/ToolCutOut.py:501 flatcamTools/ToolCutOut.py:621 +#: flatcamTools/ToolCutOut.py:726 msgid "" "[ERROR_NOTCL] Tool Diameter is zero value. Change it to a positive real " "number." @@ -9023,38 +10009,38 @@ msgstr "" "[ERROR_NOTCL] Diametrul uneltei este zero. Schimbă intr-o valoare pozitivă " "Reala." -#: flatcamTools/ToolCutOut.py:591 +#: flatcamTools/ToolCutOut.py:606 msgid "" "Click on the selected geometry object perimeter to create a bridge gap ..." msgstr "" "Click pe perimetrul obiectului tip Geometrie selectat\n" "pentru a crea o punte separatoare." -#: flatcamTools/ToolCutOut.py:632 +#: flatcamTools/ToolCutOut.py:647 msgid "Making manual bridge gap..." msgstr "Se generează o punte separatoare in mod manual..." -#: flatcamTools/ToolCutOut.py:655 +#: flatcamTools/ToolCutOut.py:670 #, python-format msgid "[ERROR_NOTCL] Could not retrieve Geometry object: %s" -msgstr "[ERROR_NOTCL] Nu s-a putut incarca obiectul Geometrie: %s" +msgstr "[ERROR_NOTCL] Nu s-a putut incărca obiectul Geometrie: %s" -#: flatcamTools/ToolCutOut.py:659 +#: flatcamTools/ToolCutOut.py:674 #, python-format msgid "[ERROR_NOTCL] Geometry object for manual cutout not found: %s" msgstr "" "[ERROR_NOTCL] Obiectul Geometrie pentru decupaj manual nu este gasit: %s" -#: flatcamTools/ToolCutOut.py:669 +#: flatcamTools/ToolCutOut.py:684 msgid "[success] Added manual Bridge Gap." msgstr "[success] O punte a fost adăugată in mod manual." -#: flatcamTools/ToolCutOut.py:686 +#: flatcamTools/ToolCutOut.py:701 #, python-format msgid "[ERROR_NOTCL] Could not retrieve Gerber object: %s" -msgstr "[ERROR_NOTCL] Nu s-a putut incarca obiectul Gerber: %s" +msgstr "[ERROR_NOTCL] Nu s-a putut incărca obiectul Gerber: %s" -#: flatcamTools/ToolCutOut.py:690 +#: flatcamTools/ToolCutOut.py:705 msgid "" "[ERROR_NOTCL] There is no Gerber object selected for Cutout.\n" "Select one and try again." @@ -9062,7 +10048,7 @@ msgstr "" "[ERROR_NOTCL] Nu exista obiect selectat pt operatia de decupare.\n" "Selecteaza unul si incearca din nou." -#: flatcamTools/ToolCutOut.py:695 +#: flatcamTools/ToolCutOut.py:710 msgid "" "[ERROR_NOTCL] The selected object has to be of Gerber type.\n" "Select a Gerber file and try again." @@ -9238,7 +10224,7 @@ msgstr "" msgid "" "[WARNING_NOTCL] There is no Box reference object loaded. Load one and retry." msgstr "" -"[WARNING_NOTCL] Nici-un obiect container nu este incarcat. Incarca unul și " +"[WARNING_NOTCL] Nici-un obiect container nu este incărcat. Încarcă unul și " "încearcă din nou." #: flatcamTools/ToolDblSided.py:368 @@ -9264,7 +10250,7 @@ msgstr "" #: flatcamTools/ToolDblSided.py:406 msgid "[WARNING_NOTCL] There is no Gerber object loaded ..." -msgstr "[WARNING_NOTCL] Nu este nici-un obiect Gerber incarcat ..." +msgstr "[WARNING_NOTCL] Nu este nici-un obiect Gerber incărcat ..." #: flatcamTools/ToolDblSided.py:410 flatcamTools/ToolDblSided.py:453 #: flatcamTools/ToolDblSided.py:497 @@ -9285,7 +10271,7 @@ msgstr "" #: flatcamTools/ToolDblSided.py:430 flatcamTools/ToolDblSided.py:474 #: flatcamTools/ToolDblSided.py:511 msgid "[WARNING_NOTCL] There is no Box object loaded ..." -msgstr "[WARNING_NOTCL] Nu este incarcat nici-un obiect container ..." +msgstr "[WARNING_NOTCL] Nu este incărcat nici-un obiect container ..." #: flatcamTools/ToolDblSided.py:440 #, python-format @@ -9294,7 +10280,7 @@ msgstr "[success]Obiectul Gerberr %s a fost oglindit..." #: flatcamTools/ToolDblSided.py:449 msgid "[WARNING_NOTCL] There is no Excellon object loaded ..." -msgstr "[WARNING_NOTCL] Nici-un obiect tip Excellon nu este incarcat ..." +msgstr "[WARNING_NOTCL] Nici-un obiect tip Excellon nu este incărcat ..." #: flatcamTools/ToolDblSided.py:464 msgid "" @@ -9311,7 +10297,7 @@ msgstr "[success] Obiectul Excellon %s a fost oglindit..." #: flatcamTools/ToolDblSided.py:493 msgid "[WARNING_NOTCL] There is no Geometry object loaded ..." -msgstr "[WARNING_NOTCL] Nici-un obiect tip Geometrie nu este incarcat ..." +msgstr "[WARNING_NOTCL] Nici-un obiect tip Geometrie nu este incărcat ..." #: flatcamTools/ToolDblSided.py:521 #, python-format @@ -9398,14 +10384,14 @@ msgstr "" msgid "" "[ERROR_NOTCL] No FlatCAM object selected. Load an object for Film and retry." msgstr "" -"[ERROR_NOTCL] Nici-un obiect FlaCAM nu este selectat. Incarca un obiect pt " +"[ERROR_NOTCL] Nici-un obiect FlaCAM nu este selectat. Incărca un obiect pt " "Film și încearcă din nou." #: flatcamTools/ToolFilm.py:231 msgid "" "[ERROR_NOTCL] No FlatCAM object selected. Load an object for Box and retry." msgstr "" -"[ERROR_NOTCL] Nici-un obiect FlaCAM nu este selectat. Incarca un obiect " +"[ERROR_NOTCL] Nici-un obiect FlaCAM nu este selectat. Încarcă un obiect " "container și încearcă din nou." #: flatcamTools/ToolFilm.py:255 @@ -9547,65 +10533,71 @@ msgstr "Importa Imagine" msgid "Measurement" msgstr "Masuratoare" -#: flatcamTools/ToolMeasurement.py:47 -msgid "Start" -msgstr "Start" +#: flatcamTools/ToolMeasurement.py:44 +msgid "Units:" +msgstr "Unităti:" -#: flatcamTools/ToolMeasurement.py:47 flatcamTools/ToolMeasurement.py:50 -msgid "Coords" -msgstr "Coordonate:" - -#: flatcamTools/ToolMeasurement.py:48 flatcamTools/ToolMeasurement.py:99 -msgid "This is measuring Start point coordinates." -msgstr "Coordonatele punctului de Start." - -#: flatcamTools/ToolMeasurement.py:50 -msgid "Stop" -msgstr "Stop" - -#: flatcamTools/ToolMeasurement.py:51 flatcamTools/ToolMeasurement.py:104 -msgid "This is the measuring Stop point coordinates." -msgstr "Coordonatele punctului de Stop." - -#: flatcamTools/ToolMeasurement.py:54 flatcamTools/ToolMeasurement.py:109 -msgid "This is the distance measured over the X axis." -msgstr "Distanta masurata pe axa X." - -#: flatcamTools/ToolMeasurement.py:57 flatcamTools/ToolMeasurement.py:115 -msgid "This is the distance measured over the Y axis." -msgstr "Distanta masurata pe axa Y." - -#: flatcamTools/ToolMeasurement.py:59 -msgid "DISTANCE" -msgstr "DISTANTA:" - -#: flatcamTools/ToolMeasurement.py:60 flatcamTools/ToolMeasurement.py:121 -msgid "This is the point to point Euclidian distance." -msgstr "Distanta euclidiana de la punct la punct." - -#: flatcamTools/ToolMeasurement.py:63 flatcamTools/ToolMeasurement.py:70 -#: flatcamTools/ToolMeasurement.py:77 flatcamTools/ToolMeasurement.py:84 -#: flatcamTools/ToolMeasurement.py:91 +#: flatcamTools/ToolMeasurement.py:45 msgid "Those are the units in which the distance is measured." msgstr "Unitatile de masura in care se masoara distanța." -#: flatcamTools/ToolMeasurement.py:124 +#: flatcamTools/ToolMeasurement.py:49 +msgid "Start" +msgstr "Start" + +#: flatcamTools/ToolMeasurement.py:49 flatcamTools/ToolMeasurement.py:52 +msgid "Coords" +msgstr "Coordonate:" + +#: flatcamTools/ToolMeasurement.py:50 flatcamTools/ToolMeasurement.py:66 +msgid "This is measuring Start point coordinates." +msgstr "Coordonatele punctului de Start." + +#: flatcamTools/ToolMeasurement.py:52 +msgid "Stop" +msgstr "Stop" + +#: flatcamTools/ToolMeasurement.py:53 flatcamTools/ToolMeasurement.py:70 +msgid "This is the measuring Stop point coordinates." +msgstr "Coordonatele punctului de Stop." + +#: flatcamTools/ToolMeasurement.py:56 flatcamTools/ToolMeasurement.py:74 +msgid "This is the distance measured over the X axis." +msgstr "Distanta masurata pe axa X." + +#: flatcamTools/ToolMeasurement.py:59 flatcamTools/ToolMeasurement.py:79 +msgid "This is the distance measured over the Y axis." +msgstr "Distanta masurata pe axa Y." + +#: flatcamTools/ToolMeasurement.py:61 +msgid "DISTANCE" +msgstr "DISTANTA:" + +#: flatcamTools/ToolMeasurement.py:62 flatcamTools/ToolMeasurement.py:84 +msgid "This is the point to point Euclidian distance." +msgstr "Distanta euclidiana de la punct la punct." + +#: flatcamTools/ToolMeasurement.py:86 msgid "Measure" msgstr "Masoara:" -#: flatcamTools/ToolMeasurement.py:183 +#: flatcamTools/ToolMeasurement.py:126 msgid "Meas. Tool" msgstr "Unealta Masur." -#: flatcamTools/ToolMeasurement.py:276 +#: flatcamTools/ToolMeasurement.py:221 msgid "MEASURING: Click on the Start point ..." msgstr "Masoara: Click pe punctul de Start ..." -#: flatcamTools/ToolMeasurement.py:305 +#: flatcamTools/ToolMeasurement.py:231 +msgid "Measurement Tool exit..." +msgstr "Măsurătoarea s-a terminat ..." + +#: flatcamTools/ToolMeasurement.py:258 msgid "MEASURING: Click on the Destination point ..." msgstr "Masoara: Click pe punctul Destinaţie..." -#: flatcamTools/ToolMeasurement.py:326 +#: flatcamTools/ToolMeasurement.py:276 #, python-brace-format msgid "MEASURING: Result D(x) = {d_x} | D(y) = {d_y} | Distance = {d_z}" msgstr "Masoara: Rrezultat D(x) = {d_x} | D(y) = {d_y} | Distanta = {d_z}" @@ -9788,30 +10780,37 @@ msgstr "[WARNING_NOTCL] Ștergere eșuata. Selectează o unealtă pt ștergere." msgid "[success] Tool(s) deleted from Tool Table." msgstr "[success] Au fost șterse unelte din Tabela de Unelte." -#: flatcamTools/ToolNonCopperClear.py:667 +#: flatcamTools/ToolNonCopperClear.py:632 flatcamTools/ToolPaint.py:747 +msgid "" +"[ERROR_NOTCL] Overlap value must be between 0 (inclusive) and 1 (exclusive), " +msgstr "" +"[ERROR_NOTCL] Valoarea de suprapunere trrebuie sa ia valori intre 0 " +"(inclusiv) si 1 (exclusiv)." + +#: flatcamTools/ToolNonCopperClear.py:672 msgid "[ERROR_NOTCL] No Gerber file available." msgstr "[ERROR_NOTCL] Nici-un fisier Gerber nu este disponibil." -#: flatcamTools/ToolNonCopperClear.py:705 -#: flatcamTools/ToolNonCopperClear.py:827 +#: flatcamTools/ToolNonCopperClear.py:710 +#: flatcamTools/ToolNonCopperClear.py:832 msgid "Clearing Non-Copper areas." msgstr "Se curăță PCB-ul de cuprul in exces." -#: flatcamTools/ToolNonCopperClear.py:723 +#: flatcamTools/ToolNonCopperClear.py:728 #, python-format msgid "[success] Non-Copper Clearing with ToolDia = %s started." msgstr "[success] Curățarea de Cupru in exces cu Dia Unealta = %s a inceput." -#: flatcamTools/ToolNonCopperClear.py:792 +#: flatcamTools/ToolNonCopperClear.py:797 #, python-format msgid "[ERROR_NOTCL] NCCTool.clear_non_copper() --> %s" msgstr "[ERROR_NOTCL] NCCTool.clear_non_copper() --> %s" -#: flatcamTools/ToolNonCopperClear.py:797 +#: flatcamTools/ToolNonCopperClear.py:802 msgid "[success] NCC Tool finished." msgstr "[success] Unealta NCC s-a terminat." -#: flatcamTools/ToolNonCopperClear.py:799 +#: flatcamTools/ToolNonCopperClear.py:804 msgid "" "[WARNING_NOTCL] NCC Tool finished but some PCB features could not be " "cleared. Check the result." @@ -9819,17 +10818,17 @@ msgstr "" "[WARNING_NOTCL] Unealta NCC a terminat lucrul dar unele zone PCB nu au putut " "fi curățate de Cu. Verifică rezultatul." -#: flatcamTools/ToolNonCopperClear.py:845 +#: flatcamTools/ToolNonCopperClear.py:850 #, python-format msgid "[success] Non-Copper Rest Clearing with ToolDia = %s started." msgstr "[success] Curățarea de Cupru tip Rest cu dia unealtă = %s a inceput.." -#: flatcamTools/ToolNonCopperClear.py:943 +#: flatcamTools/ToolNonCopperClear.py:948 #, python-format msgid "[ERROR_NOTCL] NCCTool.clear_non_copper_rest() --> %s" msgstr "[ERROR_NOTCL] NCCTool.clear_non_copper_rest() --> %s" -#: flatcamTools/ToolNonCopperClear.py:951 +#: flatcamTools/ToolNonCopperClear.py:956 msgid "" "[ERROR_NOTCL] NCC Tool finished but could not clear the object with current " "settings." @@ -9927,33 +10926,33 @@ msgstr "" msgid "geometry_on_paint_button" msgstr "geometry_on_paint_button" -#: flatcamTools/ToolPaint.py:735 flatcamTools/ToolPaint.py:780 +#: flatcamTools/ToolPaint.py:751 flatcamTools/ToolPaint.py:786 msgid "[WARNING_NOTCL] Click inside the desired polygon." msgstr "" "[WARNING_NOTCL] Click in interiorul poligonului care se doreste să fie " "'pictat'." -#: flatcamTools/ToolPaint.py:767 +#: flatcamTools/ToolPaint.py:773 msgid "[ERROR_NOTCL] Can't do Paint on MultiGeo geometries ..." msgstr "[ERROR_NOTCL] Nu se poate face 'pictare' pe geometrii MultiGeo ..." -#: flatcamTools/ToolPaint.py:789 flatcamTools/ToolPaint.py:992 +#: flatcamTools/ToolPaint.py:795 flatcamTools/ToolPaint.py:998 msgid "Painting polygon..." msgstr "Se 'pictează' un poligon..." -#: flatcamTools/ToolPaint.py:840 +#: flatcamTools/ToolPaint.py:846 msgid "[WARNING] No polygon found." msgstr "[WARNING] Nu s-a gasit nici-un poligon." -#: flatcamTools/ToolPaint.py:843 +#: flatcamTools/ToolPaint.py:849 msgid "Painting polygon." msgstr "Se 'pictează' un poligon." -#: flatcamTools/ToolPaint.py:885 +#: flatcamTools/ToolPaint.py:891 msgid "[ERROR_NOTCL] Geometry could not be painted completely" msgstr "[ERROR_NOTCL] Geometria nu a putut să fie 'pictata' complet." -#: flatcamTools/ToolPaint.py:911 +#: flatcamTools/ToolPaint.py:917 #, python-format msgid "" "[ERROR] Could not do Paint. Try a different combination of parameters. Or a " @@ -9964,16 +10963,16 @@ msgstr "" "diferita de parametri. Sau o strategie diferita de 'pictare'.\n" "%s" -#: flatcamTools/ToolPaint.py:953 +#: flatcamTools/ToolPaint.py:959 #, python-format msgid "[ERROR_NOTCL] PaintTool.paint_poly() --> %s" msgstr "[ERROR_NOTCL] PaintTool.paint_poly() --> %s" -#: flatcamTools/ToolPaint.py:959 flatcamTools/ToolPaint.py:1251 +#: flatcamTools/ToolPaint.py:965 flatcamTools/ToolPaint.py:1258 msgid "Polygon Paint started ..." msgstr "Paint pt poligon a inceput ..." -#: flatcamTools/ToolPaint.py:1107 flatcamTools/ToolPaint.py:1196 +#: flatcamTools/ToolPaint.py:1114 flatcamTools/ToolPaint.py:1203 #, python-format msgid "" "[ERROR] Could not do Paint All. Try a different combination of parameters. " @@ -9984,7 +10983,7 @@ msgstr "" "combinaţie diferita de parametri. Sau încearcă o alta metoda de 'pictat'\n" "%s" -#: flatcamTools/ToolPaint.py:1131 +#: flatcamTools/ToolPaint.py:1138 msgid "" "[ERROR] There is no Painting Geometry in the file.\n" "Usually it means that the tool diameter is too big for the painted " @@ -9996,11 +10995,11 @@ msgstr "" "geometrice.\n" "Schimbă parametrii de 'pictare' și încearcă din nou." -#: flatcamTools/ToolPaint.py:1140 +#: flatcamTools/ToolPaint.py:1147 msgid "[success] Paint All Done." msgstr "[success] 'Paint' pt toate poligoanele a fost efectuata." -#: flatcamTools/ToolPaint.py:1226 +#: flatcamTools/ToolPaint.py:1233 msgid "" "[ERROR_NOTCL] There is no Painting Geometry in the file.\n" "Usually it means that the tool diameter is too big for the painted " @@ -10012,7 +11011,7 @@ msgstr "" "pt a fi folosit in obiectul Geometrie de 'pictat'.\n" "Schimbă parametrii de 'pictat' și încearcă din nou." -#: flatcamTools/ToolPaint.py:1235 +#: flatcamTools/ToolPaint.py:1242 msgid "[success] Paint All with Rest-Machining done." msgstr "" "[success] 'Paint' pentru toate poligoanele cu strategia Rest a fost " @@ -10368,7 +11367,7 @@ msgstr "[success] Uneltele (nozzle) au fost șterse din Tabela de Unelte." #: flatcamTools/ToolSolderPaste.py:951 msgid "[WARNING_NOTCL] No SolderPaste mask Gerber object loaded." msgstr "" -"[WARNING_NOTCL] Nu este incarcat un obiect Gerber cu informatia mastii pt " +"[WARNING_NOTCL] Nu este incărcat un obiect Gerber cu informatia mastii pt " "pastă de fludor." #: flatcamTools/ToolSolderPaste.py:968 @@ -10390,7 +11389,7 @@ msgid "" "[WARNING_NOTCL] Some or all pads have no solder due of inadequate nozzle " "diameters..." msgstr "" -"[WARNING_NOTCL] Cel putin unele pad-uri nu au pastă de fludor datorita " +"[WARNING_NOTCL] Cel puțin unele pad-uri nu au pastă de fludor datorita " "diametrelor uneltelor (nozzle) ne adecvate." #: flatcamTools/ToolSolderPaste.py:1129 @@ -10559,6 +11558,471 @@ msgstr "" msgid "CNCJob objects can't be offseted." msgstr "Obiectele tip CNCJob nu pot fi deplasate." +#~ msgid "" +#~ "[ERROR_NOTCL] The aperture scale factor value is missing or wrong format." +#~ msgstr "" +#~ "[ERROR_NOTCL] Factorul de scalare a aperturii lipseste sau este in format " +#~ "gresit." + +#~ msgid "[ERROR_NOTCL] The aperture buffer value is missing or wrong format." +#~ msgstr "[ERROR_NOTCL] Valoarea pt bufer apertura lipseste " + +#~ msgid "[ERROR_NOTCL] Creation of Gerber failed." +#~ msgstr "[ERROR_NOTCL] Crearea unui fişier Gerber a eșuat." + +#~ msgid "[success] Created: %s" +#~ msgstr "[success] Creat: %s" + +#~ msgid "" +#~ "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" +#~ "
    A Draw an Arc
    B Buffer Tool
    C Copy Geo Item
    E Polygon Intersection Tool
    I Paint Tool
    J Jump to Location (x, y)
    K Toggle Corner Snap
    M Move Geo Item
    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" +#~ " " +#~ msgstr "" +#~ "Editor Shortcut list
    \n" +#~ "
    \n" +#~ " EDITORUL DE GEOMETRII
    \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \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 Desenează un Arc
    B Unealta Bufer
    C Copiaza o geometrie
    E Unealta IntersecÅ£ie Poligoane
    I Unealta Paint
    J Sari la LocaÅ£ie (x, y)
    K Comuta lipire colt
    M Muta forma geometrică
    N Desenează un Poligon
    O Desenează un Cerc
    P Desenează o Cale
    R Desenează un Patrulater
    S Unealta SubstracÅ£ie Poligoane
    T Unealta de adaugare Text
    U Unealta de Uniune Poligoane
    X OglindeÈ™te forma geo pe axa X
    Y OglindeÈ™te forma geo pe axa Y
      
    SHIFT+X Deformează forma geo pe axa X/td>\n" +#~ "
    SHIFT+Y Deformează forma geo pe axa Y
      
    ALT+R Unealta de Trasformări din Editor
    ALT+X Deplasează forma geo pe axa X
    ALT+Y Deplasează forma geo pe axa Y
      
    CTRL+M Unealta de Masurare
    CTRL+S Salvează obiectul È™i ieÈ™i din Editor\n" +#~ "
    CTRL+X Unealta de tăiere Poligoane
      
    Space Roteste forma geometrică
    ENTER Termina desenatul pentru anumite " +#~ "unelte
    ESC Renunta È™i intoarce-te la Select
    Del È˜terge forma geometrică
    \n" +#~ "
    \n" +#~ "
    \n" +#~ " EDITORUL EXCELLON
    \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " \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 Adaugă o arie de găuriri\n" +#~ "
    C Copiaza Găuriri
    D Adaugă găurire
    J Sari la LocaÅ£ie (x, y)
    M Muta Găuriri
    R Redimensionează găuriri
    T Adaugă o noua Unealta
      
    Del È˜terge Găuriri
    Del Alternatic: Șterge Unelte
      
    ESC Renunta È™i intoarce-te la Select
    CTRL+S Salvează obiectul È™i ieÈ™i din Editor\n" +#~ "
    \n" +#~ " " + +#~ msgid "Save && Close Edit" +#~ msgstr "Salvează && Inchide Edit" + +#~ msgid "[success] GUI settings deleted ..." +#~ msgstr "[success] Setarile GUI au fost șterse ..." + +#~ msgid "Scale Factor:" +#~ msgstr "Factor scalare:" + +#~ msgid "Perform scaling operation on the selected apertures." +#~ msgstr "Efectuează operatia de scalare pt aperturile selectate." + +#~ msgid "Buffer Factor:" +#~ msgstr "Factor bufer:" + +#~ msgid "Perform buffer operation on the selected apertures." +#~ msgstr "Efectuează operatia de bufer pt aperturile selectate." + +#~ msgid "Generate new Gerber Object:" +#~ msgstr "Crează un nou obiect Gerber::" + +#~ msgid "Will generate a new Gerber object from the changed apertures." +#~ msgstr "Va crea un nou obiect tip Gerber din aperturile modificate." + +#~ msgid "" +#~ "Will generate a new Gerber object from the changed apertures.\n" +#~ "This new object can then be isolated etc." +#~ msgstr "" +#~ "Va genera un nou obiect Gerber din aperturile modificate.\n" +#~ "Acest nou obiect poate fi izolat etc." + #~ msgid "[ERROR_NOTCL]Could not load defaults file." #~ msgstr "" #~ "[ERROR_NOTCL] Nu a fost posibila incarcarea fişierului cu valori default." diff --git a/locale_template/strings.pot b/locale_template/strings.pot index f9962251..9f379fc3 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-12 16:43+0300\n" +"POT-Creation-Date: 2019-04-12 21:44+0300\n" "PO-Revision-Date: 2019-03-25 15:08+0200\n" "Last-Translator: \n" "Language-Team: \n" @@ -39,26 +39,48 @@ msgstr "" msgid "Open Script file failed." msgstr "" -#: FlatCAMApp.py:2106 +#: FlatCAMApp.py:2098 +msgid "[WARNING_NOTCL] Select a Geometry or Excellon Object to edit." +msgstr "" + +#: FlatCAMApp.py:2108 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:2135 -msgid "[WARNING_NOTCL] Select a Geometry or Excellon Object to edit." -msgstr "" - -#: FlatCAMApp.py:2146 +#: FlatCAMApp.py:2144 msgid "[WARNING_NOTCL] Editor is activated ..." msgstr "" -#: FlatCAMApp.py:2186 FlatCAMApp.py:2212 +#: FlatCAMApp.py:2171 +msgid "Do you want to save the edited object?" +msgstr "" + +#: FlatCAMApp.py:2172 flatcamGUI/FlatCAMGUI.py:1549 +msgid "Close Editor" +msgstr "" + +#: FlatCAMApp.py:2175 FlatCAMApp.py:3255 FlatCAMApp.py:5564 +#: FlatCAMTranslation.py:89 flatcamGUI/FlatCAMGUI.py:3542 +msgid "Yes" +msgstr "" + +#: FlatCAMApp.py:2176 FlatCAMApp.py:3256 FlatCAMApp.py:5565 +#: FlatCAMTranslation.py:90 flatcamGUI/FlatCAMGUI.py:3543 +msgid "No" +msgstr "" + +#: FlatCAMApp.py:2177 FlatCAMApp.py:3257 FlatCAMApp.py:3589 FlatCAMApp.py:5566 +msgid "Cancel" +msgstr "" + +#: FlatCAMApp.py:2199 FlatCAMApp.py:2224 msgid "[WARNING] Object empty after edit." msgstr "" -#: FlatCAMApp.py:2223 +#: FlatCAMApp.py:2233 FlatCAMApp.py:2245 FlatCAMApp.py:2257 msgid "[WARNING_NOTCL] Select a Gerber, Geometry or Excellon Object to update." msgstr "" @@ -67,74 +89,74 @@ msgstr "" msgid "[selected] %s is updated, returning to App..." msgstr "" -#: FlatCAMApp.py:2563 +#: FlatCAMApp.py:2593 msgid "[ERROR] Could not load defaults file." msgstr "" -#: FlatCAMApp.py:2575 +#: FlatCAMApp.py:2605 msgid "[ERROR] Failed to parse defaults file." msgstr "" -#: FlatCAMApp.py:2596 FlatCAMApp.py:2599 +#: FlatCAMApp.py:2626 FlatCAMApp.py:2629 msgid "Import FlatCAM Preferences" msgstr "" -#: FlatCAMApp.py:2604 +#: FlatCAMApp.py:2634 msgid "[WARNING_NOTCL] FlatCAM preferences import cancelled." msgstr "" -#: FlatCAMApp.py:2612 FlatCAMApp.py:2659 FlatCAMApp.py:3104 +#: FlatCAMApp.py:2642 FlatCAMApp.py:2689 FlatCAMApp.py:3134 msgid "[ERROR_NOTCL] Could not load defaults file." msgstr "" -#: FlatCAMApp.py:2620 FlatCAMApp.py:3113 +#: FlatCAMApp.py:2650 FlatCAMApp.py:3143 msgid "[ERROR_NOTCL] Failed to parse defaults file." msgstr "" -#: FlatCAMApp.py:2623 +#: FlatCAMApp.py:2653 #, python-format msgid "[success] Imported Defaults from %s" msgstr "" -#: FlatCAMApp.py:2633 FlatCAMApp.py:2637 +#: FlatCAMApp.py:2663 FlatCAMApp.py:2667 msgid "Export FlatCAM Preferences" msgstr "" -#: FlatCAMApp.py:2643 +#: FlatCAMApp.py:2673 msgid "[WARNING_NOTCL] FlatCAM preferences export cancelled." msgstr "" -#: FlatCAMApp.py:2678 FlatCAMApp.py:3158 +#: FlatCAMApp.py:2708 FlatCAMApp.py:3188 msgid "[ERROR_NOTCL] Failed to write defaults to file." msgstr "" -#: FlatCAMApp.py:2730 +#: FlatCAMApp.py:2760 msgid "[ERROR_NOTCL] Failed to open recent files file for writing." msgstr "" -#: FlatCAMApp.py:2815 camlib.py:4312 +#: FlatCAMApp.py:2845 camlib.py:4430 msgid "[ERROR_NOTCL] An internal error has ocurred. See shell.\n" msgstr "" -#: FlatCAMApp.py:2816 +#: FlatCAMApp.py:2846 #, python-brace-format msgid "" "Object ({kind}) failed because: {error} \n" "\n" msgstr "" -#: FlatCAMApp.py:2836 +#: FlatCAMApp.py:2866 msgid "Converting units to " msgstr "" -#: FlatCAMApp.py:2906 FlatCAMApp.py:2909 FlatCAMApp.py:2912 FlatCAMApp.py:2915 +#: FlatCAMApp.py:2936 FlatCAMApp.py:2939 FlatCAMApp.py:2942 FlatCAMApp.py:2945 #, python-brace-format msgid "" "[selected] {kind} created/selected: {name}" msgstr "" -#: FlatCAMApp.py:3009 +#: FlatCAMApp.py:3039 #, python-brace-format msgid "" "FlatCAM
    Version {version} {beta} ({date}) - " @@ -148,41 +170,41 @@ msgid "" "downloads/\">here.
    " msgstr "" -#: FlatCAMApp.py:3162 +#: FlatCAMApp.py:3192 msgid "[success] Defaults saved." msgstr "" -#: FlatCAMApp.py:3183 +#: FlatCAMApp.py:3213 msgid "[ERROR_NOTCL] Could not load factory defaults file." msgstr "" -#: FlatCAMApp.py:3192 +#: FlatCAMApp.py:3222 msgid "[ERROR_NOTCL] Failed to parse factory defaults file." msgstr "" -#: FlatCAMApp.py:3206 +#: FlatCAMApp.py:3236 msgid "[ERROR_NOTCL] Failed to write factory defaults to file." msgstr "" -#: FlatCAMApp.py:3210 +#: FlatCAMApp.py:3240 msgid "Factory defaults saved." msgstr "" -#: FlatCAMApp.py:3215 flatcamGUI/FlatCAMGUI.py:2974 +#: FlatCAMApp.py:3245 flatcamGUI/FlatCAMGUI.py:2974 msgid "[WARNING_NOTCL] Application is saving the project. Please wait ..." msgstr "" -#: FlatCAMApp.py:3220 +#: FlatCAMApp.py:3250 msgid "" "There are files/objects modified in FlatCAM. \n" "Do you want to Save the project?" msgstr "" -#: FlatCAMApp.py:3223 FlatCAMApp.py:5527 +#: FlatCAMApp.py:3253 FlatCAMApp.py:5562 msgid "Save changes" msgstr "" -#: FlatCAMApp.py:3288 +#: FlatCAMApp.py:3320 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 " @@ -192,426 +214,431 @@ msgid "" "Check the generated GCODE." msgstr "" -#: FlatCAMApp.py:3329 +#: FlatCAMApp.py:3361 msgid "[ERROR_NOTCL] Failed. Excellon joining works only on Excellon objects." msgstr "" -#: FlatCAMApp.py:3351 +#: FlatCAMApp.py:3383 msgid "[ERROR_NOTCL] Failed. Gerber joining works only on Gerber objects." msgstr "" -#: FlatCAMApp.py:3366 FlatCAMApp.py:3391 +#: FlatCAMApp.py:3398 FlatCAMApp.py:3423 msgid "[ERROR_NOTCL] Failed. Select a Geometry Object and try again." msgstr "" -#: FlatCAMApp.py:3370 FlatCAMApp.py:3395 +#: FlatCAMApp.py:3402 FlatCAMApp.py:3427 #, python-format msgid "[ERROR_NOTCL] Expected a FlatCAMGeometry, got %s" msgstr "" -#: FlatCAMApp.py:3383 +#: FlatCAMApp.py:3415 msgid "[success] A Geometry object was converted to MultiGeo type." msgstr "" -#: FlatCAMApp.py:3409 +#: FlatCAMApp.py:3441 msgid "[success] A Geometry object was converted to SingleGeo type." msgstr "" -#: FlatCAMApp.py:3595 +#: FlatCAMApp.py:3588 FlatCAMApp.py:4353 FlatCAMApp.py:5829 FlatCAMApp.py:5840 +#: FlatCAMApp.py:6026 FlatCAMApp.py:6036 +msgid "Ok" +msgstr "" + +#: FlatCAMApp.py:3629 #, python-format msgid "[success] Converted units to %s" msgstr "" -#: FlatCAMApp.py:3606 +#: FlatCAMApp.py:3640 msgid "[WARNING_NOTCL] Units conversion cancelled." msgstr "" -#: FlatCAMApp.py:4188 +#: FlatCAMApp.py:4222 msgid "Open file" msgstr "" -#: FlatCAMApp.py:4219 FlatCAMApp.py:4224 +#: FlatCAMApp.py:4253 FlatCAMApp.py:4258 msgid "Export G-Code ..." msgstr "" -#: FlatCAMApp.py:4227 +#: FlatCAMApp.py:4261 msgid "[WARNING_NOTCL] Export Code cancelled." msgstr "" -#: FlatCAMApp.py:4237 +#: FlatCAMApp.py:4271 msgid "[WARNING] No such file or directory" msgstr "" -#: FlatCAMApp.py:4244 +#: FlatCAMApp.py:4278 #, python-format msgid "Saved to: %s" msgstr "" -#: FlatCAMApp.py:4307 FlatCAMApp.py:4339 FlatCAMApp.py:4350 FlatCAMApp.py:4361 +#: FlatCAMApp.py:4341 FlatCAMApp.py:4374 FlatCAMApp.py:4385 FlatCAMApp.py:4396 #: flatcamTools/ToolNonCopperClear.py:488 flatcamTools/ToolSolderPaste.py:764 msgid "" "[WARNING_NOTCL] Please enter a tool diameter with non-zero value, in Float " "format." msgstr "" -#: FlatCAMApp.py:4312 FlatCAMApp.py:4344 FlatCAMApp.py:4355 FlatCAMApp.py:4366 +#: FlatCAMApp.py:4346 FlatCAMApp.py:4379 FlatCAMApp.py:4390 FlatCAMApp.py:4401 #: flatcamGUI/FlatCAMGUI.py:2891 msgid "[WARNING_NOTCL] Adding Tool cancelled ..." msgstr "" -#: FlatCAMApp.py:4315 +#: FlatCAMApp.py:4349 msgid "" "Adding Tool works only when Advanced is checked.\n" "Go to Preferences -> General - Show Advanced Options." msgstr "" -#: FlatCAMApp.py:4420 +#: FlatCAMApp.py:4455 msgid "Object(s) deleted ..." msgstr "" -#: FlatCAMApp.py:4424 +#: FlatCAMApp.py:4459 msgid "Failed. No object(s) selected..." msgstr "" -#: FlatCAMApp.py:4426 +#: FlatCAMApp.py:4461 msgid "Save the work in Editor and try again ..." msgstr "" -#: FlatCAMApp.py:4439 +#: FlatCAMApp.py:4474 msgid "Click to set the origin ..." msgstr "" -#: FlatCAMApp.py:4452 +#: FlatCAMApp.py:4487 msgid "Jump to ..." msgstr "" -#: FlatCAMApp.py:4453 +#: FlatCAMApp.py:4488 msgid "Enter the coordinates in format X,Y:" msgstr "" -#: FlatCAMApp.py:4460 +#: FlatCAMApp.py:4495 msgid "Wrong coordinates. Enter coordinates in format: X,Y" msgstr "" -#: FlatCAMApp.py:4478 +#: FlatCAMApp.py:4513 msgid "Done." msgstr "" -#: FlatCAMApp.py:4637 +#: FlatCAMApp.py:4672 msgid "[success] Origin set ..." msgstr "" -#: FlatCAMApp.py:4655 +#: FlatCAMApp.py:4690 msgid "Preferences" msgstr "" -#: FlatCAMApp.py:4675 +#: FlatCAMApp.py:4710 msgid "[WARNING_NOTCL] No object selected to Flip on Y axis." msgstr "" -#: FlatCAMApp.py:4700 +#: FlatCAMApp.py:4735 msgid "[success] Flip on Y axis done." msgstr "" -#: FlatCAMApp.py:4702 FlatCAMApp.py:4742 +#: FlatCAMApp.py:4737 FlatCAMApp.py:4777 #: flatcamEditors/FlatCAMGeoEditor.py:1353 -#: flatcamEditors/FlatCAMGrbEditor.py:3497 flatcamTools/ToolTransform.py:750 +#: flatcamEditors/FlatCAMGrbEditor.py:3522 flatcamTools/ToolTransform.py:750 #, python-format msgid "[ERROR_NOTCL] Due of %s, Flip action was not executed." msgstr "" -#: FlatCAMApp.py:4715 +#: FlatCAMApp.py:4750 msgid "[WARNING_NOTCL] No object selected to Flip on X axis." msgstr "" -#: FlatCAMApp.py:4740 +#: FlatCAMApp.py:4775 msgid "[success] Flip on X axis done." msgstr "" -#: FlatCAMApp.py:4755 +#: FlatCAMApp.py:4790 msgid "[WARNING_NOTCL] No object selected to Rotate." msgstr "" -#: FlatCAMApp.py:4758 FlatCAMApp.py:4803 FlatCAMApp.py:4834 +#: FlatCAMApp.py:4793 FlatCAMApp.py:4838 FlatCAMApp.py:4869 msgid "Transform" msgstr "" -#: FlatCAMApp.py:4758 FlatCAMApp.py:4803 FlatCAMApp.py:4834 +#: FlatCAMApp.py:4793 FlatCAMApp.py:4838 FlatCAMApp.py:4869 msgid "Enter the Angle value:" msgstr "" -#: FlatCAMApp.py:4788 +#: FlatCAMApp.py:4823 msgid "[success] Rotation done." msgstr "" -#: FlatCAMApp.py:4790 flatcamEditors/FlatCAMGeoEditor.py:1296 -#: flatcamEditors/FlatCAMGrbEditor.py:3440 flatcamTools/ToolTransform.py:678 +#: FlatCAMApp.py:4825 flatcamEditors/FlatCAMGeoEditor.py:1296 +#: flatcamEditors/FlatCAMGrbEditor.py:3465 flatcamTools/ToolTransform.py:678 #, python-format msgid "[ERROR_NOTCL] Due of %s, rotation movement was not executed." msgstr "" -#: FlatCAMApp.py:4801 +#: FlatCAMApp.py:4836 msgid "[WARNING_NOTCL] No object selected to Skew/Shear on X axis." msgstr "" -#: FlatCAMApp.py:4822 +#: FlatCAMApp.py:4857 msgid "[success] Skew on X axis done." msgstr "" -#: FlatCAMApp.py:4832 +#: FlatCAMApp.py:4867 msgid "[WARNING_NOTCL] No object selected to Skew/Shear on Y axis." msgstr "" -#: FlatCAMApp.py:4853 +#: FlatCAMApp.py:4888 msgid "[success] Skew on Y axis done." msgstr "" -#: FlatCAMApp.py:4949 FlatCAMApp.py:4976 +#: FlatCAMApp.py:4984 FlatCAMApp.py:5011 msgid "" "[WARNING_NOTCL] Please enter a grid value with non-zero value, in Float " "format." msgstr "" -#: FlatCAMApp.py:4955 +#: FlatCAMApp.py:4990 msgid "[success] New Grid added ..." msgstr "" -#: FlatCAMApp.py:4958 +#: FlatCAMApp.py:4993 msgid "[WARNING_NOTCL] Grid already exists ..." msgstr "" -#: FlatCAMApp.py:4961 +#: FlatCAMApp.py:4996 msgid "[WARNING_NOTCL] Adding New Grid cancelled ..." msgstr "" -#: FlatCAMApp.py:4983 +#: FlatCAMApp.py:5018 msgid "[ERROR_NOTCL] Grid Value does not exist ..." msgstr "" -#: FlatCAMApp.py:4986 +#: FlatCAMApp.py:5021 msgid "[success] Grid Value deleted ..." msgstr "" -#: FlatCAMApp.py:4989 +#: FlatCAMApp.py:5024 msgid "[WARNING_NOTCL] Delete Grid value cancelled ..." msgstr "" -#: FlatCAMApp.py:5028 +#: FlatCAMApp.py:5063 msgid "[WARNING_NOTCL] No object selected to copy it's name" msgstr "" -#: FlatCAMApp.py:5032 +#: FlatCAMApp.py:5067 msgid "Name copied on clipboard ..." msgstr "" -#: FlatCAMApp.py:5327 FlatCAMApp.py:5330 FlatCAMApp.py:5333 FlatCAMApp.py:5336 -#: FlatCAMApp.py:5350 FlatCAMApp.py:5353 FlatCAMApp.py:5356 FlatCAMApp.py:5359 -#: FlatCAMApp.py:5398 FlatCAMApp.py:5401 FlatCAMApp.py:5404 FlatCAMApp.py:5407 +#: FlatCAMApp.py:5362 FlatCAMApp.py:5365 FlatCAMApp.py:5368 FlatCAMApp.py:5371 +#: FlatCAMApp.py:5385 FlatCAMApp.py:5388 FlatCAMApp.py:5391 FlatCAMApp.py:5394 +#: FlatCAMApp.py:5433 FlatCAMApp.py:5436 FlatCAMApp.py:5439 FlatCAMApp.py:5442 #: ObjectCollection.py:711 ObjectCollection.py:714 ObjectCollection.py:717 #: ObjectCollection.py:720 #, python-brace-format msgid "[selected]{name} selected" msgstr "" -#: FlatCAMApp.py:5524 +#: FlatCAMApp.py:5559 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:5542 +#: FlatCAMApp.py:5580 msgid "[success] New Project created..." msgstr "" -#: FlatCAMApp.py:5650 FlatCAMApp.py:5653 flatcamGUI/FlatCAMGUI.py:594 +#: FlatCAMApp.py:5688 FlatCAMApp.py:5691 flatcamGUI/FlatCAMGUI.py:594 #: flatcamGUI/FlatCAMGUI.py:1762 msgid "Open Gerber" msgstr "" -#: FlatCAMApp.py:5658 +#: FlatCAMApp.py:5696 msgid "[WARNING_NOTCL] Open Gerber cancelled." msgstr "" -#: FlatCAMApp.py:5679 FlatCAMApp.py:5682 flatcamGUI/FlatCAMGUI.py:595 +#: FlatCAMApp.py:5717 FlatCAMApp.py:5720 flatcamGUI/FlatCAMGUI.py:595 #: flatcamGUI/FlatCAMGUI.py:1763 msgid "Open Excellon" msgstr "" -#: FlatCAMApp.py:5687 +#: FlatCAMApp.py:5725 msgid "[WARNING_NOTCL] Open Excellon cancelled." msgstr "" -#: FlatCAMApp.py:5709 FlatCAMApp.py:5712 +#: FlatCAMApp.py:5747 FlatCAMApp.py:5750 msgid "Open G-Code" msgstr "" -#: FlatCAMApp.py:5717 +#: FlatCAMApp.py:5755 msgid "[WARNING_NOTCL] Open G-Code cancelled." msgstr "" -#: FlatCAMApp.py:5735 FlatCAMApp.py:5738 +#: FlatCAMApp.py:5773 FlatCAMApp.py:5776 msgid "Open Project" msgstr "" -#: FlatCAMApp.py:5746 +#: FlatCAMApp.py:5784 msgid "[WARNING_NOTCL] Open Project cancelled." msgstr "" -#: FlatCAMApp.py:5765 FlatCAMApp.py:5768 +#: FlatCAMApp.py:5803 FlatCAMApp.py:5806 msgid "Open Configuration File" msgstr "" -#: FlatCAMApp.py:5772 +#: FlatCAMApp.py:5810 msgid "[WARNING_NOTCL Open Config cancelled." msgstr "" -#: FlatCAMApp.py:5787 FlatCAMApp.py:5984 FlatCAMApp.py:8066 FlatCAMApp.py:8086 -#: FlatCAMApp.py:8107 FlatCAMApp.py:8129 +#: FlatCAMApp.py:5825 FlatCAMApp.py:6022 FlatCAMApp.py:8105 FlatCAMApp.py:8125 +#: FlatCAMApp.py:8146 FlatCAMApp.py:8168 msgid "[WARNING_NOTCL] No object selected." msgstr "" -#: FlatCAMApp.py:5788 FlatCAMApp.py:5985 +#: FlatCAMApp.py:5826 FlatCAMApp.py:6023 msgid "Please Select a Geometry object to export" msgstr "" -#: FlatCAMApp.py:5799 +#: FlatCAMApp.py:5837 msgid "[ERROR_NOTCL] Only Geometry, Gerber and CNCJob objects can be used." msgstr "" -#: FlatCAMApp.py:5812 FlatCAMApp.py:5816 +#: FlatCAMApp.py:5850 FlatCAMApp.py:5854 msgid "Export SVG" msgstr "" -#: FlatCAMApp.py:5821 +#: FlatCAMApp.py:5859 msgid "[WARNING_NOTCL] Export SVG cancelled." msgstr "" -#: FlatCAMApp.py:5835 +#: FlatCAMApp.py:5873 msgid "[[WARNING_NOTCL]] Data must be a 3D array with last dimension 3 or 4" msgstr "" -#: FlatCAMApp.py:5841 FlatCAMApp.py:5845 +#: FlatCAMApp.py:5879 FlatCAMApp.py:5883 msgid "Export PNG Image" msgstr "" -#: FlatCAMApp.py:5850 +#: FlatCAMApp.py:5888 msgid "Export PNG cancelled." msgstr "" -#: FlatCAMApp.py:5867 +#: FlatCAMApp.py:5905 msgid "" "[WARNING_NOTCL] No object selected. Please select an Gerber object to export." msgstr "" -#: FlatCAMApp.py:5872 +#: FlatCAMApp.py:5910 msgid "" "[ERROR_NOTCL] Failed. Only Gerber objects can be saved as Gerber files..." msgstr "" -#: FlatCAMApp.py:5884 +#: FlatCAMApp.py:5922 msgid "Save Gerber source file" msgstr "" -#: FlatCAMApp.py:5889 +#: FlatCAMApp.py:5927 msgid "[WARNING_NOTCL] Save Gerber source file cancelled." msgstr "" -#: FlatCAMApp.py:5906 +#: FlatCAMApp.py:5944 msgid "" "[WARNING_NOTCL] No object selected. Please select an Excellon object to " "export." msgstr "" -#: FlatCAMApp.py:5911 FlatCAMApp.py:5950 +#: FlatCAMApp.py:5949 FlatCAMApp.py:5988 msgid "" "[ERROR_NOTCL] Failed. Only Excellon objects can be saved as Excellon files..." msgstr "" -#: FlatCAMApp.py:5919 FlatCAMApp.py:5923 +#: FlatCAMApp.py:5957 FlatCAMApp.py:5961 msgid "Save Excellon source file" msgstr "" -#: FlatCAMApp.py:5928 +#: FlatCAMApp.py:5966 msgid "[WARNING_NOTCL] Saving Excellon source file cancelled." msgstr "" -#: FlatCAMApp.py:5945 +#: FlatCAMApp.py:5983 msgid "" "[WARNING_NOTCL] No object selected. Please Select an Excellon object to " "export." msgstr "" -#: FlatCAMApp.py:5958 FlatCAMApp.py:5962 +#: FlatCAMApp.py:5996 FlatCAMApp.py:6000 msgid "Export Excellon" msgstr "" -#: FlatCAMApp.py:5967 +#: FlatCAMApp.py:6005 msgid "[WARNING_NOTCL] Export Excellon cancelled." msgstr "" -#: FlatCAMApp.py:5995 +#: FlatCAMApp.py:6033 msgid "[ERROR_NOTCL] Only Geometry objects can be used." msgstr "" -#: FlatCAMApp.py:6008 FlatCAMApp.py:6012 +#: FlatCAMApp.py:6047 FlatCAMApp.py:6051 msgid "Export DXF" msgstr "" -#: FlatCAMApp.py:6017 +#: FlatCAMApp.py:6056 msgid "[WARNING_NOTCL] Export DXF cancelled." msgstr "" -#: FlatCAMApp.py:6035 FlatCAMApp.py:6038 +#: FlatCAMApp.py:6074 FlatCAMApp.py:6077 msgid "Import SVG" msgstr "" -#: FlatCAMApp.py:6046 +#: FlatCAMApp.py:6085 msgid "[WARNING_NOTCL] Open SVG cancelled." msgstr "" -#: FlatCAMApp.py:6065 FlatCAMApp.py:6068 +#: FlatCAMApp.py:6104 FlatCAMApp.py:6107 msgid "Import DXF" msgstr "" -#: FlatCAMApp.py:6076 +#: FlatCAMApp.py:6115 msgid "[WARNING_NOTCL] Open DXF cancelled." msgstr "" -#: FlatCAMApp.py:6094 +#: FlatCAMApp.py:6133 #, python-format msgid "%s" msgstr "" -#: FlatCAMApp.py:6114 +#: FlatCAMApp.py:6153 msgid "" "[WARNING_NOTCL] Select an Gerber or Excellon file to view it's source file." msgstr "" -#: FlatCAMApp.py:6121 +#: FlatCAMApp.py:6160 msgid "" "[WARNING_NOTCL] There is no selected object for which to see it's source " "file code." msgstr "" -#: FlatCAMApp.py:6129 +#: FlatCAMApp.py:6168 msgid "Source Editor" msgstr "" -#: FlatCAMApp.py:6139 +#: FlatCAMApp.py:6178 #, python-format msgid "[ERROR]App.on_view_source() -->%s" msgstr "" -#: FlatCAMApp.py:6151 FlatCAMApp.py:7172 FlatCAMObj.py:5257 +#: FlatCAMApp.py:6190 FlatCAMApp.py:7211 FlatCAMObj.py:5257 msgid "Code Editor" msgstr "" -#: FlatCAMApp.py:6163 +#: FlatCAMApp.py:6202 msgid "Script Editor" msgstr "" -#: FlatCAMApp.py:6166 +#: FlatCAMApp.py:6205 msgid "" "#\n" "# CREATE A NEW FLATCAM TCL SCRIPT\n" @@ -635,203 +662,203 @@ msgid "" "\n" msgstr "" -#: FlatCAMApp.py:6189 FlatCAMApp.py:6192 +#: FlatCAMApp.py:6228 FlatCAMApp.py:6231 msgid "Open TCL script" msgstr "" -#: FlatCAMApp.py:6200 +#: FlatCAMApp.py:6239 msgid "[WARNING_NOTCL] Open TCL script cancelled." msgstr "" -#: FlatCAMApp.py:6212 +#: FlatCAMApp.py:6251 #, python-format msgid "[ERROR]App.on_fileopenscript() -->%s" msgstr "" -#: FlatCAMApp.py:6238 FlatCAMApp.py:6241 +#: FlatCAMApp.py:6277 FlatCAMApp.py:6280 msgid "Run TCL script" msgstr "" -#: FlatCAMApp.py:6249 +#: FlatCAMApp.py:6288 msgid "[WARNING_NOTCL] Run TCL script cancelled." msgstr "" -#: FlatCAMApp.py:6295 FlatCAMApp.py:6299 +#: FlatCAMApp.py:6334 FlatCAMApp.py:6338 msgid "Save Project As ..." msgstr "" -#: FlatCAMApp.py:6296 +#: FlatCAMApp.py:6335 #, python-brace-format msgid "{l_save}/Project_{date}" msgstr "" -#: FlatCAMApp.py:6304 +#: FlatCAMApp.py:6343 msgid "[WARNING_NOTCL] Save Project cancelled." msgstr "" -#: FlatCAMApp.py:6349 +#: FlatCAMApp.py:6388 msgid "Exporting SVG" msgstr "" -#: FlatCAMApp.py:6382 FlatCAMApp.py:6487 FlatCAMApp.py:6601 +#: FlatCAMApp.py:6421 FlatCAMApp.py:6526 FlatCAMApp.py:6640 #, python-format msgid "[success] SVG file exported to %s" msgstr "" -#: FlatCAMApp.py:6413 FlatCAMApp.py:6533 +#: FlatCAMApp.py:6452 FlatCAMApp.py:6572 #, python-format msgid "[WARNING_NOTCL] No object Box. Using instead %s" msgstr "" -#: FlatCAMApp.py:6490 FlatCAMApp.py:6604 +#: FlatCAMApp.py:6529 FlatCAMApp.py:6643 msgid "Generating Film ... Please wait." msgstr "" -#: FlatCAMApp.py:6751 +#: FlatCAMApp.py:6790 #, python-format msgid "[success] Excellon file exported to %s" msgstr "" -#: FlatCAMApp.py:6758 +#: FlatCAMApp.py:6797 msgid "Exporting Excellon" msgstr "" -#: FlatCAMApp.py:6763 FlatCAMApp.py:6770 +#: FlatCAMApp.py:6802 FlatCAMApp.py:6809 msgid "[ERROR_NOTCL] Could not export Excellon file." msgstr "" -#: FlatCAMApp.py:6809 +#: FlatCAMApp.py:6848 #, python-format msgid "[success] DXF file exported to %s" msgstr "" -#: FlatCAMApp.py:6815 +#: FlatCAMApp.py:6854 msgid "Exporting DXF" msgstr "" -#: FlatCAMApp.py:6820 FlatCAMApp.py:6827 +#: FlatCAMApp.py:6859 FlatCAMApp.py:6866 msgid "[[WARNING_NOTCL]] Could not export DXF file." msgstr "" -#: FlatCAMApp.py:6847 FlatCAMApp.py:6889 FlatCAMApp.py:6930 +#: FlatCAMApp.py:6886 FlatCAMApp.py:6928 FlatCAMApp.py:6969 msgid "" "[ERROR_NOTCL] Not supported type is picked as parameter. Only Geometry and " "Gerber are supported" msgstr "" -#: FlatCAMApp.py:6857 +#: FlatCAMApp.py:6896 msgid "Importing SVG" msgstr "" -#: FlatCAMApp.py:6868 FlatCAMApp.py:6910 FlatCAMApp.py:6950 FlatCAMApp.py:7026 -#: FlatCAMApp.py:7093 FlatCAMApp.py:7158 +#: FlatCAMApp.py:6907 FlatCAMApp.py:6949 FlatCAMApp.py:6989 FlatCAMApp.py:7065 +#: FlatCAMApp.py:7132 FlatCAMApp.py:7197 #, python-format msgid "[success] Opened: %s" msgstr "" -#: FlatCAMApp.py:6899 +#: FlatCAMApp.py:6938 msgid "Importing DXF" msgstr "" -#: FlatCAMApp.py:6938 +#: FlatCAMApp.py:6977 msgid "Importing Image" msgstr "" -#: FlatCAMApp.py:6979 FlatCAMApp.py:6981 +#: FlatCAMApp.py:7018 FlatCAMApp.py:7020 #, python-format msgid "[ERROR_NOTCL] Failed to open file: %s" msgstr "" -#: FlatCAMApp.py:6984 +#: FlatCAMApp.py:7023 #, python-brace-format msgid "[ERROR_NOTCL] Failed to parse file: {name}. {error}" msgstr "" -#: FlatCAMApp.py:6990 FlatCAMObj.py:3961 -#: flatcamEditors/FlatCAMExcEditor.py:1919 -#: flatcamEditors/FlatCAMGrbEditor.py:2036 +#: FlatCAMApp.py:7029 FlatCAMObj.py:3961 +#: flatcamEditors/FlatCAMExcEditor.py:1927 +#: flatcamEditors/FlatCAMGrbEditor.py:2061 msgid "[ERROR] An internal error has ocurred. See shell.\n" msgstr "" -#: FlatCAMApp.py:6999 +#: FlatCAMApp.py:7038 msgid "" "[ERROR_NOTCL] Object is not Gerber file or empty. Aborting object creation." msgstr "" -#: FlatCAMApp.py:7007 +#: FlatCAMApp.py:7046 msgid "Opening Gerber" msgstr "" -#: FlatCAMApp.py:7017 +#: FlatCAMApp.py:7056 msgid "[ERROR_NOTCL] Open Gerber failed. Probable not a Gerber file." msgstr "" -#: FlatCAMApp.py:7052 +#: FlatCAMApp.py:7091 msgid "[ERROR_NOTCL] This is not Excellon file." msgstr "" -#: FlatCAMApp.py:7055 +#: FlatCAMApp.py:7094 #, python-format msgid "[ERROR_NOTCL] Cannot open file: %s" msgstr "" -#: FlatCAMApp.py:7060 +#: FlatCAMApp.py:7099 msgid "[ERROR_NOTCL] An internal error has occurred. See shell.\n" msgstr "" -#: FlatCAMApp.py:7076 +#: FlatCAMApp.py:7115 #, python-format msgid "[ERROR_NOTCL] No geometry found in file: %s" msgstr "" -#: FlatCAMApp.py:7079 +#: FlatCAMApp.py:7118 msgid "Opening Excellon." msgstr "" -#: FlatCAMApp.py:7086 +#: FlatCAMApp.py:7125 msgid "[ERROR_NOTCL] Open Excellon file failed. Probable not an Excellon file." msgstr "" -#: FlatCAMApp.py:7125 +#: FlatCAMApp.py:7164 #, python-format msgid "[ERROR_NOTCL] Failed to open %s" msgstr "" -#: FlatCAMApp.py:7135 +#: FlatCAMApp.py:7174 msgid "[ERROR_NOTCL] This is not GCODE" msgstr "" -#: FlatCAMApp.py:7141 +#: FlatCAMApp.py:7180 msgid "Opening G-Code." msgstr "" -#: FlatCAMApp.py:7149 +#: FlatCAMApp.py:7188 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:7189 +#: FlatCAMApp.py:7228 #, python-format msgid "[ERROR_NOTCL] Failed to open config file: %s" msgstr "" -#: FlatCAMApp.py:7214 FlatCAMApp.py:7230 +#: FlatCAMApp.py:7253 FlatCAMApp.py:7269 #, python-format msgid "[ERROR_NOTCL] Failed to open project file: %s" msgstr "" -#: FlatCAMApp.py:7256 +#: FlatCAMApp.py:7295 #, python-format msgid "[success] Project loaded from: %s" msgstr "" -#: FlatCAMApp.py:7386 +#: FlatCAMApp.py:7425 msgid "Available commands:\n" msgstr "" -#: FlatCAMApp.py:7388 +#: FlatCAMApp.py:7427 msgid "" "\n" "\n" @@ -839,23 +866,23 @@ msgid "" " Example: help open_gerber" msgstr "" -#: FlatCAMApp.py:7536 +#: FlatCAMApp.py:7575 msgid "Shows list of commands." msgstr "" -#: FlatCAMApp.py:7589 +#: FlatCAMApp.py:7628 msgid "[ERROR_NOTCL] Failed to load recent item list." msgstr "" -#: FlatCAMApp.py:7596 +#: FlatCAMApp.py:7635 msgid "[ERROR_NOTCL] Failed to parse recent item list." msgstr "" -#: FlatCAMApp.py:7657 flatcamGUI/FlatCAMGUI.py:929 +#: FlatCAMApp.py:7696 flatcamGUI/FlatCAMGUI.py:929 msgid "Shortcut Key List" msgstr "" -#: FlatCAMApp.py:7664 +#: FlatCAMApp.py:7703 msgid "" "\n" "

    Selected Tab - Choose an Item from " @@ -905,64 +932,64 @@ msgid "" " " msgstr "" -#: FlatCAMApp.py:7768 +#: FlatCAMApp.py:7807 msgid "[WARNING_NOTCL] Failed checking for latest version. Could not connect." msgstr "" -#: FlatCAMApp.py:7775 +#: FlatCAMApp.py:7814 msgid "[ERROR_NOTCL] Could not parse information about latest version." msgstr "" -#: FlatCAMApp.py:7785 +#: FlatCAMApp.py:7824 msgid "[success] FlatCAM is up to date!" msgstr "" -#: FlatCAMApp.py:7790 +#: FlatCAMApp.py:7829 msgid "Newer Version Available" msgstr "" -#: FlatCAMApp.py:7791 +#: FlatCAMApp.py:7830 msgid "" "There is a newer version of FlatCAM available for download:\n" "\n" msgstr "" -#: FlatCAMApp.py:7793 +#: FlatCAMApp.py:7832 msgid "info" msgstr "" -#: FlatCAMApp.py:7812 +#: FlatCAMApp.py:7851 msgid "[success] All plots disabled." msgstr "" -#: FlatCAMApp.py:7818 +#: FlatCAMApp.py:7857 msgid "[success] All non selected plots disabled." msgstr "" -#: FlatCAMApp.py:7824 +#: FlatCAMApp.py:7863 msgid "[success] All plots enabled." msgstr "" -#: FlatCAMApp.py:7935 +#: FlatCAMApp.py:7974 msgid "Saving FlatCAM Project" msgstr "" -#: FlatCAMApp.py:7956 FlatCAMApp.py:7987 +#: FlatCAMApp.py:7995 FlatCAMApp.py:8026 #, python-format msgid "[success] Project saved to: %s" msgstr "" -#: FlatCAMApp.py:7974 +#: FlatCAMApp.py:8013 #, python-format msgid "[ERROR_NOTCL] Failed to verify project file: %s. Retry to save it." msgstr "" -#: FlatCAMApp.py:7981 +#: FlatCAMApp.py:8020 #, python-format msgid "[ERROR_NOTCL] Failed to parse saved project file: %s. Retry to save it." msgstr "" -#: FlatCAMApp.py:7989 +#: FlatCAMApp.py:8028 #, python-format msgid "[ERROR_NOTCL] Failed to save project file: %s. Retry to save it." msgstr "" @@ -1034,7 +1061,7 @@ msgstr "" #: FlatCAMObj.py:2058 FlatCAMObj.py:2152 FlatCAMObj.py:2263 #: flatcamEditors/FlatCAMExcEditor.py:753 -#: flatcamEditors/FlatCAMExcEditor.py:1862 flatcamGUI/ObjectUI.py:556 +#: flatcamEditors/FlatCAMExcEditor.py:1870 flatcamGUI/ObjectUI.py:556 #: flatcamTools/ToolNonCopperClear.py:83 flatcamTools/ToolPaint.py:80 #: flatcamTools/ToolSolderPaste.py:81 msgid "Diameter" @@ -1069,8 +1096,8 @@ msgstr "" msgid "Generating CNC Code" msgstr "" -#: FlatCAMObj.py:2373 FlatCAMObj.py:4707 camlib.py:5023 camlib.py:5459 -#: camlib.py:5730 +#: FlatCAMObj.py:2373 FlatCAMObj.py:4707 camlib.py:5141 camlib.py:5577 +#: camlib.py:5848 msgid "" "[ERROR]The Toolchange X,Y field in Edit -> Preferences has to be in the " "format (x, y) \n" @@ -1181,7 +1208,7 @@ msgstr "" msgid "[ERROR_NOTCL] Cancelled. Empty file, it has no geometry..." msgstr "" -#: FlatCAMObj.py:4594 FlatCAMObj.py:4604 camlib.py:3292 camlib.py:3301 +#: FlatCAMObj.py:4594 FlatCAMObj.py:4604 camlib.py:3410 camlib.py:3419 msgid "[ERROR_NOTCL] Scale factor has to be a number: integer or float." msgstr "" @@ -1189,7 +1216,7 @@ msgstr "" msgid "[success] Geometry Scale done." msgstr "" -#: FlatCAMObj.py:4659 camlib.py:3363 +#: FlatCAMObj.py:4659 camlib.py:3481 msgid "" "[ERROR_NOTCL] An (x,y) pair of values are needed. Probable you entered only " "one value in the Offset field." @@ -1290,62 +1317,62 @@ msgstr "" msgid "[ERROR_NOTCL] Failed to skew. No object selected" msgstr "" -#: camlib.py:2673 camlib.py:2763 +#: camlib.py:2728 camlib.py:2832 #, python-format msgid "[WARNING] Coordinates missing, line ignored: %s" msgstr "" -#: camlib.py:2674 camlib.py:2764 +#: camlib.py:2729 camlib.py:2833 msgid "[WARNING_NOTCL] GERBER file might be CORRUPT. Check the file !!!" msgstr "" -#: camlib.py:2732 +#: camlib.py:2787 #, 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:3113 +#: camlib.py:3231 #, python-format msgid "" "[ERROR]Gerber Parser ERROR.\n" "%s:" msgstr "" -#: camlib.py:3330 +#: camlib.py:3448 msgid "[success] Gerber Scale done." msgstr "" -#: camlib.py:3387 +#: camlib.py:3505 msgid "[success] Gerber Offset done." msgstr "" -#: camlib.py:3769 +#: camlib.py:3887 #, python-format msgid "[ERROR_NOTCL] This is GCODE mark: %s" msgstr "" -#: camlib.py:4313 +#: camlib.py:4431 #, python-brace-format msgid "" "[ERROR] Excellon Parser error.\n" "Parsing Failed. Line {l_nr}: {line}\n" msgstr "" -#: camlib.py:4390 +#: camlib.py:4508 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:4932 +#: camlib.py:5050 #, python-format msgid "[ERROR] There is no such parameter: %s" msgstr "" -#: camlib.py:5002 +#: camlib.py:5120 msgid "" "[WARNING] The Cut Z parameter has positive value. It is the depth value to " "drill into material.\n" @@ -1354,27 +1381,27 @@ msgid "" "CNC code (Gcode etc)." msgstr "" -#: camlib.py:5009 camlib.py:5482 camlib.py:5753 +#: camlib.py:5127 camlib.py:5600 camlib.py:5871 #, python-format msgid "" "[WARNING] The Cut Z parameter is zero. There will be no cut, skipping %s file" msgstr "" -#: camlib.py:5225 camlib.py:5320 camlib.py:5371 +#: camlib.py:5343 camlib.py:5438 camlib.py:5489 msgid "[ERROR_NOTCL] The loaded Excellon file has no drills ..." msgstr "" -#: camlib.py:5325 +#: camlib.py:5443 msgid "[ERROR_NOTCL] Wrong optimization type selected." msgstr "" -#: camlib.py:5470 camlib.py:5741 +#: camlib.py:5588 camlib.py:5859 msgid "" "[ERROR_NOTCL] Cut_Z parameter is None or zero. Most likely a bad " "combinations of other parameters." msgstr "" -#: camlib.py:5475 camlib.py:5746 +#: camlib.py:5593 camlib.py:5864 msgid "" "[WARNING] The Cut Z parameter has positive value. It is the depth value to " "cut into material.\n" @@ -1383,11 +1410,11 @@ msgid "" "code (Gcode etc)." msgstr "" -#: camlib.py:5487 camlib.py:5758 +#: camlib.py:5605 camlib.py:5876 msgid "[ERROR_NOTCL] Travel Z parameter is None or zero." msgstr "" -#: camlib.py:5491 camlib.py:5762 +#: camlib.py:5609 camlib.py:5880 msgid "" "[WARNING] The Travel Z parameter has negative value. It is the height value " "to travel between cuts.\n" @@ -1396,31 +1423,31 @@ msgid "" "code (Gcode etc)." msgstr "" -#: camlib.py:5498 camlib.py:5769 +#: camlib.py:5616 camlib.py:5887 #, python-format msgid "" "[WARNING] The Z Travel parameter is zero. This is dangerous, skipping %s file" msgstr "" -#: camlib.py:5628 +#: camlib.py:5746 #, python-format msgid "[ERROR]Expected a Geometry, got %s" msgstr "" -#: camlib.py:5634 +#: camlib.py:5752 msgid "" "[ERROR_NOTCL] Trying to generate a CNC Job from a Geometry object without " "solid_geometry." msgstr "" -#: camlib.py:5673 +#: camlib.py:5791 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:5895 +#: camlib.py:6013 msgid "[ERROR_NOTCL] There is no tool data in the SolderPaste geometry." msgstr "" @@ -1649,7 +1676,7 @@ msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:663 #: flatcamEditors/FlatCAMGrbEditor.py:1128 #: flatcamEditors/FlatCAMGrbEditor.py:1164 -#: flatcamEditors/FlatCAMGrbEditor.py:2797 flatcamTools/ToolTransform.py:68 +#: flatcamEditors/FlatCAMGrbEditor.py:2822 flatcamTools/ToolTransform.py:68 msgid "Angle:" msgstr "" @@ -1686,7 +1713,7 @@ msgid "[success] Added new tool with dia: {dia} {units}" msgstr "" #: flatcamEditors/FlatCAMExcEditor.py:1453 -#: flatcamEditors/FlatCAMGrbEditor.py:1623 +#: flatcamEditors/FlatCAMGrbEditor.py:1638 msgid "[WARNING_NOTCL] Select a tool in Tool Table" msgstr "" @@ -1695,30 +1722,30 @@ msgstr "" msgid "[success] Deleted tool with dia: {del_dia} {units}" msgstr "" -#: flatcamEditors/FlatCAMExcEditor.py:1916 +#: flatcamEditors/FlatCAMExcEditor.py:1924 msgid "" "[ERROR_NOTCL] There are no Tools definitions in the file. Aborting Excellon " "creation." msgstr "" -#: flatcamEditors/FlatCAMExcEditor.py:1925 +#: flatcamEditors/FlatCAMExcEditor.py:1933 msgid "Creating Excellon." msgstr "" -#: flatcamEditors/FlatCAMExcEditor.py:1934 +#: flatcamEditors/FlatCAMExcEditor.py:1942 msgid "[success] Excellon editing finished." msgstr "" -#: flatcamEditors/FlatCAMExcEditor.py:1951 +#: flatcamEditors/FlatCAMExcEditor.py:1959 msgid "[WARNING_NOTCL] Cancelled. There is no Tool/Drill selected" msgstr "" -#: flatcamEditors/FlatCAMExcEditor.py:2450 +#: flatcamEditors/FlatCAMExcEditor.py:2458 msgid "[success] Done. Drill(s) deleted." msgstr "" -#: flatcamEditors/FlatCAMExcEditor.py:2520 -#: flatcamEditors/FlatCAMGrbEditor.py:2594 +#: flatcamEditors/FlatCAMExcEditor.py:2528 +#: flatcamEditors/FlatCAMGrbEditor.py:2619 msgid "Click on the circular array Center position" msgstr "" @@ -1777,7 +1804,7 @@ msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:2523 #: flatcamEditors/FlatCAMGeoEditor.py:2549 #: flatcamEditors/FlatCAMGeoEditor.py:2575 -#: flatcamEditors/FlatCAMGrbEditor.py:2637 +#: flatcamEditors/FlatCAMGrbEditor.py:2662 msgid "" "[WARNING_NOTCL] Buffer distance value is missing or wrong format. Add it and " "retry." @@ -1791,20 +1818,20 @@ msgstr "" msgid "Tool" msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:429 flatcamGUI/FlatCAMGUI.py:3832 -#: flatcamGUI/FlatCAMGUI.py:5038 flatcamGUI/FlatCAMGUI.py:5314 -#: flatcamGUI/FlatCAMGUI.py:5454 flatcamGUI/ObjectUI.py:260 +#: flatcamEditors/FlatCAMGeoEditor.py:429 flatcamGUI/FlatCAMGUI.py:3833 +#: flatcamGUI/FlatCAMGUI.py:5039 flatcamGUI/FlatCAMGUI.py:5315 +#: flatcamGUI/FlatCAMGUI.py:5455 flatcamGUI/ObjectUI.py:260 msgid "Tool dia:" msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:431 flatcamGUI/FlatCAMGUI.py:5456 +#: flatcamEditors/FlatCAMGeoEditor.py:431 flatcamGUI/FlatCAMGUI.py:5457 msgid "" "Diameter of the tool to\n" "be used in the operation." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:440 flatcamGUI/FlatCAMGUI.py:5220 -#: flatcamGUI/FlatCAMGUI.py:5465 flatcamTools/ToolNonCopperClear.py:165 +#: flatcamEditors/FlatCAMGeoEditor.py:440 flatcamGUI/FlatCAMGUI.py:5221 +#: flatcamGUI/FlatCAMGUI.py:5466 flatcamTools/ToolNonCopperClear.py:165 #: flatcamTools/ToolPaint.py:160 msgid "Overlap Rate:" msgstr "" @@ -1824,14 +1851,14 @@ msgid "" "due of too many paths." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:458 flatcamGUI/FlatCAMGUI.py:5236 -#: flatcamGUI/FlatCAMGUI.py:5322 flatcamGUI/FlatCAMGUI.py:5475 +#: flatcamEditors/FlatCAMGeoEditor.py:458 flatcamGUI/FlatCAMGUI.py:5237 +#: flatcamGUI/FlatCAMGUI.py:5323 flatcamGUI/FlatCAMGUI.py:5476 #: flatcamTools/ToolCutOut.py:86 flatcamTools/ToolNonCopperClear.py:181 #: flatcamTools/ToolPaint.py:177 msgid "Margin:" msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:460 flatcamGUI/FlatCAMGUI.py:5477 +#: flatcamEditors/FlatCAMGeoEditor.py:460 flatcamGUI/FlatCAMGUI.py:5478 #: flatcamTools/ToolPaint.py:179 msgid "" "Distance by which to avoid\n" @@ -1839,55 +1866,55 @@ msgid "" "be painted." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:469 flatcamGUI/FlatCAMGUI.py:5245 -#: flatcamGUI/FlatCAMGUI.py:5486 flatcamTools/ToolNonCopperClear.py:190 +#: flatcamEditors/FlatCAMGeoEditor.py:469 flatcamGUI/FlatCAMGUI.py:5246 +#: flatcamGUI/FlatCAMGUI.py:5487 flatcamTools/ToolNonCopperClear.py:190 #: flatcamTools/ToolPaint.py:188 msgid "Method:" msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:471 flatcamGUI/FlatCAMGUI.py:5488 +#: flatcamEditors/FlatCAMGeoEditor.py:471 flatcamGUI/FlatCAMGUI.py:5489 msgid "" "Algorithm to paint the polygon:
    Standard: Fixed step inwards." "
    Seed-based: Outwards from seed." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:477 flatcamGUI/FlatCAMGUI.py:5254 -#: flatcamGUI/FlatCAMGUI.py:5494 +#: flatcamEditors/FlatCAMGeoEditor.py:477 flatcamGUI/FlatCAMGUI.py:5255 +#: flatcamGUI/FlatCAMGUI.py:5495 msgid "Standard" msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:478 flatcamGUI/FlatCAMGUI.py:5255 -#: flatcamGUI/FlatCAMGUI.py:5495 +#: flatcamEditors/FlatCAMGeoEditor.py:478 flatcamGUI/FlatCAMGUI.py:5256 +#: flatcamGUI/FlatCAMGUI.py:5496 msgid "Seed-based" msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:479 flatcamGUI/FlatCAMGUI.py:5256 -#: flatcamGUI/FlatCAMGUI.py:5496 +#: flatcamEditors/FlatCAMGeoEditor.py:479 flatcamGUI/FlatCAMGUI.py:5257 +#: flatcamGUI/FlatCAMGUI.py:5497 msgid "Straight lines" msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:484 flatcamGUI/FlatCAMGUI.py:5261 -#: flatcamGUI/FlatCAMGUI.py:5501 flatcamTools/ToolNonCopperClear.py:206 +#: flatcamEditors/FlatCAMGeoEditor.py:484 flatcamGUI/FlatCAMGUI.py:5262 +#: flatcamGUI/FlatCAMGUI.py:5502 flatcamTools/ToolNonCopperClear.py:206 #: flatcamTools/ToolPaint.py:204 msgid "Connect:" msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:486 flatcamGUI/FlatCAMGUI.py:5263 -#: flatcamGUI/FlatCAMGUI.py:5503 flatcamTools/ToolNonCopperClear.py:208 +#: flatcamEditors/FlatCAMGeoEditor.py:486 flatcamGUI/FlatCAMGUI.py:5264 +#: flatcamGUI/FlatCAMGUI.py:5504 flatcamTools/ToolNonCopperClear.py:208 #: flatcamTools/ToolPaint.py:206 msgid "" "Draw lines between resulting\n" "segments to minimize tool lifts." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:493 flatcamGUI/FlatCAMGUI.py:5270 -#: flatcamGUI/FlatCAMGUI.py:5511 flatcamTools/ToolNonCopperClear.py:215 +#: flatcamEditors/FlatCAMGeoEditor.py:493 flatcamGUI/FlatCAMGUI.py:5271 +#: flatcamGUI/FlatCAMGUI.py:5512 flatcamTools/ToolNonCopperClear.py:215 #: flatcamTools/ToolPaint.py:213 msgid "Contour:" msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:495 flatcamGUI/FlatCAMGUI.py:5272 -#: flatcamGUI/FlatCAMGUI.py:5513 flatcamTools/ToolNonCopperClear.py:217 +#: flatcamEditors/FlatCAMGeoEditor.py:495 flatcamGUI/FlatCAMGUI.py:5273 +#: flatcamGUI/FlatCAMGUI.py:5514 flatcamTools/ToolNonCopperClear.py:217 #: flatcamTools/ToolPaint.py:215 msgid "" "Cut around the perimeter of the polygon\n" @@ -1937,53 +1964,53 @@ msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:615 #: flatcamEditors/FlatCAMGeoEditor.py:988 -#: flatcamEditors/FlatCAMGrbEditor.py:2749 -#: flatcamEditors/FlatCAMGrbEditor.py:3133 flatcamGUI/FlatCAMGUI.py:638 +#: flatcamEditors/FlatCAMGrbEditor.py:2774 +#: flatcamEditors/FlatCAMGrbEditor.py:3158 flatcamGUI/FlatCAMGUI.py:638 #: flatcamGUI/FlatCAMGUI.py:1807 flatcamTools/ToolTransform.py:398 msgid "Transform Tool" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:616 #: flatcamEditors/FlatCAMGeoEditor.py:677 -#: flatcamEditors/FlatCAMGrbEditor.py:2750 -#: flatcamEditors/FlatCAMGrbEditor.py:2811 flatcamTools/ToolTransform.py:24 +#: flatcamEditors/FlatCAMGrbEditor.py:2775 +#: flatcamEditors/FlatCAMGrbEditor.py:2836 flatcamTools/ToolTransform.py:24 #: flatcamTools/ToolTransform.py:82 msgid "Rotate" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:617 -#: flatcamEditors/FlatCAMGrbEditor.py:2751 flatcamTools/ToolTransform.py:25 +#: flatcamEditors/FlatCAMGrbEditor.py:2776 flatcamTools/ToolTransform.py:25 msgid "Skew/Shear" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:618 #: flatcamEditors/FlatCAMGrbEditor.py:1049 -#: flatcamEditors/FlatCAMGrbEditor.py:2752 flatcamGUI/FlatCAMGUI.py:696 +#: flatcamEditors/FlatCAMGrbEditor.py:2777 flatcamGUI/FlatCAMGUI.py:696 #: flatcamGUI/FlatCAMGUI.py:1868 flatcamGUI/ObjectUI.py:100 #: flatcamTools/ToolTransform.py:26 msgid "Scale" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:619 -#: flatcamEditors/FlatCAMGrbEditor.py:2753 flatcamTools/ToolTransform.py:27 +#: flatcamEditors/FlatCAMGrbEditor.py:2778 flatcamTools/ToolTransform.py:27 msgid "Mirror (Flip)" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:620 -#: flatcamEditors/FlatCAMGrbEditor.py:2754 flatcamGUI/ObjectUI.py:127 +#: flatcamEditors/FlatCAMGrbEditor.py:2779 flatcamGUI/ObjectUI.py:127 #: flatcamGUI/ObjectUI.py:888 flatcamGUI/ObjectUI.py:1446 #: flatcamTools/ToolTransform.py:28 msgid "Offset" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:631 -#: flatcamEditors/FlatCAMGrbEditor.py:2765 +#: flatcamEditors/FlatCAMGrbEditor.py:2790 #, python-format msgid "Editor %s" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:665 -#: flatcamEditors/FlatCAMGrbEditor.py:2799 flatcamTools/ToolTransform.py:70 +#: flatcamEditors/FlatCAMGrbEditor.py:2824 flatcamTools/ToolTransform.py:70 msgid "" "Angle for Rotation action, in degrees.\n" "Float number between -360 and 359.\n" @@ -1992,7 +2019,7 @@ msgid "" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:679 -#: flatcamEditors/FlatCAMGrbEditor.py:2813 +#: flatcamEditors/FlatCAMGrbEditor.py:2838 msgid "" "Rotate the selected shape(s).\n" "The point of reference is the middle of\n" @@ -2000,14 +2027,14 @@ msgid "" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:702 -#: flatcamEditors/FlatCAMGrbEditor.py:2836 flatcamTools/ToolTransform.py:107 +#: flatcamEditors/FlatCAMGrbEditor.py:2861 flatcamTools/ToolTransform.py:107 msgid "Angle X:" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:704 #: flatcamEditors/FlatCAMGeoEditor.py:722 -#: flatcamEditors/FlatCAMGrbEditor.py:2838 -#: flatcamEditors/FlatCAMGrbEditor.py:2856 flatcamTools/ToolTransform.py:109 +#: flatcamEditors/FlatCAMGrbEditor.py:2863 +#: flatcamEditors/FlatCAMGrbEditor.py:2881 flatcamTools/ToolTransform.py:109 #: flatcamTools/ToolTransform.py:127 msgid "" "Angle for Skew action, in degrees.\n" @@ -2015,14 +2042,14 @@ msgid "" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:713 -#: flatcamEditors/FlatCAMGrbEditor.py:2847 flatcamTools/ToolTransform.py:118 +#: flatcamEditors/FlatCAMGrbEditor.py:2872 flatcamTools/ToolTransform.py:118 msgid "Skew X" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:715 #: flatcamEditors/FlatCAMGeoEditor.py:733 -#: flatcamEditors/FlatCAMGrbEditor.py:2849 -#: flatcamEditors/FlatCAMGrbEditor.py:2867 +#: flatcamEditors/FlatCAMGrbEditor.py:2874 +#: flatcamEditors/FlatCAMGrbEditor.py:2892 msgid "" "Skew/shear the selected shape(s).\n" "The point of reference is the middle of\n" @@ -2030,34 +2057,34 @@ msgid "" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:720 -#: flatcamEditors/FlatCAMGrbEditor.py:2854 flatcamTools/ToolTransform.py:125 +#: flatcamEditors/FlatCAMGrbEditor.py:2879 flatcamTools/ToolTransform.py:125 msgid "Angle Y:" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:731 -#: flatcamEditors/FlatCAMGrbEditor.py:2865 flatcamTools/ToolTransform.py:136 +#: flatcamEditors/FlatCAMGrbEditor.py:2890 flatcamTools/ToolTransform.py:136 msgid "Skew Y" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:759 -#: flatcamEditors/FlatCAMGrbEditor.py:2893 flatcamTools/ToolTransform.py:164 +#: flatcamEditors/FlatCAMGrbEditor.py:2918 flatcamTools/ToolTransform.py:164 msgid "Factor X:" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:761 -#: flatcamEditors/FlatCAMGrbEditor.py:2895 flatcamTools/ToolTransform.py:166 +#: flatcamEditors/FlatCAMGrbEditor.py:2920 flatcamTools/ToolTransform.py:166 msgid "Factor for Scale action over X axis." msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:769 -#: flatcamEditors/FlatCAMGrbEditor.py:2903 flatcamTools/ToolTransform.py:174 +#: flatcamEditors/FlatCAMGrbEditor.py:2928 flatcamTools/ToolTransform.py:174 msgid "Scale X" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:771 #: flatcamEditors/FlatCAMGeoEditor.py:788 -#: flatcamEditors/FlatCAMGrbEditor.py:2905 -#: flatcamEditors/FlatCAMGrbEditor.py:2922 +#: flatcamEditors/FlatCAMGrbEditor.py:2930 +#: flatcamEditors/FlatCAMGrbEditor.py:2947 msgid "" "Scale the selected shape(s).\n" "The point of reference depends on \n" @@ -2065,41 +2092,41 @@ msgid "" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:776 -#: flatcamEditors/FlatCAMGrbEditor.py:2910 flatcamTools/ToolTransform.py:181 +#: flatcamEditors/FlatCAMGrbEditor.py:2935 flatcamTools/ToolTransform.py:181 msgid "Factor Y:" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:778 -#: flatcamEditors/FlatCAMGrbEditor.py:2912 flatcamTools/ToolTransform.py:183 +#: flatcamEditors/FlatCAMGrbEditor.py:2937 flatcamTools/ToolTransform.py:183 msgid "Factor for Scale action over Y axis." msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:786 -#: flatcamEditors/FlatCAMGrbEditor.py:2920 flatcamTools/ToolTransform.py:191 +#: flatcamEditors/FlatCAMGrbEditor.py:2945 flatcamTools/ToolTransform.py:191 msgid "Scale Y" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:795 -#: flatcamEditors/FlatCAMGrbEditor.py:2929 flatcamGUI/FlatCAMGUI.py:5860 +#: flatcamEditors/FlatCAMGrbEditor.py:2954 flatcamGUI/FlatCAMGUI.py:5861 #: flatcamTools/ToolTransform.py:200 msgid "Link" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:797 -#: flatcamEditors/FlatCAMGrbEditor.py:2931 +#: flatcamEditors/FlatCAMGrbEditor.py:2956 msgid "" "Scale the selected shape(s)\n" "using the Scale Factor X for both axis." msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:803 -#: flatcamEditors/FlatCAMGrbEditor.py:2937 flatcamGUI/FlatCAMGUI.py:5868 +#: flatcamEditors/FlatCAMGrbEditor.py:2962 flatcamGUI/FlatCAMGUI.py:5869 #: flatcamTools/ToolTransform.py:208 msgid "Scale Reference" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:805 -#: flatcamEditors/FlatCAMGrbEditor.py:2939 +#: flatcamEditors/FlatCAMGrbEditor.py:2964 msgid "" "Scale the selected shape(s)\n" "using the origin reference when checked,\n" @@ -2108,24 +2135,24 @@ msgid "" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:833 -#: flatcamEditors/FlatCAMGrbEditor.py:2968 flatcamTools/ToolTransform.py:238 +#: flatcamEditors/FlatCAMGrbEditor.py:2993 flatcamTools/ToolTransform.py:238 msgid "Value X:" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:835 -#: flatcamEditors/FlatCAMGrbEditor.py:2970 flatcamTools/ToolTransform.py:240 +#: flatcamEditors/FlatCAMGrbEditor.py:2995 flatcamTools/ToolTransform.py:240 msgid "Value for Offset action on X axis." msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:843 -#: flatcamEditors/FlatCAMGrbEditor.py:2978 flatcamTools/ToolTransform.py:248 +#: flatcamEditors/FlatCAMGrbEditor.py:3003 flatcamTools/ToolTransform.py:248 msgid "Offset X" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:845 #: flatcamEditors/FlatCAMGeoEditor.py:863 -#: flatcamEditors/FlatCAMGrbEditor.py:2980 -#: flatcamEditors/FlatCAMGrbEditor.py:2998 +#: flatcamEditors/FlatCAMGrbEditor.py:3005 +#: flatcamEditors/FlatCAMGrbEditor.py:3023 msgid "" "Offset the selected shape(s).\n" "The point of reference is the middle of\n" @@ -2133,46 +2160,46 @@ msgid "" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:851 -#: flatcamEditors/FlatCAMGrbEditor.py:2986 flatcamTools/ToolTransform.py:255 +#: flatcamEditors/FlatCAMGrbEditor.py:3011 flatcamTools/ToolTransform.py:255 msgid "Value Y:" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:853 -#: flatcamEditors/FlatCAMGrbEditor.py:2988 flatcamTools/ToolTransform.py:257 +#: flatcamEditors/FlatCAMGrbEditor.py:3013 flatcamTools/ToolTransform.py:257 msgid "Value for Offset action on Y axis." msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:861 -#: flatcamEditors/FlatCAMGrbEditor.py:2996 flatcamTools/ToolTransform.py:265 +#: flatcamEditors/FlatCAMGrbEditor.py:3021 flatcamTools/ToolTransform.py:265 msgid "Offset Y" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:892 -#: flatcamEditors/FlatCAMGrbEditor.py:3027 flatcamTools/ToolTransform.py:295 +#: flatcamEditors/FlatCAMGrbEditor.py:3052 flatcamTools/ToolTransform.py:295 msgid "Flip on X" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:894 #: flatcamEditors/FlatCAMGeoEditor.py:902 -#: flatcamEditors/FlatCAMGrbEditor.py:3029 -#: flatcamEditors/FlatCAMGrbEditor.py:3037 +#: flatcamEditors/FlatCAMGrbEditor.py:3054 +#: flatcamEditors/FlatCAMGrbEditor.py:3062 msgid "" "Flip the selected shape(s) over the X axis.\n" "Does not create a new shape." msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:900 -#: flatcamEditors/FlatCAMGrbEditor.py:3035 flatcamTools/ToolTransform.py:303 +#: flatcamEditors/FlatCAMGrbEditor.py:3060 flatcamTools/ToolTransform.py:303 msgid "Flip on Y" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:909 -#: flatcamEditors/FlatCAMGrbEditor.py:3044 flatcamTools/ToolTransform.py:312 +#: flatcamEditors/FlatCAMGrbEditor.py:3069 flatcamTools/ToolTransform.py:312 msgid "Ref Pt" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:911 -#: flatcamEditors/FlatCAMGrbEditor.py:3046 +#: flatcamEditors/FlatCAMGrbEditor.py:3071 msgid "" "Flip the selected shape(s)\n" "around the point in Point Entry Field.\n" @@ -2186,12 +2213,12 @@ msgid "" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:923 -#: flatcamEditors/FlatCAMGrbEditor.py:3058 flatcamTools/ToolTransform.py:325 +#: flatcamEditors/FlatCAMGrbEditor.py:3083 flatcamTools/ToolTransform.py:325 msgid "Point:" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:925 -#: flatcamEditors/FlatCAMGrbEditor.py:3060 +#: flatcamEditors/FlatCAMGrbEditor.py:3085 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" @@ -2199,7 +2226,7 @@ msgid "" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:935 -#: flatcamEditors/FlatCAMGrbEditor.py:3070 flatcamGUI/ObjectUI.py:988 +#: flatcamEditors/FlatCAMGrbEditor.py:3095 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:478 @@ -2208,7 +2235,7 @@ msgid "Add" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:937 -#: flatcamEditors/FlatCAMGrbEditor.py:3072 flatcamTools/ToolTransform.py:339 +#: flatcamEditors/FlatCAMGrbEditor.py:3097 flatcamTools/ToolTransform.py:339 msgid "" "The point coordinates can be captured by\n" "left click on canvas together with pressing\n" @@ -2216,235 +2243,235 @@ msgid "" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:1052 -#: flatcamEditors/FlatCAMGrbEditor.py:3197 +#: flatcamEditors/FlatCAMGrbEditor.py:3222 msgid "[WARNING_NOTCL] Transformation cancelled. No shape selected." msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:1073 -#: flatcamEditors/FlatCAMGrbEditor.py:3217 flatcamTools/ToolTransform.py:468 +#: flatcamEditors/FlatCAMGrbEditor.py:3242 flatcamTools/ToolTransform.py:468 msgid "[ERROR_NOTCL] Wrong value format entered for Rotate, use a number." msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:1110 -#: flatcamEditors/FlatCAMGrbEditor.py:3254 flatcamTools/ToolTransform.py:502 +#: flatcamEditors/FlatCAMGrbEditor.py:3279 flatcamTools/ToolTransform.py:502 msgid "[ERROR_NOTCL] Wrong value format entered for Skew X, use a number." msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:1131 -#: flatcamEditors/FlatCAMGrbEditor.py:3275 flatcamTools/ToolTransform.py:520 +#: flatcamEditors/FlatCAMGrbEditor.py:3300 flatcamTools/ToolTransform.py:520 msgid "[ERROR_NOTCL] Wrong value format entered for Skew Y, use a number." msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:1152 -#: flatcamEditors/FlatCAMGrbEditor.py:3296 flatcamTools/ToolTransform.py:538 +#: flatcamEditors/FlatCAMGrbEditor.py:3321 flatcamTools/ToolTransform.py:538 msgid "[ERROR_NOTCL] Wrong value format entered for Scale X, use a number." msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:1189 -#: flatcamEditors/FlatCAMGrbEditor.py:3333 flatcamTools/ToolTransform.py:572 +#: flatcamEditors/FlatCAMGrbEditor.py:3358 flatcamTools/ToolTransform.py:572 msgid "[ERROR_NOTCL] Wrong value format entered for Scale Y, use a number." msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:1221 -#: flatcamEditors/FlatCAMGrbEditor.py:3365 flatcamTools/ToolTransform.py:601 +#: flatcamEditors/FlatCAMGrbEditor.py:3390 flatcamTools/ToolTransform.py:601 msgid "[ERROR_NOTCL] Wrong value format entered for Offset X, use a number." msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:1242 -#: flatcamEditors/FlatCAMGrbEditor.py:3386 flatcamTools/ToolTransform.py:619 +#: flatcamEditors/FlatCAMGrbEditor.py:3411 flatcamTools/ToolTransform.py:619 msgid "[ERROR_NOTCL] Wrong value format entered for Offset Y, use a number." msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:1260 -#: flatcamEditors/FlatCAMGrbEditor.py:3404 +#: flatcamEditors/FlatCAMGrbEditor.py:3429 msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to rotate!" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:1263 -#: flatcamEditors/FlatCAMGrbEditor.py:3407 flatcamTools/ToolTransform.py:640 +#: flatcamEditors/FlatCAMGrbEditor.py:3432 flatcamTools/ToolTransform.py:640 msgid "Appying Rotate" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:1291 -#: flatcamEditors/FlatCAMGrbEditor.py:3435 +#: flatcamEditors/FlatCAMGrbEditor.py:3460 msgid "[success] Done. Rotate completed." msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:1307 -#: flatcamEditors/FlatCAMGrbEditor.py:3451 +#: flatcamEditors/FlatCAMGrbEditor.py:3476 msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to flip!" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:1310 -#: flatcamEditors/FlatCAMGrbEditor.py:3454 flatcamTools/ToolTransform.py:692 +#: flatcamEditors/FlatCAMGrbEditor.py:3479 flatcamTools/ToolTransform.py:692 msgid "Applying Flip" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:1340 -#: flatcamEditors/FlatCAMGrbEditor.py:3484 flatcamTools/ToolTransform.py:735 +#: flatcamEditors/FlatCAMGrbEditor.py:3509 flatcamTools/ToolTransform.py:735 msgid "[success] Flip on the Y axis done ..." msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:1343 -#: flatcamEditors/FlatCAMGrbEditor.py:3487 flatcamTools/ToolTransform.py:745 +#: flatcamEditors/FlatCAMGrbEditor.py:3512 flatcamTools/ToolTransform.py:745 msgid "[success] Flip on the X axis done ..." msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:1362 -#: flatcamEditors/FlatCAMGrbEditor.py:3506 +#: flatcamEditors/FlatCAMGrbEditor.py:3531 msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to shear/skew!" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:1365 -#: flatcamEditors/FlatCAMGrbEditor.py:3509 flatcamTools/ToolTransform.py:762 +#: flatcamEditors/FlatCAMGrbEditor.py:3534 flatcamTools/ToolTransform.py:762 msgid "Applying Skew" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:1390 -#: flatcamEditors/FlatCAMGrbEditor.py:3534 flatcamTools/ToolTransform.py:793 +#: flatcamEditors/FlatCAMGrbEditor.py:3559 flatcamTools/ToolTransform.py:793 #, python-format msgid "[success] Skew on the %s axis done ..." msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:1394 -#: flatcamEditors/FlatCAMGrbEditor.py:3538 flatcamTools/ToolTransform.py:797 +#: flatcamEditors/FlatCAMGrbEditor.py:3563 flatcamTools/ToolTransform.py:797 #, python-format msgid "[ERROR_NOTCL] Due of %s, Skew action was not executed." msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:1405 -#: flatcamEditors/FlatCAMGrbEditor.py:3549 +#: flatcamEditors/FlatCAMGrbEditor.py:3574 msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to scale!" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:1408 -#: flatcamEditors/FlatCAMGrbEditor.py:3552 flatcamTools/ToolTransform.py:811 +#: flatcamEditors/FlatCAMGrbEditor.py:3577 flatcamTools/ToolTransform.py:811 msgid "Applying Scale" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:1441 -#: flatcamEditors/FlatCAMGrbEditor.py:3585 flatcamTools/ToolTransform.py:849 +#: flatcamEditors/FlatCAMGrbEditor.py:3610 flatcamTools/ToolTransform.py:849 #, python-format msgid "[success] Scale on the %s axis done ..." msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:1444 -#: flatcamEditors/FlatCAMGrbEditor.py:3588 flatcamTools/ToolTransform.py:852 +#: flatcamEditors/FlatCAMGrbEditor.py:3613 flatcamTools/ToolTransform.py:852 #, python-format msgid "[ERROR_NOTCL] Due of %s, Scale action was not executed." msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:1453 -#: flatcamEditors/FlatCAMGrbEditor.py:3597 +#: flatcamEditors/FlatCAMGrbEditor.py:3622 msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to offset!" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:1456 -#: flatcamEditors/FlatCAMGrbEditor.py:3600 flatcamTools/ToolTransform.py:864 +#: flatcamEditors/FlatCAMGrbEditor.py:3625 flatcamTools/ToolTransform.py:864 msgid "Applying Offset" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:1480 -#: flatcamEditors/FlatCAMGrbEditor.py:3624 flatcamTools/ToolTransform.py:894 +#: flatcamEditors/FlatCAMGrbEditor.py:3649 flatcamTools/ToolTransform.py:894 #, python-format msgid "[success] Offset on the %s axis done ..." msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:1484 -#: flatcamEditors/FlatCAMGrbEditor.py:3628 flatcamTools/ToolTransform.py:898 +#: flatcamEditors/FlatCAMGrbEditor.py:3653 flatcamTools/ToolTransform.py:898 #, python-format msgid "[ERROR_NOTCL] Due of %s, Offset action was not executed." msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:1488 -#: flatcamEditors/FlatCAMGrbEditor.py:3632 +#: flatcamEditors/FlatCAMGrbEditor.py:3657 msgid "Rotate ..." msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:1489 #: flatcamEditors/FlatCAMGeoEditor.py:1546 #: flatcamEditors/FlatCAMGeoEditor.py:1563 -#: flatcamEditors/FlatCAMGrbEditor.py:3633 -#: flatcamEditors/FlatCAMGrbEditor.py:3690 -#: flatcamEditors/FlatCAMGrbEditor.py:3707 +#: flatcamEditors/FlatCAMGrbEditor.py:3658 +#: flatcamEditors/FlatCAMGrbEditor.py:3715 +#: flatcamEditors/FlatCAMGrbEditor.py:3732 msgid "Enter an Angle Value (degrees):" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:1498 -#: flatcamEditors/FlatCAMGrbEditor.py:3642 +#: flatcamEditors/FlatCAMGrbEditor.py:3667 msgid "[success] Geometry shape rotate done..." msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:1503 -#: flatcamEditors/FlatCAMGrbEditor.py:3647 +#: flatcamEditors/FlatCAMGrbEditor.py:3672 msgid "[WARNING_NOTCL] Geometry shape rotate cancelled..." msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:1509 -#: flatcamEditors/FlatCAMGrbEditor.py:3653 +#: flatcamEditors/FlatCAMGrbEditor.py:3678 msgid "Offset on X axis ..." msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:1510 #: flatcamEditors/FlatCAMGeoEditor.py:1529 -#: flatcamEditors/FlatCAMGrbEditor.py:3654 -#: flatcamEditors/FlatCAMGrbEditor.py:3673 +#: flatcamEditors/FlatCAMGrbEditor.py:3679 +#: flatcamEditors/FlatCAMGrbEditor.py:3698 #, python-format msgid "Enter a distance Value (%s):" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:1519 -#: flatcamEditors/FlatCAMGrbEditor.py:3663 +#: flatcamEditors/FlatCAMGrbEditor.py:3688 msgid "[success] Geometry shape offset on X axis done..." msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:1523 -#: flatcamEditors/FlatCAMGrbEditor.py:3667 +#: flatcamEditors/FlatCAMGrbEditor.py:3692 msgid "[WARNING_NOTCL] Geometry shape offset X cancelled..." msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:1528 -#: flatcamEditors/FlatCAMGrbEditor.py:3672 +#: flatcamEditors/FlatCAMGrbEditor.py:3697 msgid "Offset on Y axis ..." msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:1538 -#: flatcamEditors/FlatCAMGrbEditor.py:3682 +#: flatcamEditors/FlatCAMGrbEditor.py:3707 msgid "[success] Geometry shape offset on Y axis done..." msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:1542 -#: flatcamEditors/FlatCAMGrbEditor.py:3686 +#: flatcamEditors/FlatCAMGrbEditor.py:3711 msgid "[WARNING_NOTCL] Geometry shape offset Y cancelled..." msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:1545 -#: flatcamEditors/FlatCAMGrbEditor.py:3689 +#: flatcamEditors/FlatCAMGrbEditor.py:3714 msgid "Skew on X axis ..." msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:1555 -#: flatcamEditors/FlatCAMGrbEditor.py:3699 +#: flatcamEditors/FlatCAMGrbEditor.py:3724 msgid "[success] Geometry shape skew on X axis done..." msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:1559 -#: flatcamEditors/FlatCAMGrbEditor.py:3703 +#: flatcamEditors/FlatCAMGrbEditor.py:3728 msgid "[WARNING_NOTCL] Geometry shape skew X cancelled..." msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:1562 -#: flatcamEditors/FlatCAMGrbEditor.py:3706 +#: flatcamEditors/FlatCAMGrbEditor.py:3731 msgid "Skew on Y axis ..." msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:1572 -#: flatcamEditors/FlatCAMGrbEditor.py:3716 +#: flatcamEditors/FlatCAMGrbEditor.py:3741 msgid "[success] Geometry shape skew on Y axis done..." msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:1576 -#: flatcamEditors/FlatCAMGrbEditor.py:3720 +#: flatcamEditors/FlatCAMGrbEditor.py:3745 msgid "[WARNING_NOTCL] Geometry shape skew Y cancelled..." msgstr "" @@ -2501,7 +2528,7 @@ msgid "[success] Done. Path completed." msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:2354 -#: flatcamEditors/FlatCAMGeoEditor.py:3426 +#: flatcamEditors/FlatCAMGeoEditor.py:3442 msgid "[WARNING_NOTCL] Move cancelled. No shape selected." msgstr "" @@ -2547,7 +2574,7 @@ msgid "[WARNING_NOTCL] Buffer cancelled. No shape selected." msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:2534 -#: flatcamEditors/FlatCAMGrbEditor.py:2673 +#: flatcamEditors/FlatCAMGrbEditor.py:2698 msgid "[success] Done. Buffer Tool completed." msgstr "" @@ -2568,92 +2595,92 @@ msgstr "" msgid "Shape transformations ..." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:3061 +#: flatcamEditors/FlatCAMGeoEditor.py:3077 #, python-brace-format msgid "[WARNING] Editing MultiGeo Geometry, tool: {tool} with diameter: {dia}" msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:3300 -#: flatcamEditors/FlatCAMGrbEditor.py:2242 flatcamGUI/FlatCAMGUI.py:2320 +#: flatcamEditors/FlatCAMGeoEditor.py:3316 +#: flatcamEditors/FlatCAMGrbEditor.py:2267 flatcamGUI/FlatCAMGUI.py:2320 #: flatcamGUI/FlatCAMGUI.py:2332 msgid "[success] Done." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:3433 +#: flatcamEditors/FlatCAMGeoEditor.py:3449 msgid "[WARNING_NOTCL] Copy cancelled. No shape selected." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:3440 flatcamGUI/FlatCAMGUI.py:2623 +#: flatcamEditors/FlatCAMGeoEditor.py:3456 flatcamGUI/FlatCAMGUI.py:2623 #: flatcamGUI/FlatCAMGUI.py:2657 flatcamGUI/FlatCAMGUI.py:2675 #: flatcamGUI/FlatCAMGUI.py:2813 flatcamGUI/FlatCAMGUI.py:2825 #: flatcamGUI/FlatCAMGUI.py:2859 msgid "Click on target point." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:3688 +#: flatcamEditors/FlatCAMGeoEditor.py:3699 msgid "" "[WARNING_NOTCL] A selection of at least 2 geo items is required to do " "Intersection." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:3726 -#: flatcamEditors/FlatCAMGeoEditor.py:3763 -#: flatcamEditors/FlatCAMGeoEditor.py:3839 +#: flatcamEditors/FlatCAMGeoEditor.py:3737 +#: flatcamEditors/FlatCAMGeoEditor.py:3774 +#: flatcamEditors/FlatCAMGeoEditor.py:3850 msgid "" "[ERROR_NOTCL] Negative buffer value is not accepted. Use Buffer interior to " "generate an 'inside' shape" msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:3734 -#: flatcamEditors/FlatCAMGeoEditor.py:3772 -#: flatcamEditors/FlatCAMGeoEditor.py:3847 +#: flatcamEditors/FlatCAMGeoEditor.py:3745 +#: flatcamEditors/FlatCAMGeoEditor.py:3783 +#: flatcamEditors/FlatCAMGeoEditor.py:3858 msgid "[WARNING_NOTCL] Nothing selected for buffering." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:3738 -#: flatcamEditors/FlatCAMGeoEditor.py:3776 -#: flatcamEditors/FlatCAMGeoEditor.py:3851 +#: flatcamEditors/FlatCAMGeoEditor.py:3749 +#: flatcamEditors/FlatCAMGeoEditor.py:3787 +#: flatcamEditors/FlatCAMGeoEditor.py:3862 msgid "[WARNING_NOTCL] Invalid distance for buffering." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:3748 -#: flatcamEditors/FlatCAMGeoEditor.py:3860 +#: flatcamEditors/FlatCAMGeoEditor.py:3759 +#: flatcamEditors/FlatCAMGeoEditor.py:3871 msgid "" "[ERROR_NOTCL] Failed, the result is empty. Choose a different buffer value." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:3756 +#: flatcamEditors/FlatCAMGeoEditor.py:3767 msgid "[success] Full buffer geometry created." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:3786 +#: flatcamEditors/FlatCAMGeoEditor.py:3797 msgid "" "[ERROR_NOTCL] Failed, the result is empty. Choose a smaller buffer value." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:3801 +#: flatcamEditors/FlatCAMGeoEditor.py:3812 msgid "[success] Interior buffer geometry created." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:3872 +#: flatcamEditors/FlatCAMGeoEditor.py:3883 msgid "[success] Exterior buffer geometry created." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:3936 +#: flatcamEditors/FlatCAMGeoEditor.py:3947 msgid "[WARNING_NOTCL] Nothing selected for painting." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:3942 +#: flatcamEditors/FlatCAMGeoEditor.py:3953 msgid "[WARNING] Invalid value for {}" msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:3948 +#: flatcamEditors/FlatCAMGeoEditor.py:3959 msgid "" "[ERROR_NOTCL] Could not do Paint. Overlap value has to be less than 1.00 " "(100%)." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:4007 +#: flatcamEditors/FlatCAMGeoEditor.py:4018 #, python-format msgid "" "[ERROR] Could not do Paint. Try a different combination of parameters. Or a " @@ -2661,7 +2688,7 @@ msgid "" "%s" msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:4018 +#: flatcamEditors/FlatCAMGeoEditor.py:4029 msgid "[success] Paint done." msgstr "" @@ -2728,23 +2755,23 @@ msgid "Apertures Table for the Gerber Object." msgstr "" #: flatcamEditors/FlatCAMGrbEditor.py:865 -#: flatcamEditors/FlatCAMGrbEditor.py:1945 flatcamGUI/ObjectUI.py:228 +#: flatcamEditors/FlatCAMGrbEditor.py:1970 flatcamGUI/ObjectUI.py:228 msgid "Code" msgstr "" #: flatcamEditors/FlatCAMGrbEditor.py:865 -#: flatcamEditors/FlatCAMGrbEditor.py:1945 flatcamGUI/ObjectUI.py:228 +#: flatcamEditors/FlatCAMGrbEditor.py:1970 flatcamGUI/ObjectUI.py:228 #: flatcamGUI/ObjectUI.py:888 flatcamGUI/ObjectUI.py:1446 msgid "Type" msgstr "" #: flatcamEditors/FlatCAMGrbEditor.py:865 -#: flatcamEditors/FlatCAMGrbEditor.py:1945 flatcamGUI/ObjectUI.py:228 +#: flatcamEditors/FlatCAMGrbEditor.py:1970 flatcamGUI/ObjectUI.py:228 msgid "Size" msgstr "" #: flatcamEditors/FlatCAMGrbEditor.py:865 -#: flatcamEditors/FlatCAMGrbEditor.py:1945 flatcamGUI/ObjectUI.py:228 +#: flatcamEditors/FlatCAMGrbEditor.py:1970 flatcamGUI/ObjectUI.py:228 msgid "Dim" msgstr "" @@ -2913,78 +2940,78 @@ msgid "" "retry." msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:1562 +#: flatcamEditors/FlatCAMGrbEditor.py:1577 msgid "" "[WARNING_NOTCL] Aperture dimensions value is missing or wrong format. Add it " "in format (width, height) and retry." msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:1574 +#: flatcamEditors/FlatCAMGrbEditor.py:1589 msgid "" "[WARNING_NOTCL] Aperture size value is missing or wrong format. Add it and " "retry." msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:1586 +#: flatcamEditors/FlatCAMGrbEditor.py:1601 msgid "[WARNING_NOTCL] Aperture already in the aperture table." msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:1593 +#: flatcamEditors/FlatCAMGrbEditor.py:1608 #, python-brace-format msgid "[success] Added new aperture with code: {apid}" msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:1645 +#: flatcamEditors/FlatCAMGrbEditor.py:1660 #, python-brace-format msgid "[success] Deleted aperture with code: {del_dia}" msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:1879 +#: flatcamEditors/FlatCAMGrbEditor.py:1902 #, python-format msgid "Adding aperture: %s geo ..." msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:2033 +#: flatcamEditors/FlatCAMGrbEditor.py:2058 msgid "" "[ERROR_NOTCL] There are no Aperture definitions in the file. Aborting Gerber " "creation." msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:2042 +#: flatcamEditors/FlatCAMGrbEditor.py:2067 msgid "Creating Gerber." msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:2050 +#: flatcamEditors/FlatCAMGrbEditor.py:2075 msgid "[success] Gerber editing finished." msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:2067 +#: flatcamEditors/FlatCAMGrbEditor.py:2092 msgid "[WARNING_NOTCL] Cancelled. No aperture is selected" msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:2530 +#: flatcamEditors/FlatCAMGrbEditor.py:2555 msgid "[success] Done. Apertures deleted." msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:2658 +#: flatcamEditors/FlatCAMGrbEditor.py:2683 msgid "" "[WARNING_NOTCL] No aperture to buffer. Select at least one aperture and try " "again." msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:2687 +#: flatcamEditors/FlatCAMGrbEditor.py:2712 msgid "" "[WARNING_NOTCL] Scale factor value is missing or wrong format. Add it and " "retry." msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:2705 +#: flatcamEditors/FlatCAMGrbEditor.py:2730 msgid "" "[WARNING_NOTCL] No aperture to scale. Select at least one aperture and try " "again." msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:2721 +#: flatcamEditors/FlatCAMGrbEditor.py:2746 msgid "[success] Done. Scale Tool completed." msgstr "" @@ -3166,7 +3193,7 @@ msgid "Edit Object\tE" msgstr "" #: flatcamGUI/FlatCAMGUI.py:226 -msgid "Save && Close Editor\tCTRL+S" +msgid "Close Editor\tCTRL+S" msgstr "" #: flatcamGUI/FlatCAMGUI.py:234 @@ -4479,7 +4506,7 @@ msgstr "" msgid "Rectangle" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1526 flatcamGUI/FlatCAMGUI.py:5020 +#: flatcamGUI/FlatCAMGUI.py:1526 flatcamGUI/FlatCAMGUI.py:5021 #: flatcamGUI/ObjectUI.py:1360 msgid "Cut" msgstr "" @@ -4512,10 +4539,6 @@ msgstr "" msgid "Copy Drill(s)" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1549 -msgid "Save && Close Edit" -msgstr "" - #: flatcamGUI/FlatCAMGUI.py:1574 msgid "Print Preview" msgstr "" @@ -4532,8 +4555,8 @@ msgstr "" msgid "Replace With" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1585 flatcamGUI/FlatCAMGUI.py:5018 -#: flatcamGUI/FlatCAMGUI.py:5528 flatcamGUI/ObjectUI.py:1358 +#: flatcamGUI/FlatCAMGUI.py:1585 flatcamGUI/FlatCAMGUI.py:5019 +#: flatcamGUI/FlatCAMGUI.py:5529 flatcamGUI/ObjectUI.py:1358 msgid "All" msgstr "" @@ -4826,34 +4849,34 @@ msgid "" "over any kind of not-selected object." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3538 +#: flatcamGUI/FlatCAMGUI.py:3537 msgid "Are you sure you want to delete the GUI Settings? \n" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3541 +#: flatcamGUI/FlatCAMGUI.py:3540 msgid "Clear GUI Settings" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3560 +#: flatcamGUI/FlatCAMGUI.py:3561 msgid "App Preferences" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3566 +#: flatcamGUI/FlatCAMGUI.py:3567 msgid "Units:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3567 +#: flatcamGUI/FlatCAMGUI.py:3568 msgid "" "The default value for FlatCAM units.\n" "Whatever is selected here is set every time\n" "FLatCAM is started." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3574 +#: flatcamGUI/FlatCAMGUI.py:3575 msgid "APP. LEVEL:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3575 +#: flatcamGUI/FlatCAMGUI.py:3576 msgid "" "Choose the default level of usage for FlatCAM.\n" "BASIC level -> reduced functionality, best for beginner's.\n" @@ -4863,127 +4886,127 @@ msgid "" "the Selected Tab for all kinds of FlatCAM objects." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3580 flatcamGUI/FlatCAMGUI.py:4205 +#: flatcamGUI/FlatCAMGUI.py:3581 flatcamGUI/FlatCAMGUI.py:4206 msgid "Basic" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3581 +#: flatcamGUI/FlatCAMGUI.py:3582 msgid "Advanced" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3584 +#: flatcamGUI/FlatCAMGUI.py:3585 msgid "Languages:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3585 +#: flatcamGUI/FlatCAMGUI.py:3586 msgid "Set the language used throughout FlatCAM." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3588 +#: flatcamGUI/FlatCAMGUI.py:3589 msgid "Apply Language" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3591 +#: flatcamGUI/FlatCAMGUI.py:3592 msgid "Shell at StartUp:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3593 flatcamGUI/FlatCAMGUI.py:3598 +#: flatcamGUI/FlatCAMGUI.py:3594 flatcamGUI/FlatCAMGUI.py:3599 msgid "" "Check this box if you want the shell to\n" "start automatically at startup." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3603 +#: flatcamGUI/FlatCAMGUI.py:3604 msgid "Version Check:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3605 flatcamGUI/FlatCAMGUI.py:3610 +#: flatcamGUI/FlatCAMGUI.py:3606 flatcamGUI/FlatCAMGUI.py:3611 msgid "" "Check this box if you want to check\n" "for a new version automatically at startup." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3615 +#: flatcamGUI/FlatCAMGUI.py:3616 msgid "Send Stats:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3617 flatcamGUI/FlatCAMGUI.py:3622 +#: flatcamGUI/FlatCAMGUI.py:3618 flatcamGUI/FlatCAMGUI.py:3623 msgid "" "Check this box if you agree to send anonymous\n" "stats automatically at startup, to help improve FlatCAM." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3629 +#: flatcamGUI/FlatCAMGUI.py:3630 msgid "Pan Button:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3630 +#: flatcamGUI/FlatCAMGUI.py:3631 msgid "" "Select the mouse button to use for panning:\n" "- MMB --> Middle Mouse Button\n" "- RMB --> Right Mouse Button" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3633 +#: flatcamGUI/FlatCAMGUI.py:3634 msgid "MMB" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3634 +#: flatcamGUI/FlatCAMGUI.py:3635 msgid "RMB" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3637 +#: flatcamGUI/FlatCAMGUI.py:3638 msgid "Multiple Sel:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3638 +#: flatcamGUI/FlatCAMGUI.py:3639 msgid "Select the key used for multiple selection." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3639 +#: flatcamGUI/FlatCAMGUI.py:3640 msgid "CTRL" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3640 +#: flatcamGUI/FlatCAMGUI.py:3641 msgid "SHIFT" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3643 +#: flatcamGUI/FlatCAMGUI.py:3644 msgid "Project at StartUp:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3645 flatcamGUI/FlatCAMGUI.py:3650 +#: flatcamGUI/FlatCAMGUI.py:3646 flatcamGUI/FlatCAMGUI.py:3651 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:3655 +#: flatcamGUI/FlatCAMGUI.py:3656 msgid "Project AutoHide:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3657 flatcamGUI/FlatCAMGUI.py:3663 +#: flatcamGUI/FlatCAMGUI.py:3658 flatcamGUI/FlatCAMGUI.py:3664 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:3669 +#: flatcamGUI/FlatCAMGUI.py:3670 msgid "Enable ToolTips:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3671 flatcamGUI/FlatCAMGUI.py:3676 +#: flatcamGUI/FlatCAMGUI.py:3672 flatcamGUI/FlatCAMGUI.py:3677 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:3679 +#: flatcamGUI/FlatCAMGUI.py:3680 msgid "Workers number:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3681 flatcamGUI/FlatCAMGUI.py:3690 +#: flatcamGUI/FlatCAMGUI.py:3682 flatcamGUI/FlatCAMGUI.py:3691 msgid "" "The number of Qthreads made available to the App.\n" "A bigger number may finish the jobs more quickly but\n" @@ -4993,108 +5016,108 @@ msgid "" "After change, it will be applied at next App start." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3731 +#: flatcamGUI/FlatCAMGUI.py:3732 msgid "Save Compressed Project" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3733 +#: flatcamGUI/FlatCAMGUI.py:3734 msgid "" "Whether to save a compressed or uncompressed project.\n" "When checked it will save a compressed FlatCAM project." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3744 +#: flatcamGUI/FlatCAMGUI.py:3745 msgid "Compression Level:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3746 +#: flatcamGUI/FlatCAMGUI.py:3747 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:3772 flatcamGUI/FlatCAMGUI.py:4013 -#: flatcamGUI/FlatCAMGUI.py:4668 flatcamGUI/FlatCAMGUI.py:4992 +#: flatcamGUI/FlatCAMGUI.py:3773 flatcamGUI/FlatCAMGUI.py:4014 +#: flatcamGUI/FlatCAMGUI.py:4669 flatcamGUI/FlatCAMGUI.py:4993 #: flatcamGUI/ObjectUI.py:150 flatcamGUI/ObjectUI.py:505 #: flatcamGUI/ObjectUI.py:830 flatcamGUI/ObjectUI.py:1344 msgid "Plot Options:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3779 flatcamGUI/FlatCAMGUI.py:4025 +#: flatcamGUI/FlatCAMGUI.py:3780 flatcamGUI/FlatCAMGUI.py:4026 #: flatcamGUI/ObjectUI.py:506 msgid "Solid" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3781 flatcamGUI/ObjectUI.py:158 +#: flatcamGUI/FlatCAMGUI.py:3782 flatcamGUI/ObjectUI.py:158 msgid "Solid color polygons." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3786 +#: flatcamGUI/FlatCAMGUI.py:3787 msgid "M-Color" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3788 flatcamGUI/ObjectUI.py:166 +#: flatcamGUI/FlatCAMGUI.py:3789 flatcamGUI/ObjectUI.py:166 msgid "Draw polygons in different colors." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3793 flatcamGUI/FlatCAMGUI.py:4019 -#: flatcamGUI/FlatCAMGUI.py:4672 flatcamGUI/ObjectUI.py:172 +#: flatcamGUI/FlatCAMGUI.py:3794 flatcamGUI/FlatCAMGUI.py:4020 +#: flatcamGUI/FlatCAMGUI.py:4673 flatcamGUI/ObjectUI.py:172 msgid "Plot" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3795 flatcamGUI/FlatCAMGUI.py:4674 +#: flatcamGUI/FlatCAMGUI.py:3796 flatcamGUI/FlatCAMGUI.py:4675 #: 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:3800 flatcamGUI/FlatCAMGUI.py:4681 -#: flatcamGUI/FlatCAMGUI.py:5028 +#: flatcamGUI/FlatCAMGUI.py:3801 flatcamGUI/FlatCAMGUI.py:4682 +#: flatcamGUI/FlatCAMGUI.py:5029 msgid "Circle Steps:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3802 +#: flatcamGUI/FlatCAMGUI.py:3803 msgid "" "The number of circle steps for Gerber \n" "circular aperture linear approximation." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3817 +#: flatcamGUI/FlatCAMGUI.py:3818 msgid "Gerber Options" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3821 flatcamGUI/ObjectUI.py:251 +#: flatcamGUI/FlatCAMGUI.py:3822 flatcamGUI/ObjectUI.py:251 msgid "Isolation Routing:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3823 flatcamGUI/ObjectUI.py:253 +#: flatcamGUI/FlatCAMGUI.py:3824 flatcamGUI/ObjectUI.py:253 msgid "" "Create a Geometry object with\n" "toolpaths to cut outside polygons." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3834 flatcamGUI/FlatCAMGUI.py:4391 -#: flatcamGUI/FlatCAMGUI.py:5316 flatcamGUI/ObjectUI.py:785 +#: flatcamGUI/FlatCAMGUI.py:3835 flatcamGUI/FlatCAMGUI.py:4392 +#: flatcamGUI/FlatCAMGUI.py:5317 flatcamGUI/ObjectUI.py:785 #: flatcamGUI/ObjectUI.py:801 msgid "Diameter of the cutting tool." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3841 +#: flatcamGUI/FlatCAMGUI.py:3842 msgid "Width (# passes):" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3843 flatcamGUI/ObjectUI.py:275 +#: flatcamGUI/FlatCAMGUI.py:3844 flatcamGUI/ObjectUI.py:275 msgid "" "Width of the isolation gap in\n" "number (integer) of tool widths." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3851 flatcamGUI/ObjectUI.py:283 +#: flatcamGUI/FlatCAMGUI.py:3852 flatcamGUI/ObjectUI.py:283 msgid "Pass overlap:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3853 flatcamGUI/ObjectUI.py:285 +#: flatcamGUI/FlatCAMGUI.py:3854 flatcamGUI/ObjectUI.py:285 #, python-format msgid "" "How much (fraction) of the tool width to overlap each tool pass.\n" @@ -5103,50 +5126,50 @@ msgid "" "above." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3861 flatcamGUI/ObjectUI.py:295 +#: flatcamGUI/FlatCAMGUI.py:3862 flatcamGUI/ObjectUI.py:295 msgid "Milling Type:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3863 flatcamGUI/ObjectUI.py:297 +#: flatcamGUI/FlatCAMGUI.py:3864 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:3868 flatcamGUI/ObjectUI.py:302 +#: flatcamGUI/FlatCAMGUI.py:3869 flatcamGUI/ObjectUI.py:302 msgid "Climb" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3869 flatcamGUI/ObjectUI.py:303 +#: flatcamGUI/FlatCAMGUI.py:3870 flatcamGUI/ObjectUI.py:303 msgid "Conv." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3873 +#: flatcamGUI/FlatCAMGUI.py:3874 msgid "Combine Passes" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3875 flatcamGUI/ObjectUI.py:309 +#: flatcamGUI/FlatCAMGUI.py:3876 flatcamGUI/ObjectUI.py:309 msgid "Combine all passes into one object" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3880 +#: flatcamGUI/FlatCAMGUI.py:3881 msgid "Clear non-copper:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3882 flatcamGUI/FlatCAMGUI.py:5204 +#: flatcamGUI/FlatCAMGUI.py:3883 flatcamGUI/FlatCAMGUI.py:5205 #: flatcamGUI/ObjectUI.py:386 msgid "" "Create a Geometry object with\n" "toolpaths to cut all non-copper regions." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3891 flatcamGUI/FlatCAMGUI.py:3917 +#: flatcamGUI/FlatCAMGUI.py:3892 flatcamGUI/FlatCAMGUI.py:3918 #: flatcamGUI/ObjectUI.py:430 flatcamGUI/ObjectUI.py:464 msgid "Boundary Margin:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3893 flatcamGUI/ObjectUI.py:432 +#: flatcamGUI/FlatCAMGUI.py:3894 flatcamGUI/ObjectUI.py:432 msgid "" "Specify the edge of the PCB\n" "by drawing a box around all\n" @@ -5154,27 +5177,27 @@ msgid "" "distance." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3903 flatcamGUI/FlatCAMGUI.py:3926 +#: flatcamGUI/FlatCAMGUI.py:3904 flatcamGUI/FlatCAMGUI.py:3927 msgid "Rounded corners" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3905 +#: flatcamGUI/FlatCAMGUI.py:3906 msgid "" "Creates a Geometry objects with polygons\n" "covering the copper-free areas of the PCB." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3911 flatcamGUI/ObjectUI.py:454 +#: flatcamGUI/FlatCAMGUI.py:3912 flatcamGUI/ObjectUI.py:454 msgid "Bounding Box:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3919 flatcamGUI/ObjectUI.py:466 +#: flatcamGUI/FlatCAMGUI.py:3920 flatcamGUI/ObjectUI.py:466 msgid "" "Distance of the edges of the box\n" "to the nearest polygon." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3928 flatcamGUI/ObjectUI.py:476 +#: flatcamGUI/FlatCAMGUI.py:3929 flatcamGUI/ObjectUI.py:476 msgid "" "If the bounding box is \n" "to have rounded corners\n" @@ -5182,74 +5205,74 @@ msgid "" "the margin." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3942 +#: flatcamGUI/FlatCAMGUI.py:3943 msgid "Gerber Adv. Options" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3946 +#: flatcamGUI/FlatCAMGUI.py:3947 msgid "Advanced Param.:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3948 +#: flatcamGUI/FlatCAMGUI.py:3949 msgid "" "A list of Gerber advanced parameters.\n" "Those parameters are available only for\n" "Advanced App. Level." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3958 flatcamGUI/ObjectUI.py:314 +#: flatcamGUI/FlatCAMGUI.py:3959 flatcamGUI/ObjectUI.py:314 msgid "\"Follow\"" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3960 flatcamGUI/ObjectUI.py:316 +#: flatcamGUI/FlatCAMGUI.py:3961 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:3968 +#: flatcamGUI/FlatCAMGUI.py:3969 msgid "Table Show/Hide" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3970 +#: flatcamGUI/FlatCAMGUI.py:3971 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:3978 +#: flatcamGUI/FlatCAMGUI.py:3979 msgid "Ap. Scale Factor:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3980 +#: flatcamGUI/FlatCAMGUI.py:3981 msgid "" "Change the size of the selected apertures.\n" "Factor by which to multiply\n" "geometric features of this object." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3990 +#: flatcamGUI/FlatCAMGUI.py:3991 msgid "Ap. Buffer Factor:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3992 +#: flatcamGUI/FlatCAMGUI.py:3993 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:4010 +#: flatcamGUI/FlatCAMGUI.py:4011 msgid "Excellon General" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4032 +#: flatcamGUI/FlatCAMGUI.py:4033 msgid "Excellon Format:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4034 +#: flatcamGUI/FlatCAMGUI.py:4035 msgid "" "The NC drill files, usually named Excellon files\n" "are files that can be found in different formats.\n" @@ -5272,41 +5295,41 @@ msgid "" "KiCAD 3:5 INCH TZ" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4059 +#: flatcamGUI/FlatCAMGUI.py:4060 msgid "INCH:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4062 +#: flatcamGUI/FlatCAMGUI.py:4063 msgid "Default values for INCH are 2:4" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4070 flatcamGUI/FlatCAMGUI.py:4103 -#: flatcamGUI/FlatCAMGUI.py:4580 +#: flatcamGUI/FlatCAMGUI.py:4071 flatcamGUI/FlatCAMGUI.py:4104 +#: flatcamGUI/FlatCAMGUI.py:4581 msgid "" "This numbers signify the number of digits in\n" "the whole part of Excellon coordinates." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4084 flatcamGUI/FlatCAMGUI.py:4117 -#: flatcamGUI/FlatCAMGUI.py:4594 +#: flatcamGUI/FlatCAMGUI.py:4085 flatcamGUI/FlatCAMGUI.py:4118 +#: flatcamGUI/FlatCAMGUI.py:4595 msgid "" "This numbers signify the number of digits in\n" "the decimal part of Excellon coordinates." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4092 +#: flatcamGUI/FlatCAMGUI.py:4093 msgid "METRIC:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4095 +#: flatcamGUI/FlatCAMGUI.py:4096 msgid "Default values for METRIC are 3:3" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4126 +#: flatcamGUI/FlatCAMGUI.py:4127 msgid "Default Zeros:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4129 flatcamGUI/FlatCAMGUI.py:4629 +#: flatcamGUI/FlatCAMGUI.py:4130 flatcamGUI/FlatCAMGUI.py:4630 msgid "" "This sets the type of Excellon zeros.\n" "If LZ then Leading Zeros are kept and\n" @@ -5315,15 +5338,15 @@ msgid "" "and Leading Zeros are removed." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4137 flatcamGUI/FlatCAMGUI.py:4636 +#: flatcamGUI/FlatCAMGUI.py:4138 flatcamGUI/FlatCAMGUI.py:4637 msgid "LZ" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4138 flatcamGUI/FlatCAMGUI.py:4637 +#: flatcamGUI/FlatCAMGUI.py:4139 flatcamGUI/FlatCAMGUI.py:4638 msgid "TZ" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4140 +#: flatcamGUI/FlatCAMGUI.py:4141 msgid "" "This sets the default type of Excellon zeros.\n" "If it is not detected in the parsed file the value here\n" @@ -5333,11 +5356,11 @@ msgid "" "and Leading Zeros are removed." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4154 +#: flatcamGUI/FlatCAMGUI.py:4155 msgid "Default Units:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4157 +#: flatcamGUI/FlatCAMGUI.py:4158 msgid "" "This sets the default units of Excellon files.\n" "If it is not detected in the parsed file the value here\n" @@ -5345,30 +5368,30 @@ msgid "" "therefore this parameter will be used." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4165 flatcamGUI/FlatCAMGUI.py:4556 +#: flatcamGUI/FlatCAMGUI.py:4166 flatcamGUI/FlatCAMGUI.py:4557 msgid "INCH" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4166 flatcamGUI/FlatCAMGUI.py:4557 +#: flatcamGUI/FlatCAMGUI.py:4167 flatcamGUI/FlatCAMGUI.py:4558 msgid "MM" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4168 +#: flatcamGUI/FlatCAMGUI.py:4169 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:4184 +#: flatcamGUI/FlatCAMGUI.py:4185 msgid "Excellon Optimization:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4191 +#: flatcamGUI/FlatCAMGUI.py:4192 msgid "Algorithm: " msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4194 flatcamGUI/FlatCAMGUI.py:4207 +#: flatcamGUI/FlatCAMGUI.py:4195 flatcamGUI/FlatCAMGUI.py:4208 msgid "" "This sets the optimization type for the Excellon drill path.\n" "If MH is checked then Google OR-Tools algorithm with MetaHeuristic\n" @@ -5380,15 +5403,15 @@ msgid "" "Travelling Salesman algorithm for path optimization." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4204 +#: flatcamGUI/FlatCAMGUI.py:4205 msgid "MH" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4219 +#: flatcamGUI/FlatCAMGUI.py:4220 msgid "Optimization Time: " msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4222 +#: flatcamGUI/FlatCAMGUI.py:4223 msgid "" "When OR-Tools Metaheuristic (MH) is enabled there is a\n" "maximum threshold for how much time is spent doing the\n" @@ -5396,120 +5419,120 @@ msgid "" "In seconds." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4263 +#: flatcamGUI/FlatCAMGUI.py:4264 msgid "Excellon Options" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4266 flatcamGUI/ObjectUI.py:584 +#: flatcamGUI/FlatCAMGUI.py:4267 flatcamGUI/ObjectUI.py:584 msgid "Create CNC Job" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4268 +#: flatcamGUI/FlatCAMGUI.py:4269 msgid "" "Parameters used to create a CNC Job object\n" "for this drill object." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4276 flatcamGUI/FlatCAMGUI.py:4732 -#: flatcamGUI/FlatCAMGUI.py:5740 flatcamGUI/ObjectUI.py:595 +#: flatcamGUI/FlatCAMGUI.py:4277 flatcamGUI/FlatCAMGUI.py:4733 +#: flatcamGUI/FlatCAMGUI.py:5741 flatcamGUI/ObjectUI.py:595 #: flatcamGUI/ObjectUI.py:1059 flatcamTools/ToolCalculators.py:108 msgid "Cut Z:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4278 flatcamGUI/ObjectUI.py:597 +#: flatcamGUI/FlatCAMGUI.py:4279 flatcamGUI/ObjectUI.py:597 msgid "" "Drill depth (negative)\n" "below the copper surface." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4285 flatcamGUI/FlatCAMGUI.py:4765 +#: flatcamGUI/FlatCAMGUI.py:4286 flatcamGUI/FlatCAMGUI.py:4766 #: flatcamGUI/ObjectUI.py:605 flatcamGUI/ObjectUI.py:1095 msgid "Travel Z:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4287 flatcamGUI/ObjectUI.py:607 +#: flatcamGUI/FlatCAMGUI.py:4288 flatcamGUI/ObjectUI.py:607 msgid "" "Tool height when travelling\n" "across the XY plane." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4295 flatcamGUI/FlatCAMGUI.py:4775 +#: flatcamGUI/FlatCAMGUI.py:4296 flatcamGUI/FlatCAMGUI.py:4776 msgid "Tool change:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4297 flatcamGUI/FlatCAMGUI.py:4777 +#: flatcamGUI/FlatCAMGUI.py:4298 flatcamGUI/FlatCAMGUI.py:4778 #: flatcamGUI/ObjectUI.py:617 msgid "" "Include tool-change sequence\n" "in G-Code (Pause for tool change)." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4304 flatcamGUI/FlatCAMGUI.py:4785 +#: flatcamGUI/FlatCAMGUI.py:4305 flatcamGUI/FlatCAMGUI.py:4786 msgid "Toolchange Z:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4306 flatcamGUI/FlatCAMGUI.py:4787 +#: flatcamGUI/FlatCAMGUI.py:4307 flatcamGUI/FlatCAMGUI.py:4788 msgid "Toolchange Z position." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4312 +#: flatcamGUI/FlatCAMGUI.py:4313 msgid "Feedrate:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4314 +#: flatcamGUI/FlatCAMGUI.py:4315 msgid "" "Tool speed while drilling\n" "(in units per minute)." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4322 +#: flatcamGUI/FlatCAMGUI.py:4323 msgid "Spindle Speed:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4324 flatcamGUI/FlatCAMGUI.py:4817 +#: flatcamGUI/FlatCAMGUI.py:4325 flatcamGUI/FlatCAMGUI.py:4818 #: flatcamGUI/ObjectUI.py:681 msgid "" "Speed of the spindle\n" "in RPM (optional)" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4332 flatcamGUI/FlatCAMGUI.py:4825 +#: flatcamGUI/FlatCAMGUI.py:4333 flatcamGUI/FlatCAMGUI.py:4826 #: flatcamGUI/ObjectUI.py:689 flatcamGUI/ObjectUI.py:1218 msgid "Dwell:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4334 flatcamGUI/FlatCAMGUI.py:4827 +#: flatcamGUI/FlatCAMGUI.py:4335 flatcamGUI/FlatCAMGUI.py:4828 #: 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:4337 flatcamGUI/FlatCAMGUI.py:4830 +#: flatcamGUI/FlatCAMGUI.py:4338 flatcamGUI/FlatCAMGUI.py:4831 msgid "Duration:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4339 flatcamGUI/FlatCAMGUI.py:4832 +#: flatcamGUI/FlatCAMGUI.py:4340 flatcamGUI/FlatCAMGUI.py:4833 #: flatcamGUI/ObjectUI.py:696 flatcamGUI/ObjectUI.py:1228 msgid "Number of milliseconds for spindle to dwell." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4351 flatcamGUI/FlatCAMGUI.py:4842 +#: flatcamGUI/FlatCAMGUI.py:4352 flatcamGUI/FlatCAMGUI.py:4843 #: flatcamGUI/ObjectUI.py:704 msgid "Postprocessor:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4353 +#: flatcamGUI/FlatCAMGUI.py:4354 msgid "" "The postprocessor file that dictates\n" "gcode output." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4363 +#: flatcamGUI/FlatCAMGUI.py:4364 msgid "Gcode: " msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4365 +#: flatcamGUI/FlatCAMGUI.py:4366 msgid "" "Choose what to use for GCode generation:\n" "'Drills', 'Slots' or 'Both'.\n" @@ -5517,107 +5540,107 @@ msgid "" "converted to drills." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4370 flatcamGUI/ObjectUI.py:556 +#: flatcamGUI/FlatCAMGUI.py:4371 flatcamGUI/ObjectUI.py:556 #: flatcamGUI/ObjectUI.py:752 msgid "Drills" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4371 flatcamGUI/ObjectUI.py:556 +#: flatcamGUI/FlatCAMGUI.py:4372 flatcamGUI/ObjectUI.py:556 #: flatcamGUI/ObjectUI.py:753 msgid "Slots" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4372 flatcamGUI/ObjectUI.py:754 +#: flatcamGUI/FlatCAMGUI.py:4373 flatcamGUI/ObjectUI.py:754 msgid "Both" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4381 flatcamGUI/ObjectUI.py:769 +#: flatcamGUI/FlatCAMGUI.py:4382 flatcamGUI/ObjectUI.py:769 msgid "Mill Holes" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4383 flatcamGUI/ObjectUI.py:771 +#: flatcamGUI/FlatCAMGUI.py:4384 flatcamGUI/ObjectUI.py:771 msgid "Create Geometry for milling holes." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4389 +#: flatcamGUI/FlatCAMGUI.py:4390 msgid "Drill Tool dia:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4396 +#: flatcamGUI/FlatCAMGUI.py:4397 msgid "Slot Tool dia:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4398 +#: flatcamGUI/FlatCAMGUI.py:4399 msgid "" "Diameter of the cutting tool\n" "when milling slots." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4410 +#: flatcamGUI/FlatCAMGUI.py:4411 msgid "Defaults" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4423 +#: flatcamGUI/FlatCAMGUI.py:4424 msgid "Excellon Adv. Options" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4429 flatcamGUI/FlatCAMGUI.py:4865 +#: flatcamGUI/FlatCAMGUI.py:4430 flatcamGUI/FlatCAMGUI.py:4866 msgid "Advanced Options:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4431 +#: flatcamGUI/FlatCAMGUI.py:4432 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:4439 +#: flatcamGUI/FlatCAMGUI.py:4440 msgid "Offset Z:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4441 flatcamGUI/ObjectUI.py:574 +#: flatcamGUI/FlatCAMGUI.py:4442 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:4448 flatcamGUI/FlatCAMGUI.py:4876 +#: flatcamGUI/FlatCAMGUI.py:4449 flatcamGUI/FlatCAMGUI.py:4877 msgid "Toolchange X,Y:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4450 flatcamGUI/FlatCAMGUI.py:4878 +#: flatcamGUI/FlatCAMGUI.py:4451 flatcamGUI/FlatCAMGUI.py:4879 msgid "Toolchange X,Y position." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4456 flatcamGUI/FlatCAMGUI.py:4885 +#: flatcamGUI/FlatCAMGUI.py:4457 flatcamGUI/FlatCAMGUI.py:4886 #: flatcamGUI/ObjectUI.py:634 msgid "Start move Z:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4458 +#: flatcamGUI/FlatCAMGUI.py:4459 msgid "" "Height of the tool just after start.\n" "Delete the value if you don't need this feature." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4465 flatcamGUI/FlatCAMGUI.py:4895 +#: flatcamGUI/FlatCAMGUI.py:4466 flatcamGUI/FlatCAMGUI.py:4896 #: flatcamGUI/ObjectUI.py:644 flatcamGUI/ObjectUI.py:1141 msgid "End move Z:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4467 flatcamGUI/FlatCAMGUI.py:4897 +#: flatcamGUI/FlatCAMGUI.py:4468 flatcamGUI/FlatCAMGUI.py:4898 msgid "" "Height of the tool after\n" "the last move at the end of the job." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4474 flatcamGUI/FlatCAMGUI.py:4905 +#: flatcamGUI/FlatCAMGUI.py:4475 flatcamGUI/FlatCAMGUI.py:4906 #: flatcamGUI/ObjectUI.py:665 msgid "Feedrate Rapids:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4476 flatcamGUI/ObjectUI.py:667 +#: flatcamGUI/FlatCAMGUI.py:4477 flatcamGUI/ObjectUI.py:667 msgid "" "Tool speed while drilling\n" "(in units per minute).\n" @@ -5626,33 +5649,33 @@ msgid "" "ignore for any other cases." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4487 flatcamGUI/FlatCAMGUI.py:4929 +#: flatcamGUI/FlatCAMGUI.py:4488 flatcamGUI/FlatCAMGUI.py:4930 #: flatcamGUI/ObjectUI.py:715 flatcamGUI/ObjectUI.py:1250 msgid "Probe Z depth:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4489 flatcamGUI/FlatCAMGUI.py:4931 +#: flatcamGUI/FlatCAMGUI.py:4490 flatcamGUI/FlatCAMGUI.py:4932 #: 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:4497 flatcamGUI/FlatCAMGUI.py:4939 +#: flatcamGUI/FlatCAMGUI.py:4498 flatcamGUI/FlatCAMGUI.py:4940 #: flatcamGUI/ObjectUI.py:727 flatcamGUI/ObjectUI.py:1264 msgid "Feedrate Probe:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4499 flatcamGUI/FlatCAMGUI.py:4941 +#: flatcamGUI/FlatCAMGUI.py:4500 flatcamGUI/FlatCAMGUI.py:4942 #: flatcamGUI/ObjectUI.py:729 flatcamGUI/ObjectUI.py:1267 msgid "The feedrate used while the probe is probing." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4505 flatcamGUI/FlatCAMGUI.py:4948 +#: flatcamGUI/FlatCAMGUI.py:4506 flatcamGUI/FlatCAMGUI.py:4949 msgid "Fast Plunge:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4507 flatcamGUI/FlatCAMGUI.py:4950 +#: flatcamGUI/FlatCAMGUI.py:4508 flatcamGUI/FlatCAMGUI.py:4951 msgid "" "By checking this, the vertical move from\n" "Z_Toolchange to Z_move is done with G0,\n" @@ -5660,11 +5683,11 @@ msgid "" "WARNING: the move is done at Toolchange X,Y coords." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4516 +#: flatcamGUI/FlatCAMGUI.py:4517 msgid "Fast Retract:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4518 +#: flatcamGUI/FlatCAMGUI.py:4519 msgid "" "Exit hole strategy.\n" " - When uncheked, while exiting the drilled hole the drill bit\n" @@ -5674,33 +5697,33 @@ msgid "" "(travel height) is done as fast as possible (G0) in one move." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4537 +#: flatcamGUI/FlatCAMGUI.py:4538 msgid "Excellon Export" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4540 +#: flatcamGUI/FlatCAMGUI.py:4541 msgid "Export Options:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4542 +#: flatcamGUI/FlatCAMGUI.py:4543 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:4551 +#: flatcamGUI/FlatCAMGUI.py:4552 msgid "Units:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4553 flatcamGUI/FlatCAMGUI.py:4559 +#: flatcamGUI/FlatCAMGUI.py:4554 flatcamGUI/FlatCAMGUI.py:4560 msgid "The units used in the Excellon file." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4565 +#: flatcamGUI/FlatCAMGUI.py:4566 msgid "Int/Decimals:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4567 +#: flatcamGUI/FlatCAMGUI.py:4568 msgid "" "The NC drill files, usually named Excellon files\n" "are files that can be found in different formats.\n" @@ -5708,11 +5731,11 @@ msgid "" "coordinates are not using period." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4603 +#: flatcamGUI/FlatCAMGUI.py:4604 msgid "Format:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4605 flatcamGUI/FlatCAMGUI.py:4615 +#: flatcamGUI/FlatCAMGUI.py:4606 flatcamGUI/FlatCAMGUI.py:4616 msgid "" "Select the kind of coordinates format used.\n" "Coordinates can be saved with decimal point or without.\n" @@ -5722,19 +5745,19 @@ msgid "" "or TZ = trailing zeros are kept." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4612 +#: flatcamGUI/FlatCAMGUI.py:4613 msgid "Decimal" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4613 +#: flatcamGUI/FlatCAMGUI.py:4614 msgid "No-Decimal" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4626 +#: flatcamGUI/FlatCAMGUI.py:4627 msgid "Zeros:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4639 +#: flatcamGUI/FlatCAMGUI.py:4640 msgid "" "This sets the default type of Excellon zeros.\n" "If LZ then Leading Zeros are kept and\n" @@ -5743,64 +5766,64 @@ msgid "" "and Leading Zeros are removed." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4665 +#: flatcamGUI/FlatCAMGUI.py:4666 msgid "Geometry General" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4683 +#: flatcamGUI/FlatCAMGUI.py:4684 msgid "" "The number of circle steps for Geometry \n" "circle and arc shapes linear approximation." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4691 +#: flatcamGUI/FlatCAMGUI.py:4692 msgid "Tools" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4698 +#: flatcamGUI/FlatCAMGUI.py:4699 msgid "Tool dia: " msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4700 +#: flatcamGUI/FlatCAMGUI.py:4701 msgid "" "The diameter of the cutting\n" "tool.." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4715 +#: flatcamGUI/FlatCAMGUI.py:4716 msgid "Geometry Options" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4720 +#: flatcamGUI/FlatCAMGUI.py:4721 msgid "Create CNC Job:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4722 +#: flatcamGUI/FlatCAMGUI.py:4723 msgid "" "Create a CNC Job object\n" "tracing the contours of this\n" "Geometry object." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4734 flatcamGUI/ObjectUI.py:1062 +#: flatcamGUI/FlatCAMGUI.py:4735 flatcamGUI/ObjectUI.py:1062 msgid "" "Cutting depth (negative)\n" "below the copper surface." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4742 +#: flatcamGUI/FlatCAMGUI.py:4743 msgid "Multidepth" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4744 +#: flatcamGUI/FlatCAMGUI.py:4745 msgid "Multidepth usage: True or False." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4749 +#: flatcamGUI/FlatCAMGUI.py:4750 msgid "Depth/Pass:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4751 +#: flatcamGUI/FlatCAMGUI.py:4752 msgid "" "The depth to cut on each pass,\n" "when multidepth is enabled.\n" @@ -5809,61 +5832,61 @@ msgid "" "which has negative value." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4767 flatcamGUI/ObjectUI.py:1098 +#: flatcamGUI/FlatCAMGUI.py:4768 flatcamGUI/ObjectUI.py:1098 msgid "" "Height of the tool when\n" "moving without cutting." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4794 flatcamGUI/ObjectUI.py:1153 +#: flatcamGUI/FlatCAMGUI.py:4795 flatcamGUI/ObjectUI.py:1153 msgid "Feed Rate X-Y:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4796 flatcamGUI/ObjectUI.py:1156 +#: flatcamGUI/FlatCAMGUI.py:4797 flatcamGUI/ObjectUI.py:1156 msgid "" "Cutting speed in the XY\n" "plane in units per minute" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4804 +#: flatcamGUI/FlatCAMGUI.py:4805 msgid "Feed Rate Z:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4806 +#: flatcamGUI/FlatCAMGUI.py:4807 msgid "" "Cutting speed in the XY\n" "plane in units per minute.\n" "It is called also Plunge." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4815 flatcamGUI/ObjectUI.py:679 +#: flatcamGUI/FlatCAMGUI.py:4816 flatcamGUI/ObjectUI.py:679 #: flatcamGUI/ObjectUI.py:1205 msgid "Spindle speed:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4844 +#: flatcamGUI/FlatCAMGUI.py:4845 msgid "" "The postprocessor file that dictates\n" "Machine Code output." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4860 +#: flatcamGUI/FlatCAMGUI.py:4861 msgid "Geometry Adv. Options" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4867 +#: flatcamGUI/FlatCAMGUI.py:4868 msgid "" "Parameters to create a CNC Job object\n" "tracing the contours of a Geometry object." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4887 +#: flatcamGUI/FlatCAMGUI.py:4888 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:4907 +#: flatcamGUI/FlatCAMGUI.py:4908 msgid "" "Cutting speed in the XY plane\n" "(in units per minute).\n" @@ -5872,11 +5895,11 @@ msgid "" "ignore for any other cases." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4919 +#: flatcamGUI/FlatCAMGUI.py:4920 msgid "Re-cut 1st pt." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4921 flatcamGUI/ObjectUI.py:1196 +#: flatcamGUI/FlatCAMGUI.py:4922 flatcamGUI/ObjectUI.py:1196 msgid "" "In order to remove possible\n" "copper leftovers where first cut\n" @@ -5884,42 +5907,42 @@ msgid "" "extended cut over the first cut section." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4960 +#: flatcamGUI/FlatCAMGUI.py:4961 msgid "Seg. X size:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4962 +#: flatcamGUI/FlatCAMGUI.py:4963 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:4971 +#: flatcamGUI/FlatCAMGUI.py:4972 msgid "Seg. Y size:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:4973 +#: flatcamGUI/FlatCAMGUI.py:4974 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:4989 +#: flatcamGUI/FlatCAMGUI.py:4990 msgid "CNC Job General" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5002 flatcamGUI/ObjectUI.py:544 +#: flatcamGUI/FlatCAMGUI.py:5003 flatcamGUI/ObjectUI.py:544 #: flatcamGUI/ObjectUI.py:874 flatcamGUI/ObjectUI.py:1428 msgid "Plot Object" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5009 +#: flatcamGUI/FlatCAMGUI.py:5010 msgid "Plot kind:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5011 flatcamGUI/ObjectUI.py:1350 +#: flatcamGUI/FlatCAMGUI.py:5012 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" @@ -5927,87 +5950,87 @@ msgid "" "which means the moves that cut into the material." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5019 flatcamGUI/ObjectUI.py:1359 +#: flatcamGUI/FlatCAMGUI.py:5020 flatcamGUI/ObjectUI.py:1359 msgid "Travel" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5030 +#: flatcamGUI/FlatCAMGUI.py:5031 msgid "" "The number of circle steps for GCode \n" "circle and arc shapes linear approximation." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5040 +#: flatcamGUI/FlatCAMGUI.py:5041 msgid "" "Diameter of the tool to be\n" "rendered in the plot." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5048 +#: flatcamGUI/FlatCAMGUI.py:5049 msgid "Coords dec.:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5050 +#: flatcamGUI/FlatCAMGUI.py:5051 msgid "" "The number of decimals to be used for \n" "the X, Y, Z coordinates in CNC code (GCODE, etc.)" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5058 +#: flatcamGUI/FlatCAMGUI.py:5059 msgid "Feedrate dec.:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5060 +#: flatcamGUI/FlatCAMGUI.py:5061 msgid "" "The number of decimals to be used for \n" "the Feedrate parameter in CNC code (GCODE, etc.)" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5075 +#: flatcamGUI/FlatCAMGUI.py:5076 msgid "CNC Job Options" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5078 flatcamGUI/FlatCAMGUI.py:5119 +#: flatcamGUI/FlatCAMGUI.py:5079 flatcamGUI/FlatCAMGUI.py:5120 msgid "Export G-Code:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5080 flatcamGUI/FlatCAMGUI.py:5121 +#: flatcamGUI/FlatCAMGUI.py:5081 flatcamGUI/FlatCAMGUI.py:5122 #: flatcamGUI/ObjectUI.py:1464 msgid "" "Export and save G-Code to\n" "make this object to a file." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5086 +#: flatcamGUI/FlatCAMGUI.py:5087 msgid "Prepend to G-Code:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5088 +#: flatcamGUI/FlatCAMGUI.py:5089 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:5097 +#: flatcamGUI/FlatCAMGUI.py:5098 msgid "Append to G-Code:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5099 flatcamGUI/ObjectUI.py:1486 +#: flatcamGUI/FlatCAMGUI.py:5100 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:5116 +#: flatcamGUI/FlatCAMGUI.py:5117 msgid "CNC Job Adv. Options" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5127 flatcamGUI/ObjectUI.py:1504 +#: flatcamGUI/FlatCAMGUI.py:5128 flatcamGUI/ObjectUI.py:1504 msgid "Toolchange G-Code:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5129 +#: flatcamGUI/FlatCAMGUI.py:5130 msgid "" "Type here any G-Code commands you would\n" "like to be executed when Toolchange event is encountered.\n" @@ -6015,95 +6038,95 @@ msgid "" "or a Toolchange Macro." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5143 flatcamGUI/ObjectUI.py:1526 +#: flatcamGUI/FlatCAMGUI.py:5144 flatcamGUI/ObjectUI.py:1526 msgid "Use Toolchange Macro" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5145 flatcamGUI/ObjectUI.py:1529 +#: flatcamGUI/FlatCAMGUI.py:5146 flatcamGUI/ObjectUI.py:1529 msgid "" "Check this box if you want to use\n" "a Custom Toolchange GCode (macro)." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5157 flatcamGUI/ObjectUI.py:1538 +#: flatcamGUI/FlatCAMGUI.py:5158 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:5164 flatcamGUI/ObjectUI.py:1545 +#: flatcamGUI/FlatCAMGUI.py:5165 flatcamGUI/ObjectUI.py:1545 msgid "Parameters" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5167 flatcamGUI/ObjectUI.py:1548 +#: flatcamGUI/FlatCAMGUI.py:5168 flatcamGUI/ObjectUI.py:1548 msgid "FlatCAM CNC parameters" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5168 flatcamGUI/ObjectUI.py:1549 +#: flatcamGUI/FlatCAMGUI.py:5169 flatcamGUI/ObjectUI.py:1549 msgid "tool = tool number" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5169 flatcamGUI/ObjectUI.py:1550 +#: flatcamGUI/FlatCAMGUI.py:5170 flatcamGUI/ObjectUI.py:1550 msgid "tooldia = tool diameter" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5170 flatcamGUI/ObjectUI.py:1551 +#: flatcamGUI/FlatCAMGUI.py:5171 flatcamGUI/ObjectUI.py:1551 msgid "t_drills = for Excellon, total number of drills" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5171 flatcamGUI/ObjectUI.py:1552 +#: flatcamGUI/FlatCAMGUI.py:5172 flatcamGUI/ObjectUI.py:1552 msgid "x_toolchange = X coord for Toolchange" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5172 flatcamGUI/ObjectUI.py:1553 +#: flatcamGUI/FlatCAMGUI.py:5173 flatcamGUI/ObjectUI.py:1553 msgid "y_toolchange = Y coord for Toolchange" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5173 flatcamGUI/ObjectUI.py:1554 +#: flatcamGUI/FlatCAMGUI.py:5174 flatcamGUI/ObjectUI.py:1554 msgid "z_toolchange = Z coord for Toolchange" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5174 +#: flatcamGUI/FlatCAMGUI.py:5175 msgid "z_cut = Z depth for the cut" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5175 +#: flatcamGUI/FlatCAMGUI.py:5176 msgid "z_move = Z height for travel" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5176 flatcamGUI/ObjectUI.py:1557 +#: flatcamGUI/FlatCAMGUI.py:5177 flatcamGUI/ObjectUI.py:1557 msgid "z_depthpercut = the step value for multidepth cut" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5177 flatcamGUI/ObjectUI.py:1558 +#: flatcamGUI/FlatCAMGUI.py:5178 flatcamGUI/ObjectUI.py:1558 msgid "spindlesspeed = the value for the spindle speed" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5178 flatcamGUI/ObjectUI.py:1559 +#: flatcamGUI/FlatCAMGUI.py:5179 flatcamGUI/ObjectUI.py:1559 msgid "dwelltime = time to dwell to allow the spindle to reach it's set RPM" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5199 +#: flatcamGUI/FlatCAMGUI.py:5200 msgid "NCC Tool Options" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5202 flatcamGUI/FlatCAMGUI.py:5303 -#: flatcamGUI/FlatCAMGUI.py:5382 flatcamGUI/FlatCAMGUI.py:5441 -#: flatcamGUI/FlatCAMGUI.py:5544 flatcamGUI/FlatCAMGUI.py:5605 -#: flatcamGUI/FlatCAMGUI.py:5804 flatcamGUI/FlatCAMGUI.py:5931 +#: flatcamGUI/FlatCAMGUI.py:5203 flatcamGUI/FlatCAMGUI.py:5304 +#: flatcamGUI/FlatCAMGUI.py:5383 flatcamGUI/FlatCAMGUI.py:5442 +#: flatcamGUI/FlatCAMGUI.py:5545 flatcamGUI/FlatCAMGUI.py:5606 +#: flatcamGUI/FlatCAMGUI.py:5805 flatcamGUI/FlatCAMGUI.py:5932 msgid "Parameters:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5212 flatcamGUI/FlatCAMGUI.py:5942 +#: flatcamGUI/FlatCAMGUI.py:5213 flatcamGUI/FlatCAMGUI.py:5943 msgid "Tools dia:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5214 +#: flatcamGUI/FlatCAMGUI.py:5215 msgid "Diameters of the cutting tools, separated by ','" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5222 flatcamTools/ToolNonCopperClear.py:167 +#: flatcamGUI/FlatCAMGUI.py:5223 flatcamTools/ToolNonCopperClear.py:167 #, python-format msgid "" "How much (fraction) of the tool width to overlap each tool pass.\n" @@ -6118,11 +6141,11 @@ msgid "" "due of too many paths." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5238 flatcamTools/ToolNonCopperClear.py:183 +#: flatcamGUI/FlatCAMGUI.py:5239 flatcamTools/ToolNonCopperClear.py:183 msgid "Bounding box margin." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5247 flatcamTools/ToolNonCopperClear.py:192 +#: flatcamGUI/FlatCAMGUI.py:5248 flatcamTools/ToolNonCopperClear.py:192 #: flatcamTools/ToolPaint.py:190 msgid "" "Algorithm for non-copper clearing:
    Standard: Fixed step inwards." @@ -6130,12 +6153,12 @@ msgid "" "lines." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5279 flatcamTools/ToolNonCopperClear.py:224 +#: flatcamGUI/FlatCAMGUI.py:5280 flatcamTools/ToolNonCopperClear.py:224 #: flatcamTools/ToolPaint.py:222 msgid "Rest M.:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5281 +#: flatcamGUI/FlatCAMGUI.py:5282 msgid "" "If checked, use 'rest machining'.\n" "Basically it will clear copper outside PCB features,\n" @@ -6145,39 +6168,39 @@ msgid "" "If not checked, use the standard algorithm." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5300 +#: flatcamGUI/FlatCAMGUI.py:5301 msgid "Cutout Tool Options" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5305 flatcamGUI/ObjectUI.py:402 +#: flatcamGUI/FlatCAMGUI.py:5306 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:5324 +#: flatcamGUI/FlatCAMGUI.py:5325 msgid "" "Distance from objects at which\n" "to draw the cutout." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5331 flatcamTools/ToolCutOut.py:96 +#: flatcamGUI/FlatCAMGUI.py:5332 flatcamTools/ToolCutOut.py:96 msgid "Gap size:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5333 +#: flatcamGUI/FlatCAMGUI.py:5334 msgid "" "Size of the gaps in the toolpath\n" "that will remain to hold the\n" "board in place." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5341 flatcamTools/ToolCutOut.py:133 +#: flatcamGUI/FlatCAMGUI.py:5342 flatcamTools/ToolCutOut.py:133 msgid "Gaps:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5343 +#: flatcamGUI/FlatCAMGUI.py:5344 msgid "" "Number of bridge gaps used for the cutout.\n" "There can be maximum 8 bridges/gaps.\n" @@ -6190,73 +6213,73 @@ msgid "" "- 8 - 2*left + 2*right +2*top + 2*bottom" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5364 flatcamTools/ToolCutOut.py:115 +#: flatcamGUI/FlatCAMGUI.py:5365 flatcamTools/ToolCutOut.py:115 msgid "Convex Sh.:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5366 flatcamTools/ToolCutOut.py:117 +#: flatcamGUI/FlatCAMGUI.py:5367 flatcamTools/ToolCutOut.py:117 msgid "Create a convex shape surrounding the entire PCB." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5379 +#: flatcamGUI/FlatCAMGUI.py:5380 msgid "2Sided Tool Options" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5384 +#: flatcamGUI/FlatCAMGUI.py:5385 msgid "" "A tool to help in creating a double sided\n" "PCB using alignment holes." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5394 flatcamTools/ToolDblSided.py:235 +#: flatcamGUI/FlatCAMGUI.py:5395 flatcamTools/ToolDblSided.py:235 msgid "Drill diam.:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5396 flatcamTools/ToolDblSided.py:226 +#: flatcamGUI/FlatCAMGUI.py:5397 flatcamTools/ToolDblSided.py:226 #: flatcamTools/ToolDblSided.py:237 msgid "Diameter of the drill for the alignment holes." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5403 +#: flatcamGUI/FlatCAMGUI.py:5404 msgid "X" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5404 +#: flatcamGUI/FlatCAMGUI.py:5405 msgid "Y" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5405 flatcamTools/ToolDblSided.py:120 +#: flatcamGUI/FlatCAMGUI.py:5406 flatcamTools/ToolDblSided.py:120 msgid "Mirror Axis:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5407 flatcamTools/ToolDblSided.py:122 +#: flatcamGUI/FlatCAMGUI.py:5408 flatcamTools/ToolDblSided.py:122 msgid "Mirror vertically (X) or horizontally (Y)." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5416 +#: flatcamGUI/FlatCAMGUI.py:5417 msgid "Point" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5417 +#: flatcamGUI/FlatCAMGUI.py:5418 msgid "Box" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5418 flatcamTools/ToolDblSided.py:133 +#: flatcamGUI/FlatCAMGUI.py:5419 flatcamTools/ToolDblSided.py:133 msgid "Axis Ref:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5420 +#: flatcamGUI/FlatCAMGUI.py:5421 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:5436 +#: flatcamGUI/FlatCAMGUI.py:5437 msgid "Paint Tool Options" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5443 flatcamGUI/ObjectUI.py:1299 +#: flatcamGUI/FlatCAMGUI.py:5444 flatcamGUI/ObjectUI.py:1299 msgid "" "Creates tool paths to cover the\n" "whole area of a polygon (remove\n" @@ -6264,48 +6287,48 @@ msgid "" "to click on the desired polygon." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5467 +#: flatcamGUI/FlatCAMGUI.py:5468 msgid "" "How much (fraction) of the tool\n" "width to overlap each tool pass." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5521 flatcamTools/ToolPaint.py:237 +#: flatcamGUI/FlatCAMGUI.py:5522 flatcamTools/ToolPaint.py:237 msgid "Selection:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5523 +#: flatcamGUI/FlatCAMGUI.py:5524 msgid "How to select the polygons to paint." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5527 +#: flatcamGUI/FlatCAMGUI.py:5528 msgid "Single" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5541 +#: flatcamGUI/FlatCAMGUI.py:5542 msgid "Film Tool Options" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5546 +#: flatcamGUI/FlatCAMGUI.py:5547 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:5555 +#: flatcamGUI/FlatCAMGUI.py:5556 msgid "Pos" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5556 +#: flatcamGUI/FlatCAMGUI.py:5557 msgid "Neg" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5557 flatcamTools/ToolFilm.py:116 +#: flatcamGUI/FlatCAMGUI.py:5558 flatcamTools/ToolFilm.py:116 msgid "Film Type:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5559 flatcamTools/ToolFilm.py:118 +#: flatcamGUI/FlatCAMGUI.py:5560 flatcamTools/ToolFilm.py:118 msgid "" "Generate a Positive black film or a Negative film.\n" "Positive means that it will print the features\n" @@ -6315,11 +6338,11 @@ msgid "" "The Film format is SVG." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5570 flatcamTools/ToolFilm.py:130 +#: flatcamGUI/FlatCAMGUI.py:5571 flatcamTools/ToolFilm.py:130 msgid "Border:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5572 flatcamTools/ToolFilm.py:132 +#: flatcamGUI/FlatCAMGUI.py:5573 flatcamTools/ToolFilm.py:132 msgid "" "Specify a border around the object.\n" "Only for negative film.\n" @@ -6331,11 +6354,11 @@ msgid "" "surroundings if not for this border." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5585 flatcamTools/ToolFilm.py:144 +#: flatcamGUI/FlatCAMGUI.py:5586 flatcamTools/ToolFilm.py:144 msgid "Scale Stroke:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5587 flatcamTools/ToolFilm.py:146 +#: flatcamGUI/FlatCAMGUI.py:5588 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 " @@ -6343,77 +6366,77 @@ msgid "" "therefore the fine features may be more affected by this parameter." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5602 +#: flatcamGUI/FlatCAMGUI.py:5603 msgid "Panelize Tool Options" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5607 +#: flatcamGUI/FlatCAMGUI.py:5608 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:5618 flatcamTools/ToolPanelize.py:113 +#: flatcamGUI/FlatCAMGUI.py:5619 flatcamTools/ToolPanelize.py:113 msgid "Spacing cols:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5620 flatcamTools/ToolPanelize.py:115 +#: flatcamGUI/FlatCAMGUI.py:5621 flatcamTools/ToolPanelize.py:115 msgid "" "Spacing between columns of the desired panel.\n" "In current units." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5628 flatcamTools/ToolPanelize.py:122 +#: flatcamGUI/FlatCAMGUI.py:5629 flatcamTools/ToolPanelize.py:122 msgid "Spacing rows:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5630 flatcamTools/ToolPanelize.py:124 +#: flatcamGUI/FlatCAMGUI.py:5631 flatcamTools/ToolPanelize.py:124 msgid "" "Spacing between rows of the desired panel.\n" "In current units." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5638 flatcamTools/ToolPanelize.py:131 +#: flatcamGUI/FlatCAMGUI.py:5639 flatcamTools/ToolPanelize.py:131 msgid "Columns:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5640 flatcamTools/ToolPanelize.py:133 +#: flatcamGUI/FlatCAMGUI.py:5641 flatcamTools/ToolPanelize.py:133 msgid "Number of columns of the desired panel" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5647 flatcamTools/ToolPanelize.py:139 +#: flatcamGUI/FlatCAMGUI.py:5648 flatcamTools/ToolPanelize.py:139 msgid "Rows:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5649 flatcamTools/ToolPanelize.py:141 +#: flatcamGUI/FlatCAMGUI.py:5650 flatcamTools/ToolPanelize.py:141 msgid "Number of rows of the desired panel" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5655 +#: flatcamGUI/FlatCAMGUI.py:5656 msgid "Gerber" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5656 +#: flatcamGUI/FlatCAMGUI.py:5657 msgid "Geo" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5657 flatcamTools/ToolPanelize.py:148 +#: flatcamGUI/FlatCAMGUI.py:5658 flatcamTools/ToolPanelize.py:148 msgid "Panel Type:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5659 +#: flatcamGUI/FlatCAMGUI.py:5660 msgid "" "Choose the type of object for the panel object:\n" "- Gerber\n" "- Geometry" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5668 +#: flatcamGUI/FlatCAMGUI.py:5669 msgid "Constrain within:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5670 flatcamTools/ToolPanelize.py:160 +#: flatcamGUI/FlatCAMGUI.py:5671 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" @@ -6422,171 +6445,171 @@ msgid "" "they fit completely within selected area." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5679 flatcamTools/ToolPanelize.py:169 +#: flatcamGUI/FlatCAMGUI.py:5680 flatcamTools/ToolPanelize.py:169 msgid "Width (DX):" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5681 flatcamTools/ToolPanelize.py:171 +#: flatcamGUI/FlatCAMGUI.py:5682 flatcamTools/ToolPanelize.py:171 msgid "" "The width (DX) within which the panel must fit.\n" "In current units." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5688 flatcamTools/ToolPanelize.py:177 +#: flatcamGUI/FlatCAMGUI.py:5689 flatcamTools/ToolPanelize.py:177 msgid "Height (DY):" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5690 flatcamTools/ToolPanelize.py:179 +#: flatcamGUI/FlatCAMGUI.py:5691 flatcamTools/ToolPanelize.py:179 msgid "" "The height (DY)within which the panel must fit.\n" "In current units." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5704 +#: flatcamGUI/FlatCAMGUI.py:5705 msgid "Calculators Tool Options" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5707 +#: flatcamGUI/FlatCAMGUI.py:5708 msgid "V-Shape Tool Calculator:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5709 +#: flatcamGUI/FlatCAMGUI.py:5710 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:5720 flatcamTools/ToolCalculators.py:94 +#: flatcamGUI/FlatCAMGUI.py:5721 flatcamTools/ToolCalculators.py:94 msgid "Tip Diameter:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5722 +#: flatcamGUI/FlatCAMGUI.py:5723 msgid "" "This is the tool tip diameter.\n" "It is specified by manufacturer." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5730 +#: flatcamGUI/FlatCAMGUI.py:5731 msgid "Tip angle:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5732 +#: flatcamGUI/FlatCAMGUI.py:5733 msgid "" "This is the angle on the tip of the tool.\n" "It is specified by manufacturer." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5742 +#: flatcamGUI/FlatCAMGUI.py:5743 msgid "" "This is depth to cut into material.\n" "In the CNCJob object it is the CutZ parameter." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5749 +#: flatcamGUI/FlatCAMGUI.py:5750 msgid "ElectroPlating Calculator:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5751 flatcamTools/ToolCalculators.py:152 +#: flatcamGUI/FlatCAMGUI.py:5752 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:5761 flatcamTools/ToolCalculators.py:161 +#: flatcamGUI/FlatCAMGUI.py:5762 flatcamTools/ToolCalculators.py:161 msgid "Board Length:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5763 flatcamTools/ToolCalculators.py:165 +#: flatcamGUI/FlatCAMGUI.py:5764 flatcamTools/ToolCalculators.py:165 msgid "This is the board length. In centimeters." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5769 flatcamTools/ToolCalculators.py:167 +#: flatcamGUI/FlatCAMGUI.py:5770 flatcamTools/ToolCalculators.py:167 msgid "Board Width:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5771 flatcamTools/ToolCalculators.py:171 +#: flatcamGUI/FlatCAMGUI.py:5772 flatcamTools/ToolCalculators.py:171 msgid "This is the board width.In centimeters." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5776 flatcamTools/ToolCalculators.py:173 +#: flatcamGUI/FlatCAMGUI.py:5777 flatcamTools/ToolCalculators.py:173 msgid "Current Density:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5779 flatcamTools/ToolCalculators.py:177 +#: flatcamGUI/FlatCAMGUI.py:5780 flatcamTools/ToolCalculators.py:177 msgid "" "Current density to pass through the board. \n" "In Amps per Square Feet ASF." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5785 flatcamTools/ToolCalculators.py:181 +#: flatcamGUI/FlatCAMGUI.py:5786 flatcamTools/ToolCalculators.py:181 msgid "Copper Growth:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5788 flatcamTools/ToolCalculators.py:185 +#: flatcamGUI/FlatCAMGUI.py:5789 flatcamTools/ToolCalculators.py:185 msgid "" "How thick the copper growth is intended to be.\n" "In microns." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5801 +#: flatcamGUI/FlatCAMGUI.py:5802 msgid "Transform Tool Options" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5806 +#: flatcamGUI/FlatCAMGUI.py:5807 msgid "" "Various transformations that can be applied\n" "on a FlatCAM object." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5816 +#: flatcamGUI/FlatCAMGUI.py:5817 msgid "Rotate Angle:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5818 +#: flatcamGUI/FlatCAMGUI.py:5819 msgid "Angle for rotation. In degrees." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5825 +#: flatcamGUI/FlatCAMGUI.py:5826 msgid "Skew_X angle:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5827 +#: flatcamGUI/FlatCAMGUI.py:5828 msgid "Angle for Skew/Shear on X axis. In degrees." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5834 +#: flatcamGUI/FlatCAMGUI.py:5835 msgid "Skew_Y angle:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5836 +#: flatcamGUI/FlatCAMGUI.py:5837 msgid "Angle for Skew/Shear on Y axis. In degrees." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5843 +#: flatcamGUI/FlatCAMGUI.py:5844 msgid "Scale_X factor:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5845 +#: flatcamGUI/FlatCAMGUI.py:5846 msgid "Factor for scaling on X axis." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5852 +#: flatcamGUI/FlatCAMGUI.py:5853 msgid "Scale_Y factor:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5854 +#: flatcamGUI/FlatCAMGUI.py:5855 msgid "Factor for scaling on Y axis." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5862 +#: flatcamGUI/FlatCAMGUI.py:5863 msgid "" "Scale the selected object(s)\n" "using the Scale_X factor for both axis." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5870 flatcamTools/ToolTransform.py:210 +#: flatcamGUI/FlatCAMGUI.py:5871 flatcamTools/ToolTransform.py:210 msgid "" "Scale the selected object(s)\n" "using the origin reference when checked,\n" @@ -6594,27 +6617,27 @@ msgid "" "of the selected objects when unchecked." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5879 +#: flatcamGUI/FlatCAMGUI.py:5880 msgid "Offset_X val:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5881 +#: flatcamGUI/FlatCAMGUI.py:5882 msgid "Distance to offset on X axis. In current units." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5888 +#: flatcamGUI/FlatCAMGUI.py:5889 msgid "Offset_Y val:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5890 +#: flatcamGUI/FlatCAMGUI.py:5891 msgid "Distance to offset on Y axis. In current units." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5896 +#: flatcamGUI/FlatCAMGUI.py:5897 msgid "Mirror Reference" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5898 flatcamTools/ToolTransform.py:314 +#: flatcamGUI/FlatCAMGUI.py:5899 flatcamTools/ToolTransform.py:314 msgid "" "Flip the selected object(s)\n" "around the point in Point Entry Field.\n" @@ -6627,174 +6650,174 @@ msgid "" "Point Entry field and click Flip on X(Y)" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5909 +#: flatcamGUI/FlatCAMGUI.py:5910 msgid " Mirror Ref. Point:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5911 flatcamTools/ToolTransform.py:327 +#: flatcamGUI/FlatCAMGUI.py:5912 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:5928 +#: flatcamGUI/FlatCAMGUI.py:5929 msgid "SolderPaste Tool Options" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5933 +#: flatcamGUI/FlatCAMGUI.py:5934 msgid "" "A tool to create GCode for dispensing\n" "solder paste onto a PCB." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5944 +#: flatcamGUI/FlatCAMGUI.py:5945 msgid "Diameters of nozzle tools, separated by ','" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5951 +#: flatcamGUI/FlatCAMGUI.py:5952 msgid "New Nozzle Dia:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5953 flatcamTools/ToolSolderPaste.py:103 +#: flatcamGUI/FlatCAMGUI.py:5954 flatcamTools/ToolSolderPaste.py:103 msgid "Diameter for the new Nozzle tool to add in the Tool Table" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5961 flatcamTools/ToolSolderPaste.py:166 +#: flatcamGUI/FlatCAMGUI.py:5962 flatcamTools/ToolSolderPaste.py:166 msgid "Z Dispense Start:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5963 flatcamTools/ToolSolderPaste.py:168 +#: flatcamGUI/FlatCAMGUI.py:5964 flatcamTools/ToolSolderPaste.py:168 msgid "The height (Z) when solder paste dispensing starts." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5970 flatcamTools/ToolSolderPaste.py:174 +#: flatcamGUI/FlatCAMGUI.py:5971 flatcamTools/ToolSolderPaste.py:174 msgid "Z Dispense:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5972 flatcamTools/ToolSolderPaste.py:176 +#: flatcamGUI/FlatCAMGUI.py:5973 flatcamTools/ToolSolderPaste.py:176 msgid "The height (Z) when doing solder paste dispensing." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5979 flatcamTools/ToolSolderPaste.py:183 +#: flatcamGUI/FlatCAMGUI.py:5980 flatcamTools/ToolSolderPaste.py:183 msgid "Z Dispense Stop:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5981 flatcamTools/ToolSolderPaste.py:185 +#: flatcamGUI/FlatCAMGUI.py:5982 flatcamTools/ToolSolderPaste.py:185 msgid "The height (Z) when solder paste dispensing stops." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5988 flatcamTools/ToolSolderPaste.py:191 +#: flatcamGUI/FlatCAMGUI.py:5989 flatcamTools/ToolSolderPaste.py:191 msgid "Z Travel:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5990 flatcamTools/ToolSolderPaste.py:193 +#: flatcamGUI/FlatCAMGUI.py:5991 flatcamTools/ToolSolderPaste.py:193 msgid "" "The height (Z) for travel between pads\n" "(without dispensing solder paste)." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:5998 flatcamTools/ToolSolderPaste.py:200 +#: flatcamGUI/FlatCAMGUI.py:5999 flatcamTools/ToolSolderPaste.py:200 msgid "Z Toolchange:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6000 flatcamTools/ToolSolderPaste.py:202 +#: flatcamGUI/FlatCAMGUI.py:6001 flatcamTools/ToolSolderPaste.py:202 msgid "The height (Z) for tool (nozzle) change." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6007 flatcamTools/ToolSolderPaste.py:208 +#: flatcamGUI/FlatCAMGUI.py:6008 flatcamTools/ToolSolderPaste.py:208 msgid "XY Toolchange:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6009 flatcamTools/ToolSolderPaste.py:210 +#: flatcamGUI/FlatCAMGUI.py:6010 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:6017 flatcamTools/ToolSolderPaste.py:217 +#: flatcamGUI/FlatCAMGUI.py:6018 flatcamTools/ToolSolderPaste.py:217 msgid "Feedrate X-Y:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6019 flatcamTools/ToolSolderPaste.py:219 +#: flatcamGUI/FlatCAMGUI.py:6020 flatcamTools/ToolSolderPaste.py:219 msgid "Feedrate (speed) while moving on the X-Y plane." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6026 flatcamTools/ToolSolderPaste.py:225 +#: flatcamGUI/FlatCAMGUI.py:6027 flatcamTools/ToolSolderPaste.py:225 msgid "Feedrate Z:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6028 flatcamTools/ToolSolderPaste.py:227 +#: flatcamGUI/FlatCAMGUI.py:6029 flatcamTools/ToolSolderPaste.py:227 msgid "" "Feedrate (speed) while moving vertically\n" "(on Z plane)." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6036 flatcamTools/ToolSolderPaste.py:234 +#: flatcamGUI/FlatCAMGUI.py:6037 flatcamTools/ToolSolderPaste.py:234 msgid "Feedrate Z Dispense:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6038 flatcamTools/ToolSolderPaste.py:236 +#: flatcamGUI/FlatCAMGUI.py:6039 flatcamTools/ToolSolderPaste.py:236 msgid "" "Feedrate (speed) while moving up vertically\n" " to Dispense position (on Z plane)." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6046 flatcamTools/ToolSolderPaste.py:243 +#: flatcamGUI/FlatCAMGUI.py:6047 flatcamTools/ToolSolderPaste.py:243 msgid "Spindle Speed FWD:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6048 flatcamTools/ToolSolderPaste.py:245 +#: flatcamGUI/FlatCAMGUI.py:6049 flatcamTools/ToolSolderPaste.py:245 msgid "" "The dispenser speed while pushing solder paste\n" "through the dispenser nozzle." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6056 flatcamTools/ToolSolderPaste.py:252 +#: flatcamGUI/FlatCAMGUI.py:6057 flatcamTools/ToolSolderPaste.py:252 msgid "Dwell FWD:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6058 flatcamTools/ToolSolderPaste.py:254 +#: flatcamGUI/FlatCAMGUI.py:6059 flatcamTools/ToolSolderPaste.py:254 msgid "Pause after solder dispensing." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6065 flatcamTools/ToolSolderPaste.py:260 +#: flatcamGUI/FlatCAMGUI.py:6066 flatcamTools/ToolSolderPaste.py:260 msgid "Spindle Speed REV:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6067 flatcamTools/ToolSolderPaste.py:262 +#: flatcamGUI/FlatCAMGUI.py:6068 flatcamTools/ToolSolderPaste.py:262 msgid "" "The dispenser speed while retracting solder paste\n" "through the dispenser nozzle." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6075 flatcamTools/ToolSolderPaste.py:269 +#: flatcamGUI/FlatCAMGUI.py:6076 flatcamTools/ToolSolderPaste.py:269 msgid "Dwell REV:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6077 flatcamTools/ToolSolderPaste.py:271 +#: flatcamGUI/FlatCAMGUI.py:6078 flatcamTools/ToolSolderPaste.py:271 msgid "" "Pause after solder paste dispenser retracted,\n" "to allow pressure equilibrium." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6084 flatcamTools/ToolSolderPaste.py:277 +#: flatcamGUI/FlatCAMGUI.py:6085 flatcamTools/ToolSolderPaste.py:277 msgid "PostProcessors:" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6086 flatcamTools/ToolSolderPaste.py:279 +#: flatcamGUI/FlatCAMGUI.py:6087 flatcamTools/ToolSolderPaste.py:279 msgid "Files that control the GCode generation." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6116 flatcamGUI/FlatCAMGUI.py:6122 +#: flatcamGUI/FlatCAMGUI.py:6117 flatcamGUI/FlatCAMGUI.py:6123 msgid "Idle." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6146 +#: flatcamGUI/FlatCAMGUI.py:6147 msgid "Application started ..." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:6147 +#: flatcamGUI/FlatCAMGUI.py:6148 msgid "Hello!" msgstr ""