From e397e26484b0b02cc1d146f65bbe045d6826bd98 Mon Sep 17 00:00:00 2001 From: Marius Stanciu Date: Fri, 13 Dec 2019 18:36:57 +0200 Subject: [PATCH] - some strings updated; update on the Romanian translate --- FlatCAMApp.py | 83 +- ObjectCollection.py | 42 +- README.md | 1 + flatcamEditors/FlatCAMGeoEditor.py | 2 - flatcamGUI/ObjectUI.py | 18 +- flatcamGUI/PreferencesUI.py | 26 +- flatcamParsers/ParseExcellon.py | 3 +- flatcamTools/ToolCalibration.py | 4 +- flatcamTools/ToolDistance.py | 5 +- flatcamTools/ToolDistanceMin.py | 5 +- locale/en/LC_MESSAGES/strings.mo | Bin 330102 -> 333886 bytes locale/en/LC_MESSAGES/strings.po | 4602 ++++++++++----------- locale/ro/LC_MESSAGES/strings.mo | Bin 301559 -> 335812 bytes locale/ro/LC_MESSAGES/strings.po | 5992 ++++++++++++++-------------- 14 files changed, 5478 insertions(+), 5305 deletions(-) diff --git a/FlatCAMApp.py b/FlatCAMApp.py index a845c854..600c16e1 100644 --- a/FlatCAMApp.py +++ b/FlatCAMApp.py @@ -4314,23 +4314,41 @@ class App(QtCore.QObject): # self.inform.emit('[selected] %s created & selected: %s' % # (str(obj.kind).capitalize(), str(obj.options['name']))) if obj.kind == 'gerber': - self.inform.emit(_('[selected] {kind} created/selected: {name}').format( - kind=obj.kind.capitalize(), color='green', name=str(obj.options['name']))) + self.inform.emit('[selected] {kind} {tx}: {name}'.format( + kind=obj.kind.capitalize(), + color='green', + name=str(obj.options['name']), tx=_("created/selected")) + ) elif obj.kind == 'excellon': - self.inform.emit(_('[selected] {kind} created/selected: {name}').format( - kind=obj.kind.capitalize(), color='brown', name=str(obj.options['name']))) + self.inform.emit('[selected] {kind} {tx}: {name}'.format( + kind=obj.kind.capitalize(), + color='brown', + name=str(obj.options['name']), tx=_("created/selected")) + ) elif obj.kind == 'cncjob': - self.inform.emit(_('[selected] {kind} created/selected: {name}').format( - kind=obj.kind.capitalize(), color='blue', name=str(obj.options['name']))) + self.inform.emit('[selected] {kind} {tx}: {name}'.format( + kind=obj.kind.capitalize(), + color='blue', + name=str(obj.options['name']), tx=_("created/selected")) + ) elif obj.kind == 'geometry': - self.inform.emit(_('[selected] {kind} created/selected: {name}').format( - kind=obj.kind.capitalize(), color='red', name=str(obj.options['name']))) + self.inform.emit('[selected] {kind} {tx}: {name}'.format( + kind=obj.kind.capitalize(), + color='red', + name=str(obj.options['name']), tx=_("created/selected")) + ) elif obj.kind == 'script': - self.inform.emit(_('[selected] {kind} created/selected: {name}').format( - kind=obj.kind.capitalize(), color='orange', name=str(obj.options['name']))) + self.inform.emit('[selected] {kind} {tx}: {name}'.format( + kind=obj.kind.capitalize(), + color='orange', + name=str(obj.options['name']), tx=_("created/selected")) + ) elif obj.kind == 'document': - self.inform.emit(_('[selected] {kind} created/selected: {name}').format( - kind=obj.kind.capitalize(), color='darkCyan', name=str(obj.options['name']))) + self.inform.emit('[selected] {kind} {tx}: {name}'.format( + kind=obj.kind.capitalize(), + color='darkCyan', + name=str(obj.options['name']), tx=_("created/selected")) + ) # update the SHELL auto-completer model with the name of the new object self.shell._edit.set_model_data(self.myKeywords) @@ -8856,17 +8874,29 @@ class App(QtCore.QObject): def selected_message(self, curr_sel_obj): if curr_sel_obj: if curr_sel_obj.kind == 'gerber': - self.inform.emit(_('[selected]{name} selected').format( - color='green', name=str(curr_sel_obj.options['name']))) + self.inform.emit('[selected]{name} {tx}'.format( + color='green', + name=str(curr_sel_obj.options['name']), + tx=_("selected")) + ) elif curr_sel_obj.kind == 'excellon': - self.inform.emit(_('[selected]{name} selected').format( - color='brown', name=str(curr_sel_obj.options['name']))) + self.inform.emit('[selected]{name} {tx}'.format( + color='brown', + name=str(curr_sel_obj.options['name']), + tx=_("selected")) + ) elif curr_sel_obj.kind == 'cncjob': - self.inform.emit(_('[selected]{name} selected').format( - color='blue', name=str(curr_sel_obj.options['name']))) + self.inform.emit('[selected]{name} {tx}'.format( + color='blue', + name=str(curr_sel_obj.options['name']), + tx=_("selected")) + ) elif curr_sel_obj.kind == 'geometry': - self.inform.emit(_('[selected]{name} selected').format( - color='red', name=str(curr_sel_obj.options['name']))) + self.inform.emit('[selected]{name} {tx}'.format( + color='red', + name=str(curr_sel_obj.options['name']), + tx=_("selected")) + ) def delete_hover_shape(self): self.hover_shapes.clear() @@ -10166,8 +10196,10 @@ class App(QtCore.QObject): try: filename, _f = QtWidgets.QFileDialog.getSaveFileName( caption=_("Save Project As ..."), - directory=_('{l_save}/Project_{date}').format(l_save=str(self.get_last_save_folder()), date=self.date), - filter=filter_) + directory=('{l_save}/{proj}_{date}').format(l_save=str(self.get_last_save_folder()), date=self.date, + proj=_("Project")), + filter=filter_ + ) except TypeError: filename, _f = QtWidgets.QFileDialog.getSaveFileName(caption=_("Save Project As ..."), filter=filter_) @@ -10208,7 +10240,7 @@ class App(QtCore.QObject): try: obj_active = self.collection.get_active() - obj_name = obj_active.options['name'] + obj_name = _(str(obj_active.options['name'])) except AttributeError as err: log.debug("App.on_file_save_object_pdf() --> %s" % str(err)) self.inform.emit('[ERROR_NOTCL] %s' % _("No object selected.")) @@ -10218,10 +10250,11 @@ class App(QtCore.QObject): try: filename, _f = QtWidgets.QFileDialog.getSaveFileName( caption=_("Save Object as PDF ..."), - directory=_('{l_save}/{obj_name}_{date}').format(l_save=str(self.get_last_save_folder()), + directory=('{l_save}/{obj_name}_{date}').format(l_save=str(self.get_last_save_folder()), obj_name=obj_name, date=self.date), - filter=filter_) + filter=filter_ + ) except TypeError: filename, _f = QtWidgets.QFileDialog.getSaveFileName(caption=_("Save Object as PDF ..."), filter=filter_) diff --git a/ObjectCollection.py b/ObjectCollection.py index 358fa4e7..8982e15b 100644 --- a/ObjectCollection.py +++ b/ObjectCollection.py @@ -785,23 +785,41 @@ class ObjectCollection(QtCore.QAbstractItemModel): self.item_selected.emit(obj.options['name']) if obj.kind == 'gerber': - self.app.inform.emit(_('[selected]{name} selected').format( - color='green', name=str(obj.options['name']))) + self.app.inform.emit('[selected]{name} {tx}'.format( + color='green', + name=str(obj.options['name']), + tx=_("selected")) + ) elif obj.kind == 'excellon': - self.app.inform.emit(_('[selected]{name} selected').format( - color='brown', name=str(obj.options['name']))) + self.app.inform.emit('[selected]{name} {tx}'.format( + color='brown', + name=str(obj.options['name']), + tx=_("selected")) + ) elif obj.kind == 'cncjob': - self.app.inform.emit(_('[selected]{name} selected').format( - color='blue', name=str(obj.options['name']))) + self.app.inform.emit('[selected]{name} {tx}'.format( + color='blue', + name=str(obj.options['name']), + tx=_("selected")) + ) elif obj.kind == 'geometry': - self.app.inform.emit(_('[selected]{name} selected').format( - color='red', name=str(obj.options['name']))) + self.app.inform.emit('[selected]{name} {tx}'.format( + color='red', + name=str(obj.options['name']), + tx=_("selected")) + ) elif obj.kind == 'script': - self.app.inform.emit(_('[selected]{name} selected').format( - color='orange', name=str(obj.options['name']))) + self.app.inform.emit('[selected]{name} {tx}'.format( + color='orange', + name=str(obj.options['name']), + tx=_("selected")) + ) elif obj.kind == 'document': - self.app.inform.emit(_('[selected]{name} selected').format( - color='darkCyan', name=str(obj.options['name']))) + self.app.inform.emit('[selected]{name} {tx}'.format( + color='darkCyan', + name=str(obj.options['name']), + tx=_("selected")) + ) except IndexError: self.item_selected.emit('none') # FlatCAMApp.App.log.debug("on_list_selection_change(): Index Error (Nothing selected?)") diff --git a/README.md b/README.md index 56f3aeca..5b0fbb2a 100644 --- a/README.md +++ b/README.md @@ -13,6 +13,7 @@ CAD program, and create G-Code for Isolation routing. - HPGL2 import: added support for circles, arcs and 3-point arcs. Everything works only for absolute coordinates. - removed the .plt extension from Gcode extensions +- some strings updated; update on the Romanian translate 12.12.2019 diff --git a/flatcamEditors/FlatCAMGeoEditor.py b/flatcamEditors/FlatCAMGeoEditor.py index 83ebf27b..ac7df5e6 100644 --- a/flatcamEditors/FlatCAMGeoEditor.py +++ b/flatcamEditors/FlatCAMGeoEditor.py @@ -455,8 +455,6 @@ class PaintOptionsTool(FlatCAMTool): ovlabel = QtWidgets.QLabel('%s:' % _('Overlap Rate')) ovlabel.setToolTip( _("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" diff --git a/flatcamGUI/ObjectUI.py b/flatcamGUI/ObjectUI.py index 7dad4ac4..29ed5468 100644 --- a/flatcamGUI/ObjectUI.py +++ b/flatcamGUI/ObjectUI.py @@ -1910,7 +1910,7 @@ class CNCObjectUI(ObjectUI): self.prepend_text = FCTextArea() self.prepend_text.setPlaceholderText( - _("Type here any G-Code commands you would " + _("Type here any G-Code commands you would\n" "like to add at the beginning of the G-Code file.") ) self.custom_box.addWidget(self.prepend_text) @@ -1926,8 +1926,8 @@ class CNCObjectUI(ObjectUI): self.append_text = FCTextArea() self.append_text.setPlaceholderText( - _("Type here any G-Code commands you would " - "like to append to the generated file. " + _("Type here any G-Code commands you would\n" + "like to append to the generated file.\n" "I.e.: M2 (End of program)") ) self.custom_box.addWidget(self.append_text) @@ -1958,12 +1958,12 @@ class CNCObjectUI(ObjectUI): self.toolchange_text = FCTextArea() self.toolchange_text.setPlaceholderText( _( - "Type here any G-Code commands you would " - "like to be executed when Toolchange event is encountered. " - "This will constitute a Custom Toolchange GCode, " - "or a Toolchange Macro. " - "The FlatCAM variables are surrounded by '%' symbol. \n" - "WARNING: it can be used only with a preprocessor file " + "Type here any G-Code commands you would\n" + "like to be executed when Toolchange event is encountered.\n" + "This will constitute a Custom Toolchange GCode,\n" + "or a Toolchange Macro.\n" + "The FlatCAM variables are surrounded by '%' symbol.\n" + "WARNING: it can be used only with a preprocessor file\n" "that has 'toolchange_custom' in it's name." ) ) diff --git a/flatcamGUI/PreferencesUI.py b/flatcamGUI/PreferencesUI.py index 090535d2..532884f0 100644 --- a/flatcamGUI/PreferencesUI.py +++ b/flatcamGUI/PreferencesUI.py @@ -3780,7 +3780,7 @@ class CNCJobOptPrefGroupUI(OptionsGroupUI): self.prepend_text = FCTextArea() self.prepend_text.setPlaceholderText( - _("Type here any G-Code commands you would " + _("Type here any G-Code commands you would\n" "like to add at the beginning of the G-Code file.") ) self.layout.addWidget(self.prepend_text) @@ -3797,8 +3797,8 @@ class CNCJobOptPrefGroupUI(OptionsGroupUI): self.append_text = FCTextArea() self.append_text.setPlaceholderText( - _("Type here any G-Code commands you would " - "like to append to the generated file. " + _("Type here any G-Code commands you would\n" + "like to append to the generated file.\n" "I.e.: M2 (End of program)") ) self.layout.addWidget(self.append_text) @@ -3850,12 +3850,12 @@ class CNCJobAdvOptPrefGroupUI(OptionsGroupUI): self.toolchange_text = FCTextArea() self.toolchange_text.setPlaceholderText( _( - "Type here any G-Code commands you would " - "like to be executed when Toolchange event is encountered. " - "This will constitute a Custom Toolchange GCode, " - "or a Toolchange Macro. " - "The FlatCAM variables are surrounded by '%' symbol. \n" - "WARNING: it can be used only with a preprocessor file " + "Type here any G-Code commands you would\n" + "like to be executed when Toolchange event is encountered.\n" + "This will constitute a Custom Toolchange GCode,\n" + "or a Toolchange Macro.\n" + "The FlatCAM variables are surrounded by '%' symbol.\n" + "WARNING: it can be used only with a preprocessor file\n" "that has 'toolchange_custom' in it's name." ) ) @@ -4852,7 +4852,7 @@ class ToolsFilmPrefGroupUI(OptionsGroupUI): self.orientation_label = QtWidgets.QLabel('%s:' % _("Page Orientation")) self.orientation_label.setToolTip(_("Can be:\n" "- Portrait\n" - "- Lanscape")) + "- Landscape")) self.orientation_radio = RadioSet([{'label': _('Portrait'), 'value': 'p'}, {'label': _('Landscape'), 'value': 'l'}, @@ -6123,7 +6123,7 @@ class Tools2CThievingPrefGroupUI(OptionsGroupUI): ], orientation='vertical', stretch=False) self.reference_label = QtWidgets.QLabel(_("Reference:")) self.reference_label.setToolTip( - _("- 'Itself' - the copper Thieving extent is based on the object that is copper cleared.\n " + _("- 'Itself' - the copper Thieving extent is based on the object that is copper cleared.\n" "- 'Area Selection' - left mouse click to start selection of the area to be filled.\n" "- 'Reference Object' - will do copper thieving within the area specified by another object.") ) @@ -6137,7 +6137,7 @@ class Tools2CThievingPrefGroupUI(OptionsGroupUI): ], stretch=False) self.bbox_type_label = QtWidgets.QLabel(_("Box Type:")) self.bbox_type_label.setToolTip( - _("- 'Rectangular' - the bounding box will be of rectangular shape.\n " + _("- 'Rectangular' - the bounding box will be of rectangular shape.\n" "- 'Minimal' - the bounding box will be the convex hull shape.") ) grid_lay.addWidget(self.bbox_type_label, 5, 0) @@ -6157,7 +6157,7 @@ class Tools2CThievingPrefGroupUI(OptionsGroupUI): ], orientation='vertical', stretch=False) self.fill_type_label = QtWidgets.QLabel(_("Fill Type:")) self.fill_type_label.setToolTip( - _("- 'Solid' - copper thieving will be a solid polygon.\n " + _("- 'Solid' - copper thieving will be a solid polygon.\n" "- 'Dots Grid' - the empty area will be filled with a pattern of dots.\n" "- 'Squares Grid' - the empty area will be filled with a pattern of squares.\n" "- 'Lines Grid' - the empty area will be filled with a pattern of lines.") diff --git a/flatcamParsers/ParseExcellon.py b/flatcamParsers/ParseExcellon.py index 7bccf8f0..0b5677dc 100644 --- a/flatcamParsers/ParseExcellon.py +++ b/flatcamParsers/ParseExcellon.py @@ -884,8 +884,9 @@ class Excellon(Geometry): log.error("Excellon PARSING FAILED. Line %d: %s" % (line_num, eline)) msg = '[ERROR_NOTCL] %s' % \ _("An internal error has ocurred. See shell.\n") - msg += _('{e_code} Excellon Parser error.\nParsing Failed. Line {l_nr}: {line}\n').format( + msg += ('{e_code} {tx} {l_nr}: {line}\n').format( e_code='[ERROR]', + tx=_("Excellon Parser error.\nParsing Failed. Line"), l_nr=line_num, line=eline) msg += traceback.format_exc() diff --git a/flatcamTools/ToolCalibration.py b/flatcamTools/ToolCalibration.py index 7faaae34..29718279 100644 --- a/flatcamTools/ToolCalibration.py +++ b/flatcamTools/ToolCalibration.py @@ -759,7 +759,7 @@ class ToolCalibration(FlatCAMTool): self.set_tool_ui() - self.app.ui.notebook.setTabText(2, _("Calibrate Tool")) + self.app.ui.notebook.setTabText(2, _("Calibration Tool")) def install(self, icon=None, separator=None, **kwargs): FlatCAMTool.install(self, icon, separator, shortcut='ALT+E', **kwargs) @@ -952,7 +952,7 @@ class ToolCalibration(FlatCAMTool): gcode = '(G-CODE GENERATED BY FLATCAM v%s - www.flatcam.org - Version Date: %s)\n' % \ (str(self.app.version), str(self.app.version_date)) + '\n' - gcode += '(Name: ' + _('Verification GCode for FlatCAM Calibrate Tool') + ')\n' + gcode += '(Name: ' + _('Verification GCode for FlatCAM Calibration Tool') + ')\n' gcode += '(Units: ' + self.units.upper() + ')\n\n' gcode += '(Created on ' + time_str + ')\n\n' diff --git a/flatcamTools/ToolDistance.py b/flatcamTools/ToolDistance.py index 025535b9..8b6ddbc1 100644 --- a/flatcamTools/ToolDistance.py +++ b/flatcamTools/ToolDistance.py @@ -349,7 +349,10 @@ class Distance(FlatCAMTool): d = math.sqrt(dx ** 2 + dy ** 2) self.stop_entry.set_value("(%.*f, %.*f)" % (self.decimals, pos[0], self.decimals, pos[1])) - self.app.inform.emit(_("MEASURING: Result D(x) = {d_x} | D(y) = {d_y} | Distance = {d_z}").format( + self.app.inform.emit("{tx1}: {tx2} D(x) = {d_x} | D(y) = {d_y} | (tx3} = {d_z}".format( + tx1=_("MEASURING"), + tx2=_("Result"), + tx3=_("Distance"), d_x='%*f' % (self.decimals, abs(dx)), d_y='%*f' % (self.decimals, abs(dy)), d_z='%*f' % (self.decimals, abs(d))) diff --git a/flatcamTools/ToolDistanceMin.py b/flatcamTools/ToolDistanceMin.py index b038434d..9197ac58 100644 --- a/flatcamTools/ToolDistanceMin.py +++ b/flatcamTools/ToolDistanceMin.py @@ -278,7 +278,10 @@ class DistanceMin(FlatCAMTool): ) if d != 0: - self.app.inform.emit(_("MEASURING: Result D(x) = {d_x} | D(y) = {d_y} | Distance = {d_z}").format( + self.app.inform.emit("{tx1}: {tx2} D(x) = {d_x} | D(y) = {d_y} | (tx3} = {d_z}".format( + tx1=_("MEASURING"), + tx2=_("Result"), + tx3=_("Distance"), d_x='%*f' % (self.decimals, abs(dx)), d_y='%*f' % (self.decimals, abs(dy)), d_z='%*f' % (self.decimals, abs(d))) diff --git a/locale/en/LC_MESSAGES/strings.mo b/locale/en/LC_MESSAGES/strings.mo index efac10b89d127828d0c38d43cf9ef471078cdf17..a7622332fce133ccf3eabd55aef35dc5a6d8bc16 100644 GIT binary patch delta 65765 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 delta 63074 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 REJ5y&{+<2*|GnC3{|{U-JbM5D diff --git a/locale/en/LC_MESSAGES/strings.po b/locale/en/LC_MESSAGES/strings.po index f36f2589..3f20387f 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-12-09 16:51+0200\n" -"PO-Revision-Date: 2019-12-09 16:51+0200\n" +"POT-Creation-Date: 2019-12-13 16:04+0200\n" +"PO-Revision-Date: 2019-12-13 16:05+0200\n" "Last-Translator: \n" "Language-Team: \n" "Language: en\n" @@ -22,15 +22,15 @@ msgstr "" "X-Poedit-SearchPathExcluded-1: doc\n" "X-Poedit-SearchPathExcluded-2: tests\n" -#: FlatCAMApp.py:988 +#: FlatCAMApp.py:999 msgid "FlatCAM is initializing ..." msgstr "FlatCAM is initializing ..." -#: FlatCAMApp.py:1566 +#: FlatCAMApp.py:1580 msgid "Could not find the Language files. The App strings are missing." msgstr "Could not find the Language files. The App strings are missing." -#: FlatCAMApp.py:1659 +#: FlatCAMApp.py:1673 msgid "" "FlatCAM is initializing ...\n" "Canvas initialization started." @@ -38,7 +38,7 @@ msgstr "" "FlatCAM is initializing ...\n" "Canvas initialization started." -#: FlatCAMApp.py:1677 +#: FlatCAMApp.py:1691 msgid "" "FlatCAM is initializing ...\n" "Canvas initialization started.\n" @@ -48,7 +48,7 @@ msgstr "" "Canvas initialization started.\n" "Canvas initialization finished in" -#: FlatCAMApp.py:2373 +#: FlatCAMApp.py:2388 msgid "" "Type >help< to get started\n" "\n" @@ -56,12 +56,13 @@ msgstr "" "Type >help< to get started\n" "\n" -#: FlatCAMApp.py:2627 FlatCAMApp.py:9088 +#: FlatCAMApp.py:2643 FlatCAMApp.py:9108 msgid "New Project - Not saved" msgstr "New Project - Not saved" -#: FlatCAMApp.py:2702 FlatCAMApp.py:9156 FlatCAMApp.py:9193 FlatCAMApp.py:9234 -#: FlatCAMApp.py:10021 FlatCAMApp.py:10922 FlatCAMApp.py:10981 +#: FlatCAMApp.py:2718 FlatCAMApp.py:9176 FlatCAMApp.py:9213 FlatCAMApp.py:9254 +#: FlatCAMApp.py:9325 FlatCAMApp.py:10079 FlatCAMApp.py:11090 +#: FlatCAMApp.py:11149 msgid "" "Canvas initialization started.\n" "Canvas initialization finished in" @@ -69,46 +70,46 @@ msgstr "" "Canvas initialization started.\n" "Canvas initialization finished in" -#: FlatCAMApp.py:2704 +#: FlatCAMApp.py:2720 msgid "Executing Tcl Script ..." msgstr "Executing Tcl Script ..." -#: FlatCAMApp.py:2719 +#: FlatCAMApp.py:2735 msgid "" "Found old default preferences files. Please reboot the application to update." msgstr "" "Found old default preferences files. Please reboot the application to update." -#: FlatCAMApp.py:2763 ObjectCollection.py:90 flatcamTools/ToolImage.py:248 +#: FlatCAMApp.py:2779 ObjectCollection.py:90 flatcamTools/ToolImage.py:248 #: flatcamTools/ToolPcbWizard.py:301 flatcamTools/ToolPcbWizard.py:324 msgid "Open cancelled." msgstr "Open cancelled." -#: FlatCAMApp.py:2779 +#: FlatCAMApp.py:2795 msgid "Open Config file failed." msgstr "Open Config file failed." -#: FlatCAMApp.py:2794 +#: FlatCAMApp.py:2810 msgid "Open Script file failed." msgstr "Open Script file failed." -#: FlatCAMApp.py:2820 +#: FlatCAMApp.py:2836 msgid "Open Excellon file failed." msgstr "Open Excellon file failed." -#: FlatCAMApp.py:2833 +#: FlatCAMApp.py:2849 msgid "Open GCode file failed." msgstr "Open GCode file failed." -#: FlatCAMApp.py:2846 +#: FlatCAMApp.py:2862 msgid "Open Gerber file failed." msgstr "Open Gerber file failed." -#: FlatCAMApp.py:3186 +#: FlatCAMApp.py:3203 msgid "Select a Geometry, Gerber or Excellon Object to edit." msgstr "Select a Geometry, Gerber or Excellon Object to edit." -#: FlatCAMApp.py:3201 +#: FlatCAMApp.py:3218 msgid "" "Simultaneous editing of tools geometry in a MultiGeo Geometry is not " "possible.\n" @@ -118,82 +119,82 @@ msgstr "" "possible.\n" "Edit only one geometry at a time." -#: FlatCAMApp.py:3256 +#: FlatCAMApp.py:3273 msgid "Editor is activated ..." msgstr "Editor is activated ..." -#: FlatCAMApp.py:3277 +#: FlatCAMApp.py:3294 msgid "Do you want to save the edited object?" msgstr "Do you want to save the edited object?" -#: FlatCAMApp.py:3278 flatcamGUI/FlatCAMGUI.py:1957 +#: FlatCAMApp.py:3295 flatcamGUI/FlatCAMGUI.py:1969 msgid "Close Editor" msgstr "Close Editor" -#: FlatCAMApp.py:3281 FlatCAMApp.py:4965 FlatCAMApp.py:7817 FlatCAMApp.py:7843 -#: FlatCAMApp.py:8995 FlatCAMTranslation.py:97 FlatCAMTranslation.py:171 +#: FlatCAMApp.py:3298 FlatCAMApp.py:4983 FlatCAMApp.py:7843 FlatCAMApp.py:7869 +#: FlatCAMApp.py:9015 FlatCAMTranslation.py:97 FlatCAMTranslation.py:171 #: flatcamGUI/PreferencesUI.py:1034 msgid "Yes" msgstr "Yes" -#: FlatCAMApp.py:3282 FlatCAMApp.py:4966 FlatCAMApp.py:7818 FlatCAMApp.py:7844 -#: FlatCAMApp.py:8996 FlatCAMTranslation.py:98 FlatCAMTranslation.py:172 -#: flatcamGUI/PreferencesUI.py:1035 flatcamGUI/PreferencesUI.py:4076 -#: flatcamGUI/PreferencesUI.py:4501 flatcamTools/ToolNonCopperClear.py:189 +#: FlatCAMApp.py:3299 FlatCAMApp.py:4984 FlatCAMApp.py:7844 FlatCAMApp.py:7870 +#: FlatCAMApp.py:9016 FlatCAMTranslation.py:98 FlatCAMTranslation.py:172 +#: flatcamGUI/PreferencesUI.py:1035 flatcamGUI/PreferencesUI.py:4094 +#: flatcamGUI/PreferencesUI.py:4519 flatcamTools/ToolNonCopperClear.py:189 #: flatcamTools/ToolPaint.py:161 msgid "No" msgstr "No" -#: FlatCAMApp.py:3283 FlatCAMApp.py:4967 FlatCAMApp.py:5803 FlatCAMApp.py:7121 -#: FlatCAMApp.py:8997 FlatCAMCommon.py:694 flatcamGUI/FlatCAMGUI.py:1105 +#: FlatCAMApp.py:3300 FlatCAMApp.py:4985 FlatCAMApp.py:5821 FlatCAMApp.py:7139 +#: FlatCAMApp.py:9017 FlatCAMCommon.py:702 flatcamGUI/FlatCAMGUI.py:1117 msgid "Cancel" msgstr "Cancel" -#: FlatCAMApp.py:3311 +#: FlatCAMApp.py:3328 msgid "Object empty after edit." msgstr "Object empty after edit." -#: FlatCAMApp.py:3360 FlatCAMApp.py:3380 FlatCAMApp.py:3395 +#: FlatCAMApp.py:3377 FlatCAMApp.py:3397 FlatCAMApp.py:3412 msgid "Select a Gerber, Geometry or Excellon Object to update." msgstr "Select a Gerber, Geometry or Excellon Object to update." -#: FlatCAMApp.py:3364 +#: FlatCAMApp.py:3381 msgid "is updated, returning to App..." msgstr "is updated, returning to App..." -#: FlatCAMApp.py:3759 FlatCAMApp.py:3833 FlatCAMApp.py:4827 +#: FlatCAMApp.py:3776 FlatCAMApp.py:3850 FlatCAMApp.py:4845 msgid "Could not load defaults file." msgstr "Could not load defaults file." -#: FlatCAMApp.py:3771 FlatCAMApp.py:3842 FlatCAMApp.py:4836 +#: FlatCAMApp.py:3788 FlatCAMApp.py:3859 FlatCAMApp.py:4854 msgid "Failed to parse defaults file." msgstr "Failed to parse defaults file." -#: FlatCAMApp.py:3813 FlatCAMApp.py:3817 +#: FlatCAMApp.py:3830 FlatCAMApp.py:3834 msgid "Import FlatCAM Preferences" msgstr "Import FlatCAM Preferences" -#: FlatCAMApp.py:3824 +#: FlatCAMApp.py:3841 msgid "FlatCAM preferences import cancelled." msgstr "FlatCAM preferences import cancelled." -#: FlatCAMApp.py:3847 +#: FlatCAMApp.py:3864 msgid "Imported Defaults from" msgstr "Imported Defaults from" -#: FlatCAMApp.py:3867 FlatCAMApp.py:3872 +#: FlatCAMApp.py:3884 FlatCAMApp.py:3889 msgid "Export FlatCAM Preferences" msgstr "Export FlatCAM Preferences" -#: FlatCAMApp.py:3880 +#: FlatCAMApp.py:3897 msgid "FlatCAM preferences export cancelled." msgstr "FlatCAM preferences export cancelled." -#: FlatCAMApp.py:3889 FlatCAMApp.py:10204 FlatCAMApp.py:10252 -#: FlatCAMApp.py:10375 FlatCAMApp.py:10514 FlatCAMCommon.py:378 -#: FlatCAMCommon.py:1066 FlatCAMObj.py:6523 -#: flatcamEditors/FlatCAMTextEditor.py:228 flatcamTools/ToolFilm.py:1009 -#: flatcamTools/ToolFilm.py:1180 flatcamTools/ToolSolderPaste.py:1543 +#: FlatCAMApp.py:3906 FlatCAMApp.py:10305 FlatCAMApp.py:10353 +#: FlatCAMApp.py:10476 FlatCAMApp.py:10615 FlatCAMCommon.py:378 +#: FlatCAMCommon.py:1094 FlatCAMObj.py:6721 +#: flatcamEditors/FlatCAMTextEditor.py:228 flatcamTools/ToolFilm.py:1019 +#: flatcamTools/ToolFilm.py:1195 flatcamTools/ToolSolderPaste.py:1541 msgid "" "Permission denied, saving not possible.\n" "Most likely another app is holding the file open and not accessible." @@ -201,36 +202,36 @@ msgstr "" "Permission denied, saving not possible.\n" "Most likely another app is holding the file open and not accessible." -#: FlatCAMApp.py:3902 +#: FlatCAMApp.py:3919 msgid "Could not load preferences file." msgstr "Could not load preferences file." -#: FlatCAMApp.py:3922 FlatCAMApp.py:4883 +#: FlatCAMApp.py:3939 FlatCAMApp.py:4901 msgid "Failed to write defaults to file." msgstr "Failed to write defaults to file." -#: FlatCAMApp.py:3928 +#: FlatCAMApp.py:3945 msgid "Exported preferences to" msgstr "Exported preferences to" -#: FlatCAMApp.py:3945 +#: FlatCAMApp.py:3962 msgid "FlatCAM Preferences Folder opened." msgstr "FlatCAM Preferences Folder opened." -#: FlatCAMApp.py:4028 +#: FlatCAMApp.py:4045 msgid "Failed to open recent files file for writing." msgstr "Failed to open recent files file for writing." -#: FlatCAMApp.py:4039 +#: FlatCAMApp.py:4056 msgid "Failed to open recent projects file for writing." msgstr "Failed to open recent projects file for writing." -#: FlatCAMApp.py:4125 flatcamParsers/ParseExcellon.py:886 -#: flatcamTools/ToolSolderPaste.py:1329 +#: FlatCAMApp.py:4142 flatcamParsers/ParseExcellon.py:886 +#: flatcamTools/ToolSolderPaste.py:1327 msgid "An internal error has ocurred. See shell.\n" msgstr "An internal error has ocurred. See shell.\n" -#: FlatCAMApp.py:4126 +#: FlatCAMApp.py:4143 #, python-brace-format msgid "" "Object ({kind}) failed because: {error} \n" @@ -239,24 +240,24 @@ msgstr "" "Object ({kind}) failed because: {error} \n" "\n" -#: FlatCAMApp.py:4146 +#: FlatCAMApp.py:4163 msgid "Converting units to " msgstr "Converting units to " -#: FlatCAMApp.py:4249 +#: FlatCAMApp.py:4266 msgid "CREATE A NEW FLATCAM TCL SCRIPT" msgstr "CREATE A NEW FLATCAM TCL SCRIPT" -#: FlatCAMApp.py:4250 +#: FlatCAMApp.py:4267 msgid "TCL Tutorial is here" msgstr "TCL Tutorial is here" -#: FlatCAMApp.py:4252 +#: FlatCAMApp.py:4269 msgid "FlatCAM commands list" msgstr "FlatCAM commands list" -#: FlatCAMApp.py:4300 FlatCAMApp.py:4303 FlatCAMApp.py:4306 FlatCAMApp.py:4309 -#: FlatCAMApp.py:4312 FlatCAMApp.py:4315 +#: FlatCAMApp.py:4317 FlatCAMApp.py:4320 FlatCAMApp.py:4323 FlatCAMApp.py:4326 +#: FlatCAMApp.py:4329 FlatCAMApp.py:4332 #, python-brace-format msgid "" "[selected] {kind} created/selected: {name}{name}" -#: FlatCAMApp.py:4330 FlatCAMApp.py:7201 FlatCAMObj.py:262 FlatCAMObj.py:281 -#: FlatCAMObj.py:297 FlatCAMObj.py:377 flatcamTools/ToolCopperThieving.py:1475 +#: FlatCAMApp.py:4347 FlatCAMApp.py:7219 FlatCAMObj.py:263 FlatCAMObj.py:294 +#: FlatCAMObj.py:310 FlatCAMObj.py:390 flatcamTools/ToolCopperThieving.py:1475 #: flatcamTools/ToolFiducials.py:807 flatcamTools/ToolMove.py:220 #: flatcamTools/ToolQRCode.py:726 msgid "Plotting" msgstr "Plotting" -#: FlatCAMApp.py:4391 flatcamGUI/FlatCAMGUI.py:456 +#: FlatCAMApp.py:4408 flatcamGUI/FlatCAMGUI.py:467 msgid "About FlatCAM" msgstr "About FlatCAM" -#: FlatCAMApp.py:4417 +#: FlatCAMApp.py:4434 msgid "2D Computer-Aided Printed Circuit Board Manufacturing" msgstr "2D Computer-Aided Printed Circuit Board Manufacturing" -#: FlatCAMApp.py:4418 +#: FlatCAMApp.py:4435 msgid "Development" msgstr "Development" -#: FlatCAMApp.py:4419 +#: FlatCAMApp.py:4436 msgid "DOWNLOAD" msgstr "DOWNLOAD" -#: FlatCAMApp.py:4420 +#: FlatCAMApp.py:4437 msgid "Issue tracker" msgstr "Issue tracker" -#: FlatCAMApp.py:4424 FlatCAMApp.py:4758 +#: FlatCAMApp.py:4441 FlatCAMApp.py:4776 msgid "Close" msgstr "Close" -#: FlatCAMApp.py:4439 +#: FlatCAMApp.py:4456 msgid "Licensed under the MIT license" msgstr "Licensed under the MIT license" -#: FlatCAMApp.py:4448 +#: FlatCAMApp.py:4465 msgid "" "Permission is hereby granted, free of charge, to any person obtaining a " "copy\n" @@ -348,74 +349,82 @@ msgstr "" "OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n" "THE SOFTWARE." -#: FlatCAMApp.py:4470 +#: FlatCAMApp.py:4487 +#| msgid "" +#| "Some of the icons used are from the following sources:
Icons made " +#| "by Freepik from www.flaticon.com
Icons by Icons8" msgid "" -"Some of the icons used are from the following sources:
Icons made by " -"Freepik from www.flaticon.com
Icons by Icons8" +"Some of the icons used are from the following sources:
Icons by Icons8
Icons by oNline Web Fonts" msgstr "" -"Some of the icons used are from the following sources:
Icons made by " -"Freepik from www.flaticon.com
Icons by Icons8" +"Some of the icons used are from the following sources:
Icons by Icons8
Icons by oNline Web Fonts" -#: FlatCAMApp.py:4501 +#: FlatCAMApp.py:4519 msgid "Splash" msgstr "Splash" -#: FlatCAMApp.py:4507 +#: FlatCAMApp.py:4525 msgid "Programmers" msgstr "Programmers" -#: FlatCAMApp.py:4513 +#: FlatCAMApp.py:4531 msgid "Translators" msgstr "Translators" -#: FlatCAMApp.py:4519 +#: FlatCAMApp.py:4537 msgid "License" msgstr "License" -#: FlatCAMApp.py:4525 +#: FlatCAMApp.py:4543 msgid "Attributions" msgstr "Attributions" -#: FlatCAMApp.py:4548 +#: FlatCAMApp.py:4566 msgid "Programmer" msgstr "Programmer" -#: FlatCAMApp.py:4549 +#: FlatCAMApp.py:4567 msgid "Status" msgstr "Status" -#: FlatCAMApp.py:4550 FlatCAMApp.py:4621 +#: FlatCAMApp.py:4568 FlatCAMApp.py:4639 msgid "E-mail" msgstr "E-mail" -#: FlatCAMApp.py:4558 +#: FlatCAMApp.py:4576 msgid "BETA Maintainer >= 2019" msgstr "BETA Maintainer >= 2019" -#: FlatCAMApp.py:4618 +#: FlatCAMApp.py:4636 msgid "Language" msgstr "Language" -#: FlatCAMApp.py:4619 +#: FlatCAMApp.py:4637 msgid "Translator" msgstr "Translator" -#: FlatCAMApp.py:4620 +#: FlatCAMApp.py:4638 msgid "Corrections" msgstr "Corrections" -#: FlatCAMApp.py:4729 FlatCAMApp.py:4737 FlatCAMApp.py:7862 -#: flatcamGUI/FlatCAMGUI.py:440 +#: FlatCAMApp.py:4747 FlatCAMApp.py:4755 FlatCAMApp.py:7888 +#: flatcamGUI/FlatCAMGUI.py:451 msgid "Bookmarks Manager" msgstr "Bookmarks Manager" -#: FlatCAMApp.py:4749 +#: FlatCAMApp.py:4767 msgid "" "This entry will resolve to another website if:\n" "\n" @@ -435,35 +444,35 @@ msgstr "" "If you can't get any informations about FlatCAM beta\n" "use the YouTube channel link from the Help menu." -#: FlatCAMApp.py:4756 +#: FlatCAMApp.py:4774 msgid "Alternative website" msgstr "Alternative website" -#: FlatCAMApp.py:4887 FlatCAMApp.py:7826 +#: FlatCAMApp.py:4905 FlatCAMApp.py:7852 msgid "Preferences saved." msgstr "Preferences saved." -#: FlatCAMApp.py:4915 +#: FlatCAMApp.py:4933 msgid "Could not load factory defaults file." msgstr "Could not load factory defaults file." -#: FlatCAMApp.py:4925 +#: FlatCAMApp.py:4943 msgid "Failed to parse factory defaults file." msgstr "Failed to parse factory defaults file." -#: FlatCAMApp.py:4941 +#: FlatCAMApp.py:4959 msgid "Failed to write factory defaults to file." msgstr "Failed to write factory defaults to file." -#: FlatCAMApp.py:4945 +#: FlatCAMApp.py:4963 msgid "Factory defaults saved." msgstr "Factory defaults saved." -#: FlatCAMApp.py:4955 flatcamGUI/FlatCAMGUI.py:3678 +#: FlatCAMApp.py:4973 flatcamGUI/FlatCAMGUI.py:3691 msgid "Application is saving the project. Please wait ..." msgstr "Application is saving the project. Please wait ..." -#: FlatCAMApp.py:4960 FlatCAMTranslation.py:166 +#: FlatCAMApp.py:4978 FlatCAMTranslation.py:166 msgid "" "There are files/objects modified in FlatCAM. \n" "Do you want to Save the project?" @@ -471,27 +480,27 @@ msgstr "" "There are files/objects modified in FlatCAM. \n" "Do you want to Save the project?" -#: FlatCAMApp.py:4963 FlatCAMApp.py:8993 FlatCAMTranslation.py:169 +#: FlatCAMApp.py:4981 FlatCAMApp.py:9013 FlatCAMTranslation.py:169 msgid "Save changes" msgstr "Save changes" -#: FlatCAMApp.py:5204 +#: FlatCAMApp.py:5222 msgid "Selected Excellon file extensions registered with FlatCAM." msgstr "Selected Excellon file extensions registered with FlatCAM." -#: FlatCAMApp.py:5226 +#: FlatCAMApp.py:5244 msgid "Selected GCode file extensions registered with FlatCAM." msgstr "Selected GCode file extensions registered with FlatCAM." -#: FlatCAMApp.py:5248 +#: FlatCAMApp.py:5266 msgid "Selected Gerber file extensions registered with FlatCAM." msgstr "Selected Gerber file extensions registered with FlatCAM." -#: FlatCAMApp.py:5436 FlatCAMApp.py:5493 FlatCAMApp.py:5521 +#: FlatCAMApp.py:5454 FlatCAMApp.py:5511 FlatCAMApp.py:5539 msgid "At least two objects are required for join. Objects currently selected" msgstr "At least two objects are required for join. Objects currently selected" -#: FlatCAMApp.py:5445 +#: FlatCAMApp.py:5463 msgid "" "Failed join. The Geometry objects are of different types.\n" "At least one is MultiGeo type and the other is SingleGeo type. A possibility " @@ -507,55 +516,51 @@ msgstr "" "be lost and the result may not be what was expected. \n" "Check the generated GCODE." -#: FlatCAMApp.py:5457 +#: FlatCAMApp.py:5475 msgid "Multigeo. Geometry merging finished" msgstr "Multigeo. Geometry merging finished" -#: FlatCAMApp.py:5466 +#: FlatCAMApp.py:5484 msgid "Geometry merging finished" msgstr "Geometry merging finished" -#: FlatCAMApp.py:5488 +#: FlatCAMApp.py:5506 msgid "Failed. Excellon joining works only on Excellon objects." msgstr "Failed. Excellon joining works only on Excellon objects." -#: FlatCAMApp.py:5498 +#: FlatCAMApp.py:5516 msgid "Excellon merging finished" msgstr "Excellon merging finished" -#: FlatCAMApp.py:5516 +#: FlatCAMApp.py:5534 msgid "Failed. Gerber joining works only on Gerber objects." msgstr "Failed. Gerber joining works only on Gerber objects." -#: FlatCAMApp.py:5526 +#: FlatCAMApp.py:5544 msgid "Gerber merging finished" msgstr "Gerber merging finished" -#: FlatCAMApp.py:5546 FlatCAMApp.py:5581 +#: FlatCAMApp.py:5564 FlatCAMApp.py:5599 msgid "Failed. Select a Geometry Object and try again." msgstr "Failed. Select a Geometry Object and try again." -#: FlatCAMApp.py:5550 FlatCAMApp.py:5586 +#: FlatCAMApp.py:5568 FlatCAMApp.py:5604 msgid "Expected a FlatCAMGeometry, got" msgstr "Expected a FlatCAMGeometry, got" -#: FlatCAMApp.py:5563 +#: FlatCAMApp.py:5581 msgid "A Geometry object was converted to MultiGeo type." msgstr "A Geometry object was converted to MultiGeo type." -#: FlatCAMApp.py:5601 +#: FlatCAMApp.py:5619 msgid "A Geometry object was converted to SingleGeo type." msgstr "A Geometry object was converted to SingleGeo type." -#: FlatCAMApp.py:5797 +#: FlatCAMApp.py:5815 msgid "Toggle Units" msgstr "Toggle Units" -#: FlatCAMApp.py:5799 -#| msgid "" -#| "Changing the units of the project causes all geometrical properties of " -#| "all objects to be scaled accordingly.\n" -#| "Continue?" +#: FlatCAMApp.py:5817 msgid "" "Changing the units of the project\n" "will scale all objects.\n" @@ -567,50 +572,48 @@ msgstr "" "\n" "Do you want to continue?" -#: FlatCAMApp.py:5802 FlatCAMApp.py:7044 FlatCAMApp.py:7120 FlatCAMApp.py:9320 -#: FlatCAMApp.py:9334 FlatCAMApp.py:9688 FlatCAMApp.py:9699 +#: FlatCAMApp.py:5820 FlatCAMApp.py:7062 FlatCAMApp.py:7138 FlatCAMApp.py:9378 +#: FlatCAMApp.py:9392 FlatCAMApp.py:9746 FlatCAMApp.py:9757 msgid "Ok" msgstr "Ok" -#: FlatCAMApp.py:5851 +#: FlatCAMApp.py:5869 msgid "Converted units to" msgstr "Converted units to" -#: FlatCAMApp.py:5865 -#| msgid " Units conversion cancelled." +#: FlatCAMApp.py:5883 msgid "Units conversion cancelled." msgstr "Units conversion cancelled." -#: FlatCAMApp.py:6738 +#: FlatCAMApp.py:6756 msgid "Detachable Tabs" msgstr "Detachable Tabs" -#: FlatCAMApp.py:6957 FlatCAMApp.py:7004 FlatCAMApp.py:7652 FlatCAMApp.py:7715 -#: FlatCAMApp.py:7781 +#: FlatCAMApp.py:6975 FlatCAMApp.py:7022 FlatCAMApp.py:7678 FlatCAMApp.py:7741 +#: FlatCAMApp.py:7807 msgid "Preferences" msgstr "Preferences" -#: FlatCAMApp.py:6960 +#: FlatCAMApp.py:6978 msgid "Preferences applied." msgstr "Preferences applied." -#: FlatCAMApp.py:7009 -#| msgid "Preferences edited but not saved." +#: FlatCAMApp.py:7027 msgid "Preferences closed without saving." msgstr "Preferences closed without saving." -#: FlatCAMApp.py:7032 flatcamTools/ToolNonCopperClear.py:596 -#: flatcamTools/ToolNonCopperClear.py:991 flatcamTools/ToolPaint.py:506 +#: FlatCAMApp.py:7050 flatcamTools/ToolNonCopperClear.py:596 +#: flatcamTools/ToolNonCopperClear.py:992 flatcamTools/ToolPaint.py:507 #: flatcamTools/ToolSolderPaste.py:562 flatcamTools/ToolSolderPaste.py:889 msgid "Please enter a tool diameter with non-zero value, in Float format." msgstr "Please enter a tool diameter with non-zero value, in Float format." -#: FlatCAMApp.py:7037 flatcamTools/ToolNonCopperClear.py:600 -#: flatcamTools/ToolPaint.py:510 flatcamTools/ToolSolderPaste.py:566 +#: FlatCAMApp.py:7055 flatcamTools/ToolNonCopperClear.py:600 +#: flatcamTools/ToolPaint.py:511 flatcamTools/ToolSolderPaste.py:566 msgid "Adding Tool cancelled" msgstr "Adding Tool cancelled" -#: FlatCAMApp.py:7040 +#: FlatCAMApp.py:7058 msgid "" "Adding Tool works only when Advanced is checked.\n" "Go to Preferences -> General - Show Advanced Options." @@ -618,11 +621,11 @@ msgstr "" "Adding Tool works only when Advanced is checked.\n" "Go to Preferences -> General - Show Advanced Options." -#: FlatCAMApp.py:7115 +#: FlatCAMApp.py:7133 msgid "Delete objects" msgstr "Delete objects" -#: FlatCAMApp.py:7118 +#: FlatCAMApp.py:7136 msgid "" "Are you sure you want to permanently delete\n" "the selected objects?" @@ -630,51 +633,51 @@ msgstr "" "Are you sure you want to permanently delete\n" "the selected objects?" -#: FlatCAMApp.py:7149 +#: FlatCAMApp.py:7167 msgid "Object(s) deleted" msgstr "Object(s) deleted" -#: FlatCAMApp.py:7153 +#: FlatCAMApp.py:7171 msgid "Failed. No object(s) selected..." msgstr "Failed. No object(s) selected..." -#: FlatCAMApp.py:7155 +#: FlatCAMApp.py:7173 msgid "Save the work in Editor and try again ..." msgstr "Save the work in Editor and try again ..." -#: FlatCAMApp.py:7185 +#: FlatCAMApp.py:7203 msgid "Object deleted" msgstr "Object deleted" -#: FlatCAMApp.py:7212 +#: FlatCAMApp.py:7230 msgid "Click to set the origin ..." msgstr "Click to set the origin ..." -#: FlatCAMApp.py:7234 +#: FlatCAMApp.py:7252 msgid "Setting Origin..." msgstr "Setting Origin..." -#: FlatCAMApp.py:7246 +#: FlatCAMApp.py:7264 msgid "Origin set" msgstr "Origin set" -#: FlatCAMApp.py:7253 +#: FlatCAMApp.py:7271 msgid "Origin coordinates specified but incomplete." msgstr "Origin coordinates specified but incomplete." -#: FlatCAMApp.py:7311 +#: FlatCAMApp.py:7329 msgid "Jump to ..." msgstr "Jump to ..." -#: FlatCAMApp.py:7312 +#: FlatCAMApp.py:7330 msgid "Enter the coordinates in format X,Y:" msgstr "Enter the coordinates in format X,Y:" -#: FlatCAMApp.py:7320 +#: FlatCAMApp.py:7338 msgid "Wrong coordinates. Enter coordinates in format: X,Y" msgstr "Wrong coordinates. Enter coordinates in format: X,Y" -#: FlatCAMApp.py:7380 flatcamEditors/FlatCAMExcEditor.py:3518 +#: FlatCAMApp.py:7406 flatcamEditors/FlatCAMExcEditor.py:3518 #: flatcamEditors/FlatCAMExcEditor.py:3526 #: flatcamEditors/FlatCAMGeoEditor.py:3887 #: flatcamEditors/FlatCAMGeoEditor.py:3902 @@ -683,48 +686,48 @@ msgstr "Wrong coordinates. Enter coordinates in format: X,Y" #: flatcamEditors/FlatCAMGrbEditor.py:1446 #: flatcamEditors/FlatCAMGrbEditor.py:1704 #: flatcamEditors/FlatCAMGrbEditor.py:4368 -#: flatcamEditors/FlatCAMGrbEditor.py:4383 flatcamGUI/FlatCAMGUI.py:2858 -#: flatcamGUI/FlatCAMGUI.py:2870 +#: flatcamEditors/FlatCAMGrbEditor.py:4383 flatcamGUI/FlatCAMGUI.py:2871 +#: flatcamGUI/FlatCAMGUI.py:2883 msgid "Done." msgstr "Done." -#: FlatCAMApp.py:7532 FlatCAMApp.py:7603 +#: FlatCAMApp.py:7558 FlatCAMApp.py:7629 msgid "No object is selected. Select an object and try again." msgstr "No object is selected. Select an object and try again." -#: FlatCAMApp.py:7623 +#: FlatCAMApp.py:7649 msgid "" "Aborting. The current task will be gracefully closed as soon as possible..." msgstr "" "Aborting. The current task will be gracefully closed as soon as possible..." -#: FlatCAMApp.py:7629 +#: FlatCAMApp.py:7655 msgid "The current task was gracefully closed on user request..." msgstr "The current task was gracefully closed on user request..." -#: FlatCAMApp.py:7712 +#: FlatCAMApp.py:7738 msgid "Preferences edited but not saved." msgstr "Preferences edited but not saved." -#: FlatCAMApp.py:7726 FlatCAMApp.py:7738 FlatCAMApp.py:7755 FlatCAMApp.py:7772 -#: FlatCAMApp.py:7832 FlatCAMCommon.py:1133 FlatCAMCommon.py:1307 -#: FlatCAMObj.py:4107 +#: FlatCAMApp.py:7752 FlatCAMApp.py:7764 FlatCAMApp.py:7781 FlatCAMApp.py:7798 +#: FlatCAMApp.py:7858 FlatCAMCommon.py:1161 FlatCAMCommon.py:1336 +#: FlatCAMObj.py:4213 msgid "Tools Database" msgstr "Tools Database" -#: FlatCAMApp.py:7752 +#: FlatCAMApp.py:7778 msgid "Tools in Tools Database edited but not saved." msgstr "Tools in Tools Database edited but not saved." -#: FlatCAMApp.py:7776 +#: FlatCAMApp.py:7802 msgid "Tool from DB added in Tool Table." msgstr "Tool from DB added in Tool Table." -#: FlatCAMApp.py:7778 +#: FlatCAMApp.py:7804 msgid "Adding tool from DB is not allowed for this object." msgstr "Adding tool from DB is not allowed for this object." -#: FlatCAMApp.py:7812 +#: FlatCAMApp.py:7838 msgid "" "One or more values are changed.\n" "Do you want to save the Preferences?" @@ -732,11 +735,11 @@ msgstr "" "One or more values are changed.\n" "Do you want to save the Preferences?" -#: FlatCAMApp.py:7814 flatcamGUI/FlatCAMGUI.py:216 +#: FlatCAMApp.py:7840 flatcamGUI/FlatCAMGUI.py:220 msgid "Save Preferences" msgstr "Save Preferences" -#: FlatCAMApp.py:7838 +#: FlatCAMApp.py:7864 msgid "" "One or more Tools are edited.\n" "Do you want to update the Tools Database?" @@ -744,95 +747,95 @@ msgstr "" "One or more Tools are edited.\n" "Do you want to update the Tools Database?" -#: FlatCAMApp.py:7840 +#: FlatCAMApp.py:7866 msgid "Save Tools Database" msgstr "Save Tools Database" -#: FlatCAMApp.py:7859 FlatCAMApp.py:9927 FlatCAMObj.py:6258 +#: FlatCAMApp.py:7885 FlatCAMApp.py:9985 FlatCAMObj.py:6456 msgid "Code Editor" msgstr "Code Editor" -#: FlatCAMApp.py:7877 +#: FlatCAMApp.py:7903 msgid "No object selected to Flip on Y axis." msgstr "No object selected to Flip on Y axis." -#: FlatCAMApp.py:7903 +#: FlatCAMApp.py:7929 msgid "Flip on Y axis done." msgstr "Flip on Y axis done." -#: FlatCAMApp.py:7905 FlatCAMApp.py:7947 +#: FlatCAMApp.py:7931 FlatCAMApp.py:7973 #: flatcamEditors/FlatCAMGrbEditor.py:5773 msgid "Flip action was not executed." msgstr "Flip action was not executed." -#: FlatCAMApp.py:7919 +#: FlatCAMApp.py:7945 msgid "No object selected to Flip on X axis." msgstr "No object selected to Flip on X axis." -#: FlatCAMApp.py:7945 +#: FlatCAMApp.py:7971 msgid "Flip on X axis done." msgstr "Flip on X axis done." -#: FlatCAMApp.py:7961 +#: FlatCAMApp.py:7987 msgid "No object selected to Rotate." msgstr "No object selected to Rotate." -#: FlatCAMApp.py:7964 FlatCAMApp.py:8011 FlatCAMApp.py:8044 +#: FlatCAMApp.py:7990 FlatCAMApp.py:8037 FlatCAMApp.py:8070 msgid "Transform" msgstr "Transform" -#: FlatCAMApp.py:7964 FlatCAMApp.py:8011 FlatCAMApp.py:8044 +#: FlatCAMApp.py:7990 FlatCAMApp.py:8037 FlatCAMApp.py:8070 msgid "Enter the Angle value:" msgstr "Enter the Angle value:" -#: FlatCAMApp.py:7995 +#: FlatCAMApp.py:8021 msgid "Rotation done." msgstr "Rotation done." -#: FlatCAMApp.py:7997 +#: FlatCAMApp.py:8023 msgid "Rotation movement was not executed." msgstr "Rotation movement was not executed." -#: FlatCAMApp.py:8009 +#: FlatCAMApp.py:8035 msgid "No object selected to Skew/Shear on X axis." msgstr "No object selected to Skew/Shear on X axis." -#: FlatCAMApp.py:8031 +#: FlatCAMApp.py:8057 msgid "Skew on X axis done." msgstr "Skew on X axis done." -#: FlatCAMApp.py:8042 +#: FlatCAMApp.py:8068 msgid "No object selected to Skew/Shear on Y axis." msgstr "No object selected to Skew/Shear on Y axis." -#: FlatCAMApp.py:8064 +#: FlatCAMApp.py:8090 msgid "Skew on Y axis done." msgstr "Skew on Y axis done." -#: FlatCAMApp.py:8212 FlatCAMApp.py:8259 flatcamGUI/FlatCAMGUI.py:418 -#: flatcamGUI/FlatCAMGUI.py:1453 +#: FlatCAMApp.py:8238 FlatCAMApp.py:8285 flatcamGUI/FlatCAMGUI.py:429 +#: flatcamGUI/FlatCAMGUI.py:1465 msgid "Select All" msgstr "Select All" -#: FlatCAMApp.py:8216 FlatCAMApp.py:8263 flatcamGUI/FlatCAMGUI.py:421 +#: FlatCAMApp.py:8242 FlatCAMApp.py:8289 flatcamGUI/FlatCAMGUI.py:432 msgid "Deselect All" msgstr "Deselect All" -#: FlatCAMApp.py:8279 +#: FlatCAMApp.py:8305 msgid "All objects are selected." msgstr "All objects are selected." -#: FlatCAMApp.py:8289 +#: FlatCAMApp.py:8315 msgid "Objects selection is cleared." msgstr "Objects selection is cleared." -#: FlatCAMApp.py:8305 flatcamGUI/FlatCAMGUI.py:1446 +#: FlatCAMApp.py:8331 flatcamGUI/FlatCAMGUI.py:1458 msgid "Grid On/Off" msgstr "Grid On/Off" -#: FlatCAMApp.py:8318 flatcamEditors/FlatCAMGeoEditor.py:942 +#: FlatCAMApp.py:8344 flatcamEditors/FlatCAMGeoEditor.py:942 #: flatcamEditors/FlatCAMGrbEditor.py:2503 -#: flatcamEditors/FlatCAMGrbEditor.py:5346 flatcamGUI/ObjectUI.py:1228 +#: flatcamEditors/FlatCAMGrbEditor.py:5346 flatcamGUI/ObjectUI.py:1265 #: flatcamTools/ToolDblSided.py:185 flatcamTools/ToolDblSided.py:238 #: flatcamTools/ToolNonCopperClear.py:286 flatcamTools/ToolPaint.py:188 #: flatcamTools/ToolSolderPaste.py:121 flatcamTools/ToolSolderPaste.py:591 @@ -840,77 +843,77 @@ msgstr "Grid On/Off" msgid "Add" msgstr "Add" -#: FlatCAMApp.py:8319 FlatCAMObj.py:3798 +#: FlatCAMApp.py:8345 FlatCAMObj.py:3900 #: flatcamEditors/FlatCAMGrbEditor.py:2508 -#: flatcamEditors/FlatCAMGrbEditor.py:2656 flatcamGUI/FlatCAMGUI.py:600 -#: flatcamGUI/FlatCAMGUI.py:840 flatcamGUI/FlatCAMGUI.py:1859 -#: flatcamGUI/FlatCAMGUI.py:1955 flatcamGUI/FlatCAMGUI.py:2279 -#: flatcamGUI/ObjectUI.py:1254 flatcamTools/ToolNonCopperClear.py:298 +#: flatcamEditors/FlatCAMGrbEditor.py:2656 flatcamGUI/FlatCAMGUI.py:611 +#: flatcamGUI/FlatCAMGUI.py:852 flatcamGUI/FlatCAMGUI.py:1871 +#: flatcamGUI/FlatCAMGUI.py:1967 flatcamGUI/FlatCAMGUI.py:2292 +#: flatcamGUI/ObjectUI.py:1291 flatcamTools/ToolNonCopperClear.py:298 #: flatcamTools/ToolPaint.py:200 flatcamTools/ToolSolderPaste.py:127 #: flatcamTools/ToolSolderPaste.py:593 msgid "Delete" msgstr "Delete" -#: FlatCAMApp.py:8332 +#: FlatCAMApp.py:8358 msgid "New Grid ..." msgstr "New Grid ..." -#: FlatCAMApp.py:8333 +#: FlatCAMApp.py:8359 msgid "Enter a Grid Value:" msgstr "Enter a Grid Value:" -#: FlatCAMApp.py:8341 FlatCAMApp.py:8368 +#: FlatCAMApp.py:8367 FlatCAMApp.py:8394 msgid "Please enter a grid value with non-zero value, in Float format." msgstr "Please enter a grid value with non-zero value, in Float format." -#: FlatCAMApp.py:8347 +#: FlatCAMApp.py:8373 msgid "New Grid added" msgstr "New Grid added" -#: FlatCAMApp.py:8350 +#: FlatCAMApp.py:8376 msgid "Grid already exists" msgstr "Grid already exists" -#: FlatCAMApp.py:8353 +#: FlatCAMApp.py:8379 msgid "Adding New Grid cancelled" msgstr "Adding New Grid cancelled" -#: FlatCAMApp.py:8375 +#: FlatCAMApp.py:8401 msgid " Grid Value does not exist" msgstr " Grid Value does not exist" -#: FlatCAMApp.py:8378 +#: FlatCAMApp.py:8404 msgid "Grid Value deleted" msgstr "Grid Value deleted" -#: FlatCAMApp.py:8381 +#: FlatCAMApp.py:8407 msgid "Delete Grid value cancelled" msgstr "Delete Grid value cancelled" -#: FlatCAMApp.py:8387 +#: FlatCAMApp.py:8413 msgid "Key Shortcut List" msgstr "Key Shortcut List" -#: FlatCAMApp.py:8421 +#: FlatCAMApp.py:8447 msgid " No object selected to copy it's name" msgstr " No object selected to copy it's name" -#: FlatCAMApp.py:8425 +#: FlatCAMApp.py:8451 msgid "Name copied on clipboard ..." msgstr "Name copied on clipboard ..." -#: FlatCAMApp.py:8628 flatcamEditors/FlatCAMGrbEditor.py:4300 +#: FlatCAMApp.py:8648 flatcamEditors/FlatCAMGrbEditor.py:4300 msgid "Coordinates copied to clipboard." msgstr "Coordinates copied to clipboard." -#: FlatCAMApp.py:8839 FlatCAMApp.py:8842 FlatCAMApp.py:8845 FlatCAMApp.py:8848 +#: FlatCAMApp.py:8859 FlatCAMApp.py:8862 FlatCAMApp.py:8865 FlatCAMApp.py:8868 #: ObjectCollection.py:788 ObjectCollection.py:791 ObjectCollection.py:794 #: ObjectCollection.py:797 ObjectCollection.py:800 ObjectCollection.py:803 #, python-brace-format msgid "[selected]{name} selected" msgstr "[selected]{name} selected" -#: FlatCAMApp.py:8990 +#: FlatCAMApp.py:9010 msgid "" "There are files/objects opened in FlatCAM.\n" "Creating a New project will delete them.\n" @@ -920,329 +923,364 @@ msgstr "" "Creating a New project will delete them.\n" "Do you want to Save the project?" -#: FlatCAMApp.py:9012 +#: FlatCAMApp.py:9032 msgid "New Project created" msgstr "New Project created" -#: FlatCAMApp.py:9147 FlatCAMApp.py:9151 flatcamGUI/FlatCAMGUI.py:685 -#: flatcamGUI/FlatCAMGUI.py:2137 +#: FlatCAMApp.py:9167 FlatCAMApp.py:9171 flatcamGUI/FlatCAMGUI.py:696 +#: flatcamGUI/FlatCAMGUI.py:2149 msgid "Open Gerber" msgstr "Open Gerber" -#: FlatCAMApp.py:9158 +#: FlatCAMApp.py:9178 msgid "Opening Gerber file." msgstr "Opening Gerber file." -#: FlatCAMApp.py:9164 +#: FlatCAMApp.py:9184 msgid "Open Gerber cancelled." msgstr "Open Gerber cancelled." -#: FlatCAMApp.py:9185 FlatCAMApp.py:9189 flatcamGUI/FlatCAMGUI.py:686 -#: flatcamGUI/FlatCAMGUI.py:2138 +#: FlatCAMApp.py:9205 FlatCAMApp.py:9209 flatcamGUI/FlatCAMGUI.py:697 +#: flatcamGUI/FlatCAMGUI.py:2150 msgid "Open Excellon" msgstr "Open Excellon" -#: FlatCAMApp.py:9195 +#: FlatCAMApp.py:9215 msgid "Opening Excellon file." msgstr "Opening Excellon file." -#: FlatCAMApp.py:9201 +#: FlatCAMApp.py:9221 msgid " Open Excellon cancelled." msgstr " Open Excellon cancelled." -#: FlatCAMApp.py:9225 FlatCAMApp.py:9229 +#: FlatCAMApp.py:9245 FlatCAMApp.py:9249 msgid "Open G-Code" msgstr "Open G-Code" -#: FlatCAMApp.py:9236 +#: FlatCAMApp.py:9256 msgid "Opening G-Code file." msgstr "Opening G-Code file." -#: FlatCAMApp.py:9242 +#: FlatCAMApp.py:9262 msgid "Open G-Code cancelled." msgstr "Open G-Code cancelled." -#: FlatCAMApp.py:9260 FlatCAMApp.py:9263 flatcamGUI/FlatCAMGUI.py:1455 +#: FlatCAMApp.py:9280 FlatCAMApp.py:9283 flatcamGUI/FlatCAMGUI.py:1467 msgid "Open Project" msgstr "Open Project" -#: FlatCAMApp.py:9272 +#: FlatCAMApp.py:9292 msgid "Open Project cancelled." msgstr "Open Project cancelled." -#: FlatCAMApp.py:9292 FlatCAMApp.py:9295 +#: FlatCAMApp.py:9316 FlatCAMApp.py:9320 +#| msgid "Open PDF" +msgid "Open HPGL2" +msgstr "Open HPGL2" + +#: FlatCAMApp.py:9327 +#| msgid "Opening Gerber file." +msgid "Opening HPGL2 file." +msgstr "Opening HPGL2 file." + +#: FlatCAMApp.py:9332 +#| msgid "Open SVG cancelled." +msgid "Open HPGL2 file cancelled." +msgstr "Open HPGL2 file cancelled." + +#: FlatCAMApp.py:9350 FlatCAMApp.py:9353 msgid "Open Configuration File" msgstr "Open Configuration File" -#: FlatCAMApp.py:9300 +#: FlatCAMApp.py:9358 msgid "Open Config cancelled." msgstr "Open Config cancelled." -#: FlatCAMApp.py:9316 FlatCAMApp.py:9684 +#: FlatCAMApp.py:9374 FlatCAMApp.py:9742 FlatCAMApp.py:10214 msgid "No object selected." msgstr "No object selected." -#: FlatCAMApp.py:9317 FlatCAMApp.py:9685 +#: FlatCAMApp.py:9375 FlatCAMApp.py:9743 msgid "Please Select a Geometry object to export" msgstr "Please Select a Geometry object to export" -#: FlatCAMApp.py:9331 +#: FlatCAMApp.py:9389 msgid "Only Geometry, Gerber and CNCJob objects can be used." msgstr "Only Geometry, Gerber and CNCJob objects can be used." -#: FlatCAMApp.py:9344 FlatCAMApp.py:9348 flatcamTools/ToolQRCode.py:827 +#: FlatCAMApp.py:9402 FlatCAMApp.py:9406 flatcamTools/ToolQRCode.py:827 #: flatcamTools/ToolQRCode.py:831 msgid "Export SVG" msgstr "Export SVG" -#: FlatCAMApp.py:9354 flatcamTools/ToolQRCode.py:836 +#: FlatCAMApp.py:9412 flatcamTools/ToolQRCode.py:836 msgid " Export SVG cancelled." msgstr " Export SVG cancelled." -#: FlatCAMApp.py:9375 +#: FlatCAMApp.py:9433 msgid "Data must be a 3D array with last dimension 3 or 4" msgstr "Data must be a 3D array with last dimension 3 or 4" -#: FlatCAMApp.py:9381 FlatCAMApp.py:9385 +#: FlatCAMApp.py:9439 FlatCAMApp.py:9443 msgid "Export PNG Image" msgstr "Export PNG Image" -#: FlatCAMApp.py:9390 +#: FlatCAMApp.py:9448 msgid "Export PNG cancelled." msgstr "Export PNG cancelled." -#: FlatCAMApp.py:9414 +#: FlatCAMApp.py:9472 msgid "No object selected. Please select an Gerber object to export." msgstr "No object selected. Please select an Gerber object to export." -#: FlatCAMApp.py:9420 FlatCAMApp.py:9643 +#: FlatCAMApp.py:9478 FlatCAMApp.py:9701 msgid "Failed. Only Gerber objects can be saved as Gerber files..." msgstr "Failed. Only Gerber objects can be saved as Gerber files..." -#: FlatCAMApp.py:9432 +#: FlatCAMApp.py:9490 msgid "Save Gerber source file" msgstr "Save Gerber source file" -#: FlatCAMApp.py:9438 +#: FlatCAMApp.py:9496 msgid "Save Gerber source file cancelled." msgstr "Save Gerber source file cancelled." -#: FlatCAMApp.py:9458 +#: FlatCAMApp.py:9516 msgid "No object selected. Please select an Script object to export." msgstr "No object selected. Please select an Script object to export." -#: FlatCAMApp.py:9464 +#: FlatCAMApp.py:9522 msgid "Failed. Only Script objects can be saved as TCL Script files..." msgstr "Failed. Only Script objects can be saved as TCL Script files..." -#: FlatCAMApp.py:9476 +#: FlatCAMApp.py:9534 msgid "Save Script source file" msgstr "Save Script source file" -#: FlatCAMApp.py:9482 +#: FlatCAMApp.py:9540 msgid "Save Script source file cancelled." msgstr "Save Script source file cancelled." -#: FlatCAMApp.py:9502 +#: FlatCAMApp.py:9560 msgid "No object selected. Please select an Document object to export." msgstr "No object selected. Please select an Document object to export." -#: FlatCAMApp.py:9508 +#: FlatCAMApp.py:9566 msgid "Failed. Only Document objects can be saved as Document files..." msgstr "Failed. Only Document objects can be saved as Document files..." -#: FlatCAMApp.py:9520 +#: FlatCAMApp.py:9578 msgid "Save Document source file" msgstr "Save Document source file" -#: FlatCAMApp.py:9526 +#: FlatCAMApp.py:9584 msgid "Save Document source file cancelled." msgstr "Save Document source file cancelled." -#: FlatCAMApp.py:9546 +#: FlatCAMApp.py:9604 msgid "No object selected. Please select an Excellon object to export." msgstr "No object selected. Please select an Excellon object to export." -#: FlatCAMApp.py:9552 FlatCAMApp.py:9596 FlatCAMApp.py:10288 +#: FlatCAMApp.py:9610 FlatCAMApp.py:9654 FlatCAMApp.py:10389 msgid "Failed. Only Excellon objects can be saved as Excellon files..." msgstr "Failed. Only Excellon objects can be saved as Excellon files..." -#: FlatCAMApp.py:9560 FlatCAMApp.py:9564 +#: FlatCAMApp.py:9618 FlatCAMApp.py:9622 msgid "Save Excellon source file" msgstr "Save Excellon source file" -#: FlatCAMApp.py:9570 +#: FlatCAMApp.py:9628 msgid "Saving Excellon source file cancelled." msgstr "Saving Excellon source file cancelled." -#: FlatCAMApp.py:9590 +#: FlatCAMApp.py:9648 msgid "No object selected. Please Select an Excellon object to export." msgstr "No object selected. Please Select an Excellon object to export." -#: FlatCAMApp.py:9604 FlatCAMApp.py:9608 +#: FlatCAMApp.py:9662 FlatCAMApp.py:9666 msgid "Export Excellon" msgstr "Export Excellon" -#: FlatCAMApp.py:9614 +#: FlatCAMApp.py:9672 msgid "Export Excellon cancelled." msgstr "Export Excellon cancelled." -#: FlatCAMApp.py:9637 +#: FlatCAMApp.py:9695 msgid "No object selected. Please Select an Gerber object to export." msgstr "No object selected. Please Select an Gerber object to export." -#: FlatCAMApp.py:9651 FlatCAMApp.py:9655 +#: FlatCAMApp.py:9709 FlatCAMApp.py:9713 msgid "Export Gerber" msgstr "Export Gerber" -#: FlatCAMApp.py:9661 +#: FlatCAMApp.py:9719 msgid "Export Gerber cancelled." msgstr "Export Gerber cancelled." -#: FlatCAMApp.py:9696 +#: FlatCAMApp.py:9754 msgid "Only Geometry objects can be used." msgstr "Only Geometry objects can be used." -#: FlatCAMApp.py:9710 FlatCAMApp.py:9714 +#: FlatCAMApp.py:9768 FlatCAMApp.py:9772 msgid "Export DXF" msgstr "Export DXF" -#: FlatCAMApp.py:9721 +#: FlatCAMApp.py:9779 msgid "Export DXF cancelled." msgstr "Export DXF cancelled." -#: FlatCAMApp.py:9741 FlatCAMApp.py:9744 +#: FlatCAMApp.py:9799 FlatCAMApp.py:9802 msgid "Import SVG" msgstr "Import SVG" -#: FlatCAMApp.py:9754 +#: FlatCAMApp.py:9812 msgid "Open SVG cancelled." msgstr "Open SVG cancelled." -#: FlatCAMApp.py:9773 FlatCAMApp.py:9777 +#: FlatCAMApp.py:9831 FlatCAMApp.py:9835 msgid "Import DXF" msgstr "Import DXF" -#: FlatCAMApp.py:9787 +#: FlatCAMApp.py:9845 msgid "Open DXF cancelled." msgstr "Open DXF cancelled." -#: FlatCAMApp.py:9829 +#: FlatCAMApp.py:9887 msgid "Viewing the source code of the selected object." msgstr "Viewing the source code of the selected object." -#: FlatCAMApp.py:9830 FlatCAMObj.py:6244 FlatCAMObj.py:6835 +#: FlatCAMApp.py:9888 FlatCAMObj.py:6442 FlatCAMObj.py:7043 msgid "Loading..." msgstr "Loading..." -#: FlatCAMApp.py:9836 FlatCAMApp.py:9840 +#: FlatCAMApp.py:9894 FlatCAMApp.py:9898 msgid "Select an Gerber or Excellon file to view it's source file." msgstr "Select an Gerber or Excellon file to view it's source file." -#: FlatCAMApp.py:9854 +#: FlatCAMApp.py:9912 msgid "Source Editor" msgstr "Source Editor" -#: FlatCAMApp.py:9894 FlatCAMApp.py:9901 +#: FlatCAMApp.py:9952 FlatCAMApp.py:9959 msgid "There is no selected object for which to see it's source file code." msgstr "There is no selected object for which to see it's source file code." -#: FlatCAMApp.py:9913 +#: FlatCAMApp.py:9971 msgid "Failed to load the source code for the selected object" msgstr "Failed to load the source code for the selected object" -#: FlatCAMApp.py:9955 +#: FlatCAMApp.py:10013 msgid "New TCL script file created in Code Editor." msgstr "New TCL script file created in Code Editor." -#: FlatCAMApp.py:9993 FlatCAMApp.py:9995 +#: FlatCAMApp.py:10051 FlatCAMApp.py:10053 msgid "Open TCL script" msgstr "Open TCL script" -#: FlatCAMApp.py:9999 +#: FlatCAMApp.py:10057 msgid "Open TCL script cancelled." msgstr "Open TCL script cancelled." -#: FlatCAMApp.py:10023 +#: FlatCAMApp.py:10081 msgid "Executing FlatCAMScript file." msgstr "Executing FlatCAMScript file." -#: FlatCAMApp.py:10030 FlatCAMApp.py:10033 +#: FlatCAMApp.py:10088 FlatCAMApp.py:10091 msgid "Run TCL script" msgstr "Run TCL script" -#: FlatCAMApp.py:10043 +#: FlatCAMApp.py:10101 msgid "Run TCL script cancelled." msgstr "Run TCL script cancelled." -#: FlatCAMApp.py:10059 +#: FlatCAMApp.py:10117 msgid "TCL script file opened in Code Editor and executed." msgstr "TCL script file opened in Code Editor and executed." -#: FlatCAMApp.py:10110 FlatCAMApp.py:10114 +#: FlatCAMApp.py:10168 FlatCAMApp.py:10172 msgid "Save Project As ..." msgstr "Save Project As ..." -#: FlatCAMApp.py:10111 +#: FlatCAMApp.py:10169 #, python-brace-format msgid "{l_save}/Project_{date}" msgstr "{l_save}/Project_{date}" -#: FlatCAMApp.py:10120 +#: FlatCAMApp.py:10177 msgid "Save Project cancelled." msgstr "Save Project cancelled." -#: FlatCAMApp.py:10168 +#: FlatCAMApp.py:10184 +msgid "The object is used by another application." +msgstr "The object is used by another application." + +#: FlatCAMApp.py:10220 FlatCAMApp.py:10226 flatcamGUI/FlatCAMGUI.py:261 +#| msgid "Save Project As ..." +msgid "Save Object as PDF ..." +msgstr "Save Object as PDF ..." + +#: FlatCAMApp.py:10221 +#, python-brace-format +#| msgid "{l_save}/Project_{date}" +msgid "{l_save}/{obj_name}_{date}" +msgstr "{l_save}/{obj_name}_{date}" + +#: FlatCAMApp.py:10231 +#| msgid "Save Project cancelled." +msgid "Save Object PDF cancelled." +msgstr "Save Object PDF cancelled." + +#: FlatCAMApp.py:10269 msgid "Exporting SVG" msgstr "Exporting SVG" -#: FlatCAMApp.py:10212 +#: FlatCAMApp.py:10313 msgid "SVG file exported to" msgstr "SVG file exported to" -#: FlatCAMApp.py:10237 +#: FlatCAMApp.py:10338 msgid "" "Save cancelled because source file is empty. Try to export the Gerber file." msgstr "" "Save cancelled because source file is empty. Try to export the Gerber file." -#: FlatCAMApp.py:10383 +#: FlatCAMApp.py:10484 msgid "Excellon file exported to" msgstr "Excellon file exported to" -#: FlatCAMApp.py:10392 +#: FlatCAMApp.py:10493 msgid "Exporting Excellon" msgstr "Exporting Excellon" -#: FlatCAMApp.py:10398 FlatCAMApp.py:10406 +#: FlatCAMApp.py:10499 FlatCAMApp.py:10507 msgid "Could not export Excellon file." msgstr "Could not export Excellon file." -#: FlatCAMApp.py:10522 +#: FlatCAMApp.py:10623 msgid "Gerber file exported to" msgstr "Gerber file exported to" -#: FlatCAMApp.py:10530 +#: FlatCAMApp.py:10631 msgid "Exporting Gerber" msgstr "Exporting Gerber" -#: FlatCAMApp.py:10536 FlatCAMApp.py:10544 +#: FlatCAMApp.py:10637 FlatCAMApp.py:10645 msgid "Could not export Gerber file." msgstr "Could not export Gerber file." -#: FlatCAMApp.py:10578 +#: FlatCAMApp.py:10679 msgid "DXF file exported to" msgstr "DXF file exported to" -#: FlatCAMApp.py:10584 +#: FlatCAMApp.py:10685 msgid "Exporting DXF" msgstr "Exporting DXF" -#: FlatCAMApp.py:10589 FlatCAMApp.py:10596 +#: FlatCAMApp.py:10690 FlatCAMApp.py:10697 msgid "Could not export DXF file." msgstr "Could not export DXF file." -#: FlatCAMApp.py:10619 FlatCAMApp.py:10662 flatcamTools/ToolImage.py:278 +#: FlatCAMApp.py:10720 FlatCAMApp.py:10763 flatcamTools/ToolImage.py:278 msgid "" "Not supported type is picked as parameter. Only Geometry and Gerber are " "supported" @@ -1250,83 +1288,85 @@ msgstr "" "Not supported type is picked as parameter. Only Geometry and Gerber are " "supported" -#: FlatCAMApp.py:10629 +#: FlatCAMApp.py:10730 msgid "Importing SVG" msgstr "Importing SVG" -#: FlatCAMApp.py:10640 FlatCAMApp.py:10682 FlatCAMApp.py:10741 -#: FlatCAMApp.py:10808 FlatCAMApp.py:10871 FlatCAMApp.py:10909 -#: flatcamTools/ToolImage.py:298 flatcamTools/ToolPDF.py:225 +#: FlatCAMApp.py:10741 FlatCAMApp.py:10783 FlatCAMApp.py:10842 +#: FlatCAMApp.py:10909 FlatCAMApp.py:10972 FlatCAMApp.py:11039 +#: FlatCAMApp.py:11077 flatcamTools/ToolImage.py:298 +#: flatcamTools/ToolPDF.py:225 msgid "Opened" msgstr "Opened" -#: FlatCAMApp.py:10671 +#: FlatCAMApp.py:10772 msgid "Importing DXF" msgstr "Importing DXF" -#: FlatCAMApp.py:10707 +#: FlatCAMApp.py:10808 FlatCAMApp.py:10998 msgid "Failed to open file" msgstr "Failed to open file" -#: FlatCAMApp.py:10710 +#: FlatCAMApp.py:10811 FlatCAMApp.py:11001 msgid "Failed to parse file" msgstr "Failed to parse file" -#: FlatCAMApp.py:10715 FlatCAMApp.py:10776 FlatCAMObj.py:4898 -#: flatcamEditors/FlatCAMGrbEditor.py:4110 flatcamTools/ToolPcbWizard.py:437 +#: FlatCAMApp.py:10816 FlatCAMApp.py:10877 FlatCAMApp.py:11006 +#: FlatCAMObj.py:5004 flatcamEditors/FlatCAMGrbEditor.py:4110 +#: flatcamTools/ToolPcbWizard.py:437 msgid "An internal error has occurred. See shell.\n" msgstr "An internal error has occurred. See shell.\n" -#: FlatCAMApp.py:10722 +#: FlatCAMApp.py:10823 msgid "Object is not Gerber file or empty. Aborting object creation." msgstr "Object is not Gerber file or empty. Aborting object creation." -#: FlatCAMApp.py:10727 +#: FlatCAMApp.py:10828 msgid "Opening Gerber" msgstr "Opening Gerber" -#: FlatCAMApp.py:10734 +#: FlatCAMApp.py:10835 msgid " Open Gerber failed. Probable not a Gerber file." msgstr " Open Gerber failed. Probable not a Gerber file." -#: FlatCAMApp.py:10766 flatcamTools/ToolPcbWizard.py:427 +#: FlatCAMApp.py:10867 flatcamTools/ToolPcbWizard.py:427 msgid "This is not Excellon file." msgstr "This is not Excellon file." -#: FlatCAMApp.py:10770 +#: FlatCAMApp.py:10871 msgid "Cannot open file" msgstr "Cannot open file" -#: FlatCAMApp.py:10790 flatcamTools/ToolPDF.py:275 +#: FlatCAMApp.py:10891 flatcamTools/ToolPDF.py:275 #: flatcamTools/ToolPcbWizard.py:451 msgid "No geometry found in file" msgstr "No geometry found in file" -#: FlatCAMApp.py:10793 +#: FlatCAMApp.py:10894 msgid "Opening Excellon." msgstr "Opening Excellon." -#: FlatCAMApp.py:10800 +#: FlatCAMApp.py:10901 msgid "Open Excellon file failed. Probable not an Excellon file." msgstr "Open Excellon file failed. Probable not an Excellon file." -#: FlatCAMApp.py:10831 +#: FlatCAMApp.py:10932 msgid "Reading GCode file" msgstr "Reading GCode file" -#: FlatCAMApp.py:10838 +#: FlatCAMApp.py:10939 msgid "Failed to open" msgstr "Failed to open" -#: FlatCAMApp.py:10846 +#: FlatCAMApp.py:10947 msgid "This is not GCODE" msgstr "This is not GCODE" -#: FlatCAMApp.py:10851 +#: FlatCAMApp.py:10952 msgid "Opening G-Code." msgstr "Opening G-Code." -#: FlatCAMApp.py:10860 +#: FlatCAMApp.py:10961 msgid "" "Failed to create CNCJob Object. Probable not a GCode file. Try to load it " "from File menu.\n" @@ -1338,55 +1378,70 @@ msgstr "" " Attempting to create a FlatCAM CNCJob Object from G-Code file failed during " "processing" -#: FlatCAMApp.py:10885 +#: FlatCAMApp.py:11020 +#| msgid "Object is not Gerber file or empty. Aborting object creation." +msgid "Object is not HPGL2 file or empty. Aborting object creation." +msgstr "Object is not HPGL2 file or empty. Aborting object creation." + +#: FlatCAMApp.py:11025 +#| msgid "Opening Gerber" +msgid "Opening HPGL2" +msgstr "Opening HPGL2" + +#: FlatCAMApp.py:11032 +#| msgid " Open Gerber failed. Probable not a Gerber file." +msgid " Open HPGL2 failed. Probable not a HPGL2 file." +msgstr " Open HPGL2 failed. Probable not a HPGL2 file." + +#: FlatCAMApp.py:11053 msgid "Opening TCL Script..." msgstr "Opening TCL Script..." -#: FlatCAMApp.py:10893 +#: FlatCAMApp.py:11061 msgid "TCL script file opened in Code Editor." msgstr "TCL script file opened in Code Editor." -#: FlatCAMApp.py:10896 +#: FlatCAMApp.py:11064 msgid "Failed to open TCL Script." msgstr "Failed to open TCL Script." -#: FlatCAMApp.py:10924 +#: FlatCAMApp.py:11092 msgid "Opening FlatCAM Config file." msgstr "Opening FlatCAM Config file." -#: FlatCAMApp.py:10952 +#: FlatCAMApp.py:11120 msgid "Failed to open config file" msgstr "Failed to open config file" -#: FlatCAMApp.py:10978 +#: FlatCAMApp.py:11146 msgid "Loading Project ... Please Wait ..." msgstr "Loading Project ... Please Wait ..." -#: FlatCAMApp.py:10983 +#: FlatCAMApp.py:11151 msgid "Opening FlatCAM Project file." msgstr "Opening FlatCAM Project file." -#: FlatCAMApp.py:10993 FlatCAMApp.py:11011 +#: FlatCAMApp.py:11161 FlatCAMApp.py:11179 msgid "Failed to open project file" msgstr "Failed to open project file" -#: FlatCAMApp.py:11045 +#: FlatCAMApp.py:11213 msgid "Loading Project ... restoring" msgstr "Loading Project ... restoring" -#: FlatCAMApp.py:11054 +#: FlatCAMApp.py:11222 msgid "Project loaded from" msgstr "Project loaded from" -#: FlatCAMApp.py:11117 +#: FlatCAMApp.py:11285 msgid "Redrawing all objects" msgstr "Redrawing all objects" -#: FlatCAMApp.py:11149 +#: FlatCAMApp.py:11317 msgid "Available commands:\n" msgstr "Available commands:\n" -#: FlatCAMApp.py:11151 +#: FlatCAMApp.py:11319 msgid "" "\n" "\n" @@ -1398,51 +1453,51 @@ msgstr "" "Type help for usage.\n" " Example: help open_gerber" -#: FlatCAMApp.py:11301 +#: FlatCAMApp.py:11469 msgid "Shows list of commands." msgstr "Shows list of commands." -#: FlatCAMApp.py:11363 +#: FlatCAMApp.py:11531 msgid "Failed to load recent item list." msgstr "Failed to load recent item list." -#: FlatCAMApp.py:11371 +#: FlatCAMApp.py:11539 msgid "Failed to parse recent item list." msgstr "Failed to parse recent item list." -#: FlatCAMApp.py:11382 +#: FlatCAMApp.py:11550 msgid "Failed to load recent projects item list." msgstr "Failed to load recent projects item list." -#: FlatCAMApp.py:11390 +#: FlatCAMApp.py:11558 msgid "Failed to parse recent project item list." msgstr "Failed to parse recent project item list." -#: FlatCAMApp.py:11449 +#: FlatCAMApp.py:11617 msgid "Clear Recent projects" msgstr "Clear Recent projects" -#: FlatCAMApp.py:11472 +#: FlatCAMApp.py:11640 msgid "Clear Recent files" msgstr "Clear Recent files" -#: FlatCAMApp.py:11489 flatcamGUI/FlatCAMGUI.py:1121 +#: FlatCAMApp.py:11657 flatcamGUI/FlatCAMGUI.py:1133 msgid "Shortcut Key List" msgstr "Shortcut Key List" -#: FlatCAMApp.py:11563 +#: FlatCAMApp.py:11731 msgid "Selected Tab - Choose an Item from Project Tab" msgstr "Selected Tab - Choose an Item from Project Tab" -#: FlatCAMApp.py:11564 +#: FlatCAMApp.py:11732 msgid "Details" msgstr "Details" -#: FlatCAMApp.py:11566 +#: FlatCAMApp.py:11734 msgid "The normal flow when working in FlatCAM is the following:" msgstr "The normal flow when working in FlatCAM is the following:" -#: FlatCAMApp.py:11567 +#: FlatCAMApp.py:11735 msgid "" "Load/Import a Gerber, Excellon, Gcode, DXF, Raster Image or SVG file into " "FlatCAM using either the toolbars, key shortcuts or even dragging and " @@ -1452,7 +1507,7 @@ msgstr "" "FlatCAM using either the toolbars, key shortcuts or even dragging and " "dropping the files on the GUI." -#: FlatCAMApp.py:11570 +#: FlatCAMApp.py:11738 msgid "" "You can also load a FlatCAM project by double clicking on the project file, " "drag and drop of the file into the FLATCAM GUI or through the menu (or " @@ -1462,7 +1517,7 @@ msgstr "" "drag and drop of the file into the FLATCAM GUI or through the menu (or " "toolbar) actions offered within the app." -#: FlatCAMApp.py:11573 +#: FlatCAMApp.py:11741 msgid "" "Once an object is available in the Project Tab, by selecting it and then " "focusing on SELECTED TAB (more simpler is to double click the object name in " @@ -1474,7 +1529,7 @@ msgstr "" "the Project Tab, SELECTED TAB will be updated with the object properties " "according to its kind: Gerber, Excellon, Geometry or CNCJob object." -#: FlatCAMApp.py:11577 +#: FlatCAMApp.py:11745 msgid "" "If the selection of the object is done on the canvas by single click " "instead, and the SELECTED TAB is in focus, again the object properties will " @@ -1488,7 +1543,7 @@ msgstr "" "object on the canvas will bring the SELECTED TAB and populate it even if it " "was out of focus." -#: FlatCAMApp.py:11581 +#: FlatCAMApp.py:11749 msgid "" "You can change the parameters in this screen and the flow direction is like " "this:" @@ -1496,7 +1551,7 @@ msgstr "" "You can change the parameters in this screen and the flow direction is like " "this:" -#: FlatCAMApp.py:11582 +#: FlatCAMApp.py:11750 msgid "" "Gerber/Excellon Object --> Change Parameter --> Generate Geometry --> " "Geometry Object --> Add tools (change param in Selected Tab) --> Generate " @@ -1508,7 +1563,7 @@ msgstr "" "CNCJob --> CNCJob Object --> Verify GCode (through Edit CNC Code) and/or " "append/prepend to GCode (again, done in SELECTED TAB) --> Save GCode." -#: FlatCAMApp.py:11586 +#: FlatCAMApp.py:11754 msgid "" "A list of key shortcuts is available through an menu entry in Help --> " "Shortcuts List or through its own key shortcut: F3." @@ -1516,23 +1571,23 @@ msgstr "" "A list of key shortcuts is available through an menu entry in Help --> " "Shortcuts List or through its own key shortcut: F3." -#: FlatCAMApp.py:11647 +#: FlatCAMApp.py:11815 msgid "Failed checking for latest version. Could not connect." msgstr "Failed checking for latest version. Could not connect." -#: FlatCAMApp.py:11655 +#: FlatCAMApp.py:11823 msgid "Could not parse information about latest version." msgstr "Could not parse information about latest version." -#: FlatCAMApp.py:11666 +#: FlatCAMApp.py:11834 msgid "FlatCAM is up to date!" msgstr "FlatCAM is up to date!" -#: FlatCAMApp.py:11671 +#: FlatCAMApp.py:11839 msgid "Newer Version Available" msgstr "Newer Version Available" -#: FlatCAMApp.py:11672 +#: FlatCAMApp.py:11840 msgid "" "There is a newer version of FlatCAM available for download:\n" "\n" @@ -1540,63 +1595,63 @@ msgstr "" "There is a newer version of FlatCAM available for download:\n" "\n" -#: FlatCAMApp.py:11674 +#: FlatCAMApp.py:11842 msgid "info" msgstr "info" -#: FlatCAMApp.py:11753 +#: FlatCAMApp.py:11921 msgid "All plots disabled." msgstr "All plots disabled." -#: FlatCAMApp.py:11760 +#: FlatCAMApp.py:11928 msgid "All non selected plots disabled." msgstr "All non selected plots disabled." -#: FlatCAMApp.py:11767 +#: FlatCAMApp.py:11935 msgid "All plots enabled." msgstr "All plots enabled." -#: FlatCAMApp.py:11774 +#: FlatCAMApp.py:11942 msgid "Selected plots enabled..." msgstr "Selected plots enabled..." -#: FlatCAMApp.py:11783 +#: FlatCAMApp.py:11951 msgid "Selected plots disabled..." msgstr "Selected plots disabled..." -#: FlatCAMApp.py:11802 +#: FlatCAMApp.py:11970 msgid "Enabling plots ..." msgstr "Enabling plots ..." -#: FlatCAMApp.py:11842 +#: FlatCAMApp.py:12010 msgid "Disabling plots ..." msgstr "Disabling plots ..." -#: FlatCAMApp.py:11864 +#: FlatCAMApp.py:12032 msgid "Working ..." msgstr "Working ..." -#: FlatCAMApp.py:11903 +#: FlatCAMApp.py:12071 msgid "Saving FlatCAM Project" msgstr "Saving FlatCAM Project" -#: FlatCAMApp.py:11923 FlatCAMApp.py:11961 +#: FlatCAMApp.py:12091 FlatCAMApp.py:12129 msgid "Project saved to" msgstr "Project saved to" -#: FlatCAMApp.py:11943 +#: FlatCAMApp.py:12111 msgid "Failed to verify project file" msgstr "Failed to verify project file" -#: FlatCAMApp.py:11943 FlatCAMApp.py:11952 FlatCAMApp.py:11964 +#: FlatCAMApp.py:12111 FlatCAMApp.py:12120 FlatCAMApp.py:12132 msgid "Retry to save it." msgstr "Retry to save it." -#: FlatCAMApp.py:11952 FlatCAMApp.py:11964 +#: FlatCAMApp.py:12120 FlatCAMApp.py:12132 msgid "Failed to parse saved project file" msgstr "Failed to parse saved project file" -#: FlatCAMApp.py:12080 +#: FlatCAMApp.py:12248 msgid "The user requested a graceful exit of the current task." msgstr "The user requested a graceful exit of the current task." @@ -1678,7 +1733,7 @@ msgstr "Bookmark removed." msgid "Export FlatCAM Bookmarks" msgstr "Export FlatCAM Bookmarks" -#: FlatCAMCommon.py:363 flatcamGUI/FlatCAMGUI.py:437 +#: FlatCAMCommon.py:363 flatcamGUI/FlatCAMGUI.py:448 msgid "Bookmarks" msgstr "Bookmarks" @@ -1710,17 +1765,17 @@ msgstr "FlatCAM bookmarks import cancelled." msgid "Imported Bookmarks from" msgstr "Imported Bookmarks from" -#: FlatCAMCommon.py:477 FlatCAMObj.py:3488 FlatCAMObj.py:4483 -#: FlatCAMObj.py:4484 FlatCAMObj.py:4493 +#: FlatCAMCommon.py:477 FlatCAMObj.py:3588 FlatCAMObj.py:4589 +#: FlatCAMObj.py:4590 FlatCAMObj.py:4599 msgid "Iso" msgstr "Iso" -#: FlatCAMCommon.py:477 FlatCAMCommon.py:984 FlatCAMObj.py:1260 -#: FlatCAMObj.py:3488 FlatCAMObj.py:3759 FlatCAMObj.py:4043 +#: FlatCAMCommon.py:477 FlatCAMCommon.py:1012 FlatCAMObj.py:1351 +#: FlatCAMObj.py:3588 FlatCAMObj.py:3861 FlatCAMObj.py:4149 msgid "Rough" msgstr "Rough" -#: FlatCAMCommon.py:477 FlatCAMObj.py:3488 +#: FlatCAMCommon.py:477 FlatCAMObj.py:3588 msgid "Finish" msgstr "Finish" @@ -1729,12 +1784,12 @@ msgid "Tool Name" msgstr "Tool Name" #: FlatCAMCommon.py:514 flatcamEditors/FlatCAMExcEditor.py:1527 -#: flatcamGUI/ObjectUI.py:1219 flatcamTools/ToolNonCopperClear.py:271 +#: flatcamGUI/ObjectUI.py:1256 flatcamTools/ToolNonCopperClear.py:271 #: flatcamTools/ToolPaint.py:176 msgid "Tool Dia" msgstr "Tool Dia" -#: FlatCAMCommon.py:515 flatcamGUI/ObjectUI.py:1202 +#: FlatCAMCommon.py:515 flatcamGUI/ObjectUI.py:1239 msgid "Tool Offset" msgstr "Tool Offset" @@ -1742,8 +1797,8 @@ msgstr "Tool Offset" msgid "Custom Offset" msgstr "Custom Offset" -#: FlatCAMCommon.py:517 flatcamGUI/ObjectUI.py:288 -#: flatcamGUI/PreferencesUI.py:1626 flatcamGUI/PreferencesUI.py:3973 +#: FlatCAMCommon.py:517 flatcamGUI/ObjectUI.py:293 +#: flatcamGUI/PreferencesUI.py:1626 flatcamGUI/PreferencesUI.py:3991 #: flatcamTools/ToolNonCopperClear.py:213 msgid "Tool Type" msgstr "Tool Type" @@ -1752,12 +1807,13 @@ msgstr "Tool Type" msgid "Tool Shape" msgstr "Tool Shape" -#: FlatCAMCommon.py:519 flatcamGUI/ObjectUI.py:329 flatcamGUI/ObjectUI.py:779 -#: flatcamGUI/ObjectUI.py:1329 flatcamGUI/PreferencesUI.py:1666 -#: flatcamGUI/PreferencesUI.py:2334 flatcamGUI/PreferencesUI.py:3177 -#: flatcamGUI/PreferencesUI.py:4018 flatcamGUI/PreferencesUI.py:4272 -#: flatcamGUI/PreferencesUI.py:5096 flatcamTools/ToolCalculators.py:114 -#: flatcamTools/ToolCutOut.py:132 flatcamTools/ToolNonCopperClear.py:254 +#: FlatCAMCommon.py:519 flatcamGUI/ObjectUI.py:334 flatcamGUI/ObjectUI.py:796 +#: flatcamGUI/ObjectUI.py:1366 flatcamGUI/ObjectUI.py:1876 +#: flatcamGUI/PreferencesUI.py:1666 flatcamGUI/PreferencesUI.py:2334 +#: flatcamGUI/PreferencesUI.py:3179 flatcamGUI/PreferencesUI.py:4036 +#: flatcamGUI/PreferencesUI.py:4290 flatcamGUI/PreferencesUI.py:5114 +#: flatcamTools/ToolCalculators.py:114 flatcamTools/ToolCutOut.py:132 +#: flatcamTools/ToolNonCopperClear.py:254 msgid "Cut Z" msgstr "Cut Z" @@ -1777,9 +1833,9 @@ msgstr "V-Dia" msgid "V-Angle" msgstr "V-Angle" -#: FlatCAMCommon.py:524 flatcamGUI/ObjectUI.py:798 flatcamGUI/ObjectUI.py:1376 -#: flatcamGUI/PreferencesUI.py:2352 flatcamGUI/PreferencesUI.py:3230 -#: flatcamGUI/PreferencesUI.py:6448 flatcamTools/ToolCalibration.py:295 +#: FlatCAMCommon.py:524 flatcamGUI/ObjectUI.py:815 flatcamGUI/ObjectUI.py:1413 +#: flatcamGUI/PreferencesUI.py:2352 flatcamGUI/PreferencesUI.py:3232 +#: flatcamGUI/PreferencesUI.py:6466 flatcamTools/ToolCalibration.py:74 msgid "Travel Z" msgstr "Travel Z" @@ -1799,8 +1855,8 @@ msgstr "FR Rapids" msgid "Spindle Speed" msgstr "Spindle Speed" -#: FlatCAMCommon.py:529 flatcamGUI/ObjectUI.py:920 flatcamGUI/ObjectUI.py:1528 -#: flatcamGUI/PreferencesUI.py:2437 flatcamGUI/PreferencesUI.py:3348 +#: FlatCAMCommon.py:529 flatcamGUI/ObjectUI.py:939 flatcamGUI/ObjectUI.py:1582 +#: flatcamGUI/PreferencesUI.py:2439 flatcamGUI/PreferencesUI.py:3353 msgid "Dwell" msgstr "Dwell" @@ -1808,8 +1864,8 @@ msgstr "Dwell" msgid "Dwelltime" msgstr "Dwelltime" -#: FlatCAMCommon.py:531 flatcamGUI/ObjectUI.py:939 -#: flatcamGUI/PreferencesUI.py:2459 flatcamGUI/PreferencesUI.py:3370 +#: FlatCAMCommon.py:531 flatcamGUI/ObjectUI.py:958 +#: flatcamGUI/PreferencesUI.py:2461 flatcamGUI/PreferencesUI.py:3375 msgid "Preprocessor" msgstr "Preprocessor" @@ -1818,32 +1874,37 @@ msgid "ExtraCut" msgstr "ExtraCut" #: FlatCAMCommon.py:533 +#| msgid "Length" +msgid "E-Cut Length" +msgstr "E-Cut Length" + +#: FlatCAMCommon.py:534 msgid "Toolchange" msgstr "Toolchange" -#: FlatCAMCommon.py:534 +#: FlatCAMCommon.py:535 msgid "Toolchange XY" msgstr "Toolchange XY" -#: FlatCAMCommon.py:535 flatcamGUI/PreferencesUI.py:2378 -#: flatcamGUI/PreferencesUI.py:3262 flatcamGUI/PreferencesUI.py:6485 -#: flatcamTools/ToolCalibration.py:332 +#: FlatCAMCommon.py:536 flatcamGUI/PreferencesUI.py:2378 +#: flatcamGUI/PreferencesUI.py:3264 flatcamGUI/PreferencesUI.py:6503 +#: flatcamTools/ToolCalibration.py:111 msgid "Toolchange Z" msgstr "Toolchange Z" -#: FlatCAMCommon.py:536 +#: FlatCAMCommon.py:537 msgid "Start Z" msgstr "Start Z" -#: FlatCAMCommon.py:537 +#: FlatCAMCommon.py:538 msgid "End Z" msgstr "End Z" -#: FlatCAMCommon.py:541 +#: FlatCAMCommon.py:542 msgid "Tool Index." msgstr "Tool Index." -#: FlatCAMCommon.py:543 +#: FlatCAMCommon.py:544 msgid "" "Tool name.\n" "This is not used in the app, it's function\n" @@ -1853,11 +1914,11 @@ msgstr "" "This is not used in the app, it's function\n" "is to serve as a note for the user." -#: FlatCAMCommon.py:547 +#: FlatCAMCommon.py:548 msgid "Tool Diameter." msgstr "Tool Diameter." -#: FlatCAMCommon.py:549 +#: FlatCAMCommon.py:550 msgid "" "Tool Offset.\n" "Can be of a few types:\n" @@ -1873,7 +1934,7 @@ msgstr "" "Out = offset outside by half of tool diameter\n" "Custom = custom offset using the Custom Offset value" -#: FlatCAMCommon.py:556 +#: FlatCAMCommon.py:557 msgid "" "Custom Offset.\n" "A value to be used as offset from the current path." @@ -1881,7 +1942,7 @@ msgstr "" "Custom Offset.\n" "A value to be used as offset from the current path." -#: FlatCAMCommon.py:559 +#: FlatCAMCommon.py:560 msgid "" "Tool Type.\n" "Can be:\n" @@ -1895,7 +1956,7 @@ msgstr "" "Rough = rough cut, low feedrate, multiple passes\n" "Finish = finishing cut, high feedrate" -#: FlatCAMCommon.py:565 +#: FlatCAMCommon.py:566 msgid "" "Tool Shape. \n" "Can be:\n" @@ -1909,7 +1970,7 @@ msgstr "" "B = ball tip milling tool\n" "V = v-shape milling tool" -#: FlatCAMCommon.py:571 +#: FlatCAMCommon.py:572 msgid "" "Cutting Depth.\n" "The depth at which to cut into material." @@ -1917,7 +1978,7 @@ msgstr "" "Cutting Depth.\n" "The depth at which to cut into material." -#: FlatCAMCommon.py:574 +#: FlatCAMCommon.py:575 msgid "" "Multi Depth.\n" "Selecting this will allow cutting in multiple passes,\n" @@ -1927,7 +1988,7 @@ msgstr "" "Selecting this will allow cutting in multiple passes,\n" "each pass adding a DPP parameter depth." -#: FlatCAMCommon.py:578 +#: FlatCAMCommon.py:579 msgid "" "DPP. Depth per Pass.\n" "The value used to cut into material on each pass." @@ -1935,7 +1996,7 @@ msgstr "" "DPP. Depth per Pass.\n" "The value used to cut into material on each pass." -#: FlatCAMCommon.py:581 +#: FlatCAMCommon.py:582 msgid "" "V-Dia.\n" "Diameter of the tip for V-Shape Tools." @@ -1943,7 +2004,7 @@ msgstr "" "V-Dia.\n" "Diameter of the tip for V-Shape Tools." -#: FlatCAMCommon.py:584 +#: FlatCAMCommon.py:585 msgid "" "V-Agle.\n" "Angle at the tip for the V-Shape Tools." @@ -1951,7 +2012,7 @@ msgstr "" "V-Agle.\n" "Angle at the tip for the V-Shape Tools." -#: FlatCAMCommon.py:587 +#: FlatCAMCommon.py:588 msgid "" "Clearance Height.\n" "Height at which the milling bit will travel between cuts,\n" @@ -1961,7 +2022,7 @@ msgstr "" "Height at which the milling bit will travel between cuts,\n" "above the surface of the material, avoiding all fixtures." -#: FlatCAMCommon.py:591 +#: FlatCAMCommon.py:592 msgid "" "FR. Feedrate\n" "The speed on XY plane used while cutting into material." @@ -1969,7 +2030,7 @@ msgstr "" "FR. Feedrate\n" "The speed on XY plane used while cutting into material." -#: FlatCAMCommon.py:594 +#: FlatCAMCommon.py:595 msgid "" "FR Z. Feedrate Z\n" "The speed on Z plane." @@ -1977,7 +2038,7 @@ msgstr "" "FR Z. Feedrate Z\n" "The speed on Z plane." -#: FlatCAMCommon.py:597 +#: FlatCAMCommon.py:598 msgid "" "FR Rapids. Feedrate Rapids\n" "Speed used while moving as fast as possible.\n" @@ -1989,7 +2050,7 @@ msgstr "" "This is used only by some devices that can't use\n" "the G0 g-code command. Mostly 3D printers." -#: FlatCAMCommon.py:602 +#: FlatCAMCommon.py:603 msgid "" "Spindle Speed.\n" "If it's left empty it will not be used.\n" @@ -1999,7 +2060,7 @@ msgstr "" "If it's left empty it will not be used.\n" "The speed of the spindle in RPM." -#: FlatCAMCommon.py:606 +#: FlatCAMCommon.py:607 msgid "" "Dwell.\n" "Check this if a delay is needed to allow\n" @@ -2009,7 +2070,7 @@ msgstr "" "Check this if a delay is needed to allow\n" "the spindle motor to reach it's set speed." -#: FlatCAMCommon.py:610 +#: FlatCAMCommon.py:611 msgid "" "Dwell Time.\n" "A delay used to allow the motor spindle reach it's set speed." @@ -2017,7 +2078,7 @@ msgstr "" "Dwell Time.\n" "A delay used to allow the motor spindle reach it's set speed." -#: FlatCAMCommon.py:613 +#: FlatCAMCommon.py:614 msgid "" "Preprocessor.\n" "A selection of files that will alter the generated G-code\n" @@ -2027,7 +2088,7 @@ msgstr "" "A selection of files that will alter the generated G-code\n" "to fit for a number of use cases." -#: FlatCAMCommon.py:617 +#: FlatCAMCommon.py:618 msgid "" "Extra Cut.\n" "If checked, after a isolation is finished an extra cut\n" @@ -2041,7 +2102,29 @@ msgstr "" "such as that this point is covered by this extra cut to\n" "ensure a complete isolation." -#: FlatCAMCommon.py:623 +#: FlatCAMCommon.py:624 +#| msgid "" +#| "Extra Cut.\n" +#| "If checked, after a isolation is finished an extra cut\n" +#| "will be added where the start and end of isolation meet\n" +#| "such as that this point is covered by this extra cut to\n" +#| "ensure a complete isolation." +msgid "" +"Extra Cut length.\n" +"If checked, after a isolation is finished an extra cut\n" +"will be added where the start and end of isolation meet\n" +"such as that this point is covered by this extra cut to\n" +"ensure a complete isolation. This is the length of\n" +"the extra cut." +msgstr "" +"Extra Cut length.\n" +"If checked, after a isolation is finished an extra cut\n" +"will be added where the start and end of isolation meet\n" +"such as that this point is covered by this extra cut to\n" +"ensure a complete isolation. This is the length of\n" +"the extra cut." + +#: FlatCAMCommon.py:631 msgid "" "Toolchange.\n" "It will create a toolchange event.\n" @@ -2053,28 +2136,28 @@ msgstr "" "The kind of toolchange is determined by\n" "the preprocessor file." -#: FlatCAMCommon.py:628 -msgid "" -"Toolchange XY.\n" -"A set of coordinates in the format (x, y).\n" -"Will determine the cartesian position of the point\n" -"where the tool change event take place." -msgstr "" -"Toolchange XY.\n" -"A set of coordinates in the format (x, y).\n" -"Will determine the cartesian position of the point\n" -"where the tool change event take place." - -#: FlatCAMCommon.py:633 -msgid "" -"Toolchange Z.\n" -"The position on Z plane where the tool change event take place." -msgstr "" -"Toolchange Z.\n" -"The position on Z plane where the tool change event take place." - #: FlatCAMCommon.py:636 msgid "" +"Toolchange XY.\n" +"A set of coordinates in the format (x, y).\n" +"Will determine the cartesian position of the point\n" +"where the tool change event take place." +msgstr "" +"Toolchange XY.\n" +"A set of coordinates in the format (x, y).\n" +"Will determine the cartesian position of the point\n" +"where the tool change event take place." + +#: FlatCAMCommon.py:641 +msgid "" +"Toolchange Z.\n" +"The position on Z plane where the tool change event take place." +msgstr "" +"Toolchange Z.\n" +"The position on Z plane where the tool change event take place." + +#: FlatCAMCommon.py:644 +msgid "" "Start Z.\n" "If it's left empty it will not be used.\n" "A position on Z plane to move immediately after job start." @@ -2083,7 +2166,7 @@ msgstr "" "If it's left empty it will not be used.\n" "A position on Z plane to move immediately after job start." -#: FlatCAMCommon.py:640 +#: FlatCAMCommon.py:648 msgid "" "End Z.\n" "A position on Z plane to move immediately after job stop." @@ -2091,11 +2174,11 @@ msgstr "" "End Z.\n" "A position on Z plane to move immediately after job stop." -#: FlatCAMCommon.py:661 +#: FlatCAMCommon.py:669 msgid "Add Tool to Tools DB" msgstr "Add Tool to Tools DB" -#: FlatCAMCommon.py:663 +#: FlatCAMCommon.py:671 msgid "" "Add a new tool in the Tools Database.\n" "You can edit it after it is added." @@ -2103,35 +2186,35 @@ msgstr "" "Add a new tool in the Tools Database.\n" "You can edit it after it is added." -#: FlatCAMCommon.py:666 +#: FlatCAMCommon.py:674 msgid "Remove Tool from Tools DB" msgstr "Remove Tool from Tools DB" -#: FlatCAMCommon.py:668 +#: FlatCAMCommon.py:676 msgid "Remove a selection of tools in the Tools Database." msgstr "Remove a selection of tools in the Tools Database." -#: FlatCAMCommon.py:670 +#: FlatCAMCommon.py:678 msgid "Export Tool DB" msgstr "Export Tool DB" -#: FlatCAMCommon.py:672 +#: FlatCAMCommon.py:680 msgid "Save the Tools Database to a custom text file." msgstr "Save the Tools Database to a custom text file." -#: FlatCAMCommon.py:674 +#: FlatCAMCommon.py:682 msgid "Import Tool DB" msgstr "Import Tool DB" -#: FlatCAMCommon.py:676 +#: FlatCAMCommon.py:684 msgid "Load the Tools Database information's from a custom text file." msgstr "Load the Tools Database information's from a custom text file." -#: FlatCAMCommon.py:686 +#: FlatCAMCommon.py:694 msgid "Add Tool from Tools DB" msgstr "Add Tool from Tools DB" -#: FlatCAMCommon.py:688 +#: FlatCAMCommon.py:696 msgid "" "Add a new tool in the Tools Table of the\n" "active Geometry object after selecting a tool\n" @@ -2141,231 +2224,246 @@ msgstr "" "active Geometry object after selecting a tool\n" "in the Tools Database." -#: FlatCAMCommon.py:727 FlatCAMCommon.py:1077 FlatCAMCommon.py:1111 +#: FlatCAMCommon.py:735 FlatCAMCommon.py:1105 FlatCAMCommon.py:1139 msgid "Could not load Tools DB file." msgstr "Could not load Tools DB file." -#: FlatCAMCommon.py:735 FlatCAMCommon.py:1119 +#: FlatCAMCommon.py:743 FlatCAMCommon.py:1147 msgid "Failed to parse Tools DB file." msgstr "Failed to parse Tools DB file." -#: FlatCAMCommon.py:738 FlatCAMCommon.py:1122 +#: FlatCAMCommon.py:746 FlatCAMCommon.py:1150 msgid "Loaded FlatCAM Tools DB from" msgstr "Loaded FlatCAM Tools DB from" -#: FlatCAMCommon.py:744 +#: FlatCAMCommon.py:752 msgid "Add to DB" msgstr "Add to DB" -#: FlatCAMCommon.py:746 +#: FlatCAMCommon.py:754 msgid "Copy from DB" msgstr "Copy from DB" -#: FlatCAMCommon.py:748 +#: FlatCAMCommon.py:756 msgid "Delete from DB" msgstr "Delete from DB" -#: FlatCAMCommon.py:998 +#: FlatCAMCommon.py:1026 msgid "Tool added to DB." msgstr "Tool added to DB." -#: FlatCAMCommon.py:1019 +#: FlatCAMCommon.py:1047 msgid "Tool copied from Tools DB." msgstr "Tool copied from Tools DB." -#: FlatCAMCommon.py:1037 +#: FlatCAMCommon.py:1065 msgid "Tool removed from Tools DB." msgstr "Tool removed from Tools DB." -#: FlatCAMCommon.py:1048 +#: FlatCAMCommon.py:1076 msgid "Export Tools Database" msgstr "Export Tools Database" -#: FlatCAMCommon.py:1051 +#: FlatCAMCommon.py:1079 msgid "Tools_Database" msgstr "Tools_Database" -#: FlatCAMCommon.py:1058 +#: FlatCAMCommon.py:1086 msgid "FlatCAM Tools DB export cancelled." msgstr "FlatCAM Tools DB export cancelled." -#: FlatCAMCommon.py:1088 FlatCAMCommon.py:1091 FlatCAMCommon.py:1143 +#: FlatCAMCommon.py:1116 FlatCAMCommon.py:1119 FlatCAMCommon.py:1171 msgid "Failed to write Tools DB to file." msgstr "Failed to write Tools DB to file." -#: FlatCAMCommon.py:1094 +#: FlatCAMCommon.py:1122 msgid "Exported Tools DB to" msgstr "Exported Tools DB to" -#: FlatCAMCommon.py:1101 +#: FlatCAMCommon.py:1129 msgid "Import FlatCAM Tools DB" msgstr "Import FlatCAM Tools DB" -#: FlatCAMCommon.py:1104 +#: FlatCAMCommon.py:1132 msgid "FlatCAM Tools DB import cancelled." msgstr "FlatCAM Tools DB import cancelled." -#: FlatCAMCommon.py:1147 +#: FlatCAMCommon.py:1175 msgid "Saved Tools DB." msgstr "Saved Tools DB." -#: FlatCAMCommon.py:1293 +#: FlatCAMCommon.py:1322 msgid "No Tool/row selected in the Tools Database table" msgstr "No Tool/row selected in the Tools Database table" -#: FlatCAMCommon.py:1311 +#: FlatCAMCommon.py:1340 msgid "Cancelled adding tool from DB." msgstr "Cancelled adding tool from DB." -#: FlatCAMObj.py:248 +#: FlatCAMObj.py:249 msgid "Name changed from" msgstr "Name changed from" -#: FlatCAMObj.py:248 +#: FlatCAMObj.py:249 msgid "to" msgstr "to" -#: FlatCAMObj.py:259 +#: FlatCAMObj.py:260 msgid "Offsetting..." msgstr "Offsetting..." -#: FlatCAMObj.py:278 +#: FlatCAMObj.py:274 FlatCAMObj.py:279 +#| msgid "Scale action was not executed." +msgid "Scaling could not be executed." +msgstr "Scaling could not be executed." + +#: FlatCAMObj.py:283 FlatCAMObj.py:291 +#| msgid "Scale on the" +msgid "Scale done." +msgstr "Scale done." + +#: FlatCAMObj.py:289 msgid "Scaling..." msgstr "Scaling..." -#: FlatCAMObj.py:294 +#: FlatCAMObj.py:307 msgid "Skewing..." msgstr "Skewing..." -#: FlatCAMObj.py:708 FlatCAMObj.py:2612 FlatCAMObj.py:3802 +#: FlatCAMObj.py:723 FlatCAMObj.py:2710 FlatCAMObj.py:3904 #: flatcamGUI/PreferencesUI.py:1123 flatcamGUI/PreferencesUI.py:2257 msgid "Basic" msgstr "Basic" -#: FlatCAMObj.py:730 FlatCAMObj.py:2624 FlatCAMObj.py:3822 +#: FlatCAMObj.py:745 FlatCAMObj.py:2722 FlatCAMObj.py:3925 #: flatcamGUI/PreferencesUI.py:1124 msgid "Advanced" msgstr "Advanced" -#: FlatCAMObj.py:947 +#: FlatCAMObj.py:962 msgid "Buffering solid geometry" msgstr "Buffering solid geometry" -#: FlatCAMObj.py:950 camlib.py:965 flatcamGUI/PreferencesUI.py:1700 +#: FlatCAMObj.py:965 camlib.py:965 flatcamGUI/PreferencesUI.py:1700 #: flatcamTools/ToolCopperThieving.py:1010 #: flatcamTools/ToolCopperThieving.py:1199 #: flatcamTools/ToolCopperThieving.py:1211 -#: flatcamTools/ToolNonCopperClear.py:1627 -#: flatcamTools/ToolNonCopperClear.py:1725 -#: flatcamTools/ToolNonCopperClear.py:1737 -#: flatcamTools/ToolNonCopperClear.py:1986 -#: flatcamTools/ToolNonCopperClear.py:2082 -#: flatcamTools/ToolNonCopperClear.py:2094 +#: flatcamTools/ToolNonCopperClear.py:1628 +#: flatcamTools/ToolNonCopperClear.py:1726 +#: flatcamTools/ToolNonCopperClear.py:1738 +#: flatcamTools/ToolNonCopperClear.py:1987 +#: flatcamTools/ToolNonCopperClear.py:2083 +#: flatcamTools/ToolNonCopperClear.py:2095 msgid "Buffering" msgstr "Buffering" -#: FlatCAMObj.py:956 +#: FlatCAMObj.py:971 msgid "Done" msgstr "Done" -#: FlatCAMObj.py:1004 +#: FlatCAMObj.py:1019 msgid "Isolating..." msgstr "Isolating..." -#: FlatCAMObj.py:1063 +#: FlatCAMObj.py:1078 msgid "Click on a polygon to isolate it." msgstr "Click on a polygon to isolate it." -#: FlatCAMObj.py:1095 flatcamTools/ToolPaint.py:1123 +#: FlatCAMObj.py:1117 FlatCAMObj.py:1222 flatcamTools/ToolPaint.py:1125 msgid "Added polygon" msgstr "Added polygon" -#: FlatCAMObj.py:1097 +#: FlatCAMObj.py:1119 FlatCAMObj.py:1224 msgid "Click to add next polygon or right click to start isolation." msgstr "Click to add next polygon or right click to start isolation." -#: FlatCAMObj.py:1109 flatcamTools/ToolPaint.py:1137 +#: FlatCAMObj.py:1131 flatcamTools/ToolPaint.py:1139 msgid "Removed polygon" msgstr "Removed polygon" -#: FlatCAMObj.py:1110 +#: FlatCAMObj.py:1132 msgid "Click to add/remove next polygon or right click to start isolation." msgstr "Click to add/remove next polygon or right click to start isolation." -#: FlatCAMObj.py:1115 flatcamTools/ToolPaint.py:1143 +#: FlatCAMObj.py:1137 flatcamTools/ToolPaint.py:1145 msgid "No polygon detected under click position." msgstr "No polygon detected under click position." -#: FlatCAMObj.py:1137 flatcamTools/ToolPaint.py:1172 +#: FlatCAMObj.py:1158 flatcamTools/ToolPaint.py:1174 msgid "List of single polygons is empty. Aborting." msgstr "List of single polygons is empty. Aborting." -#: FlatCAMObj.py:1211 FlatCAMObj.py:1339 -#: flatcamTools/ToolNonCopperClear.py:1656 -#: flatcamTools/ToolNonCopperClear.py:2010 +#: FlatCAMObj.py:1227 +#| msgid "Polygon Selection" +msgid "No polygon in selection." +msgstr "No polygon in selection." + +#: FlatCAMObj.py:1301 FlatCAMObj.py:1430 +#: flatcamTools/ToolNonCopperClear.py:1657 +#: flatcamTools/ToolNonCopperClear.py:2011 msgid "Isolation geometry could not be generated." msgstr "Isolation geometry could not be generated." -#: FlatCAMObj.py:1286 FlatCAMObj.py:1362 +#: FlatCAMObj.py:1377 FlatCAMObj.py:1453 msgid "Isolation geometry created" msgstr "Isolation geometry created" -#: FlatCAMObj.py:1295 FlatCAMObj.py:1369 +#: FlatCAMObj.py:1386 FlatCAMObj.py:1460 msgid "Subtracting Geo" msgstr "Subtracting Geo" -#: FlatCAMObj.py:1686 +#: FlatCAMObj.py:1777 msgid "Plotting Apertures" msgstr "Plotting Apertures" -#: FlatCAMObj.py:2439 flatcamEditors/FlatCAMExcEditor.py:2352 +#: FlatCAMObj.py:2537 flatcamEditors/FlatCAMExcEditor.py:2352 msgid "Total Drills" msgstr "Total Drills" -#: FlatCAMObj.py:2471 flatcamEditors/FlatCAMExcEditor.py:2384 +#: FlatCAMObj.py:2569 flatcamEditors/FlatCAMExcEditor.py:2384 msgid "Total Slots" msgstr "Total Slots" -#: FlatCAMObj.py:2926 FlatCAMObj.py:3021 FlatCAMObj.py:3142 +#: FlatCAMObj.py:3024 FlatCAMObj.py:3119 FlatCAMObj.py:3240 msgid "Please select one or more tools from the list and try again." msgstr "Please select one or more tools from the list and try again." -#: FlatCAMObj.py:2933 +#: FlatCAMObj.py:3031 msgid "Milling tool for DRILLS is larger than hole size. Cancelled." msgstr "Milling tool for DRILLS is larger than hole size. Cancelled." -#: FlatCAMObj.py:2934 FlatCAMObj.py:4384 flatcamEditors/FlatCAMGeoEditor.py:408 -#: flatcamGUI/FlatCAMGUI.py:427 flatcamGUI/FlatCAMGUI.py:918 -#: flatcamGUI/ObjectUI.py:1277 +#: FlatCAMObj.py:3032 FlatCAMObj.py:4490 flatcamEditors/FlatCAMGeoEditor.py:408 +#: flatcamGUI/FlatCAMGUI.py:438 flatcamGUI/FlatCAMGUI.py:930 +#: flatcamGUI/ObjectUI.py:1314 msgid "Tool" msgstr "Tool" -#: FlatCAMObj.py:2950 FlatCAMObj.py:3043 FlatCAMObj.py:3161 +#: FlatCAMObj.py:3048 FlatCAMObj.py:3141 FlatCAMObj.py:3259 msgid "Tool_nr" msgstr "Tool_nr" -#: FlatCAMObj.py:2950 FlatCAMObj.py:3043 FlatCAMObj.py:3161 +#: FlatCAMObj.py:3048 FlatCAMObj.py:3141 FlatCAMObj.py:3259 #: flatcamEditors/FlatCAMExcEditor.py:1507 -#: flatcamEditors/FlatCAMExcEditor.py:2967 flatcamGUI/ObjectUI.py:736 +#: flatcamEditors/FlatCAMExcEditor.py:2967 flatcamGUI/ObjectUI.py:753 #: flatcamTools/ToolNonCopperClear.py:120 flatcamTools/ToolPaint.py:123 #: flatcamTools/ToolPcbWizard.py:76 flatcamTools/ToolProperties.py:396 #: flatcamTools/ToolProperties.py:449 flatcamTools/ToolSolderPaste.py:84 msgid "Diameter" msgstr "Diameter" -#: FlatCAMObj.py:2950 FlatCAMObj.py:3043 FlatCAMObj.py:3161 +#: FlatCAMObj.py:3048 FlatCAMObj.py:3141 FlatCAMObj.py:3259 msgid "Drills_Nr" msgstr "Drills_Nr" -#: FlatCAMObj.py:2950 FlatCAMObj.py:3043 FlatCAMObj.py:3161 +#: FlatCAMObj.py:3048 FlatCAMObj.py:3141 FlatCAMObj.py:3259 msgid "Slots_Nr" msgstr "Slots_Nr" -#: FlatCAMObj.py:3030 +#: FlatCAMObj.py:3128 msgid "Milling tool for SLOTS is larger than hole size. Cancelled." msgstr "Milling tool for SLOTS is larger than hole size. Cancelled." -#: FlatCAMObj.py:3202 +#: FlatCAMObj.py:3300 msgid "" "Wrong value format for self.defaults[\"z_pdepth\"] or self.options[\"z_pdepth" "\"]" @@ -2373,7 +2471,7 @@ msgstr "" "Wrong value format for self.defaults[\"z_pdepth\"] or self.options[\"z_pdepth" "\"]" -#: FlatCAMObj.py:3213 +#: FlatCAMObj.py:3311 msgid "" "Wrong value format for self.defaults[\"feedrate_probe\"] or self." "options[\"feedrate_probe\"]" @@ -2381,35 +2479,25 @@ msgstr "" "Wrong value format for self.defaults[\"feedrate_probe\"] or self." "options[\"feedrate_probe\"]" -#: FlatCAMObj.py:3243 FlatCAMObj.py:5203 FlatCAMObj.py:5207 FlatCAMObj.py:5340 +#: FlatCAMObj.py:3341 FlatCAMObj.py:5311 FlatCAMObj.py:5315 FlatCAMObj.py:5450 msgid "Generating CNC Code" msgstr "Generating CNC Code" -#: FlatCAMObj.py:3270 camlib.py:2387 camlib.py:3396 -msgid "" -"The Toolchange X,Y field in Edit -> Preferences has to be in the format (x, " -"y) \n" -"but now there is only one value, not two. " -msgstr "" -"The Toolchange X,Y field in Edit -> Preferences has to be in the format (x, " -"y) \n" -"but now there is only one value, not two. " - -#: FlatCAMObj.py:3794 +#: FlatCAMObj.py:3896 msgid "Add from Tool DB" msgstr "Add from Tool DB" -#: FlatCAMObj.py:3796 flatcamGUI/FlatCAMGUI.py:599 flatcamGUI/FlatCAMGUI.py:704 -#: flatcamGUI/FlatCAMGUI.py:838 flatcamGUI/FlatCAMGUI.py:1856 -#: flatcamGUI/FlatCAMGUI.py:1954 flatcamGUI/FlatCAMGUI.py:2154 -#: flatcamGUI/FlatCAMGUI.py:2277 flatcamGUI/ObjectUI.py:1248 +#: FlatCAMObj.py:3898 flatcamGUI/FlatCAMGUI.py:610 flatcamGUI/FlatCAMGUI.py:715 +#: flatcamGUI/FlatCAMGUI.py:850 flatcamGUI/FlatCAMGUI.py:1868 +#: flatcamGUI/FlatCAMGUI.py:1966 flatcamGUI/FlatCAMGUI.py:2166 +#: flatcamGUI/FlatCAMGUI.py:2290 flatcamGUI/ObjectUI.py:1285 #: flatcamTools/ToolPanelize.py:534 flatcamTools/ToolPanelize.py:561 #: flatcamTools/ToolPanelize.py:660 flatcamTools/ToolPanelize.py:694 #: flatcamTools/ToolPanelize.py:759 msgid "Copy" msgstr "Copy" -#: FlatCAMObj.py:3879 FlatCAMObj.py:4248 FlatCAMObj.py:4955 FlatCAMObj.py:5591 +#: FlatCAMObj.py:3985 FlatCAMObj.py:4354 FlatCAMObj.py:5061 FlatCAMObj.py:5701 #: flatcamEditors/FlatCAMExcEditor.py:2459 #: flatcamEditors/FlatCAMGeoEditor.py:1080 #: flatcamEditors/FlatCAMGeoEditor.py:1114 @@ -2418,63 +2506,62 @@ msgstr "Copy" #: flatcamEditors/FlatCAMGeoEditor.py:1193 #: flatcamEditors/FlatCAMGeoEditor.py:1221 #: flatcamEditors/FlatCAMGeoEditor.py:1242 -#: flatcamTools/ToolNonCopperClear.py:1056 -#: flatcamTools/ToolNonCopperClear.py:1464 flatcamTools/ToolPaint.py:838 -#: flatcamTools/ToolPaint.py:1022 flatcamTools/ToolPaint.py:2094 +#: flatcamTools/ToolNonCopperClear.py:1057 +#: flatcamTools/ToolNonCopperClear.py:1465 flatcamTools/ToolPaint.py:840 +#: flatcamTools/ToolPaint.py:1024 flatcamTools/ToolPaint.py:2096 #: flatcamTools/ToolSolderPaste.py:879 flatcamTools/ToolSolderPaste.py:954 msgid "Wrong value format entered, use a number." msgstr "Wrong value format entered, use a number." -#: FlatCAMObj.py:4017 +#: FlatCAMObj.py:4123 msgid "Please enter the desired tool diameter in Float format." msgstr "Please enter the desired tool diameter in Float format." -#: FlatCAMObj.py:4087 +#: FlatCAMObj.py:4193 msgid "Tool added in Tool Table." msgstr "Tool added in Tool Table." -#: FlatCAMObj.py:4091 +#: FlatCAMObj.py:4197 msgid "Default Tool added. Wrong value format entered." msgstr "Default Tool added. Wrong value format entered." -#: FlatCAMObj.py:4198 FlatCAMObj.py:4207 +#: FlatCAMObj.py:4304 FlatCAMObj.py:4313 msgid "Failed. Select a tool to copy." msgstr "Failed. Select a tool to copy." -#: FlatCAMObj.py:4234 +#: FlatCAMObj.py:4340 msgid "Tool was copied in Tool Table." msgstr "Tool was copied in Tool Table." -#: FlatCAMObj.py:4262 +#: FlatCAMObj.py:4368 msgid "Tool was edited in Tool Table." msgstr "Tool was edited in Tool Table." -#: FlatCAMObj.py:4291 FlatCAMObj.py:4300 +#: FlatCAMObj.py:4397 FlatCAMObj.py:4406 msgid "Failed. Select a tool to delete." msgstr "Failed. Select a tool to delete." -#: FlatCAMObj.py:4323 +#: FlatCAMObj.py:4429 msgid "Tool was deleted in Tool Table." msgstr "Tool was deleted in Tool Table." -#: FlatCAMObj.py:4384 flatcamGUI/ObjectUI.py:1277 -#| msgid "Parameters" +#: FlatCAMObj.py:4490 flatcamGUI/ObjectUI.py:1314 msgid "Parameters for" msgstr "Parameters for" -#: FlatCAMObj.py:4815 +#: FlatCAMObj.py:4921 msgid "This Geometry can't be processed because it is" msgstr "This Geometry can't be processed because it is" -#: FlatCAMObj.py:4817 +#: FlatCAMObj.py:4923 msgid "geometry" msgstr "geometry" -#: FlatCAMObj.py:4860 +#: FlatCAMObj.py:4966 msgid "Failed. No tool selected in the tool table ..." msgstr "Failed. No tool selected in the tool table ..." -#: FlatCAMObj.py:4960 FlatCAMObj.py:5112 +#: FlatCAMObj.py:5066 FlatCAMObj.py:5219 msgid "" "Tool Offset is selected in Tool Table but no value is provided.\n" "Add a Tool Offset or change the Offset Type." @@ -2482,44 +2569,44 @@ msgstr "" "Tool Offset is selected in Tool Table but no value is provided.\n" "Add a Tool Offset or change the Offset Type." -#: FlatCAMObj.py:5024 FlatCAMObj.py:5172 +#: FlatCAMObj.py:5131 FlatCAMObj.py:5280 msgid "G-Code parsing in progress..." msgstr "G-Code parsing in progress..." -#: FlatCAMObj.py:5026 FlatCAMObj.py:5174 +#: FlatCAMObj.py:5133 FlatCAMObj.py:5282 msgid "G-Code parsing finished..." msgstr "G-Code parsing finished..." -#: FlatCAMObj.py:5034 +#: FlatCAMObj.py:5141 msgid "Finished G-Code processing" msgstr "Finished G-Code processing" -#: FlatCAMObj.py:5036 FlatCAMObj.py:5186 +#: FlatCAMObj.py:5143 FlatCAMObj.py:5294 msgid "G-Code processing failed with error" msgstr "G-Code processing failed with error" -#: FlatCAMObj.py:5082 flatcamTools/ToolSolderPaste.py:1302 +#: FlatCAMObj.py:5189 flatcamTools/ToolSolderPaste.py:1300 msgid "Cancelled. Empty file, it has no geometry" msgstr "Cancelled. Empty file, it has no geometry" -#: FlatCAMObj.py:5184 FlatCAMObj.py:5333 +#: FlatCAMObj.py:5292 FlatCAMObj.py:5443 msgid "Finished G-Code processing..." msgstr "Finished G-Code processing..." -#: FlatCAMObj.py:5205 FlatCAMObj.py:5209 FlatCAMObj.py:5343 +#: FlatCAMObj.py:5313 FlatCAMObj.py:5317 FlatCAMObj.py:5453 msgid "CNCjob created" msgstr "CNCjob created" -#: FlatCAMObj.py:5374 FlatCAMObj.py:5383 flatcamParsers/ParseGerber.py:1750 +#: FlatCAMObj.py:5484 FlatCAMObj.py:5493 flatcamParsers/ParseGerber.py:1750 #: flatcamParsers/ParseGerber.py:1760 msgid "Scale factor has to be a number: integer or float." msgstr "Scale factor has to be a number: integer or float." -#: FlatCAMObj.py:5447 +#: FlatCAMObj.py:5557 msgid "Geometry Scale done." msgstr "Geometry Scale done." -#: FlatCAMObj.py:5464 flatcamParsers/ParseGerber.py:1876 +#: FlatCAMObj.py:5574 flatcamParsers/ParseGerber.py:1876 msgid "" "An (x,y) pair of values are needed. Probable you entered only one value in " "the Offset field." @@ -2527,11 +2614,11 @@ msgstr "" "An (x,y) pair of values are needed. Probable you entered only one value in " "the Offset field." -#: FlatCAMObj.py:5521 +#: FlatCAMObj.py:5631 msgid "Geometry Offset done." msgstr "Geometry Offset done." -#: FlatCAMObj.py:5550 +#: FlatCAMObj.py:5660 msgid "" "The Toolchange X,Y field in Edit -> Preferences has to be in the format (x, " "y)\n" @@ -2541,78 +2628,78 @@ msgstr "" "y)\n" "but now there is only one value, not two." -#: FlatCAMObj.py:6137 FlatCAMObj.py:6785 FlatCAMObj.py:6981 +#: FlatCAMObj.py:6335 FlatCAMObj.py:6993 FlatCAMObj.py:7189 msgid "Basic" msgstr "Basic" -#: FlatCAMObj.py:6143 FlatCAMObj.py:6789 FlatCAMObj.py:6985 +#: FlatCAMObj.py:6341 FlatCAMObj.py:6997 FlatCAMObj.py:7193 msgid "Advanced" msgstr "Advanced" -#: FlatCAMObj.py:6186 +#: FlatCAMObj.py:6384 msgid "Plotting..." msgstr "Plotting..." -#: FlatCAMObj.py:6209 FlatCAMObj.py:6214 flatcamTools/ToolSolderPaste.py:1508 +#: FlatCAMObj.py:6407 FlatCAMObj.py:6412 flatcamTools/ToolSolderPaste.py:1506 msgid "Export Machine Code ..." msgstr "Export Machine Code ..." -#: FlatCAMObj.py:6219 flatcamTools/ToolSolderPaste.py:1512 +#: FlatCAMObj.py:6417 flatcamTools/ToolSolderPaste.py:1510 msgid "Export Machine Code cancelled ..." msgstr "Export Machine Code cancelled ..." -#: FlatCAMObj.py:6241 +#: FlatCAMObj.py:6439 msgid "Machine Code file saved to" msgstr "Machine Code file saved to" -#: FlatCAMObj.py:6295 flatcamTools/ToolCalibration.py:953 +#: FlatCAMObj.py:6493 flatcamTools/ToolCalibration.py:1083 msgid "Loaded Machine Code into Code Editor" msgstr "Loaded Machine Code into Code Editor" -#: FlatCAMObj.py:6430 +#: FlatCAMObj.py:6628 msgid "This CNCJob object can't be processed because it is a" msgstr "This CNCJob object can't be processed because it is a" -#: FlatCAMObj.py:6432 +#: FlatCAMObj.py:6630 msgid "CNCJob object" msgstr "CNCJob object" -#: FlatCAMObj.py:6483 +#: FlatCAMObj.py:6681 msgid "G-code does not have a units code: either G20 or G21" msgstr "G-code does not have a units code: either G20 or G21" -#: FlatCAMObj.py:6497 +#: FlatCAMObj.py:6695 msgid "Cancelled. The Toolchange Custom code is enabled but it's empty." msgstr "Cancelled. The Toolchange Custom code is enabled but it's empty." -#: FlatCAMObj.py:6502 +#: FlatCAMObj.py:6700 msgid "Toolchange G-code was replaced by a custom code." msgstr "Toolchange G-code was replaced by a custom code." -#: FlatCAMObj.py:6519 flatcamEditors/FlatCAMTextEditor.py:224 -#: flatcamTools/ToolSolderPaste.py:1539 +#: FlatCAMObj.py:6717 flatcamEditors/FlatCAMTextEditor.py:224 +#: flatcamTools/ToolSolderPaste.py:1537 msgid "No such file or directory" msgstr "No such file or directory" -#: FlatCAMObj.py:6533 flatcamEditors/FlatCAMTextEditor.py:236 +#: FlatCAMObj.py:6731 flatcamEditors/FlatCAMTextEditor.py:236 msgid "Saved to" msgstr "Saved to" -#: FlatCAMObj.py:6543 FlatCAMObj.py:6553 +#: FlatCAMObj.py:6741 FlatCAMObj.py:6751 msgid "" "The used preprocessor file has to have in it's name: 'toolchange_custom'" msgstr "" "The used preprocessor file has to have in it's name: 'toolchange_custom'" -#: FlatCAMObj.py:6557 +#: FlatCAMObj.py:6755 msgid "There is no preprocessor file." msgstr "There is no preprocessor file." -#: FlatCAMObj.py:6804 +#: FlatCAMObj.py:7012 msgid "Script Editor" msgstr "Script Editor" -#: FlatCAMObj.py:7085 +#: FlatCAMObj.py:7293 msgid "Document Editor" msgstr "Document Editor" @@ -2685,7 +2772,7 @@ msgstr "Failed to skew. No object selected" msgid "There is no such parameter" msgstr "There is no such parameter" -#: camlib.py:2366 +#: camlib.py:2368 msgid "" "The Cut Z parameter has positive value. It is the depth value to drill into " "material.\n" @@ -2699,35 +2786,45 @@ msgstr "" "therefore the app will convert the value to negative. Check the resulting " "CNC code (Gcode etc)." -#: camlib.py:2374 camlib.py:3078 camlib.py:3423 +#: camlib.py:2376 camlib.py:3089 camlib.py:3436 msgid "The Cut Z parameter is zero. There will be no cut, skipping file" msgstr "The Cut Z parameter is zero. There will be no cut, skipping file" -#: camlib.py:2450 +#: camlib.py:2389 camlib.py:3409 +msgid "" +"The Toolchange X,Y field in Edit -> Preferences has to be in the format (x, " +"y) \n" +"but now there is only one value, not two. " +msgstr "" +"The Toolchange X,Y field in Edit -> Preferences has to be in the format (x, " +"y) \n" +"but now there is only one value, not two. " + +#: camlib.py:2458 msgid "Creating a list of points to drill..." msgstr "Creating a list of points to drill..." -#: camlib.py:2532 +#: camlib.py:2540 msgid "Starting G-Code" msgstr "Starting G-Code" -#: camlib.py:2627 camlib.py:2770 camlib.py:2871 camlib.py:3189 camlib.py:3534 +#: camlib.py:2635 camlib.py:2778 camlib.py:2880 camlib.py:3200 camlib.py:3547 msgid "Starting G-Code for tool with diameter" msgstr "Starting G-Code for tool with diameter" -#: camlib.py:2683 camlib.py:2826 camlib.py:2928 +#: camlib.py:2691 camlib.py:2834 camlib.py:2937 msgid "G91 coordinates not implemented" msgstr "G91 coordinates not implemented" -#: camlib.py:2689 camlib.py:2832 camlib.py:2934 +#: camlib.py:2697 camlib.py:2841 camlib.py:2943 msgid "The loaded Excellon file has no drills" msgstr "The loaded Excellon file has no drills" -#: camlib.py:2956 +#: camlib.py:2966 msgid "Finished G-Code generation..." msgstr "Finished G-Code generation..." -#: camlib.py:3050 +#: camlib.py:3061 msgid "" "The Toolchange X,Y field in Edit -> Preferences has to be in the format (x, " "y) \n" @@ -2737,7 +2834,7 @@ msgstr "" "y) \n" "but now there is only one value, not two." -#: camlib.py:3063 camlib.py:3409 +#: camlib.py:3074 camlib.py:3422 msgid "" "Cut_Z parameter is None or zero. Most likely a bad combinations of other " "parameters." @@ -2745,7 +2842,7 @@ msgstr "" "Cut_Z parameter is None or zero. Most likely a bad combinations of other " "parameters." -#: camlib.py:3070 camlib.py:3415 +#: camlib.py:3081 camlib.py:3428 msgid "" "The Cut Z parameter has positive value. It is the depth value to cut into " "material.\n" @@ -2759,11 +2856,11 @@ msgstr "" "therefore the app will convert the value to negative.Check the resulting CNC " "code (Gcode etc)." -#: camlib.py:3083 camlib.py:3429 +#: camlib.py:3094 camlib.py:3442 msgid "Travel Z parameter is None or zero." msgstr "Travel Z parameter is None or zero." -#: camlib.py:3088 camlib.py:3434 +#: camlib.py:3099 camlib.py:3447 msgid "" "The Travel Z parameter has negative value. It is the height value to travel " "between cuts.\n" @@ -2777,37 +2874,37 @@ msgstr "" "therefore the app will convert the value to positive.Check the resulting CNC " "code (Gcode etc)." -#: camlib.py:3096 camlib.py:3442 +#: camlib.py:3107 camlib.py:3455 msgid "The Z Travel parameter is zero. This is dangerous, skipping file" msgstr "The Z Travel parameter is zero. This is dangerous, skipping file" -#: camlib.py:3115 camlib.py:3461 +#: camlib.py:3126 camlib.py:3474 msgid "Indexing geometry before generating G-Code..." msgstr "Indexing geometry before generating G-Code..." -#: camlib.py:3176 camlib.py:3523 +#: camlib.py:3187 camlib.py:3536 msgid "Starting G-Code..." msgstr "Starting G-Code..." -#: camlib.py:3258 camlib.py:3604 +#: camlib.py:3270 camlib.py:3618 msgid "Finished G-Code generation" msgstr "Finished G-Code generation" -#: camlib.py:3260 +#: camlib.py:3272 msgid "paths traced" msgstr "paths traced" -#: camlib.py:3296 +#: camlib.py:3309 msgid "Expected a Geometry, got" msgstr "Expected a Geometry, got" -#: camlib.py:3303 +#: camlib.py:3316 msgid "" "Trying to generate a CNC Job from a Geometry object without solid_geometry." msgstr "" "Trying to generate a CNC Job from a Geometry object without solid_geometry." -#: camlib.py:3343 +#: camlib.py:3356 msgid "" "The Tool Offset value is too negative to use for the current_geometry.\n" "Raise the value (in module) and try again." @@ -2815,35 +2912,35 @@ msgstr "" "The Tool Offset value is too negative to use for the current_geometry.\n" "Raise the value (in module) and try again." -#: camlib.py:3604 +#: camlib.py:3618 msgid " paths traced." msgstr " paths traced." -#: camlib.py:3632 +#: camlib.py:3646 msgid "There is no tool data in the SolderPaste geometry." msgstr "There is no tool data in the SolderPaste geometry." -#: camlib.py:3719 +#: camlib.py:3733 msgid "Finished SolderPste G-Code generation" msgstr "Finished SolderPste G-Code generation" -#: camlib.py:3721 +#: camlib.py:3735 msgid "paths traced." msgstr "paths traced." -#: camlib.py:3976 +#: camlib.py:3991 msgid "Parsing GCode file. Number of lines" msgstr "Parsing GCode file. Number of lines" -#: camlib.py:4083 +#: camlib.py:4098 msgid "Creating Geometry from the parsed GCode file. " msgstr "Creating Geometry from the parsed GCode file. " -#: camlib.py:4219 camlib.py:4503 camlib.py:4606 camlib.py:4653 +#: camlib.py:4234 camlib.py:4518 camlib.py:4621 camlib.py:4690 msgid "G91 coordinates not implemented ..." msgstr "G91 coordinates not implemented ..." -#: camlib.py:4350 +#: camlib.py:4365 msgid "Unifying Geometry from parsed Geometry segments" msgstr "Unifying Geometry from parsed Geometry segments" @@ -2946,8 +3043,8 @@ msgid "Resize drill(s) failed. Please enter a diameter for resize." msgstr "Resize drill(s) failed. Please enter a diameter for resize." #: flatcamEditors/FlatCAMExcEditor.py:983 -#: flatcamEditors/FlatCAMExcEditor.py:1052 flatcamGUI/FlatCAMGUI.py:2879 -#: flatcamGUI/FlatCAMGUI.py:3092 flatcamGUI/FlatCAMGUI.py:3309 +#: flatcamEditors/FlatCAMExcEditor.py:1052 flatcamGUI/FlatCAMGUI.py:2892 +#: flatcamGUI/FlatCAMGUI.py:3105 flatcamGUI/FlatCAMGUI.py:3322 msgid "Cancelled." msgstr "Cancelled." @@ -2972,7 +3069,7 @@ msgstr "Done. Drill(s) Move completed." msgid "Done. Drill(s) copied." msgstr "Done. Drill(s) copied." -#: flatcamEditors/FlatCAMExcEditor.py:1480 flatcamGUI/PreferencesUI.py:2818 +#: flatcamEditors/FlatCAMExcEditor.py:1480 flatcamGUI/PreferencesUI.py:2820 msgid "Excellon Editor" msgstr "Excellon Editor" @@ -2981,13 +3078,13 @@ msgstr "Excellon Editor" msgid "Name:" msgstr "Name:" -#: flatcamEditors/FlatCAMExcEditor.py:1493 flatcamGUI/ObjectUI.py:716 -#: flatcamGUI/ObjectUI.py:1108 flatcamTools/ToolNonCopperClear.py:109 +#: flatcamEditors/FlatCAMExcEditor.py:1493 flatcamGUI/ObjectUI.py:733 +#: flatcamGUI/ObjectUI.py:1145 flatcamTools/ToolNonCopperClear.py:109 #: flatcamTools/ToolPaint.py:112 flatcamTools/ToolSolderPaste.py:73 msgid "Tools Table" msgstr "Tools Table" -#: flatcamEditors/FlatCAMExcEditor.py:1495 flatcamGUI/ObjectUI.py:718 +#: flatcamEditors/FlatCAMExcEditor.py:1495 flatcamGUI/ObjectUI.py:735 msgid "" "Tools in this Excellon object\n" "when are used for drilling." @@ -3007,8 +3104,8 @@ msgstr "" "Add/Delete a tool to the tool list\n" "for this Excellon object." -#: flatcamEditors/FlatCAMExcEditor.py:1529 flatcamGUI/ObjectUI.py:1221 -#: flatcamGUI/PreferencesUI.py:2849 +#: flatcamEditors/FlatCAMExcEditor.py:1529 flatcamGUI/ObjectUI.py:1258 +#: flatcamGUI/PreferencesUI.py:2851 msgid "Diameter for the new tool" msgstr "Diameter for the new tool" @@ -3036,7 +3133,7 @@ msgstr "" "Delete a tool in the tool list\n" "by selecting a row in the tool table." -#: flatcamEditors/FlatCAMExcEditor.py:1573 flatcamGUI/FlatCAMGUI.py:1737 +#: flatcamEditors/FlatCAMExcEditor.py:1573 flatcamGUI/FlatCAMGUI.py:1749 msgid "Resize Drill(s)" msgstr "Resize Drill(s)" @@ -3060,8 +3157,8 @@ msgstr "Resize" msgid "Resize drill(s)" msgstr "Resize drill(s)" -#: flatcamEditors/FlatCAMExcEditor.py:1622 flatcamGUI/FlatCAMGUI.py:1736 -#: flatcamGUI/FlatCAMGUI.py:1946 +#: flatcamEditors/FlatCAMExcEditor.py:1622 flatcamGUI/FlatCAMGUI.py:1748 +#: flatcamGUI/FlatCAMGUI.py:1958 msgid "Add Drill Array" msgstr "Add Drill Array" @@ -3085,17 +3182,17 @@ msgstr "Linear" #: flatcamEditors/FlatCAMExcEditor.py:1634 #: flatcamEditors/FlatCAMExcEditor.py:1848 -#: flatcamEditors/FlatCAMGrbEditor.py:2696 flatcamGUI/ObjectUI.py:295 -#: flatcamGUI/PreferencesUI.py:3981 flatcamGUI/PreferencesUI.py:6378 +#: flatcamEditors/FlatCAMGrbEditor.py:2696 flatcamGUI/ObjectUI.py:300 +#: flatcamGUI/PreferencesUI.py:3999 flatcamGUI/PreferencesUI.py:6396 #: flatcamTools/ToolFiducials.py:220 flatcamTools/ToolNonCopperClear.py:221 msgid "Circular" msgstr "Circular" -#: flatcamEditors/FlatCAMExcEditor.py:1642 flatcamGUI/PreferencesUI.py:2860 +#: flatcamEditors/FlatCAMExcEditor.py:1642 flatcamGUI/PreferencesUI.py:2862 msgid "Nr of drills" msgstr "Nr of drills" -#: flatcamEditors/FlatCAMExcEditor.py:1643 flatcamGUI/PreferencesUI.py:2862 +#: flatcamEditors/FlatCAMExcEditor.py:1643 flatcamGUI/PreferencesUI.py:2864 msgid "Specify how many drills to be in the array." msgstr "Specify how many drills to be in the array." @@ -3106,14 +3203,14 @@ msgstr "Specify how many drills to be in the array." #: flatcamEditors/FlatCAMExcEditor.py:1927 #: flatcamEditors/FlatCAMGrbEditor.py:1524 #: flatcamEditors/FlatCAMGrbEditor.py:2724 -#: flatcamEditors/FlatCAMGrbEditor.py:2773 flatcamGUI/PreferencesUI.py:2970 +#: flatcamEditors/FlatCAMGrbEditor.py:2773 flatcamGUI/PreferencesUI.py:2972 msgid "Direction" msgstr "Direction" #: flatcamEditors/FlatCAMExcEditor.py:1663 #: flatcamEditors/FlatCAMExcEditor.py:1878 #: flatcamEditors/FlatCAMGrbEditor.py:2726 flatcamGUI/PreferencesUI.py:1940 -#: flatcamGUI/PreferencesUI.py:2878 flatcamGUI/PreferencesUI.py:3026 +#: flatcamGUI/PreferencesUI.py:2880 flatcamGUI/PreferencesUI.py:3028 msgid "" "Direction on which the linear array is oriented:\n" "- 'X' - horizontal axis \n" @@ -3129,8 +3226,8 @@ msgstr "" #: flatcamEditors/FlatCAMExcEditor.py:1792 #: flatcamEditors/FlatCAMExcEditor.py:1885 #: flatcamEditors/FlatCAMGrbEditor.py:2733 flatcamGUI/PreferencesUI.py:1946 -#: flatcamGUI/PreferencesUI.py:2884 flatcamGUI/PreferencesUI.py:2979 -#: flatcamGUI/PreferencesUI.py:3032 flatcamGUI/PreferencesUI.py:4804 +#: flatcamGUI/PreferencesUI.py:2886 flatcamGUI/PreferencesUI.py:2981 +#: flatcamGUI/PreferencesUI.py:3034 flatcamGUI/PreferencesUI.py:4822 #: flatcamTools/ToolFilm.py:256 msgid "X" msgstr "X" @@ -3139,8 +3236,8 @@ msgstr "X" #: flatcamEditors/FlatCAMExcEditor.py:1793 #: flatcamEditors/FlatCAMExcEditor.py:1886 #: flatcamEditors/FlatCAMGrbEditor.py:2734 flatcamGUI/PreferencesUI.py:1947 -#: flatcamGUI/PreferencesUI.py:2885 flatcamGUI/PreferencesUI.py:2980 -#: flatcamGUI/PreferencesUI.py:3033 flatcamGUI/PreferencesUI.py:4805 +#: flatcamGUI/PreferencesUI.py:2887 flatcamGUI/PreferencesUI.py:2982 +#: flatcamGUI/PreferencesUI.py:3035 flatcamGUI/PreferencesUI.py:4823 #: flatcamTools/ToolFilm.py:257 msgid "Y" msgstr "Y" @@ -3156,10 +3253,10 @@ msgstr "Y" #: flatcamEditors/FlatCAMGrbEditor.py:2735 #: flatcamEditors/FlatCAMGrbEditor.py:2752 #: flatcamEditors/FlatCAMGrbEditor.py:2788 flatcamGUI/PreferencesUI.py:1948 -#: flatcamGUI/PreferencesUI.py:1966 flatcamGUI/PreferencesUI.py:2886 -#: flatcamGUI/PreferencesUI.py:2905 flatcamGUI/PreferencesUI.py:2981 -#: flatcamGUI/PreferencesUI.py:2986 flatcamGUI/PreferencesUI.py:3034 -#: flatcamGUI/PreferencesUI.py:3055 flatcamGUI/PreferencesUI.py:5197 +#: flatcamGUI/PreferencesUI.py:1966 flatcamGUI/PreferencesUI.py:2888 +#: flatcamGUI/PreferencesUI.py:2907 flatcamGUI/PreferencesUI.py:2983 +#: flatcamGUI/PreferencesUI.py:2988 flatcamGUI/PreferencesUI.py:3036 +#: flatcamGUI/PreferencesUI.py:3057 flatcamGUI/PreferencesUI.py:5215 #: flatcamTools/ToolDistance.py:66 flatcamTools/ToolDistanceMin.py:68 #: flatcamTools/ToolTransform.py:62 msgid "Angle" @@ -3168,14 +3265,14 @@ msgstr "Angle" #: flatcamEditors/FlatCAMExcEditor.py:1676 #: flatcamEditors/FlatCAMExcEditor.py:1891 #: flatcamEditors/FlatCAMGrbEditor.py:2739 flatcamGUI/PreferencesUI.py:1954 -#: flatcamGUI/PreferencesUI.py:2892 flatcamGUI/PreferencesUI.py:3040 +#: flatcamGUI/PreferencesUI.py:2894 flatcamGUI/PreferencesUI.py:3042 msgid "Pitch" msgstr "Pitch" #: flatcamEditors/FlatCAMExcEditor.py:1678 #: flatcamEditors/FlatCAMExcEditor.py:1893 #: flatcamEditors/FlatCAMGrbEditor.py:2741 flatcamGUI/PreferencesUI.py:1956 -#: flatcamGUI/PreferencesUI.py:2894 flatcamGUI/PreferencesUI.py:3042 +#: flatcamGUI/PreferencesUI.py:2896 flatcamGUI/PreferencesUI.py:3044 msgid "Pitch = Distance between elements of the array." msgstr "Pitch = Distance between elements of the array." @@ -3205,25 +3302,25 @@ msgstr "" #: flatcamEditors/FlatCAMExcEditor.py:1719 #: flatcamEditors/FlatCAMExcEditor.py:1935 #: flatcamEditors/FlatCAMGrbEditor.py:2783 flatcamGUI/PreferencesUI.py:1988 -#: flatcamGUI/PreferencesUI.py:2632 flatcamGUI/PreferencesUI.py:2928 -#: flatcamGUI/PreferencesUI.py:3078 flatcamGUI/PreferencesUI.py:3490 +#: flatcamGUI/PreferencesUI.py:2634 flatcamGUI/PreferencesUI.py:2930 +#: flatcamGUI/PreferencesUI.py:3080 flatcamGUI/PreferencesUI.py:3508 msgid "CW" msgstr "CW" #: flatcamEditors/FlatCAMExcEditor.py:1720 #: flatcamEditors/FlatCAMExcEditor.py:1936 #: flatcamEditors/FlatCAMGrbEditor.py:2784 flatcamGUI/PreferencesUI.py:1989 -#: flatcamGUI/PreferencesUI.py:2633 flatcamGUI/PreferencesUI.py:2929 -#: flatcamGUI/PreferencesUI.py:3079 flatcamGUI/PreferencesUI.py:3491 +#: flatcamGUI/PreferencesUI.py:2635 flatcamGUI/PreferencesUI.py:2931 +#: flatcamGUI/PreferencesUI.py:3081 flatcamGUI/PreferencesUI.py:3509 msgid "CCW" msgstr "CCW" #: flatcamEditors/FlatCAMExcEditor.py:1724 #: flatcamEditors/FlatCAMExcEditor.py:1940 #: flatcamEditors/FlatCAMGrbEditor.py:2790 flatcamGUI/PreferencesUI.py:1968 -#: flatcamGUI/PreferencesUI.py:1997 flatcamGUI/PreferencesUI.py:2907 -#: flatcamGUI/PreferencesUI.py:2937 flatcamGUI/PreferencesUI.py:3057 -#: flatcamGUI/PreferencesUI.py:3087 +#: flatcamGUI/PreferencesUI.py:1997 flatcamGUI/PreferencesUI.py:2909 +#: flatcamGUI/PreferencesUI.py:2939 flatcamGUI/PreferencesUI.py:3059 +#: flatcamGUI/PreferencesUI.py:3089 msgid "Angle at which each element in circular array is placed." msgstr "Angle at which each element in circular array is placed." @@ -3239,16 +3336,16 @@ msgstr "" "Parameters for adding a slot (hole with oval shape)\n" "either single or as an part of an array." -#: flatcamEditors/FlatCAMExcEditor.py:1769 flatcamGUI/PreferencesUI.py:2954 +#: flatcamEditors/FlatCAMExcEditor.py:1769 flatcamGUI/PreferencesUI.py:2956 #: flatcamTools/ToolProperties.py:555 msgid "Length" msgstr "Length" -#: flatcamEditors/FlatCAMExcEditor.py:1771 flatcamGUI/PreferencesUI.py:2956 +#: flatcamEditors/FlatCAMExcEditor.py:1771 flatcamGUI/PreferencesUI.py:2958 msgid "Length = The length of the slot." msgstr "Length = The length of the slot." -#: flatcamEditors/FlatCAMExcEditor.py:1785 flatcamGUI/PreferencesUI.py:2972 +#: flatcamEditors/FlatCAMExcEditor.py:1785 flatcamGUI/PreferencesUI.py:2974 msgid "" "Direction on which the slot is oriented:\n" "- 'X' - horizontal axis \n" @@ -3288,11 +3385,11 @@ msgstr "" "Select the type of slot array to create.\n" "It can be Linear X(Y) or Circular" -#: flatcamEditors/FlatCAMExcEditor.py:1856 flatcamGUI/PreferencesUI.py:3011 +#: flatcamEditors/FlatCAMExcEditor.py:1856 flatcamGUI/PreferencesUI.py:3013 msgid "Nr of slots" msgstr "Nr of slots" -#: flatcamEditors/FlatCAMExcEditor.py:1857 flatcamGUI/PreferencesUI.py:3013 +#: flatcamEditors/FlatCAMExcEditor.py:1857 flatcamGUI/PreferencesUI.py:3015 msgid "Specify how many slots to be in the array." msgstr "Specify how many slots to be in the array." @@ -3304,7 +3401,7 @@ msgstr "" "Tool already in the original or actual tool list.\n" "Save and reedit Excellon if you need to add this tool. " -#: flatcamEditors/FlatCAMExcEditor.py:2480 flatcamGUI/FlatCAMGUI.py:3478 +#: flatcamEditors/FlatCAMExcEditor.py:2480 flatcamGUI/FlatCAMGUI.py:3491 msgid "Added new tool with dia" msgstr "Added new tool with dia" @@ -3379,7 +3476,7 @@ msgid "Round" msgstr "Round" #: flatcamEditors/FlatCAMGeoEditor.py:96 -#: flatcamEditors/FlatCAMGrbEditor.py:2552 flatcamGUI/PreferencesUI.py:5971 +#: flatcamEditors/FlatCAMGrbEditor.py:2552 flatcamGUI/PreferencesUI.py:5989 #: flatcamTools/ToolQRCode.py:198 msgid "Square" msgstr "Square" @@ -3402,7 +3499,7 @@ msgid "Full Buffer" msgstr "Full Buffer" #: flatcamEditors/FlatCAMGeoEditor.py:133 -#: flatcamEditors/FlatCAMGeoEditor.py:2760 flatcamGUI/FlatCAMGUI.py:1646 +#: flatcamEditors/FlatCAMGeoEditor.py:2760 flatcamGUI/FlatCAMGUI.py:1658 #: flatcamGUI/PreferencesUI.py:2008 msgid "Buffer Tool" msgstr "Buffer Tool" @@ -3421,7 +3518,7 @@ msgstr "Buffer distance value is missing or wrong format. Add it and retry." msgid "Font" msgstr "Font" -#: flatcamEditors/FlatCAMGeoEditor.py:324 flatcamGUI/FlatCAMGUI.py:1907 +#: flatcamEditors/FlatCAMGeoEditor.py:324 flatcamGUI/FlatCAMGUI.py:1919 msgid "Text" msgstr "Text" @@ -3429,13 +3526,13 @@ msgstr "Text" msgid "Text Tool" msgstr "Text Tool" -#: flatcamEditors/FlatCAMGeoEditor.py:442 flatcamGUI/ObjectUI.py:343 -#: flatcamGUI/PreferencesUI.py:1449 flatcamGUI/PreferencesUI.py:3142 -#: flatcamGUI/PreferencesUI.py:4482 +#: flatcamEditors/FlatCAMGeoEditor.py:442 flatcamGUI/ObjectUI.py:348 +#: flatcamGUI/PreferencesUI.py:1449 flatcamGUI/PreferencesUI.py:3144 +#: flatcamGUI/PreferencesUI.py:4500 msgid "Tool dia" msgstr "Tool dia" -#: flatcamEditors/FlatCAMGeoEditor.py:444 flatcamGUI/PreferencesUI.py:4484 +#: flatcamEditors/FlatCAMGeoEditor.py:444 flatcamGUI/PreferencesUI.py:4502 msgid "" "Diameter of the tool to\n" "be used in the operation." @@ -3443,25 +3540,14 @@ msgstr "" "Diameter of the tool to\n" "be used in the operation." -#: flatcamEditors/FlatCAMGeoEditor.py:455 flatcamGUI/PreferencesUI.py:4089 -#: flatcamGUI/PreferencesUI.py:4514 flatcamTools/ToolNonCopperClear.py:319 +#: flatcamEditors/FlatCAMGeoEditor.py:455 flatcamGUI/PreferencesUI.py:4107 +#: flatcamGUI/PreferencesUI.py:4532 flatcamTools/ToolNonCopperClear.py:319 #: flatcamTools/ToolPaint.py:219 msgid "Overlap Rate" msgstr "Overlap Rate" #: flatcamEditors/FlatCAMGeoEditor.py:457 #, 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." msgid "" "How much (fraction) of the tool width to overlap each tool pass.\n" "Example:\n" @@ -3485,17 +3571,17 @@ msgstr "" "Higher values = slow processing and slow execution on CNC\n" "due of too many paths." -#: flatcamEditors/FlatCAMGeoEditor.py:477 flatcamGUI/PreferencesUI.py:4108 -#: flatcamGUI/PreferencesUI.py:4329 flatcamGUI/PreferencesUI.py:4534 -#: flatcamGUI/PreferencesUI.py:6088 flatcamGUI/PreferencesUI.py:6245 -#: flatcamGUI/PreferencesUI.py:6330 flatcamTools/ToolCopperThieving.py:111 +#: flatcamEditors/FlatCAMGeoEditor.py:477 flatcamGUI/PreferencesUI.py:4126 +#: flatcamGUI/PreferencesUI.py:4347 flatcamGUI/PreferencesUI.py:4552 +#: flatcamGUI/PreferencesUI.py:6106 flatcamGUI/PreferencesUI.py:6263 +#: flatcamGUI/PreferencesUI.py:6348 flatcamTools/ToolCopperThieving.py:111 #: flatcamTools/ToolCopperThieving.py:361 flatcamTools/ToolCutOut.py:182 #: flatcamTools/ToolFiducials.py:172 flatcamTools/ToolNonCopperClear.py:337 #: flatcamTools/ToolPaint.py:238 msgid "Margin" msgstr "Margin" -#: flatcamEditors/FlatCAMGeoEditor.py:479 flatcamGUI/PreferencesUI.py:4536 +#: flatcamEditors/FlatCAMGeoEditor.py:479 flatcamGUI/PreferencesUI.py:4554 #: flatcamTools/ToolPaint.py:240 msgid "" "Distance by which to avoid\n" @@ -3506,8 +3592,8 @@ msgstr "" "the edges of the polygon to\n" "be painted." -#: flatcamEditors/FlatCAMGeoEditor.py:491 flatcamGUI/PreferencesUI.py:4121 -#: flatcamGUI/PreferencesUI.py:4549 flatcamTools/ToolNonCopperClear.py:348 +#: flatcamEditors/FlatCAMGeoEditor.py:491 flatcamGUI/PreferencesUI.py:4139 +#: flatcamGUI/PreferencesUI.py:4567 flatcamTools/ToolNonCopperClear.py:348 #: flatcamTools/ToolPaint.py:251 msgid "Method" msgstr "Method" @@ -3520,20 +3606,20 @@ msgstr "" "Algorithm to paint the polygon:
Standard: Fixed step inwards." "
Seed-based: Outwards from seed." -#: flatcamEditors/FlatCAMGeoEditor.py:498 flatcamGUI/PreferencesUI.py:4130 -#: flatcamGUI/PreferencesUI.py:4558 flatcamTools/ToolNonCopperClear.py:357 +#: flatcamEditors/FlatCAMGeoEditor.py:498 flatcamGUI/PreferencesUI.py:4148 +#: flatcamGUI/PreferencesUI.py:4576 flatcamTools/ToolNonCopperClear.py:357 #: flatcamTools/ToolPaint.py:260 msgid "Standard" msgstr "Standard" -#: flatcamEditors/FlatCAMGeoEditor.py:499 flatcamGUI/PreferencesUI.py:4131 -#: flatcamGUI/PreferencesUI.py:4559 flatcamTools/ToolNonCopperClear.py:358 +#: flatcamEditors/FlatCAMGeoEditor.py:499 flatcamGUI/PreferencesUI.py:4149 +#: flatcamGUI/PreferencesUI.py:4577 flatcamTools/ToolNonCopperClear.py:358 #: flatcamTools/ToolPaint.py:261 msgid "Seed-based" msgstr "Seed-based" -#: flatcamEditors/FlatCAMGeoEditor.py:500 flatcamGUI/PreferencesUI.py:4132 -#: flatcamGUI/PreferencesUI.py:4560 flatcamTools/ToolNonCopperClear.py:359 +#: flatcamEditors/FlatCAMGeoEditor.py:500 flatcamGUI/PreferencesUI.py:4150 +#: flatcamGUI/PreferencesUI.py:4578 flatcamTools/ToolNonCopperClear.py:359 #: flatcamTools/ToolPaint.py:262 msgid "Straight lines" msgstr "Straight lines" @@ -3542,8 +3628,8 @@ msgstr "Straight lines" msgid "Connect:" msgstr "Connect:" -#: flatcamEditors/FlatCAMGeoEditor.py:509 flatcamGUI/PreferencesUI.py:4141 -#: flatcamGUI/PreferencesUI.py:4567 flatcamTools/ToolNonCopperClear.py:366 +#: flatcamEditors/FlatCAMGeoEditor.py:509 flatcamGUI/PreferencesUI.py:4159 +#: flatcamGUI/PreferencesUI.py:4585 flatcamTools/ToolNonCopperClear.py:366 #: flatcamTools/ToolPaint.py:269 msgid "" "Draw lines between resulting\n" @@ -3556,8 +3642,8 @@ msgstr "" msgid "Contour:" msgstr "Contour:" -#: flatcamEditors/FlatCAMGeoEditor.py:519 flatcamGUI/PreferencesUI.py:4152 -#: flatcamGUI/PreferencesUI.py:4577 flatcamTools/ToolNonCopperClear.py:375 +#: flatcamEditors/FlatCAMGeoEditor.py:519 flatcamGUI/PreferencesUI.py:4170 +#: flatcamGUI/PreferencesUI.py:4595 flatcamTools/ToolNonCopperClear.py:375 #: flatcamTools/ToolPaint.py:278 msgid "" "Cut around the perimeter of the polygon\n" @@ -3566,13 +3652,13 @@ msgstr "" "Cut around the perimeter of the polygon\n" "to trim rough edges." -#: flatcamEditors/FlatCAMGeoEditor.py:531 flatcamGUI/FlatCAMGUI.py:1909 +#: flatcamEditors/FlatCAMGeoEditor.py:531 flatcamGUI/FlatCAMGUI.py:1921 msgid "Paint" msgstr "Paint" -#: flatcamEditors/FlatCAMGeoEditor.py:549 flatcamGUI/FlatCAMGUI.py:738 -#: flatcamGUI/FlatCAMGUI.py:2182 flatcamGUI/ObjectUI.py:1637 -#: flatcamTools/ToolPaint.py:41 flatcamTools/ToolPaint.py:537 +#: flatcamEditors/FlatCAMGeoEditor.py:549 flatcamGUI/FlatCAMGUI.py:749 +#: flatcamGUI/FlatCAMGUI.py:2194 flatcamGUI/ObjectUI.py:1694 +#: flatcamTools/ToolPaint.py:41 flatcamTools/ToolPaint.py:538 msgid "Paint Tool" msgstr "Paint Tool" @@ -3583,7 +3669,7 @@ msgstr "Paint cancelled. No shape selected." #: flatcamEditors/FlatCAMGeoEditor.py:599 #: flatcamEditors/FlatCAMGeoEditor.py:2786 #: flatcamEditors/FlatCAMGeoEditor.py:2816 -#: flatcamEditors/FlatCAMGeoEditor.py:2846 flatcamGUI/PreferencesUI.py:3138 +#: flatcamEditors/FlatCAMGeoEditor.py:2846 flatcamGUI/PreferencesUI.py:3140 #: flatcamTools/ToolProperties.py:120 flatcamTools/ToolProperties.py:158 msgid "Tools" msgstr "Tools" @@ -3591,15 +3677,15 @@ msgstr "Tools" #: flatcamEditors/FlatCAMGeoEditor.py:610 #: flatcamEditors/FlatCAMGeoEditor.py:994 #: flatcamEditors/FlatCAMGrbEditor.py:5011 -#: flatcamEditors/FlatCAMGrbEditor.py:5408 flatcamGUI/FlatCAMGUI.py:751 -#: flatcamGUI/FlatCAMGUI.py:2195 flatcamTools/ToolTransform.py:371 +#: flatcamEditors/FlatCAMGrbEditor.py:5408 flatcamGUI/FlatCAMGUI.py:762 +#: flatcamGUI/FlatCAMGUI.py:2207 flatcamTools/ToolTransform.py:371 msgid "Transform Tool" msgstr "Transform Tool" #: flatcamEditors/FlatCAMGeoEditor.py:611 #: flatcamEditors/FlatCAMGeoEditor.py:676 #: flatcamEditors/FlatCAMGrbEditor.py:5012 -#: flatcamEditors/FlatCAMGrbEditor.py:5077 flatcamGUI/PreferencesUI.py:5189 +#: flatcamEditors/FlatCAMGrbEditor.py:5077 flatcamGUI/PreferencesUI.py:5207 #: flatcamTools/ToolTransform.py:25 flatcamTools/ToolTransform.py:79 msgid "Rotate" msgstr "Rotate" @@ -3611,10 +3697,10 @@ msgstr "Skew/Shear" #: flatcamEditors/FlatCAMGeoEditor.py:613 #: flatcamEditors/FlatCAMGrbEditor.py:2600 -#: flatcamEditors/FlatCAMGrbEditor.py:5014 flatcamGUI/FlatCAMGUI.py:831 -#: flatcamGUI/FlatCAMGUI.py:1858 flatcamGUI/FlatCAMGUI.py:1936 -#: flatcamGUI/FlatCAMGUI.py:2271 flatcamGUI/ObjectUI.py:92 -#: flatcamGUI/ObjectUI.py:113 flatcamGUI/PreferencesUI.py:5239 +#: flatcamEditors/FlatCAMGrbEditor.py:5014 flatcamGUI/FlatCAMGUI.py:843 +#: flatcamGUI/FlatCAMGUI.py:1870 flatcamGUI/FlatCAMGUI.py:1948 +#: flatcamGUI/FlatCAMGUI.py:2284 flatcamGUI/ObjectUI.py:92 +#: flatcamGUI/ObjectUI.py:110 flatcamGUI/PreferencesUI.py:5257 #: flatcamTools/ToolTransform.py:27 msgid "Scale" msgstr "Scale" @@ -3625,17 +3711,17 @@ msgid "Mirror (Flip)" msgstr "Mirror (Flip)" #: flatcamEditors/FlatCAMGeoEditor.py:615 -#: flatcamEditors/FlatCAMGrbEditor.py:5016 flatcamGUI/ObjectUI.py:124 -#: flatcamGUI/ObjectUI.py:139 flatcamGUI/ObjectUI.py:1141 -#: flatcamGUI/ObjectUI.py:1784 flatcamGUI/PreferencesUI.py:4177 -#: flatcamGUI/PreferencesUI.py:5286 flatcamTools/ToolNonCopperClear.py:397 +#: flatcamEditors/FlatCAMGrbEditor.py:5016 flatcamGUI/ObjectUI.py:121 +#: flatcamGUI/ObjectUI.py:137 flatcamGUI/ObjectUI.py:1178 +#: flatcamGUI/ObjectUI.py:1866 flatcamGUI/PreferencesUI.py:4195 +#: flatcamGUI/PreferencesUI.py:5304 flatcamTools/ToolNonCopperClear.py:397 #: flatcamTools/ToolTransform.py:29 msgid "Offset" msgstr "Offset" #: flatcamEditors/FlatCAMGeoEditor.py:628 -#: flatcamEditors/FlatCAMGrbEditor.py:5029 flatcamGUI/FlatCAMGUI.py:698 -#: flatcamGUI/FlatCAMGUI.py:2148 +#: flatcamEditors/FlatCAMGrbEditor.py:5029 flatcamGUI/FlatCAMGUI.py:709 +#: flatcamGUI/FlatCAMGUI.py:2160 msgid "Editor" msgstr "Editor" @@ -3645,7 +3731,7 @@ msgid "Angle:" msgstr "Angle:" #: flatcamEditors/FlatCAMGeoEditor.py:662 -#: flatcamEditors/FlatCAMGrbEditor.py:5063 flatcamGUI/PreferencesUI.py:5199 +#: flatcamEditors/FlatCAMGrbEditor.py:5063 flatcamGUI/PreferencesUI.py:5217 #: flatcamTools/ToolTransform.py:64 msgid "" "Angle for Rotation action, in degrees.\n" @@ -3677,9 +3763,9 @@ msgstr "Angle X:" #: flatcamEditors/FlatCAMGeoEditor.py:703 #: flatcamEditors/FlatCAMGeoEditor.py:723 #: flatcamEditors/FlatCAMGrbEditor.py:5104 -#: flatcamEditors/FlatCAMGrbEditor.py:5124 flatcamGUI/PreferencesUI.py:5218 -#: flatcamGUI/PreferencesUI.py:5232 flatcamTools/ToolCalibration.py:445 -#: flatcamTools/ToolCalibration.py:458 +#: flatcamEditors/FlatCAMGrbEditor.py:5124 flatcamGUI/PreferencesUI.py:5236 +#: flatcamGUI/PreferencesUI.py:5250 flatcamTools/ToolCalibration.py:508 +#: flatcamTools/ToolCalibration.py:521 msgid "" "Angle for Skew action, in degrees.\n" "Float number between -360 and 359." @@ -3721,7 +3807,7 @@ msgid "Factor X:" msgstr "Factor X:" #: flatcamEditors/FlatCAMGeoEditor.py:764 -#: flatcamEditors/FlatCAMGrbEditor.py:5165 flatcamTools/ToolCalibration.py:409 +#: flatcamEditors/FlatCAMGrbEditor.py:5165 flatcamTools/ToolCalibration.py:472 msgid "Factor for Scale action over X axis." msgstr "Factor for Scale action over X axis." @@ -3749,7 +3835,7 @@ msgid "Factor Y:" msgstr "Factor Y:" #: flatcamEditors/FlatCAMGeoEditor.py:783 -#: flatcamEditors/FlatCAMGrbEditor.py:5184 flatcamTools/ToolCalibration.py:421 +#: flatcamEditors/FlatCAMGrbEditor.py:5184 flatcamTools/ToolCalibration.py:484 msgid "Factor for Scale action over Y axis." msgstr "Factor for Scale action over Y axis." @@ -3759,7 +3845,7 @@ msgid "Scale Y" msgstr "Scale Y" #: flatcamEditors/FlatCAMGeoEditor.py:802 -#: flatcamEditors/FlatCAMGrbEditor.py:5203 flatcamGUI/PreferencesUI.py:5268 +#: flatcamEditors/FlatCAMGrbEditor.py:5203 flatcamGUI/PreferencesUI.py:5286 #: flatcamTools/ToolTransform.py:191 msgid "Link" msgstr "Link" @@ -3774,7 +3860,7 @@ msgstr "" "using the Scale Factor X for both axis." #: flatcamEditors/FlatCAMGeoEditor.py:810 -#: flatcamEditors/FlatCAMGrbEditor.py:5211 flatcamGUI/PreferencesUI.py:5276 +#: flatcamEditors/FlatCAMGrbEditor.py:5211 flatcamGUI/PreferencesUI.py:5294 #: flatcamTools/ToolTransform.py:199 msgid "Scale Reference" msgstr "Scale Reference" @@ -4333,10 +4419,10 @@ msgstr "with diameter" msgid "Copy cancelled. No shape selected." msgstr "Copy cancelled. No shape selected." -#: flatcamEditors/FlatCAMGeoEditor.py:4027 flatcamGUI/FlatCAMGUI.py:3187 -#: flatcamGUI/FlatCAMGUI.py:3234 flatcamGUI/FlatCAMGUI.py:3253 -#: flatcamGUI/FlatCAMGUI.py:3388 flatcamGUI/FlatCAMGUI.py:3401 -#: flatcamGUI/FlatCAMGUI.py:3435 flatcamGUI/FlatCAMGUI.py:3493 +#: flatcamEditors/FlatCAMGeoEditor.py:4027 flatcamGUI/FlatCAMGUI.py:3200 +#: flatcamGUI/FlatCAMGUI.py:3247 flatcamGUI/FlatCAMGUI.py:3266 +#: flatcamGUI/FlatCAMGUI.py:3401 flatcamGUI/FlatCAMGUI.py:3414 +#: flatcamGUI/FlatCAMGUI.py:3448 flatcamGUI/FlatCAMGUI.py:3506 msgid "Click on target point." msgstr "Click on target point." @@ -4555,62 +4641,62 @@ msgstr "Done. Apertures Move completed." msgid "Done. Apertures copied." msgstr "Done. Apertures copied." -#: flatcamEditors/FlatCAMGrbEditor.py:2376 flatcamGUI/FlatCAMGUI.py:1922 +#: flatcamEditors/FlatCAMGrbEditor.py:2376 flatcamGUI/FlatCAMGUI.py:1934 #: flatcamGUI/PreferencesUI.py:1847 msgid "Gerber Editor" msgstr "Gerber Editor" -#: flatcamEditors/FlatCAMGrbEditor.py:2396 flatcamGUI/ObjectUI.py:210 +#: flatcamEditors/FlatCAMGrbEditor.py:2396 flatcamGUI/ObjectUI.py:212 #: flatcamTools/ToolProperties.py:156 msgid "Apertures" msgstr "Apertures" -#: flatcamEditors/FlatCAMGrbEditor.py:2398 flatcamGUI/ObjectUI.py:212 +#: flatcamEditors/FlatCAMGrbEditor.py:2398 flatcamGUI/ObjectUI.py:214 msgid "Apertures Table for the Gerber Object." msgstr "Apertures Table for the Gerber Object." #: flatcamEditors/FlatCAMGrbEditor.py:2409 -#: flatcamEditors/FlatCAMGrbEditor.py:3755 flatcamGUI/ObjectUI.py:245 +#: flatcamEditors/FlatCAMGrbEditor.py:3755 flatcamGUI/ObjectUI.py:247 msgid "Code" msgstr "Code" #: flatcamEditors/FlatCAMGrbEditor.py:2409 -#: flatcamEditors/FlatCAMGrbEditor.py:3755 flatcamGUI/ObjectUI.py:245 -#: flatcamGUI/ObjectUI.py:1141 flatcamGUI/ObjectUI.py:1784 +#: flatcamEditors/FlatCAMGrbEditor.py:3755 flatcamGUI/ObjectUI.py:247 +#: flatcamGUI/ObjectUI.py:1178 flatcamGUI/ObjectUI.py:1866 msgid "Type" msgstr "Type" #: flatcamEditors/FlatCAMGrbEditor.py:2409 -#: flatcamEditors/FlatCAMGrbEditor.py:3755 flatcamGUI/ObjectUI.py:245 -#: flatcamGUI/PreferencesUI.py:6183 flatcamGUI/PreferencesUI.py:6212 -#: flatcamGUI/PreferencesUI.py:6314 flatcamTools/ToolCopperThieving.py:260 +#: flatcamEditors/FlatCAMGrbEditor.py:3755 flatcamGUI/ObjectUI.py:247 +#: flatcamGUI/PreferencesUI.py:6201 flatcamGUI/PreferencesUI.py:6230 +#: flatcamGUI/PreferencesUI.py:6332 flatcamTools/ToolCopperThieving.py:260 #: flatcamTools/ToolCopperThieving.py:300 flatcamTools/ToolFiducials.py:156 msgid "Size" msgstr "Size" #: flatcamEditors/FlatCAMGrbEditor.py:2409 -#: flatcamEditors/FlatCAMGrbEditor.py:3755 flatcamGUI/ObjectUI.py:245 +#: flatcamEditors/FlatCAMGrbEditor.py:3755 flatcamGUI/ObjectUI.py:247 msgid "Dim" msgstr "Dim" -#: flatcamEditors/FlatCAMGrbEditor.py:2413 flatcamGUI/ObjectUI.py:249 +#: flatcamEditors/FlatCAMGrbEditor.py:2413 flatcamGUI/ObjectUI.py:251 msgid "Index" msgstr "Index" #: flatcamEditors/FlatCAMGrbEditor.py:2415 -#: flatcamEditors/FlatCAMGrbEditor.py:2444 flatcamGUI/ObjectUI.py:251 +#: flatcamEditors/FlatCAMGrbEditor.py:2444 flatcamGUI/ObjectUI.py:253 msgid "Aperture Code" msgstr "Aperture Code" -#: flatcamEditors/FlatCAMGrbEditor.py:2417 flatcamGUI/ObjectUI.py:253 +#: flatcamEditors/FlatCAMGrbEditor.py:2417 flatcamGUI/ObjectUI.py:255 msgid "Type of aperture: circular, rectangle, macros etc" msgstr "Type of aperture: circular, rectangle, macros etc" -#: flatcamEditors/FlatCAMGrbEditor.py:2419 flatcamGUI/ObjectUI.py:255 +#: flatcamEditors/FlatCAMGrbEditor.py:2419 flatcamGUI/ObjectUI.py:257 msgid "Aperture Size:" msgstr "Aperture Size:" -#: flatcamEditors/FlatCAMGrbEditor.py:2421 flatcamGUI/ObjectUI.py:257 +#: flatcamEditors/FlatCAMGrbEditor.py:2421 flatcamGUI/ObjectUI.py:259 msgid "" "Aperture Dimensions:\n" " - (width, height) for R, O type.\n" @@ -4718,9 +4804,9 @@ msgstr "" " - 'Beveled:' the corner is a line that directly connects the features " "meeting in the corner" -#: flatcamEditors/FlatCAMGrbEditor.py:2560 flatcamGUI/FlatCAMGUI.py:830 -#: flatcamGUI/FlatCAMGUI.py:1856 flatcamGUI/FlatCAMGUI.py:1908 -#: flatcamGUI/FlatCAMGUI.py:1935 flatcamGUI/FlatCAMGUI.py:2270 +#: flatcamEditors/FlatCAMGrbEditor.py:2560 flatcamGUI/FlatCAMGUI.py:842 +#: flatcamGUI/FlatCAMGUI.py:1868 flatcamGUI/FlatCAMGUI.py:1920 +#: flatcamGUI/FlatCAMGUI.py:1947 flatcamGUI/FlatCAMGUI.py:2283 msgid "Buffer" msgstr "Buffer" @@ -4796,8 +4882,8 @@ msgstr "Clear" msgid "Clear all the markings." msgstr "Clear all the markings." -#: flatcamEditors/FlatCAMGrbEditor.py:2684 flatcamGUI/FlatCAMGUI.py:820 -#: flatcamGUI/FlatCAMGUI.py:1856 flatcamGUI/FlatCAMGUI.py:2260 +#: flatcamEditors/FlatCAMGrbEditor.py:2684 flatcamGUI/FlatCAMGUI.py:832 +#: flatcamGUI/FlatCAMGUI.py:1868 flatcamGUI/FlatCAMGUI.py:2273 msgid "Add Pad Array" msgstr "Add Pad Array" @@ -5011,9 +5097,9 @@ msgstr "" msgid "String to replace the one in the Find box throughout the text." msgstr "String to replace the one in the Find box throughout the text." -#: flatcamEditors/FlatCAMTextEditor.py:87 flatcamGUI/ObjectUI.py:466 -#: flatcamGUI/ObjectUI.py:1677 flatcamGUI/PreferencesUI.py:1494 -#: flatcamGUI/PreferencesUI.py:3623 flatcamGUI/PreferencesUI.py:4598 +#: flatcamEditors/FlatCAMTextEditor.py:87 flatcamGUI/ObjectUI.py:471 +#: flatcamGUI/ObjectUI.py:1759 flatcamGUI/PreferencesUI.py:1494 +#: flatcamGUI/PreferencesUI.py:3641 flatcamGUI/PreferencesUI.py:4616 msgid "All" msgstr "All" @@ -5075,7 +5161,7 @@ msgid "Code Editor content copied to clipboard ..." msgstr "Code Editor content copied to clipboard ..." #: flatcamGUI/FlatCAMGUI.py:52 flatcamGUI/FlatCAMGUI.py:54 -#: flatcamGUI/FlatCAMGUI.py:1879 +#: flatcamGUI/FlatCAMGUI.py:1891 msgid "Toggle Panel" msgstr "Toggle Panel" @@ -5127,7 +5213,7 @@ msgstr "Document\tD" msgid "Will create a new, empty Document Object." msgstr "Will create a new, empty Document Object." -#: flatcamGUI/FlatCAMGUI.py:98 flatcamGUI/FlatCAMGUI.py:3824 +#: flatcamGUI/FlatCAMGUI.py:98 flatcamGUI/FlatCAMGUI.py:3837 #: flatcamTools/ToolPcbWizard.py:62 flatcamTools/ToolPcbWizard.py:69 msgid "Open" msgstr "Open" @@ -5136,15 +5222,15 @@ msgstr "Open" msgid "Open &Project ..." msgstr "Open &Project ..." -#: flatcamGUI/FlatCAMGUI.py:108 flatcamGUI/FlatCAMGUI.py:3833 +#: flatcamGUI/FlatCAMGUI.py:108 flatcamGUI/FlatCAMGUI.py:3846 msgid "Open &Gerber ...\tCTRL+G" msgstr "Open &Gerber ...\tCTRL+G" -#: flatcamGUI/FlatCAMGUI.py:113 flatcamGUI/FlatCAMGUI.py:3838 +#: flatcamGUI/FlatCAMGUI.py:113 flatcamGUI/FlatCAMGUI.py:3851 msgid "Open &Excellon ...\tCTRL+E" msgstr "Open &Excellon ...\tCTRL+E" -#: flatcamGUI/FlatCAMGUI.py:117 flatcamGUI/FlatCAMGUI.py:3842 +#: flatcamGUI/FlatCAMGUI.py:117 flatcamGUI/FlatCAMGUI.py:3855 msgid "Open G-&Code ..." msgstr "Open G-&Code ..." @@ -5164,22 +5250,22 @@ msgstr "Recent files" msgid "Scripting" msgstr "Scripting" -#: flatcamGUI/FlatCAMGUI.py:137 flatcamGUI/FlatCAMGUI.py:728 -#: flatcamGUI/FlatCAMGUI.py:2174 +#: flatcamGUI/FlatCAMGUI.py:137 flatcamGUI/FlatCAMGUI.py:739 +#: flatcamGUI/FlatCAMGUI.py:2186 msgid "New Script ..." msgstr "New Script ..." -#: flatcamGUI/FlatCAMGUI.py:138 flatcamGUI/FlatCAMGUI.py:729 -#: flatcamGUI/FlatCAMGUI.py:2175 +#: flatcamGUI/FlatCAMGUI.py:138 flatcamGUI/FlatCAMGUI.py:740 +#: flatcamGUI/FlatCAMGUI.py:2187 msgid "Open Script ..." msgstr "Open Script ..." -#: flatcamGUI/FlatCAMGUI.py:140 flatcamGUI/FlatCAMGUI.py:730 -#: flatcamGUI/FlatCAMGUI.py:2176 flatcamGUI/FlatCAMGUI.py:3813 +#: flatcamGUI/FlatCAMGUI.py:140 flatcamGUI/FlatCAMGUI.py:741 +#: flatcamGUI/FlatCAMGUI.py:2188 flatcamGUI/FlatCAMGUI.py:3826 msgid "Run Script ..." msgstr "Run Script ..." -#: flatcamGUI/FlatCAMGUI.py:142 flatcamGUI/FlatCAMGUI.py:3815 +#: flatcamGUI/FlatCAMGUI.py:142 flatcamGUI/FlatCAMGUI.py:3828 msgid "" "Will run the opened Tcl Script thus\n" "enabling the automation of certain\n" @@ -5209,23 +5295,28 @@ msgstr "&DXF as Geometry Object ..." msgid "&DXF as Gerber Object ..." msgstr "&DXF as Gerber Object ..." -#: flatcamGUI/FlatCAMGUI.py:173 +#: flatcamGUI/FlatCAMGUI.py:172 +#| msgid "&SVG as Geometry Object ..." +msgid "HPGL2 as Geometry Object ..." +msgstr "HPGL2 as Geometry Object ..." + +#: flatcamGUI/FlatCAMGUI.py:177 msgid "Export" msgstr "Export" -#: flatcamGUI/FlatCAMGUI.py:176 +#: flatcamGUI/FlatCAMGUI.py:180 msgid "Export &SVG ..." msgstr "Export &SVG ..." -#: flatcamGUI/FlatCAMGUI.py:179 +#: flatcamGUI/FlatCAMGUI.py:183 msgid "Export DXF ..." msgstr "Export DXF ..." -#: flatcamGUI/FlatCAMGUI.py:184 +#: flatcamGUI/FlatCAMGUI.py:188 msgid "Export &PNG ..." msgstr "Export &PNG ..." -#: flatcamGUI/FlatCAMGUI.py:186 +#: flatcamGUI/FlatCAMGUI.py:190 msgid "" "Will export an image in PNG format,\n" "the saved image will contain the visual \n" @@ -5235,11 +5326,11 @@ msgstr "" "the saved image will contain the visual \n" "information currently in FlatCAM Plot Area." -#: flatcamGUI/FlatCAMGUI.py:195 +#: flatcamGUI/FlatCAMGUI.py:199 msgid "Export &Excellon ..." msgstr "Export &Excellon ..." -#: flatcamGUI/FlatCAMGUI.py:197 +#: flatcamGUI/FlatCAMGUI.py:201 msgid "" "Will export an Excellon Object as Excellon file,\n" "the coordinates format, the file units and zeros\n" @@ -5249,11 +5340,11 @@ msgstr "" "the coordinates format, the file units and zeros\n" "are set in Preferences -> Excellon Export." -#: flatcamGUI/FlatCAMGUI.py:204 +#: flatcamGUI/FlatCAMGUI.py:208 msgid "Export &Gerber ..." msgstr "Export &Gerber ..." -#: flatcamGUI/FlatCAMGUI.py:206 +#: flatcamGUI/FlatCAMGUI.py:210 msgid "" "Will export an Gerber Object as Gerber file,\n" "the coordinates format, the file units and zeros\n" @@ -5263,61 +5354,61 @@ msgstr "" "the coordinates format, the file units and zeros\n" "are set in Preferences -> Gerber Export." -#: flatcamGUI/FlatCAMGUI.py:222 +#: flatcamGUI/FlatCAMGUI.py:226 msgid "Backup" msgstr "Backup" -#: flatcamGUI/FlatCAMGUI.py:226 +#: flatcamGUI/FlatCAMGUI.py:230 msgid "Import Preferences from file ..." msgstr "Import Preferences from file ..." -#: flatcamGUI/FlatCAMGUI.py:231 +#: flatcamGUI/FlatCAMGUI.py:235 msgid "Export Preferences to file ..." msgstr "Export Preferences to file ..." -#: flatcamGUI/FlatCAMGUI.py:237 flatcamGUI/FlatCAMGUI.py:601 -#: flatcamGUI/FlatCAMGUI.py:1097 +#: flatcamGUI/FlatCAMGUI.py:241 flatcamGUI/FlatCAMGUI.py:612 +#: flatcamGUI/FlatCAMGUI.py:1109 msgid "Save" msgstr "Save" -#: flatcamGUI/FlatCAMGUI.py:240 +#: flatcamGUI/FlatCAMGUI.py:244 msgid "&Save Project ..." msgstr "&Save Project ..." -#: flatcamGUI/FlatCAMGUI.py:245 +#: flatcamGUI/FlatCAMGUI.py:249 msgid "Save Project &As ...\tCTRL+S" msgstr "Save Project &As ...\tCTRL+S" -#: flatcamGUI/FlatCAMGUI.py:250 +#: flatcamGUI/FlatCAMGUI.py:254 msgid "Save Project C&opy ..." msgstr "Save Project C&opy ..." -#: flatcamGUI/FlatCAMGUI.py:257 +#: flatcamGUI/FlatCAMGUI.py:268 msgid "E&xit" msgstr "E&xit" -#: flatcamGUI/FlatCAMGUI.py:265 flatcamGUI/FlatCAMGUI.py:598 -#: flatcamGUI/FlatCAMGUI.py:1956 +#: flatcamGUI/FlatCAMGUI.py:276 flatcamGUI/FlatCAMGUI.py:609 +#: flatcamGUI/FlatCAMGUI.py:1968 msgid "Edit" msgstr "Edit" -#: flatcamGUI/FlatCAMGUI.py:268 +#: flatcamGUI/FlatCAMGUI.py:279 msgid "Edit Object\tE" msgstr "Edit Object\tE" -#: flatcamGUI/FlatCAMGUI.py:269 +#: flatcamGUI/FlatCAMGUI.py:280 msgid "Close Editor\tCTRL+S" msgstr "Close Editor\tCTRL+S" -#: flatcamGUI/FlatCAMGUI.py:277 +#: flatcamGUI/FlatCAMGUI.py:288 msgid "Conversion" msgstr "Conversion" -#: flatcamGUI/FlatCAMGUI.py:279 +#: flatcamGUI/FlatCAMGUI.py:290 msgid "&Join Geo/Gerber/Exc -> Geo" msgstr "&Join Geo/Gerber/Exc -> Geo" -#: flatcamGUI/FlatCAMGUI.py:281 +#: flatcamGUI/FlatCAMGUI.py:292 msgid "" "Merge a selection of objects, which can be of type:\n" "- Gerber\n" @@ -5331,28 +5422,28 @@ msgstr "" "- Geometry\n" "into a new combo Geometry object." -#: flatcamGUI/FlatCAMGUI.py:288 +#: flatcamGUI/FlatCAMGUI.py:299 msgid "Join Excellon(s) -> Excellon" msgstr "Join Excellon(s) -> Excellon" -#: flatcamGUI/FlatCAMGUI.py:290 +#: flatcamGUI/FlatCAMGUI.py:301 msgid "Merge a selection of Excellon objects into a new combo Excellon object." msgstr "" "Merge a selection of Excellon objects into a new combo Excellon object." -#: flatcamGUI/FlatCAMGUI.py:293 +#: flatcamGUI/FlatCAMGUI.py:304 msgid "Join Gerber(s) -> Gerber" msgstr "Join Gerber(s) -> Gerber" -#: flatcamGUI/FlatCAMGUI.py:295 +#: flatcamGUI/FlatCAMGUI.py:306 msgid "Merge a selection of Gerber objects into a new combo Gerber object." msgstr "Merge a selection of Gerber objects into a new combo Gerber object." -#: flatcamGUI/FlatCAMGUI.py:300 +#: flatcamGUI/FlatCAMGUI.py:311 msgid "Convert Single to MultiGeo" msgstr "Convert Single to MultiGeo" -#: flatcamGUI/FlatCAMGUI.py:302 +#: flatcamGUI/FlatCAMGUI.py:313 msgid "" "Will convert a Geometry object from single_geometry type\n" "to a multi_geometry type." @@ -5360,11 +5451,11 @@ msgstr "" "Will convert a Geometry object from single_geometry type\n" "to a multi_geometry type." -#: flatcamGUI/FlatCAMGUI.py:306 +#: flatcamGUI/FlatCAMGUI.py:317 msgid "Convert Multi to SingleGeo" msgstr "Convert Multi to SingleGeo" -#: flatcamGUI/FlatCAMGUI.py:308 +#: flatcamGUI/FlatCAMGUI.py:319 msgid "" "Will convert a Geometry object from multi_geometry type\n" "to a single_geometry type." @@ -5372,696 +5463,702 @@ msgstr "" "Will convert a Geometry object from multi_geometry type\n" "to a single_geometry type." -#: flatcamGUI/FlatCAMGUI.py:314 +#: flatcamGUI/FlatCAMGUI.py:325 msgid "Convert Any to Geo" msgstr "Convert Any to Geo" -#: flatcamGUI/FlatCAMGUI.py:316 +#: flatcamGUI/FlatCAMGUI.py:327 msgid "Convert Any to Gerber" msgstr "Convert Any to Gerber" -#: flatcamGUI/FlatCAMGUI.py:321 +#: flatcamGUI/FlatCAMGUI.py:332 msgid "&Copy\tCTRL+C" msgstr "&Copy\tCTRL+C" -#: flatcamGUI/FlatCAMGUI.py:325 +#: flatcamGUI/FlatCAMGUI.py:336 msgid "&Delete\tDEL" msgstr "&Delete\tDEL" -#: flatcamGUI/FlatCAMGUI.py:329 +#: flatcamGUI/FlatCAMGUI.py:340 msgid "Se&t Origin\tO" msgstr "Se&t Origin\tO" -#: flatcamGUI/FlatCAMGUI.py:330 +#: flatcamGUI/FlatCAMGUI.py:341 msgid "Jump to Location\tJ" msgstr "Jump to Location\tJ" -#: flatcamGUI/FlatCAMGUI.py:335 +#: flatcamGUI/FlatCAMGUI.py:346 msgid "Toggle Units\tQ" msgstr "Toggle Units\tQ" -#: flatcamGUI/FlatCAMGUI.py:336 +#: flatcamGUI/FlatCAMGUI.py:347 msgid "&Select All\tCTRL+A" msgstr "&Select All\tCTRL+A" -#: flatcamGUI/FlatCAMGUI.py:340 +#: flatcamGUI/FlatCAMGUI.py:351 msgid "&Preferences\tSHIFT+P" msgstr "&Preferences\tSHIFT+P" -#: flatcamGUI/FlatCAMGUI.py:346 flatcamTools/ToolProperties.py:153 +#: flatcamGUI/FlatCAMGUI.py:357 flatcamTools/ToolProperties.py:153 msgid "Options" msgstr "Options" -#: flatcamGUI/FlatCAMGUI.py:348 +#: flatcamGUI/FlatCAMGUI.py:359 msgid "&Rotate Selection\tSHIFT+(R)" msgstr "&Rotate Selection\tSHIFT+(R)" -#: flatcamGUI/FlatCAMGUI.py:353 +#: flatcamGUI/FlatCAMGUI.py:364 msgid "&Skew on X axis\tSHIFT+X" msgstr "&Skew on X axis\tSHIFT+X" -#: flatcamGUI/FlatCAMGUI.py:355 +#: flatcamGUI/FlatCAMGUI.py:366 msgid "S&kew on Y axis\tSHIFT+Y" msgstr "S&kew on Y axis\tSHIFT+Y" -#: flatcamGUI/FlatCAMGUI.py:360 +#: flatcamGUI/FlatCAMGUI.py:371 msgid "Flip on &X axis\tX" msgstr "Flip on &X axis\tX" -#: flatcamGUI/FlatCAMGUI.py:362 +#: flatcamGUI/FlatCAMGUI.py:373 msgid "Flip on &Y axis\tY" msgstr "Flip on &Y axis\tY" -#: flatcamGUI/FlatCAMGUI.py:367 +#: flatcamGUI/FlatCAMGUI.py:378 msgid "View source\tALT+S" msgstr "View source\tALT+S" -#: flatcamGUI/FlatCAMGUI.py:369 +#: flatcamGUI/FlatCAMGUI.py:380 msgid "Tools DataBase\tCTRL+D" msgstr "Tools DataBase\tCTRL+D" -#: flatcamGUI/FlatCAMGUI.py:376 flatcamGUI/FlatCAMGUI.py:1892 +#: flatcamGUI/FlatCAMGUI.py:387 flatcamGUI/FlatCAMGUI.py:1904 msgid "View" msgstr "View" -#: flatcamGUI/FlatCAMGUI.py:377 +#: flatcamGUI/FlatCAMGUI.py:388 msgid "Enable all plots\tALT+1" msgstr "Enable all plots\tALT+1" -#: flatcamGUI/FlatCAMGUI.py:379 +#: flatcamGUI/FlatCAMGUI.py:390 msgid "Disable all plots\tALT+2" msgstr "Disable all plots\tALT+2" -#: flatcamGUI/FlatCAMGUI.py:381 +#: flatcamGUI/FlatCAMGUI.py:392 msgid "Disable non-selected\tALT+3" msgstr "Disable non-selected\tALT+3" -#: flatcamGUI/FlatCAMGUI.py:384 +#: flatcamGUI/FlatCAMGUI.py:395 msgid "&Zoom Fit\tV" msgstr "&Zoom Fit\tV" -#: flatcamGUI/FlatCAMGUI.py:385 +#: flatcamGUI/FlatCAMGUI.py:396 msgid "&Zoom In\t=" msgstr "&Zoom In\t=" -#: flatcamGUI/FlatCAMGUI.py:386 +#: flatcamGUI/FlatCAMGUI.py:397 msgid "&Zoom Out\t-" msgstr "&Zoom Out\t-" -#: flatcamGUI/FlatCAMGUI.py:390 +#: flatcamGUI/FlatCAMGUI.py:401 msgid "Redraw All\tF5" msgstr "Redraw All\tF5" -#: flatcamGUI/FlatCAMGUI.py:394 +#: flatcamGUI/FlatCAMGUI.py:405 msgid "Toggle Code Editor\tSHIFT+E" msgstr "Toggle Code Editor\tSHIFT+E" -#: flatcamGUI/FlatCAMGUI.py:397 +#: flatcamGUI/FlatCAMGUI.py:408 msgid "&Toggle FullScreen\tALT+F10" msgstr "&Toggle FullScreen\tALT+F10" -#: flatcamGUI/FlatCAMGUI.py:399 +#: flatcamGUI/FlatCAMGUI.py:410 msgid "&Toggle Plot Area\tCTRL+F10" msgstr "&Toggle Plot Area\tCTRL+F10" -#: flatcamGUI/FlatCAMGUI.py:401 +#: flatcamGUI/FlatCAMGUI.py:412 msgid "&Toggle Project/Sel/Tool\t`" msgstr "&Toggle Project/Sel/Tool\t`" -#: flatcamGUI/FlatCAMGUI.py:405 +#: flatcamGUI/FlatCAMGUI.py:416 msgid "&Toggle Grid Snap\tG" msgstr "&Toggle Grid Snap\tG" -#: flatcamGUI/FlatCAMGUI.py:407 +#: flatcamGUI/FlatCAMGUI.py:418 msgid "&Toggle Grid Lines\tALT+G" msgstr "&Toggle Grid Lines\tALT+G" -#: flatcamGUI/FlatCAMGUI.py:408 +#: flatcamGUI/FlatCAMGUI.py:419 msgid "&Toggle Axis\tSHIFT+G" msgstr "&Toggle Axis\tSHIFT+G" -#: flatcamGUI/FlatCAMGUI.py:411 +#: flatcamGUI/FlatCAMGUI.py:422 msgid "Toggle Workspace\tSHIFT+W" msgstr "Toggle Workspace\tSHIFT+W" -#: flatcamGUI/FlatCAMGUI.py:416 +#: flatcamGUI/FlatCAMGUI.py:427 msgid "Objects" msgstr "Objects" -#: flatcamGUI/FlatCAMGUI.py:429 +#: flatcamGUI/FlatCAMGUI.py:440 msgid "&Command Line\tS" msgstr "&Command Line\tS" -#: flatcamGUI/FlatCAMGUI.py:434 +#: flatcamGUI/FlatCAMGUI.py:445 msgid "Help" msgstr "Help" -#: flatcamGUI/FlatCAMGUI.py:435 +#: flatcamGUI/FlatCAMGUI.py:446 msgid "Online Help\tF1" msgstr "Online Help\tF1" -#: flatcamGUI/FlatCAMGUI.py:443 +#: flatcamGUI/FlatCAMGUI.py:454 msgid "Report a bug" msgstr "Report a bug" -#: flatcamGUI/FlatCAMGUI.py:446 +#: flatcamGUI/FlatCAMGUI.py:457 msgid "Excellon Specification" msgstr "Excellon Specification" -#: flatcamGUI/FlatCAMGUI.py:448 +#: flatcamGUI/FlatCAMGUI.py:459 msgid "Gerber Specification" msgstr "Gerber Specification" -#: flatcamGUI/FlatCAMGUI.py:453 +#: flatcamGUI/FlatCAMGUI.py:464 msgid "Shortcuts List\tF3" msgstr "Shortcuts List\tF3" -#: flatcamGUI/FlatCAMGUI.py:454 +#: flatcamGUI/FlatCAMGUI.py:465 msgid "YouTube Channel\tF4" msgstr "YouTube Channel\tF4" -#: flatcamGUI/FlatCAMGUI.py:465 +#: flatcamGUI/FlatCAMGUI.py:476 msgid "Add Circle\tO" msgstr "Add Circle\tO" -#: flatcamGUI/FlatCAMGUI.py:467 +#: flatcamGUI/FlatCAMGUI.py:478 msgid "Add Arc\tA" msgstr "Add Arc\tA" -#: flatcamGUI/FlatCAMGUI.py:470 +#: flatcamGUI/FlatCAMGUI.py:481 msgid "Add Rectangle\tR" msgstr "Add Rectangle\tR" -#: flatcamGUI/FlatCAMGUI.py:473 +#: flatcamGUI/FlatCAMGUI.py:484 msgid "Add Polygon\tN" msgstr "Add Polygon\tN" -#: flatcamGUI/FlatCAMGUI.py:475 +#: flatcamGUI/FlatCAMGUI.py:486 msgid "Add Path\tP" msgstr "Add Path\tP" -#: flatcamGUI/FlatCAMGUI.py:477 +#: flatcamGUI/FlatCAMGUI.py:488 msgid "Add Text\tT" msgstr "Add Text\tT" -#: flatcamGUI/FlatCAMGUI.py:480 +#: flatcamGUI/FlatCAMGUI.py:491 msgid "Polygon Union\tU" msgstr "Polygon Union\tU" -#: flatcamGUI/FlatCAMGUI.py:482 +#: flatcamGUI/FlatCAMGUI.py:493 msgid "Polygon Intersection\tE" msgstr "Polygon Intersection\tE" -#: flatcamGUI/FlatCAMGUI.py:484 +#: flatcamGUI/FlatCAMGUI.py:495 msgid "Polygon Subtraction\tS" msgstr "Polygon Subtraction\tS" -#: flatcamGUI/FlatCAMGUI.py:488 +#: flatcamGUI/FlatCAMGUI.py:499 msgid "Cut Path\tX" msgstr "Cut Path\tX" -#: flatcamGUI/FlatCAMGUI.py:490 +#: flatcamGUI/FlatCAMGUI.py:501 msgid "Copy Geom\tC" msgstr "Copy Geom\tC" -#: flatcamGUI/FlatCAMGUI.py:492 +#: flatcamGUI/FlatCAMGUI.py:503 msgid "Delete Shape\tDEL" msgstr "Delete Shape\tDEL" -#: flatcamGUI/FlatCAMGUI.py:495 flatcamGUI/FlatCAMGUI.py:577 +#: flatcamGUI/FlatCAMGUI.py:506 flatcamGUI/FlatCAMGUI.py:588 msgid "Move\tM" msgstr "Move\tM" -#: flatcamGUI/FlatCAMGUI.py:497 +#: flatcamGUI/FlatCAMGUI.py:508 msgid "Buffer Tool\tB" msgstr "Buffer Tool\tB" -#: flatcamGUI/FlatCAMGUI.py:500 +#: flatcamGUI/FlatCAMGUI.py:511 msgid "Paint Tool\tI" msgstr "Paint Tool\tI" -#: flatcamGUI/FlatCAMGUI.py:503 +#: flatcamGUI/FlatCAMGUI.py:514 msgid "Transform Tool\tALT+R" msgstr "Transform Tool\tALT+R" -#: flatcamGUI/FlatCAMGUI.py:507 +#: flatcamGUI/FlatCAMGUI.py:518 msgid "Toggle Corner Snap\tK" msgstr "Toggle Corner Snap\tK" -#: flatcamGUI/FlatCAMGUI.py:513 +#: flatcamGUI/FlatCAMGUI.py:524 msgid ">Excellon Editor<" msgstr ">Excellon Editor<" -#: flatcamGUI/FlatCAMGUI.py:517 +#: flatcamGUI/FlatCAMGUI.py:528 msgid "Add Drill Array\tA" msgstr "Add Drill Array\tA" -#: flatcamGUI/FlatCAMGUI.py:519 +#: flatcamGUI/FlatCAMGUI.py:530 msgid "Add Drill\tD" msgstr "Add Drill\tD" -#: flatcamGUI/FlatCAMGUI.py:523 +#: flatcamGUI/FlatCAMGUI.py:534 msgid "Add Slot Array\tQ" msgstr "Add Slot Array\tQ" -#: flatcamGUI/FlatCAMGUI.py:525 +#: flatcamGUI/FlatCAMGUI.py:536 msgid "Add Slot\tW" msgstr "Add Slot\tW" -#: flatcamGUI/FlatCAMGUI.py:529 +#: flatcamGUI/FlatCAMGUI.py:540 msgid "Resize Drill(S)\tR" msgstr "Resize Drill(S)\tR" -#: flatcamGUI/FlatCAMGUI.py:531 flatcamGUI/FlatCAMGUI.py:572 +#: flatcamGUI/FlatCAMGUI.py:542 flatcamGUI/FlatCAMGUI.py:583 msgid "Copy\tC" msgstr "Copy\tC" -#: flatcamGUI/FlatCAMGUI.py:533 flatcamGUI/FlatCAMGUI.py:574 +#: flatcamGUI/FlatCAMGUI.py:544 flatcamGUI/FlatCAMGUI.py:585 msgid "Delete\tDEL" msgstr "Delete\tDEL" -#: flatcamGUI/FlatCAMGUI.py:538 +#: flatcamGUI/FlatCAMGUI.py:549 msgid "Move Drill(s)\tM" msgstr "Move Drill(s)\tM" -#: flatcamGUI/FlatCAMGUI.py:543 +#: flatcamGUI/FlatCAMGUI.py:554 msgid ">Gerber Editor<" msgstr ">Gerber Editor<" -#: flatcamGUI/FlatCAMGUI.py:547 +#: flatcamGUI/FlatCAMGUI.py:558 msgid "Add Pad\tP" msgstr "Add Pad\tP" -#: flatcamGUI/FlatCAMGUI.py:549 +#: flatcamGUI/FlatCAMGUI.py:560 msgid "Add Pad Array\tA" msgstr "Add Pad Array\tA" -#: flatcamGUI/FlatCAMGUI.py:551 +#: flatcamGUI/FlatCAMGUI.py:562 msgid "Add Track\tT" msgstr "Add Track\tT" -#: flatcamGUI/FlatCAMGUI.py:553 +#: flatcamGUI/FlatCAMGUI.py:564 msgid "Add Region\tN" msgstr "Add Region\tN" -#: flatcamGUI/FlatCAMGUI.py:557 +#: flatcamGUI/FlatCAMGUI.py:568 msgid "Poligonize\tALT+N" msgstr "Poligonize\tALT+N" -#: flatcamGUI/FlatCAMGUI.py:559 +#: flatcamGUI/FlatCAMGUI.py:570 msgid "Add SemiDisc\tE" msgstr "Add SemiDisc\tE" -#: flatcamGUI/FlatCAMGUI.py:560 +#: flatcamGUI/FlatCAMGUI.py:571 msgid "Add Disc\tD" msgstr "Add Disc\tD" -#: flatcamGUI/FlatCAMGUI.py:562 +#: flatcamGUI/FlatCAMGUI.py:573 msgid "Buffer\tB" msgstr "Buffer\tB" -#: flatcamGUI/FlatCAMGUI.py:563 +#: flatcamGUI/FlatCAMGUI.py:574 msgid "Scale\tS" msgstr "Scale\tS" -#: flatcamGUI/FlatCAMGUI.py:565 +#: flatcamGUI/FlatCAMGUI.py:576 msgid "Mark Area\tALT+A" msgstr "Mark Area\tALT+A" -#: flatcamGUI/FlatCAMGUI.py:567 +#: flatcamGUI/FlatCAMGUI.py:578 msgid "Eraser\tCTRL+E" msgstr "Eraser\tCTRL+E" -#: flatcamGUI/FlatCAMGUI.py:569 +#: flatcamGUI/FlatCAMGUI.py:580 msgid "Transform\tALT+R" msgstr "Transform\tALT+R" -#: flatcamGUI/FlatCAMGUI.py:592 +#: flatcamGUI/FlatCAMGUI.py:603 msgid "Enable Plot" msgstr "Enable Plot" -#: flatcamGUI/FlatCAMGUI.py:593 +#: flatcamGUI/FlatCAMGUI.py:604 msgid "Disable Plot" msgstr "Disable Plot" -#: flatcamGUI/FlatCAMGUI.py:595 +#: flatcamGUI/FlatCAMGUI.py:606 msgid "Generate CNC" msgstr "Generate CNC" -#: flatcamGUI/FlatCAMGUI.py:596 +#: flatcamGUI/FlatCAMGUI.py:607 msgid "View Source" msgstr "View Source" -#: flatcamGUI/FlatCAMGUI.py:604 flatcamGUI/FlatCAMGUI.py:1962 +#: flatcamGUI/FlatCAMGUI.py:615 flatcamGUI/FlatCAMGUI.py:1974 #: flatcamTools/ToolProperties.py:30 msgid "Properties" msgstr "Properties" -#: flatcamGUI/FlatCAMGUI.py:633 +#: flatcamGUI/FlatCAMGUI.py:644 msgid "File Toolbar" msgstr "File Toolbar" -#: flatcamGUI/FlatCAMGUI.py:637 +#: flatcamGUI/FlatCAMGUI.py:648 msgid "Edit Toolbar" msgstr "Edit Toolbar" -#: flatcamGUI/FlatCAMGUI.py:641 +#: flatcamGUI/FlatCAMGUI.py:652 msgid "View Toolbar" msgstr "View Toolbar" -#: flatcamGUI/FlatCAMGUI.py:645 +#: flatcamGUI/FlatCAMGUI.py:656 msgid "Shell Toolbar" msgstr "Shell Toolbar" -#: flatcamGUI/FlatCAMGUI.py:649 +#: flatcamGUI/FlatCAMGUI.py:660 msgid "Tools Toolbar" msgstr "Tools Toolbar" -#: flatcamGUI/FlatCAMGUI.py:653 +#: flatcamGUI/FlatCAMGUI.py:664 msgid "Excellon Editor Toolbar" msgstr "Excellon Editor Toolbar" -#: flatcamGUI/FlatCAMGUI.py:659 +#: flatcamGUI/FlatCAMGUI.py:670 msgid "Geometry Editor Toolbar" msgstr "Geometry Editor Toolbar" -#: flatcamGUI/FlatCAMGUI.py:663 +#: flatcamGUI/FlatCAMGUI.py:674 msgid "Gerber Editor Toolbar" msgstr "Gerber Editor Toolbar" -#: flatcamGUI/FlatCAMGUI.py:667 +#: flatcamGUI/FlatCAMGUI.py:678 msgid "Grid Toolbar" msgstr "Grid Toolbar" -#: flatcamGUI/FlatCAMGUI.py:688 flatcamGUI/FlatCAMGUI.py:2140 +#: flatcamGUI/FlatCAMGUI.py:699 flatcamGUI/FlatCAMGUI.py:2152 msgid "Open project" msgstr "Open project" -#: flatcamGUI/FlatCAMGUI.py:689 flatcamGUI/FlatCAMGUI.py:2141 +#: flatcamGUI/FlatCAMGUI.py:700 flatcamGUI/FlatCAMGUI.py:2153 msgid "Save project" msgstr "Save project" -#: flatcamGUI/FlatCAMGUI.py:694 flatcamGUI/FlatCAMGUI.py:2144 +#: flatcamGUI/FlatCAMGUI.py:705 flatcamGUI/FlatCAMGUI.py:2156 msgid "New Blank Geometry" msgstr "New Blank Geometry" -#: flatcamGUI/FlatCAMGUI.py:695 flatcamGUI/FlatCAMGUI.py:2145 +#: flatcamGUI/FlatCAMGUI.py:706 flatcamGUI/FlatCAMGUI.py:2157 msgid "New Blank Gerber" msgstr "New Blank Gerber" -#: flatcamGUI/FlatCAMGUI.py:696 flatcamGUI/FlatCAMGUI.py:2146 +#: flatcamGUI/FlatCAMGUI.py:707 flatcamGUI/FlatCAMGUI.py:2158 msgid "New Blank Excellon" msgstr "New Blank Excellon" -#: flatcamGUI/FlatCAMGUI.py:700 flatcamGUI/FlatCAMGUI.py:2150 +#: flatcamGUI/FlatCAMGUI.py:711 flatcamGUI/FlatCAMGUI.py:2162 msgid "Save Object and close the Editor" msgstr "Save Object and close the Editor" -#: flatcamGUI/FlatCAMGUI.py:705 flatcamGUI/FlatCAMGUI.py:2155 +#: flatcamGUI/FlatCAMGUI.py:716 flatcamGUI/FlatCAMGUI.py:2167 msgid "&Delete" msgstr "&Delete" -#: flatcamGUI/FlatCAMGUI.py:707 flatcamGUI/FlatCAMGUI.py:1454 -#: flatcamGUI/FlatCAMGUI.py:1653 flatcamGUI/FlatCAMGUI.py:2157 +#: flatcamGUI/FlatCAMGUI.py:718 flatcamGUI/FlatCAMGUI.py:1466 +#: flatcamGUI/FlatCAMGUI.py:1665 flatcamGUI/FlatCAMGUI.py:2169 #: flatcamTools/ToolDistance.py:30 flatcamTools/ToolDistance.py:160 msgid "Distance Tool" msgstr "Distance Tool" -#: flatcamGUI/FlatCAMGUI.py:709 flatcamGUI/FlatCAMGUI.py:2159 +#: flatcamGUI/FlatCAMGUI.py:720 flatcamGUI/FlatCAMGUI.py:2171 msgid "Distance Min Tool" msgstr "Distance Min Tool" -#: flatcamGUI/FlatCAMGUI.py:710 flatcamGUI/FlatCAMGUI.py:1447 -#: flatcamGUI/FlatCAMGUI.py:2160 +#: flatcamGUI/FlatCAMGUI.py:721 flatcamGUI/FlatCAMGUI.py:1459 +#: flatcamGUI/FlatCAMGUI.py:2172 msgid "Set Origin" msgstr "Set Origin" -#: flatcamGUI/FlatCAMGUI.py:711 flatcamGUI/FlatCAMGUI.py:2161 +#: flatcamGUI/FlatCAMGUI.py:722 flatcamGUI/FlatCAMGUI.py:2173 msgid "Jump to Location" msgstr "Jump to Location" -#: flatcamGUI/FlatCAMGUI.py:716 flatcamGUI/FlatCAMGUI.py:2164 +#: flatcamGUI/FlatCAMGUI.py:727 flatcamGUI/FlatCAMGUI.py:2176 msgid "&Replot" msgstr "&Replot" -#: flatcamGUI/FlatCAMGUI.py:717 flatcamGUI/FlatCAMGUI.py:2165 +#: flatcamGUI/FlatCAMGUI.py:728 flatcamGUI/FlatCAMGUI.py:2177 msgid "&Clear plot" msgstr "&Clear plot" -#: flatcamGUI/FlatCAMGUI.py:718 flatcamGUI/FlatCAMGUI.py:1450 -#: flatcamGUI/FlatCAMGUI.py:2166 +#: flatcamGUI/FlatCAMGUI.py:729 flatcamGUI/FlatCAMGUI.py:1462 +#: flatcamGUI/FlatCAMGUI.py:2178 msgid "Zoom In" msgstr "Zoom In" -#: flatcamGUI/FlatCAMGUI.py:719 flatcamGUI/FlatCAMGUI.py:1450 -#: flatcamGUI/FlatCAMGUI.py:2167 +#: flatcamGUI/FlatCAMGUI.py:730 flatcamGUI/FlatCAMGUI.py:1462 +#: flatcamGUI/FlatCAMGUI.py:2179 msgid "Zoom Out" msgstr "Zoom Out" -#: flatcamGUI/FlatCAMGUI.py:720 flatcamGUI/FlatCAMGUI.py:1449 -#: flatcamGUI/FlatCAMGUI.py:1893 flatcamGUI/FlatCAMGUI.py:2168 +#: flatcamGUI/FlatCAMGUI.py:731 flatcamGUI/FlatCAMGUI.py:1461 +#: flatcamGUI/FlatCAMGUI.py:1905 flatcamGUI/FlatCAMGUI.py:2180 msgid "Zoom Fit" msgstr "Zoom Fit" -#: flatcamGUI/FlatCAMGUI.py:727 flatcamGUI/FlatCAMGUI.py:2173 +#: flatcamGUI/FlatCAMGUI.py:738 flatcamGUI/FlatCAMGUI.py:2185 msgid "&Command Line" msgstr "&Command Line" -#: flatcamGUI/FlatCAMGUI.py:735 flatcamGUI/FlatCAMGUI.py:2179 +#: flatcamGUI/FlatCAMGUI.py:746 flatcamGUI/FlatCAMGUI.py:2191 msgid "2Sided Tool" msgstr "2Sided Tool" -#: flatcamGUI/FlatCAMGUI.py:736 flatcamGUI/ObjectUI.py:566 +#: flatcamGUI/FlatCAMGUI.py:747 flatcamGUI/ObjectUI.py:577 #: flatcamTools/ToolCutOut.py:434 msgid "Cutout Tool" msgstr "Cutout Tool" -#: flatcamGUI/FlatCAMGUI.py:737 flatcamGUI/FlatCAMGUI.py:2181 -#: flatcamGUI/ObjectUI.py:550 flatcamTools/ToolNonCopperClear.py:637 +#: flatcamGUI/FlatCAMGUI.py:748 flatcamGUI/FlatCAMGUI.py:2193 +#: flatcamGUI/ObjectUI.py:555 flatcamGUI/ObjectUI.py:1712 +#: flatcamTools/ToolNonCopperClear.py:637 msgid "NCC Tool" msgstr "NCC Tool" -#: flatcamGUI/FlatCAMGUI.py:741 flatcamGUI/FlatCAMGUI.py:2185 +#: flatcamGUI/FlatCAMGUI.py:752 flatcamGUI/FlatCAMGUI.py:2197 msgid "Panel Tool" msgstr "Panel Tool" -#: flatcamGUI/FlatCAMGUI.py:742 flatcamGUI/FlatCAMGUI.py:2186 +#: flatcamGUI/FlatCAMGUI.py:753 flatcamGUI/FlatCAMGUI.py:2198 #: flatcamTools/ToolFilm.py:578 msgid "Film Tool" msgstr "Film Tool" -#: flatcamGUI/FlatCAMGUI.py:743 flatcamGUI/FlatCAMGUI.py:2188 +#: flatcamGUI/FlatCAMGUI.py:754 flatcamGUI/FlatCAMGUI.py:2200 #: flatcamTools/ToolSolderPaste.py:547 msgid "SolderPaste Tool" msgstr "SolderPaste Tool" -#: flatcamGUI/FlatCAMGUI.py:744 flatcamGUI/FlatCAMGUI.py:2189 +#: flatcamGUI/FlatCAMGUI.py:755 flatcamGUI/FlatCAMGUI.py:2201 #: flatcamTools/ToolSub.py:35 msgid "Subtract Tool" msgstr "Subtract Tool" -#: flatcamGUI/FlatCAMGUI.py:745 flatcamTools/ToolRulesCheck.py:607 +#: flatcamGUI/FlatCAMGUI.py:756 flatcamTools/ToolRulesCheck.py:607 msgid "Rules Tool" msgstr "Rules Tool" -#: flatcamGUI/FlatCAMGUI.py:746 flatcamGUI/FlatCAMGUI.py:1465 +#: flatcamGUI/FlatCAMGUI.py:757 flatcamGUI/FlatCAMGUI.py:1477 #: flatcamTools/ToolOptimal.py:34 flatcamTools/ToolOptimal.py:310 msgid "Optimal Tool" msgstr "Optimal Tool" -#: flatcamGUI/FlatCAMGUI.py:750 flatcamGUI/FlatCAMGUI.py:1463 -#: flatcamGUI/FlatCAMGUI.py:2194 +#: flatcamGUI/FlatCAMGUI.py:761 flatcamGUI/FlatCAMGUI.py:1475 +#: flatcamGUI/FlatCAMGUI.py:2206 msgid "Calculators Tool" msgstr "Calculators Tool" -#: flatcamGUI/FlatCAMGUI.py:752 flatcamGUI/FlatCAMGUI.py:1466 -#: flatcamGUI/FlatCAMGUI.py:2196 flatcamTools/ToolQRCode.py:43 +#: flatcamGUI/FlatCAMGUI.py:763 flatcamGUI/FlatCAMGUI.py:1478 +#: flatcamGUI/FlatCAMGUI.py:2208 flatcamTools/ToolQRCode.py:43 #: flatcamTools/ToolQRCode.py:382 msgid "QRCode Tool" msgstr "QRCode Tool" -#: flatcamGUI/FlatCAMGUI.py:754 flatcamGUI/FlatCAMGUI.py:2198 +#: flatcamGUI/FlatCAMGUI.py:765 flatcamGUI/FlatCAMGUI.py:2210 #: flatcamTools/ToolCopperThieving.py:40 flatcamTools/ToolCopperThieving.py:566 msgid "Copper Thieving Tool" msgstr "Copper Thieving Tool" -#: flatcamGUI/FlatCAMGUI.py:756 flatcamGUI/FlatCAMGUI.py:1463 -#: flatcamGUI/FlatCAMGUI.py:2200 flatcamTools/ToolFiducials.py:33 +#: flatcamGUI/FlatCAMGUI.py:767 flatcamGUI/FlatCAMGUI.py:1475 +#: flatcamGUI/FlatCAMGUI.py:2212 flatcamTools/ToolFiducials.py:33 #: flatcamTools/ToolFiducials.py:393 msgid "Fiducials Tool" msgstr "Fiducials Tool" -#: flatcamGUI/FlatCAMGUI.py:761 flatcamGUI/FlatCAMGUI.py:780 -#: flatcamGUI/FlatCAMGUI.py:818 flatcamGUI/FlatCAMGUI.py:2203 -#: flatcamGUI/FlatCAMGUI.py:2258 +#: flatcamGUI/FlatCAMGUI.py:768 flatcamGUI/FlatCAMGUI.py:2213 +#: flatcamTools/ToolCalibration.py:37 +msgid "Calibration Tool" +msgstr "Calibration Tool" + +#: flatcamGUI/FlatCAMGUI.py:773 flatcamGUI/FlatCAMGUI.py:792 +#: flatcamGUI/FlatCAMGUI.py:830 flatcamGUI/FlatCAMGUI.py:2216 +#: flatcamGUI/FlatCAMGUI.py:2271 msgid "Select" msgstr "Select" -#: flatcamGUI/FlatCAMGUI.py:762 flatcamGUI/FlatCAMGUI.py:2204 +#: flatcamGUI/FlatCAMGUI.py:774 flatcamGUI/FlatCAMGUI.py:2217 msgid "Add Drill Hole" msgstr "Add Drill Hole" -#: flatcamGUI/FlatCAMGUI.py:764 flatcamGUI/FlatCAMGUI.py:2206 +#: flatcamGUI/FlatCAMGUI.py:776 flatcamGUI/FlatCAMGUI.py:2219 msgid "Add Drill Hole Array" msgstr "Add Drill Hole Array" -#: flatcamGUI/FlatCAMGUI.py:765 flatcamGUI/FlatCAMGUI.py:1738 -#: flatcamGUI/FlatCAMGUI.py:1948 flatcamGUI/FlatCAMGUI.py:2208 +#: flatcamGUI/FlatCAMGUI.py:777 flatcamGUI/FlatCAMGUI.py:1750 +#: flatcamGUI/FlatCAMGUI.py:1960 flatcamGUI/FlatCAMGUI.py:2221 msgid "Add Slot" msgstr "Add Slot" -#: flatcamGUI/FlatCAMGUI.py:767 flatcamGUI/FlatCAMGUI.py:1737 -#: flatcamGUI/FlatCAMGUI.py:1949 flatcamGUI/FlatCAMGUI.py:2210 +#: flatcamGUI/FlatCAMGUI.py:779 flatcamGUI/FlatCAMGUI.py:1749 +#: flatcamGUI/FlatCAMGUI.py:1961 flatcamGUI/FlatCAMGUI.py:2223 msgid "Add Slot Array" msgstr "Add Slot Array" -#: flatcamGUI/FlatCAMGUI.py:768 flatcamGUI/FlatCAMGUI.py:1951 -#: flatcamGUI/FlatCAMGUI.py:2207 +#: flatcamGUI/FlatCAMGUI.py:780 flatcamGUI/FlatCAMGUI.py:1963 +#: flatcamGUI/FlatCAMGUI.py:2220 msgid "Resize Drill" msgstr "Resize Drill" -#: flatcamGUI/FlatCAMGUI.py:771 flatcamGUI/FlatCAMGUI.py:2213 +#: flatcamGUI/FlatCAMGUI.py:783 flatcamGUI/FlatCAMGUI.py:2226 msgid "Copy Drill" msgstr "Copy Drill" -#: flatcamGUI/FlatCAMGUI.py:772 flatcamGUI/FlatCAMGUI.py:2215 +#: flatcamGUI/FlatCAMGUI.py:784 flatcamGUI/FlatCAMGUI.py:2228 msgid "Delete Drill" msgstr "Delete Drill" -#: flatcamGUI/FlatCAMGUI.py:775 flatcamGUI/FlatCAMGUI.py:2218 +#: flatcamGUI/FlatCAMGUI.py:787 flatcamGUI/FlatCAMGUI.py:2231 msgid "Move Drill" msgstr "Move Drill" -#: flatcamGUI/FlatCAMGUI.py:781 flatcamGUI/FlatCAMGUI.py:2222 +#: flatcamGUI/FlatCAMGUI.py:793 flatcamGUI/FlatCAMGUI.py:2235 msgid "Add Circle" msgstr "Add Circle" -#: flatcamGUI/FlatCAMGUI.py:782 flatcamGUI/FlatCAMGUI.py:2223 +#: flatcamGUI/FlatCAMGUI.py:794 flatcamGUI/FlatCAMGUI.py:2236 msgid "Add Arc" msgstr "Add Arc" -#: flatcamGUI/FlatCAMGUI.py:784 flatcamGUI/FlatCAMGUI.py:2225 +#: flatcamGUI/FlatCAMGUI.py:796 flatcamGUI/FlatCAMGUI.py:2238 msgid "Add Rectangle" msgstr "Add Rectangle" -#: flatcamGUI/FlatCAMGUI.py:787 flatcamGUI/FlatCAMGUI.py:2228 +#: flatcamGUI/FlatCAMGUI.py:799 flatcamGUI/FlatCAMGUI.py:2241 msgid "Add Path" msgstr "Add Path" -#: flatcamGUI/FlatCAMGUI.py:788 flatcamGUI/FlatCAMGUI.py:2230 +#: flatcamGUI/FlatCAMGUI.py:800 flatcamGUI/FlatCAMGUI.py:2243 msgid "Add Polygon" msgstr "Add Polygon" -#: flatcamGUI/FlatCAMGUI.py:790 flatcamGUI/FlatCAMGUI.py:2232 +#: flatcamGUI/FlatCAMGUI.py:802 flatcamGUI/FlatCAMGUI.py:2245 msgid "Add Text" msgstr "Add Text" -#: flatcamGUI/FlatCAMGUI.py:791 flatcamGUI/FlatCAMGUI.py:2233 +#: flatcamGUI/FlatCAMGUI.py:803 flatcamGUI/FlatCAMGUI.py:2246 msgid "Add Buffer" msgstr "Add Buffer" -#: flatcamGUI/FlatCAMGUI.py:792 flatcamGUI/FlatCAMGUI.py:2234 +#: flatcamGUI/FlatCAMGUI.py:804 flatcamGUI/FlatCAMGUI.py:2247 msgid "Paint Shape" msgstr "Paint Shape" -#: flatcamGUI/FlatCAMGUI.py:793 flatcamGUI/FlatCAMGUI.py:835 -#: flatcamGUI/FlatCAMGUI.py:1910 flatcamGUI/FlatCAMGUI.py:1938 -#: flatcamGUI/FlatCAMGUI.py:2235 flatcamGUI/FlatCAMGUI.py:2274 +#: flatcamGUI/FlatCAMGUI.py:805 flatcamGUI/FlatCAMGUI.py:847 +#: flatcamGUI/FlatCAMGUI.py:1922 flatcamGUI/FlatCAMGUI.py:1950 +#: flatcamGUI/FlatCAMGUI.py:2248 flatcamGUI/FlatCAMGUI.py:2287 msgid "Eraser" msgstr "Eraser" -#: flatcamGUI/FlatCAMGUI.py:796 flatcamGUI/FlatCAMGUI.py:2238 +#: flatcamGUI/FlatCAMGUI.py:808 flatcamGUI/FlatCAMGUI.py:2251 msgid "Polygon Union" msgstr "Polygon Union" -#: flatcamGUI/FlatCAMGUI.py:797 flatcamGUI/FlatCAMGUI.py:2239 +#: flatcamGUI/FlatCAMGUI.py:809 flatcamGUI/FlatCAMGUI.py:2252 msgid "Polygon Explode" msgstr "Polygon Explode" -#: flatcamGUI/FlatCAMGUI.py:800 flatcamGUI/FlatCAMGUI.py:2242 +#: flatcamGUI/FlatCAMGUI.py:812 flatcamGUI/FlatCAMGUI.py:2255 msgid "Polygon Intersection" msgstr "Polygon Intersection" -#: flatcamGUI/FlatCAMGUI.py:802 flatcamGUI/FlatCAMGUI.py:2244 +#: flatcamGUI/FlatCAMGUI.py:814 flatcamGUI/FlatCAMGUI.py:2257 msgid "Polygon Subtraction" msgstr "Polygon Subtraction" -#: flatcamGUI/FlatCAMGUI.py:805 flatcamGUI/FlatCAMGUI.py:2247 +#: flatcamGUI/FlatCAMGUI.py:817 flatcamGUI/FlatCAMGUI.py:2260 msgid "Cut Path" msgstr "Cut Path" -#: flatcamGUI/FlatCAMGUI.py:806 +#: flatcamGUI/FlatCAMGUI.py:818 msgid "Copy Shape(s)" msgstr "Copy Shape(s)" -#: flatcamGUI/FlatCAMGUI.py:809 +#: flatcamGUI/FlatCAMGUI.py:821 msgid "Delete Shape '-'" msgstr "Delete Shape '-'" -#: flatcamGUI/FlatCAMGUI.py:811 flatcamGUI/FlatCAMGUI.py:842 -#: flatcamGUI/FlatCAMGUI.py:1917 flatcamGUI/FlatCAMGUI.py:1942 -#: flatcamGUI/FlatCAMGUI.py:2252 flatcamGUI/FlatCAMGUI.py:2281 +#: flatcamGUI/FlatCAMGUI.py:823 flatcamGUI/FlatCAMGUI.py:854 +#: flatcamGUI/FlatCAMGUI.py:1929 flatcamGUI/FlatCAMGUI.py:1954 +#: flatcamGUI/FlatCAMGUI.py:2265 flatcamGUI/FlatCAMGUI.py:2294 msgid "Transformations" msgstr "Transformations" -#: flatcamGUI/FlatCAMGUI.py:813 +#: flatcamGUI/FlatCAMGUI.py:825 msgid "Move Objects " msgstr "Move Objects " -#: flatcamGUI/FlatCAMGUI.py:819 flatcamGUI/FlatCAMGUI.py:1857 -#: flatcamGUI/FlatCAMGUI.py:2259 +#: flatcamGUI/FlatCAMGUI.py:831 flatcamGUI/FlatCAMGUI.py:1869 +#: flatcamGUI/FlatCAMGUI.py:2272 msgid "Add Pad" msgstr "Add Pad" -#: flatcamGUI/FlatCAMGUI.py:821 flatcamGUI/FlatCAMGUI.py:1858 -#: flatcamGUI/FlatCAMGUI.py:2261 +#: flatcamGUI/FlatCAMGUI.py:833 flatcamGUI/FlatCAMGUI.py:1870 +#: flatcamGUI/FlatCAMGUI.py:2274 msgid "Add Track" msgstr "Add Track" -#: flatcamGUI/FlatCAMGUI.py:822 flatcamGUI/FlatCAMGUI.py:1857 -#: flatcamGUI/FlatCAMGUI.py:2262 +#: flatcamGUI/FlatCAMGUI.py:834 flatcamGUI/FlatCAMGUI.py:1869 +#: flatcamGUI/FlatCAMGUI.py:2275 msgid "Add Region" msgstr "Add Region" -#: flatcamGUI/FlatCAMGUI.py:824 flatcamGUI/FlatCAMGUI.py:1930 -#: flatcamGUI/FlatCAMGUI.py:2264 +#: flatcamGUI/FlatCAMGUI.py:836 flatcamGUI/FlatCAMGUI.py:1942 +#: flatcamGUI/FlatCAMGUI.py:2277 msgid "Poligonize" msgstr "Poligonize" -#: flatcamGUI/FlatCAMGUI.py:826 flatcamGUI/FlatCAMGUI.py:1931 -#: flatcamGUI/FlatCAMGUI.py:2266 +#: flatcamGUI/FlatCAMGUI.py:838 flatcamGUI/FlatCAMGUI.py:1943 +#: flatcamGUI/FlatCAMGUI.py:2279 msgid "SemiDisc" msgstr "SemiDisc" -#: flatcamGUI/FlatCAMGUI.py:827 flatcamGUI/FlatCAMGUI.py:1932 -#: flatcamGUI/FlatCAMGUI.py:2267 +#: flatcamGUI/FlatCAMGUI.py:839 flatcamGUI/FlatCAMGUI.py:1944 +#: flatcamGUI/FlatCAMGUI.py:2280 msgid "Disc" msgstr "Disc" -#: flatcamGUI/FlatCAMGUI.py:833 flatcamGUI/FlatCAMGUI.py:1937 -#: flatcamGUI/FlatCAMGUI.py:2273 +#: flatcamGUI/FlatCAMGUI.py:845 flatcamGUI/FlatCAMGUI.py:1949 +#: flatcamGUI/FlatCAMGUI.py:2286 msgid "Mark Area" msgstr "Mark Area" -#: flatcamGUI/FlatCAMGUI.py:844 flatcamGUI/FlatCAMGUI.py:1857 -#: flatcamGUI/FlatCAMGUI.py:1920 flatcamGUI/FlatCAMGUI.py:1961 -#: flatcamGUI/FlatCAMGUI.py:2283 flatcamTools/ToolMove.py:28 +#: flatcamGUI/FlatCAMGUI.py:856 flatcamGUI/FlatCAMGUI.py:1869 +#: flatcamGUI/FlatCAMGUI.py:1932 flatcamGUI/FlatCAMGUI.py:1973 +#: flatcamGUI/FlatCAMGUI.py:2296 flatcamTools/ToolMove.py:28 msgid "Move" msgstr "Move" -#: flatcamGUI/FlatCAMGUI.py:851 flatcamGUI/FlatCAMGUI.py:2289 +#: flatcamGUI/FlatCAMGUI.py:863 flatcamGUI/FlatCAMGUI.py:2302 msgid "Snap to grid" msgstr "Snap to grid" -#: flatcamGUI/FlatCAMGUI.py:854 flatcamGUI/FlatCAMGUI.py:2292 +#: flatcamGUI/FlatCAMGUI.py:866 flatcamGUI/FlatCAMGUI.py:2305 msgid "Grid X snapping distance" msgstr "Grid X snapping distance" -#: flatcamGUI/FlatCAMGUI.py:859 flatcamGUI/FlatCAMGUI.py:2297 +#: flatcamGUI/FlatCAMGUI.py:871 flatcamGUI/FlatCAMGUI.py:2310 msgid "Grid Y snapping distance" msgstr "Grid Y snapping distance" -#: flatcamGUI/FlatCAMGUI.py:865 flatcamGUI/FlatCAMGUI.py:2303 +#: flatcamGUI/FlatCAMGUI.py:877 flatcamGUI/FlatCAMGUI.py:2316 msgid "" "When active, value on Grid_X\n" "is copied to the Grid_Y value." @@ -6069,66 +6166,67 @@ msgstr "" "When active, value on Grid_X\n" "is copied to the Grid_Y value." -#: flatcamGUI/FlatCAMGUI.py:871 flatcamGUI/FlatCAMGUI.py:2309 +#: flatcamGUI/FlatCAMGUI.py:883 flatcamGUI/FlatCAMGUI.py:2322 msgid "Snap to corner" msgstr "Snap to corner" -#: flatcamGUI/FlatCAMGUI.py:875 flatcamGUI/FlatCAMGUI.py:2313 +#: flatcamGUI/FlatCAMGUI.py:887 flatcamGUI/FlatCAMGUI.py:2326 #: flatcamGUI/PreferencesUI.py:348 msgid "Max. magnet distance" msgstr "Max. magnet distance" -#: flatcamGUI/FlatCAMGUI.py:897 flatcamGUI/FlatCAMGUI.py:1887 +#: flatcamGUI/FlatCAMGUI.py:909 flatcamGUI/FlatCAMGUI.py:1899 msgid "Project" msgstr "Project" -#: flatcamGUI/FlatCAMGUI.py:909 +#: flatcamGUI/FlatCAMGUI.py:921 msgid "Selected" msgstr "Selected" -#: flatcamGUI/FlatCAMGUI.py:936 flatcamGUI/FlatCAMGUI.py:944 +#: flatcamGUI/FlatCAMGUI.py:948 flatcamGUI/FlatCAMGUI.py:956 msgid "Plot Area" msgstr "Plot Area" -#: flatcamGUI/FlatCAMGUI.py:971 +#: flatcamGUI/FlatCAMGUI.py:983 msgid "General" msgstr "General" -#: flatcamGUI/FlatCAMGUI.py:986 flatcamTools/ToolCopperThieving.py:74 +#: flatcamGUI/FlatCAMGUI.py:998 flatcamTools/ToolCopperThieving.py:74 #: flatcamTools/ToolDblSided.py:57 flatcamTools/ToolOptimal.py:71 #: flatcamTools/ToolQRCode.py:77 msgid "GERBER" msgstr "GERBER" -#: flatcamGUI/FlatCAMGUI.py:996 flatcamTools/ToolDblSided.py:85 +#: flatcamGUI/FlatCAMGUI.py:1008 flatcamTools/ToolDblSided.py:85 msgid "EXCELLON" msgstr "EXCELLON" -#: flatcamGUI/FlatCAMGUI.py:1006 flatcamTools/ToolDblSided.py:113 +#: flatcamGUI/FlatCAMGUI.py:1018 flatcamTools/ToolDblSided.py:113 msgid "GEOMETRY" msgstr "GEOMETRY" -#: flatcamGUI/FlatCAMGUI.py:1016 +#: flatcamGUI/FlatCAMGUI.py:1028 msgid "CNC-JOB" msgstr "CNC-JOB" -#: flatcamGUI/FlatCAMGUI.py:1025 flatcamGUI/ObjectUI.py:539 +#: flatcamGUI/FlatCAMGUI.py:1037 flatcamGUI/ObjectUI.py:544 +#: flatcamGUI/ObjectUI.py:1687 msgid "TOOLS" msgstr "TOOLS" -#: flatcamGUI/FlatCAMGUI.py:1034 +#: flatcamGUI/FlatCAMGUI.py:1046 msgid "TOOLS 2" msgstr "TOOLS 2" -#: flatcamGUI/FlatCAMGUI.py:1044 +#: flatcamGUI/FlatCAMGUI.py:1056 msgid "UTILITIES" msgstr "UTILITIES" -#: flatcamGUI/FlatCAMGUI.py:1061 +#: flatcamGUI/FlatCAMGUI.py:1073 msgid "Import Preferences" msgstr "Import Preferences" -#: flatcamGUI/FlatCAMGUI.py:1064 +#: flatcamGUI/FlatCAMGUI.py:1076 msgid "" "Import a full set of FlatCAM settings from a file\n" "previously saved on HDD.\n" @@ -6142,11 +6240,11 @@ msgstr "" "FlatCAM automatically save a 'factory_defaults' file\n" "on the first start. Do not delete that file." -#: flatcamGUI/FlatCAMGUI.py:1071 +#: flatcamGUI/FlatCAMGUI.py:1083 msgid "Export Preferences" msgstr "Export Preferences" -#: flatcamGUI/FlatCAMGUI.py:1074 +#: flatcamGUI/FlatCAMGUI.py:1086 msgid "" "Export a full set of FlatCAM settings in a file\n" "that is saved on HDD." @@ -6154,23 +6252,23 @@ msgstr "" "Export a full set of FlatCAM settings in a file\n" "that is saved on HDD." -#: flatcamGUI/FlatCAMGUI.py:1079 +#: flatcamGUI/FlatCAMGUI.py:1091 msgid "Open Pref Folder" msgstr "Open Pref Folder" -#: flatcamGUI/FlatCAMGUI.py:1082 +#: flatcamGUI/FlatCAMGUI.py:1094 msgid "Open the folder where FlatCAM save the preferences files." msgstr "Open the folder where FlatCAM save the preferences files." -#: flatcamGUI/FlatCAMGUI.py:1090 +#: flatcamGUI/FlatCAMGUI.py:1102 msgid "Apply" msgstr "Apply" -#: flatcamGUI/FlatCAMGUI.py:1093 +#: flatcamGUI/FlatCAMGUI.py:1105 msgid "Apply the current preferences without saving to a file." msgstr "Apply the current preferences without saving to a file." -#: flatcamGUI/FlatCAMGUI.py:1100 +#: flatcamGUI/FlatCAMGUI.py:1112 msgid "" "Save the current settings in the 'current_defaults' file\n" "which is the file storing the working default preferences." @@ -6178,527 +6276,527 @@ msgstr "" "Save the current settings in the 'current_defaults' file\n" "which is the file storing the working default preferences." -#: flatcamGUI/FlatCAMGUI.py:1108 +#: flatcamGUI/FlatCAMGUI.py:1120 msgid "Will not save the changes and will close the preferences window." msgstr "Will not save the changes and will close the preferences window." -#: flatcamGUI/FlatCAMGUI.py:1444 +#: flatcamGUI/FlatCAMGUI.py:1456 msgid "SHOW SHORTCUT LIST" msgstr "SHOW SHORTCUT LIST" -#: flatcamGUI/FlatCAMGUI.py:1444 +#: flatcamGUI/FlatCAMGUI.py:1456 msgid "Switch to Project Tab" msgstr "Switch to Project Tab" -#: flatcamGUI/FlatCAMGUI.py:1444 +#: flatcamGUI/FlatCAMGUI.py:1456 msgid "Switch to Selected Tab" msgstr "Switch to Selected Tab" -#: flatcamGUI/FlatCAMGUI.py:1445 +#: flatcamGUI/FlatCAMGUI.py:1457 msgid "Switch to Tool Tab" msgstr "Switch to Tool Tab" -#: flatcamGUI/FlatCAMGUI.py:1446 +#: flatcamGUI/FlatCAMGUI.py:1458 msgid "New Gerber" msgstr "New Gerber" -#: flatcamGUI/FlatCAMGUI.py:1446 +#: flatcamGUI/FlatCAMGUI.py:1458 msgid "Edit Object (if selected)" msgstr "Edit Object (if selected)" -#: flatcamGUI/FlatCAMGUI.py:1446 +#: flatcamGUI/FlatCAMGUI.py:1458 msgid "Jump to Coordinates" msgstr "Jump to Coordinates" -#: flatcamGUI/FlatCAMGUI.py:1447 +#: flatcamGUI/FlatCAMGUI.py:1459 msgid "New Excellon" msgstr "New Excellon" -#: flatcamGUI/FlatCAMGUI.py:1447 +#: flatcamGUI/FlatCAMGUI.py:1459 msgid "Move Obj" msgstr "Move Obj" -#: flatcamGUI/FlatCAMGUI.py:1447 +#: flatcamGUI/FlatCAMGUI.py:1459 msgid "New Geometry" msgstr "New Geometry" -#: flatcamGUI/FlatCAMGUI.py:1447 +#: flatcamGUI/FlatCAMGUI.py:1459 msgid "Change Units" msgstr "Change Units" -#: flatcamGUI/FlatCAMGUI.py:1448 +#: flatcamGUI/FlatCAMGUI.py:1460 msgid "Open Properties Tool" msgstr "Open Properties Tool" -#: flatcamGUI/FlatCAMGUI.py:1448 +#: flatcamGUI/FlatCAMGUI.py:1460 msgid "Rotate by 90 degree CW" msgstr "Rotate by 90 degree CW" -#: flatcamGUI/FlatCAMGUI.py:1448 +#: flatcamGUI/FlatCAMGUI.py:1460 msgid "Shell Toggle" msgstr "Shell Toggle" -#: flatcamGUI/FlatCAMGUI.py:1449 +#: flatcamGUI/FlatCAMGUI.py:1461 msgid "" "Add a Tool (when in Geometry Selected Tab or in Tools NCC or Tools Paint)" msgstr "" "Add a Tool (when in Geometry Selected Tab or in Tools NCC or Tools Paint)" -#: flatcamGUI/FlatCAMGUI.py:1450 +#: flatcamGUI/FlatCAMGUI.py:1462 msgid "Flip on X_axis" msgstr "Flip on X_axis" -#: flatcamGUI/FlatCAMGUI.py:1450 +#: flatcamGUI/FlatCAMGUI.py:1462 msgid "Flip on Y_axis" msgstr "Flip on Y_axis" -#: flatcamGUI/FlatCAMGUI.py:1453 +#: flatcamGUI/FlatCAMGUI.py:1465 msgid "Copy Obj" msgstr "Copy Obj" -#: flatcamGUI/FlatCAMGUI.py:1453 +#: flatcamGUI/FlatCAMGUI.py:1465 msgid "Open Tools Database" msgstr "Open Tools Database" -#: flatcamGUI/FlatCAMGUI.py:1454 +#: flatcamGUI/FlatCAMGUI.py:1466 msgid "Open Excellon File" msgstr "Open Excellon File" -#: flatcamGUI/FlatCAMGUI.py:1454 +#: flatcamGUI/FlatCAMGUI.py:1466 msgid "Open Gerber File" msgstr "Open Gerber File" -#: flatcamGUI/FlatCAMGUI.py:1454 +#: flatcamGUI/FlatCAMGUI.py:1466 msgid "New Project" msgstr "New Project" -#: flatcamGUI/FlatCAMGUI.py:1455 flatcamTools/ToolPDF.py:42 +#: flatcamGUI/FlatCAMGUI.py:1467 flatcamTools/ToolPDF.py:42 msgid "PDF Import Tool" msgstr "PDF Import Tool" -#: flatcamGUI/FlatCAMGUI.py:1455 +#: flatcamGUI/FlatCAMGUI.py:1467 msgid "Save Project As" msgstr "Save Project As" -#: flatcamGUI/FlatCAMGUI.py:1455 +#: flatcamGUI/FlatCAMGUI.py:1467 msgid "Toggle Plot Area" msgstr "Toggle Plot Area" -#: flatcamGUI/FlatCAMGUI.py:1458 +#: flatcamGUI/FlatCAMGUI.py:1470 msgid "Copy Obj_Name" msgstr "Copy Obj_Name" -#: flatcamGUI/FlatCAMGUI.py:1459 +#: flatcamGUI/FlatCAMGUI.py:1471 msgid "Toggle Code Editor" msgstr "Toggle Code Editor" -#: flatcamGUI/FlatCAMGUI.py:1459 +#: flatcamGUI/FlatCAMGUI.py:1471 msgid "Toggle the axis" msgstr "Toggle the axis" -#: flatcamGUI/FlatCAMGUI.py:1459 flatcamGUI/FlatCAMGUI.py:1651 -#: flatcamGUI/FlatCAMGUI.py:1738 flatcamGUI/FlatCAMGUI.py:1860 +#: flatcamGUI/FlatCAMGUI.py:1471 flatcamGUI/FlatCAMGUI.py:1663 +#: flatcamGUI/FlatCAMGUI.py:1750 flatcamGUI/FlatCAMGUI.py:1872 msgid "Distance Minimum Tool" msgstr "Distance Minimum Tool" -#: flatcamGUI/FlatCAMGUI.py:1459 +#: flatcamGUI/FlatCAMGUI.py:1471 msgid "Open Preferences Window" msgstr "Open Preferences Window" -#: flatcamGUI/FlatCAMGUI.py:1460 +#: flatcamGUI/FlatCAMGUI.py:1472 msgid "Rotate by 90 degree CCW" msgstr "Rotate by 90 degree CCW" -#: flatcamGUI/FlatCAMGUI.py:1460 +#: flatcamGUI/FlatCAMGUI.py:1472 msgid "Run a Script" msgstr "Run a Script" -#: flatcamGUI/FlatCAMGUI.py:1460 +#: flatcamGUI/FlatCAMGUI.py:1472 msgid "Toggle the workspace" msgstr "Toggle the workspace" -#: flatcamGUI/FlatCAMGUI.py:1460 +#: flatcamGUI/FlatCAMGUI.py:1472 msgid "Skew on X axis" msgstr "Skew on X axis" -#: flatcamGUI/FlatCAMGUI.py:1461 +#: flatcamGUI/FlatCAMGUI.py:1473 msgid "Skew on Y axis" msgstr "Skew on Y axis" -#: flatcamGUI/FlatCAMGUI.py:1463 +#: flatcamGUI/FlatCAMGUI.py:1475 msgid "2-Sided PCB Tool" msgstr "2-Sided PCB Tool" -#: flatcamGUI/FlatCAMGUI.py:1463 +#: flatcamGUI/FlatCAMGUI.py:1475 msgid "Transformations Tool" msgstr "Transformations Tool" -#: flatcamGUI/FlatCAMGUI.py:1464 +#: flatcamGUI/FlatCAMGUI.py:1476 msgid "Solder Paste Dispensing Tool" msgstr "Solder Paste Dispensing Tool" -#: flatcamGUI/FlatCAMGUI.py:1465 +#: flatcamGUI/FlatCAMGUI.py:1477 msgid "Film PCB Tool" msgstr "Film PCB Tool" -#: flatcamGUI/FlatCAMGUI.py:1465 +#: flatcamGUI/FlatCAMGUI.py:1477 msgid "Non-Copper Clearing Tool" msgstr "Non-Copper Clearing Tool" -#: flatcamGUI/FlatCAMGUI.py:1466 +#: flatcamGUI/FlatCAMGUI.py:1478 msgid "Paint Area Tool" msgstr "Paint Area Tool" -#: flatcamGUI/FlatCAMGUI.py:1466 +#: flatcamGUI/FlatCAMGUI.py:1478 msgid "Rules Check Tool" msgstr "Rules Check Tool" -#: flatcamGUI/FlatCAMGUI.py:1467 +#: flatcamGUI/FlatCAMGUI.py:1479 msgid "View File Source" msgstr "View File Source" -#: flatcamGUI/FlatCAMGUI.py:1468 +#: flatcamGUI/FlatCAMGUI.py:1480 msgid "Cutout PCB Tool" msgstr "Cutout PCB Tool" -#: flatcamGUI/FlatCAMGUI.py:1468 +#: flatcamGUI/FlatCAMGUI.py:1480 msgid "Enable all Plots" msgstr "Enable all Plots" -#: flatcamGUI/FlatCAMGUI.py:1468 +#: flatcamGUI/FlatCAMGUI.py:1480 msgid "Disable all Plots" msgstr "Disable all Plots" -#: flatcamGUI/FlatCAMGUI.py:1468 +#: flatcamGUI/FlatCAMGUI.py:1480 msgid "Disable Non-selected Plots" msgstr "Disable Non-selected Plots" -#: flatcamGUI/FlatCAMGUI.py:1469 +#: flatcamGUI/FlatCAMGUI.py:1481 msgid "Toggle Full Screen" msgstr "Toggle Full Screen" -#: flatcamGUI/FlatCAMGUI.py:1472 +#: flatcamGUI/FlatCAMGUI.py:1484 msgid "Abort current task (gracefully)" msgstr "Abort current task (gracefully)" -#: flatcamGUI/FlatCAMGUI.py:1475 +#: flatcamGUI/FlatCAMGUI.py:1487 msgid "Open Online Manual" msgstr "Open Online Manual" -#: flatcamGUI/FlatCAMGUI.py:1476 +#: flatcamGUI/FlatCAMGUI.py:1488 msgid "Open Online Tutorials" msgstr "Open Online Tutorials" -#: flatcamGUI/FlatCAMGUI.py:1476 +#: flatcamGUI/FlatCAMGUI.py:1488 msgid "Refresh Plots" msgstr "Refresh Plots" -#: flatcamGUI/FlatCAMGUI.py:1476 flatcamTools/ToolSolderPaste.py:503 +#: flatcamGUI/FlatCAMGUI.py:1488 flatcamTools/ToolSolderPaste.py:503 msgid "Delete Object" msgstr "Delete Object" -#: flatcamGUI/FlatCAMGUI.py:1476 +#: flatcamGUI/FlatCAMGUI.py:1488 msgid "Alternate: Delete Tool" msgstr "Alternate: Delete Tool" -#: flatcamGUI/FlatCAMGUI.py:1477 +#: flatcamGUI/FlatCAMGUI.py:1489 msgid "(left to Key_1)Toogle Notebook Area (Left Side)" msgstr "(left to Key_1)Toogle Notebook Area (Left Side)" -#: flatcamGUI/FlatCAMGUI.py:1477 +#: flatcamGUI/FlatCAMGUI.py:1489 msgid "En(Dis)able Obj Plot" msgstr "En(Dis)able Obj Plot" -#: flatcamGUI/FlatCAMGUI.py:1478 +#: flatcamGUI/FlatCAMGUI.py:1490 msgid "Deselects all objects" msgstr "Deselects all objects" -#: flatcamGUI/FlatCAMGUI.py:1492 +#: flatcamGUI/FlatCAMGUI.py:1504 msgid "Editor Shortcut list" msgstr "Editor Shortcut list" -#: flatcamGUI/FlatCAMGUI.py:1646 +#: flatcamGUI/FlatCAMGUI.py:1658 msgid "GEOMETRY EDITOR" msgstr "GEOMETRY EDITOR" -#: flatcamGUI/FlatCAMGUI.py:1646 +#: flatcamGUI/FlatCAMGUI.py:1658 msgid "Draw an Arc" msgstr "Draw an Arc" -#: flatcamGUI/FlatCAMGUI.py:1646 +#: flatcamGUI/FlatCAMGUI.py:1658 msgid "Copy Geo Item" msgstr "Copy Geo Item" -#: flatcamGUI/FlatCAMGUI.py:1647 +#: flatcamGUI/FlatCAMGUI.py:1659 msgid "Within Add Arc will toogle the ARC direction: CW or CCW" msgstr "Within Add Arc will toogle the ARC direction: CW or CCW" -#: flatcamGUI/FlatCAMGUI.py:1647 +#: flatcamGUI/FlatCAMGUI.py:1659 msgid "Polygon Intersection Tool" msgstr "Polygon Intersection Tool" -#: flatcamGUI/FlatCAMGUI.py:1648 +#: flatcamGUI/FlatCAMGUI.py:1660 msgid "Geo Paint Tool" msgstr "Geo Paint Tool" -#: flatcamGUI/FlatCAMGUI.py:1648 flatcamGUI/FlatCAMGUI.py:1737 -#: flatcamGUI/FlatCAMGUI.py:1857 +#: flatcamGUI/FlatCAMGUI.py:1660 flatcamGUI/FlatCAMGUI.py:1749 +#: flatcamGUI/FlatCAMGUI.py:1869 msgid "Jump to Location (x, y)" msgstr "Jump to Location (x, y)" -#: flatcamGUI/FlatCAMGUI.py:1648 +#: flatcamGUI/FlatCAMGUI.py:1660 msgid "Toggle Corner Snap" msgstr "Toggle Corner Snap" -#: flatcamGUI/FlatCAMGUI.py:1648 +#: flatcamGUI/FlatCAMGUI.py:1660 msgid "Move Geo Item" msgstr "Move Geo Item" -#: flatcamGUI/FlatCAMGUI.py:1649 +#: flatcamGUI/FlatCAMGUI.py:1661 msgid "Within Add Arc will cycle through the ARC modes" msgstr "Within Add Arc will cycle through the ARC modes" -#: flatcamGUI/FlatCAMGUI.py:1649 +#: flatcamGUI/FlatCAMGUI.py:1661 msgid "Draw a Polygon" msgstr "Draw a Polygon" -#: flatcamGUI/FlatCAMGUI.py:1649 +#: flatcamGUI/FlatCAMGUI.py:1661 msgid "Draw a Circle" msgstr "Draw a Circle" -#: flatcamGUI/FlatCAMGUI.py:1650 +#: flatcamGUI/FlatCAMGUI.py:1662 msgid "Draw a Path" msgstr "Draw a Path" -#: flatcamGUI/FlatCAMGUI.py:1650 +#: flatcamGUI/FlatCAMGUI.py:1662 msgid "Draw Rectangle" msgstr "Draw Rectangle" -#: flatcamGUI/FlatCAMGUI.py:1650 +#: flatcamGUI/FlatCAMGUI.py:1662 msgid "Polygon Subtraction Tool" msgstr "Polygon Subtraction Tool" -#: flatcamGUI/FlatCAMGUI.py:1650 +#: flatcamGUI/FlatCAMGUI.py:1662 msgid "Add Text Tool" msgstr "Add Text Tool" -#: flatcamGUI/FlatCAMGUI.py:1651 +#: flatcamGUI/FlatCAMGUI.py:1663 msgid "Polygon Union Tool" msgstr "Polygon Union Tool" -#: flatcamGUI/FlatCAMGUI.py:1651 +#: flatcamGUI/FlatCAMGUI.py:1663 msgid "Flip shape on X axis" msgstr "Flip shape on X axis" -#: flatcamGUI/FlatCAMGUI.py:1651 +#: flatcamGUI/FlatCAMGUI.py:1663 msgid "Flip shape on Y axis" msgstr "Flip shape on Y axis" -#: flatcamGUI/FlatCAMGUI.py:1652 +#: flatcamGUI/FlatCAMGUI.py:1664 msgid "Skew shape on X axis" msgstr "Skew shape on X axis" -#: flatcamGUI/FlatCAMGUI.py:1652 +#: flatcamGUI/FlatCAMGUI.py:1664 msgid "Skew shape on Y axis" msgstr "Skew shape on Y axis" -#: flatcamGUI/FlatCAMGUI.py:1652 +#: flatcamGUI/FlatCAMGUI.py:1664 msgid "Editor Transformation Tool" msgstr "Editor Transformation Tool" -#: flatcamGUI/FlatCAMGUI.py:1653 +#: flatcamGUI/FlatCAMGUI.py:1665 msgid "Offset shape on X axis" msgstr "Offset shape on X axis" -#: flatcamGUI/FlatCAMGUI.py:1653 +#: flatcamGUI/FlatCAMGUI.py:1665 msgid "Offset shape on Y axis" msgstr "Offset shape on Y axis" -#: flatcamGUI/FlatCAMGUI.py:1654 flatcamGUI/FlatCAMGUI.py:1740 -#: flatcamGUI/FlatCAMGUI.py:1862 +#: flatcamGUI/FlatCAMGUI.py:1666 flatcamGUI/FlatCAMGUI.py:1752 +#: flatcamGUI/FlatCAMGUI.py:1874 msgid "Save Object and Exit Editor" msgstr "Save Object and Exit Editor" -#: flatcamGUI/FlatCAMGUI.py:1654 +#: flatcamGUI/FlatCAMGUI.py:1666 msgid "Polygon Cut Tool" msgstr "Polygon Cut Tool" -#: flatcamGUI/FlatCAMGUI.py:1655 +#: flatcamGUI/FlatCAMGUI.py:1667 msgid "Rotate Geometry" msgstr "Rotate Geometry" -#: flatcamGUI/FlatCAMGUI.py:1655 +#: flatcamGUI/FlatCAMGUI.py:1667 msgid "Finish drawing for certain tools" msgstr "Finish drawing for certain tools" -#: flatcamGUI/FlatCAMGUI.py:1655 flatcamGUI/FlatCAMGUI.py:1740 -#: flatcamGUI/FlatCAMGUI.py:1860 +#: flatcamGUI/FlatCAMGUI.py:1667 flatcamGUI/FlatCAMGUI.py:1752 +#: flatcamGUI/FlatCAMGUI.py:1872 msgid "Abort and return to Select" msgstr "Abort and return to Select" -#: flatcamGUI/FlatCAMGUI.py:1656 flatcamGUI/FlatCAMGUI.py:2250 +#: flatcamGUI/FlatCAMGUI.py:1668 flatcamGUI/FlatCAMGUI.py:2263 msgid "Delete Shape" msgstr "Delete Shape" -#: flatcamGUI/FlatCAMGUI.py:1736 +#: flatcamGUI/FlatCAMGUI.py:1748 msgid "EXCELLON EDITOR" msgstr "EXCELLON EDITOR" -#: flatcamGUI/FlatCAMGUI.py:1736 +#: flatcamGUI/FlatCAMGUI.py:1748 msgid "Copy Drill(s)" msgstr "Copy Drill(s)" -#: flatcamGUI/FlatCAMGUI.py:1736 flatcamGUI/FlatCAMGUI.py:1945 +#: flatcamGUI/FlatCAMGUI.py:1748 flatcamGUI/FlatCAMGUI.py:1957 msgid "Add Drill" msgstr "Add Drill" -#: flatcamGUI/FlatCAMGUI.py:1737 +#: flatcamGUI/FlatCAMGUI.py:1749 msgid "Move Drill(s)" msgstr "Move Drill(s)" -#: flatcamGUI/FlatCAMGUI.py:1738 +#: flatcamGUI/FlatCAMGUI.py:1750 msgid "Add a new Tool" msgstr "Add a new Tool" -#: flatcamGUI/FlatCAMGUI.py:1739 +#: flatcamGUI/FlatCAMGUI.py:1751 msgid "Delete Drill(s)" msgstr "Delete Drill(s)" -#: flatcamGUI/FlatCAMGUI.py:1739 +#: flatcamGUI/FlatCAMGUI.py:1751 msgid "Alternate: Delete Tool(s)" msgstr "Alternate: Delete Tool(s)" -#: flatcamGUI/FlatCAMGUI.py:1856 +#: flatcamGUI/FlatCAMGUI.py:1868 msgid "GERBER EDITOR" msgstr "GERBER EDITOR" -#: flatcamGUI/FlatCAMGUI.py:1856 +#: flatcamGUI/FlatCAMGUI.py:1868 msgid "Add Disc" msgstr "Add Disc" -#: flatcamGUI/FlatCAMGUI.py:1856 +#: flatcamGUI/FlatCAMGUI.py:1868 msgid "Add SemiDisc" msgstr "Add SemiDisc" -#: flatcamGUI/FlatCAMGUI.py:1858 +#: flatcamGUI/FlatCAMGUI.py:1870 msgid "Within Track & Region Tools will cycle in REVERSE the bend modes" msgstr "Within Track & Region Tools will cycle in REVERSE the bend modes" -#: flatcamGUI/FlatCAMGUI.py:1859 +#: flatcamGUI/FlatCAMGUI.py:1871 msgid "Within Track & Region Tools will cycle FORWARD the bend modes" msgstr "Within Track & Region Tools will cycle FORWARD the bend modes" -#: flatcamGUI/FlatCAMGUI.py:1860 +#: flatcamGUI/FlatCAMGUI.py:1872 msgid "Alternate: Delete Apertures" msgstr "Alternate: Delete Apertures" -#: flatcamGUI/FlatCAMGUI.py:1861 +#: flatcamGUI/FlatCAMGUI.py:1873 msgid "Eraser Tool" msgstr "Eraser Tool" -#: flatcamGUI/FlatCAMGUI.py:1862 flatcamGUI/PreferencesUI.py:2038 +#: flatcamGUI/FlatCAMGUI.py:1874 flatcamGUI/PreferencesUI.py:2038 msgid "Mark Area Tool" msgstr "Mark Area Tool" -#: flatcamGUI/FlatCAMGUI.py:1862 +#: flatcamGUI/FlatCAMGUI.py:1874 msgid "Poligonize Tool" msgstr "Poligonize Tool" -#: flatcamGUI/FlatCAMGUI.py:1862 +#: flatcamGUI/FlatCAMGUI.py:1874 msgid "Transformation Tool" msgstr "Transformation Tool" -#: flatcamGUI/FlatCAMGUI.py:1878 +#: flatcamGUI/FlatCAMGUI.py:1890 msgid "Toggle Visibility" msgstr "Toggle Visibility" -#: flatcamGUI/FlatCAMGUI.py:1882 +#: flatcamGUI/FlatCAMGUI.py:1894 msgid "New" msgstr "New" -#: flatcamGUI/FlatCAMGUI.py:1883 flatcamTools/ToolCalibration.py:569 +#: flatcamGUI/FlatCAMGUI.py:1895 flatcamTools/ToolCalibration.py:634 msgid "Geometry" msgstr "Geometry" -#: flatcamGUI/FlatCAMGUI.py:1885 flatcamTools/ToolCalibration.py:90 -#: flatcamTools/ToolCalibration.py:569 flatcamTools/ToolFilm.py:359 +#: flatcamGUI/FlatCAMGUI.py:1897 flatcamTools/ToolCalibration.py:197 +#: flatcamTools/ToolCalibration.py:634 flatcamTools/ToolFilm.py:359 msgid "Excellon" msgstr "Excellon" -#: flatcamGUI/FlatCAMGUI.py:1890 +#: flatcamGUI/FlatCAMGUI.py:1902 msgid "Grids" msgstr "Grids" -#: flatcamGUI/FlatCAMGUI.py:1894 +#: flatcamGUI/FlatCAMGUI.py:1906 msgid "Clear Plot" msgstr "Clear Plot" -#: flatcamGUI/FlatCAMGUI.py:1895 +#: flatcamGUI/FlatCAMGUI.py:1907 msgid "Replot" msgstr "Replot" -#: flatcamGUI/FlatCAMGUI.py:1898 +#: flatcamGUI/FlatCAMGUI.py:1910 msgid "Geo Editor" msgstr "Geo Editor" -#: flatcamGUI/FlatCAMGUI.py:1899 +#: flatcamGUI/FlatCAMGUI.py:1911 msgid "Path" msgstr "Path" -#: flatcamGUI/FlatCAMGUI.py:1900 +#: flatcamGUI/FlatCAMGUI.py:1912 msgid "Rectangle" msgstr "Rectangle" -#: flatcamGUI/FlatCAMGUI.py:1902 +#: flatcamGUI/FlatCAMGUI.py:1914 msgid "Circle" msgstr "Circle" -#: flatcamGUI/FlatCAMGUI.py:1903 +#: flatcamGUI/FlatCAMGUI.py:1915 msgid "Polygon" msgstr "Polygon" -#: flatcamGUI/FlatCAMGUI.py:1904 +#: flatcamGUI/FlatCAMGUI.py:1916 msgid "Arc" msgstr "Arc" -#: flatcamGUI/FlatCAMGUI.py:1913 +#: flatcamGUI/FlatCAMGUI.py:1925 msgid "Union" msgstr "Union" -#: flatcamGUI/FlatCAMGUI.py:1914 +#: flatcamGUI/FlatCAMGUI.py:1926 msgid "Intersection" msgstr "Intersection" -#: flatcamGUI/FlatCAMGUI.py:1915 +#: flatcamGUI/FlatCAMGUI.py:1927 msgid "Subtraction" msgstr "Subtraction" -#: flatcamGUI/FlatCAMGUI.py:1916 flatcamGUI/ObjectUI.py:1679 -#: flatcamGUI/PreferencesUI.py:3625 +#: flatcamGUI/FlatCAMGUI.py:1928 flatcamGUI/ObjectUI.py:1761 +#: flatcamGUI/PreferencesUI.py:3643 msgid "Cut" msgstr "Cut" -#: flatcamGUI/FlatCAMGUI.py:1923 +#: flatcamGUI/FlatCAMGUI.py:1935 msgid "Pad" msgstr "Pad" -#: flatcamGUI/FlatCAMGUI.py:1924 +#: flatcamGUI/FlatCAMGUI.py:1936 msgid "Pad Array" msgstr "Pad Array" -#: flatcamGUI/FlatCAMGUI.py:1927 +#: flatcamGUI/FlatCAMGUI.py:1939 msgid "Track" msgstr "Track" -#: flatcamGUI/FlatCAMGUI.py:1928 +#: flatcamGUI/FlatCAMGUI.py:1940 msgid "Region" msgstr "Region" -#: flatcamGUI/FlatCAMGUI.py:1944 +#: flatcamGUI/FlatCAMGUI.py:1956 msgid "Exc Editor" msgstr "Exc Editor" -#: flatcamGUI/FlatCAMGUI.py:1974 +#: flatcamGUI/FlatCAMGUI.py:1986 msgid "" "Relative neasurement.\n" "Reference is last click position" @@ -6706,7 +6804,7 @@ msgstr "" "Relative neasurement.\n" "Reference is last click position" -#: flatcamGUI/FlatCAMGUI.py:1980 +#: flatcamGUI/FlatCAMGUI.py:1992 msgid "" "Absolute neasurement.\n" "Reference is (X=0, Y= 0) position" @@ -6714,27 +6812,27 @@ msgstr "" "Absolute neasurement.\n" "Reference is (X=0, Y= 0) position" -#: flatcamGUI/FlatCAMGUI.py:2087 +#: flatcamGUI/FlatCAMGUI.py:2099 msgid "Lock Toolbars" msgstr "Lock Toolbars" -#: flatcamGUI/FlatCAMGUI.py:2180 +#: flatcamGUI/FlatCAMGUI.py:2192 msgid "&Cutout Tool" msgstr "&Cutout Tool" -#: flatcamGUI/FlatCAMGUI.py:2221 +#: flatcamGUI/FlatCAMGUI.py:2234 msgid "Select 'Esc'" msgstr "Select 'Esc'" -#: flatcamGUI/FlatCAMGUI.py:2248 +#: flatcamGUI/FlatCAMGUI.py:2261 msgid "Copy Objects" msgstr "Copy Objects" -#: flatcamGUI/FlatCAMGUI.py:2255 +#: flatcamGUI/FlatCAMGUI.py:2268 msgid "Move Objects" msgstr "Move Objects" -#: flatcamGUI/FlatCAMGUI.py:2800 +#: flatcamGUI/FlatCAMGUI.py:2813 msgid "" "Please first select a geometry item to be cutted\n" "then select the geometry item that will be cutted\n" @@ -6746,12 +6844,12 @@ msgstr "" "out of the first item. In the end press ~X~ key or\n" "the toolbar button." -#: flatcamGUI/FlatCAMGUI.py:2807 flatcamGUI/FlatCAMGUI.py:2951 -#: flatcamGUI/FlatCAMGUI.py:3010 flatcamGUI/FlatCAMGUI.py:3030 +#: flatcamGUI/FlatCAMGUI.py:2820 flatcamGUI/FlatCAMGUI.py:2964 +#: flatcamGUI/FlatCAMGUI.py:3023 flatcamGUI/FlatCAMGUI.py:3043 msgid "Warning" msgstr "Warning" -#: flatcamGUI/FlatCAMGUI.py:2946 +#: flatcamGUI/FlatCAMGUI.py:2959 msgid "" "Please select geometry items \n" "on which to perform Intersection Tool." @@ -6759,7 +6857,7 @@ msgstr "" "Please select geometry items \n" "on which to perform Intersection Tool." -#: flatcamGUI/FlatCAMGUI.py:3005 +#: flatcamGUI/FlatCAMGUI.py:3018 msgid "" "Please select geometry items \n" "on which to perform Substraction Tool." @@ -6767,7 +6865,7 @@ msgstr "" "Please select geometry items \n" "on which to perform Substraction Tool." -#: flatcamGUI/FlatCAMGUI.py:3025 +#: flatcamGUI/FlatCAMGUI.py:3038 msgid "" "Please select geometry items \n" "on which to perform union." @@ -6775,52 +6873,52 @@ msgstr "" "Please select geometry items \n" "on which to perform union." -#: flatcamGUI/FlatCAMGUI.py:3109 flatcamGUI/FlatCAMGUI.py:3327 +#: flatcamGUI/FlatCAMGUI.py:3122 flatcamGUI/FlatCAMGUI.py:3340 msgid "Cancelled. Nothing selected to delete." msgstr "Cancelled. Nothing selected to delete." -#: flatcamGUI/FlatCAMGUI.py:3194 flatcamGUI/FlatCAMGUI.py:3395 +#: flatcamGUI/FlatCAMGUI.py:3207 flatcamGUI/FlatCAMGUI.py:3408 msgid "Cancelled. Nothing selected to copy." msgstr "Cancelled. Nothing selected to copy." -#: flatcamGUI/FlatCAMGUI.py:3241 flatcamGUI/FlatCAMGUI.py:3442 +#: flatcamGUI/FlatCAMGUI.py:3254 flatcamGUI/FlatCAMGUI.py:3455 msgid "Cancelled. Nothing selected to move." msgstr "Cancelled. Nothing selected to move." -#: flatcamGUI/FlatCAMGUI.py:3468 +#: flatcamGUI/FlatCAMGUI.py:3481 msgid "New Tool ..." msgstr "New Tool ..." -#: flatcamGUI/FlatCAMGUI.py:3469 flatcamTools/ToolNonCopperClear.py:588 -#: flatcamTools/ToolPaint.py:498 flatcamTools/ToolSolderPaste.py:554 +#: flatcamGUI/FlatCAMGUI.py:3482 flatcamTools/ToolNonCopperClear.py:588 +#: flatcamTools/ToolPaint.py:499 flatcamTools/ToolSolderPaste.py:554 msgid "Enter a Tool Diameter" msgstr "Enter a Tool Diameter" -#: flatcamGUI/FlatCAMGUI.py:3481 +#: flatcamGUI/FlatCAMGUI.py:3494 msgid "Adding Tool cancelled ..." msgstr "Adding Tool cancelled ..." -#: flatcamGUI/FlatCAMGUI.py:3524 +#: flatcamGUI/FlatCAMGUI.py:3537 msgid "Distance Tool exit..." msgstr "Distance Tool exit..." -#: flatcamGUI/FlatCAMGUI.py:3734 flatcamGUI/FlatCAMGUI.py:3741 +#: flatcamGUI/FlatCAMGUI.py:3747 flatcamGUI/FlatCAMGUI.py:3754 msgid "Idle." msgstr "Idle." -#: flatcamGUI/FlatCAMGUI.py:3770 +#: flatcamGUI/FlatCAMGUI.py:3783 msgid "Application started ..." msgstr "Application started ..." -#: flatcamGUI/FlatCAMGUI.py:3771 +#: flatcamGUI/FlatCAMGUI.py:3784 msgid "Hello!" msgstr "Hello!" -#: flatcamGUI/FlatCAMGUI.py:3827 +#: flatcamGUI/FlatCAMGUI.py:3840 msgid "Open Project ..." msgstr "Open Project ..." -#: flatcamGUI/FlatCAMGUI.py:3852 +#: flatcamGUI/FlatCAMGUI.py:3865 msgid "Exit" msgstr "Exit" @@ -6855,87 +6953,98 @@ msgid "Factor" msgstr "Factor" #: flatcamGUI/ObjectUI.py:102 +#| msgid "" +#| "Factor by which to multiply\n" +#| "geometric features of this object." msgid "" "Factor by which to multiply\n" -"geometric features of this object." +"geometric features of this object.\n" +"Expressions are allowed. E.g: 1/25.4" msgstr "" "Factor by which to multiply\n" -"geometric features of this object." +"geometric features of this object.\n" +"Expressions are allowed. E.g: 1/25.4" -#: flatcamGUI/ObjectUI.py:115 +#: flatcamGUI/ObjectUI.py:112 msgid "Perform scaling operation." msgstr "Perform scaling operation." -#: flatcamGUI/ObjectUI.py:126 +#: flatcamGUI/ObjectUI.py:123 msgid "Change the position of this object." msgstr "Change the position of this object." -#: flatcamGUI/ObjectUI.py:131 +#: flatcamGUI/ObjectUI.py:128 msgid "Vector" msgstr "Vector" -#: flatcamGUI/ObjectUI.py:133 +#: flatcamGUI/ObjectUI.py:130 +#| msgid "" +#| "Amount by which to move the object\n" +#| "in the x and y axes in (x, y) format." msgid "" "Amount by which to move the object\n" -"in the x and y axes in (x, y) format." +"in the x and y axes in (x, y) format.\n" +"Expressions are allowed. E.g: (1/3.2, 0.5*3)" msgstr "" "Amount by which to move the object\n" -"in the x and y axes in (x, y) format." +"in the x and y axes in (x, y) format.\n" +"Expressions are allowed. E.g: (1/3.2, 0.5*3)" -#: flatcamGUI/ObjectUI.py:141 +#: flatcamGUI/ObjectUI.py:139 msgid "Perform the offset operation." msgstr "Perform the offset operation." -#: flatcamGUI/ObjectUI.py:158 +#: flatcamGUI/ObjectUI.py:156 msgid "Gerber Object" msgstr "Gerber Object" -#: flatcamGUI/ObjectUI.py:168 flatcamGUI/ObjectUI.py:685 -#: flatcamGUI/ObjectUI.py:1083 flatcamGUI/ObjectUI.py:1663 -#: flatcamGUI/PreferencesUI.py:1337 flatcamGUI/PreferencesUI.py:2078 -#: flatcamGUI/PreferencesUI.py:3110 flatcamGUI/PreferencesUI.py:3599 -msgid "Plot Options" -msgstr "Plot Options" - -#: flatcamGUI/ObjectUI.py:174 flatcamGUI/ObjectUI.py:686 -#: flatcamGUI/PreferencesUI.py:1344 flatcamGUI/PreferencesUI.py:2090 -#: flatcamGUI/PreferencesUI.py:6135 flatcamTools/ToolCopperThieving.py:190 -msgid "Solid" -msgstr "Solid" - -#: flatcamGUI/ObjectUI.py:176 flatcamGUI/PreferencesUI.py:1346 -msgid "Solid color polygons." -msgstr "Solid color polygons." - -#: flatcamGUI/ObjectUI.py:182 flatcamGUI/PreferencesUI.py:1351 -msgid "M-Color" -msgstr "M-Color" - -#: flatcamGUI/ObjectUI.py:184 flatcamGUI/PreferencesUI.py:1353 -msgid "Draw polygons in different colors." -msgstr "Draw polygons in different colors." - -#: flatcamGUI/ObjectUI.py:190 flatcamGUI/ObjectUI.py:724 -#: flatcamGUI/PreferencesUI.py:1358 flatcamGUI/PreferencesUI.py:2084 -#: flatcamGUI/PreferencesUI.py:3114 -msgid "Plot" -msgstr "Plot" - -#: flatcamGUI/ObjectUI.py:192 flatcamGUI/ObjectUI.py:726 -#: flatcamGUI/ObjectUI.py:1129 flatcamGUI/ObjectUI.py:1773 -#: flatcamGUI/PreferencesUI.py:1360 flatcamGUI/PreferencesUI.py:3116 -#: flatcamGUI/PreferencesUI.py:3610 +#: flatcamGUI/ObjectUI.py:171 flatcamGUI/ObjectUI.py:743 +#: flatcamGUI/ObjectUI.py:1166 flatcamGUI/ObjectUI.py:1855 +#: flatcamGUI/PreferencesUI.py:1360 flatcamGUI/PreferencesUI.py:3118 +#: flatcamGUI/PreferencesUI.py:3628 msgid "Plot (show) this object." msgstr "Plot (show) this object." -#: flatcamGUI/ObjectUI.py:200 flatcamGUI/ObjectUI.py:697 -#: flatcamGUI/ObjectUI.py:1089 flatcamGUI/ObjectUI.py:1693 -#: flatcamGUI/ObjectUI.py:1977 flatcamGUI/ObjectUI.py:2032 -#: flatcamTools/ToolCalibration.py:125 flatcamTools/ToolFiducials.py:73 +#: flatcamGUI/ObjectUI.py:173 flatcamGUI/ObjectUI.py:741 +#: flatcamGUI/PreferencesUI.py:1358 flatcamGUI/PreferencesUI.py:2084 +#: flatcamGUI/PreferencesUI.py:3116 +msgid "Plot" +msgstr "Plot" + +#: flatcamGUI/ObjectUI.py:178 flatcamGUI/ObjectUI.py:702 +#: flatcamGUI/ObjectUI.py:1120 flatcamGUI/ObjectUI.py:1745 +#: flatcamGUI/PreferencesUI.py:1337 flatcamGUI/PreferencesUI.py:2078 +#: flatcamGUI/PreferencesUI.py:3112 flatcamGUI/PreferencesUI.py:3617 +msgid "Plot Options" +msgstr "Plot Options" + +#: flatcamGUI/ObjectUI.py:184 flatcamGUI/ObjectUI.py:703 +#: flatcamGUI/PreferencesUI.py:1344 flatcamGUI/PreferencesUI.py:2090 +#: flatcamGUI/PreferencesUI.py:6153 flatcamTools/ToolCopperThieving.py:190 +msgid "Solid" +msgstr "Solid" + +#: flatcamGUI/ObjectUI.py:186 flatcamGUI/PreferencesUI.py:1346 +msgid "Solid color polygons." +msgstr "Solid color polygons." + +#: flatcamGUI/ObjectUI.py:192 +#| msgid "M-Color" +msgid "Multi-Color" +msgstr "Multi-Color" + +#: flatcamGUI/ObjectUI.py:194 flatcamGUI/PreferencesUI.py:1353 +msgid "Draw polygons in different colors." +msgstr "Draw polygons in different colors." + +#: flatcamGUI/ObjectUI.py:202 flatcamGUI/ObjectUI.py:714 +#: flatcamGUI/ObjectUI.py:1126 flatcamGUI/ObjectUI.py:1775 +#: flatcamGUI/ObjectUI.py:2067 flatcamGUI/ObjectUI.py:2122 +#: flatcamTools/ToolCalibration.py:235 flatcamTools/ToolFiducials.py:73 msgid "Name" msgstr "Name" -#: flatcamGUI/ObjectUI.py:221 +#: flatcamGUI/ObjectUI.py:223 msgid "" "Toggle the display of the Gerber Apertures Table.\n" "When unchecked, it will delete all mark shapes\n" @@ -6945,11 +7054,11 @@ msgstr "" "When unchecked, it will delete all mark shapes\n" "that are drawn on canvas." -#: flatcamGUI/ObjectUI.py:231 +#: flatcamGUI/ObjectUI.py:233 msgid "Mark All" msgstr "Mark All" -#: flatcamGUI/ObjectUI.py:233 +#: flatcamGUI/ObjectUI.py:235 msgid "" "When checked it will display all the apertures.\n" "When unchecked, it will delete all mark shapes\n" @@ -6959,15 +7068,15 @@ msgstr "" "When unchecked, it will delete all mark shapes\n" "that are drawn on canvas." -#: flatcamGUI/ObjectUI.py:261 +#: flatcamGUI/ObjectUI.py:263 msgid "Mark the aperture instances on canvas." msgstr "Mark the aperture instances on canvas." -#: flatcamGUI/ObjectUI.py:270 flatcamGUI/PreferencesUI.py:1438 +#: flatcamGUI/ObjectUI.py:275 flatcamGUI/PreferencesUI.py:1438 msgid "Isolation Routing" msgstr "Isolation Routing" -#: flatcamGUI/ObjectUI.py:272 flatcamGUI/PreferencesUI.py:1440 +#: flatcamGUI/ObjectUI.py:277 flatcamGUI/PreferencesUI.py:1440 msgid "" "Create a Geometry object with\n" "toolpaths to cut outside polygons." @@ -6975,7 +7084,7 @@ msgstr "" "Create a Geometry object with\n" "toolpaths to cut outside polygons." -#: flatcamGUI/ObjectUI.py:290 flatcamGUI/PreferencesUI.py:1628 +#: flatcamGUI/ObjectUI.py:295 flatcamGUI/PreferencesUI.py:1628 msgid "" "Choose what tool to use for Gerber isolation:\n" "'Circular' or 'V-shape'.\n" @@ -6987,30 +7096,30 @@ msgstr "" "When the 'V-shape' is selected then the tool\n" "diameter will depend on the chosen cut depth." -#: flatcamGUI/ObjectUI.py:296 +#: flatcamGUI/ObjectUI.py:301 msgid "V-Shape" msgstr "V-Shape" -#: flatcamGUI/ObjectUI.py:302 flatcamGUI/ObjectUI.py:1298 -#: flatcamGUI/PreferencesUI.py:1640 flatcamGUI/PreferencesUI.py:3992 +#: flatcamGUI/ObjectUI.py:307 flatcamGUI/ObjectUI.py:1335 +#: flatcamGUI/PreferencesUI.py:1640 flatcamGUI/PreferencesUI.py:4010 #: flatcamTools/ToolNonCopperClear.py:231 msgid "V-Tip Dia" msgstr "V-Tip Dia" -#: flatcamGUI/ObjectUI.py:304 flatcamGUI/ObjectUI.py:1301 -#: flatcamGUI/PreferencesUI.py:1642 flatcamGUI/PreferencesUI.py:3994 +#: flatcamGUI/ObjectUI.py:309 flatcamGUI/ObjectUI.py:1338 +#: flatcamGUI/PreferencesUI.py:1642 flatcamGUI/PreferencesUI.py:4012 #: flatcamTools/ToolNonCopperClear.py:233 msgid "The tip diameter for V-Shape Tool" msgstr "The tip diameter for V-Shape Tool" -#: flatcamGUI/ObjectUI.py:315 flatcamGUI/ObjectUI.py:1313 -#: flatcamGUI/PreferencesUI.py:1653 flatcamGUI/PreferencesUI.py:4004 +#: flatcamGUI/ObjectUI.py:320 flatcamGUI/ObjectUI.py:1350 +#: flatcamGUI/PreferencesUI.py:1653 flatcamGUI/PreferencesUI.py:4022 #: flatcamTools/ToolNonCopperClear.py:242 msgid "V-Tip Angle" msgstr "V-Tip Angle" -#: flatcamGUI/ObjectUI.py:317 flatcamGUI/ObjectUI.py:1316 -#: flatcamGUI/PreferencesUI.py:1655 flatcamGUI/PreferencesUI.py:4006 +#: flatcamGUI/ObjectUI.py:322 flatcamGUI/ObjectUI.py:1353 +#: flatcamGUI/PreferencesUI.py:1655 flatcamGUI/PreferencesUI.py:4024 #: flatcamTools/ToolNonCopperClear.py:244 msgid "" "The tip angle for V-Shape Tool.\n" @@ -7019,9 +7128,9 @@ msgstr "" "The tip angle for V-Shape Tool.\n" "In degree." -#: flatcamGUI/ObjectUI.py:331 flatcamGUI/ObjectUI.py:1332 -#: flatcamGUI/PreferencesUI.py:1668 flatcamGUI/PreferencesUI.py:3179 -#: flatcamGUI/PreferencesUI.py:4275 flatcamTools/ToolCutOut.py:135 +#: flatcamGUI/ObjectUI.py:336 flatcamGUI/ObjectUI.py:1369 +#: flatcamGUI/PreferencesUI.py:1668 flatcamGUI/PreferencesUI.py:3181 +#: flatcamGUI/PreferencesUI.py:4293 flatcamTools/ToolCutOut.py:135 msgid "" "Cutting depth (negative)\n" "below the copper surface." @@ -7029,7 +7138,7 @@ msgstr "" "Cutting depth (negative)\n" "below the copper surface." -#: flatcamGUI/ObjectUI.py:345 +#: flatcamGUI/ObjectUI.py:350 msgid "" "Diameter of the cutting tool.\n" "If you want to have an isolation path\n" @@ -7043,11 +7152,11 @@ msgstr "" "feature, use a negative value for\n" "this parameter." -#: flatcamGUI/ObjectUI.py:361 flatcamGUI/PreferencesUI.py:1462 +#: flatcamGUI/ObjectUI.py:366 flatcamGUI/PreferencesUI.py:1462 msgid "# Passes" msgstr "# Passes" -#: flatcamGUI/ObjectUI.py:363 flatcamGUI/PreferencesUI.py:1464 +#: flatcamGUI/ObjectUI.py:368 flatcamGUI/PreferencesUI.py:1464 msgid "" "Width of the isolation gap in\n" "number (integer) of tool widths." @@ -7055,25 +7164,22 @@ msgstr "" "Width of the isolation gap in\n" "number (integer) of tool widths." -#: flatcamGUI/ObjectUI.py:373 flatcamGUI/PreferencesUI.py:1474 +#: flatcamGUI/ObjectUI.py:378 flatcamGUI/PreferencesUI.py:1474 msgid "Pass overlap" msgstr "Pass overlap" -#: flatcamGUI/ObjectUI.py:375 flatcamGUI/PreferencesUI.py:1476 -#| msgid "" -#| "How much (fraction) of the tool\n" -#| "width to overlap each tool pass." +#: flatcamGUI/ObjectUI.py:380 flatcamGUI/PreferencesUI.py:1476 msgid "How much (fraction) of the tool width to overlap each tool pass." msgstr "How much (fraction) of the tool width to overlap each tool pass." -#: flatcamGUI/ObjectUI.py:387 flatcamGUI/PreferencesUI.py:1501 -#: flatcamGUI/PreferencesUI.py:3576 flatcamGUI/PreferencesUI.py:4049 +#: flatcamGUI/ObjectUI.py:392 flatcamGUI/PreferencesUI.py:1501 +#: flatcamGUI/PreferencesUI.py:3594 flatcamGUI/PreferencesUI.py:4067 #: flatcamTools/ToolNonCopperClear.py:162 msgid "Milling Type" msgstr "Milling Type" -#: flatcamGUI/ObjectUI.py:389 flatcamGUI/PreferencesUI.py:1503 -#: flatcamGUI/PreferencesUI.py:3578 +#: flatcamGUI/ObjectUI.py:394 flatcamGUI/PreferencesUI.py:1503 +#: flatcamGUI/PreferencesUI.py:3596 msgid "" "Milling type:\n" "- climb / best for precision milling and to reduce tool usage\n" @@ -7083,29 +7189,29 @@ msgstr "" "- climb / best for precision milling and to reduce tool usage\n" "- conventional / useful when there is no backlash compensation" -#: flatcamGUI/ObjectUI.py:393 flatcamGUI/PreferencesUI.py:1508 -#: flatcamGUI/PreferencesUI.py:3582 flatcamGUI/PreferencesUI.py:4056 +#: flatcamGUI/ObjectUI.py:398 flatcamGUI/PreferencesUI.py:1508 +#: flatcamGUI/PreferencesUI.py:3600 flatcamGUI/PreferencesUI.py:4074 #: flatcamTools/ToolNonCopperClear.py:169 msgid "Climb" msgstr "Climb" -#: flatcamGUI/ObjectUI.py:394 +#: flatcamGUI/ObjectUI.py:399 msgid "Conventional" msgstr "Conventional" -#: flatcamGUI/ObjectUI.py:399 +#: flatcamGUI/ObjectUI.py:404 msgid "Combine" msgstr "Combine" -#: flatcamGUI/ObjectUI.py:401 flatcamGUI/PreferencesUI.py:1515 +#: flatcamGUI/ObjectUI.py:406 flatcamGUI/PreferencesUI.py:1515 msgid "Combine all passes into one object" msgstr "Combine all passes into one object" -#: flatcamGUI/ObjectUI.py:405 flatcamGUI/PreferencesUI.py:1607 +#: flatcamGUI/ObjectUI.py:410 flatcamGUI/PreferencesUI.py:1607 msgid "\"Follow\"" msgstr "\"Follow\"" -#: flatcamGUI/ObjectUI.py:406 flatcamGUI/PreferencesUI.py:1609 +#: flatcamGUI/ObjectUI.py:411 flatcamGUI/PreferencesUI.py:1609 msgid "" "Generate a 'Follow' geometry.\n" "This means that it will cut through\n" @@ -7115,11 +7221,11 @@ msgstr "" "This means that it will cut through\n" "the middle of the trace." -#: flatcamGUI/ObjectUI.py:412 +#: flatcamGUI/ObjectUI.py:417 msgid "Except" msgstr "Except" -#: flatcamGUI/ObjectUI.py:415 +#: flatcamGUI/ObjectUI.py:420 msgid "" "When the isolation geometry is generated,\n" "by checking this, the area of the object bellow\n" @@ -7129,12 +7235,12 @@ msgstr "" "by checking this, the area of the object bellow\n" "will be subtracted from the isolation geometry." -#: flatcamGUI/ObjectUI.py:437 flatcamTools/ToolNonCopperClear.py:82 +#: flatcamGUI/ObjectUI.py:442 flatcamTools/ToolNonCopperClear.py:82 #: flatcamTools/ToolPaint.py:85 msgid "Obj Type" msgstr "Obj Type" -#: flatcamGUI/ObjectUI.py:439 +#: flatcamGUI/ObjectUI.py:444 msgid "" "Specify the type of object to be excepted from isolation.\n" "It can be of type: Gerber or Geometry.\n" @@ -7146,22 +7252,22 @@ msgstr "" "What is selected here will dictate the kind\n" "of objects that will populate the 'Object' combobox." -#: flatcamGUI/ObjectUI.py:452 flatcamGUI/PreferencesUI.py:6435 -#: flatcamTools/ToolCalibration.py:79 flatcamTools/ToolNonCopperClear.py:100 +#: flatcamGUI/ObjectUI.py:457 flatcamGUI/PreferencesUI.py:6453 +#: flatcamTools/ToolCalibration.py:186 flatcamTools/ToolNonCopperClear.py:100 #: flatcamTools/ToolPaint.py:103 flatcamTools/ToolPanelize.py:81 #: flatcamTools/ToolPanelize.py:94 msgid "Object" msgstr "Object" -#: flatcamGUI/ObjectUI.py:453 +#: flatcamGUI/ObjectUI.py:458 msgid "Object whose area will be removed from isolation geometry." msgstr "Object whose area will be removed from isolation geometry." -#: flatcamGUI/ObjectUI.py:460 flatcamGUI/PreferencesUI.py:1488 +#: flatcamGUI/ObjectUI.py:465 flatcamGUI/PreferencesUI.py:1488 msgid "Scope" msgstr "Scope" -#: flatcamGUI/ObjectUI.py:462 flatcamGUI/PreferencesUI.py:1490 +#: flatcamGUI/ObjectUI.py:467 flatcamGUI/PreferencesUI.py:1490 msgid "" "Isolation scope. Choose what to isolate:\n" "- 'All' -> Isolate all the polygons in the object\n" @@ -7171,16 +7277,16 @@ msgstr "" "- 'All' -> Isolate all the polygons in the object\n" "- 'Selection' -> Isolate a selection of polygons." -#: flatcamGUI/ObjectUI.py:467 flatcamGUI/PreferencesUI.py:1495 -#: flatcamGUI/PreferencesUI.py:4585 flatcamTools/ToolPaint.py:300 +#: flatcamGUI/ObjectUI.py:472 flatcamGUI/PreferencesUI.py:1495 +#: flatcamGUI/PreferencesUI.py:4603 flatcamTools/ToolPaint.py:300 msgid "Selection" msgstr "Selection" -#: flatcamGUI/ObjectUI.py:475 flatcamGUI/PreferencesUI.py:1681 +#: flatcamGUI/ObjectUI.py:480 flatcamGUI/PreferencesUI.py:1681 msgid "Isolation Type" msgstr "Isolation Type" -#: flatcamGUI/ObjectUI.py:477 flatcamGUI/PreferencesUI.py:1683 +#: flatcamGUI/ObjectUI.py:482 flatcamGUI/PreferencesUI.py:1683 msgid "" "Choose how the isolation will be executed:\n" "- 'Full' -> complete isolation of polygons\n" @@ -7200,24 +7306,24 @@ msgstr "" "isolation can be done only when there is an opening\n" "inside of the polygon (e.g polygon is a 'doughnut' shape)." -#: flatcamGUI/ObjectUI.py:486 flatcamGUI/PreferencesUI.py:1692 +#: flatcamGUI/ObjectUI.py:491 flatcamGUI/PreferencesUI.py:1692 #: flatcamGUI/PreferencesUI.py:1708 msgid "Full" msgstr "Full" -#: flatcamGUI/ObjectUI.py:487 +#: flatcamGUI/ObjectUI.py:492 msgid "Ext" msgstr "Ext" -#: flatcamGUI/ObjectUI.py:488 +#: flatcamGUI/ObjectUI.py:493 msgid "Int" msgstr "Int" -#: flatcamGUI/ObjectUI.py:493 +#: flatcamGUI/ObjectUI.py:498 msgid "Generate Isolation Geometry" msgstr "Generate Isolation Geometry" -#: flatcamGUI/ObjectUI.py:501 +#: flatcamGUI/ObjectUI.py:506 msgid "" "Create a Geometry object with toolpaths to cut \n" "isolation outside, inside or on both sides of the\n" @@ -7239,11 +7345,11 @@ msgstr "" "inside the actual Gerber feature, use a negative tool\n" "diameter above." -#: flatcamGUI/ObjectUI.py:513 +#: flatcamGUI/ObjectUI.py:518 msgid "Buffer Solid Geometry" msgstr "Buffer Solid Geometry" -#: flatcamGUI/ObjectUI.py:515 +#: flatcamGUI/ObjectUI.py:520 msgid "" "This button is shown only when the Gerber file\n" "is loaded without buffering.\n" @@ -7255,11 +7361,11 @@ msgstr "" "Clicking this will create the buffered geometry\n" "required for isolation." -#: flatcamGUI/ObjectUI.py:543 +#: flatcamGUI/ObjectUI.py:548 msgid "Clear N-copper" msgstr "Clear N-copper" -#: flatcamGUI/ObjectUI.py:545 flatcamGUI/PreferencesUI.py:3956 +#: flatcamGUI/ObjectUI.py:550 flatcamGUI/PreferencesUI.py:3974 msgid "" "Create a Geometry object with\n" "toolpaths to cut all non-copper regions." @@ -7267,7 +7373,8 @@ msgstr "" "Create a Geometry object with\n" "toolpaths to cut all non-copper regions." -#: flatcamGUI/ObjectUI.py:552 flatcamTools/ToolNonCopperClear.py:479 +#: flatcamGUI/ObjectUI.py:557 flatcamGUI/ObjectUI.py:1714 +#: flatcamTools/ToolNonCopperClear.py:479 msgid "" "Create the Geometry Object\n" "for non-copper routing." @@ -7275,11 +7382,11 @@ msgstr "" "Create the Geometry Object\n" "for non-copper routing." -#: flatcamGUI/ObjectUI.py:559 +#: flatcamGUI/ObjectUI.py:570 msgid "Board cutout" msgstr "Board cutout" -#: flatcamGUI/ObjectUI.py:561 flatcamGUI/PreferencesUI.py:4248 +#: flatcamGUI/ObjectUI.py:572 flatcamGUI/PreferencesUI.py:4266 msgid "" "Create toolpaths to cut around\n" "the PCB and separate it from\n" @@ -7289,7 +7396,7 @@ msgstr "" "the PCB and separate it from\n" "the original board." -#: flatcamGUI/ObjectUI.py:568 +#: flatcamGUI/ObjectUI.py:579 msgid "" "Generate the geometry for\n" "the board cutout." @@ -7297,11 +7404,11 @@ msgstr "" "Generate the geometry for\n" "the board cutout." -#: flatcamGUI/ObjectUI.py:580 flatcamGUI/PreferencesUI.py:1520 +#: flatcamGUI/ObjectUI.py:597 flatcamGUI/PreferencesUI.py:1520 msgid "Non-copper regions" msgstr "Non-copper regions" -#: flatcamGUI/ObjectUI.py:582 flatcamGUI/PreferencesUI.py:1522 +#: flatcamGUI/ObjectUI.py:599 flatcamGUI/PreferencesUI.py:1522 msgid "" "Create polygons covering the\n" "areas without copper on the PCB.\n" @@ -7315,12 +7422,12 @@ msgstr "" "object. Can be used to remove all\n" "copper from a specified region." -#: flatcamGUI/ObjectUI.py:592 flatcamGUI/ObjectUI.py:633 +#: flatcamGUI/ObjectUI.py:609 flatcamGUI/ObjectUI.py:650 #: flatcamGUI/PreferencesUI.py:1534 flatcamGUI/PreferencesUI.py:1562 msgid "Boundary Margin" msgstr "Boundary Margin" -#: flatcamGUI/ObjectUI.py:594 flatcamGUI/PreferencesUI.py:1536 +#: flatcamGUI/ObjectUI.py:611 flatcamGUI/PreferencesUI.py:1536 msgid "" "Specify the edge of the PCB\n" "by drawing a box around all\n" @@ -7332,27 +7439,27 @@ msgstr "" "objects with this minimum\n" "distance." -#: flatcamGUI/ObjectUI.py:609 flatcamGUI/ObjectUI.py:647 +#: flatcamGUI/ObjectUI.py:626 flatcamGUI/ObjectUI.py:664 #: flatcamGUI/PreferencesUI.py:1549 flatcamGUI/PreferencesUI.py:1575 msgid "Rounded Geo" msgstr "Rounded Geo" -#: flatcamGUI/ObjectUI.py:611 flatcamGUI/PreferencesUI.py:1551 +#: flatcamGUI/ObjectUI.py:628 flatcamGUI/PreferencesUI.py:1551 msgid "Resulting geometry will have rounded corners." msgstr "Resulting geometry will have rounded corners." -#: flatcamGUI/ObjectUI.py:615 flatcamGUI/ObjectUI.py:656 +#: flatcamGUI/ObjectUI.py:632 flatcamGUI/ObjectUI.py:673 #: flatcamTools/ToolSolderPaste.py:133 msgid "Generate Geo" msgstr "Generate Geo" -#: flatcamGUI/ObjectUI.py:625 flatcamGUI/PreferencesUI.py:1556 -#: flatcamGUI/PreferencesUI.py:5965 flatcamTools/ToolPanelize.py:95 +#: flatcamGUI/ObjectUI.py:642 flatcamGUI/PreferencesUI.py:1556 +#: flatcamGUI/PreferencesUI.py:5983 flatcamTools/ToolPanelize.py:95 #: flatcamTools/ToolQRCode.py:192 msgid "Bounding Box" msgstr "Bounding Box" -#: flatcamGUI/ObjectUI.py:627 +#: flatcamGUI/ObjectUI.py:644 msgid "" "Create a geometry surrounding the Gerber object.\n" "Square shape." @@ -7360,7 +7467,7 @@ msgstr "" "Create a geometry surrounding the Gerber object.\n" "Square shape." -#: flatcamGUI/ObjectUI.py:635 flatcamGUI/PreferencesUI.py:1564 +#: flatcamGUI/ObjectUI.py:652 flatcamGUI/PreferencesUI.py:1564 msgid "" "Distance of the edges of the box\n" "to the nearest polygon." @@ -7368,7 +7475,7 @@ msgstr "" "Distance of the edges of the box\n" "to the nearest polygon." -#: flatcamGUI/ObjectUI.py:649 flatcamGUI/PreferencesUI.py:1577 +#: flatcamGUI/ObjectUI.py:666 flatcamGUI/PreferencesUI.py:1577 msgid "" "If the bounding box is \n" "to have rounded corners\n" @@ -7380,32 +7487,33 @@ msgstr "" "their radius is equal to\n" "the margin." -#: flatcamGUI/ObjectUI.py:658 +#: flatcamGUI/ObjectUI.py:675 msgid "Generate the Geometry object." msgstr "Generate the Geometry object." -#: flatcamGUI/ObjectUI.py:674 +#: flatcamGUI/ObjectUI.py:691 msgid "Excellon Object" msgstr "Excellon Object" -#: flatcamGUI/ObjectUI.py:688 +#: flatcamGUI/ObjectUI.py:705 msgid "Solid circles." msgstr "Solid circles." -#: flatcamGUI/ObjectUI.py:736 flatcamTools/ToolProperties.py:161 +#: flatcamGUI/ObjectUI.py:753 flatcamGUI/ObjectUI.py:1876 +#: flatcamTools/ToolProperties.py:161 msgid "Drills" msgstr "Drills" -#: flatcamGUI/ObjectUI.py:736 flatcamGUI/PreferencesUI.py:2950 -#: flatcamTools/ToolProperties.py:162 +#: flatcamGUI/ObjectUI.py:753 flatcamGUI/ObjectUI.py:1876 +#: flatcamGUI/PreferencesUI.py:2952 flatcamTools/ToolProperties.py:162 msgid "Slots" msgstr "Slots" -#: flatcamGUI/ObjectUI.py:737 flatcamGUI/PreferencesUI.py:2553 +#: flatcamGUI/ObjectUI.py:754 flatcamGUI/PreferencesUI.py:2555 msgid "Offset Z" msgstr "Offset Z" -#: flatcamGUI/ObjectUI.py:741 +#: flatcamGUI/ObjectUI.py:758 msgid "" "This is the Tool Number.\n" "When ToolChange is checked, on toolchange event this value\n" @@ -7419,7 +7527,7 @@ msgstr "" "\n" "Here the tools are selected for G-code generation." -#: flatcamGUI/ObjectUI.py:746 flatcamGUI/ObjectUI.py:1154 +#: flatcamGUI/ObjectUI.py:763 flatcamGUI/ObjectUI.py:1191 #: flatcamTools/ToolPaint.py:137 msgid "" "Tool Diameter. It's value (in current FlatCAM units) \n" @@ -7428,7 +7536,7 @@ msgstr "" "Tool Diameter. It's value (in current FlatCAM units) \n" "is the cut width into the material." -#: flatcamGUI/ObjectUI.py:749 +#: flatcamGUI/ObjectUI.py:766 msgid "" "The number of Drill holes. Holes that are drilled with\n" "a drill bit." @@ -7436,7 +7544,7 @@ msgstr "" "The number of Drill holes. Holes that are drilled with\n" "a drill bit." -#: flatcamGUI/ObjectUI.py:752 +#: flatcamGUI/ObjectUI.py:769 msgid "" "The number of Slot holes. Holes that are created by\n" "milling them with an endmill bit." @@ -7444,7 +7552,7 @@ msgstr "" "The number of Slot holes. Holes that are created by\n" "milling them with an endmill bit." -#: flatcamGUI/ObjectUI.py:755 flatcamGUI/PreferencesUI.py:2555 +#: flatcamGUI/ObjectUI.py:772 flatcamGUI/PreferencesUI.py:2557 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" @@ -7454,7 +7562,7 @@ msgstr "" "to create the desired exit hole diameter due of the tip shape.\n" "The value here can compensate the Cut Z parameter." -#: flatcamGUI/ObjectUI.py:759 +#: flatcamGUI/ObjectUI.py:776 msgid "" "Toggle display of the drills for the current tool.\n" "This does not select the tools for G-code generation." @@ -7462,12 +7570,12 @@ msgstr "" "Toggle display of the drills for the current tool.\n" "This does not select the tools for G-code generation." -#: flatcamGUI/ObjectUI.py:766 flatcamGUI/PreferencesUI.py:2323 -#: flatcamGUI/PreferencesUI.py:3165 +#: flatcamGUI/ObjectUI.py:783 flatcamGUI/PreferencesUI.py:2323 +#: flatcamGUI/PreferencesUI.py:3167 msgid "Create CNC Job" msgstr "Create CNC Job" -#: flatcamGUI/ObjectUI.py:768 +#: flatcamGUI/ObjectUI.py:785 msgid "" "Create a CNC Job object\n" "for this drill object." @@ -7475,7 +7583,7 @@ msgstr "" "Create a CNC Job object\n" "for this drill object." -#: flatcamGUI/ObjectUI.py:781 flatcamGUI/PreferencesUI.py:2336 +#: flatcamGUI/ObjectUI.py:798 flatcamGUI/PreferencesUI.py:2336 msgid "" "Drill depth (negative)\n" "below the copper surface." @@ -7483,7 +7591,7 @@ msgstr "" "Drill depth (negative)\n" "below the copper surface." -#: flatcamGUI/ObjectUI.py:800 flatcamGUI/PreferencesUI.py:2354 +#: flatcamGUI/ObjectUI.py:817 flatcamGUI/PreferencesUI.py:2354 msgid "" "Tool height when travelling\n" "across the XY plane." @@ -7491,12 +7599,12 @@ msgstr "" "Tool height when travelling\n" "across the XY plane." -#: flatcamGUI/ObjectUI.py:817 flatcamGUI/ObjectUI.py:1402 -#: flatcamGUI/PreferencesUI.py:2369 flatcamGUI/PreferencesUI.py:3250 +#: flatcamGUI/ObjectUI.py:834 flatcamGUI/ObjectUI.py:1439 +#: flatcamGUI/PreferencesUI.py:2369 flatcamGUI/PreferencesUI.py:3252 msgid "Tool change" msgstr "Tool change" -#: flatcamGUI/ObjectUI.py:819 flatcamGUI/PreferencesUI.py:2371 +#: flatcamGUI/ObjectUI.py:836 flatcamGUI/PreferencesUI.py:2371 msgid "" "Include tool-change sequence\n" "in G-Code (Pause for tool change)." @@ -7504,12 +7612,12 @@ msgstr "" "Include tool-change sequence\n" "in G-Code (Pause for tool change)." -#: flatcamGUI/ObjectUI.py:825 flatcamGUI/ObjectUI.py:1395 +#: flatcamGUI/ObjectUI.py:842 flatcamGUI/ObjectUI.py:1432 msgid "Tool change Z" msgstr "Tool change Z" -#: flatcamGUI/ObjectUI.py:827 flatcamGUI/ObjectUI.py:1398 -#: flatcamGUI/PreferencesUI.py:2380 flatcamGUI/PreferencesUI.py:3265 +#: flatcamGUI/ObjectUI.py:844 flatcamGUI/ObjectUI.py:1435 +#: flatcamGUI/PreferencesUI.py:2380 flatcamGUI/PreferencesUI.py:3267 msgid "" "Z-axis position (height) for\n" "tool change." @@ -7517,12 +7625,12 @@ msgstr "" "Z-axis position (height) for\n" "tool change." -#: flatcamGUI/ObjectUI.py:845 flatcamGUI/PreferencesUI.py:2573 -#: flatcamGUI/PreferencesUI.py:3415 +#: flatcamGUI/ObjectUI.py:862 flatcamGUI/PreferencesUI.py:2575 +#: flatcamGUI/PreferencesUI.py:3420 msgid "Start move Z" msgstr "Start move Z" -#: flatcamGUI/ObjectUI.py:847 flatcamGUI/PreferencesUI.py:2575 +#: flatcamGUI/ObjectUI.py:864 flatcamGUI/PreferencesUI.py:2577 msgid "" "Height of the tool just after start.\n" "Delete the value if you don't need this feature." @@ -7530,13 +7638,13 @@ msgstr "" "Height of the tool just after start.\n" "Delete the value if you don't need this feature." -#: flatcamGUI/ObjectUI.py:855 flatcamGUI/ObjectUI.py:1436 -#: flatcamGUI/PreferencesUI.py:2395 flatcamGUI/PreferencesUI.py:3284 +#: flatcamGUI/ObjectUI.py:872 flatcamGUI/ObjectUI.py:1473 +#: flatcamGUI/PreferencesUI.py:2395 flatcamGUI/PreferencesUI.py:3286 msgid "End move Z" msgstr "End move Z" -#: flatcamGUI/ObjectUI.py:857 flatcamGUI/ObjectUI.py:1438 -#: flatcamGUI/PreferencesUI.py:2397 flatcamGUI/PreferencesUI.py:3286 +#: flatcamGUI/ObjectUI.py:874 flatcamGUI/ObjectUI.py:1475 +#: flatcamGUI/PreferencesUI.py:2397 flatcamGUI/PreferencesUI.py:3288 msgid "" "Height of the tool after\n" "the last move at the end of the job." @@ -7544,13 +7652,13 @@ msgstr "" "Height of the tool after\n" "the last move at the end of the job." -#: flatcamGUI/ObjectUI.py:874 flatcamGUI/ObjectUI.py:1469 -#: flatcamGUI/PreferencesUI.py:2412 flatcamGUI/PreferencesUI.py:3319 -#: flatcamGUI/PreferencesUI.py:5479 flatcamTools/ToolSolderPaste.py:264 +#: flatcamGUI/ObjectUI.py:891 flatcamGUI/ObjectUI.py:1506 +#: flatcamGUI/PreferencesUI.py:2412 flatcamGUI/PreferencesUI.py:3321 +#: flatcamGUI/PreferencesUI.py:5497 flatcamTools/ToolSolderPaste.py:264 msgid "Feedrate Z" msgstr "Feedrate Z" -#: flatcamGUI/ObjectUI.py:876 flatcamGUI/PreferencesUI.py:2414 +#: flatcamGUI/ObjectUI.py:893 flatcamGUI/PreferencesUI.py:2414 msgid "" "Tool speed while drilling\n" "(in units per minute).\n" @@ -7562,12 +7670,12 @@ msgstr "" "So called 'Plunge' feedrate.\n" "This is for linear move G01." -#: flatcamGUI/ObjectUI.py:890 flatcamGUI/ObjectUI.py:1484 -#: flatcamGUI/PreferencesUI.py:2583 flatcamGUI/PreferencesUI.py:3425 +#: flatcamGUI/ObjectUI.py:907 flatcamGUI/ObjectUI.py:1521 +#: flatcamGUI/PreferencesUI.py:2585 flatcamGUI/PreferencesUI.py:3430 msgid "Feedrate Rapids" msgstr "Feedrate Rapids" -#: flatcamGUI/ObjectUI.py:892 flatcamGUI/PreferencesUI.py:2585 +#: flatcamGUI/ObjectUI.py:909 flatcamGUI/PreferencesUI.py:2587 msgid "" "Tool speed while drilling\n" "(in units per minute).\n" @@ -7581,12 +7689,12 @@ msgstr "" "It is useful only for Marlin,\n" "ignore for any other cases." -#: flatcamGUI/ObjectUI.py:910 flatcamGUI/ObjectUI.py:1514 -#: flatcamGUI/PreferencesUI.py:3335 +#: flatcamGUI/ObjectUI.py:927 flatcamGUI/ObjectUI.py:1566 +#: flatcamGUI/PreferencesUI.py:3337 msgid "Spindle speed" msgstr "Spindle speed" -#: flatcamGUI/ObjectUI.py:912 flatcamGUI/PreferencesUI.py:2429 +#: flatcamGUI/ObjectUI.py:929 flatcamGUI/PreferencesUI.py:2429 msgid "" "Speed of the spindle\n" "in RPM (optional)" @@ -7594,8 +7702,8 @@ msgstr "" "Speed of the spindle\n" "in RPM (optional)" -#: flatcamGUI/ObjectUI.py:922 flatcamGUI/ObjectUI.py:1531 -#: flatcamGUI/PreferencesUI.py:2439 flatcamGUI/PreferencesUI.py:3350 +#: flatcamGUI/ObjectUI.py:941 flatcamGUI/ObjectUI.py:1585 +#: flatcamGUI/PreferencesUI.py:2441 flatcamGUI/PreferencesUI.py:3355 msgid "" "Pause to allow the spindle to reach its\n" "speed before cutting." @@ -7603,12 +7711,12 @@ msgstr "" "Pause to allow the spindle to reach its\n" "speed before cutting." -#: flatcamGUI/ObjectUI.py:931 flatcamGUI/ObjectUI.py:1541 -#: flatcamGUI/PreferencesUI.py:2444 flatcamGUI/PreferencesUI.py:3355 +#: flatcamGUI/ObjectUI.py:950 flatcamGUI/ObjectUI.py:1595 +#: flatcamGUI/PreferencesUI.py:2446 flatcamGUI/PreferencesUI.py:3360 msgid "Number of time units for spindle to dwell." msgstr "Number of time units for spindle to dwell." -#: flatcamGUI/ObjectUI.py:941 flatcamGUI/PreferencesUI.py:2461 +#: flatcamGUI/ObjectUI.py:960 flatcamGUI/PreferencesUI.py:2463 msgid "" "The preprocessor JSON file that dictates\n" "Gcode output." @@ -7616,13 +7724,13 @@ msgstr "" "The preprocessor JSON file that dictates\n" "Gcode output." -#: flatcamGUI/ObjectUI.py:950 flatcamGUI/ObjectUI.py:1561 -#: flatcamGUI/PreferencesUI.py:2599 flatcamGUI/PreferencesUI.py:3453 +#: flatcamGUI/ObjectUI.py:969 flatcamGUI/ObjectUI.py:1615 +#: flatcamGUI/PreferencesUI.py:2601 flatcamGUI/PreferencesUI.py:3471 msgid "Probe Z depth" msgstr "Probe Z depth" -#: flatcamGUI/ObjectUI.py:952 flatcamGUI/ObjectUI.py:1563 -#: flatcamGUI/PreferencesUI.py:2601 flatcamGUI/PreferencesUI.py:3455 +#: flatcamGUI/ObjectUI.py:971 flatcamGUI/ObjectUI.py:1617 +#: flatcamGUI/PreferencesUI.py:2603 flatcamGUI/PreferencesUI.py:3473 msgid "" "The maximum depth that the probe is allowed\n" "to probe. Negative value, in current units." @@ -7630,21 +7738,21 @@ msgstr "" "The maximum depth that the probe is allowed\n" "to probe. Negative value, in current units." -#: flatcamGUI/ObjectUI.py:966 flatcamGUI/ObjectUI.py:1578 -#: flatcamGUI/PreferencesUI.py:2612 flatcamGUI/PreferencesUI.py:3468 +#: flatcamGUI/ObjectUI.py:985 flatcamGUI/ObjectUI.py:1632 +#: flatcamGUI/PreferencesUI.py:2614 flatcamGUI/PreferencesUI.py:3486 msgid "Feedrate Probe" msgstr "Feedrate Probe" -#: flatcamGUI/ObjectUI.py:968 flatcamGUI/ObjectUI.py:1580 -#: flatcamGUI/PreferencesUI.py:2614 flatcamGUI/PreferencesUI.py:3470 +#: flatcamGUI/ObjectUI.py:987 flatcamGUI/ObjectUI.py:1634 +#: flatcamGUI/PreferencesUI.py:2616 flatcamGUI/PreferencesUI.py:3488 msgid "The feedrate used while the probe is probing." msgstr "The feedrate used while the probe is probing." -#: flatcamGUI/ObjectUI.py:994 flatcamGUI/PreferencesUI.py:2470 +#: flatcamGUI/ObjectUI.py:1013 flatcamGUI/PreferencesUI.py:2472 msgid "Gcode" msgstr "Gcode" -#: flatcamGUI/ObjectUI.py:996 +#: flatcamGUI/ObjectUI.py:1015 msgid "" "Choose what to use for GCode generation:\n" "'Drills', 'Slots' or 'Both'.\n" @@ -7656,19 +7764,19 @@ msgstr "" "When choosing 'Slots' or 'Both', slots will be\n" "converted to a series of drills." -#: flatcamGUI/ObjectUI.py:1010 +#: flatcamGUI/ObjectUI.py:1029 msgid "Create Drills GCode" msgstr "Create Drills GCode" -#: flatcamGUI/ObjectUI.py:1012 +#: flatcamGUI/ObjectUI.py:1031 msgid "Generate the CNC Job." msgstr "Generate the CNC Job." -#: flatcamGUI/ObjectUI.py:1017 flatcamGUI/PreferencesUI.py:2488 +#: flatcamGUI/ObjectUI.py:1042 flatcamGUI/PreferencesUI.py:2490 msgid "Mill Holes" msgstr "Mill Holes" -#: flatcamGUI/ObjectUI.py:1019 +#: flatcamGUI/ObjectUI.py:1044 msgid "" "Create Geometry for milling holes.\n" "Select from the Tools Table above the hole dias to be\n" @@ -7678,20 +7786,20 @@ msgstr "" "Select from the Tools Table above the hole dias to be\n" "milled. Use the # column to make the selection." -#: flatcamGUI/ObjectUI.py:1025 flatcamGUI/PreferencesUI.py:2494 +#: flatcamGUI/ObjectUI.py:1050 flatcamGUI/PreferencesUI.py:2496 msgid "Drill Tool dia" msgstr "Drill Tool dia" -#: flatcamGUI/ObjectUI.py:1027 flatcamGUI/PreferencesUI.py:1451 -#: flatcamGUI/PreferencesUI.py:2496 +#: flatcamGUI/ObjectUI.py:1052 flatcamGUI/PreferencesUI.py:1451 +#: flatcamGUI/PreferencesUI.py:2498 msgid "Diameter of the cutting tool." msgstr "Diameter of the cutting tool." -#: flatcamGUI/ObjectUI.py:1034 +#: flatcamGUI/ObjectUI.py:1059 msgid "Mill Drills Geo" msgstr "Mill Drills Geo" -#: flatcamGUI/ObjectUI.py:1036 +#: flatcamGUI/ObjectUI.py:1061 msgid "" "Create the Geometry Object\n" "for milling DRILLS toolpaths." @@ -7699,11 +7807,11 @@ msgstr "" "Create the Geometry Object\n" "for milling DRILLS toolpaths." -#: flatcamGUI/ObjectUI.py:1044 flatcamGUI/PreferencesUI.py:2505 +#: flatcamGUI/ObjectUI.py:1075 flatcamGUI/PreferencesUI.py:2507 msgid "Slot Tool dia" msgstr "Slot Tool dia" -#: flatcamGUI/ObjectUI.py:1046 flatcamGUI/PreferencesUI.py:2507 +#: flatcamGUI/ObjectUI.py:1077 flatcamGUI/PreferencesUI.py:2509 msgid "" "Diameter of the cutting tool\n" "when milling slots." @@ -7711,11 +7819,11 @@ msgstr "" "Diameter of the cutting tool\n" "when milling slots." -#: flatcamGUI/ObjectUI.py:1055 +#: flatcamGUI/ObjectUI.py:1086 msgid "Mill Slots Geo" msgstr "Mill Slots Geo" -#: flatcamGUI/ObjectUI.py:1057 +#: flatcamGUI/ObjectUI.py:1088 msgid "" "Create the Geometry Object\n" "for milling SLOTS toolpaths." @@ -7723,11 +7831,11 @@ msgstr "" "Create the Geometry Object\n" "for milling SLOTS toolpaths." -#: flatcamGUI/ObjectUI.py:1078 flatcamTools/ToolCutOut.py:315 +#: flatcamGUI/ObjectUI.py:1115 flatcamTools/ToolCutOut.py:315 msgid "Geometry Object" msgstr "Geometry Object" -#: flatcamGUI/ObjectUI.py:1110 +#: flatcamGUI/ObjectUI.py:1147 msgid "" "Tools in this Geometry object used for cutting.\n" "The 'Offset' entry will set an offset for the cut.\n" @@ -7755,22 +7863,23 @@ msgstr "" "grayed out and Cut Z is automatically calculated from the newly \n" "showed UI form entries named V-Tip Dia and V-Tip Angle." -#: flatcamGUI/ObjectUI.py:1127 flatcamGUI/ObjectUI.py:1771 -#: flatcamGUI/PreferencesUI.py:3609 +#: flatcamGUI/ObjectUI.py:1164 flatcamGUI/ObjectUI.py:1853 +#: flatcamGUI/PreferencesUI.py:3627 msgid "Plot Object" msgstr "Plot Object" -#: flatcamGUI/ObjectUI.py:1141 flatcamGUI/ObjectUI.py:1784 -#: flatcamGUI/PreferencesUI.py:6154 flatcamTools/ToolCopperThieving.py:220 +#: flatcamGUI/ObjectUI.py:1178 flatcamGUI/ObjectUI.py:1866 +#: flatcamGUI/ObjectUI.py:1876 flatcamGUI/PreferencesUI.py:6172 +#: flatcamTools/ToolCopperThieving.py:220 msgid "Dia" msgstr "Dia" -#: flatcamGUI/ObjectUI.py:1141 flatcamGUI/ObjectUI.py:1784 +#: flatcamGUI/ObjectUI.py:1178 flatcamGUI/ObjectUI.py:1866 #: flatcamTools/ToolNonCopperClear.py:120 flatcamTools/ToolPaint.py:123 msgid "TT" msgstr "TT" -#: flatcamGUI/ObjectUI.py:1148 +#: flatcamGUI/ObjectUI.py:1185 msgid "" "This is the Tool Number.\n" "When ToolChange is checked, on toolchange event this value\n" @@ -7780,7 +7889,7 @@ msgstr "" "When ToolChange is checked, on toolchange event this value\n" "will be showed as a T1, T2 ... Tn" -#: flatcamGUI/ObjectUI.py:1159 +#: flatcamGUI/ObjectUI.py:1196 msgid "" "The value for the Offset can be:\n" "- Path -> There is no offset, the tool cut will be done through the geometry " @@ -7796,7 +7905,7 @@ msgstr "" "'pocket'.\n" "- Out(side) -> The tool cut will follow the geometry line on the outside." -#: flatcamGUI/ObjectUI.py:1166 +#: flatcamGUI/ObjectUI.py:1203 msgid "" "The (Operation) Type has only informative value. Usually the UI form " "values \n" @@ -7816,7 +7925,7 @@ msgstr "" "For Isolation we need a lower Feedrate as it use a milling bit with a fine " "tip." -#: flatcamGUI/ObjectUI.py:1175 +#: flatcamGUI/ObjectUI.py:1212 msgid "" "The Tool Type (TT) can be:\n" "- Circular with 1 ... 4 teeth -> it is informative only. Being circular the " @@ -7846,7 +7955,7 @@ msgstr "" "Choosing the V-Shape Tool Type automatically will select the Operation Type " "as Isolation." -#: flatcamGUI/ObjectUI.py:1187 +#: flatcamGUI/ObjectUI.py:1224 msgid "" "Plot column. It is visible only for MultiGeo geometries, meaning geometries " "that holds the geometry\n" @@ -7864,7 +7973,7 @@ msgstr "" "plot on canvas\n" "for the corresponding tool." -#: flatcamGUI/ObjectUI.py:1205 +#: flatcamGUI/ObjectUI.py:1242 msgid "" "The value to offset the cut when \n" "the Offset type selected is 'Offset'.\n" @@ -7876,7 +7985,7 @@ msgstr "" "The value can be positive for 'outside'\n" "cut and negative for 'inside' cut." -#: flatcamGUI/ObjectUI.py:1230 +#: flatcamGUI/ObjectUI.py:1267 msgid "" "Add a new tool to the Tool Table\n" "with the specified diameter." @@ -7884,11 +7993,11 @@ msgstr "" "Add a new tool to the Tool Table\n" "with the specified diameter." -#: flatcamGUI/ObjectUI.py:1238 +#: flatcamGUI/ObjectUI.py:1275 msgid "Add Tool from DataBase" msgstr "Add Tool from DataBase" -#: flatcamGUI/ObjectUI.py:1240 +#: flatcamGUI/ObjectUI.py:1277 msgid "" "Add a new tool to the Tool Table\n" "from the Tool DataBase." @@ -7896,7 +8005,7 @@ msgstr "" "Add a new tool to the Tool Table\n" "from the Tool DataBase." -#: flatcamGUI/ObjectUI.py:1250 +#: flatcamGUI/ObjectUI.py:1287 msgid "" "Copy a selection of tools in the Tool Table\n" "by first selecting a row in the Tool Table." @@ -7904,7 +8013,7 @@ msgstr "" "Copy a selection of tools in the Tool Table\n" "by first selecting a row in the Tool Table." -#: flatcamGUI/ObjectUI.py:1256 +#: flatcamGUI/ObjectUI.py:1293 msgid "" "Delete a selection of tools in the Tool Table\n" "by first selecting a row in the Tool Table." @@ -7912,7 +8021,7 @@ msgstr "" "Delete a selection of tools in the Tool Table\n" "by first selecting a row in the Tool Table." -#: flatcamGUI/ObjectUI.py:1280 +#: flatcamGUI/ObjectUI.py:1317 msgid "" "The data used for creating GCode.\n" "Each tool store it's own set of such data." @@ -7920,13 +8029,13 @@ msgstr "" "The data used for creating GCode.\n" "Each tool store it's own set of such data." -#: flatcamGUI/ObjectUI.py:1350 flatcamGUI/PreferencesUI.py:3197 -#: flatcamGUI/PreferencesUI.py:4293 flatcamTools/ToolCutOut.py:153 +#: flatcamGUI/ObjectUI.py:1387 flatcamGUI/PreferencesUI.py:3199 +#: flatcamGUI/PreferencesUI.py:4311 flatcamTools/ToolCutOut.py:153 msgid "Multi-Depth" msgstr "Multi-Depth" -#: flatcamGUI/ObjectUI.py:1353 flatcamGUI/PreferencesUI.py:3200 -#: flatcamGUI/PreferencesUI.py:4296 flatcamTools/ToolCutOut.py:156 +#: flatcamGUI/ObjectUI.py:1390 flatcamGUI/PreferencesUI.py:3202 +#: flatcamGUI/PreferencesUI.py:4314 flatcamTools/ToolCutOut.py:156 msgid "" "Use multiple passes to limit\n" "the cut depth in each pass. Will\n" @@ -7938,12 +8047,12 @@ msgstr "" "cut multiple times until Cut Z is\n" "reached." -#: flatcamGUI/ObjectUI.py:1367 flatcamGUI/PreferencesUI.py:4308 +#: flatcamGUI/ObjectUI.py:1404 flatcamGUI/PreferencesUI.py:4326 #: flatcamTools/ToolCutOut.py:170 msgid "Depth of each pass (positive)." msgstr "Depth of each pass (positive)." -#: flatcamGUI/ObjectUI.py:1378 flatcamGUI/PreferencesUI.py:3232 +#: flatcamGUI/ObjectUI.py:1415 flatcamGUI/PreferencesUI.py:3234 msgid "" "Height of the tool when\n" "moving without cutting." @@ -7951,7 +8060,7 @@ msgstr "" "Height of the tool when\n" "moving without cutting." -#: flatcamGUI/ObjectUI.py:1405 flatcamGUI/PreferencesUI.py:3253 +#: flatcamGUI/ObjectUI.py:1442 flatcamGUI/PreferencesUI.py:3255 msgid "" "Include tool-change sequence\n" "in the Machine Code (Pause for tool change)." @@ -7959,12 +8068,12 @@ msgstr "" "Include tool-change sequence\n" "in the Machine Code (Pause for tool change)." -#: flatcamGUI/ObjectUI.py:1455 flatcamGUI/PreferencesUI.py:3304 -#: flatcamGUI/PreferencesUI.py:5466 flatcamTools/ToolSolderPaste.py:252 +#: flatcamGUI/ObjectUI.py:1492 flatcamGUI/PreferencesUI.py:3306 +#: flatcamGUI/PreferencesUI.py:5484 flatcamTools/ToolSolderPaste.py:252 msgid "Feedrate X-Y" msgstr "Feedrate X-Y" -#: flatcamGUI/ObjectUI.py:1457 flatcamGUI/PreferencesUI.py:3306 +#: flatcamGUI/ObjectUI.py:1494 flatcamGUI/PreferencesUI.py:3308 msgid "" "Cutting speed in the XY\n" "plane in units per minute" @@ -7972,7 +8081,7 @@ msgstr "" "Cutting speed in the XY\n" "plane in units per minute" -#: flatcamGUI/ObjectUI.py:1471 flatcamGUI/PreferencesUI.py:3321 +#: flatcamGUI/ObjectUI.py:1508 flatcamGUI/PreferencesUI.py:3323 msgid "" "Cutting speed in the XY\n" "plane in units per minute.\n" @@ -7982,7 +8091,7 @@ msgstr "" "plane in units per minute.\n" "It is called also Plunge." -#: flatcamGUI/ObjectUI.py:1486 flatcamGUI/PreferencesUI.py:3427 +#: flatcamGUI/ObjectUI.py:1523 flatcamGUI/PreferencesUI.py:3432 msgid "" "Cutting speed in the XY plane\n" "(in units per minute).\n" @@ -7996,11 +8105,13 @@ msgstr "" "It is useful only for Marlin,\n" "ignore for any other cases." -#: flatcamGUI/ObjectUI.py:1504 flatcamGUI/PreferencesUI.py:3443 -msgid "Re-cut 1st pt." -msgstr "Re-cut 1st pt." +#: flatcamGUI/ObjectUI.py:1541 flatcamGUI/PreferencesUI.py:3448 +#| msgid "Re-cut 1st pt." +msgid "Re-cut" +msgstr "Re-cut" -#: flatcamGUI/ObjectUI.py:1506 flatcamGUI/PreferencesUI.py:3445 +#: flatcamGUI/ObjectUI.py:1543 flatcamGUI/ObjectUI.py:1555 +#: flatcamGUI/PreferencesUI.py:3450 flatcamGUI/PreferencesUI.py:3462 msgid "" "In order to remove possible\n" "copper leftovers where first cut\n" @@ -8012,7 +8123,7 @@ msgstr "" "meet with last cut, we generate an\n" "extended cut over the first cut section." -#: flatcamGUI/ObjectUI.py:1517 flatcamGUI/PreferencesUI.py:3338 +#: flatcamGUI/ObjectUI.py:1569 flatcamGUI/PreferencesUI.py:3340 msgid "" "Speed of the spindle in RPM (optional).\n" "If LASER preprocessor is used,\n" @@ -8022,12 +8133,12 @@ msgstr "" "If LASER preprocessor is used,\n" "this value is the power of laser." -#: flatcamGUI/ObjectUI.py:1549 flatcamGUI/PreferencesUI.py:5555 +#: flatcamGUI/ObjectUI.py:1603 flatcamGUI/PreferencesUI.py:5573 #: flatcamTools/ToolSolderPaste.py:334 msgid "PostProcessor" msgstr "PostProcessor" -#: flatcamGUI/ObjectUI.py:1551 flatcamGUI/PreferencesUI.py:3372 +#: flatcamGUI/ObjectUI.py:1605 flatcamGUI/PreferencesUI.py:3377 msgid "" "The Preprocessor file that dictates\n" "the Machine Code (like GCode, RML, HPGL) output." @@ -8035,11 +8146,11 @@ msgstr "" "The Preprocessor file that dictates\n" "the Machine Code (like GCode, RML, HPGL) output." -#: flatcamGUI/ObjectUI.py:1598 +#: flatcamGUI/ObjectUI.py:1652 msgid "Apply parameters to all tools" msgstr "Apply parameters to all tools" -#: flatcamGUI/ObjectUI.py:1600 +#: flatcamGUI/ObjectUI.py:1654 msgid "" "The parameters in the current form will be applied\n" "on all the tools from the Tool Table." @@ -8047,7 +8158,7 @@ msgstr "" "The parameters in the current form will be applied\n" "on all the tools from the Tool Table." -#: flatcamGUI/ObjectUI.py:1609 +#: flatcamGUI/ObjectUI.py:1663 msgid "" "Add at least one tool in the tool-table.\n" "Click the header to select all, or Ctrl + LMB\n" @@ -8057,44 +8168,39 @@ msgstr "" "Click the header to select all, or Ctrl + LMB\n" "for custom selection of tools." -#: flatcamGUI/ObjectUI.py:1616 -#| msgid "Generate the CNC Job object." +#: flatcamGUI/ObjectUI.py:1670 msgid "Generate CNCJob object" msgstr "Generate CNCJob object" -#: flatcamGUI/ObjectUI.py:1618 +#: flatcamGUI/ObjectUI.py:1672 msgid "Generate the CNC Job object." msgstr "Generate the CNC Job object." -#: flatcamGUI/ObjectUI.py:1625 -msgid "Paint Area" -msgstr "Paint Area" - -#: flatcamGUI/ObjectUI.py:1628 flatcamGUI/PreferencesUI.py:4471 -msgid "" -"Creates tool paths to cover the\n" -"whole area of a polygon (remove\n" -"all copper). You will be asked\n" -"to click on the desired polygon." -msgstr "" -"Creates tool paths to cover the\n" -"whole area of a polygon (remove\n" -"all copper). You will be asked\n" -"to click on the desired polygon." - -#: flatcamGUI/ObjectUI.py:1639 +#: flatcamGUI/ObjectUI.py:1689 msgid "Launch Paint Tool in Tools Tab." msgstr "Launch Paint Tool in Tools Tab." -#: flatcamGUI/ObjectUI.py:1655 +#: flatcamGUI/ObjectUI.py:1697 flatcamGUI/PreferencesUI.py:4489 +msgid "" +"Creates tool paths to cover the\n" +"whole area of a polygon (remove\n" +"all copper). You will be asked\n" +"to click on the desired polygon." +msgstr "" +"Creates tool paths to cover the\n" +"whole area of a polygon (remove\n" +"all copper). You will be asked\n" +"to click on the desired polygon." + +#: flatcamGUI/ObjectUI.py:1737 msgid "CNC Job Object" msgstr "CNC Job Object" -#: flatcamGUI/ObjectUI.py:1666 flatcamGUI/PreferencesUI.py:3614 +#: flatcamGUI/ObjectUI.py:1748 flatcamGUI/PreferencesUI.py:3632 msgid "Plot kind" msgstr "Plot kind" -#: flatcamGUI/ObjectUI.py:1669 flatcamGUI/PreferencesUI.py:3616 +#: flatcamGUI/ObjectUI.py:1751 flatcamGUI/PreferencesUI.py:3634 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" @@ -8106,15 +8212,15 @@ msgstr "" "above the work piece or it can be of type 'Cut',\n" "which means the moves that cut into the material." -#: flatcamGUI/ObjectUI.py:1678 flatcamGUI/PreferencesUI.py:3624 +#: flatcamGUI/ObjectUI.py:1760 flatcamGUI/PreferencesUI.py:3642 msgid "Travel" msgstr "Travel" -#: flatcamGUI/ObjectUI.py:1682 flatcamGUI/PreferencesUI.py:3633 +#: flatcamGUI/ObjectUI.py:1764 flatcamGUI/PreferencesUI.py:3651 msgid "Display Annotation" msgstr "Display Annotation" -#: flatcamGUI/ObjectUI.py:1684 flatcamGUI/PreferencesUI.py:3635 +#: flatcamGUI/ObjectUI.py:1766 flatcamGUI/PreferencesUI.py:3653 msgid "" "This selects if to display text annotation on the plot.\n" "When checked it will display numbers in order for each end\n" @@ -8124,11 +8230,11 @@ msgstr "" "When checked it will display numbers in order for each end\n" "of a travel line." -#: flatcamGUI/ObjectUI.py:1699 +#: flatcamGUI/ObjectUI.py:1781 msgid "Travelled dist." msgstr "Travelled dist." -#: flatcamGUI/ObjectUI.py:1701 flatcamGUI/ObjectUI.py:1706 +#: flatcamGUI/ObjectUI.py:1783 flatcamGUI/ObjectUI.py:1788 msgid "" "This is the total travelled distance on X-Y plane.\n" "In current units." @@ -8136,11 +8242,11 @@ msgstr "" "This is the total travelled distance on X-Y plane.\n" "In current units." -#: flatcamGUI/ObjectUI.py:1711 +#: flatcamGUI/ObjectUI.py:1793 msgid "Estimated time" msgstr "Estimated time" -#: flatcamGUI/ObjectUI.py:1713 flatcamGUI/ObjectUI.py:1718 +#: flatcamGUI/ObjectUI.py:1795 flatcamGUI/ObjectUI.py:1800 msgid "" "This is the estimated time to do the routing/drilling,\n" "without the time spent in ToolChange events." @@ -8148,11 +8254,11 @@ msgstr "" "This is the estimated time to do the routing/drilling,\n" "without the time spent in ToolChange events." -#: flatcamGUI/ObjectUI.py:1753 +#: flatcamGUI/ObjectUI.py:1835 msgid "CNC Tools Table" msgstr "CNC Tools Table" -#: flatcamGUI/ObjectUI.py:1756 +#: flatcamGUI/ObjectUI.py:1838 msgid "" "Tools in this CNCJob object used for cutting.\n" "The tool diameter is used for plotting on canvas.\n" @@ -8174,24 +8280,24 @@ msgstr "" "The 'Tool type'(TT) can be circular with 1 to 4 teeths(C1..C4),\n" "ball(B), or V-Shaped(V)." -#: flatcamGUI/ObjectUI.py:1785 +#: flatcamGUI/ObjectUI.py:1866 flatcamGUI/ObjectUI.py:1877 msgid "P" msgstr "P" -#: flatcamGUI/ObjectUI.py:1797 +#: flatcamGUI/ObjectUI.py:1887 msgid "Update Plot" msgstr "Update Plot" -#: flatcamGUI/ObjectUI.py:1799 +#: flatcamGUI/ObjectUI.py:1889 msgid "Update the plot." msgstr "Update the plot." -#: flatcamGUI/ObjectUI.py:1806 flatcamGUI/PreferencesUI.py:3801 +#: flatcamGUI/ObjectUI.py:1896 flatcamGUI/PreferencesUI.py:3819 msgid "Export CNC Code" msgstr "Export CNC Code" -#: flatcamGUI/ObjectUI.py:1808 flatcamGUI/PreferencesUI.py:3742 -#: flatcamGUI/PreferencesUI.py:3803 +#: flatcamGUI/ObjectUI.py:1898 flatcamGUI/PreferencesUI.py:3760 +#: flatcamGUI/PreferencesUI.py:3821 msgid "" "Export and save G-Code to\n" "make this object to a file." @@ -8199,11 +8305,11 @@ msgstr "" "Export and save G-Code to\n" "make this object to a file." -#: flatcamGUI/ObjectUI.py:1814 +#: flatcamGUI/ObjectUI.py:1904 msgid "Prepend to CNC Code" msgstr "Prepend to CNC Code" -#: flatcamGUI/ObjectUI.py:1816 flatcamGUI/PreferencesUI.py:3758 +#: flatcamGUI/ObjectUI.py:1906 flatcamGUI/PreferencesUI.py:3776 msgid "" "Type here any G-Code commands you would\n" "like to add at the beginning of the G-Code file." @@ -8211,7 +8317,7 @@ msgstr "" "Type here any G-Code commands you would\n" "like to add at the beginning of the G-Code file." -#: flatcamGUI/ObjectUI.py:1823 flatcamGUI/PreferencesUI.py:3765 +#: flatcamGUI/ObjectUI.py:1913 flatcamGUI/PreferencesUI.py:3783 msgid "" "Type here any G-Code commands you would like to add at the beginning of the " "G-Code file." @@ -8219,11 +8325,11 @@ msgstr "" "Type here any G-Code commands you would like to add at the beginning of the " "G-Code file." -#: flatcamGUI/ObjectUI.py:1829 +#: flatcamGUI/ObjectUI.py:1919 msgid "Append to CNC Code" msgstr "Append to CNC Code" -#: flatcamGUI/ObjectUI.py:1831 flatcamGUI/PreferencesUI.py:3774 +#: flatcamGUI/ObjectUI.py:1921 flatcamGUI/PreferencesUI.py:3792 msgid "" "Type here any G-Code commands you would\n" "like to append to the generated file.\n" @@ -8233,7 +8339,7 @@ msgstr "" "like to append to the generated file.\n" "I.e.: M2 (End of program)" -#: flatcamGUI/ObjectUI.py:1839 flatcamGUI/PreferencesUI.py:3782 +#: flatcamGUI/ObjectUI.py:1929 flatcamGUI/PreferencesUI.py:3800 msgid "" "Type here any G-Code commands you would like to append to the generated " "file. I.e.: M2 (End of program)" @@ -8241,11 +8347,11 @@ msgstr "" "Type here any G-Code commands you would like to append to the generated " "file. I.e.: M2 (End of program)" -#: flatcamGUI/ObjectUI.py:1853 flatcamGUI/PreferencesUI.py:3809 +#: flatcamGUI/ObjectUI.py:1943 flatcamGUI/PreferencesUI.py:3827 msgid "Toolchange G-Code" msgstr "Toolchange G-Code" -#: flatcamGUI/ObjectUI.py:1856 flatcamGUI/PreferencesUI.py:3812 +#: flatcamGUI/ObjectUI.py:1946 flatcamGUI/PreferencesUI.py:3830 msgid "" "Type here any G-Code commands you would\n" "like to be executed when Toolchange event is encountered.\n" @@ -8267,7 +8373,7 @@ msgstr "" "that has 'toolchange_custom' in it's name and this is built\n" "having as template the 'Toolchange Custom' posprocessor file." -#: flatcamGUI/ObjectUI.py:1871 flatcamGUI/PreferencesUI.py:3835 +#: flatcamGUI/ObjectUI.py:1961 flatcamGUI/PreferencesUI.py:3853 msgid "" "Type here any G-Code commands you would like to be executed when Toolchange " "event is encountered. This will constitute a Custom Toolchange GCode, or a " @@ -8281,11 +8387,11 @@ msgstr "" "WARNING: it can be used only with a preprocessor file that has " "'toolchange_custom' in it's name." -#: flatcamGUI/ObjectUI.py:1886 flatcamGUI/PreferencesUI.py:3851 +#: flatcamGUI/ObjectUI.py:1976 flatcamGUI/PreferencesUI.py:3869 msgid "Use Toolchange Macro" msgstr "Use Toolchange Macro" -#: flatcamGUI/ObjectUI.py:1888 flatcamGUI/PreferencesUI.py:3853 +#: flatcamGUI/ObjectUI.py:1978 flatcamGUI/PreferencesUI.py:3871 msgid "" "Check this box if you want to use\n" "a Custom Toolchange GCode (macro)." @@ -8293,7 +8399,7 @@ msgstr "" "Check this box if you want to use\n" "a Custom Toolchange GCode (macro)." -#: flatcamGUI/ObjectUI.py:1896 flatcamGUI/PreferencesUI.py:3865 +#: flatcamGUI/ObjectUI.py:1986 flatcamGUI/PreferencesUI.py:3883 msgid "" "A list of the FlatCAM variables that can be used\n" "in the Toolchange event.\n" @@ -8303,73 +8409,73 @@ msgstr "" "in the Toolchange event.\n" "They have to be surrounded by the '%' symbol" -#: flatcamGUI/ObjectUI.py:1903 flatcamGUI/PreferencesUI.py:1851 -#: flatcamGUI/PreferencesUI.py:2822 flatcamGUI/PreferencesUI.py:3551 -#: flatcamGUI/PreferencesUI.py:3872 flatcamGUI/PreferencesUI.py:3954 -#: flatcamGUI/PreferencesUI.py:4246 flatcamGUI/PreferencesUI.py:4405 -#: flatcamGUI/PreferencesUI.py:4627 flatcamGUI/PreferencesUI.py:4924 -#: flatcamGUI/PreferencesUI.py:5175 flatcamGUI/PreferencesUI.py:5351 -#: flatcamGUI/PreferencesUI.py:5576 flatcamGUI/PreferencesUI.py:5598 -#: flatcamGUI/PreferencesUI.py:5822 flatcamGUI/PreferencesUI.py:5859 -#: flatcamGUI/PreferencesUI.py:6053 flatcamGUI/PreferencesUI.py:6307 -#: flatcamGUI/PreferencesUI.py:6423 flatcamTools/ToolCopperThieving.py:89 +#: flatcamGUI/ObjectUI.py:1993 flatcamGUI/PreferencesUI.py:1851 +#: flatcamGUI/PreferencesUI.py:2824 flatcamGUI/PreferencesUI.py:3569 +#: flatcamGUI/PreferencesUI.py:3890 flatcamGUI/PreferencesUI.py:3972 +#: flatcamGUI/PreferencesUI.py:4264 flatcamGUI/PreferencesUI.py:4423 +#: flatcamGUI/PreferencesUI.py:4645 flatcamGUI/PreferencesUI.py:4942 +#: flatcamGUI/PreferencesUI.py:5193 flatcamGUI/PreferencesUI.py:5369 +#: flatcamGUI/PreferencesUI.py:5594 flatcamGUI/PreferencesUI.py:5616 +#: flatcamGUI/PreferencesUI.py:5840 flatcamGUI/PreferencesUI.py:5877 +#: flatcamGUI/PreferencesUI.py:6071 flatcamGUI/PreferencesUI.py:6325 +#: flatcamGUI/PreferencesUI.py:6441 flatcamTools/ToolCopperThieving.py:89 #: flatcamTools/ToolFiducials.py:149 flatcamTools/ToolNonCopperClear.py:315 msgid "Parameters" msgstr "Parameters" -#: flatcamGUI/ObjectUI.py:1906 flatcamGUI/PreferencesUI.py:3875 +#: flatcamGUI/ObjectUI.py:1996 flatcamGUI/PreferencesUI.py:3893 msgid "FlatCAM CNC parameters" msgstr "FlatCAM CNC parameters" -#: flatcamGUI/ObjectUI.py:1907 flatcamGUI/PreferencesUI.py:3876 +#: flatcamGUI/ObjectUI.py:1997 flatcamGUI/PreferencesUI.py:3894 msgid "tool number" msgstr "tool number" -#: flatcamGUI/ObjectUI.py:1908 flatcamGUI/PreferencesUI.py:3877 +#: flatcamGUI/ObjectUI.py:1998 flatcamGUI/PreferencesUI.py:3895 msgid "tool diameter" msgstr "tool diameter" -#: flatcamGUI/ObjectUI.py:1909 flatcamGUI/PreferencesUI.py:3878 +#: flatcamGUI/ObjectUI.py:1999 flatcamGUI/PreferencesUI.py:3896 msgid "for Excellon, total number of drills" msgstr "for Excellon, total number of drills" -#: flatcamGUI/ObjectUI.py:1911 flatcamGUI/PreferencesUI.py:3880 +#: flatcamGUI/ObjectUI.py:2001 flatcamGUI/PreferencesUI.py:3898 msgid "X coord for Toolchange" msgstr "X coord for Toolchange" -#: flatcamGUI/ObjectUI.py:1912 flatcamGUI/PreferencesUI.py:3881 +#: flatcamGUI/ObjectUI.py:2002 flatcamGUI/PreferencesUI.py:3899 msgid "Y coord for Toolchange" msgstr "Y coord for Toolchange" -#: flatcamGUI/ObjectUI.py:1913 flatcamGUI/PreferencesUI.py:3883 +#: flatcamGUI/ObjectUI.py:2003 flatcamGUI/PreferencesUI.py:3901 msgid "Z coord for Toolchange" msgstr "Z coord for Toolchange" -#: flatcamGUI/ObjectUI.py:1914 +#: flatcamGUI/ObjectUI.py:2004 msgid "depth where to cut" msgstr "depth where to cut" -#: flatcamGUI/ObjectUI.py:1915 +#: flatcamGUI/ObjectUI.py:2005 msgid "height where to travel" msgstr "height where to travel" -#: flatcamGUI/ObjectUI.py:1916 flatcamGUI/PreferencesUI.py:3886 +#: flatcamGUI/ObjectUI.py:2006 flatcamGUI/PreferencesUI.py:3904 msgid "the step value for multidepth cut" msgstr "the step value for multidepth cut" -#: flatcamGUI/ObjectUI.py:1918 flatcamGUI/PreferencesUI.py:3888 +#: flatcamGUI/ObjectUI.py:2008 flatcamGUI/PreferencesUI.py:3906 msgid "the value for the spindle speed" msgstr "the value for the spindle speed" -#: flatcamGUI/ObjectUI.py:1920 +#: flatcamGUI/ObjectUI.py:2010 msgid "time to dwell to allow the spindle to reach it's set RPM" msgstr "time to dwell to allow the spindle to reach it's set RPM" -#: flatcamGUI/ObjectUI.py:1936 +#: flatcamGUI/ObjectUI.py:2026 msgid "View CNC Code" msgstr "View CNC Code" -#: flatcamGUI/ObjectUI.py:1938 +#: flatcamGUI/ObjectUI.py:2028 msgid "" "Opens TAB to view/modify/print G-Code\n" "file." @@ -8377,11 +8483,11 @@ msgstr "" "Opens TAB to view/modify/print G-Code\n" "file." -#: flatcamGUI/ObjectUI.py:1943 +#: flatcamGUI/ObjectUI.py:2033 msgid "Save CNC Code" msgstr "Save CNC Code" -#: flatcamGUI/ObjectUI.py:1945 +#: flatcamGUI/ObjectUI.py:2035 msgid "" "Opens dialog to save G-Code\n" "file." @@ -8389,75 +8495,75 @@ msgstr "" "Opens dialog to save G-Code\n" "file." -#: flatcamGUI/ObjectUI.py:1965 +#: flatcamGUI/ObjectUI.py:2055 msgid "Script Object" msgstr "Script Object" -#: flatcamGUI/ObjectUI.py:1987 flatcamGUI/ObjectUI.py:2049 +#: flatcamGUI/ObjectUI.py:2077 flatcamGUI/ObjectUI.py:2139 msgid "Auto Completer" msgstr "Auto Completer" -#: flatcamGUI/ObjectUI.py:1989 +#: flatcamGUI/ObjectUI.py:2079 msgid "This selects if the auto completer is enabled in the Script Editor." msgstr "This selects if the auto completer is enabled in the Script Editor." -#: flatcamGUI/ObjectUI.py:2020 +#: flatcamGUI/ObjectUI.py:2110 msgid "Document Object" msgstr "Document Object" -#: flatcamGUI/ObjectUI.py:2051 +#: flatcamGUI/ObjectUI.py:2141 msgid "This selects if the auto completer is enabled in the Document Editor." msgstr "This selects if the auto completer is enabled in the Document Editor." -#: flatcamGUI/ObjectUI.py:2069 +#: flatcamGUI/ObjectUI.py:2159 msgid "Font Type" msgstr "Font Type" -#: flatcamGUI/ObjectUI.py:2086 +#: flatcamGUI/ObjectUI.py:2176 msgid "Font Size" msgstr "Font Size" -#: flatcamGUI/ObjectUI.py:2122 +#: flatcamGUI/ObjectUI.py:2212 msgid "Alignment" msgstr "Alignment" -#: flatcamGUI/ObjectUI.py:2127 +#: flatcamGUI/ObjectUI.py:2217 msgid "Align Left" msgstr "Align Left" -#: flatcamGUI/ObjectUI.py:2132 +#: flatcamGUI/ObjectUI.py:2222 msgid "Center" msgstr "Center" -#: flatcamGUI/ObjectUI.py:2137 +#: flatcamGUI/ObjectUI.py:2227 msgid "Align Right" msgstr "Align Right" -#: flatcamGUI/ObjectUI.py:2142 +#: flatcamGUI/ObjectUI.py:2232 msgid "Justify" msgstr "Justify" -#: flatcamGUI/ObjectUI.py:2149 +#: flatcamGUI/ObjectUI.py:2239 msgid "Font Color" msgstr "Font Color" -#: flatcamGUI/ObjectUI.py:2151 +#: flatcamGUI/ObjectUI.py:2241 msgid "Set the font color for the selected text" msgstr "Set the font color for the selected text" -#: flatcamGUI/ObjectUI.py:2165 +#: flatcamGUI/ObjectUI.py:2255 msgid "Selection Color" msgstr "Selection Color" -#: flatcamGUI/ObjectUI.py:2167 +#: flatcamGUI/ObjectUI.py:2257 msgid "Set the selection color when doing text selection." msgstr "Set the selection color when doing text selection." -#: flatcamGUI/ObjectUI.py:2181 +#: flatcamGUI/ObjectUI.py:2271 msgid "Tab Size" msgstr "Tab Size" -#: flatcamGUI/ObjectUI.py:2183 +#: flatcamGUI/ObjectUI.py:2273 msgid "Set the tab size. In pixels. Default value is 80 pixels." msgstr "Set the tab size. In pixels. Default value is 80 pixels." @@ -8531,12 +8637,12 @@ msgstr "" "- Portrait\n" "- Landscape" -#: flatcamGUI/PreferencesUI.py:434 flatcamGUI/PreferencesUI.py:4839 +#: flatcamGUI/PreferencesUI.py:434 flatcamGUI/PreferencesUI.py:4857 #: flatcamTools/ToolFilm.py:424 msgid "Portrait" msgstr "Portrait" -#: flatcamGUI/PreferencesUI.py:435 flatcamGUI/PreferencesUI.py:4840 +#: flatcamGUI/PreferencesUI.py:435 flatcamGUI/PreferencesUI.py:4858 #: flatcamTools/ToolFilm.py:425 msgid "Landscape" msgstr "Landscape" @@ -8927,7 +9033,7 @@ msgid "App Preferences" msgstr "App Preferences" #: flatcamGUI/PreferencesUI.py:1063 flatcamGUI/PreferencesUI.py:1388 -#: flatcamGUI/PreferencesUI.py:1763 flatcamGUI/PreferencesUI.py:2684 +#: flatcamGUI/PreferencesUI.py:1763 flatcamGUI/PreferencesUI.py:2686 #: flatcamTools/ToolDistance.py:49 flatcamTools/ToolDistanceMin.py:49 #: flatcamTools/ToolPcbWizard.py:127 flatcamTools/ToolProperties.py:152 msgid "Units" @@ -8945,7 +9051,7 @@ msgstr "" #: flatcamGUI/PreferencesUI.py:1067 flatcamGUI/PreferencesUI.py:1394 #: flatcamGUI/PreferencesUI.py:1769 flatcamGUI/PreferencesUI.py:2223 -#: flatcamGUI/PreferencesUI.py:2690 flatcamTools/ToolCalculators.py:62 +#: flatcamGUI/PreferencesUI.py:2692 flatcamTools/ToolCalculators.py:62 #: flatcamTools/ToolPcbWizard.py:126 msgid "MM" msgstr "MM" @@ -8955,7 +9061,6 @@ msgid "IN" msgstr "IN" #: flatcamGUI/PreferencesUI.py:1074 -#| msgid "Precision" msgid "Precision MM" msgstr "Precision MM" @@ -8970,7 +9075,6 @@ msgstr "" "Any change here require an application restart." #: flatcamGUI/PreferencesUI.py:1088 -#| msgid "Precision" msgid "Precision INCH" msgstr "Precision INCH" @@ -9264,8 +9368,12 @@ msgstr "" msgid "Gerber General" msgstr "Gerber General" -#: flatcamGUI/PreferencesUI.py:1365 flatcamGUI/PreferencesUI.py:3126 -#: flatcamGUI/PreferencesUI.py:3646 flatcamGUI/PreferencesUI.py:6061 +#: flatcamGUI/PreferencesUI.py:1351 +msgid "M-Color" +msgstr "M-Color" + +#: flatcamGUI/PreferencesUI.py:1365 flatcamGUI/PreferencesUI.py:3128 +#: flatcamGUI/PreferencesUI.py:3664 flatcamGUI/PreferencesUI.py:6079 msgid "Circle Steps" msgstr "Circle Steps" @@ -9296,13 +9404,13 @@ msgstr "The units used in the Gerber file." #: flatcamGUI/PreferencesUI.py:1393 flatcamGUI/PreferencesUI.py:1768 #: flatcamGUI/PreferencesUI.py:2124 flatcamGUI/PreferencesUI.py:2222 -#: flatcamGUI/PreferencesUI.py:2689 flatcamTools/ToolCalculators.py:61 +#: flatcamGUI/PreferencesUI.py:2691 flatcamTools/ToolCalculators.py:61 #: flatcamTools/ToolPcbWizard.py:125 msgid "INCH" msgstr "INCH" #: flatcamGUI/PreferencesUI.py:1403 flatcamGUI/PreferencesUI.py:1817 -#: flatcamGUI/PreferencesUI.py:2757 +#: flatcamGUI/PreferencesUI.py:2759 msgid "Zeros" msgstr "Zeros" @@ -9322,13 +9430,13 @@ msgstr "" "and Leading Zeros are kept." #: flatcamGUI/PreferencesUI.py:1413 flatcamGUI/PreferencesUI.py:1827 -#: flatcamGUI/PreferencesUI.py:2198 flatcamGUI/PreferencesUI.py:2767 +#: flatcamGUI/PreferencesUI.py:2198 flatcamGUI/PreferencesUI.py:2769 #: flatcamTools/ToolPcbWizard.py:111 msgid "LZ" msgstr "LZ" #: flatcamGUI/PreferencesUI.py:1414 flatcamGUI/PreferencesUI.py:1828 -#: flatcamGUI/PreferencesUI.py:2199 flatcamGUI/PreferencesUI.py:2768 +#: flatcamGUI/PreferencesUI.py:2199 flatcamGUI/PreferencesUI.py:2770 #: flatcamTools/ToolPcbWizard.py:112 msgid "TZ" msgstr "TZ" @@ -9337,8 +9445,8 @@ msgstr "TZ" msgid "Gerber Options" msgstr "Gerber Options" -#: flatcamGUI/PreferencesUI.py:1509 flatcamGUI/PreferencesUI.py:3583 -#: flatcamGUI/PreferencesUI.py:4057 flatcamTools/ToolNonCopperClear.py:170 +#: flatcamGUI/PreferencesUI.py:1509 flatcamGUI/PreferencesUI.py:3601 +#: flatcamGUI/PreferencesUI.py:4075 flatcamTools/ToolNonCopperClear.py:170 msgid "Conv." msgstr "Conv." @@ -9350,8 +9458,8 @@ msgstr "Combine Passes" msgid "Gerber Adv. Options" msgstr "Gerber Adv. Options" -#: flatcamGUI/PreferencesUI.py:1595 flatcamGUI/PreferencesUI.py:2542 -#: flatcamGUI/PreferencesUI.py:3394 +#: flatcamGUI/PreferencesUI.py:1595 flatcamGUI/PreferencesUI.py:2544 +#: flatcamGUI/PreferencesUI.py:3399 msgid "Advanced Options" msgstr "Advanced Options" @@ -9399,8 +9507,8 @@ msgstr "" "- Full --> slow file loading but good visuals. This is the default.\n" "<>: Don't change this unless you know what you are doing !!!" -#: flatcamGUI/PreferencesUI.py:1707 flatcamGUI/PreferencesUI.py:4803 -#: flatcamGUI/PreferencesUI.py:6359 flatcamTools/ToolFiducials.py:201 +#: flatcamGUI/PreferencesUI.py:1707 flatcamGUI/PreferencesUI.py:4821 +#: flatcamGUI/PreferencesUI.py:6377 flatcamTools/ToolFiducials.py:201 #: flatcamTools/ToolFilm.py:255 flatcamTools/ToolProperties.py:411 #: flatcamTools/ToolProperties.py:426 flatcamTools/ToolProperties.py:429 #: flatcamTools/ToolProperties.py:432 flatcamTools/ToolProperties.py:456 @@ -9433,7 +9541,7 @@ msgstr "Tolerance for polygon simplification." msgid "Gerber Export" msgstr "Gerber Export" -#: flatcamGUI/PreferencesUI.py:1752 flatcamGUI/PreferencesUI.py:2673 +#: flatcamGUI/PreferencesUI.py:1752 flatcamGUI/PreferencesUI.py:2675 msgid "Export Options" msgstr "Export Options" @@ -9445,7 +9553,7 @@ msgstr "" "The parameters set here are used in the file exported\n" "when using the File -> Export -> Export Gerber menu entry." -#: flatcamGUI/PreferencesUI.py:1777 flatcamGUI/PreferencesUI.py:2698 +#: flatcamGUI/PreferencesUI.py:1777 flatcamGUI/PreferencesUI.py:2700 msgid "Int/Decimals" msgstr "Int/Decimals" @@ -9477,8 +9585,8 @@ msgstr "" msgid "A list of Gerber Editor parameters." msgstr "A list of Gerber Editor parameters." -#: flatcamGUI/PreferencesUI.py:1861 flatcamGUI/PreferencesUI.py:2832 -#: flatcamGUI/PreferencesUI.py:3561 flatcamGUI/PreferencesUI.py:6022 +#: flatcamGUI/PreferencesUI.py:1861 flatcamGUI/PreferencesUI.py:2834 +#: flatcamGUI/PreferencesUI.py:3579 flatcamGUI/PreferencesUI.py:6040 msgid "Selection limit" msgstr "Selection limit" @@ -9524,8 +9632,8 @@ msgstr "" msgid "Aperture Dimensions" msgstr "Aperture Dimensions" -#: flatcamGUI/PreferencesUI.py:1928 flatcamGUI/PreferencesUI.py:3144 -#: flatcamGUI/PreferencesUI.py:3966 +#: flatcamGUI/PreferencesUI.py:1928 flatcamGUI/PreferencesUI.py:3146 +#: flatcamGUI/PreferencesUI.py:3984 msgid "Diameters of the cutting tools, separated by ','" msgstr "Diameters of the cutting tools, separated by ','" @@ -9533,8 +9641,8 @@ msgstr "Diameters of the cutting tools, separated by ','" msgid "Linear Pad Array" msgstr "Linear Pad Array" -#: flatcamGUI/PreferencesUI.py:1938 flatcamGUI/PreferencesUI.py:2876 -#: flatcamGUI/PreferencesUI.py:3024 +#: flatcamGUI/PreferencesUI.py:1938 flatcamGUI/PreferencesUI.py:2878 +#: flatcamGUI/PreferencesUI.py:3026 msgid "Linear Direction" msgstr "Linear Direction" @@ -9542,13 +9650,13 @@ msgstr "Linear Direction" msgid "Circular Pad Array" msgstr "Circular Pad Array" -#: flatcamGUI/PreferencesUI.py:1982 flatcamGUI/PreferencesUI.py:2922 -#: flatcamGUI/PreferencesUI.py:3072 +#: flatcamGUI/PreferencesUI.py:1982 flatcamGUI/PreferencesUI.py:2924 +#: flatcamGUI/PreferencesUI.py:3074 msgid "Circular Direction" msgstr "Circular Direction" -#: flatcamGUI/PreferencesUI.py:1984 flatcamGUI/PreferencesUI.py:2924 -#: flatcamGUI/PreferencesUI.py:3074 +#: flatcamGUI/PreferencesUI.py:1984 flatcamGUI/PreferencesUI.py:2926 +#: flatcamGUI/PreferencesUI.py:3076 msgid "" "Direction for circular array.\n" "Can be CW = clockwise or CCW = counter clockwise." @@ -9556,8 +9664,8 @@ msgstr "" "Direction for circular array.\n" "Can be CW = clockwise or CCW = counter clockwise." -#: flatcamGUI/PreferencesUI.py:1995 flatcamGUI/PreferencesUI.py:2935 -#: flatcamGUI/PreferencesUI.py:3085 +#: flatcamGUI/PreferencesUI.py:1995 flatcamGUI/PreferencesUI.py:2937 +#: flatcamGUI/PreferencesUI.py:3087 msgid "Circular Angle" msgstr "Circular Angle" @@ -9644,7 +9752,7 @@ msgid "Default values for INCH are 2:4" msgstr "Default values for INCH are 2:4" #: flatcamGUI/PreferencesUI.py:2134 flatcamGUI/PreferencesUI.py:2165 -#: flatcamGUI/PreferencesUI.py:2712 +#: flatcamGUI/PreferencesUI.py:2714 msgid "" "This numbers signify the number of digits in\n" "the whole part of Excellon coordinates." @@ -9653,7 +9761,7 @@ msgstr "" "the whole part of Excellon coordinates." #: flatcamGUI/PreferencesUI.py:2147 flatcamGUI/PreferencesUI.py:2178 -#: flatcamGUI/PreferencesUI.py:2725 +#: flatcamGUI/PreferencesUI.py:2727 msgid "" "This numbers signify the number of digits in\n" "the decimal part of Excellon coordinates." @@ -9673,7 +9781,7 @@ msgstr "Default values for METRIC are 3:3" msgid "Default Zeros" msgstr "Default Zeros" -#: flatcamGUI/PreferencesUI.py:2190 flatcamGUI/PreferencesUI.py:2760 +#: flatcamGUI/PreferencesUI.py:2190 flatcamGUI/PreferencesUI.py:2762 msgid "" "This sets the type of Excellon zeros.\n" "If LZ then Leading Zeros are kept and\n" @@ -9799,11 +9907,11 @@ msgstr "" "Parameters used to create a CNC Job object\n" "for this drill object." -#: flatcamGUI/PreferencesUI.py:2442 flatcamGUI/PreferencesUI.py:3353 +#: flatcamGUI/PreferencesUI.py:2444 flatcamGUI/PreferencesUI.py:3358 msgid "Duration" msgstr "Duration" -#: flatcamGUI/PreferencesUI.py:2472 +#: flatcamGUI/PreferencesUI.py:2474 msgid "" "Choose what to use for GCode generation:\n" "'Drills', 'Slots' or 'Both'.\n" @@ -9815,19 +9923,19 @@ msgstr "" "When choosing 'Slots' or 'Both', slots will be\n" "converted to drills." -#: flatcamGUI/PreferencesUI.py:2490 +#: flatcamGUI/PreferencesUI.py:2492 msgid "Create Geometry for milling holes." msgstr "Create Geometry for milling holes." -#: flatcamGUI/PreferencesUI.py:2522 +#: flatcamGUI/PreferencesUI.py:2524 msgid "Defaults" msgstr "Defaults" -#: flatcamGUI/PreferencesUI.py:2535 +#: flatcamGUI/PreferencesUI.py:2537 msgid "Excellon Adv. Options" msgstr "Excellon Adv. Options" -#: flatcamGUI/PreferencesUI.py:2544 +#: flatcamGUI/PreferencesUI.py:2546 msgid "" "A list of Excellon advanced parameters.\n" "Those parameters are available only for\n" @@ -9837,20 +9945,19 @@ msgstr "" "Those parameters are available only for\n" "Advanced App. Level." -#: flatcamGUI/PreferencesUI.py:2565 +#: flatcamGUI/PreferencesUI.py:2567 msgid "Toolchange X,Y" msgstr "Toolchange X,Y" -#: flatcamGUI/PreferencesUI.py:2567 flatcamGUI/PreferencesUI.py:3408 +#: flatcamGUI/PreferencesUI.py:2569 flatcamGUI/PreferencesUI.py:3413 msgid "Toolchange X,Y position." msgstr "Toolchange X,Y position." -#: flatcamGUI/PreferencesUI.py:2624 flatcamGUI/PreferencesUI.py:3482 -#| msgid "Spindle dir." +#: flatcamGUI/PreferencesUI.py:2626 flatcamGUI/PreferencesUI.py:3500 msgid "Spindle direction" msgstr "Spindle direction" -#: flatcamGUI/PreferencesUI.py:2626 flatcamGUI/PreferencesUI.py:3484 +#: flatcamGUI/PreferencesUI.py:2628 flatcamGUI/PreferencesUI.py:3502 msgid "" "This sets the direction that the spindle is rotating.\n" "It can be either:\n" @@ -9862,11 +9969,11 @@ msgstr "" "- CW = clockwise or\n" "- CCW = counter clockwise" -#: flatcamGUI/PreferencesUI.py:2637 flatcamGUI/PreferencesUI.py:3496 +#: flatcamGUI/PreferencesUI.py:2639 flatcamGUI/PreferencesUI.py:3514 msgid "Fast Plunge" msgstr "Fast Plunge" -#: flatcamGUI/PreferencesUI.py:2639 flatcamGUI/PreferencesUI.py:3498 +#: flatcamGUI/PreferencesUI.py:2641 flatcamGUI/PreferencesUI.py:3516 msgid "" "By checking this, the vertical move from\n" "Z_Toolchange to Z_move is done with G0,\n" @@ -9878,11 +9985,11 @@ msgstr "" "meaning the fastest speed available.\n" "WARNING: the move is done at Toolchange X,Y coords." -#: flatcamGUI/PreferencesUI.py:2648 +#: flatcamGUI/PreferencesUI.py:2650 msgid "Fast Retract" msgstr "Fast Retract" -#: flatcamGUI/PreferencesUI.py:2650 +#: flatcamGUI/PreferencesUI.py:2652 msgid "" "Exit hole strategy.\n" " - When uncheked, while exiting the drilled hole the drill bit\n" @@ -9898,11 +10005,11 @@ msgstr "" " - When checked the travel from Z cut (cut depth) to Z_move\n" "(travel height) is done as fast as possible (G0) in one move." -#: flatcamGUI/PreferencesUI.py:2669 +#: flatcamGUI/PreferencesUI.py:2671 msgid "Excellon Export" msgstr "Excellon Export" -#: flatcamGUI/PreferencesUI.py:2675 +#: flatcamGUI/PreferencesUI.py:2677 msgid "" "The parameters set here are used in the file exported\n" "when using the File -> Export -> Export Excellon menu entry." @@ -9910,11 +10017,11 @@ msgstr "" "The parameters set here are used in the file exported\n" "when using the File -> Export -> Export Excellon menu entry." -#: flatcamGUI/PreferencesUI.py:2686 flatcamGUI/PreferencesUI.py:2692 +#: flatcamGUI/PreferencesUI.py:2688 flatcamGUI/PreferencesUI.py:2694 msgid "The units used in the Excellon file." msgstr "The units used in the Excellon file." -#: flatcamGUI/PreferencesUI.py:2700 +#: flatcamGUI/PreferencesUI.py:2702 msgid "" "The NC drill files, usually named Excellon files\n" "are files that can be found in different formats.\n" @@ -9926,11 +10033,11 @@ msgstr "" "Here we set the format used when the provided\n" "coordinates are not using period." -#: flatcamGUI/PreferencesUI.py:2734 +#: flatcamGUI/PreferencesUI.py:2736 msgid "Format" msgstr "Format" -#: flatcamGUI/PreferencesUI.py:2736 flatcamGUI/PreferencesUI.py:2746 +#: flatcamGUI/PreferencesUI.py:2738 flatcamGUI/PreferencesUI.py:2748 msgid "" "Select the kind of coordinates format used.\n" "Coordinates can be saved with decimal point or without.\n" @@ -9946,15 +10053,15 @@ msgstr "" "Also it will have to be specified if LZ = leading zeros are kept\n" "or TZ = trailing zeros are kept." -#: flatcamGUI/PreferencesUI.py:2743 +#: flatcamGUI/PreferencesUI.py:2745 msgid "Decimal" msgstr "Decimal" -#: flatcamGUI/PreferencesUI.py:2744 +#: flatcamGUI/PreferencesUI.py:2746 msgid "No-Decimal" msgstr "No-Decimal" -#: flatcamGUI/PreferencesUI.py:2770 +#: flatcamGUI/PreferencesUI.py:2772 msgid "" "This sets the default type of Excellon zeros.\n" "If LZ then Leading Zeros are kept and\n" @@ -9968,11 +10075,11 @@ msgstr "" "If TZ is checked then Trailing Zeros are kept\n" "and Leading Zeros are removed." -#: flatcamGUI/PreferencesUI.py:2780 +#: flatcamGUI/PreferencesUI.py:2782 msgid "Slot type" msgstr "Slot type" -#: flatcamGUI/PreferencesUI.py:2783 flatcamGUI/PreferencesUI.py:2793 +#: flatcamGUI/PreferencesUI.py:2785 flatcamGUI/PreferencesUI.py:2795 msgid "" "This sets how the slots will be exported.\n" "If ROUTED then the slots will be routed\n" @@ -9986,19 +10093,19 @@ msgstr "" "If DRILLED(G85) the slots will be exported\n" "using the Drilled slot command (G85)." -#: flatcamGUI/PreferencesUI.py:2790 +#: flatcamGUI/PreferencesUI.py:2792 msgid "Routed" msgstr "Routed" -#: flatcamGUI/PreferencesUI.py:2791 +#: flatcamGUI/PreferencesUI.py:2793 msgid "Drilled(G85)" msgstr "Drilled(G85)" -#: flatcamGUI/PreferencesUI.py:2824 +#: flatcamGUI/PreferencesUI.py:2826 msgid "A list of Excellon Editor parameters." msgstr "A list of Excellon Editor parameters." -#: flatcamGUI/PreferencesUI.py:2834 +#: flatcamGUI/PreferencesUI.py:2836 msgid "" "Set the number of selected Excellon geometry\n" "items above which the utility geometry\n" @@ -10012,19 +10119,19 @@ msgstr "" "Increases the performance when moving a\n" "large number of geometric elements." -#: flatcamGUI/PreferencesUI.py:2847 flatcamGUI/PreferencesUI.py:4037 +#: flatcamGUI/PreferencesUI.py:2849 flatcamGUI/PreferencesUI.py:4055 msgid "New Tool Dia" msgstr "New Tool Dia" -#: flatcamGUI/PreferencesUI.py:2872 +#: flatcamGUI/PreferencesUI.py:2874 msgid "Linear Drill Array" msgstr "Linear Drill Array" -#: flatcamGUI/PreferencesUI.py:2918 +#: flatcamGUI/PreferencesUI.py:2920 msgid "Circular Drill Array" msgstr "Circular Drill Array" -#: flatcamGUI/PreferencesUI.py:2988 +#: flatcamGUI/PreferencesUI.py:2990 msgid "" "Angle at which the slot is placed.\n" "The precision is of max 2 decimals.\n" @@ -10036,19 +10143,19 @@ msgstr "" "Min value is: -359.99 degrees.\n" "Max value is: 360.00 degrees." -#: flatcamGUI/PreferencesUI.py:3007 +#: flatcamGUI/PreferencesUI.py:3009 msgid "Linear Slot Array" msgstr "Linear Slot Array" -#: flatcamGUI/PreferencesUI.py:3068 +#: flatcamGUI/PreferencesUI.py:3070 msgid "Circular Slot Array" msgstr "Circular Slot Array" -#: flatcamGUI/PreferencesUI.py:3106 +#: flatcamGUI/PreferencesUI.py:3108 msgid "Geometry General" msgstr "Geometry General" -#: flatcamGUI/PreferencesUI.py:3128 +#: flatcamGUI/PreferencesUI.py:3130 msgid "" "The number of circle steps for Geometry \n" "circle and arc shapes linear approximation." @@ -10056,11 +10163,11 @@ msgstr "" "The number of circle steps for Geometry \n" "circle and arc shapes linear approximation." -#: flatcamGUI/PreferencesUI.py:3159 +#: flatcamGUI/PreferencesUI.py:3161 msgid "Geometry Options" msgstr "Geometry Options" -#: flatcamGUI/PreferencesUI.py:3167 +#: flatcamGUI/PreferencesUI.py:3169 msgid "" "Create a CNC Job object\n" "tracing the contours of this\n" @@ -10070,11 +10177,11 @@ msgstr "" "tracing the contours of this\n" "Geometry object." -#: flatcamGUI/PreferencesUI.py:3209 +#: flatcamGUI/PreferencesUI.py:3211 msgid "Depth/Pass" msgstr "Depth/Pass" -#: flatcamGUI/PreferencesUI.py:3211 +#: flatcamGUI/PreferencesUI.py:3213 msgid "" "The depth to cut on each pass,\n" "when multidepth is enabled.\n" @@ -10088,11 +10195,11 @@ msgstr "" "it is a fraction from the depth\n" "which has negative value." -#: flatcamGUI/PreferencesUI.py:3388 +#: flatcamGUI/PreferencesUI.py:3393 msgid "Geometry Adv. Options" msgstr "Geometry Adv. Options" -#: flatcamGUI/PreferencesUI.py:3396 +#: flatcamGUI/PreferencesUI.py:3401 msgid "" "A list of Geometry advanced parameters.\n" "Those parameters are available only for\n" @@ -10102,12 +10209,13 @@ msgstr "" "Those parameters are available only for\n" "Advanced App. Level." -#: flatcamGUI/PreferencesUI.py:3406 flatcamGUI/PreferencesUI.py:5452 +#: flatcamGUI/PreferencesUI.py:3411 flatcamGUI/PreferencesUI.py:5470 +#: flatcamGUI/PreferencesUI.py:6517 flatcamTools/ToolCalibration.py:125 #: flatcamTools/ToolSolderPaste.py:239 msgid "Toolchange X-Y" msgstr "Toolchange X-Y" -#: flatcamGUI/PreferencesUI.py:3417 +#: flatcamGUI/PreferencesUI.py:3422 msgid "" "Height of the tool just after starting the work.\n" "Delete the value if you don't need this feature." @@ -10115,12 +10223,11 @@ msgstr "" "Height of the tool just after starting the work.\n" "Delete the value if you don't need this feature." -#: flatcamGUI/PreferencesUI.py:3508 -#| msgid "Seg. X size" +#: flatcamGUI/PreferencesUI.py:3526 msgid "Segment X size" msgstr "Segment X size" -#: flatcamGUI/PreferencesUI.py:3510 +#: flatcamGUI/PreferencesUI.py:3528 msgid "" "The size of the trace segment on the X axis.\n" "Useful for auto-leveling.\n" @@ -10130,12 +10237,11 @@ msgstr "" "Useful for auto-leveling.\n" "A value of 0 means no segmentation on the X axis." -#: flatcamGUI/PreferencesUI.py:3524 -#| msgid "Seg. Y size" +#: flatcamGUI/PreferencesUI.py:3542 msgid "Segment Y size" msgstr "Segment Y size" -#: flatcamGUI/PreferencesUI.py:3526 +#: flatcamGUI/PreferencesUI.py:3544 msgid "" "The size of the trace segment on the Y axis.\n" "Useful for auto-leveling.\n" @@ -10145,15 +10251,15 @@ msgstr "" "Useful for auto-leveling.\n" "A value of 0 means no segmentation on the Y axis." -#: flatcamGUI/PreferencesUI.py:3547 +#: flatcamGUI/PreferencesUI.py:3565 msgid "Geometry Editor" msgstr "Geometry Editor" -#: flatcamGUI/PreferencesUI.py:3553 +#: flatcamGUI/PreferencesUI.py:3571 msgid "A list of Geometry Editor parameters." msgstr "A list of Geometry Editor parameters." -#: flatcamGUI/PreferencesUI.py:3563 flatcamGUI/PreferencesUI.py:6024 +#: flatcamGUI/PreferencesUI.py:3581 flatcamGUI/PreferencesUI.py:6042 msgid "" "Set the number of selected geometry\n" "items above which the utility geometry\n" @@ -10167,11 +10273,11 @@ msgstr "" "Increases the performance when moving a\n" "large number of geometric elements." -#: flatcamGUI/PreferencesUI.py:3595 +#: flatcamGUI/PreferencesUI.py:3613 msgid "CNC Job General" msgstr "CNC Job General" -#: flatcamGUI/PreferencesUI.py:3648 +#: flatcamGUI/PreferencesUI.py:3666 msgid "" "The number of circle steps for GCode \n" "circle and arc shapes linear approximation." @@ -10179,11 +10285,11 @@ msgstr "" "The number of circle steps for GCode \n" "circle and arc shapes linear approximation." -#: flatcamGUI/PreferencesUI.py:3657 +#: flatcamGUI/PreferencesUI.py:3675 msgid "Travel dia" msgstr "Travel dia" -#: flatcamGUI/PreferencesUI.py:3659 +#: flatcamGUI/PreferencesUI.py:3677 msgid "" "The width of the travel lines to be\n" "rendered in the plot." @@ -10191,11 +10297,11 @@ msgstr "" "The width of the travel lines to be\n" "rendered in the plot." -#: flatcamGUI/PreferencesUI.py:3675 +#: flatcamGUI/PreferencesUI.py:3693 msgid "Coordinates decimals" msgstr "Coordinates decimals" -#: flatcamGUI/PreferencesUI.py:3677 +#: flatcamGUI/PreferencesUI.py:3695 msgid "" "The number of decimals to be used for \n" "the X, Y, Z coordinates in CNC code (GCODE, etc.)" @@ -10203,11 +10309,11 @@ msgstr "" "The number of decimals to be used for \n" "the X, Y, Z coordinates in CNC code (GCODE, etc.)" -#: flatcamGUI/PreferencesUI.py:3688 +#: flatcamGUI/PreferencesUI.py:3706 msgid "Feedrate decimals" msgstr "Feedrate decimals" -#: flatcamGUI/PreferencesUI.py:3690 +#: flatcamGUI/PreferencesUI.py:3708 msgid "" "The number of decimals to be used for \n" "the Feedrate parameter in CNC code (GCODE, etc.)" @@ -10215,11 +10321,11 @@ msgstr "" "The number of decimals to be used for \n" "the Feedrate parameter in CNC code (GCODE, etc.)" -#: flatcamGUI/PreferencesUI.py:3701 +#: flatcamGUI/PreferencesUI.py:3719 msgid "Coordinates type" msgstr "Coordinates type" -#: flatcamGUI/PreferencesUI.py:3703 +#: flatcamGUI/PreferencesUI.py:3721 msgid "" "The type of coordinates to be used in Gcode.\n" "Can be:\n" @@ -10231,19 +10337,19 @@ msgstr "" "- Absolute G90 -> the reference is the origin x=0, y=0\n" "- Incremental G91 -> the reference is the previous position" -#: flatcamGUI/PreferencesUI.py:3709 +#: flatcamGUI/PreferencesUI.py:3727 msgid "Absolute G90" msgstr "Absolute G90" -#: flatcamGUI/PreferencesUI.py:3710 +#: flatcamGUI/PreferencesUI.py:3728 msgid "Incremental G91" msgstr "Incremental G91" -#: flatcamGUI/PreferencesUI.py:3720 +#: flatcamGUI/PreferencesUI.py:3738 msgid "Force Windows style line-ending" msgstr "Force Windows style line-ending" -#: flatcamGUI/PreferencesUI.py:3722 +#: flatcamGUI/PreferencesUI.py:3740 msgid "" "When checked will force a Windows style line-ending\n" "(\\r\\n) on non-Windows OS's." @@ -10251,63 +10357,63 @@ msgstr "" "When checked will force a Windows style line-ending\n" "(\\r\\n) on non-Windows OS's." -#: flatcamGUI/PreferencesUI.py:3736 +#: flatcamGUI/PreferencesUI.py:3754 msgid "CNC Job Options" msgstr "CNC Job Options" -#: flatcamGUI/PreferencesUI.py:3740 +#: flatcamGUI/PreferencesUI.py:3758 msgid "Export G-Code" msgstr "Export G-Code" -#: flatcamGUI/PreferencesUI.py:3756 +#: flatcamGUI/PreferencesUI.py:3774 msgid "Prepend to G-Code" msgstr "Prepend to G-Code" -#: flatcamGUI/PreferencesUI.py:3772 +#: flatcamGUI/PreferencesUI.py:3790 msgid "Append to G-Code" msgstr "Append to G-Code" -#: flatcamGUI/PreferencesUI.py:3798 +#: flatcamGUI/PreferencesUI.py:3816 msgid "CNC Job Adv. Options" msgstr "CNC Job Adv. Options" -#: flatcamGUI/PreferencesUI.py:3884 +#: flatcamGUI/PreferencesUI.py:3902 msgid "Z depth for the cut" msgstr "Z depth for the cut" -#: flatcamGUI/PreferencesUI.py:3885 +#: flatcamGUI/PreferencesUI.py:3903 msgid "Z height for travel" msgstr "Z height for travel" -#: flatcamGUI/PreferencesUI.py:3891 +#: flatcamGUI/PreferencesUI.py:3909 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/PreferencesUI.py:3910 +#: flatcamGUI/PreferencesUI.py:3928 msgid "Annotation Size" msgstr "Annotation Size" -#: flatcamGUI/PreferencesUI.py:3912 +#: flatcamGUI/PreferencesUI.py:3930 msgid "The font size of the annotation text. In pixels." msgstr "The font size of the annotation text. In pixels." -#: flatcamGUI/PreferencesUI.py:3922 +#: flatcamGUI/PreferencesUI.py:3940 msgid "Annotation Color" msgstr "Annotation Color" -#: flatcamGUI/PreferencesUI.py:3924 +#: flatcamGUI/PreferencesUI.py:3942 msgid "Set the font color for the annotation texts." msgstr "Set the font color for the annotation texts." -#: flatcamGUI/PreferencesUI.py:3950 +#: flatcamGUI/PreferencesUI.py:3968 msgid "NCC Tool Options" msgstr "NCC Tool Options" -#: flatcamGUI/PreferencesUI.py:3964 flatcamGUI/PreferencesUI.py:5362 +#: flatcamGUI/PreferencesUI.py:3982 flatcamGUI/PreferencesUI.py:5380 msgid "Tools dia" msgstr "Tools dia" -#: flatcamGUI/PreferencesUI.py:3975 flatcamGUI/PreferencesUI.py:3983 +#: flatcamGUI/PreferencesUI.py:3993 flatcamGUI/PreferencesUI.py:4001 #: flatcamTools/ToolNonCopperClear.py:215 #: flatcamTools/ToolNonCopperClear.py:223 msgid "" @@ -10319,11 +10425,11 @@ msgstr "" "- 'V-shape'\n" "- Circular" -#: flatcamGUI/PreferencesUI.py:3980 flatcamTools/ToolNonCopperClear.py:220 +#: flatcamGUI/PreferencesUI.py:3998 flatcamTools/ToolNonCopperClear.py:220 msgid "V-shape" msgstr "V-shape" -#: flatcamGUI/PreferencesUI.py:4020 flatcamGUI/PreferencesUI.py:4029 +#: flatcamGUI/PreferencesUI.py:4038 flatcamGUI/PreferencesUI.py:4047 #: flatcamTools/ToolNonCopperClear.py:256 #: flatcamTools/ToolNonCopperClear.py:264 msgid "" @@ -10333,11 +10439,11 @@ msgstr "" "Depth of cut into material. Negative value.\n" "In FlatCAM units." -#: flatcamGUI/PreferencesUI.py:4039 +#: flatcamGUI/PreferencesUI.py:4057 msgid "The new tool diameter (cut width) to add in the tool table." msgstr "The new tool diameter (cut width) to add in the tool table." -#: flatcamGUI/PreferencesUI.py:4051 flatcamGUI/PreferencesUI.py:4059 +#: flatcamGUI/PreferencesUI.py:4069 flatcamGUI/PreferencesUI.py:4077 #: flatcamTools/ToolNonCopperClear.py:164 #: flatcamTools/ToolNonCopperClear.py:172 msgid "" @@ -10349,13 +10455,13 @@ msgstr "" "- climb / best for precision milling and to reduce tool usage\n" "- conventional / useful when there is no backlash compensation" -#: flatcamGUI/PreferencesUI.py:4068 flatcamGUI/PreferencesUI.py:4493 +#: flatcamGUI/PreferencesUI.py:4086 flatcamGUI/PreferencesUI.py:4511 #: flatcamTools/ToolNonCopperClear.py:181 flatcamTools/ToolPaint.py:153 msgid "Tool order" msgstr "Tool order" -#: flatcamGUI/PreferencesUI.py:4069 flatcamGUI/PreferencesUI.py:4079 -#: flatcamGUI/PreferencesUI.py:4494 flatcamGUI/PreferencesUI.py:4504 +#: flatcamGUI/PreferencesUI.py:4087 flatcamGUI/PreferencesUI.py:4097 +#: flatcamGUI/PreferencesUI.py:4512 flatcamGUI/PreferencesUI.py:4522 #: flatcamTools/ToolNonCopperClear.py:182 #: flatcamTools/ToolNonCopperClear.py:192 flatcamTools/ToolPaint.py:154 #: flatcamTools/ToolPaint.py:164 @@ -10376,28 +10482,17 @@ msgstr "" "WARNING: using rest machining will automatically set the order\n" "in reverse and disable this control." -#: flatcamGUI/PreferencesUI.py:4077 flatcamGUI/PreferencesUI.py:4502 +#: flatcamGUI/PreferencesUI.py:4095 flatcamGUI/PreferencesUI.py:4520 #: flatcamTools/ToolNonCopperClear.py:190 flatcamTools/ToolPaint.py:162 msgid "Forward" msgstr "Forward" -#: flatcamGUI/PreferencesUI.py:4078 flatcamGUI/PreferencesUI.py:4503 +#: flatcamGUI/PreferencesUI.py:4096 flatcamGUI/PreferencesUI.py:4521 #: flatcamTools/ToolNonCopperClear.py:191 flatcamTools/ToolPaint.py:163 msgid "Reverse" msgstr "Reverse" -#: flatcamGUI/PreferencesUI.py:4091 flatcamTools/ToolNonCopperClear.py:321 -#| 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 cleared are still \n" -#| "not cleared.\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." +#: flatcamGUI/PreferencesUI.py:4109 flatcamTools/ToolNonCopperClear.py:321 msgid "" "How much (fraction) of the tool width to overlap each tool pass.\n" "Adjust the value starting with lower values\n" @@ -10415,14 +10510,14 @@ msgstr "" "Higher values = slow processing and slow execution on CNC\n" "due of too many paths." -#: flatcamGUI/PreferencesUI.py:4110 flatcamGUI/PreferencesUI.py:6090 -#: flatcamGUI/PreferencesUI.py:6332 flatcamGUI/PreferencesUI.py:6396 +#: flatcamGUI/PreferencesUI.py:4128 flatcamGUI/PreferencesUI.py:6108 +#: flatcamGUI/PreferencesUI.py:6350 flatcamGUI/PreferencesUI.py:6414 #: flatcamTools/ToolCopperThieving.py:113 flatcamTools/ToolFiducials.py:174 #: flatcamTools/ToolFiducials.py:237 flatcamTools/ToolNonCopperClear.py:339 msgid "Bounding box margin." msgstr "Bounding box margin." -#: flatcamGUI/PreferencesUI.py:4123 flatcamGUI/PreferencesUI.py:4551 +#: flatcamGUI/PreferencesUI.py:4141 flatcamGUI/PreferencesUI.py:4569 #: flatcamTools/ToolNonCopperClear.py:350 msgid "" "Algorithm for non-copper clearing:
Standard: Fixed step inwards." @@ -10433,22 +10528,22 @@ msgstr "" "
Seed-based: Outwards from seed.
Line-based: Parallel " "lines." -#: flatcamGUI/PreferencesUI.py:4139 flatcamGUI/PreferencesUI.py:4565 +#: flatcamGUI/PreferencesUI.py:4157 flatcamGUI/PreferencesUI.py:4583 #: flatcamTools/ToolNonCopperClear.py:364 flatcamTools/ToolPaint.py:267 msgid "Connect" msgstr "Connect" -#: flatcamGUI/PreferencesUI.py:4150 flatcamGUI/PreferencesUI.py:4575 +#: flatcamGUI/PreferencesUI.py:4168 flatcamGUI/PreferencesUI.py:4593 #: flatcamTools/ToolNonCopperClear.py:373 flatcamTools/ToolPaint.py:276 msgid "Contour" msgstr "Contour" -#: flatcamGUI/PreferencesUI.py:4161 flatcamTools/ToolNonCopperClear.py:382 +#: flatcamGUI/PreferencesUI.py:4179 flatcamTools/ToolNonCopperClear.py:382 #: flatcamTools/ToolPaint.py:285 msgid "Rest M." msgstr "Rest M." -#: flatcamGUI/PreferencesUI.py:4163 flatcamTools/ToolNonCopperClear.py:384 +#: flatcamGUI/PreferencesUI.py:4181 flatcamTools/ToolNonCopperClear.py:384 msgid "" "If checked, use 'rest machining'.\n" "Basically it will clear copper outside PCB features,\n" @@ -10466,7 +10561,7 @@ msgstr "" "no more copper to clear or there are no more tools.\n" "If not checked, use the standard algorithm." -#: flatcamGUI/PreferencesUI.py:4179 flatcamTools/ToolNonCopperClear.py:399 +#: flatcamGUI/PreferencesUI.py:4197 flatcamTools/ToolNonCopperClear.py:399 #: flatcamTools/ToolNonCopperClear.py:411 msgid "" "If used, it will add an offset to the copper features.\n" @@ -10479,11 +10574,11 @@ msgstr "" "from the copper features.\n" "The value can be between 0 and 10 FlatCAM units." -#: flatcamGUI/PreferencesUI.py:4190 flatcamTools/ToolNonCopperClear.py:409 +#: flatcamGUI/PreferencesUI.py:4208 flatcamTools/ToolNonCopperClear.py:409 msgid "Offset value" msgstr "Offset value" -#: flatcamGUI/PreferencesUI.py:4192 +#: flatcamGUI/PreferencesUI.py:4210 msgid "" "If used, it will add an offset to the copper features.\n" "The copper clearing will finish to a distance\n" @@ -10495,26 +10590,26 @@ msgstr "" "from the copper features.\n" "The value can be between 0.0 and 9999.9 FlatCAM units." -#: flatcamGUI/PreferencesUI.py:4207 flatcamGUI/PreferencesUI.py:6102 +#: flatcamGUI/PreferencesUI.py:4225 flatcamGUI/PreferencesUI.py:6120 #: flatcamTools/ToolCopperThieving.py:125 #: flatcamTools/ToolNonCopperClear.py:435 msgid "Itself" msgstr "Itself" -#: flatcamGUI/PreferencesUI.py:4208 flatcamGUI/PreferencesUI.py:4597 +#: flatcamGUI/PreferencesUI.py:4226 flatcamGUI/PreferencesUI.py:4615 msgid "Area" msgstr "Area" -#: flatcamGUI/PreferencesUI.py:4209 flatcamGUI/PreferencesUI.py:4599 +#: flatcamGUI/PreferencesUI.py:4227 flatcamGUI/PreferencesUI.py:4617 msgid "Ref" msgstr "Ref" -#: flatcamGUI/PreferencesUI.py:4210 flatcamGUI/PreferencesUI.py:4776 +#: flatcamGUI/PreferencesUI.py:4228 flatcamGUI/PreferencesUI.py:4794 #: flatcamTools/ToolFilm.py:219 msgid "Reference" msgstr "Reference" -#: flatcamGUI/PreferencesUI.py:4212 +#: flatcamGUI/PreferencesUI.py:4230 msgid "" "- 'Itself' - the non copper clearing extent\n" "is based on the object that is copper cleared.\n" @@ -10534,19 +10629,19 @@ msgstr "" "- 'Reference Object' - will do non copper clearing within the area\n" "specified by another object." -#: flatcamGUI/PreferencesUI.py:4224 flatcamGUI/PreferencesUI.py:4605 +#: flatcamGUI/PreferencesUI.py:4242 flatcamGUI/PreferencesUI.py:4623 msgid "Normal" msgstr "Normal" -#: flatcamGUI/PreferencesUI.py:4225 flatcamGUI/PreferencesUI.py:4606 +#: flatcamGUI/PreferencesUI.py:4243 flatcamGUI/PreferencesUI.py:4624 msgid "Progressive" msgstr "Progressive" -#: flatcamGUI/PreferencesUI.py:4226 +#: flatcamGUI/PreferencesUI.py:4244 msgid "NCC Plotting" msgstr "NCC Plotting" -#: flatcamGUI/PreferencesUI.py:4228 +#: flatcamGUI/PreferencesUI.py:4246 msgid "" "- 'Normal' - normal plotting, done at the end of the NCC job\n" "- 'Progressive' - after each shape is generated it will be plotted." @@ -10554,16 +10649,16 @@ msgstr "" "- 'Normal' - normal plotting, done at the end of the NCC job\n" "- 'Progressive' - after each shape is generated it will be plotted." -#: flatcamGUI/PreferencesUI.py:4242 +#: flatcamGUI/PreferencesUI.py:4260 msgid "Cutout Tool Options" msgstr "Cutout Tool Options" -#: flatcamGUI/PreferencesUI.py:4257 flatcamTools/ToolCalculators.py:123 +#: flatcamGUI/PreferencesUI.py:4275 flatcamTools/ToolCalculators.py:123 #: flatcamTools/ToolCutOut.py:123 msgid "Tool Diameter" msgstr "Tool Diameter" -#: flatcamGUI/PreferencesUI.py:4259 flatcamTools/ToolCutOut.py:125 +#: flatcamGUI/PreferencesUI.py:4277 flatcamTools/ToolCutOut.py:125 msgid "" "Diameter of the tool used to cutout\n" "the PCB shape out of the surrounding material." @@ -10571,12 +10666,11 @@ msgstr "" "Diameter of the tool used to cutout\n" "the PCB shape out of the surrounding material." -#: flatcamGUI/PreferencesUI.py:4314 flatcamTools/ToolCutOut.py:104 -#| msgid "Obj kind" +#: flatcamGUI/PreferencesUI.py:4332 flatcamTools/ToolCutOut.py:104 msgid "Object kind" msgstr "Object kind" -#: flatcamGUI/PreferencesUI.py:4316 flatcamTools/ToolCutOut.py:106 +#: flatcamGUI/PreferencesUI.py:4334 flatcamTools/ToolCutOut.py:106 msgid "" "Choice of what kind the object we want to cutout is.
- Single: " "contain a single PCB Gerber outline object.
- Panel: a panel PCB " @@ -10588,15 +10682,15 @@ msgstr "" "Gerber object, which is made\n" "out of many individual PCB outlines." -#: flatcamGUI/PreferencesUI.py:4323 flatcamTools/ToolCutOut.py:112 +#: flatcamGUI/PreferencesUI.py:4341 flatcamTools/ToolCutOut.py:112 msgid "Single" msgstr "Single" -#: flatcamGUI/PreferencesUI.py:4324 flatcamTools/ToolCutOut.py:113 +#: flatcamGUI/PreferencesUI.py:4342 flatcamTools/ToolCutOut.py:113 msgid "Panel" msgstr "Panel" -#: flatcamGUI/PreferencesUI.py:4331 flatcamTools/ToolCutOut.py:184 +#: flatcamGUI/PreferencesUI.py:4349 flatcamTools/ToolCutOut.py:184 msgid "" "Margin over bounds. A positive value here\n" "will make the cutout of the PCB further from\n" @@ -10606,11 +10700,11 @@ msgstr "" "will make the cutout of the PCB further from\n" "the actual PCB border" -#: flatcamGUI/PreferencesUI.py:4344 flatcamTools/ToolCutOut.py:195 +#: flatcamGUI/PreferencesUI.py:4362 flatcamTools/ToolCutOut.py:195 msgid "Gap size" msgstr "Gap size" -#: flatcamGUI/PreferencesUI.py:4346 flatcamTools/ToolCutOut.py:197 +#: flatcamGUI/PreferencesUI.py:4364 flatcamTools/ToolCutOut.py:197 msgid "" "The size of the bridge gaps in the cutout\n" "used to keep the board connected to\n" @@ -10622,11 +10716,11 @@ msgstr "" "the surrounding material (the one \n" "from which the PCB is cutout)." -#: flatcamGUI/PreferencesUI.py:4360 flatcamTools/ToolCutOut.py:239 +#: flatcamGUI/PreferencesUI.py:4378 flatcamTools/ToolCutOut.py:239 msgid "Gaps" msgstr "Gaps" -#: flatcamGUI/PreferencesUI.py:4362 +#: flatcamGUI/PreferencesUI.py:4380 msgid "" "Number of gaps used for the cutout.\n" "There can be maximum 8 bridges/gaps.\n" @@ -10650,11 +10744,11 @@ msgstr "" "- 2tb - 2*top + 2*bottom\n" "- 8 - 2*left + 2*right +2*top + 2*bottom" -#: flatcamGUI/PreferencesUI.py:4385 +#: flatcamGUI/PreferencesUI.py:4403 msgid "Convex Sh." msgstr "Convex Sh." -#: flatcamGUI/PreferencesUI.py:4387 flatcamTools/ToolCutOut.py:217 +#: flatcamGUI/PreferencesUI.py:4405 flatcamTools/ToolCutOut.py:217 msgid "" "Create a convex shape surrounding the entire PCB.\n" "Used only if the source object type is Gerber." @@ -10662,11 +10756,11 @@ msgstr "" "Create a convex shape surrounding the entire PCB.\n" "Used only if the source object type is Gerber." -#: flatcamGUI/PreferencesUI.py:4401 +#: flatcamGUI/PreferencesUI.py:4419 msgid "2Sided Tool Options" msgstr "2Sided Tool Options" -#: flatcamGUI/PreferencesUI.py:4407 +#: flatcamGUI/PreferencesUI.py:4425 msgid "" "A tool to help in creating a double sided\n" "PCB using alignment holes." @@ -10674,36 +10768,36 @@ msgstr "" "A tool to help in creating a double sided\n" "PCB using alignment holes." -#: flatcamGUI/PreferencesUI.py:4421 flatcamTools/ToolDblSided.py:276 +#: flatcamGUI/PreferencesUI.py:4439 flatcamTools/ToolDblSided.py:276 msgid "Drill dia" msgstr "Drill dia" -#: flatcamGUI/PreferencesUI.py:4423 flatcamTools/ToolDblSided.py:267 +#: flatcamGUI/PreferencesUI.py:4441 flatcamTools/ToolDblSided.py:267 #: flatcamTools/ToolDblSided.py:278 msgid "Diameter of the drill for the alignment holes." msgstr "Diameter of the drill for the alignment holes." -#: flatcamGUI/PreferencesUI.py:4432 flatcamTools/ToolDblSided.py:144 +#: flatcamGUI/PreferencesUI.py:4450 flatcamTools/ToolDblSided.py:144 msgid "Mirror Axis:" msgstr "Mirror Axis:" -#: flatcamGUI/PreferencesUI.py:4434 flatcamTools/ToolDblSided.py:145 +#: flatcamGUI/PreferencesUI.py:4452 flatcamTools/ToolDblSided.py:145 msgid "Mirror vertically (X) or horizontally (Y)." msgstr "Mirror vertically (X) or horizontally (Y)." -#: flatcamGUI/PreferencesUI.py:4443 flatcamTools/ToolDblSided.py:154 +#: flatcamGUI/PreferencesUI.py:4461 flatcamTools/ToolDblSided.py:154 msgid "Point" msgstr "Point" -#: flatcamGUI/PreferencesUI.py:4444 flatcamTools/ToolDblSided.py:155 +#: flatcamGUI/PreferencesUI.py:4462 flatcamTools/ToolDblSided.py:155 msgid "Box" msgstr "Box" -#: flatcamGUI/PreferencesUI.py:4445 +#: flatcamGUI/PreferencesUI.py:4463 flatcamTools/ToolDblSided.py:156 msgid "Axis Ref" msgstr "Axis Ref" -#: flatcamGUI/PreferencesUI.py:4447 flatcamTools/ToolDblSided.py:158 +#: flatcamGUI/PreferencesUI.py:4465 flatcamTools/ToolDblSided.py:158 msgid "" "The axis should pass through a point or cut\n" " a specified box (in a FlatCAM object) through \n" @@ -10713,26 +10807,15 @@ msgstr "" " a specified box (in a FlatCAM object) through \n" "the center." -#: flatcamGUI/PreferencesUI.py:4463 +#: flatcamGUI/PreferencesUI.py:4481 msgid "Paint Tool Options" msgstr "Paint Tool Options" -#: flatcamGUI/PreferencesUI.py:4469 +#: flatcamGUI/PreferencesUI.py:4487 msgid "Parameters:" msgstr "Parameters:" -#: flatcamGUI/PreferencesUI.py:4516 flatcamTools/ToolPaint.py:221 -#| 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." +#: flatcamGUI/PreferencesUI.py:4534 flatcamTools/ToolPaint.py:221 msgid "" "How much (fraction) of the tool width to overlap each tool pass.\n" "Adjust the value starting with lower values\n" @@ -10750,7 +10833,7 @@ msgstr "" "Higher values = slow processing and slow execution on CNC\n" "due of too many paths." -#: flatcamGUI/PreferencesUI.py:4587 flatcamTools/ToolPaint.py:302 +#: flatcamGUI/PreferencesUI.py:4605 flatcamTools/ToolPaint.py:302 #: flatcamTools/ToolPaint.py:319 msgid "" "How to select Polygons to be painted.\n" @@ -10775,15 +10858,15 @@ msgstr "" "- 'Reference Object' - will do non copper clearing within the area\n" "specified by another object." -#: flatcamGUI/PreferencesUI.py:4596 +#: flatcamGUI/PreferencesUI.py:4614 msgid "Sel" msgstr "Sel" -#: flatcamGUI/PreferencesUI.py:4607 +#: flatcamGUI/PreferencesUI.py:4625 msgid "Paint Plotting" msgstr "Paint Plotting" -#: flatcamGUI/PreferencesUI.py:4609 +#: flatcamGUI/PreferencesUI.py:4627 msgid "" "- 'Normal' - normal plotting, done at the end of the Paint job\n" "- 'Progressive' - after each shape is generated it will be plotted." @@ -10791,11 +10874,11 @@ msgstr "" "- 'Normal' - normal plotting, done at the end of the Paint job\n" "- 'Progressive' - after each shape is generated it will be plotted." -#: flatcamGUI/PreferencesUI.py:4623 +#: flatcamGUI/PreferencesUI.py:4641 msgid "Film Tool Options" msgstr "Film Tool Options" -#: flatcamGUI/PreferencesUI.py:4629 +#: flatcamGUI/PreferencesUI.py:4647 msgid "" "Create a PCB film from a Gerber or Geometry\n" "FlatCAM object.\n" @@ -10805,11 +10888,11 @@ msgstr "" "FlatCAM object.\n" "The file is saved in SVG format." -#: flatcamGUI/PreferencesUI.py:4640 +#: flatcamGUI/PreferencesUI.py:4658 msgid "Film Type" msgstr "Film Type" -#: flatcamGUI/PreferencesUI.py:4642 flatcamTools/ToolFilm.py:300 +#: flatcamGUI/PreferencesUI.py:4660 flatcamTools/ToolFilm.py:300 msgid "" "Generate a Positive black film or a Negative film.\n" "Positive means that it will print the features\n" @@ -10825,19 +10908,19 @@ msgstr "" "with white on a black canvas.\n" "The Film format is SVG." -#: flatcamGUI/PreferencesUI.py:4653 +#: flatcamGUI/PreferencesUI.py:4671 msgid "Film Color" msgstr "Film Color" -#: flatcamGUI/PreferencesUI.py:4655 +#: flatcamGUI/PreferencesUI.py:4673 msgid "Set the film color when positive film is selected." msgstr "Set the film color when positive film is selected." -#: flatcamGUI/PreferencesUI.py:4678 flatcamTools/ToolFilm.py:316 +#: flatcamGUI/PreferencesUI.py:4696 flatcamTools/ToolFilm.py:316 msgid "Border" msgstr "Border" -#: flatcamGUI/PreferencesUI.py:4680 flatcamTools/ToolFilm.py:318 +#: flatcamGUI/PreferencesUI.py:4698 flatcamTools/ToolFilm.py:318 msgid "" "Specify a border around the object.\n" "Only for negative film.\n" @@ -10857,11 +10940,11 @@ msgstr "" "white color like the rest and which may confound with the\n" "surroundings if not for this border." -#: flatcamGUI/PreferencesUI.py:4697 flatcamTools/ToolFilm.py:283 +#: flatcamGUI/PreferencesUI.py:4715 flatcamTools/ToolFilm.py:283 msgid "Scale Stroke" msgstr "Scale Stroke" -#: flatcamGUI/PreferencesUI.py:4699 flatcamTools/ToolFilm.py:285 +#: flatcamGUI/PreferencesUI.py:4717 flatcamTools/ToolFilm.py:285 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 " @@ -10873,11 +10956,11 @@ msgstr "" "thinner,\n" "therefore the fine features may be more affected by this parameter." -#: flatcamGUI/PreferencesUI.py:4706 flatcamTools/ToolFilm.py:141 +#: flatcamGUI/PreferencesUI.py:4724 flatcamTools/ToolFilm.py:141 msgid "Film Adjustments" msgstr "Film Adjustments" -#: flatcamGUI/PreferencesUI.py:4708 flatcamTools/ToolFilm.py:143 +#: flatcamGUI/PreferencesUI.py:4726 flatcamTools/ToolFilm.py:143 msgid "" "Sometime the printers will distort the print shape, especially the Laser " "types.\n" @@ -10887,11 +10970,11 @@ msgstr "" "types.\n" "This section provide the tools to compensate for the print distortions." -#: flatcamGUI/PreferencesUI.py:4715 flatcamTools/ToolFilm.py:150 +#: flatcamGUI/PreferencesUI.py:4733 flatcamTools/ToolFilm.py:150 msgid "Scale Film geometry" msgstr "Scale Film geometry" -#: flatcamGUI/PreferencesUI.py:4717 flatcamTools/ToolFilm.py:152 +#: flatcamGUI/PreferencesUI.py:4735 flatcamTools/ToolFilm.py:152 msgid "" "A value greater than 1 will stretch the film\n" "while a value less than 1 will jolt it." @@ -10899,21 +10982,21 @@ msgstr "" "A value greater than 1 will stretch the film\n" "while a value less than 1 will jolt it." -#: flatcamGUI/PreferencesUI.py:4727 flatcamGUI/PreferencesUI.py:5247 +#: flatcamGUI/PreferencesUI.py:4745 flatcamGUI/PreferencesUI.py:5265 #: flatcamTools/ToolFilm.py:162 flatcamTools/ToolTransform.py:147 msgid "X factor" msgstr "X factor" -#: flatcamGUI/PreferencesUI.py:4736 flatcamGUI/PreferencesUI.py:5260 +#: flatcamGUI/PreferencesUI.py:4754 flatcamGUI/PreferencesUI.py:5278 #: flatcamTools/ToolFilm.py:171 flatcamTools/ToolTransform.py:168 msgid "Y factor" msgstr "Y factor" -#: flatcamGUI/PreferencesUI.py:4746 flatcamTools/ToolFilm.py:189 +#: flatcamGUI/PreferencesUI.py:4764 flatcamTools/ToolFilm.py:189 msgid "Skew Film geometry" msgstr "Skew Film geometry" -#: flatcamGUI/PreferencesUI.py:4748 flatcamTools/ToolFilm.py:191 +#: flatcamGUI/PreferencesUI.py:4766 flatcamTools/ToolFilm.py:191 msgid "" "Positive values will skew to the right\n" "while negative values will skew to the left." @@ -10921,17 +11004,17 @@ msgstr "" "Positive values will skew to the right\n" "while negative values will skew to the left." -#: flatcamGUI/PreferencesUI.py:4758 flatcamGUI/PreferencesUI.py:5216 +#: flatcamGUI/PreferencesUI.py:4776 flatcamGUI/PreferencesUI.py:5234 #: flatcamTools/ToolFilm.py:201 flatcamTools/ToolTransform.py:97 msgid "X angle" msgstr "X angle" -#: flatcamGUI/PreferencesUI.py:4767 flatcamGUI/PreferencesUI.py:5230 +#: flatcamGUI/PreferencesUI.py:4785 flatcamGUI/PreferencesUI.py:5248 #: flatcamTools/ToolFilm.py:210 flatcamTools/ToolTransform.py:119 msgid "Y angle" msgstr "Y angle" -#: flatcamGUI/PreferencesUI.py:4778 flatcamTools/ToolFilm.py:221 +#: flatcamGUI/PreferencesUI.py:4796 flatcamTools/ToolFilm.py:221 msgid "" "The reference point to be used as origin for the skew.\n" "It can be one of the four points of the geometry bounding box." @@ -10939,57 +11022,57 @@ msgstr "" "The reference point to be used as origin for the skew.\n" "It can be one of the four points of the geometry bounding box." -#: flatcamGUI/PreferencesUI.py:4781 flatcamTools/ToolFiducials.py:87 +#: flatcamGUI/PreferencesUI.py:4799 flatcamTools/ToolFiducials.py:87 #: flatcamTools/ToolFilm.py:224 msgid "Bottom Left" msgstr "Bottom Left" -#: flatcamGUI/PreferencesUI.py:4782 flatcamTools/ToolFilm.py:225 +#: flatcamGUI/PreferencesUI.py:4800 flatcamTools/ToolFilm.py:225 msgid "Top Left" msgstr "Top Left" -#: flatcamGUI/PreferencesUI.py:4783 flatcamTools/ToolFilm.py:226 +#: flatcamGUI/PreferencesUI.py:4801 flatcamTools/ToolFilm.py:226 msgid "Bottom Right" msgstr "Bottom Right" -#: flatcamGUI/PreferencesUI.py:4784 flatcamTools/ToolFilm.py:227 +#: flatcamGUI/PreferencesUI.py:4802 flatcamTools/ToolFilm.py:227 msgid "Top right" msgstr "Top right" -#: flatcamGUI/PreferencesUI.py:4792 flatcamTools/ToolFilm.py:244 +#: flatcamGUI/PreferencesUI.py:4810 flatcamTools/ToolFilm.py:244 msgid "Mirror Film geometry" msgstr "Mirror Film geometry" -#: flatcamGUI/PreferencesUI.py:4794 flatcamTools/ToolFilm.py:246 +#: flatcamGUI/PreferencesUI.py:4812 flatcamTools/ToolFilm.py:246 msgid "Mirror the film geometry on the selected axis or on both." msgstr "Mirror the film geometry on the selected axis or on both." -#: flatcamGUI/PreferencesUI.py:4806 flatcamTools/ToolFilm.py:258 +#: flatcamGUI/PreferencesUI.py:4824 flatcamTools/ToolFilm.py:258 msgid "Both" msgstr "Both" -#: flatcamGUI/PreferencesUI.py:4808 flatcamTools/ToolFilm.py:260 +#: flatcamGUI/PreferencesUI.py:4826 flatcamTools/ToolFilm.py:260 msgid "Mirror axis" msgstr "Mirror axis" -#: flatcamGUI/PreferencesUI.py:4818 flatcamTools/ToolFilm.py:403 +#: flatcamGUI/PreferencesUI.py:4836 flatcamTools/ToolFilm.py:403 msgid "SVG" msgstr "SVG" -#: flatcamGUI/PreferencesUI.py:4819 flatcamTools/ToolFilm.py:404 +#: flatcamGUI/PreferencesUI.py:4837 flatcamTools/ToolFilm.py:404 msgid "PNG" msgstr "PNG" -#: flatcamGUI/PreferencesUI.py:4820 flatcamTools/ToolFilm.py:405 +#: flatcamGUI/PreferencesUI.py:4838 flatcamTools/ToolFilm.py:405 msgid "PDF" msgstr "PDF" -#: flatcamGUI/PreferencesUI.py:4823 flatcamTools/ToolFilm.py:298 +#: flatcamGUI/PreferencesUI.py:4841 flatcamTools/ToolFilm.py:298 #: flatcamTools/ToolFilm.py:408 msgid "Film Type:" msgstr "Film Type:" -#: flatcamGUI/PreferencesUI.py:4825 flatcamTools/ToolFilm.py:410 +#: flatcamGUI/PreferencesUI.py:4843 flatcamTools/ToolFilm.py:410 msgid "" "The file type of the saved film. Can be:\n" "- 'SVG' -> open-source vectorial format\n" @@ -11001,11 +11084,11 @@ msgstr "" "- 'PNG' -> raster image\n" "- 'PDF' -> portable document format" -#: flatcamGUI/PreferencesUI.py:4834 flatcamTools/ToolFilm.py:419 +#: flatcamGUI/PreferencesUI.py:4852 flatcamTools/ToolFilm.py:419 msgid "Page Orientation" msgstr "Page Orientation" -#: flatcamGUI/PreferencesUI.py:4835 +#: flatcamGUI/PreferencesUI.py:4853 msgid "" "Can be:\n" "- Portrait\n" @@ -11015,19 +11098,19 @@ msgstr "" "- Portrait\n" "- Lanscape" -#: flatcamGUI/PreferencesUI.py:4847 flatcamTools/ToolFilm.py:432 +#: flatcamGUI/PreferencesUI.py:4865 flatcamTools/ToolFilm.py:432 msgid "Page Size" msgstr "Page Size" -#: flatcamGUI/PreferencesUI.py:4848 flatcamTools/ToolFilm.py:433 +#: flatcamGUI/PreferencesUI.py:4866 flatcamTools/ToolFilm.py:433 msgid "A selection of standard ISO 216 page sizes." msgstr "A selection of standard ISO 216 page sizes." -#: flatcamGUI/PreferencesUI.py:4920 +#: flatcamGUI/PreferencesUI.py:4938 msgid "Panelize Tool Options" msgstr "Panelize Tool Options" -#: flatcamGUI/PreferencesUI.py:4926 +#: flatcamGUI/PreferencesUI.py:4944 msgid "" "Create an object that contains an array of (x, y) elements,\n" "each element is a copy of the source object spaced\n" @@ -11037,11 +11120,11 @@ msgstr "" "each element is a copy of the source object spaced\n" "at a X distance, Y distance of each other." -#: flatcamGUI/PreferencesUI.py:4943 flatcamTools/ToolPanelize.py:160 +#: flatcamGUI/PreferencesUI.py:4961 flatcamTools/ToolPanelize.py:160 msgid "Spacing cols" msgstr "Spacing cols" -#: flatcamGUI/PreferencesUI.py:4945 flatcamTools/ToolPanelize.py:162 +#: flatcamGUI/PreferencesUI.py:4963 flatcamTools/ToolPanelize.py:162 msgid "" "Spacing between columns of the desired panel.\n" "In current units." @@ -11049,11 +11132,11 @@ msgstr "" "Spacing between columns of the desired panel.\n" "In current units." -#: flatcamGUI/PreferencesUI.py:4957 flatcamTools/ToolPanelize.py:172 +#: flatcamGUI/PreferencesUI.py:4975 flatcamTools/ToolPanelize.py:172 msgid "Spacing rows" msgstr "Spacing rows" -#: flatcamGUI/PreferencesUI.py:4959 flatcamTools/ToolPanelize.py:174 +#: flatcamGUI/PreferencesUI.py:4977 flatcamTools/ToolPanelize.py:174 msgid "" "Spacing between rows of the desired panel.\n" "In current units." @@ -11061,36 +11144,36 @@ msgstr "" "Spacing between rows of the desired panel.\n" "In current units." -#: flatcamGUI/PreferencesUI.py:4970 flatcamTools/ToolPanelize.py:183 +#: flatcamGUI/PreferencesUI.py:4988 flatcamTools/ToolPanelize.py:183 msgid "Columns" msgstr "Columns" -#: flatcamGUI/PreferencesUI.py:4972 flatcamTools/ToolPanelize.py:185 +#: flatcamGUI/PreferencesUI.py:4990 flatcamTools/ToolPanelize.py:185 msgid "Number of columns of the desired panel" msgstr "Number of columns of the desired panel" -#: flatcamGUI/PreferencesUI.py:4982 flatcamTools/ToolPanelize.py:193 +#: flatcamGUI/PreferencesUI.py:5000 flatcamTools/ToolPanelize.py:193 msgid "Rows" msgstr "Rows" -#: flatcamGUI/PreferencesUI.py:4984 flatcamTools/ToolPanelize.py:195 +#: flatcamGUI/PreferencesUI.py:5002 flatcamTools/ToolPanelize.py:195 msgid "Number of rows of the desired panel" msgstr "Number of rows of the desired panel" -#: flatcamGUI/PreferencesUI.py:4990 flatcamTools/ToolCalibration.py:89 -#: flatcamTools/ToolCalibration.py:569 flatcamTools/ToolPanelize.py:201 +#: flatcamGUI/PreferencesUI.py:5008 flatcamTools/ToolCalibration.py:196 +#: flatcamTools/ToolCalibration.py:634 flatcamTools/ToolPanelize.py:201 msgid "Gerber" msgstr "Gerber" -#: flatcamGUI/PreferencesUI.py:4991 flatcamTools/ToolPanelize.py:202 +#: flatcamGUI/PreferencesUI.py:5009 flatcamTools/ToolPanelize.py:202 msgid "Geo" msgstr "Geo" -#: flatcamGUI/PreferencesUI.py:4992 flatcamTools/ToolPanelize.py:203 +#: flatcamGUI/PreferencesUI.py:5010 flatcamTools/ToolPanelize.py:203 msgid "Panel Type" msgstr "Panel Type" -#: flatcamGUI/PreferencesUI.py:4994 +#: flatcamGUI/PreferencesUI.py:5012 msgid "" "Choose the type of object for the panel object:\n" "- Gerber\n" @@ -11100,11 +11183,11 @@ msgstr "" "- Gerber\n" "- Geometry" -#: flatcamGUI/PreferencesUI.py:5003 +#: flatcamGUI/PreferencesUI.py:5021 msgid "Constrain within" msgstr "Constrain within" -#: flatcamGUI/PreferencesUI.py:5005 flatcamTools/ToolPanelize.py:215 +#: flatcamGUI/PreferencesUI.py:5023 flatcamTools/ToolPanelize.py:215 msgid "" "Area define by DX and DY within to constrain the panel.\n" "DX and DY values are in current units.\n" @@ -11118,11 +11201,11 @@ msgstr "" "the final panel will have as many columns and rows as\n" "they fit completely within selected area." -#: flatcamGUI/PreferencesUI.py:5018 flatcamTools/ToolPanelize.py:227 +#: flatcamGUI/PreferencesUI.py:5036 flatcamTools/ToolPanelize.py:227 msgid "Width (DX)" msgstr "Width (DX)" -#: flatcamGUI/PreferencesUI.py:5020 flatcamTools/ToolPanelize.py:229 +#: flatcamGUI/PreferencesUI.py:5038 flatcamTools/ToolPanelize.py:229 msgid "" "The width (DX) within which the panel must fit.\n" "In current units." @@ -11130,11 +11213,11 @@ msgstr "" "The width (DX) within which the panel must fit.\n" "In current units." -#: flatcamGUI/PreferencesUI.py:5031 flatcamTools/ToolPanelize.py:238 +#: flatcamGUI/PreferencesUI.py:5049 flatcamTools/ToolPanelize.py:238 msgid "Height (DY)" msgstr "Height (DY)" -#: flatcamGUI/PreferencesUI.py:5033 flatcamTools/ToolPanelize.py:240 +#: flatcamGUI/PreferencesUI.py:5051 flatcamTools/ToolPanelize.py:240 msgid "" "The height (DY)within which the panel must fit.\n" "In current units." @@ -11142,15 +11225,15 @@ msgstr "" "The height (DY)within which the panel must fit.\n" "In current units." -#: flatcamGUI/PreferencesUI.py:5047 +#: flatcamGUI/PreferencesUI.py:5065 msgid "Calculators Tool Options" msgstr "Calculators Tool Options" -#: flatcamGUI/PreferencesUI.py:5051 flatcamTools/ToolCalculators.py:25 +#: flatcamGUI/PreferencesUI.py:5069 flatcamTools/ToolCalculators.py:25 msgid "V-Shape Tool Calculator" msgstr "V-Shape Tool Calculator" -#: flatcamGUI/PreferencesUI.py:5053 +#: flatcamGUI/PreferencesUI.py:5071 msgid "" "Calculate the tool diameter for a given V-shape tool,\n" "having the tip diameter, tip angle and\n" @@ -11160,11 +11243,11 @@ msgstr "" "having the tip diameter, tip angle and\n" "depth-of-cut as parameters." -#: flatcamGUI/PreferencesUI.py:5068 flatcamTools/ToolCalculators.py:94 +#: flatcamGUI/PreferencesUI.py:5086 flatcamTools/ToolCalculators.py:94 msgid "Tip Diameter" msgstr "Tip Diameter" -#: flatcamGUI/PreferencesUI.py:5070 flatcamTools/ToolCalculators.py:102 +#: flatcamGUI/PreferencesUI.py:5088 flatcamTools/ToolCalculators.py:102 msgid "" "This is the tool tip diameter.\n" "It is specified by manufacturer." @@ -11172,11 +11255,11 @@ msgstr "" "This is the tool tip diameter.\n" "It is specified by manufacturer." -#: flatcamGUI/PreferencesUI.py:5082 flatcamTools/ToolCalculators.py:105 +#: flatcamGUI/PreferencesUI.py:5100 flatcamTools/ToolCalculators.py:105 msgid "Tip Angle" msgstr "Tip Angle" -#: flatcamGUI/PreferencesUI.py:5084 +#: flatcamGUI/PreferencesUI.py:5102 msgid "" "This is the angle on the tip of the tool.\n" "It is specified by manufacturer." @@ -11184,7 +11267,7 @@ msgstr "" "This is the angle on the tip of the tool.\n" "It is specified by manufacturer." -#: flatcamGUI/PreferencesUI.py:5098 +#: flatcamGUI/PreferencesUI.py:5116 msgid "" "This is depth to cut into material.\n" "In the CNCJob object it is the CutZ parameter." @@ -11192,11 +11275,11 @@ msgstr "" "This is depth to cut into material.\n" "In the CNCJob object it is the CutZ parameter." -#: flatcamGUI/PreferencesUI.py:5105 flatcamTools/ToolCalculators.py:27 +#: flatcamGUI/PreferencesUI.py:5123 flatcamTools/ToolCalculators.py:27 msgid "ElectroPlating Calculator" msgstr "ElectroPlating Calculator" -#: flatcamGUI/PreferencesUI.py:5107 flatcamTools/ToolCalculators.py:158 +#: flatcamGUI/PreferencesUI.py:5125 flatcamTools/ToolCalculators.py:158 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 " @@ -11206,27 +11289,27 @@ msgstr "" "using a method like grahite ink or calcium hypophosphite ink or palladium " "chloride." -#: flatcamGUI/PreferencesUI.py:5121 flatcamTools/ToolCalculators.py:167 +#: flatcamGUI/PreferencesUI.py:5139 flatcamTools/ToolCalculators.py:167 msgid "Board Length" msgstr "Board Length" -#: flatcamGUI/PreferencesUI.py:5123 flatcamTools/ToolCalculators.py:173 +#: flatcamGUI/PreferencesUI.py:5141 flatcamTools/ToolCalculators.py:173 msgid "This is the board length. In centimeters." msgstr "This is the board length. In centimeters." -#: flatcamGUI/PreferencesUI.py:5133 flatcamTools/ToolCalculators.py:175 +#: flatcamGUI/PreferencesUI.py:5151 flatcamTools/ToolCalculators.py:175 msgid "Board Width" msgstr "Board Width" -#: flatcamGUI/PreferencesUI.py:5135 flatcamTools/ToolCalculators.py:181 +#: flatcamGUI/PreferencesUI.py:5153 flatcamTools/ToolCalculators.py:181 msgid "This is the board width.In centimeters." msgstr "This is the board width.In centimeters." -#: flatcamGUI/PreferencesUI.py:5140 flatcamTools/ToolCalculators.py:183 +#: flatcamGUI/PreferencesUI.py:5158 flatcamTools/ToolCalculators.py:183 msgid "Current Density" msgstr "Current Density" -#: flatcamGUI/PreferencesUI.py:5146 flatcamTools/ToolCalculators.py:190 +#: flatcamGUI/PreferencesUI.py:5164 flatcamTools/ToolCalculators.py:190 msgid "" "Current density to pass through the board. \n" "In Amps per Square Feet ASF." @@ -11234,11 +11317,11 @@ msgstr "" "Current density to pass through the board. \n" "In Amps per Square Feet ASF." -#: flatcamGUI/PreferencesUI.py:5152 flatcamTools/ToolCalculators.py:193 +#: flatcamGUI/PreferencesUI.py:5170 flatcamTools/ToolCalculators.py:193 msgid "Copper Growth" msgstr "Copper Growth" -#: flatcamGUI/PreferencesUI.py:5158 flatcamTools/ToolCalculators.py:200 +#: flatcamGUI/PreferencesUI.py:5176 flatcamTools/ToolCalculators.py:200 msgid "" "How thick the copper growth is intended to be.\n" "In microns." @@ -11246,11 +11329,11 @@ msgstr "" "How thick the copper growth is intended to be.\n" "In microns." -#: flatcamGUI/PreferencesUI.py:5171 +#: flatcamGUI/PreferencesUI.py:5189 msgid "Transform Tool Options" msgstr "Transform Tool Options" -#: flatcamGUI/PreferencesUI.py:5177 +#: flatcamGUI/PreferencesUI.py:5195 msgid "" "Various transformations that can be applied\n" "on a FlatCAM object." @@ -11258,19 +11341,19 @@ msgstr "" "Various transformations that can be applied\n" "on a FlatCAM object." -#: flatcamGUI/PreferencesUI.py:5208 +#: flatcamGUI/PreferencesUI.py:5226 msgid "Skew" msgstr "Skew" -#: flatcamGUI/PreferencesUI.py:5249 flatcamTools/ToolTransform.py:149 +#: flatcamGUI/PreferencesUI.py:5267 flatcamTools/ToolTransform.py:149 msgid "Factor for scaling on X axis." msgstr "Factor for scaling on X axis." -#: flatcamGUI/PreferencesUI.py:5262 flatcamTools/ToolTransform.py:170 +#: flatcamGUI/PreferencesUI.py:5280 flatcamTools/ToolTransform.py:170 msgid "Factor for scaling on Y axis." msgstr "Factor for scaling on Y axis." -#: flatcamGUI/PreferencesUI.py:5270 flatcamTools/ToolTransform.py:193 +#: flatcamGUI/PreferencesUI.py:5288 flatcamTools/ToolTransform.py:193 msgid "" "Scale the selected object(s)\n" "using the Scale_X factor for both axis." @@ -11278,7 +11361,7 @@ msgstr "" "Scale the selected object(s)\n" "using the Scale_X factor for both axis." -#: flatcamGUI/PreferencesUI.py:5278 flatcamTools/ToolTransform.py:201 +#: flatcamGUI/PreferencesUI.py:5296 flatcamTools/ToolTransform.py:201 msgid "" "Scale the selected object(s)\n" "using the origin reference when checked,\n" @@ -11290,27 +11373,27 @@ msgstr "" "and the center of the biggest bounding box\n" "of the selected objects when unchecked." -#: flatcamGUI/PreferencesUI.py:5294 flatcamTools/ToolTransform.py:216 +#: flatcamGUI/PreferencesUI.py:5312 flatcamTools/ToolTransform.py:216 msgid "X val" msgstr "X val" -#: flatcamGUI/PreferencesUI.py:5296 flatcamTools/ToolTransform.py:218 +#: flatcamGUI/PreferencesUI.py:5314 flatcamTools/ToolTransform.py:218 msgid "Distance to offset on X axis. In current units." msgstr "Distance to offset on X axis. In current units." -#: flatcamGUI/PreferencesUI.py:5307 flatcamTools/ToolTransform.py:237 +#: flatcamGUI/PreferencesUI.py:5325 flatcamTools/ToolTransform.py:237 msgid "Y val" msgstr "Y val" -#: flatcamGUI/PreferencesUI.py:5309 flatcamTools/ToolTransform.py:239 +#: flatcamGUI/PreferencesUI.py:5327 flatcamTools/ToolTransform.py:239 msgid "Distance to offset on Y axis. In current units." msgstr "Distance to offset on Y axis. In current units." -#: flatcamGUI/PreferencesUI.py:5315 flatcamTools/ToolTransform.py:284 +#: flatcamGUI/PreferencesUI.py:5333 flatcamTools/ToolTransform.py:284 msgid "Mirror Reference" msgstr "Mirror Reference" -#: flatcamGUI/PreferencesUI.py:5317 flatcamTools/ToolTransform.py:286 +#: flatcamGUI/PreferencesUI.py:5335 flatcamTools/ToolTransform.py:286 msgid "" "Flip the selected object(s)\n" "around the point in Point Entry Field.\n" @@ -11332,11 +11415,11 @@ msgstr "" "Or enter the coords in format (x, y) in the\n" "Point Entry field and click Flip on X(Y)" -#: flatcamGUI/PreferencesUI.py:5328 +#: flatcamGUI/PreferencesUI.py:5346 msgid "Mirror Reference point" msgstr "Mirror Reference point" -#: flatcamGUI/PreferencesUI.py:5330 +#: flatcamGUI/PreferencesUI.py:5348 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" @@ -11346,11 +11429,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/PreferencesUI.py:5347 +#: flatcamGUI/PreferencesUI.py:5365 msgid "SolderPaste Tool Options" msgstr "SolderPaste Tool Options" -#: flatcamGUI/PreferencesUI.py:5353 +#: flatcamGUI/PreferencesUI.py:5371 msgid "" "A tool to create GCode for dispensing\n" "solder paste onto a PCB." @@ -11358,47 +11441,47 @@ msgstr "" "A tool to create GCode for dispensing\n" "solder paste onto a PCB." -#: flatcamGUI/PreferencesUI.py:5364 +#: flatcamGUI/PreferencesUI.py:5382 msgid "Diameters of nozzle tools, separated by ','" msgstr "Diameters of nozzle tools, separated by ','" -#: flatcamGUI/PreferencesUI.py:5372 +#: flatcamGUI/PreferencesUI.py:5390 msgid "New Nozzle Dia" msgstr "New Nozzle Dia" -#: flatcamGUI/PreferencesUI.py:5374 flatcamTools/ToolSolderPaste.py:106 +#: flatcamGUI/PreferencesUI.py:5392 flatcamTools/ToolSolderPaste.py:106 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/PreferencesUI.py:5390 flatcamTools/ToolSolderPaste.py:182 +#: flatcamGUI/PreferencesUI.py:5408 flatcamTools/ToolSolderPaste.py:182 msgid "Z Dispense Start" msgstr "Z Dispense Start" -#: flatcamGUI/PreferencesUI.py:5392 flatcamTools/ToolSolderPaste.py:184 +#: flatcamGUI/PreferencesUI.py:5410 flatcamTools/ToolSolderPaste.py:184 msgid "The height (Z) when solder paste dispensing starts." msgstr "The height (Z) when solder paste dispensing starts." -#: flatcamGUI/PreferencesUI.py:5403 flatcamTools/ToolSolderPaste.py:194 +#: flatcamGUI/PreferencesUI.py:5421 flatcamTools/ToolSolderPaste.py:194 msgid "Z Dispense" msgstr "Z Dispense" -#: flatcamGUI/PreferencesUI.py:5405 flatcamTools/ToolSolderPaste.py:196 +#: flatcamGUI/PreferencesUI.py:5423 flatcamTools/ToolSolderPaste.py:196 msgid "The height (Z) when doing solder paste dispensing." msgstr "The height (Z) when doing solder paste dispensing." -#: flatcamGUI/PreferencesUI.py:5416 flatcamTools/ToolSolderPaste.py:206 +#: flatcamGUI/PreferencesUI.py:5434 flatcamTools/ToolSolderPaste.py:206 msgid "Z Dispense Stop" msgstr "Z Dispense Stop" -#: flatcamGUI/PreferencesUI.py:5418 flatcamTools/ToolSolderPaste.py:208 +#: flatcamGUI/PreferencesUI.py:5436 flatcamTools/ToolSolderPaste.py:208 msgid "The height (Z) when solder paste dispensing stops." msgstr "The height (Z) when solder paste dispensing stops." -#: flatcamGUI/PreferencesUI.py:5429 flatcamTools/ToolSolderPaste.py:218 +#: flatcamGUI/PreferencesUI.py:5447 flatcamTools/ToolSolderPaste.py:218 msgid "Z Travel" msgstr "Z Travel" -#: flatcamGUI/PreferencesUI.py:5431 flatcamTools/ToolSolderPaste.py:220 +#: flatcamGUI/PreferencesUI.py:5449 flatcamTools/ToolSolderPaste.py:220 msgid "" "The height (Z) for travel between pads\n" "(without dispensing solder paste)." @@ -11406,15 +11489,15 @@ msgstr "" "The height (Z) for travel between pads\n" "(without dispensing solder paste)." -#: flatcamGUI/PreferencesUI.py:5443 flatcamTools/ToolSolderPaste.py:231 +#: flatcamGUI/PreferencesUI.py:5461 flatcamTools/ToolSolderPaste.py:231 msgid "Z Toolchange" msgstr "Z Toolchange" -#: flatcamGUI/PreferencesUI.py:5445 flatcamTools/ToolSolderPaste.py:233 +#: flatcamGUI/PreferencesUI.py:5463 flatcamTools/ToolSolderPaste.py:233 msgid "The height (Z) for tool (nozzle) change." msgstr "The height (Z) for tool (nozzle) change." -#: flatcamGUI/PreferencesUI.py:5454 flatcamTools/ToolSolderPaste.py:241 +#: flatcamGUI/PreferencesUI.py:5472 flatcamTools/ToolSolderPaste.py:241 msgid "" "The X,Y location for tool (nozzle) change.\n" "The format is (x, y) where x and y are real numbers." @@ -11422,11 +11505,11 @@ msgstr "" "The X,Y location for tool (nozzle) change.\n" "The format is (x, y) where x and y are real numbers." -#: flatcamGUI/PreferencesUI.py:5468 flatcamTools/ToolSolderPaste.py:254 +#: flatcamGUI/PreferencesUI.py:5486 flatcamTools/ToolSolderPaste.py:254 msgid "Feedrate (speed) while moving on the X-Y plane." msgstr "Feedrate (speed) while moving on the X-Y plane." -#: flatcamGUI/PreferencesUI.py:5481 flatcamTools/ToolSolderPaste.py:266 +#: flatcamGUI/PreferencesUI.py:5499 flatcamTools/ToolSolderPaste.py:266 msgid "" "Feedrate (speed) while moving vertically\n" "(on Z plane)." @@ -11434,11 +11517,11 @@ msgstr "" "Feedrate (speed) while moving vertically\n" "(on Z plane)." -#: flatcamGUI/PreferencesUI.py:5493 flatcamTools/ToolSolderPaste.py:277 +#: flatcamGUI/PreferencesUI.py:5511 flatcamTools/ToolSolderPaste.py:277 msgid "Feedrate Z Dispense" msgstr "Feedrate Z Dispense" -#: flatcamGUI/PreferencesUI.py:5495 +#: flatcamGUI/PreferencesUI.py:5513 msgid "" "Feedrate (speed) while moving up vertically\n" "to Dispense position (on Z plane)." @@ -11446,11 +11529,11 @@ msgstr "" "Feedrate (speed) while moving up vertically\n" "to Dispense position (on Z plane)." -#: flatcamGUI/PreferencesUI.py:5506 flatcamTools/ToolSolderPaste.py:289 +#: flatcamGUI/PreferencesUI.py:5524 flatcamTools/ToolSolderPaste.py:289 msgid "Spindle Speed FWD" msgstr "Spindle Speed FWD" -#: flatcamGUI/PreferencesUI.py:5508 flatcamTools/ToolSolderPaste.py:291 +#: flatcamGUI/PreferencesUI.py:5526 flatcamTools/ToolSolderPaste.py:291 msgid "" "The dispenser speed while pushing solder paste\n" "through the dispenser nozzle." @@ -11458,19 +11541,19 @@ msgstr "" "The dispenser speed while pushing solder paste\n" "through the dispenser nozzle." -#: flatcamGUI/PreferencesUI.py:5520 flatcamTools/ToolSolderPaste.py:302 +#: flatcamGUI/PreferencesUI.py:5538 flatcamTools/ToolSolderPaste.py:302 msgid "Dwell FWD" msgstr "Dwell FWD" -#: flatcamGUI/PreferencesUI.py:5522 flatcamTools/ToolSolderPaste.py:304 +#: flatcamGUI/PreferencesUI.py:5540 flatcamTools/ToolSolderPaste.py:304 msgid "Pause after solder dispensing." msgstr "Pause after solder dispensing." -#: flatcamGUI/PreferencesUI.py:5532 flatcamTools/ToolSolderPaste.py:313 +#: flatcamGUI/PreferencesUI.py:5550 flatcamTools/ToolSolderPaste.py:313 msgid "Spindle Speed REV" msgstr "Spindle Speed REV" -#: flatcamGUI/PreferencesUI.py:5534 flatcamTools/ToolSolderPaste.py:315 +#: flatcamGUI/PreferencesUI.py:5552 flatcamTools/ToolSolderPaste.py:315 msgid "" "The dispenser speed while retracting solder paste\n" "through the dispenser nozzle." @@ -11478,11 +11561,11 @@ msgstr "" "The dispenser speed while retracting solder paste\n" "through the dispenser nozzle." -#: flatcamGUI/PreferencesUI.py:5546 flatcamTools/ToolSolderPaste.py:326 +#: flatcamGUI/PreferencesUI.py:5564 flatcamTools/ToolSolderPaste.py:326 msgid "Dwell REV" msgstr "Dwell REV" -#: flatcamGUI/PreferencesUI.py:5548 flatcamTools/ToolSolderPaste.py:328 +#: flatcamGUI/PreferencesUI.py:5566 flatcamTools/ToolSolderPaste.py:328 msgid "" "Pause after solder paste dispenser retracted,\n" "to allow pressure equilibrium." @@ -11490,15 +11573,15 @@ msgstr "" "Pause after solder paste dispenser retracted,\n" "to allow pressure equilibrium." -#: flatcamGUI/PreferencesUI.py:5557 flatcamTools/ToolSolderPaste.py:336 +#: flatcamGUI/PreferencesUI.py:5575 flatcamTools/ToolSolderPaste.py:336 msgid "Files that control the GCode generation." msgstr "Files that control the GCode generation." -#: flatcamGUI/PreferencesUI.py:5572 +#: flatcamGUI/PreferencesUI.py:5590 msgid "Substractor Tool Options" msgstr "Substractor Tool Options" -#: flatcamGUI/PreferencesUI.py:5578 +#: flatcamGUI/PreferencesUI.py:5596 msgid "" "A tool to substract one Gerber or Geometry object\n" "from another of the same type." @@ -11506,21 +11589,21 @@ msgstr "" "A tool to substract one Gerber or Geometry object\n" "from another of the same type." -#: flatcamGUI/PreferencesUI.py:5583 flatcamTools/ToolSub.py:149 +#: flatcamGUI/PreferencesUI.py:5601 flatcamTools/ToolSub.py:149 msgid "Close paths" msgstr "Close paths" -#: flatcamGUI/PreferencesUI.py:5584 +#: flatcamGUI/PreferencesUI.py:5602 msgid "" "Checking this will close the paths cut by the Geometry substractor object." msgstr "" "Checking this will close the paths cut by the Geometry substractor object." -#: flatcamGUI/PreferencesUI.py:5595 +#: flatcamGUI/PreferencesUI.py:5613 msgid "Check Rules Tool Options" msgstr "Check Rules Tool Options" -#: flatcamGUI/PreferencesUI.py:5600 +#: flatcamGUI/PreferencesUI.py:5618 msgid "" "A tool to check if Gerber files are within a set\n" "of Manufacturing Rules." @@ -11528,20 +11611,20 @@ msgstr "" "A tool to check if Gerber files are within a set\n" "of Manufacturing Rules." -#: flatcamGUI/PreferencesUI.py:5610 flatcamTools/ToolRulesCheck.py:256 +#: flatcamGUI/PreferencesUI.py:5628 flatcamTools/ToolRulesCheck.py:256 #: flatcamTools/ToolRulesCheck.py:920 msgid "Trace Size" msgstr "Trace Size" -#: flatcamGUI/PreferencesUI.py:5612 flatcamTools/ToolRulesCheck.py:258 +#: flatcamGUI/PreferencesUI.py:5630 flatcamTools/ToolRulesCheck.py:258 msgid "This checks if the minimum size for traces is met." msgstr "This checks if the minimum size for traces is met." -#: flatcamGUI/PreferencesUI.py:5622 flatcamGUI/PreferencesUI.py:5642 -#: flatcamGUI/PreferencesUI.py:5662 flatcamGUI/PreferencesUI.py:5682 -#: flatcamGUI/PreferencesUI.py:5702 flatcamGUI/PreferencesUI.py:5722 -#: flatcamGUI/PreferencesUI.py:5742 flatcamGUI/PreferencesUI.py:5762 -#: flatcamGUI/PreferencesUI.py:5784 flatcamGUI/PreferencesUI.py:5804 +#: flatcamGUI/PreferencesUI.py:5640 flatcamGUI/PreferencesUI.py:5660 +#: flatcamGUI/PreferencesUI.py:5680 flatcamGUI/PreferencesUI.py:5700 +#: flatcamGUI/PreferencesUI.py:5720 flatcamGUI/PreferencesUI.py:5740 +#: flatcamGUI/PreferencesUI.py:5760 flatcamGUI/PreferencesUI.py:5780 +#: flatcamGUI/PreferencesUI.py:5802 flatcamGUI/PreferencesUI.py:5822 #: flatcamTools/ToolRulesCheck.py:268 flatcamTools/ToolRulesCheck.py:290 #: flatcamTools/ToolRulesCheck.py:313 flatcamTools/ToolRulesCheck.py:336 #: flatcamTools/ToolRulesCheck.py:359 flatcamTools/ToolRulesCheck.py:382 @@ -11550,16 +11633,16 @@ msgstr "This checks if the minimum size for traces is met." msgid "Min value" msgstr "Min value" -#: flatcamGUI/PreferencesUI.py:5624 flatcamTools/ToolRulesCheck.py:270 +#: flatcamGUI/PreferencesUI.py:5642 flatcamTools/ToolRulesCheck.py:270 msgid "Minimum acceptable trace size." msgstr "Minimum acceptable trace size." -#: flatcamGUI/PreferencesUI.py:5629 flatcamTools/ToolRulesCheck.py:277 +#: flatcamGUI/PreferencesUI.py:5647 flatcamTools/ToolRulesCheck.py:277 #: flatcamTools/ToolRulesCheck.py:1148 flatcamTools/ToolRulesCheck.py:1178 msgid "Copper to Copper clearance" msgstr "Copper to Copper clearance" -#: flatcamGUI/PreferencesUI.py:5631 flatcamTools/ToolRulesCheck.py:279 +#: flatcamGUI/PreferencesUI.py:5649 flatcamTools/ToolRulesCheck.py:279 msgid "" "This checks if the minimum clearance between copper\n" "features is met." @@ -11567,23 +11650,23 @@ msgstr "" "This checks if the minimum clearance between copper\n" "features is met." -#: flatcamGUI/PreferencesUI.py:5644 flatcamGUI/PreferencesUI.py:5664 -#: flatcamGUI/PreferencesUI.py:5684 flatcamGUI/PreferencesUI.py:5704 -#: flatcamGUI/PreferencesUI.py:5724 flatcamGUI/PreferencesUI.py:5744 -#: flatcamGUI/PreferencesUI.py:5806 flatcamTools/ToolRulesCheck.py:292 +#: flatcamGUI/PreferencesUI.py:5662 flatcamGUI/PreferencesUI.py:5682 +#: flatcamGUI/PreferencesUI.py:5702 flatcamGUI/PreferencesUI.py:5722 +#: flatcamGUI/PreferencesUI.py:5742 flatcamGUI/PreferencesUI.py:5762 +#: flatcamGUI/PreferencesUI.py:5824 flatcamTools/ToolRulesCheck.py:292 #: flatcamTools/ToolRulesCheck.py:315 flatcamTools/ToolRulesCheck.py:338 #: flatcamTools/ToolRulesCheck.py:361 flatcamTools/ToolRulesCheck.py:384 #: flatcamTools/ToolRulesCheck.py:407 flatcamTools/ToolRulesCheck.py:455 msgid "Minimum acceptable clearance value." msgstr "Minimum acceptable clearance value." -#: flatcamGUI/PreferencesUI.py:5649 flatcamTools/ToolRulesCheck.py:300 +#: flatcamGUI/PreferencesUI.py:5667 flatcamTools/ToolRulesCheck.py:300 #: flatcamTools/ToolRulesCheck.py:1208 flatcamTools/ToolRulesCheck.py:1214 #: flatcamTools/ToolRulesCheck.py:1227 flatcamTools/ToolRulesCheck.py:1234 msgid "Copper to Outline clearance" msgstr "Copper to Outline clearance" -#: flatcamGUI/PreferencesUI.py:5651 flatcamTools/ToolRulesCheck.py:302 +#: flatcamGUI/PreferencesUI.py:5669 flatcamTools/ToolRulesCheck.py:302 msgid "" "This checks if the minimum clearance between copper\n" "features and the outline is met." @@ -11591,11 +11674,11 @@ msgstr "" "This checks if the minimum clearance between copper\n" "features and the outline is met." -#: flatcamGUI/PreferencesUI.py:5669 flatcamTools/ToolRulesCheck.py:323 +#: flatcamGUI/PreferencesUI.py:5687 flatcamTools/ToolRulesCheck.py:323 msgid "Silk to Silk Clearance" msgstr "Silk to Silk Clearance" -#: flatcamGUI/PreferencesUI.py:5671 flatcamTools/ToolRulesCheck.py:325 +#: flatcamGUI/PreferencesUI.py:5689 flatcamTools/ToolRulesCheck.py:325 msgid "" "This checks if the minimum clearance between silkscreen\n" "features and silkscreen features is met." @@ -11603,13 +11686,13 @@ msgstr "" "This checks if the minimum clearance between silkscreen\n" "features and silkscreen features is met." -#: flatcamGUI/PreferencesUI.py:5689 flatcamTools/ToolRulesCheck.py:346 +#: flatcamGUI/PreferencesUI.py:5707 flatcamTools/ToolRulesCheck.py:346 #: flatcamTools/ToolRulesCheck.py:1317 flatcamTools/ToolRulesCheck.py:1323 #: flatcamTools/ToolRulesCheck.py:1341 msgid "Silk to Solder Mask Clearance" msgstr "Silk to Solder Mask Clearance" -#: flatcamGUI/PreferencesUI.py:5691 flatcamTools/ToolRulesCheck.py:348 +#: flatcamGUI/PreferencesUI.py:5709 flatcamTools/ToolRulesCheck.py:348 msgid "" "This checks if the minimum clearance between silkscreen\n" "features and soldermask features is met." @@ -11617,13 +11700,13 @@ msgstr "" "This checks if the minimum clearance between silkscreen\n" "features and soldermask features is met." -#: flatcamGUI/PreferencesUI.py:5709 flatcamTools/ToolRulesCheck.py:369 +#: flatcamGUI/PreferencesUI.py:5727 flatcamTools/ToolRulesCheck.py:369 #: flatcamTools/ToolRulesCheck.py:1371 flatcamTools/ToolRulesCheck.py:1377 #: flatcamTools/ToolRulesCheck.py:1391 flatcamTools/ToolRulesCheck.py:1398 msgid "Silk to Outline Clearance" msgstr "Silk to Outline Clearance" -#: flatcamGUI/PreferencesUI.py:5711 flatcamTools/ToolRulesCheck.py:371 +#: flatcamGUI/PreferencesUI.py:5729 flatcamTools/ToolRulesCheck.py:371 msgid "" "This checks if the minimum clearance between silk\n" "features and the outline is met." @@ -11631,12 +11714,12 @@ msgstr "" "This checks if the minimum clearance between silk\n" "features and the outline is met." -#: flatcamGUI/PreferencesUI.py:5729 flatcamTools/ToolRulesCheck.py:392 +#: flatcamGUI/PreferencesUI.py:5747 flatcamTools/ToolRulesCheck.py:392 #: flatcamTools/ToolRulesCheck.py:1409 flatcamTools/ToolRulesCheck.py:1436 msgid "Minimum Solder Mask Sliver" msgstr "Minimum Solder Mask Sliver" -#: flatcamGUI/PreferencesUI.py:5731 flatcamTools/ToolRulesCheck.py:394 +#: flatcamGUI/PreferencesUI.py:5749 flatcamTools/ToolRulesCheck.py:394 msgid "" "This checks if the minimum clearance between soldermask\n" "features and soldermask features is met." @@ -11644,13 +11727,13 @@ msgstr "" "This checks if the minimum clearance between soldermask\n" "features and soldermask features is met." -#: flatcamGUI/PreferencesUI.py:5749 flatcamTools/ToolRulesCheck.py:415 +#: flatcamGUI/PreferencesUI.py:5767 flatcamTools/ToolRulesCheck.py:415 #: flatcamTools/ToolRulesCheck.py:1474 flatcamTools/ToolRulesCheck.py:1480 #: flatcamTools/ToolRulesCheck.py:1496 flatcamTools/ToolRulesCheck.py:1503 msgid "Minimum Annular Ring" msgstr "Minimum Annular Ring" -#: flatcamGUI/PreferencesUI.py:5751 flatcamTools/ToolRulesCheck.py:417 +#: flatcamGUI/PreferencesUI.py:5769 flatcamTools/ToolRulesCheck.py:417 msgid "" "This checks if the minimum copper ring left by drilling\n" "a hole into a pad is met." @@ -11658,16 +11741,16 @@ msgstr "" "This checks if the minimum copper ring left by drilling\n" "a hole into a pad is met." -#: flatcamGUI/PreferencesUI.py:5764 flatcamTools/ToolRulesCheck.py:430 +#: flatcamGUI/PreferencesUI.py:5782 flatcamTools/ToolRulesCheck.py:430 msgid "Minimum acceptable ring value." msgstr "Minimum acceptable ring value." -#: flatcamGUI/PreferencesUI.py:5771 flatcamTools/ToolRulesCheck.py:440 +#: flatcamGUI/PreferencesUI.py:5789 flatcamTools/ToolRulesCheck.py:440 #: flatcamTools/ToolRulesCheck.py:864 msgid "Hole to Hole Clearance" msgstr "Hole to Hole Clearance" -#: flatcamGUI/PreferencesUI.py:5773 flatcamTools/ToolRulesCheck.py:442 +#: flatcamGUI/PreferencesUI.py:5791 flatcamTools/ToolRulesCheck.py:442 msgid "" "This checks if the minimum clearance between a drill hole\n" "and another drill hole is met." @@ -11675,16 +11758,16 @@ msgstr "" "This checks if the minimum clearance between a drill hole\n" "and another drill hole is met." -#: flatcamGUI/PreferencesUI.py:5786 flatcamTools/ToolRulesCheck.py:478 +#: flatcamGUI/PreferencesUI.py:5804 flatcamTools/ToolRulesCheck.py:478 msgid "Minimum acceptable drill size." msgstr "Minimum acceptable drill size." -#: flatcamGUI/PreferencesUI.py:5791 flatcamTools/ToolRulesCheck.py:463 +#: flatcamGUI/PreferencesUI.py:5809 flatcamTools/ToolRulesCheck.py:463 #: flatcamTools/ToolRulesCheck.py:838 msgid "Hole Size" msgstr "Hole Size" -#: flatcamGUI/PreferencesUI.py:5793 flatcamTools/ToolRulesCheck.py:465 +#: flatcamGUI/PreferencesUI.py:5811 flatcamTools/ToolRulesCheck.py:465 msgid "" "This checks if the drill holes\n" "sizes are above the threshold." @@ -11692,11 +11775,11 @@ msgstr "" "This checks if the drill holes\n" "sizes are above the threshold." -#: flatcamGUI/PreferencesUI.py:5818 +#: flatcamGUI/PreferencesUI.py:5836 msgid "Optimal Tool Options" msgstr "Optimal Tool Options" -#: flatcamGUI/PreferencesUI.py:5824 +#: flatcamGUI/PreferencesUI.py:5842 msgid "" "A tool to find the minimum distance between\n" "every two Gerber geometric elements" @@ -11704,19 +11787,19 @@ msgstr "" "A tool to find the minimum distance between\n" "every two Gerber geometric elements" -#: flatcamGUI/PreferencesUI.py:5839 flatcamTools/ToolOptimal.py:78 +#: flatcamGUI/PreferencesUI.py:5857 flatcamTools/ToolOptimal.py:78 msgid "Precision" msgstr "Precision" -#: flatcamGUI/PreferencesUI.py:5841 +#: flatcamGUI/PreferencesUI.py:5859 msgid "Number of decimals for the distances and coordinates in this tool." msgstr "Number of decimals for the distances and coordinates in this tool." -#: flatcamGUI/PreferencesUI.py:5855 +#: flatcamGUI/PreferencesUI.py:5873 msgid "QRCode Tool Options" msgstr "QRCode Tool Options" -#: flatcamGUI/PreferencesUI.py:5861 +#: flatcamGUI/PreferencesUI.py:5879 msgid "" "A tool to create a QRCode that can be inserted\n" "into a selected Gerber file, or it can be exported as a file." @@ -11724,11 +11807,11 @@ msgstr "" "A tool to create a QRCode that can be inserted\n" "into a selected Gerber file, or it can be exported as a file." -#: flatcamGUI/PreferencesUI.py:5873 flatcamTools/ToolQRCode.py:99 +#: flatcamGUI/PreferencesUI.py:5891 flatcamTools/ToolQRCode.py:99 msgid "Version" msgstr "Version" -#: flatcamGUI/PreferencesUI.py:5875 flatcamTools/ToolQRCode.py:101 +#: flatcamGUI/PreferencesUI.py:5893 flatcamTools/ToolQRCode.py:101 msgid "" "QRCode version can have values from 1 (21x21 boxes)\n" "to 40 (177x177 boxes)." @@ -11736,11 +11819,11 @@ msgstr "" "QRCode version can have values from 1 (21x21 boxes)\n" "to 40 (177x177 boxes)." -#: flatcamGUI/PreferencesUI.py:5886 flatcamTools/ToolQRCode.py:112 +#: flatcamGUI/PreferencesUI.py:5904 flatcamTools/ToolQRCode.py:112 msgid "Error correction" msgstr "Error correction" -#: flatcamGUI/PreferencesUI.py:5888 flatcamGUI/PreferencesUI.py:5899 +#: flatcamGUI/PreferencesUI.py:5906 flatcamGUI/PreferencesUI.py:5917 #: flatcamTools/ToolQRCode.py:114 flatcamTools/ToolQRCode.py:125 #, python-format msgid "" @@ -11756,11 +11839,11 @@ msgstr "" "Q = maximum 25%% errors can be corrected\n" "H = maximum 30%% errors can be corrected." -#: flatcamGUI/PreferencesUI.py:5909 flatcamTools/ToolQRCode.py:135 +#: flatcamGUI/PreferencesUI.py:5927 flatcamTools/ToolQRCode.py:135 msgid "Box Size" msgstr "Box Size" -#: flatcamGUI/PreferencesUI.py:5911 flatcamTools/ToolQRCode.py:137 +#: flatcamGUI/PreferencesUI.py:5929 flatcamTools/ToolQRCode.py:137 msgid "" "Box size control the overall size of the QRcode\n" "by adjusting the size of each box in the code." @@ -11768,11 +11851,11 @@ msgstr "" "Box size control the overall size of the QRcode\n" "by adjusting the size of each box in the code." -#: flatcamGUI/PreferencesUI.py:5922 flatcamTools/ToolQRCode.py:148 +#: flatcamGUI/PreferencesUI.py:5940 flatcamTools/ToolQRCode.py:148 msgid "Border Size" msgstr "Border Size" -#: flatcamGUI/PreferencesUI.py:5924 flatcamTools/ToolQRCode.py:150 +#: flatcamGUI/PreferencesUI.py:5942 flatcamTools/ToolQRCode.py:150 msgid "" "Size of the QRCode border. How many boxes thick is the border.\n" "Default value is 4. The width of the clearance around the QRCode." @@ -11780,23 +11863,23 @@ msgstr "" "Size of the QRCode border. How many boxes thick is the border.\n" "Default value is 4. The width of the clearance around the QRCode." -#: flatcamGUI/PreferencesUI.py:5935 flatcamTools/ToolQRCode.py:162 +#: flatcamGUI/PreferencesUI.py:5953 flatcamTools/ToolQRCode.py:162 msgid "QRCode Data" msgstr "QRCode Data" -#: flatcamGUI/PreferencesUI.py:5937 flatcamTools/ToolQRCode.py:164 +#: flatcamGUI/PreferencesUI.py:5955 flatcamTools/ToolQRCode.py:164 msgid "QRCode Data. Alphanumeric text to be encoded in the QRCode." msgstr "QRCode Data. Alphanumeric text to be encoded in the QRCode." -#: flatcamGUI/PreferencesUI.py:5941 flatcamTools/ToolQRCode.py:168 +#: flatcamGUI/PreferencesUI.py:5959 flatcamTools/ToolQRCode.py:168 msgid "Add here the text to be included in the QRCode..." msgstr "Add here the text to be included in the QRCode..." -#: flatcamGUI/PreferencesUI.py:5947 flatcamTools/ToolQRCode.py:174 +#: flatcamGUI/PreferencesUI.py:5965 flatcamTools/ToolQRCode.py:174 msgid "Polarity" msgstr "Polarity" -#: flatcamGUI/PreferencesUI.py:5949 flatcamTools/ToolQRCode.py:176 +#: flatcamGUI/PreferencesUI.py:5967 flatcamTools/ToolQRCode.py:176 msgid "" "Choose the polarity of the QRCode.\n" "It can be drawn in a negative way (squares are clear)\n" @@ -11806,17 +11889,17 @@ msgstr "" "It can be drawn in a negative way (squares are clear)\n" "or in a positive way (squares are opaque)." -#: flatcamGUI/PreferencesUI.py:5953 flatcamTools/ToolFilm.py:296 +#: flatcamGUI/PreferencesUI.py:5971 flatcamTools/ToolFilm.py:296 #: flatcamTools/ToolQRCode.py:180 msgid "Negative" msgstr "Negative" -#: flatcamGUI/PreferencesUI.py:5954 flatcamTools/ToolFilm.py:295 +#: flatcamGUI/PreferencesUI.py:5972 flatcamTools/ToolFilm.py:295 #: flatcamTools/ToolQRCode.py:181 msgid "Positive" msgstr "Positive" -#: flatcamGUI/PreferencesUI.py:5956 flatcamTools/ToolQRCode.py:183 +#: flatcamGUI/PreferencesUI.py:5974 flatcamTools/ToolQRCode.py:183 msgid "" "Choose the type of QRCode to be created.\n" "If added on a Silkscreen Gerber file the QRCode may\n" @@ -11828,7 +11911,7 @@ msgstr "" "be added as positive. If it is added to a Copper Gerber\n" "file then perhaps the QRCode can be added as negative." -#: flatcamGUI/PreferencesUI.py:5967 flatcamGUI/PreferencesUI.py:5973 +#: flatcamGUI/PreferencesUI.py:5985 flatcamGUI/PreferencesUI.py:5991 #: flatcamTools/ToolQRCode.py:194 flatcamTools/ToolQRCode.py:200 msgid "" "The bounding box, meaning the empty space that surrounds\n" @@ -11837,31 +11920,31 @@ msgstr "" "The bounding box, meaning the empty space that surrounds\n" "the QRCode geometry, can have a rounded or a square shape." -#: flatcamGUI/PreferencesUI.py:5970 flatcamTools/ToolQRCode.py:197 +#: flatcamGUI/PreferencesUI.py:5988 flatcamTools/ToolQRCode.py:197 msgid "Rounded" msgstr "Rounded" -#: flatcamGUI/PreferencesUI.py:5980 flatcamTools/ToolQRCode.py:228 +#: flatcamGUI/PreferencesUI.py:5998 flatcamTools/ToolQRCode.py:228 msgid "Fill Color" msgstr "Fill Color" -#: flatcamGUI/PreferencesUI.py:5982 flatcamTools/ToolQRCode.py:230 +#: flatcamGUI/PreferencesUI.py:6000 flatcamTools/ToolQRCode.py:230 msgid "Set the QRCode fill color (squares color)." msgstr "Set the QRCode fill color (squares color)." -#: flatcamGUI/PreferencesUI.py:6001 flatcamTools/ToolQRCode.py:252 +#: flatcamGUI/PreferencesUI.py:6019 flatcamTools/ToolQRCode.py:252 msgid "Back Color" msgstr "Back Color" -#: flatcamGUI/PreferencesUI.py:6003 flatcamTools/ToolQRCode.py:254 +#: flatcamGUI/PreferencesUI.py:6021 flatcamTools/ToolQRCode.py:254 msgid "Set the QRCode background color." msgstr "Set the QRCode background color." -#: flatcamGUI/PreferencesUI.py:6043 +#: flatcamGUI/PreferencesUI.py:6061 msgid "Copper Thieving Tool Options" msgstr "Copper Thieving Tool Options" -#: flatcamGUI/PreferencesUI.py:6055 +#: flatcamGUI/PreferencesUI.py:6073 msgid "" "A tool to generate a Copper Thieving that can be added\n" "to a selected Gerber file." @@ -11869,16 +11952,16 @@ msgstr "" "A tool to generate a Copper Thieving that can be added\n" "to a selected Gerber file." -#: flatcamGUI/PreferencesUI.py:6063 +#: flatcamGUI/PreferencesUI.py:6081 msgid "Number of steps (lines) used to interpolate circles." msgstr "Number of steps (lines) used to interpolate circles." -#: flatcamGUI/PreferencesUI.py:6073 flatcamGUI/PreferencesUI.py:6277 +#: flatcamGUI/PreferencesUI.py:6091 flatcamGUI/PreferencesUI.py:6295 #: flatcamTools/ToolCopperThieving.py:96 flatcamTools/ToolCopperThieving.py:429 msgid "Clearance" msgstr "Clearance" -#: flatcamGUI/PreferencesUI.py:6075 +#: flatcamGUI/PreferencesUI.py:6093 msgid "" "This set the distance between the copper Thieving components\n" "(the polygon fill may be split in multiple polygons)\n" @@ -11888,22 +11971,22 @@ msgstr "" "(the polygon fill may be split in multiple polygons)\n" "and the copper traces in the Gerber file." -#: flatcamGUI/PreferencesUI.py:6103 flatcamTools/ToolCopperThieving.py:126 +#: flatcamGUI/PreferencesUI.py:6121 flatcamTools/ToolCopperThieving.py:126 #: flatcamTools/ToolNonCopperClear.py:436 flatcamTools/ToolPaint.py:314 msgid "Area Selection" msgstr "Area Selection" -#: flatcamGUI/PreferencesUI.py:6104 flatcamTools/ToolCopperThieving.py:127 +#: flatcamGUI/PreferencesUI.py:6122 flatcamTools/ToolCopperThieving.py:127 #: flatcamTools/ToolNonCopperClear.py:437 flatcamTools/ToolPaint.py:316 msgid "Reference Object" msgstr "Reference Object" -#: flatcamGUI/PreferencesUI.py:6106 flatcamTools/ToolCopperThieving.py:129 +#: flatcamGUI/PreferencesUI.py:6124 flatcamTools/ToolCopperThieving.py:129 #: flatcamTools/ToolNonCopperClear.py:439 msgid "Reference:" msgstr "Reference:" -#: flatcamGUI/PreferencesUI.py:6108 +#: flatcamGUI/PreferencesUI.py:6126 msgid "" "- 'Itself' - the copper Thieving extent is based on the object that is " "copper cleared.\n" @@ -11919,20 +12002,20 @@ msgstr "" "- 'Reference Object' - will do copper thieving within the area specified by " "another object." -#: flatcamGUI/PreferencesUI.py:6117 flatcamTools/ToolCopperThieving.py:170 +#: flatcamGUI/PreferencesUI.py:6135 flatcamTools/ToolCopperThieving.py:170 msgid "Rectangular" msgstr "Rectangular" -#: flatcamGUI/PreferencesUI.py:6118 flatcamTools/ToolCopperThieving.py:171 +#: flatcamGUI/PreferencesUI.py:6136 flatcamTools/ToolCopperThieving.py:171 msgid "Minimal" msgstr "Minimal" -#: flatcamGUI/PreferencesUI.py:6120 flatcamTools/ToolCopperThieving.py:173 +#: flatcamGUI/PreferencesUI.py:6138 flatcamTools/ToolCopperThieving.py:173 #: flatcamTools/ToolFilm.py:113 msgid "Box Type:" msgstr "Box Type:" -#: flatcamGUI/PreferencesUI.py:6122 +#: flatcamGUI/PreferencesUI.py:6140 msgid "" "- 'Rectangular' - the bounding box will be of rectangular shape.\n" " - 'Minimal' - the bounding box will be the convex hull shape." @@ -11940,23 +12023,23 @@ msgstr "" "- 'Rectangular' - the bounding box will be of rectangular shape.\n" " - 'Minimal' - the bounding box will be the convex hull shape." -#: flatcamGUI/PreferencesUI.py:6136 flatcamTools/ToolCopperThieving.py:191 +#: flatcamGUI/PreferencesUI.py:6154 flatcamTools/ToolCopperThieving.py:191 msgid "Dots Grid" msgstr "Dots Grid" -#: flatcamGUI/PreferencesUI.py:6137 flatcamTools/ToolCopperThieving.py:192 +#: flatcamGUI/PreferencesUI.py:6155 flatcamTools/ToolCopperThieving.py:192 msgid "Squares Grid" msgstr "Squares Grid" -#: flatcamGUI/PreferencesUI.py:6138 flatcamTools/ToolCopperThieving.py:193 +#: flatcamGUI/PreferencesUI.py:6156 flatcamTools/ToolCopperThieving.py:193 msgid "Lines Grid" msgstr "Lines Grid" -#: flatcamGUI/PreferencesUI.py:6140 flatcamTools/ToolCopperThieving.py:195 +#: flatcamGUI/PreferencesUI.py:6158 flatcamTools/ToolCopperThieving.py:195 msgid "Fill Type:" msgstr "Fill Type:" -#: flatcamGUI/PreferencesUI.py:6142 +#: flatcamGUI/PreferencesUI.py:6160 msgid "" "- 'Solid' - copper thieving will be a solid polygon.\n" " - 'Dots Grid' - the empty area will be filled with a pattern of dots.\n" @@ -11968,54 +12051,54 @@ msgstr "" "- 'Squares Grid' - the empty area will be filled with a pattern of squares.\n" "- 'Lines Grid' - the empty area will be filled with a pattern of lines." -#: flatcamGUI/PreferencesUI.py:6150 flatcamTools/ToolCopperThieving.py:216 +#: flatcamGUI/PreferencesUI.py:6168 flatcamTools/ToolCopperThieving.py:216 msgid "Dots Grid Parameters" msgstr "Dots Grid Parameters" -#: flatcamGUI/PreferencesUI.py:6156 flatcamTools/ToolCopperThieving.py:222 +#: flatcamGUI/PreferencesUI.py:6174 flatcamTools/ToolCopperThieving.py:222 msgid "Dot diameter in Dots Grid." msgstr "Dot diameter in Dots Grid." -#: flatcamGUI/PreferencesUI.py:6167 flatcamGUI/PreferencesUI.py:6196 -#: flatcamGUI/PreferencesUI.py:6225 flatcamTools/ToolCopperThieving.py:233 +#: flatcamGUI/PreferencesUI.py:6185 flatcamGUI/PreferencesUI.py:6214 +#: flatcamGUI/PreferencesUI.py:6243 flatcamTools/ToolCopperThieving.py:233 #: flatcamTools/ToolCopperThieving.py:273 #: flatcamTools/ToolCopperThieving.py:313 msgid "Spacing" msgstr "Spacing" -#: flatcamGUI/PreferencesUI.py:6169 flatcamTools/ToolCopperThieving.py:235 +#: flatcamGUI/PreferencesUI.py:6187 flatcamTools/ToolCopperThieving.py:235 msgid "Distance between each two dots in Dots Grid." msgstr "Distance between each two dots in Dots Grid." -#: flatcamGUI/PreferencesUI.py:6179 flatcamTools/ToolCopperThieving.py:256 +#: flatcamGUI/PreferencesUI.py:6197 flatcamTools/ToolCopperThieving.py:256 msgid "Squares Grid Parameters" msgstr "Squares Grid Parameters" -#: flatcamGUI/PreferencesUI.py:6185 flatcamTools/ToolCopperThieving.py:262 +#: flatcamGUI/PreferencesUI.py:6203 flatcamTools/ToolCopperThieving.py:262 msgid "Square side size in Squares Grid." msgstr "Square side size in Squares Grid." -#: flatcamGUI/PreferencesUI.py:6198 flatcamTools/ToolCopperThieving.py:275 +#: flatcamGUI/PreferencesUI.py:6216 flatcamTools/ToolCopperThieving.py:275 msgid "Distance between each two squares in Squares Grid." msgstr "Distance between each two squares in Squares Grid." -#: flatcamGUI/PreferencesUI.py:6208 flatcamTools/ToolCopperThieving.py:296 +#: flatcamGUI/PreferencesUI.py:6226 flatcamTools/ToolCopperThieving.py:296 msgid "Lines Grid Parameters" msgstr "Lines Grid Parameters" -#: flatcamGUI/PreferencesUI.py:6214 flatcamTools/ToolCopperThieving.py:302 +#: flatcamGUI/PreferencesUI.py:6232 flatcamTools/ToolCopperThieving.py:302 msgid "Line thickness size in Lines Grid." msgstr "Line thickness size in Lines Grid." -#: flatcamGUI/PreferencesUI.py:6227 flatcamTools/ToolCopperThieving.py:315 +#: flatcamGUI/PreferencesUI.py:6245 flatcamTools/ToolCopperThieving.py:315 msgid "Distance between each two lines in Lines Grid." msgstr "Distance between each two lines in Lines Grid." -#: flatcamGUI/PreferencesUI.py:6237 flatcamTools/ToolCopperThieving.py:353 +#: flatcamGUI/PreferencesUI.py:6255 flatcamTools/ToolCopperThieving.py:353 msgid "Robber Bar Parameters" msgstr "Robber Bar Parameters" -#: flatcamGUI/PreferencesUI.py:6239 flatcamTools/ToolCopperThieving.py:355 +#: flatcamGUI/PreferencesUI.py:6257 flatcamTools/ToolCopperThieving.py:355 msgid "" "Parameters used for the robber bar.\n" "Robber bar = copper border to help in pattern hole plating." @@ -12023,27 +12106,27 @@ msgstr "" "Parameters used for the robber bar.\n" "Robber bar = copper border to help in pattern hole plating." -#: flatcamGUI/PreferencesUI.py:6247 flatcamTools/ToolCopperThieving.py:363 +#: flatcamGUI/PreferencesUI.py:6265 flatcamTools/ToolCopperThieving.py:363 msgid "Bounding box margin for robber bar." msgstr "Bounding box margin for robber bar." -#: flatcamGUI/PreferencesUI.py:6258 flatcamTools/ToolCopperThieving.py:374 +#: flatcamGUI/PreferencesUI.py:6276 flatcamTools/ToolCopperThieving.py:374 msgid "Thickness" msgstr "Thickness" -#: flatcamGUI/PreferencesUI.py:6260 flatcamTools/ToolCopperThieving.py:376 +#: flatcamGUI/PreferencesUI.py:6278 flatcamTools/ToolCopperThieving.py:376 msgid "The robber bar thickness." msgstr "The robber bar thickness." -#: flatcamGUI/PreferencesUI.py:6270 flatcamTools/ToolCopperThieving.py:407 +#: flatcamGUI/PreferencesUI.py:6288 flatcamTools/ToolCopperThieving.py:407 msgid "Pattern Plating Mask" msgstr "Pattern Plating Mask" -#: flatcamGUI/PreferencesUI.py:6272 flatcamTools/ToolCopperThieving.py:409 +#: flatcamGUI/PreferencesUI.py:6290 flatcamTools/ToolCopperThieving.py:409 msgid "Generate a mask for pattern plating." msgstr "Generate a mask for pattern plating." -#: flatcamGUI/PreferencesUI.py:6279 flatcamTools/ToolCopperThieving.py:431 +#: flatcamGUI/PreferencesUI.py:6297 flatcamTools/ToolCopperThieving.py:431 msgid "" "The distance between the possible copper thieving elements\n" "and/or robber bar and the actual openings in the mask." @@ -12051,17 +12134,16 @@ msgstr "" "The distance between the possible copper thieving elements\n" "and/or robber bar and the actual openings in the mask." -#: flatcamGUI/PreferencesUI.py:6298 -#| msgid "Fiducials Tools Options" +#: flatcamGUI/PreferencesUI.py:6316 msgid "Fiducials Tool Options" msgstr "Fiducials Tool Options" -#: flatcamGUI/PreferencesUI.py:6309 flatcamGUI/PreferencesUI.py:6425 +#: flatcamGUI/PreferencesUI.py:6327 flatcamGUI/PreferencesUI.py:6443 #: flatcamTools/ToolCopperThieving.py:91 flatcamTools/ToolFiducials.py:151 msgid "Parameters used for this tool." msgstr "Parameters used for this tool." -#: flatcamGUI/PreferencesUI.py:6316 flatcamTools/ToolFiducials.py:158 +#: flatcamGUI/PreferencesUI.py:6334 flatcamTools/ToolFiducials.py:158 msgid "" "This set the fiducial diameter if fiducial type is circular,\n" "otherwise is the size of the fiducial.\n" @@ -12071,19 +12153,19 @@ msgstr "" "otherwise is the size of the fiducial.\n" "The soldermask opening is double than that." -#: flatcamGUI/PreferencesUI.py:6344 flatcamTools/ToolFiducials.py:186 +#: flatcamGUI/PreferencesUI.py:6362 flatcamTools/ToolFiducials.py:186 msgid "Auto" msgstr "Auto" -#: flatcamGUI/PreferencesUI.py:6345 flatcamTools/ToolFiducials.py:187 +#: flatcamGUI/PreferencesUI.py:6363 flatcamTools/ToolFiducials.py:187 msgid "Manual" msgstr "Manual" -#: flatcamGUI/PreferencesUI.py:6347 flatcamTools/ToolFiducials.py:189 +#: flatcamGUI/PreferencesUI.py:6365 flatcamTools/ToolFiducials.py:189 msgid "Mode:" msgstr "Mode:" -#: flatcamGUI/PreferencesUI.py:6349 flatcamTools/ToolFiducials.py:191 +#: flatcamGUI/PreferencesUI.py:6367 flatcamTools/ToolFiducials.py:191 msgid "" "- 'Auto' - automatic placement of fiducials in the corners of the bounding " "box.\n" @@ -12093,19 +12175,19 @@ msgstr "" "box.\n" " - 'Manual' - manual placement of fiducials." -#: flatcamGUI/PreferencesUI.py:6357 flatcamTools/ToolFiducials.py:199 +#: flatcamGUI/PreferencesUI.py:6375 flatcamTools/ToolFiducials.py:199 msgid "Up" msgstr "Up" -#: flatcamGUI/PreferencesUI.py:6358 flatcamTools/ToolFiducials.py:200 +#: flatcamGUI/PreferencesUI.py:6376 flatcamTools/ToolFiducials.py:200 msgid "Down" msgstr "Down" -#: flatcamGUI/PreferencesUI.py:6361 flatcamTools/ToolFiducials.py:203 +#: flatcamGUI/PreferencesUI.py:6379 flatcamTools/ToolFiducials.py:203 msgid "Second fiducial" msgstr "Second fiducial" -#: flatcamGUI/PreferencesUI.py:6363 flatcamTools/ToolFiducials.py:205 +#: flatcamGUI/PreferencesUI.py:6381 flatcamTools/ToolFiducials.py:205 msgid "" "The position for the second fiducial.\n" "- 'Up' - the order is: bottom-left, top-left, top-right.\n" @@ -12117,19 +12199,19 @@ msgstr "" " - 'Down' - the order is: bottom-left, bottom-right, top-right.\n" "- 'None' - there is no second fiducial. The order is: bottom-left, top-right." -#: flatcamGUI/PreferencesUI.py:6379 flatcamTools/ToolFiducials.py:221 +#: flatcamGUI/PreferencesUI.py:6397 flatcamTools/ToolFiducials.py:221 msgid "Cross" msgstr "Cross" -#: flatcamGUI/PreferencesUI.py:6380 flatcamTools/ToolFiducials.py:222 +#: flatcamGUI/PreferencesUI.py:6398 flatcamTools/ToolFiducials.py:222 msgid "Chess" msgstr "Chess" -#: flatcamGUI/PreferencesUI.py:6383 flatcamTools/ToolFiducials.py:224 +#: flatcamGUI/PreferencesUI.py:6401 flatcamTools/ToolFiducials.py:224 msgid "Fiducial Type" msgstr "Fiducial Type" -#: flatcamGUI/PreferencesUI.py:6385 flatcamTools/ToolFiducials.py:226 +#: flatcamGUI/PreferencesUI.py:6403 flatcamTools/ToolFiducials.py:226 msgid "" "The type of fiducial.\n" "- 'Circular' - this is the regular fiducial.\n" @@ -12141,21 +12223,19 @@ msgstr "" "- 'Cross' - cross lines fiducial.\n" "- 'Chess' - chess pattern fiducial." -#: flatcamGUI/PreferencesUI.py:6394 flatcamTools/ToolFiducials.py:235 +#: flatcamGUI/PreferencesUI.py:6412 flatcamTools/ToolFiducials.py:235 msgid "Line thickness" msgstr "Line thickness" -#: flatcamGUI/PreferencesUI.py:6414 -#| msgid "Calculators Tool Options" +#: flatcamGUI/PreferencesUI.py:6432 msgid "Calibration Tool Options" msgstr "Calibration Tool Options" -#: flatcamGUI/PreferencesUI.py:6430 flatcamTools/ToolCalibration.py:74 -#| msgid "Source" +#: flatcamGUI/PreferencesUI.py:6448 flatcamTools/ToolCalibration.py:181 msgid "Source Type" msgstr "Source Type" -#: flatcamGUI/PreferencesUI.py:6431 flatcamTools/ToolCalibration.py:75 +#: flatcamGUI/PreferencesUI.py:6449 flatcamTools/ToolCalibration.py:182 msgid "" "The source of calibration points.\n" "It can be:\n" @@ -12167,28 +12247,27 @@ msgstr "" "- Object -> click a hole geo for Excellon or a pad for Gerber\n" "- Free -> click freely on canvas to acquire the calibration points" -#: flatcamGUI/PreferencesUI.py:6436 flatcamTools/ToolCalibration.py:80 -#| msgid "FreeForm" +#: flatcamGUI/PreferencesUI.py:6454 flatcamTools/ToolCalibration.py:187 msgid "Free" msgstr "Free" -#: flatcamGUI/PreferencesUI.py:6450 flatcamTools/ToolCalibration.py:297 +#: flatcamGUI/PreferencesUI.py:6468 flatcamTools/ToolCalibration.py:76 msgid "Height (Z) for travelling between the points." msgstr "Height (Z) for travelling between the points." -#: flatcamGUI/PreferencesUI.py:6462 flatcamTools/ToolCalibration.py:309 +#: flatcamGUI/PreferencesUI.py:6480 flatcamTools/ToolCalibration.py:88 msgid "Verification Z" msgstr "Verification Z" -#: flatcamGUI/PreferencesUI.py:6464 flatcamTools/ToolCalibration.py:311 +#: flatcamGUI/PreferencesUI.py:6482 flatcamTools/ToolCalibration.py:90 msgid "Height (Z) for checking the point." msgstr "Height (Z) for checking the point." -#: flatcamGUI/PreferencesUI.py:6476 flatcamTools/ToolCalibration.py:323 +#: flatcamGUI/PreferencesUI.py:6494 flatcamTools/ToolCalibration.py:102 msgid "Zero Z tool" msgstr "Zero Z tool" -#: flatcamGUI/PreferencesUI.py:6478 flatcamTools/ToolCalibration.py:325 +#: flatcamGUI/PreferencesUI.py:6496 flatcamTools/ToolCalibration.py:104 msgid "" "Include a sequence to zero the height (Z)\n" "of the verification tool." @@ -12196,41 +12275,76 @@ msgstr "" "Include a sequence to zero the height (Z)\n" "of the verification tool." -#: flatcamGUI/PreferencesUI.py:6487 flatcamTools/ToolCalibration.py:334 +#: flatcamGUI/PreferencesUI.py:6505 flatcamTools/ToolCalibration.py:113 msgid "Height (Z) for mounting the verification probe." msgstr "Height (Z) for mounting the verification probe." -#: flatcamGUI/PreferencesUI.py:6506 +#: flatcamGUI/PreferencesUI.py:6519 flatcamTools/ToolCalibration.py:127 +msgid "" +"Toolchange X,Y position.\n" +"If no value is entered then the current\n" +"(x, y) point will be used," +msgstr "" +"Toolchange X,Y position.\n" +"If no value is entered then the current\n" +"(x, y) point will be used," + +#: flatcamGUI/PreferencesUI.py:6530 flatcamTools/ToolCalibration.py:153 +#| msgid "Second Point" +msgid "Second point" +msgstr "Second point" + +#: flatcamGUI/PreferencesUI.py:6532 flatcamTools/ToolCalibration.py:155 +msgid "" +"Second point in the Gcode verification can be:\n" +"- top-left -> the user will align the PCB vertically\n" +"- bottom-right -> the user will align the PCB horizontally" +msgstr "" +"Second point in the Gcode verification can be:\n" +"- top-left -> the user will align the PCB vertically\n" +"- bottom-right -> the user will align the PCB horizontally" + +#: flatcamGUI/PreferencesUI.py:6536 flatcamTools/ToolCalibration.py:159 +#| msgid "Top Left" +msgid "Top-Left" +msgstr "Top-Left" + +#: flatcamGUI/PreferencesUI.py:6537 flatcamTools/ToolCalibration.py:160 +#| msgid "Bottom Right" +msgid "Bottom-Right" +msgstr "Bottom-Right" + +#: flatcamGUI/PreferencesUI.py:6551 msgid "Excellon File associations" msgstr "Excellon File associations" -#: flatcamGUI/PreferencesUI.py:6519 flatcamGUI/PreferencesUI.py:6592 -#: flatcamGUI/PreferencesUI.py:6662 flatcamGUI/PreferencesUI.py:6732 +#: flatcamGUI/PreferencesUI.py:6564 flatcamGUI/PreferencesUI.py:6637 +#: flatcamGUI/PreferencesUI.py:6707 flatcamGUI/PreferencesUI.py:6777 msgid "Restore" msgstr "Restore" -#: flatcamGUI/PreferencesUI.py:6520 flatcamGUI/PreferencesUI.py:6593 -#: flatcamGUI/PreferencesUI.py:6663 +#: flatcamGUI/PreferencesUI.py:6565 flatcamGUI/PreferencesUI.py:6638 +#: flatcamGUI/PreferencesUI.py:6708 msgid "Restore the extension list to the default state." msgstr "Restore the extension list to the default state." -#: flatcamGUI/PreferencesUI.py:6521 flatcamGUI/PreferencesUI.py:6594 -#: flatcamGUI/PreferencesUI.py:6664 flatcamGUI/PreferencesUI.py:6734 +#: flatcamGUI/PreferencesUI.py:6566 flatcamGUI/PreferencesUI.py:6639 +#: flatcamGUI/PreferencesUI.py:6709 flatcamGUI/PreferencesUI.py:6779 msgid "Delete All" msgstr "Delete All" -#: flatcamGUI/PreferencesUI.py:6522 flatcamGUI/PreferencesUI.py:6595 -#: flatcamGUI/PreferencesUI.py:6665 +#: flatcamGUI/PreferencesUI.py:6567 flatcamGUI/PreferencesUI.py:6640 +#: flatcamGUI/PreferencesUI.py:6710 msgid "Delete all extensions from the list." msgstr "Delete all extensions from the list." -#: flatcamGUI/PreferencesUI.py:6530 flatcamGUI/PreferencesUI.py:6603 -#: flatcamGUI/PreferencesUI.py:6673 +#: flatcamGUI/PreferencesUI.py:6575 flatcamGUI/PreferencesUI.py:6648 +#: flatcamGUI/PreferencesUI.py:6718 msgid "Extensions list" msgstr "Extensions list" -#: flatcamGUI/PreferencesUI.py:6532 flatcamGUI/PreferencesUI.py:6605 -#: flatcamGUI/PreferencesUI.py:6675 +#: flatcamGUI/PreferencesUI.py:6577 flatcamGUI/PreferencesUI.py:6650 +#: flatcamGUI/PreferencesUI.py:6720 msgid "" "List of file extensions to be\n" "associated with FlatCAM." @@ -12238,43 +12352,43 @@ msgstr "" "List of file extensions to be\n" "associated with FlatCAM." -#: flatcamGUI/PreferencesUI.py:6552 flatcamGUI/PreferencesUI.py:6625 -#: flatcamGUI/PreferencesUI.py:6694 flatcamGUI/PreferencesUI.py:6766 +#: flatcamGUI/PreferencesUI.py:6597 flatcamGUI/PreferencesUI.py:6670 +#: flatcamGUI/PreferencesUI.py:6739 flatcamGUI/PreferencesUI.py:6811 msgid "Extension" msgstr "Extension" -#: flatcamGUI/PreferencesUI.py:6553 flatcamGUI/PreferencesUI.py:6626 -#: flatcamGUI/PreferencesUI.py:6695 +#: flatcamGUI/PreferencesUI.py:6598 flatcamGUI/PreferencesUI.py:6671 +#: flatcamGUI/PreferencesUI.py:6740 msgid "A file extension to be added or deleted to the list." msgstr "A file extension to be added or deleted to the list." -#: flatcamGUI/PreferencesUI.py:6561 flatcamGUI/PreferencesUI.py:6634 -#: flatcamGUI/PreferencesUI.py:6703 +#: flatcamGUI/PreferencesUI.py:6606 flatcamGUI/PreferencesUI.py:6679 +#: flatcamGUI/PreferencesUI.py:6748 msgid "Add Extension" msgstr "Add Extension" -#: flatcamGUI/PreferencesUI.py:6562 flatcamGUI/PreferencesUI.py:6635 -#: flatcamGUI/PreferencesUI.py:6704 +#: flatcamGUI/PreferencesUI.py:6607 flatcamGUI/PreferencesUI.py:6680 +#: flatcamGUI/PreferencesUI.py:6749 msgid "Add a file extension to the list" msgstr "Add a file extension to the list" -#: flatcamGUI/PreferencesUI.py:6563 flatcamGUI/PreferencesUI.py:6636 -#: flatcamGUI/PreferencesUI.py:6705 +#: flatcamGUI/PreferencesUI.py:6608 flatcamGUI/PreferencesUI.py:6681 +#: flatcamGUI/PreferencesUI.py:6750 msgid "Delete Extension" msgstr "Delete Extension" -#: flatcamGUI/PreferencesUI.py:6564 flatcamGUI/PreferencesUI.py:6637 -#: flatcamGUI/PreferencesUI.py:6706 +#: flatcamGUI/PreferencesUI.py:6609 flatcamGUI/PreferencesUI.py:6682 +#: flatcamGUI/PreferencesUI.py:6751 msgid "Delete a file extension from the list" msgstr "Delete a file extension from the list" -#: flatcamGUI/PreferencesUI.py:6571 flatcamGUI/PreferencesUI.py:6644 -#: flatcamGUI/PreferencesUI.py:6713 +#: flatcamGUI/PreferencesUI.py:6616 flatcamGUI/PreferencesUI.py:6689 +#: flatcamGUI/PreferencesUI.py:6758 msgid "Apply Association" msgstr "Apply Association" -#: flatcamGUI/PreferencesUI.py:6572 flatcamGUI/PreferencesUI.py:6645 -#: flatcamGUI/PreferencesUI.py:6714 +#: flatcamGUI/PreferencesUI.py:6617 flatcamGUI/PreferencesUI.py:6690 +#: flatcamGUI/PreferencesUI.py:6759 msgid "" "Apply the file associations between\n" "FlatCAM and the files with above extensions.\n" @@ -12286,31 +12400,31 @@ msgstr "" "They will be active after next logon.\n" "This work only in Windows." -#: flatcamGUI/PreferencesUI.py:6589 +#: flatcamGUI/PreferencesUI.py:6634 msgid "GCode File associations" msgstr "GCode File associations" -#: flatcamGUI/PreferencesUI.py:6659 +#: flatcamGUI/PreferencesUI.py:6704 msgid "Gerber File associations" msgstr "Gerber File associations" -#: flatcamGUI/PreferencesUI.py:6729 +#: flatcamGUI/PreferencesUI.py:6774 msgid "Autocompleter Keywords" msgstr "Autocompleter Keywords" -#: flatcamGUI/PreferencesUI.py:6733 +#: flatcamGUI/PreferencesUI.py:6778 msgid "Restore the autocompleter keywords list to the default state." msgstr "Restore the autocompleter keywords list to the default state." -#: flatcamGUI/PreferencesUI.py:6735 +#: flatcamGUI/PreferencesUI.py:6780 msgid "Delete all autocompleter keywords from the list." msgstr "Delete all autocompleter keywords from the list." -#: flatcamGUI/PreferencesUI.py:6743 +#: flatcamGUI/PreferencesUI.py:6788 msgid "Keywords list" msgstr "Keywords list" -#: flatcamGUI/PreferencesUI.py:6745 +#: flatcamGUI/PreferencesUI.py:6790 msgid "" "List of keywords used by\n" "the autocompleter in FlatCAM.\n" @@ -12322,23 +12436,23 @@ msgstr "" "The autocompleter is installed\n" "in the Code Editor and for the Tcl Shell." -#: flatcamGUI/PreferencesUI.py:6767 +#: flatcamGUI/PreferencesUI.py:6812 msgid "A keyword to be added or deleted to the list." msgstr "A keyword to be added or deleted to the list." -#: flatcamGUI/PreferencesUI.py:6775 +#: flatcamGUI/PreferencesUI.py:6820 msgid "Add keyword" msgstr "Add keyword" -#: flatcamGUI/PreferencesUI.py:6776 +#: flatcamGUI/PreferencesUI.py:6821 msgid "Add a keyword to the list" msgstr "Add a keyword to the list" -#: flatcamGUI/PreferencesUI.py:6777 +#: flatcamGUI/PreferencesUI.py:6822 msgid "Delete keyword" msgstr "Delete keyword" -#: flatcamGUI/PreferencesUI.py:6778 +#: flatcamGUI/PreferencesUI.py:6823 msgid "Delete a keyword from the list" msgstr "Delete a keyword from the list" @@ -12395,11 +12509,14 @@ msgstr "Font not supported, try another one." msgid "Gerber processing. Parsing" msgstr "Gerber processing. Parsing" -#: flatcamParsers/ParseGerber.py:424 +#: flatcamParsers/ParseGerber.py:424 flatcamParsers/ParseHPGL2.py:176 msgid "lines" msgstr "lines" #: flatcamParsers/ParseGerber.py:953 flatcamParsers/ParseGerber.py:1048 +#: flatcamParsers/ParseHPGL2.py:269 flatcamParsers/ParseHPGL2.py:283 +#: flatcamParsers/ParseHPGL2.py:302 flatcamParsers/ParseHPGL2.py:326 +#: flatcamParsers/ParseHPGL2.py:361 msgid "Coordinates missing, line ignored" msgstr "Coordinates missing, line ignored" @@ -12415,7 +12532,7 @@ msgstr "" "Region does not have enough points. File will be processed but there are " "parser errors. Line number" -#: flatcamParsers/ParseGerber.py:1395 +#: flatcamParsers/ParseGerber.py:1395 flatcamParsers/ParseHPGL2.py:396 msgid "Gerber processing. Joining polygons" msgstr "Gerber processing. Joining polygons" @@ -12455,6 +12572,26 @@ msgstr "Gerber Skew done." msgid "Gerber Rotate done." msgstr "Gerber Rotate done." +#: flatcamParsers/ParseHPGL2.py:176 +#| msgid "Gerber processing. Parsing" +msgid "HPGL2 processing. Parsing" +msgstr "HPGL2 processing. Parsing" + +#: flatcamParsers/ParseHPGL2.py:408 +#| msgid "Plot Line" +msgid "HPGL2 Line" +msgstr "HPGL2 Line" + +#: flatcamParsers/ParseHPGL2.py:408 +#| msgid "Gerber Line Content" +msgid "HPGL2 Line Content" +msgstr "HPGL2 Line Content" + +#: flatcamParsers/ParseHPGL2.py:409 +#| msgid "Gerber Parser ERROR" +msgid "HPGL2 Parser ERROR" +msgstr "HPGL2 Parser ERROR" + #: flatcamTools/ToolCalculators.py:24 msgid "Calculators" msgstr "Calculators" @@ -12545,17 +12682,19 @@ msgstr "" msgid "Calc. Tool" msgstr "Calc. Tool" -#: flatcamTools/ToolCalibration.py:36 -#| msgid "Calibration Points" -msgid "Calibration Tool" -msgstr "Calibration Tool" +#: flatcamTools/ToolCalibration.py:67 +msgid "GCode Parameters" +msgstr "GCode Parameters" -#: flatcamTools/ToolCalibration.py:66 -#| msgid "Acquire Calibration Points" +#: flatcamTools/ToolCalibration.py:69 +msgid "Parameters used when creating the GCode in this tool." +msgstr "Parameters used when creating the GCode in this tool." + +#: flatcamTools/ToolCalibration.py:173 msgid "STEP 1: Acquire Calibration Points" msgstr "STEP 1: Acquire Calibration Points" -#: flatcamTools/ToolCalibration.py:68 +#: flatcamTools/ToolCalibration.py:175 msgid "" "Pick four points by clicking inside the drill holes.\n" "Those four points should be in the four\n" @@ -12565,27 +12704,25 @@ msgstr "" "Those four points should be in the four\n" "(as much as possible) corners of the Excellon object." -#: flatcamTools/ToolCalibration.py:86 flatcamTools/ToolCutOut.py:80 +#: flatcamTools/ToolCalibration.py:193 flatcamTools/ToolCutOut.py:80 #: flatcamTools/ToolFilm.py:78 flatcamTools/ToolImage.py:55 #: flatcamTools/ToolPanelize.py:66 flatcamTools/ToolProperties.py:169 msgid "Object Type" msgstr "Object Type" -#: flatcamTools/ToolCalibration.py:101 -#| msgid "No object selected." +#: flatcamTools/ToolCalibration.py:211 msgid "Source object selection" msgstr "Source object selection" -#: flatcamTools/ToolCalibration.py:103 -#| msgid "Excellon Object to be used as a source for reference points." +#: flatcamTools/ToolCalibration.py:213 msgid "FlatCAM Object to be used as a source for reference points." msgstr "FlatCAM Object to be used as a source for reference points." -#: flatcamTools/ToolCalibration.py:109 +#: flatcamTools/ToolCalibration.py:219 msgid "Calibration Points" msgstr "Calibration Points" -#: flatcamTools/ToolCalibration.py:111 +#: flatcamTools/ToolCalibration.py:221 msgid "" "Contain the expected calibration points and the\n" "ones measured." @@ -12593,61 +12730,56 @@ msgstr "" "Contain the expected calibration points and the\n" "ones measured." -#: flatcamTools/ToolCalibration.py:126 flatcamTools/ToolSub.py:74 +#: flatcamTools/ToolCalibration.py:236 flatcamTools/ToolSub.py:74 #: flatcamTools/ToolSub.py:126 msgid "Target" msgstr "Target" -#: flatcamTools/ToolCalibration.py:127 +#: flatcamTools/ToolCalibration.py:237 msgid "Found Delta" msgstr "Found Delta" -#: flatcamTools/ToolCalibration.py:139 +#: flatcamTools/ToolCalibration.py:249 msgid "Bot Left X" msgstr "Bot Left X" -#: flatcamTools/ToolCalibration.py:148 +#: flatcamTools/ToolCalibration.py:258 msgid "Bot Left Y" msgstr "Bot Left Y" -#: flatcamTools/ToolCalibration.py:156 flatcamTools/ToolCalibration.py:157 +#: flatcamTools/ToolCalibration.py:266 flatcamTools/ToolCalibration.py:267 msgid "Origin" msgstr "Origin" -#: flatcamTools/ToolCalibration.py:168 +#: flatcamTools/ToolCalibration.py:278 msgid "Bot Right X" msgstr "Bot Right X" -#: flatcamTools/ToolCalibration.py:178 +#: flatcamTools/ToolCalibration.py:288 msgid "Bot Right Y" msgstr "Bot Right Y" -#: flatcamTools/ToolCalibration.py:193 +#: flatcamTools/ToolCalibration.py:303 msgid "Top Left X" msgstr "Top Left X" -#: flatcamTools/ToolCalibration.py:202 +#: flatcamTools/ToolCalibration.py:312 msgid "Top Left Y" msgstr "Top Left Y" -#: flatcamTools/ToolCalibration.py:217 +#: flatcamTools/ToolCalibration.py:327 msgid "Top Right X" msgstr "Top Right X" -#: flatcamTools/ToolCalibration.py:226 +#: flatcamTools/ToolCalibration.py:337 msgid "Top Right Y" msgstr "Top Right Y" -#: flatcamTools/ToolCalibration.py:258 -#| msgid "Ref. Point" +#: flatcamTools/ToolCalibration.py:370 msgid "Get Points" msgstr "Get Points" -#: flatcamTools/ToolCalibration.py:260 -#| msgid "" -#| "Pick four points by clicking inside the drill holes.\n" -#| "Those four points should be in the four squares of\n" -#| "the Excellon object." +#: flatcamTools/ToolCalibration.py:372 msgid "" "Pick four points by clicking on canvas if the source choice\n" "is 'free' or inside the object geometry if the source is 'object'.\n" @@ -12659,37 +12791,37 @@ msgstr "" "Those four points should be in the four squares of\n" "the object." -#: flatcamTools/ToolCalibration.py:281 -#| msgid "Verification GCode" +#: flatcamTools/ToolCalibration.py:393 msgid "STEP 2: Verification GCode" msgstr "STEP 2: Verification GCode" -#: flatcamTools/ToolCalibration.py:283 flatcamTools/ToolCalibration.py:350 +#: flatcamTools/ToolCalibration.py:395 flatcamTools/ToolCalibration.py:408 msgid "" "Generate GCode file to locate and align the PCB by using\n" -"the four points acquired above." +"the four points acquired above.\n" +"The points sequence is:\n" +"- first point -> set the origin\n" +"- second point -> alignment point. Can be: top-left or bottom-right.\n" +"- third point -> check point. Can be: top-left or bottom-right.\n" +"- forth point -> final verification point. Just for evaluation." msgstr "" "Generate GCode file to locate and align the PCB by using\n" -"the four points acquired above." +"the four points acquired above.\n" +"The points sequence is:\n" +"- first point -> set the origin\n" +"- second point -> alignment point. Can be: top-left or bottom-right.\n" +"- third point -> check point. Can be: top-left or bottom-right.\n" +"- forth point -> final verification point. Just for evaluation." -#: flatcamTools/ToolCalibration.py:288 -msgid "GCode Parameters" -msgstr "GCode Parameters" - -#: flatcamTools/ToolCalibration.py:290 -msgid "Parameters used when creating the GCode in this tool." -msgstr "Parameters used when creating the GCode in this tool." - -#: flatcamTools/ToolCalibration.py:348 flatcamTools/ToolSolderPaste.py:347 +#: flatcamTools/ToolCalibration.py:406 flatcamTools/ToolSolderPaste.py:347 msgid "Generate GCode" msgstr "Generate GCode" -#: flatcamTools/ToolCalibration.py:369 -#| msgid "Film Adjustments" +#: flatcamTools/ToolCalibration.py:432 msgid "STEP 3: Adjustments" msgstr "STEP 3: Adjustments" -#: flatcamTools/ToolCalibration.py:371 flatcamTools/ToolCalibration.py:380 +#: flatcamTools/ToolCalibration.py:434 flatcamTools/ToolCalibration.py:443 msgid "" "Calculate Scale and Skew factors based on the differences (delta)\n" "found when checking the PCB pattern. The differences must be filled\n" @@ -12699,16 +12831,15 @@ msgstr "" "found when checking the PCB pattern. The differences must be filled\n" "in the fields Found (Delta)." -#: flatcamTools/ToolCalibration.py:378 +#: flatcamTools/ToolCalibration.py:441 msgid "Calculate Factors" msgstr "Calculate Factors" -#: flatcamTools/ToolCalibration.py:400 -#| msgid "Generate Adjusted GCode" +#: flatcamTools/ToolCalibration.py:463 msgid "STEP 4: Adjusted GCode" msgstr "STEP 4: Adjusted GCode" -#: flatcamTools/ToolCalibration.py:402 flatcamTools/ToolCalibration.py:542 +#: flatcamTools/ToolCalibration.py:465 msgid "" "Generate verification GCode file adjusted with\n" "the factors above." @@ -12716,56 +12847,62 @@ msgstr "" "Generate verification GCode file adjusted with\n" "the factors above." -#: flatcamTools/ToolCalibration.py:407 -#| msgid "Scale Factor:" +#: flatcamTools/ToolCalibration.py:470 msgid "Scale Factor X:" msgstr "Scale Factor X:" -#: flatcamTools/ToolCalibration.py:419 -#| msgid "Scale Factor:" +#: flatcamTools/ToolCalibration.py:482 msgid "Scale Factor Y:" msgstr "Scale Factor Y:" -#: flatcamTools/ToolCalibration.py:431 -#| msgid "Ap. Scale Factor:" +#: flatcamTools/ToolCalibration.py:494 msgid "Apply Scale Factors" msgstr "Apply Scale Factors" -#: flatcamTools/ToolCalibration.py:433 +#: flatcamTools/ToolCalibration.py:496 msgid "Apply Scale factors on the calibration points." msgstr "Apply Scale factors on the calibration points." -#: flatcamTools/ToolCalibration.py:443 -#| msgid "Angle X:" +#: flatcamTools/ToolCalibration.py:506 msgid "Skew Angle X:" msgstr "Skew Angle X:" -#: flatcamTools/ToolCalibration.py:456 -#| msgid "Angle Y:" +#: flatcamTools/ToolCalibration.py:519 msgid "Skew Angle Y:" msgstr "Skew Angle Y:" -#: flatcamTools/ToolCalibration.py:469 -#| msgid "Ap. Scale Factor:" +#: flatcamTools/ToolCalibration.py:532 msgid "Apply Skew Factors" msgstr "Apply Skew Factors" -#: flatcamTools/ToolCalibration.py:471 +#: flatcamTools/ToolCalibration.py:534 msgid "Apply Skew factors on the calibration points." msgstr "Apply Skew factors on the calibration points." -#: flatcamTools/ToolCalibration.py:540 +#: flatcamTools/ToolCalibration.py:603 msgid "Generate Adjusted GCode" msgstr "Generate Adjusted GCode" -#: flatcamTools/ToolCalibration.py:561 +#: flatcamTools/ToolCalibration.py:605 +#| msgid "" +#| "Generate verification GCode file adjusted with\n" +#| "the factors above." +msgid "" +"Generate verification GCode file adjusted with\n" +"the factors set above.\n" +"The GCode parameters can be readjusted\n" +"before clicking this button." +msgstr "" +"Generate verification GCode file adjusted with\n" +"the factors set above.\n" +"The GCode parameters can be readjusted\n" +"before clicking this button." + +#: flatcamTools/ToolCalibration.py:626 msgid "STEP 5: Calibrate FlatCAM Objects" msgstr "STEP 5: Calibrate FlatCAM Objects" -#: flatcamTools/ToolCalibration.py:563 -#| msgid "" -#| "Ajust the Excellon and Cutout Geometry objects\n" -#| "with the factors determined, and verified, above." +#: flatcamTools/ToolCalibration.py:628 msgid "" "Adjust the FlatCAM objects\n" "with the factors determined and verified above." @@ -12773,32 +12910,27 @@ msgstr "" "Adjust the FlatCAM objects\n" "with the factors determined and verified above." -#: flatcamTools/ToolCalibration.py:572 -#| msgid "Adjust Objects" +#: flatcamTools/ToolCalibration.py:641 msgid "Adjusted object type" msgstr "Adjusted object type" -#: flatcamTools/ToolCalibration.py:574 -#| msgid "Geometry Object to be adjusted." +#: flatcamTools/ToolCalibration.py:643 msgid "Type of the FlatCAM Object to be adjusted." msgstr "Type of the FlatCAM Object to be adjusted." -#: flatcamTools/ToolCalibration.py:585 -#| msgid "Adjust Objects" +#: flatcamTools/ToolCalibration.py:654 msgid "Adjusted object selection" msgstr "Adjusted object selection" -#: flatcamTools/ToolCalibration.py:587 -#| msgid "Excellon Object to be adjusted." +#: flatcamTools/ToolCalibration.py:656 msgid "The FlatCAM Object to be adjusted." msgstr "The FlatCAM Object to be adjusted." -#: flatcamTools/ToolCalibration.py:594 -#| msgid "Calibrate Excellon" +#: flatcamTools/ToolCalibration.py:663 msgid "Calibrate" msgstr "Calibrate" -#: flatcamTools/ToolCalibration.py:596 +#: flatcamTools/ToolCalibration.py:665 msgid "" "Adjust (scale and/or skew) the objects\n" "with the factors determined above." @@ -12806,82 +12938,76 @@ msgstr "" "Adjust (scale and/or skew) the objects\n" "with the factors determined above." -#: flatcamTools/ToolCalibration.py:617 flatcamTools/ToolCopperThieving.py:482 +#: flatcamTools/ToolCalibration.py:686 flatcamTools/ToolCopperThieving.py:482 #: flatcamTools/ToolCutOut.py:360 flatcamTools/ToolDblSided.py:302 #: flatcamTools/ToolFiducials.py:316 flatcamTools/ToolFilm.py:518 #: flatcamTools/ToolNonCopperClear.py:492 flatcamTools/ToolOptimal.py:237 #: flatcamTools/ToolPaint.py:378 flatcamTools/ToolPanelize.py:266 #: flatcamTools/ToolQRCode.py:314 flatcamTools/ToolRulesCheck.py:507 #: flatcamTools/ToolSolderPaste.py:470 flatcamTools/ToolSub.py:170 -#| msgid "Rules Tool" msgid "Reset Tool" msgstr "Reset Tool" -#: flatcamTools/ToolCalibration.py:619 flatcamTools/ToolCopperThieving.py:484 +#: flatcamTools/ToolCalibration.py:688 flatcamTools/ToolCopperThieving.py:484 #: flatcamTools/ToolCutOut.py:362 flatcamTools/ToolDblSided.py:304 #: flatcamTools/ToolFiducials.py:318 flatcamTools/ToolFilm.py:520 #: flatcamTools/ToolNonCopperClear.py:494 flatcamTools/ToolOptimal.py:239 #: flatcamTools/ToolPaint.py:380 flatcamTools/ToolPanelize.py:268 #: flatcamTools/ToolQRCode.py:316 flatcamTools/ToolRulesCheck.py:509 #: flatcamTools/ToolSolderPaste.py:472 flatcamTools/ToolSub.py:172 -#| msgid "" -#| "Select tools.\n" -#| "Modify parameters." msgid "Will reset the tool parameters." msgstr "Will reset the tool parameters." -#: flatcamTools/ToolCalibration.py:688 -#| msgid "Calibrate Excellon" +#: flatcamTools/ToolCalibration.py:762 msgid "Calibrate Tool" msgstr "Calibrate Tool" -#: flatcamTools/ToolCalibration.py:715 +#: flatcamTools/ToolCalibration.py:792 msgid "Tool initialized" msgstr "Tool initialized" -#: flatcamTools/ToolCalibration.py:747 -#| msgid "There is no Excellon object loaded ..." +#: flatcamTools/ToolCalibration.py:824 msgid "There is no source FlatCAM object selected..." msgstr "There is no source FlatCAM object selected..." -#: flatcamTools/ToolCalibration.py:768 -#| msgid "Click inside the First drill point. Bottom Left..." +#: flatcamTools/ToolCalibration.py:845 msgid "Get First calibration point. Bottom Left..." msgstr "Get First calibration point. Bottom Left..." -#: flatcamTools/ToolCalibration.py:820 -#| msgid "Click inside the Second drill point. Bottom Right..." +#: flatcamTools/ToolCalibration.py:906 +#| msgid "Copy cancelled. No shape selected." +msgid "Cancelled by user request." +msgstr "Cancelled by user request." + +#: flatcamTools/ToolCalibration.py:912 msgid "Get Second calibration point. Bottom Right..." msgstr "Get Second calibration point. Bottom Right..." -#: flatcamTools/ToolCalibration.py:824 -#| msgid "Click inside the Third drill point. Top Left..." +#: flatcamTools/ToolCalibration.py:916 msgid "Get Third calibration point. Top Left..." msgstr "Get Third calibration point. Top Left..." -#: flatcamTools/ToolCalibration.py:828 -#| msgid "Click inside the Fourth drill point. Top Right..." +#: flatcamTools/ToolCalibration.py:920 msgid "Get Forth calibration point. Top Right..." msgstr "Get Forth calibration point. Top Right..." -#: flatcamTools/ToolCalibration.py:832 +#: flatcamTools/ToolCalibration.py:924 msgid "Done. All four points have been acquired." msgstr "Done. All four points have been acquired." -#: flatcamTools/ToolCalibration.py:857 +#: flatcamTools/ToolCalibration.py:955 msgid "Verification GCode for FlatCAM Calibrate Tool" msgstr "Verification GCode for FlatCAM Calibrate Tool" -#: flatcamTools/ToolCalibration.py:869 flatcamTools/ToolCalibration.py:923 +#: flatcamTools/ToolCalibration.py:967 flatcamTools/ToolCalibration.py:1053 msgid "Gcode Viewer" msgstr "Gcode Viewer" -#: flatcamTools/ToolCalibration.py:881 +#: flatcamTools/ToolCalibration.py:983 msgid "Cancelled. Four points are needed for GCode generation." msgstr "Cancelled. Four points are needed for GCode generation." -#: flatcamTools/ToolCalibration.py:1041 flatcamTools/ToolCalibration.py:1137 -#| msgid "There is no Box object loaded ..." +#: flatcamTools/ToolCalibration.py:1239 flatcamTools/ToolCalibration.py:1335 msgid "There is no FlatCAM object selected..." msgstr "There is no FlatCAM object selected..." @@ -13042,7 +13168,6 @@ msgid "mm" msgstr "mm" #: flatcamTools/ToolCopperThieving.py:458 -#| msgid "info" msgid "in" msgstr "in" @@ -13103,9 +13228,9 @@ msgstr "Copper Thieving Tool done." #: flatcamTools/ToolCopperThieving.py:754 #: flatcamTools/ToolCopperThieving.py:787 flatcamTools/ToolCutOut.py:466 -#: flatcamTools/ToolCutOut.py:640 flatcamTools/ToolNonCopperClear.py:1155 -#: flatcamTools/ToolNonCopperClear.py:1196 -#: flatcamTools/ToolNonCopperClear.py:1228 flatcamTools/ToolPaint.py:1077 +#: flatcamTools/ToolCutOut.py:640 flatcamTools/ToolNonCopperClear.py:1156 +#: flatcamTools/ToolNonCopperClear.py:1197 +#: flatcamTools/ToolNonCopperClear.py:1229 flatcamTools/ToolPaint.py:1079 #: flatcamTools/ToolPanelize.py:401 flatcamTools/ToolPanelize.py:416 #: flatcamTools/ToolSub.py:288 flatcamTools/ToolSub.py:301 #: flatcamTools/ToolSub.py:492 flatcamTools/ToolSub.py:507 @@ -13115,7 +13240,7 @@ msgid "Could not retrieve object" msgstr "Could not retrieve object" #: flatcamTools/ToolCopperThieving.py:764 -#: flatcamTools/ToolNonCopperClear.py:1209 +#: flatcamTools/ToolNonCopperClear.py:1210 msgid "Click the start point of the area." msgstr "Click the start point of the area." @@ -13124,7 +13249,7 @@ msgid "Click the end point of the filling area." msgstr "Click the end point of the filling area." #: flatcamTools/ToolCopperThieving.py:821 -#: flatcamTools/ToolNonCopperClear.py:1265 flatcamTools/ToolPaint.py:1204 +#: flatcamTools/ToolNonCopperClear.py:1266 flatcamTools/ToolPaint.py:1206 msgid "Zone added. Click to start adding next zone or right click to finish." msgstr "Zone added. Click to start adding next zone or right click to finish." @@ -13156,12 +13281,12 @@ msgid "Geometry not supported for bounding box" msgstr "Geometry not supported for bounding box" #: flatcamTools/ToolCopperThieving.py:1061 -#: flatcamTools/ToolNonCopperClear.py:1516 flatcamTools/ToolPaint.py:2569 +#: flatcamTools/ToolNonCopperClear.py:1517 flatcamTools/ToolPaint.py:2571 msgid "No object available." msgstr "No object available." #: flatcamTools/ToolCopperThieving.py:1098 -#: flatcamTools/ToolNonCopperClear.py:1558 +#: flatcamTools/ToolNonCopperClear.py:1559 msgid "The reference object type is not supported." msgstr "The reference object type is not supported." @@ -13207,12 +13332,10 @@ msgstr "" "of objects that will populate the 'Object' combobox." #: flatcamTools/ToolCutOut.py:91 flatcamTools/ToolCutOut.py:92 -#| msgid "Object to be painted." msgid "Object to be cutout" msgstr "Object to be cutout" #: flatcamTools/ToolCutOut.py:214 -#| msgid "Convex Sh." msgid "Convex Shape" msgstr "Convex Shape" @@ -13249,7 +13372,6 @@ msgstr "" "- 8 - 2*left + 2*right +2*top + 2*bottom" #: flatcamTools/ToolCutOut.py:262 -#| msgid "Generate Geometry" msgid "Generate Freeform Geometry" msgstr "Generate Freeform Geometry" @@ -13264,7 +13386,6 @@ msgstr "" "Useful when the PCB has a non-rectangular shape." #: flatcamTools/ToolCutOut.py:276 -#| msgid "Generate Geometry" msgid "Generate Rectangular Geometry" msgstr "Generate Rectangular Geometry" @@ -13299,7 +13420,6 @@ msgid "Geometry object used to create the manual cutout." msgstr "Geometry object used to create the manual cutout." #: flatcamTools/ToolCutOut.py:326 -#| msgid "Generate Geometry" msgid "Generate Manual Geometry" msgstr "Generate Manual Geometry" @@ -13374,8 +13494,8 @@ msgstr "" msgid "Any form CutOut operation finished." msgstr "Any form CutOut operation finished." -#: flatcamTools/ToolCutOut.py:644 flatcamTools/ToolNonCopperClear.py:1159 -#: flatcamTools/ToolPaint.py:997 flatcamTools/ToolPanelize.py:406 +#: flatcamTools/ToolCutOut.py:644 flatcamTools/ToolNonCopperClear.py:1160 +#: flatcamTools/ToolPaint.py:999 flatcamTools/ToolPanelize.py:406 #: tclCommands/TclCommandBbox.py:70 tclCommands/TclCommandNregions.py:70 msgid "Object not found" msgstr "Object not found" @@ -13431,7 +13551,6 @@ msgid "2-Sided PCB" msgstr "2-Sided PCB" #: flatcamTools/ToolDblSided.py:58 -#| msgid "Gerber to be mirrored" msgid "Gerber to be mirrored" msgstr "Gerber to be mirrored" @@ -13459,10 +13578,6 @@ msgstr "Excellon Object to be mirrored." msgid "Geometry Obj to be mirrored." msgstr "Geometry Obj to be mirrored." -#: flatcamTools/ToolDblSided.py:156 -msgid "Axis Ref:" -msgstr "Axis Ref:" - #: flatcamTools/ToolDblSided.py:177 msgid "Point/Box Reference" msgstr "Point/Box Reference" @@ -13981,25 +14096,30 @@ msgstr "No FlatCAM object selected. Load an object for Film and retry." msgid "No FlatCAM object selected. Load an object for Box and retry." msgstr "No FlatCAM object selected. Load an object for Box and retry." -#: flatcamTools/ToolFilm.py:680 +#: flatcamTools/ToolFilm.py:673 +#| msgid "No object selected." +msgid "No FlatCAM object selected." +msgstr "No FlatCAM object selected." + +#: flatcamTools/ToolFilm.py:684 msgid "Generating Film ..." msgstr "Generating Film ..." -#: flatcamTools/ToolFilm.py:729 flatcamTools/ToolFilm.py:733 +#: flatcamTools/ToolFilm.py:733 flatcamTools/ToolFilm.py:737 msgid "Export positive film" msgstr "Export positive film" -#: flatcamTools/ToolFilm.py:738 +#: flatcamTools/ToolFilm.py:742 msgid "Export positive film cancelled." msgstr "Export positive film cancelled." -#: flatcamTools/ToolFilm.py:760 +#: flatcamTools/ToolFilm.py:770 msgid "" "No Excellon object selected. Load an object for punching reference and retry." msgstr "" "No Excellon object selected. Load an object for punching reference and retry." -#: flatcamTools/ToolFilm.py:784 +#: flatcamTools/ToolFilm.py:794 msgid "" " Could not generate punched hole film because the punch hole sizeis bigger " "than some of the apertures in the Gerber object." @@ -14007,7 +14127,7 @@ msgstr "" " Could not generate punched hole film because the punch hole sizeis bigger " "than some of the apertures in the Gerber object." -#: flatcamTools/ToolFilm.py:796 +#: flatcamTools/ToolFilm.py:806 msgid "" "Could not generate punched hole film because the punch hole sizeis bigger " "than some of the apertures in the Gerber object." @@ -14015,7 +14135,7 @@ msgstr "" "Could not generate punched hole film because the punch hole sizeis bigger " "than some of the apertures in the Gerber object." -#: flatcamTools/ToolFilm.py:814 +#: flatcamTools/ToolFilm.py:824 msgid "" "Could not generate punched hole film because the newly created object " "geometry is the same as the one in the source object geometry..." @@ -14023,24 +14143,24 @@ msgstr "" "Could not generate punched hole film because the newly created object " "geometry is the same as the one in the source object geometry..." -#: flatcamTools/ToolFilm.py:869 flatcamTools/ToolFilm.py:873 +#: flatcamTools/ToolFilm.py:879 flatcamTools/ToolFilm.py:883 msgid "Export negative film" msgstr "Export negative film" -#: flatcamTools/ToolFilm.py:878 +#: flatcamTools/ToolFilm.py:888 msgid "Export negative film cancelled." msgstr "Export negative film cancelled." -#: flatcamTools/ToolFilm.py:934 flatcamTools/ToolFilm.py:1112 +#: flatcamTools/ToolFilm.py:944 flatcamTools/ToolFilm.py:1122 #: flatcamTools/ToolPanelize.py:421 msgid "No object Box. Using instead" msgstr "No object Box. Using instead" -#: flatcamTools/ToolFilm.py:1050 flatcamTools/ToolFilm.py:1221 +#: flatcamTools/ToolFilm.py:1060 flatcamTools/ToolFilm.py:1235 msgid "Film file exported to" msgstr "Film file exported to" -#: flatcamTools/ToolFilm.py:1053 flatcamTools/ToolFilm.py:1224 +#: flatcamTools/ToolFilm.py:1063 flatcamTools/ToolFilm.py:1238 msgid "Generating Film ... Please wait." msgstr "Generating Film ... Please wait." @@ -14352,110 +14472,110 @@ msgstr "" msgid "Generate Geometry" msgstr "Generate Geometry" -#: flatcamTools/ToolNonCopperClear.py:587 flatcamTools/ToolPaint.py:497 +#: flatcamTools/ToolNonCopperClear.py:587 flatcamTools/ToolPaint.py:498 #: flatcamTools/ToolSolderPaste.py:553 msgid "New Tool" msgstr "New Tool" -#: flatcamTools/ToolNonCopperClear.py:985 flatcamTools/ToolPaint.py:769 +#: flatcamTools/ToolNonCopperClear.py:986 flatcamTools/ToolPaint.py:771 #: flatcamTools/ToolSolderPaste.py:884 msgid "Please enter a tool diameter to add, in Float format." msgstr "Please enter a tool diameter to add, in Float format." -#: flatcamTools/ToolNonCopperClear.py:1016 flatcamTools/ToolPaint.py:794 +#: flatcamTools/ToolNonCopperClear.py:1017 flatcamTools/ToolPaint.py:796 msgid "Adding tool cancelled. Tool already in Tool Table." msgstr "Adding tool cancelled. Tool already in Tool Table." -#: flatcamTools/ToolNonCopperClear.py:1021 flatcamTools/ToolPaint.py:800 +#: flatcamTools/ToolNonCopperClear.py:1022 flatcamTools/ToolPaint.py:802 msgid "New tool added to Tool Table." msgstr "New tool added to Tool Table." -#: flatcamTools/ToolNonCopperClear.py:1065 flatcamTools/ToolPaint.py:846 +#: flatcamTools/ToolNonCopperClear.py:1066 flatcamTools/ToolPaint.py:848 msgid "Tool from Tool Table was edited." msgstr "Tool from Tool Table was edited." -#: flatcamTools/ToolNonCopperClear.py:1076 flatcamTools/ToolPaint.py:858 +#: flatcamTools/ToolNonCopperClear.py:1077 flatcamTools/ToolPaint.py:860 #: flatcamTools/ToolSolderPaste.py:975 msgid "Edit cancelled. New diameter value is already in the Tool Table." msgstr "Edit cancelled. New diameter value is already in the Tool Table." -#: flatcamTools/ToolNonCopperClear.py:1123 flatcamTools/ToolPaint.py:956 +#: flatcamTools/ToolNonCopperClear.py:1124 flatcamTools/ToolPaint.py:958 msgid "Delete failed. Select a tool to delete." msgstr "Delete failed. Select a tool to delete." -#: flatcamTools/ToolNonCopperClear.py:1128 flatcamTools/ToolPaint.py:962 +#: flatcamTools/ToolNonCopperClear.py:1129 flatcamTools/ToolPaint.py:964 msgid "Tool(s) deleted from Tool Table." msgstr "Tool(s) deleted from Tool Table." -#: flatcamTools/ToolNonCopperClear.py:1175 +#: flatcamTools/ToolNonCopperClear.py:1176 msgid "Wrong Tool Dia value format entered, use a number." msgstr "Wrong Tool Dia value format entered, use a number." -#: flatcamTools/ToolNonCopperClear.py:1184 flatcamTools/ToolPaint.py:1026 +#: flatcamTools/ToolNonCopperClear.py:1185 flatcamTools/ToolPaint.py:1028 msgid "No selected tools in Tool Table." msgstr "No selected tools in Tool Table." -#: flatcamTools/ToolNonCopperClear.py:1259 flatcamTools/ToolPaint.py:1198 +#: flatcamTools/ToolNonCopperClear.py:1260 flatcamTools/ToolPaint.py:1200 msgid "Click the end point of the paint area." msgstr "Click the end point of the paint area." -#: flatcamTools/ToolNonCopperClear.py:1413 -#: flatcamTools/ToolNonCopperClear.py:1415 +#: flatcamTools/ToolNonCopperClear.py:1414 +#: flatcamTools/ToolNonCopperClear.py:1416 msgid "Non-Copper clearing ..." msgstr "Non-Copper clearing ..." -#: flatcamTools/ToolNonCopperClear.py:1425 +#: flatcamTools/ToolNonCopperClear.py:1426 msgid "NCC Tool started. Reading parameters." msgstr "NCC Tool started. Reading parameters." -#: flatcamTools/ToolNonCopperClear.py:1488 +#: flatcamTools/ToolNonCopperClear.py:1489 msgid "NCC Tool. Preparing non-copper polygons." msgstr "NCC Tool. Preparing non-copper polygons." -#: flatcamTools/ToolNonCopperClear.py:1584 +#: flatcamTools/ToolNonCopperClear.py:1585 msgid "" "NCC Tool. Finished non-copper polygons. Normal copper clearing task started." msgstr "" "NCC Tool. Finished non-copper polygons. Normal copper clearing task started." -#: flatcamTools/ToolNonCopperClear.py:1616 +#: flatcamTools/ToolNonCopperClear.py:1617 msgid "NCC Tool. Calculate 'empty' area." msgstr "NCC Tool. Calculate 'empty' area." -#: flatcamTools/ToolNonCopperClear.py:1629 -#: flatcamTools/ToolNonCopperClear.py:1728 -#: flatcamTools/ToolNonCopperClear.py:1740 -#: flatcamTools/ToolNonCopperClear.py:1989 -#: flatcamTools/ToolNonCopperClear.py:2085 -#: flatcamTools/ToolNonCopperClear.py:2097 +#: flatcamTools/ToolNonCopperClear.py:1630 +#: flatcamTools/ToolNonCopperClear.py:1729 +#: flatcamTools/ToolNonCopperClear.py:1741 +#: flatcamTools/ToolNonCopperClear.py:1990 +#: flatcamTools/ToolNonCopperClear.py:2086 +#: flatcamTools/ToolNonCopperClear.py:2098 msgid "Buffering finished" msgstr "Buffering finished" -#: flatcamTools/ToolNonCopperClear.py:1747 -#: flatcamTools/ToolNonCopperClear.py:2103 +#: flatcamTools/ToolNonCopperClear.py:1748 +#: flatcamTools/ToolNonCopperClear.py:2104 msgid "The selected object is not suitable for copper clearing." msgstr "The selected object is not suitable for copper clearing." -#: flatcamTools/ToolNonCopperClear.py:1752 -#: flatcamTools/ToolNonCopperClear.py:2108 +#: flatcamTools/ToolNonCopperClear.py:1753 +#: flatcamTools/ToolNonCopperClear.py:2109 msgid "Could not get the extent of the area to be non copper cleared." msgstr "Could not get the extent of the area to be non copper cleared." -#: flatcamTools/ToolNonCopperClear.py:1759 +#: flatcamTools/ToolNonCopperClear.py:1760 msgid "NCC Tool. Finished calculation of 'empty' area." msgstr "NCC Tool. Finished calculation of 'empty' area." -#: flatcamTools/ToolNonCopperClear.py:1772 -#: flatcamTools/ToolNonCopperClear.py:2133 +#: flatcamTools/ToolNonCopperClear.py:1773 +#: flatcamTools/ToolNonCopperClear.py:2134 msgid "NCC Tool clearing with tool diameter = " msgstr "NCC Tool clearing with tool diameter = " -#: flatcamTools/ToolNonCopperClear.py:1775 -#: flatcamTools/ToolNonCopperClear.py:2136 +#: flatcamTools/ToolNonCopperClear.py:1776 +#: flatcamTools/ToolNonCopperClear.py:2137 msgid "started." msgstr "started." -#: flatcamTools/ToolNonCopperClear.py:1918 +#: flatcamTools/ToolNonCopperClear.py:1919 msgid "" "There is no NCC Geometry in the file.\n" "Usually it means that the tool diameter is too big for the painted " @@ -14467,25 +14587,25 @@ msgstr "" "geometry.\n" "Change the painting parameters and try again." -#: flatcamTools/ToolNonCopperClear.py:1938 +#: flatcamTools/ToolNonCopperClear.py:1939 msgid "NCC Tool clear all done." msgstr "NCC Tool clear all done." -#: flatcamTools/ToolNonCopperClear.py:1940 +#: flatcamTools/ToolNonCopperClear.py:1941 msgid "NCC Tool clear all done but the copper features isolation is broken for" msgstr "" "NCC Tool clear all done but the copper features isolation is broken for" -#: flatcamTools/ToolNonCopperClear.py:1943 -#: flatcamTools/ToolNonCopperClear.py:2309 +#: flatcamTools/ToolNonCopperClear.py:1944 +#: flatcamTools/ToolNonCopperClear.py:2310 msgid "tools" msgstr "tools" -#: flatcamTools/ToolNonCopperClear.py:2305 +#: flatcamTools/ToolNonCopperClear.py:2306 msgid "NCC Tool Rest Machining clear all done." msgstr "NCC Tool Rest Machining clear all done." -#: flatcamTools/ToolNonCopperClear.py:2308 +#: flatcamTools/ToolNonCopperClear.py:2309 msgid "" "NCC Tool Rest Machining clear all done but the copper features isolation is " "broken for" @@ -14493,7 +14613,7 @@ msgstr "" "NCC Tool Rest Machining clear all done but the copper features isolation is " "broken for" -#: flatcamTools/ToolNonCopperClear.py:2755 +#: flatcamTools/ToolNonCopperClear.py:2756 msgid "" "Try to use the Buffering Type = Full in Preferences -> Gerber General. " "Reload the Gerber file after this change." @@ -14798,68 +14918,68 @@ msgstr "" "- 'Reference Object' - will do non copper clearing within the area\n" "specified by another object." -#: flatcamTools/ToolPaint.py:976 +#: flatcamTools/ToolPaint.py:978 msgid "Paint Tool. Reading parameters." msgstr "Paint Tool. Reading parameters." -#: flatcamTools/ToolPaint.py:991 +#: flatcamTools/ToolPaint.py:993 #, python-format msgid "Could not retrieve object: %s" msgstr "Could not retrieve object: %s" -#: flatcamTools/ToolPaint.py:1005 +#: flatcamTools/ToolPaint.py:1007 msgid "Can't do Paint on MultiGeo geometries" msgstr "Can't do Paint on MultiGeo geometries" -#: flatcamTools/ToolPaint.py:1038 +#: flatcamTools/ToolPaint.py:1040 msgid "Click on a polygon to paint it." msgstr "Click on a polygon to paint it." -#: flatcamTools/ToolPaint.py:1057 +#: flatcamTools/ToolPaint.py:1059 msgid "Click the start point of the paint area." msgstr "Click the start point of the paint area." -#: flatcamTools/ToolPaint.py:1125 +#: flatcamTools/ToolPaint.py:1127 msgid "Click to add next polygon or right click to start painting." msgstr "Click to add next polygon or right click to start painting." -#: flatcamTools/ToolPaint.py:1138 +#: flatcamTools/ToolPaint.py:1140 msgid "Click to add/remove next polygon or right click to start painting." msgstr "Click to add/remove next polygon or right click to start painting." -#: flatcamTools/ToolPaint.py:1346 flatcamTools/ToolPaint.py:1349 -#: flatcamTools/ToolPaint.py:1351 flatcamTools/ToolPaint.py:1883 -#: flatcamTools/ToolPaint.py:1887 flatcamTools/ToolPaint.py:1890 -#: flatcamTools/ToolPaint.py:2172 flatcamTools/ToolPaint.py:2177 -#: flatcamTools/ToolPaint.py:2180 flatcamTools/ToolPaint.py:2354 -#: flatcamTools/ToolPaint.py:2361 +#: flatcamTools/ToolPaint.py:1348 flatcamTools/ToolPaint.py:1351 +#: flatcamTools/ToolPaint.py:1353 flatcamTools/ToolPaint.py:1885 +#: flatcamTools/ToolPaint.py:1889 flatcamTools/ToolPaint.py:1892 +#: flatcamTools/ToolPaint.py:2174 flatcamTools/ToolPaint.py:2179 +#: flatcamTools/ToolPaint.py:2182 flatcamTools/ToolPaint.py:2356 +#: flatcamTools/ToolPaint.py:2363 msgid "Paint Tool." msgstr "Paint Tool." -#: flatcamTools/ToolPaint.py:1346 flatcamTools/ToolPaint.py:1349 -#: flatcamTools/ToolPaint.py:1351 +#: flatcamTools/ToolPaint.py:1348 flatcamTools/ToolPaint.py:1351 +#: flatcamTools/ToolPaint.py:1353 msgid "Normal painting polygon task started." msgstr "Normal painting polygon task started." -#: flatcamTools/ToolPaint.py:1347 flatcamTools/ToolPaint.py:1709 -#: flatcamTools/ToolPaint.py:1884 flatcamTools/ToolPaint.py:2174 -#: flatcamTools/ToolPaint.py:2356 +#: flatcamTools/ToolPaint.py:1349 flatcamTools/ToolPaint.py:1711 +#: flatcamTools/ToolPaint.py:1886 flatcamTools/ToolPaint.py:2176 +#: flatcamTools/ToolPaint.py:2358 msgid "Buffering geometry..." msgstr "Buffering geometry..." -#: flatcamTools/ToolPaint.py:1369 +#: flatcamTools/ToolPaint.py:1371 msgid "No polygon found." msgstr "No polygon found." -#: flatcamTools/ToolPaint.py:1403 +#: flatcamTools/ToolPaint.py:1405 msgid "Painting polygon..." msgstr "Painting polygon..." -#: flatcamTools/ToolPaint.py:1451 +#: flatcamTools/ToolPaint.py:1453 msgid "Geometry could not be painted completely" msgstr "Geometry could not be painted completely" -#: flatcamTools/ToolPaint.py:1484 +#: flatcamTools/ToolPaint.py:1486 msgid "" "Could not do Paint. Try a different combination of parameters. Or a " "different strategy of paint" @@ -14867,9 +14987,9 @@ msgstr "" "Could not do Paint. Try a different combination of parameters. Or a " "different strategy of paint" -#: flatcamTools/ToolPaint.py:1536 flatcamTools/ToolPaint.py:1863 -#: flatcamTools/ToolPaint.py:2013 flatcamTools/ToolPaint.py:2334 -#: flatcamTools/ToolPaint.py:2488 +#: flatcamTools/ToolPaint.py:1538 flatcamTools/ToolPaint.py:1865 +#: flatcamTools/ToolPaint.py:2015 flatcamTools/ToolPaint.py:2336 +#: flatcamTools/ToolPaint.py:2490 msgid "" "There is no Painting Geometry in the file.\n" "Usually it means that the tool diameter is too big for the painted " @@ -14881,36 +15001,36 @@ msgstr "" "geometry.\n" "Change the painting parameters and try again." -#: flatcamTools/ToolPaint.py:1542 +#: flatcamTools/ToolPaint.py:1544 msgid "Paint Single Done." msgstr "Paint Single Done." -#: flatcamTools/ToolPaint.py:1574 flatcamTools/ToolPaint.py:2041 -#: flatcamTools/ToolPaint.py:2516 +#: flatcamTools/ToolPaint.py:1576 flatcamTools/ToolPaint.py:2043 +#: flatcamTools/ToolPaint.py:2518 msgid "Polygon Paint started ..." msgstr "Polygon Paint started ..." -#: flatcamTools/ToolPaint.py:1626 flatcamTools/ToolPaint.py:2103 +#: flatcamTools/ToolPaint.py:1628 flatcamTools/ToolPaint.py:2105 msgid "Painting polygons..." msgstr "Painting polygons..." -#: flatcamTools/ToolPaint.py:1708 flatcamTools/ToolPaint.py:1711 -#: flatcamTools/ToolPaint.py:1713 +#: flatcamTools/ToolPaint.py:1710 flatcamTools/ToolPaint.py:1713 +#: flatcamTools/ToolPaint.py:1715 msgid "Paint Tool. Normal painting all task started." msgstr "Paint Tool. Normal painting all task started." -#: flatcamTools/ToolPaint.py:1747 flatcamTools/ToolPaint.py:1919 -#: flatcamTools/ToolPaint.py:2221 flatcamTools/ToolPaint.py:2397 +#: flatcamTools/ToolPaint.py:1749 flatcamTools/ToolPaint.py:1921 +#: flatcamTools/ToolPaint.py:2223 flatcamTools/ToolPaint.py:2399 msgid "Painting with tool diameter = " msgstr "Painting with tool diameter = " -#: flatcamTools/ToolPaint.py:1750 flatcamTools/ToolPaint.py:1922 -#: flatcamTools/ToolPaint.py:2224 flatcamTools/ToolPaint.py:2400 +#: flatcamTools/ToolPaint.py:1752 flatcamTools/ToolPaint.py:1924 +#: flatcamTools/ToolPaint.py:2226 flatcamTools/ToolPaint.py:2402 msgid "started" msgstr "started" -#: flatcamTools/ToolPaint.py:1812 flatcamTools/ToolPaint.py:1968 -#: flatcamTools/ToolPaint.py:2284 flatcamTools/ToolPaint.py:2444 +#: flatcamTools/ToolPaint.py:1814 flatcamTools/ToolPaint.py:1970 +#: flatcamTools/ToolPaint.py:2286 flatcamTools/ToolPaint.py:2446 msgid "" "Could not do Paint All. Try a different combination of parameters. Or a " "different Method of paint" @@ -14918,33 +15038,33 @@ msgstr "" "Could not do Paint All. Try a different combination of parameters. Or a " "different Method of paint" -#: flatcamTools/ToolPaint.py:1872 +#: flatcamTools/ToolPaint.py:1874 msgid "Paint All Done." msgstr "Paint All Done." -#: flatcamTools/ToolPaint.py:1883 flatcamTools/ToolPaint.py:1887 -#: flatcamTools/ToolPaint.py:1890 +#: flatcamTools/ToolPaint.py:1885 flatcamTools/ToolPaint.py:1889 +#: flatcamTools/ToolPaint.py:1892 msgid "Rest machining painting all task started." msgstr "Rest machining painting all task started." -#: flatcamTools/ToolPaint.py:2022 flatcamTools/ToolPaint.py:2497 +#: flatcamTools/ToolPaint.py:2024 flatcamTools/ToolPaint.py:2499 msgid "Paint All with Rest-Machining done." msgstr "Paint All with Rest-Machining done." -#: flatcamTools/ToolPaint.py:2173 flatcamTools/ToolPaint.py:2177 -#: flatcamTools/ToolPaint.py:2180 +#: flatcamTools/ToolPaint.py:2175 flatcamTools/ToolPaint.py:2179 +#: flatcamTools/ToolPaint.py:2182 msgid "Normal painting area task started." msgstr "Normal painting area task started." -#: flatcamTools/ToolPaint.py:2343 +#: flatcamTools/ToolPaint.py:2345 msgid "Paint Area Done." msgstr "Paint Area Done." -#: flatcamTools/ToolPaint.py:2355 flatcamTools/ToolPaint.py:2361 +#: flatcamTools/ToolPaint.py:2357 flatcamTools/ToolPaint.py:2363 msgid "Rest machining painting area task started." msgstr "Rest machining painting area task started." -#: flatcamTools/ToolPaint.py:2358 +#: flatcamTools/ToolPaint.py:2360 msgid "Paint Tool. Rest machining painting area task started." msgstr "Paint Tool. Rest machining painting area task started." @@ -15320,22 +15440,18 @@ msgid "Metric" msgstr "Metric" #: flatcamTools/ToolProperties.py:401 flatcamTools/ToolProperties.py:459 -#| msgid "Workers number" msgid "Drills number" msgstr "Drills number" #: flatcamTools/ToolProperties.py:402 flatcamTools/ToolProperties.py:461 -#| msgid "tool number" msgid "Slots number" msgstr "Slots number" #: flatcamTools/ToolProperties.py:404 -#| msgid "tool number" msgid "Drills total number:" msgstr "Drills total number:" #: flatcamTools/ToolProperties.py:405 -#| msgid "tool number" msgid "Slots total number:" msgstr "Slots total number:" @@ -15346,37 +15462,30 @@ msgid "Present" msgstr "Present" #: flatcamTools/ToolProperties.py:427 flatcamTools/ToolProperties.py:457 -#| msgid "Buffer Solid Geometry" msgid "Solid Geometry" msgstr "Solid Geometry" #: flatcamTools/ToolProperties.py:430 -#| msgid "Add Text" msgid "GCode Text" msgstr "GCode Text" #: flatcamTools/ToolProperties.py:433 -#| msgid "New Geometry" msgid "GCode Geometry" msgstr "GCode Geometry" #: flatcamTools/ToolProperties.py:435 -#| msgid "Tool Data" msgid "Data" msgstr "Data" #: flatcamTools/ToolProperties.py:468 -#| msgid "depth where to cut" msgid "Depth of Cut" msgstr "Depth of Cut" #: flatcamTools/ToolProperties.py:480 -#| msgid "Clearance" msgid "Clearance Height" msgstr "Clearance Height" #: flatcamTools/ToolProperties.py:492 -#| msgid "Feedrate:" msgid "Feedrate" msgstr "Feedrate" @@ -15385,7 +15494,6 @@ msgid "Routing time" msgstr "Routing time" #: flatcamTools/ToolProperties.py:519 -#| msgid "Travelled dist." msgid "Travelled distance" msgstr "Travelled distance" @@ -15402,7 +15510,6 @@ msgid "Convex_Hull Area" msgstr "Convex_Hull Area" #: flatcamTools/ToolProperties.py:583 flatcamTools/ToolProperties.py:585 -#| msgid "Copper Gerber" msgid "Copper Area" msgstr "Copper Area" @@ -15946,38 +16053,38 @@ msgstr "Some or all pads have no solder due of inadequate nozzle diameters..." msgid "Generating Solder Paste dispensing geometry..." msgstr "Generating Solder Paste dispensing geometry..." -#: flatcamTools/ToolSolderPaste.py:1287 +#: flatcamTools/ToolSolderPaste.py:1286 msgid "There is no Geometry object available." msgstr "There is no Geometry object available." -#: flatcamTools/ToolSolderPaste.py:1292 +#: flatcamTools/ToolSolderPaste.py:1291 msgid "This Geometry can't be processed. NOT a solder_paste_tool geometry." msgstr "This Geometry can't be processed. NOT a solder_paste_tool geometry." -#: flatcamTools/ToolSolderPaste.py:1400 +#: flatcamTools/ToolSolderPaste.py:1398 msgid "ToolSolderPaste CNCjob created" msgstr "ToolSolderPaste CNCjob created" -#: flatcamTools/ToolSolderPaste.py:1421 +#: flatcamTools/ToolSolderPaste.py:1419 msgid "SP GCode Editor" msgstr "SP GCode Editor" -#: flatcamTools/ToolSolderPaste.py:1433 flatcamTools/ToolSolderPaste.py:1438 -#: flatcamTools/ToolSolderPaste.py:1493 +#: flatcamTools/ToolSolderPaste.py:1431 flatcamTools/ToolSolderPaste.py:1436 +#: flatcamTools/ToolSolderPaste.py:1491 msgid "" "This CNCJob object can't be processed. NOT a solder_paste_tool CNCJob object." msgstr "" "This CNCJob object can't be processed. NOT a solder_paste_tool CNCJob object." -#: flatcamTools/ToolSolderPaste.py:1463 +#: flatcamTools/ToolSolderPaste.py:1461 msgid "No Gcode in the object" msgstr "No Gcode in the object" -#: flatcamTools/ToolSolderPaste.py:1503 +#: flatcamTools/ToolSolderPaste.py:1501 msgid "Export GCode ..." msgstr "Export GCode ..." -#: flatcamTools/ToolSolderPaste.py:1551 +#: flatcamTools/ToolSolderPaste.py:1549 msgid "Solder paste dispenser GCode file saved to" msgstr "Solder paste dispenser GCode file saved to" @@ -16273,16 +16380,16 @@ msgstr "Expected a list of objects names separated by comma. Got" msgid "TclCommand Bounds done." msgstr "TclCommand Bounds done." -#: tclCommands/TclCommandCopperClear.py:241 tclCommands/TclCommandPaint.py:239 +#: tclCommands/TclCommandCopperClear.py:242 tclCommands/TclCommandPaint.py:240 msgid "Expected -box ." msgstr "Expected -box ." -#: tclCommands/TclCommandCopperClear.py:250 tclCommands/TclCommandPaint.py:248 +#: tclCommands/TclCommandCopperClear.py:251 tclCommands/TclCommandPaint.py:249 #: tclCommands/TclCommandScale.py:75 msgid "Could not retrieve box object" msgstr "Could not retrieve box object" -#: tclCommands/TclCommandCopperClear.py:272 +#: tclCommands/TclCommandCopperClear.py:273 msgid "" "None of the following args: 'ref', 'all' were found or none was set to 1.\n" "Copper clearing failed." @@ -16290,11 +16397,11 @@ msgstr "" "None of the following args: 'ref', 'all' were found or none was set to 1.\n" "Copper clearing failed." -#: tclCommands/TclCommandPaint.py:216 +#: tclCommands/TclCommandPaint.py:217 msgid "Expected -x and -y ." msgstr "Expected -x and -y ." -#: tclCommands/TclCommandPaint.py:267 +#: tclCommands/TclCommandPaint.py:268 msgid "" "There was none of the following args: 'ref', 'single', 'all'.\n" "Paint failed." @@ -16322,6 +16429,19 @@ msgstr "Origin set by offsetting all loaded objects with " msgid "No Geometry name in args. Provide a name and try again." msgstr "No Geometry name in args. Provide a name and try again." +#~ msgid "Paint Area" +#~ msgstr "Paint Area" + +#~ msgid "" +#~ "Generate GCode file to locate and align the PCB by using\n" +#~ "the four points acquired above." +#~ msgstr "" +#~ "Generate GCode file to locate and align the PCB by using\n" +#~ "the four points acquired above." + +#~ msgid "Axis Ref:" +#~ msgstr "Axis Ref:" + #~ msgid "Change project units ..." #~ msgstr "Change project units ..." diff --git a/locale/ro/LC_MESSAGES/strings.mo b/locale/ro/LC_MESSAGES/strings.mo index 41c7649f6ec2aa4b493ac7aff5a8bed05791f87e..1db845291450cc8f27d6525b67a65cd81e11cf20 100644 GIT binary patch delta 86431 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 delta 56874 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 Q?+=J!2_6t5vpZY<4@oG;!2kdN diff --git a/locale/ro/LC_MESSAGES/strings.po b/locale/ro/LC_MESSAGES/strings.po index 8df74cbc..045b6052 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-12-09 16:52+0200\n" -"PO-Revision-Date: 2019-12-09 16:52+0200\n" +"POT-Creation-Date: 2019-12-13 17:59+0200\n" +"PO-Revision-Date: 2019-12-13 18:04+0200\n" "Last-Translator: \n" "Language-Team: \n" "Language: ro\n" @@ -23,15 +23,15 @@ msgstr "" "X-Poedit-SearchPathExcluded-1: tests\n" "X-Poedit-SearchPathExcluded-2: doc\n" -#: FlatCAMApp.py:988 +#: FlatCAMApp.py:999 msgid "FlatCAM is initializing ..." msgstr "FlatCAM se inițializează ..." -#: FlatCAMApp.py:1566 +#: FlatCAMApp.py:1580 msgid "Could not find the Language files. The App strings are missing." msgstr "Nu am gasit fişierele cu traduceri. Mesajele aplicaţiei lipsesc." -#: FlatCAMApp.py:1659 +#: FlatCAMApp.py:1673 msgid "" "FlatCAM is initializing ...\n" "Canvas initialization started." @@ -39,7 +39,7 @@ msgstr "" "FlatCAM se inițializează ...\n" "Initializarea spațiului de afisare a inceput." -#: FlatCAMApp.py:1677 +#: FlatCAMApp.py:1691 msgid "" "FlatCAM is initializing ...\n" "Canvas initialization started.\n" @@ -49,7 +49,7 @@ msgstr "" "Initializarea spațiului de afisare a inceput.\n" "Initializarea spatiului de afisare s-a terminat in" -#: FlatCAMApp.py:2373 +#: FlatCAMApp.py:2388 msgid "" "Type >help< to get started\n" "\n" @@ -57,12 +57,13 @@ msgstr "" "Tastați >help< pentru a începe\n" "\n" -#: FlatCAMApp.py:2627 FlatCAMApp.py:9088 +#: FlatCAMApp.py:2643 FlatCAMApp.py:9138 msgid "New Project - Not saved" msgstr "Proiect nou - Nu a fost salvat" -#: FlatCAMApp.py:2702 FlatCAMApp.py:9156 FlatCAMApp.py:9193 FlatCAMApp.py:9234 -#: FlatCAMApp.py:10021 FlatCAMApp.py:10922 FlatCAMApp.py:10981 +#: FlatCAMApp.py:2718 FlatCAMApp.py:9206 FlatCAMApp.py:9243 FlatCAMApp.py:9284 +#: FlatCAMApp.py:9355 FlatCAMApp.py:10109 FlatCAMApp.py:11123 +#: FlatCAMApp.py:11182 msgid "" "Canvas initialization started.\n" "Canvas initialization finished in" @@ -70,45 +71,47 @@ msgstr "" "FlatCAM se inițializează ...\n" "Initializarea spațiului de afisare s-a terminat in" -#: FlatCAMApp.py:2704 +#: FlatCAMApp.py:2720 msgid "Executing Tcl Script ..." msgstr "Rulează Tcl Script..." -#: FlatCAMApp.py:2719 +#: FlatCAMApp.py:2735 msgid "" "Found old default preferences files. Please reboot the application to update." msgstr "" +"Au fost găsite fișiere de preferințe implicite vechi. Vă rugăm să reporniți " +"aplicația pentru a le actualiza." -#: FlatCAMApp.py:2763 ObjectCollection.py:90 flatcamTools/ToolImage.py:248 +#: FlatCAMApp.py:2779 ObjectCollection.py:90 flatcamTools/ToolImage.py:248 #: flatcamTools/ToolPcbWizard.py:301 flatcamTools/ToolPcbWizard.py:324 msgid "Open cancelled." msgstr "Deschidere anulată." -#: FlatCAMApp.py:2779 +#: FlatCAMApp.py:2795 msgid "Open Config file failed." msgstr "Deschiderea fişierului de configurare a eşuat." -#: FlatCAMApp.py:2794 +#: FlatCAMApp.py:2810 msgid "Open Script file failed." msgstr "Deschiderea fişierului Script eşuat." -#: FlatCAMApp.py:2820 +#: FlatCAMApp.py:2836 msgid "Open Excellon file failed." msgstr "Deschiderea fişierului Excellon a eşuat." -#: FlatCAMApp.py:2833 +#: FlatCAMApp.py:2849 msgid "Open GCode file failed." msgstr "Deschiderea fişierului GCode a eşuat." -#: FlatCAMApp.py:2846 +#: FlatCAMApp.py:2862 msgid "Open Gerber file failed." msgstr "Deschiderea fişierului Gerber a eşuat." -#: FlatCAMApp.py:3186 +#: FlatCAMApp.py:3203 msgid "Select a Geometry, Gerber or Excellon Object to edit." msgstr "Selectează un obiect tip Geometrie Gerber sau Excellon pentru editare." -#: FlatCAMApp.py:3201 +#: FlatCAMApp.py:3218 msgid "" "Simultaneous editing of tools geometry in a MultiGeo Geometry is not " "possible.\n" @@ -118,83 +121,83 @@ msgstr "" "MultiGeo nu este posibilă.\n" "Se poate edita numai o singură geometrie de fiecare dată." -#: FlatCAMApp.py:3256 +#: FlatCAMApp.py:3273 msgid "Editor is activated ..." msgstr "Editorul este activ ..." -#: FlatCAMApp.py:3277 +#: FlatCAMApp.py:3294 msgid "Do you want to save the edited object?" msgstr "Vrei sa salvezi obiectul editat?" -#: FlatCAMApp.py:3278 flatcamGUI/FlatCAMGUI.py:1957 +#: FlatCAMApp.py:3295 flatcamGUI/FlatCAMGUI.py:1969 msgid "Close Editor" msgstr "Inchide Editorul" -#: FlatCAMApp.py:3281 FlatCAMApp.py:4965 FlatCAMApp.py:7817 FlatCAMApp.py:7843 -#: FlatCAMApp.py:8995 FlatCAMTranslation.py:97 FlatCAMTranslation.py:171 +#: FlatCAMApp.py:3298 FlatCAMApp.py:5001 FlatCAMApp.py:7861 FlatCAMApp.py:7887 +#: FlatCAMApp.py:9045 FlatCAMTranslation.py:97 FlatCAMTranslation.py:171 #: flatcamGUI/PreferencesUI.py:1034 msgid "Yes" msgstr "Da" -#: FlatCAMApp.py:3282 FlatCAMApp.py:4966 FlatCAMApp.py:7818 FlatCAMApp.py:7844 -#: FlatCAMApp.py:8996 FlatCAMTranslation.py:98 FlatCAMTranslation.py:172 -#: flatcamGUI/PreferencesUI.py:1035 flatcamGUI/PreferencesUI.py:4076 -#: flatcamGUI/PreferencesUI.py:4501 flatcamTools/ToolNonCopperClear.py:189 +#: FlatCAMApp.py:3299 FlatCAMApp.py:5002 FlatCAMApp.py:7862 FlatCAMApp.py:7888 +#: FlatCAMApp.py:9046 FlatCAMTranslation.py:98 FlatCAMTranslation.py:172 +#: flatcamGUI/PreferencesUI.py:1035 flatcamGUI/PreferencesUI.py:4094 +#: flatcamGUI/PreferencesUI.py:4519 flatcamTools/ToolNonCopperClear.py:189 #: flatcamTools/ToolPaint.py:161 msgid "No" msgstr "Nu" -#: FlatCAMApp.py:3283 FlatCAMApp.py:4967 FlatCAMApp.py:5803 FlatCAMApp.py:7121 -#: FlatCAMApp.py:8997 FlatCAMCommon.py:694 flatcamGUI/FlatCAMGUI.py:1105 +#: FlatCAMApp.py:3300 FlatCAMApp.py:5003 FlatCAMApp.py:5839 FlatCAMApp.py:7157 +#: FlatCAMApp.py:9047 FlatCAMCommon.py:702 flatcamGUI/FlatCAMGUI.py:1117 msgid "Cancel" msgstr "Anuleaza" -#: FlatCAMApp.py:3311 +#: FlatCAMApp.py:3328 msgid "Object empty after edit." msgstr "Obiectul nu are date dupa editare." -#: FlatCAMApp.py:3360 FlatCAMApp.py:3380 FlatCAMApp.py:3395 +#: FlatCAMApp.py:3377 FlatCAMApp.py:3397 FlatCAMApp.py:3412 msgid "Select a Gerber, Geometry or Excellon Object to update." msgstr "" "Selectează un obiect tip Gerber, Geometrie sau Excellon pentru actualizare." -#: FlatCAMApp.py:3364 +#: FlatCAMApp.py:3381 msgid "is updated, returning to App..." msgstr "este actualizat, întoarcere la aplicaţie..." -#: FlatCAMApp.py:3759 FlatCAMApp.py:3833 FlatCAMApp.py:4827 +#: FlatCAMApp.py:3776 FlatCAMApp.py:3850 FlatCAMApp.py:4863 msgid "Could not load defaults file." msgstr "Nu am putut incărca fişierul cu valori default." -#: FlatCAMApp.py:3771 FlatCAMApp.py:3842 FlatCAMApp.py:4836 +#: FlatCAMApp.py:3788 FlatCAMApp.py:3859 FlatCAMApp.py:4872 msgid "Failed to parse defaults file." msgstr "Parsarea fişierului cu valori default a eșuat." -#: FlatCAMApp.py:3813 FlatCAMApp.py:3817 +#: FlatCAMApp.py:3830 FlatCAMApp.py:3834 msgid "Import FlatCAM Preferences" msgstr "Importă Preferințele FlatCAM" -#: FlatCAMApp.py:3824 +#: FlatCAMApp.py:3841 msgid "FlatCAM preferences import cancelled." msgstr "Importul preferințelor FlatCAM a eșuat." -#: FlatCAMApp.py:3847 +#: FlatCAMApp.py:3864 msgid "Imported Defaults from" msgstr "Valorile default au fost importate din" -#: FlatCAMApp.py:3867 FlatCAMApp.py:3872 +#: FlatCAMApp.py:3884 FlatCAMApp.py:3889 msgid "Export FlatCAM Preferences" msgstr "Exportă Preferințele FlatCAM" -#: FlatCAMApp.py:3880 +#: FlatCAMApp.py:3897 msgid "FlatCAM preferences export cancelled." msgstr "Exportul preferințelor FlatCAM este anulat." -#: FlatCAMApp.py:3889 FlatCAMApp.py:10204 FlatCAMApp.py:10252 -#: FlatCAMApp.py:10375 FlatCAMApp.py:10514 FlatCAMCommon.py:378 -#: FlatCAMCommon.py:1066 FlatCAMObj.py:6523 -#: flatcamEditors/FlatCAMTextEditor.py:228 flatcamTools/ToolFilm.py:1009 -#: flatcamTools/ToolFilm.py:1180 flatcamTools/ToolSolderPaste.py:1543 +#: FlatCAMApp.py:3906 FlatCAMApp.py:10338 FlatCAMApp.py:10386 +#: FlatCAMApp.py:10509 FlatCAMApp.py:10648 FlatCAMCommon.py:378 +#: FlatCAMCommon.py:1094 FlatCAMObj.py:6721 +#: flatcamEditors/FlatCAMTextEditor.py:228 flatcamTools/ToolFilm.py:1019 +#: flatcamTools/ToolFilm.py:1195 flatcamTools/ToolSolderPaste.py:1541 msgid "" "Permission denied, saving not possible.\n" "Most likely another app is holding the file open and not accessible." @@ -202,39 +205,39 @@ msgstr "" "Permisiune refuzată, salvarea nu este posibilă.\n" "Cel mai probabil o altă aplicație ține fișierul deschis și inaccesibil." -#: FlatCAMApp.py:3902 +#: FlatCAMApp.py:3919 msgid "Could not load preferences file." msgstr "Nu am putut incărca fişierul cu valori default." -#: FlatCAMApp.py:3922 FlatCAMApp.py:4883 +#: FlatCAMApp.py:3939 FlatCAMApp.py:4919 msgid "Failed to write defaults to file." msgstr "Salvarea valorilor default intr-un fişier a eșuat." -#: FlatCAMApp.py:3928 +#: FlatCAMApp.py:3945 msgid "Exported preferences to" msgstr "Exportă Preferințele in" -#: FlatCAMApp.py:3945 +#: FlatCAMApp.py:3962 msgid "FlatCAM Preferences Folder opened." msgstr "Folderul de preferințe FlatCAM a fost deschis." -#: FlatCAMApp.py:4028 +#: FlatCAMApp.py:4045 msgid "Failed to open recent files file for writing." msgstr "" "Deschiderea fişierului cu >fişiere recente< pentru a fi salvat a eșuat." -#: FlatCAMApp.py:4039 +#: FlatCAMApp.py:4056 msgid "Failed to open recent projects file for writing." msgstr "" "Deschiderea fişierului cu >proiecte recente< pentru a fi salvat a eșuat." -#: FlatCAMApp.py:4125 flatcamParsers/ParseExcellon.py:886 -#: flatcamTools/ToolSolderPaste.py:1329 +#: FlatCAMApp.py:4142 flatcamParsers/ParseExcellon.py:886 +#: flatcamTools/ToolSolderPaste.py:1327 msgid "An internal error has ocurred. See shell.\n" msgstr "" "A apărut o eroare internă. Verifică in TCL Shell pt mai multe detalii.\n" -#: FlatCAMApp.py:4126 +#: FlatCAMApp.py:4143 #, python-brace-format msgid "" "Object ({kind}) failed because: {error} \n" @@ -243,67 +246,63 @@ msgstr "" "Obiectul ({kind}) a eșuat din cauza: {error} \n" "\n" -#: FlatCAMApp.py:4146 +#: FlatCAMApp.py:4163 msgid "Converting units to " msgstr "Se convertesc unitătile la " -#: FlatCAMApp.py:4249 +#: FlatCAMApp.py:4266 msgid "CREATE A NEW FLATCAM TCL SCRIPT" -msgstr "" +msgstr "CREAȚI UN SCRIPT FLATCAM TCL NOU" -#: FlatCAMApp.py:4250 +#: FlatCAMApp.py:4267 msgid "TCL Tutorial is here" -msgstr "" +msgstr "Tutorialul TCL este aici" -#: FlatCAMApp.py:4252 +#: FlatCAMApp.py:4269 msgid "FlatCAM commands list" -msgstr "" +msgstr "Lista de comenzi FlatCAM" -#: FlatCAMApp.py:4300 FlatCAMApp.py:4303 FlatCAMApp.py:4306 FlatCAMApp.py:4309 -#: FlatCAMApp.py:4312 FlatCAMApp.py:4315 -#, python-brace-format -msgid "" -"[selected] {kind} created/selected: {name}" -msgstr "" -"[selected]{kind} creat/selectat: {name}" +#: FlatCAMApp.py:4320 FlatCAMApp.py:4326 FlatCAMApp.py:4332 FlatCAMApp.py:4338 +#: FlatCAMApp.py:4344 FlatCAMApp.py:4350 +msgid "created/selected" +msgstr "creat / selectat" -#: FlatCAMApp.py:4330 FlatCAMApp.py:7201 FlatCAMObj.py:262 FlatCAMObj.py:281 -#: FlatCAMObj.py:297 FlatCAMObj.py:377 flatcamTools/ToolCopperThieving.py:1475 +#: FlatCAMApp.py:4365 FlatCAMApp.py:7237 FlatCAMObj.py:263 FlatCAMObj.py:294 +#: FlatCAMObj.py:310 FlatCAMObj.py:390 flatcamTools/ToolCopperThieving.py:1475 #: flatcamTools/ToolFiducials.py:807 flatcamTools/ToolMove.py:220 #: flatcamTools/ToolQRCode.py:726 msgid "Plotting" msgstr "Se afișeaz" -#: FlatCAMApp.py:4391 flatcamGUI/FlatCAMGUI.py:456 +#: FlatCAMApp.py:4426 flatcamGUI/FlatCAMGUI.py:467 msgid "About FlatCAM" msgstr "Despre FlatCAM" -#: FlatCAMApp.py:4417 +#: FlatCAMApp.py:4452 msgid "2D Computer-Aided Printed Circuit Board Manufacturing" msgstr "Productie Cablaje Imprimate asistate 2D de PC" -#: FlatCAMApp.py:4418 +#: FlatCAMApp.py:4453 msgid "Development" msgstr "Dezvoltare" -#: FlatCAMApp.py:4419 +#: FlatCAMApp.py:4454 msgid "DOWNLOAD" msgstr "DOWNLOAD" -#: FlatCAMApp.py:4420 +#: FlatCAMApp.py:4455 msgid "Issue tracker" msgstr "Raportare probleme" -#: FlatCAMApp.py:4424 FlatCAMApp.py:4758 +#: FlatCAMApp.py:4459 FlatCAMApp.py:4794 msgid "Close" msgstr "Închide" -#: FlatCAMApp.py:4439 +#: FlatCAMApp.py:4474 msgid "Licensed under the MIT license" msgstr "Licențiat sub licența MIT" -#: FlatCAMApp.py:4448 +#: FlatCAMApp.py:4483 msgid "" "Permission is hereby granted, free of charge, to any person obtaining a " "copy\n" @@ -356,74 +355,77 @@ msgstr "" "UTILIZAREA SA,\n" "SAU ORICE TRATĂRI ÎN ACEST SOFTWARE." -#: FlatCAMApp.py:4470 +#: FlatCAMApp.py:4505 msgid "" -"Some of the icons used are from the following sources:

Icons made by " -"Freepik from www.flaticon.com
Icons by Icons8" +"Some of the icons used are from the following sources:
Icons by Icons8
Icons by oNline Web Fonts" msgstr "" -"Unele dintre icon-uri sunt preluate din urmatoarele surse:
Icons " -"create de Freepik de la www.flaticon.com
Desene create de " -"Icons8" +"Unele dintre icon-uri sunt preluate din urmatoarele surse: " +"
Pictograme create de Freepik de la www.flaticon.com
Pictograme create de Icons8Pictograme create de oNline Web Fonts" -#: FlatCAMApp.py:4501 +#: FlatCAMApp.py:4537 msgid "Splash" msgstr "Splash" -#: FlatCAMApp.py:4507 +#: FlatCAMApp.py:4543 msgid "Programmers" msgstr "Programatori" -#: FlatCAMApp.py:4513 +#: FlatCAMApp.py:4549 msgid "Translators" msgstr "Traducatori" -#: FlatCAMApp.py:4519 +#: FlatCAMApp.py:4555 msgid "License" msgstr "Licență" -#: FlatCAMApp.py:4525 +#: FlatCAMApp.py:4561 msgid "Attributions" msgstr "Atribuiri" -#: FlatCAMApp.py:4548 +#: FlatCAMApp.py:4584 msgid "Programmer" msgstr "Programator" -#: FlatCAMApp.py:4549 +#: FlatCAMApp.py:4585 msgid "Status" msgstr "Statut" -#: FlatCAMApp.py:4550 FlatCAMApp.py:4621 +#: FlatCAMApp.py:4586 FlatCAMApp.py:4657 msgid "E-mail" msgstr "E-mail" -#: FlatCAMApp.py:4558 +#: FlatCAMApp.py:4594 msgid "BETA Maintainer >= 2019" msgstr "Programator Beta >= 2019" -#: FlatCAMApp.py:4618 +#: FlatCAMApp.py:4654 msgid "Language" msgstr "Limba" -#: FlatCAMApp.py:4619 +#: FlatCAMApp.py:4655 msgid "Translator" msgstr "Traducător" -#: FlatCAMApp.py:4620 +#: FlatCAMApp.py:4656 msgid "Corrections" msgstr "Corecţii" -#: FlatCAMApp.py:4729 FlatCAMApp.py:4737 FlatCAMApp.py:7862 -#: flatcamGUI/FlatCAMGUI.py:440 +#: FlatCAMApp.py:4765 FlatCAMApp.py:4773 FlatCAMApp.py:7906 +#: flatcamGUI/FlatCAMGUI.py:451 msgid "Bookmarks Manager" msgstr "Bookmarks Manager" -#: FlatCAMApp.py:4749 +#: FlatCAMApp.py:4785 msgid "" "This entry will resolve to another website if:\n" "\n" @@ -443,37 +445,37 @@ msgstr "" "Dacă nu puteți obține informații despre FlatCAM beta\n" "utilizați linkul canalului YouTube din meniul Ajutor." -#: FlatCAMApp.py:4756 +#: FlatCAMApp.py:4792 msgid "Alternative website" msgstr "Site alternativ" -#: FlatCAMApp.py:4887 FlatCAMApp.py:7826 +#: FlatCAMApp.py:4923 FlatCAMApp.py:7870 msgid "Preferences saved." msgstr "Preferințele au fost salvate." -#: FlatCAMApp.py:4915 +#: FlatCAMApp.py:4951 msgid "Could not load factory defaults file." msgstr "" "Fişierul cu valori default de fabrică nu a fost posibil să fie deschis." -#: FlatCAMApp.py:4925 +#: FlatCAMApp.py:4961 msgid "Failed to parse factory defaults file." msgstr "Parsarea fişierului cu valori default de fabrică a eșuat." -#: FlatCAMApp.py:4941 +#: FlatCAMApp.py:4977 msgid "Failed to write factory defaults to file." msgstr "" "Salvarea fişierului cu valori default de fabrică intr-un fişier a eșuat." -#: FlatCAMApp.py:4945 +#: FlatCAMApp.py:4981 msgid "Factory defaults saved." msgstr "Valori default de fabrică au fost salvate." -#: FlatCAMApp.py:4955 flatcamGUI/FlatCAMGUI.py:3678 +#: FlatCAMApp.py:4991 flatcamGUI/FlatCAMGUI.py:3691 msgid "Application is saving the project. Please wait ..." msgstr "Aplicația salvează proiectul. Vă rugăm aşteptați ..." -#: FlatCAMApp.py:4960 FlatCAMTranslation.py:166 +#: FlatCAMApp.py:4996 FlatCAMTranslation.py:166 msgid "" "There are files/objects modified in FlatCAM. \n" "Do you want to Save the project?" @@ -481,29 +483,29 @@ msgstr "" "FlatCAM are fişiere/obiecte care au fost modificate. \n" "Dorești să Salvezi proiectul?" -#: FlatCAMApp.py:4963 FlatCAMApp.py:8993 FlatCAMTranslation.py:169 +#: FlatCAMApp.py:4999 FlatCAMApp.py:9043 FlatCAMTranslation.py:169 msgid "Save changes" msgstr "Salvează modificarile" -#: FlatCAMApp.py:5204 +#: FlatCAMApp.py:5240 msgid "Selected Excellon file extensions registered with FlatCAM." msgstr "Extensiile de fișiere Excellon selectate înregistrate cu FlatCAM." -#: FlatCAMApp.py:5226 +#: FlatCAMApp.py:5262 msgid "Selected GCode file extensions registered with FlatCAM." msgstr "Extensii de fișiere GCode selectate înregistrate cu FlatCAM." -#: FlatCAMApp.py:5248 +#: FlatCAMApp.py:5284 msgid "Selected Gerber file extensions registered with FlatCAM." msgstr "Extensii de fișiere Gerber selectate înregistrate cu FlatCAM." -#: FlatCAMApp.py:5436 FlatCAMApp.py:5493 FlatCAMApp.py:5521 +#: FlatCAMApp.py:5472 FlatCAMApp.py:5529 FlatCAMApp.py:5557 msgid "At least two objects are required for join. Objects currently selected" msgstr "" "Cel puțin două obiecte sunt necesare pentru a fi unite. Obiectele selectate " "în prezent" -#: FlatCAMApp.py:5445 +#: FlatCAMApp.py:5481 msgid "" "Failed join. The Geometry objects are of different types.\n" "At least one is MultiGeo type and the other is SingleGeo type. A possibility " @@ -520,124 +522,106 @@ msgstr "" "informatii și rezultatul ar putea să nu fie cel dorit. \n" "Verifică codul G-Code generat." -#: FlatCAMApp.py:5457 -#, fuzzy -#| msgid "Done. Gerber editing finished." +#: FlatCAMApp.py:5493 msgid "Multigeo. Geometry merging finished" -msgstr "Editarea Gerber a fost terminată." +msgstr "Multigeo. Fuziunea geometriei s-a terminat" -#: FlatCAMApp.py:5466 -#, fuzzy -#| msgid "G-Code parsing finished..." +#: FlatCAMApp.py:5502 msgid "Geometry merging finished" -msgstr "Analizarea codului G s-a terminat ..." +msgstr "Fuziunea geometriei s-a terminat" -#: FlatCAMApp.py:5488 +#: FlatCAMApp.py:5524 msgid "Failed. Excellon joining works only on Excellon objects." msgstr "" "Eșuat. Fuzionarea Excellon functionează doar cu obiecte de tip Excellon." -#: FlatCAMApp.py:5498 -#, fuzzy -#| msgid "Excellon editing finished." +#: FlatCAMApp.py:5534 msgid "Excellon merging finished" -msgstr "Editarea Excellon a fost terminată." +msgstr "Fuziunea Excellon a fost terminată" -#: FlatCAMApp.py:5516 +#: FlatCAMApp.py:5552 msgid "Failed. Gerber joining works only on Gerber objects." msgstr "Eșuat. Fuzionarea Gerber functionează doar cu obiecte de tip Gerber ." -#: FlatCAMApp.py:5526 -#, fuzzy -#| msgid "Done. Gerber editing finished." +#: FlatCAMApp.py:5562 msgid "Gerber merging finished" -msgstr "Editarea Gerber a fost terminată." +msgstr "Fuziunea Gerber a fost terminată" -#: FlatCAMApp.py:5546 FlatCAMApp.py:5581 +#: FlatCAMApp.py:5582 FlatCAMApp.py:5617 msgid "Failed. Select a Geometry Object and try again." msgstr "Eșuat. Selectează un obiect Geometrie și încearcă din nou." -#: FlatCAMApp.py:5550 FlatCAMApp.py:5586 +#: FlatCAMApp.py:5586 FlatCAMApp.py:5622 msgid "Expected a FlatCAMGeometry, got" msgstr "Se astepta o Geometrie FlatCAM, s-a primit" -#: FlatCAMApp.py:5563 +#: FlatCAMApp.py:5599 msgid "A Geometry object was converted to MultiGeo type." msgstr "Un obiect Geometrie a fost convertit la tipul MultiGeo." -#: FlatCAMApp.py:5601 +#: FlatCAMApp.py:5637 msgid "A Geometry object was converted to SingleGeo type." msgstr "Un obiect Geometrie a fost convertit la tipul SingleGeo ." -#: FlatCAMApp.py:5797 +#: FlatCAMApp.py:5833 msgid "Toggle Units" msgstr "Comută Unitati" -#: FlatCAMApp.py:5799 -#, fuzzy -#| msgid "" -#| "Changing the units of the project causes all geometrical properties of " -#| "all objects to be scaled accordingly.\n" -#| "Continue?" +#: FlatCAMApp.py:5835 msgid "" "Changing the units of the project\n" "will scale all objects.\n" "\n" "Do you want to continue?" msgstr "" -"Schimbarea unitătilor de măsură din proiect va face ca toate proprietătile " -"geometrice ale obiectelor sa fie scalate corespunzător.\n" -"Continuati?" +"Schimbarea unităților proiectului\n" +"va scala toate obiectele.\n" +"\n" +"Doriți să continuați?" -#: FlatCAMApp.py:5802 FlatCAMApp.py:7044 FlatCAMApp.py:7120 FlatCAMApp.py:9320 -#: FlatCAMApp.py:9334 FlatCAMApp.py:9688 FlatCAMApp.py:9699 +#: FlatCAMApp.py:5838 FlatCAMApp.py:7080 FlatCAMApp.py:7156 FlatCAMApp.py:9408 +#: FlatCAMApp.py:9422 FlatCAMApp.py:9776 FlatCAMApp.py:9787 msgid "Ok" msgstr "Ok" -#: FlatCAMApp.py:5851 +#: FlatCAMApp.py:5887 msgid "Converted units to" msgstr "Unitătile au fost convertite in" -#: FlatCAMApp.py:5865 -#, fuzzy -#| msgid " Units conversion cancelled." +#: FlatCAMApp.py:5901 msgid "Units conversion cancelled." -msgstr " Conversia unitătilor este anulată." +msgstr "Conversia unitătilor este anulată." -#: FlatCAMApp.py:6738 +#: FlatCAMApp.py:6774 msgid "Detachable Tabs" msgstr "Taburi detașabile" -#: FlatCAMApp.py:6957 FlatCAMApp.py:7004 FlatCAMApp.py:7652 FlatCAMApp.py:7715 -#: FlatCAMApp.py:7781 +#: FlatCAMApp.py:6993 FlatCAMApp.py:7040 FlatCAMApp.py:7696 FlatCAMApp.py:7759 +#: FlatCAMApp.py:7825 msgid "Preferences" msgstr "Preferințe" -#: FlatCAMApp.py:6960 -#, fuzzy -#| msgid "Preferences saved." +#: FlatCAMApp.py:6996 msgid "Preferences applied." -msgstr "Preferințele au fost salvate." +msgstr "Preferințele au fost aplicate." -#: FlatCAMApp.py:7009 -#, fuzzy -#| msgid "Preferences edited but not saved." +#: FlatCAMApp.py:7045 msgid "Preferences closed without saving." -msgstr "Preferințele au fost editate dar nu au fost salvate." +msgstr "Tab-ul Preferințe a fost închis fără a salva." -#: FlatCAMApp.py:7032 flatcamTools/ToolNonCopperClear.py:596 -#: flatcamTools/ToolNonCopperClear.py:991 flatcamTools/ToolPaint.py:506 +#: FlatCAMApp.py:7068 flatcamTools/ToolNonCopperClear.py:596 +#: flatcamTools/ToolNonCopperClear.py:992 flatcamTools/ToolPaint.py:507 #: flatcamTools/ToolSolderPaste.py:562 flatcamTools/ToolSolderPaste.py:889 msgid "Please enter a tool diameter with non-zero value, in Float format." msgstr "" "Introduceti un diametru al uneltei valid: valoare ne-nula in format Real." -#: FlatCAMApp.py:7037 flatcamTools/ToolNonCopperClear.py:600 -#: flatcamTools/ToolPaint.py:510 flatcamTools/ToolSolderPaste.py:566 +#: FlatCAMApp.py:7073 flatcamTools/ToolNonCopperClear.py:600 +#: flatcamTools/ToolPaint.py:511 flatcamTools/ToolSolderPaste.py:566 msgid "Adding Tool cancelled" msgstr "Adăugarea unei unelte anulată" -#: FlatCAMApp.py:7040 +#: FlatCAMApp.py:7076 msgid "" "Adding Tool works only when Advanced is checked.\n" "Go to Preferences -> General - Show Advanced Options." @@ -645,11 +629,11 @@ msgstr "" "Adăugarea de unelte noi functionează doar in modul Avansat.\n" "Pentru aceasta mergi in Preferințe -> General - Activează Modul Avansat." -#: FlatCAMApp.py:7115 +#: FlatCAMApp.py:7151 msgid "Delete objects" msgstr "Șterge obiectele" -#: FlatCAMApp.py:7118 +#: FlatCAMApp.py:7154 msgid "" "Are you sure you want to permanently delete\n" "the selected objects?" @@ -657,102 +641,102 @@ msgstr "" "Sigur doriți să ștergeți definitiv\n" "obiectele selectate?" -#: FlatCAMApp.py:7149 +#: FlatCAMApp.py:7185 msgid "Object(s) deleted" msgstr "Obiect(ele) șters(e)" -#: FlatCAMApp.py:7153 +#: FlatCAMApp.py:7189 msgid "Failed. No object(s) selected..." msgstr "Eșuat. Nici-un obiect nu este selectat." -#: FlatCAMApp.py:7155 +#: FlatCAMApp.py:7191 msgid "Save the work in Editor and try again ..." msgstr "Salvează continutul din Editor și încearcă din nou." -#: FlatCAMApp.py:7185 +#: FlatCAMApp.py:7221 msgid "Object deleted" msgstr "Obiectul este șters" -#: FlatCAMApp.py:7212 +#: FlatCAMApp.py:7248 msgid "Click to set the origin ..." msgstr "Click pentru a seta originea..." -#: FlatCAMApp.py:7234 +#: FlatCAMApp.py:7270 msgid "Setting Origin..." msgstr "Setează Originea..." -#: FlatCAMApp.py:7246 +#: FlatCAMApp.py:7282 msgid "Origin set" msgstr "Originea a fost setată" -#: FlatCAMApp.py:7253 +#: FlatCAMApp.py:7289 msgid "Origin coordinates specified but incomplete." msgstr "Coordonate pentru origine specificate, dar incomplete." -#: FlatCAMApp.py:7311 +#: FlatCAMApp.py:7347 msgid "Jump to ..." msgstr "Sari la ..." -#: FlatCAMApp.py:7312 +#: FlatCAMApp.py:7348 msgid "Enter the coordinates in format X,Y:" msgstr "Introduceți coordonatele in format X,Y:" -#: FlatCAMApp.py:7320 +#: FlatCAMApp.py:7356 msgid "Wrong coordinates. Enter coordinates in format: X,Y" msgstr "Coordonate gresite. Introduceți coordonatele in format X,Y" -#: FlatCAMApp.py:7380 flatcamEditors/FlatCAMExcEditor.py:3518 +#: FlatCAMApp.py:7424 flatcamEditors/FlatCAMExcEditor.py:3518 #: flatcamEditors/FlatCAMExcEditor.py:3526 -#: flatcamEditors/FlatCAMGeoEditor.py:3887 -#: flatcamEditors/FlatCAMGeoEditor.py:3902 +#: flatcamEditors/FlatCAMGeoEditor.py:3885 +#: flatcamEditors/FlatCAMGeoEditor.py:3900 #: flatcamEditors/FlatCAMGrbEditor.py:1068 #: flatcamEditors/FlatCAMGrbEditor.py:1172 #: flatcamEditors/FlatCAMGrbEditor.py:1446 #: flatcamEditors/FlatCAMGrbEditor.py:1704 #: flatcamEditors/FlatCAMGrbEditor.py:4368 -#: flatcamEditors/FlatCAMGrbEditor.py:4383 flatcamGUI/FlatCAMGUI.py:2858 -#: flatcamGUI/FlatCAMGUI.py:2870 +#: flatcamEditors/FlatCAMGrbEditor.py:4383 flatcamGUI/FlatCAMGUI.py:2871 +#: flatcamGUI/FlatCAMGUI.py:2883 msgid "Done." msgstr "Executat." -#: FlatCAMApp.py:7532 FlatCAMApp.py:7603 +#: FlatCAMApp.py:7576 FlatCAMApp.py:7647 msgid "No object is selected. Select an object and try again." msgstr "" "Nici-un obiect nu este selectat. Selectează un obiect și incearcă din nou." -#: FlatCAMApp.py:7623 +#: FlatCAMApp.py:7667 msgid "" "Aborting. The current task will be gracefully closed as soon as possible..." msgstr "Intrerup. Taskul curent va fi închis cât mai curând posibil ..." -#: FlatCAMApp.py:7629 +#: FlatCAMApp.py:7673 msgid "The current task was gracefully closed on user request..." msgstr "Taskul curent a fost închis la cererea utilizatorului ..." -#: FlatCAMApp.py:7712 +#: FlatCAMApp.py:7756 msgid "Preferences edited but not saved." msgstr "Preferințele au fost editate dar nu au fost salvate." -#: FlatCAMApp.py:7726 FlatCAMApp.py:7738 FlatCAMApp.py:7755 FlatCAMApp.py:7772 -#: FlatCAMApp.py:7832 FlatCAMCommon.py:1133 FlatCAMCommon.py:1307 -#: FlatCAMObj.py:4107 +#: FlatCAMApp.py:7770 FlatCAMApp.py:7782 FlatCAMApp.py:7799 FlatCAMApp.py:7816 +#: FlatCAMApp.py:7876 FlatCAMCommon.py:1161 FlatCAMCommon.py:1336 +#: FlatCAMObj.py:4213 msgid "Tools Database" msgstr "Baza de Date Unelte" -#: FlatCAMApp.py:7752 +#: FlatCAMApp.py:7796 msgid "Tools in Tools Database edited but not saved." msgstr "Uneltele din Baza de date au fost editate dar nu au fost salvate." -#: FlatCAMApp.py:7776 +#: FlatCAMApp.py:7820 msgid "Tool from DB added in Tool Table." msgstr "Unealtă din Baza de date adăugată in Tabela de Unelte." -#: FlatCAMApp.py:7778 +#: FlatCAMApp.py:7822 msgid "Adding tool from DB is not allowed for this object." msgstr "" "Adaugarea unei unelte din Baza de date nu este permisa pt acest obiect." -#: FlatCAMApp.py:7812 +#: FlatCAMApp.py:7856 msgid "" "One or more values are changed.\n" "Do you want to save the Preferences?" @@ -760,113 +744,107 @@ msgstr "" "Una sau mai multe valori au fost schimbate.\n" "Dorești să salvezi Preferințele?" -#: FlatCAMApp.py:7814 flatcamGUI/FlatCAMGUI.py:216 +#: FlatCAMApp.py:7858 flatcamGUI/FlatCAMGUI.py:220 msgid "Save Preferences" msgstr "Salvează Pref" -#: FlatCAMApp.py:7838 -#, fuzzy -#| msgid "" -#| "One or more values are changed.\n" -#| "Do you want to save the Preferences?" +#: FlatCAMApp.py:7882 msgid "" "One or more Tools are edited.\n" "Do you want to update the Tools Database?" msgstr "" -"Una sau mai multe valori au fost schimbate.\n" -"Dorești să salvezi Preferințele?" +"Unul sau mai multe Unelte sunt editate.\n" +"Doriți să actualizați baza de date a Uneltelor?" -#: FlatCAMApp.py:7840 -#, fuzzy -#| msgid "Tool Data" +#: FlatCAMApp.py:7884 msgid "Save Tools Database" -msgstr "Date unealtă" +msgstr "Salvează baza de date Unelte" -#: FlatCAMApp.py:7859 FlatCAMApp.py:9927 FlatCAMObj.py:6258 +#: FlatCAMApp.py:7903 FlatCAMApp.py:10015 FlatCAMObj.py:6456 msgid "Code Editor" msgstr "Editor Cod" -#: FlatCAMApp.py:7877 +#: FlatCAMApp.py:7921 msgid "No object selected to Flip on Y axis." msgstr "Nu sete nici-un obiect selectat pentru oglindire pe axa Y." -#: FlatCAMApp.py:7903 +#: FlatCAMApp.py:7947 msgid "Flip on Y axis done." msgstr "Oglindire pe axa Y executată." -#: FlatCAMApp.py:7905 FlatCAMApp.py:7947 +#: FlatCAMApp.py:7949 FlatCAMApp.py:7991 #: flatcamEditors/FlatCAMGrbEditor.py:5773 msgid "Flip action was not executed." msgstr "Acțiunea de Oglindire nu a fost executată." -#: FlatCAMApp.py:7919 +#: FlatCAMApp.py:7963 msgid "No object selected to Flip on X axis." msgstr "Nu este nici-un obiect selectat pentru oglindire pe axa X." -#: FlatCAMApp.py:7945 +#: FlatCAMApp.py:7989 msgid "Flip on X axis done." msgstr "Oglindirea pe axa X executată." -#: FlatCAMApp.py:7961 +#: FlatCAMApp.py:8005 msgid "No object selected to Rotate." msgstr "Nici-un obiect selectat pentru Rotaţie." -#: FlatCAMApp.py:7964 FlatCAMApp.py:8011 FlatCAMApp.py:8044 +#: FlatCAMApp.py:8008 FlatCAMApp.py:8055 FlatCAMApp.py:8088 msgid "Transform" msgstr "Transformare" -#: FlatCAMApp.py:7964 FlatCAMApp.py:8011 FlatCAMApp.py:8044 +#: FlatCAMApp.py:8008 FlatCAMApp.py:8055 FlatCAMApp.py:8088 msgid "Enter the Angle value:" msgstr "Introduceți valoaea Unghiului:" -#: FlatCAMApp.py:7995 +#: FlatCAMApp.py:8039 msgid "Rotation done." msgstr "Rotaţie executată." -#: FlatCAMApp.py:7997 +#: FlatCAMApp.py:8041 msgid "Rotation movement was not executed." msgstr "Mișcarea de rotație nu a fost executată." -#: FlatCAMApp.py:8009 +#: FlatCAMApp.py:8053 msgid "No object selected to Skew/Shear on X axis." msgstr "Nici-un obiect nu este selectat pentru Deformare pe axa X." -#: FlatCAMApp.py:8031 +#: FlatCAMApp.py:8075 msgid "Skew on X axis done." msgstr "Deformare pe axa X terminată." -#: FlatCAMApp.py:8042 +#: FlatCAMApp.py:8086 msgid "No object selected to Skew/Shear on Y axis." msgstr "Nici-un obiect nu este selectat pentru Deformare pe axa Y." -#: FlatCAMApp.py:8064 +#: FlatCAMApp.py:8108 msgid "Skew on Y axis done." msgstr "Deformare pe axa Y terminată." -#: FlatCAMApp.py:8212 FlatCAMApp.py:8259 flatcamGUI/FlatCAMGUI.py:418 -#: flatcamGUI/FlatCAMGUI.py:1453 +#: FlatCAMApp.py:8256 FlatCAMApp.py:8303 flatcamGUI/FlatCAMGUI.py:429 +#: flatcamGUI/FlatCAMGUI.py:1465 msgid "Select All" msgstr "Selectează toate" -#: FlatCAMApp.py:8216 FlatCAMApp.py:8263 flatcamGUI/FlatCAMGUI.py:421 +#: FlatCAMApp.py:8260 FlatCAMApp.py:8307 flatcamGUI/FlatCAMGUI.py:432 msgid "Deselect All" msgstr "Deselectează toate" -#: FlatCAMApp.py:8279 +#: FlatCAMApp.py:8323 msgid "All objects are selected." msgstr "Totate obiectele sunt selectate." -#: FlatCAMApp.py:8289 +#: FlatCAMApp.py:8333 msgid "Objects selection is cleared." msgstr "Nici-un obiect nu este selectat." -#: FlatCAMApp.py:8305 flatcamGUI/FlatCAMGUI.py:1446 +#: FlatCAMApp.py:8349 flatcamGUI/FlatCAMGUI.py:1458 msgid "Grid On/Off" msgstr "Grid On/Off" -#: FlatCAMApp.py:8318 flatcamEditors/FlatCAMGeoEditor.py:942 +#: FlatCAMApp.py:8362 flatcamEditors/FlatCAMGeoEditor.py:940 #: flatcamEditors/FlatCAMGrbEditor.py:2503 -#: flatcamEditors/FlatCAMGrbEditor.py:5346 flatcamGUI/ObjectUI.py:1228 +#: flatcamEditors/FlatCAMGrbEditor.py:5346 flatcamGUI/ObjectUI.py:1265 #: flatcamTools/ToolDblSided.py:185 flatcamTools/ToolDblSided.py:238 #: flatcamTools/ToolNonCopperClear.py:286 flatcamTools/ToolPaint.py:188 #: flatcamTools/ToolSolderPaste.py:121 flatcamTools/ToolSolderPaste.py:591 @@ -874,77 +852,76 @@ msgstr "Grid On/Off" msgid "Add" msgstr "Adaugă" -#: FlatCAMApp.py:8319 FlatCAMObj.py:3798 +#: FlatCAMApp.py:8363 FlatCAMObj.py:3900 #: flatcamEditors/FlatCAMGrbEditor.py:2508 -#: flatcamEditors/FlatCAMGrbEditor.py:2656 flatcamGUI/FlatCAMGUI.py:600 -#: flatcamGUI/FlatCAMGUI.py:840 flatcamGUI/FlatCAMGUI.py:1859 -#: flatcamGUI/FlatCAMGUI.py:1955 flatcamGUI/FlatCAMGUI.py:2279 -#: flatcamGUI/ObjectUI.py:1254 flatcamTools/ToolNonCopperClear.py:298 +#: flatcamEditors/FlatCAMGrbEditor.py:2656 flatcamGUI/FlatCAMGUI.py:611 +#: flatcamGUI/FlatCAMGUI.py:852 flatcamGUI/FlatCAMGUI.py:1871 +#: flatcamGUI/FlatCAMGUI.py:1967 flatcamGUI/FlatCAMGUI.py:2292 +#: flatcamGUI/ObjectUI.py:1291 flatcamTools/ToolNonCopperClear.py:298 #: flatcamTools/ToolPaint.py:200 flatcamTools/ToolSolderPaste.py:127 #: flatcamTools/ToolSolderPaste.py:593 msgid "Delete" msgstr "Șterge" -#: FlatCAMApp.py:8332 +#: FlatCAMApp.py:8376 msgid "New Grid ..." msgstr "Grid nou ..." -#: FlatCAMApp.py:8333 +#: FlatCAMApp.py:8377 msgid "Enter a Grid Value:" msgstr "Introduceti of valoare pt Grid:" -#: FlatCAMApp.py:8341 FlatCAMApp.py:8368 +#: FlatCAMApp.py:8385 FlatCAMApp.py:8412 msgid "Please enter a grid value with non-zero value, in Float format." msgstr "Introduceți o valoare pentru Grila ne-nula și in format Real." -#: FlatCAMApp.py:8347 +#: FlatCAMApp.py:8391 msgid "New Grid added" msgstr "Grid nou" -#: FlatCAMApp.py:8350 +#: FlatCAMApp.py:8394 msgid "Grid already exists" msgstr "Grila există deja" -#: FlatCAMApp.py:8353 +#: FlatCAMApp.py:8397 msgid "Adding New Grid cancelled" msgstr "Adăugarea unei valori de Grilă a fost anulată" -#: FlatCAMApp.py:8375 +#: FlatCAMApp.py:8419 msgid " Grid Value does not exist" msgstr " Valoarea Grilei nu există" -#: FlatCAMApp.py:8378 +#: FlatCAMApp.py:8422 msgid "Grid Value deleted" msgstr "Valoarea Grila a fost stearsă" -#: FlatCAMApp.py:8381 +#: FlatCAMApp.py:8425 msgid "Delete Grid value cancelled" msgstr "Ștergerea unei valori de Grilă a fost anulată" -#: FlatCAMApp.py:8387 +#: FlatCAMApp.py:8431 msgid "Key Shortcut List" msgstr "Lista de shortcut-uri" -#: FlatCAMApp.py:8421 +#: FlatCAMApp.py:8465 msgid " No object selected to copy it's name" msgstr " Nici-un obiect nu este selectat pentru i se copia valoarea" -#: FlatCAMApp.py:8425 +#: FlatCAMApp.py:8469 msgid "Name copied on clipboard ..." msgstr "Numele a fost copiat pe Clipboard ..." -#: FlatCAMApp.py:8628 flatcamEditors/FlatCAMGrbEditor.py:4300 +#: FlatCAMApp.py:8666 flatcamEditors/FlatCAMGrbEditor.py:4300 msgid "Coordinates copied to clipboard." msgstr "Coordonatele au fost copiate in clipboard." -#: FlatCAMApp.py:8839 FlatCAMApp.py:8842 FlatCAMApp.py:8845 FlatCAMApp.py:8848 -#: ObjectCollection.py:788 ObjectCollection.py:791 ObjectCollection.py:794 -#: ObjectCollection.py:797 ObjectCollection.py:800 ObjectCollection.py:803 -#, python-brace-format -msgid "[selected]{name} selected" -msgstr "[selected]{name} selectat" +#: FlatCAMApp.py:8880 FlatCAMApp.py:8886 FlatCAMApp.py:8892 FlatCAMApp.py:8898 +#: ObjectCollection.py:791 ObjectCollection.py:797 ObjectCollection.py:803 +#: ObjectCollection.py:809 ObjectCollection.py:815 ObjectCollection.py:821 +msgid "selected" +msgstr "selectat" -#: FlatCAMApp.py:8990 +#: FlatCAMApp.py:9040 msgid "" "There are files/objects opened in FlatCAM.\n" "Creating a New project will delete them.\n" @@ -954,333 +931,359 @@ msgstr "" "Crearea unui nou Proiect le va șterge..\n" "Doriti să Salvati proiectul curentt?" -#: FlatCAMApp.py:9012 +#: FlatCAMApp.py:9062 msgid "New Project created" msgstr "Un nou Proiect a fost creat" -#: FlatCAMApp.py:9147 FlatCAMApp.py:9151 flatcamGUI/FlatCAMGUI.py:685 -#: flatcamGUI/FlatCAMGUI.py:2137 +#: FlatCAMApp.py:9197 FlatCAMApp.py:9201 flatcamGUI/FlatCAMGUI.py:696 +#: flatcamGUI/FlatCAMGUI.py:2149 msgid "Open Gerber" msgstr "Încarcă Gerber" -#: FlatCAMApp.py:9158 +#: FlatCAMApp.py:9208 msgid "Opening Gerber file." msgstr "Se incarcă un fişier Gerber." -#: FlatCAMApp.py:9164 +#: FlatCAMApp.py:9214 msgid "Open Gerber cancelled." msgstr "Incărcarea unui fişier Gerber este anulată." -#: FlatCAMApp.py:9185 FlatCAMApp.py:9189 flatcamGUI/FlatCAMGUI.py:686 -#: flatcamGUI/FlatCAMGUI.py:2138 +#: FlatCAMApp.py:9235 FlatCAMApp.py:9239 flatcamGUI/FlatCAMGUI.py:697 +#: flatcamGUI/FlatCAMGUI.py:2150 msgid "Open Excellon" msgstr "Încarcă Excellon" -#: FlatCAMApp.py:9195 +#: FlatCAMApp.py:9245 msgid "Opening Excellon file." msgstr "Se incarcă un fişier Excellon." -#: FlatCAMApp.py:9201 +#: FlatCAMApp.py:9251 msgid " Open Excellon cancelled." msgstr " Incărcarea unui fişier Excellon este anulată." -#: FlatCAMApp.py:9225 FlatCAMApp.py:9229 +#: FlatCAMApp.py:9275 FlatCAMApp.py:9279 msgid "Open G-Code" msgstr "Încarcă G-Code" -#: FlatCAMApp.py:9236 +#: FlatCAMApp.py:9286 msgid "Opening G-Code file." msgstr "Se incarcă un fişier G-Code." -#: FlatCAMApp.py:9242 +#: FlatCAMApp.py:9292 msgid "Open G-Code cancelled." msgstr "Incărcarea unui fişier G-Code este anulată." -#: FlatCAMApp.py:9260 FlatCAMApp.py:9263 flatcamGUI/FlatCAMGUI.py:1455 +#: FlatCAMApp.py:9310 FlatCAMApp.py:9313 flatcamGUI/FlatCAMGUI.py:1467 msgid "Open Project" msgstr "Încarcă Project" -#: FlatCAMApp.py:9272 +#: FlatCAMApp.py:9322 msgid "Open Project cancelled." msgstr "Incărcarea unui fişier Proiect FlatCAM este anulată." -#: FlatCAMApp.py:9292 FlatCAMApp.py:9295 +#: FlatCAMApp.py:9346 FlatCAMApp.py:9350 +msgid "Open HPGL2" +msgstr "Încarcă HPGL2" + +#: FlatCAMApp.py:9357 +msgid "Opening HPGL2 file." +msgstr "Se incarcă un fişier HPGL2." + +#: FlatCAMApp.py:9362 +msgid "Open HPGL2 file cancelled." +msgstr "Incărcarea fișierului HPGL2 a fost anulată." + +#: FlatCAMApp.py:9380 FlatCAMApp.py:9383 msgid "Open Configuration File" msgstr "Încarcă un fişier de Configurare" -#: FlatCAMApp.py:9300 +#: FlatCAMApp.py:9388 msgid "Open Config cancelled." msgstr "Incărcarea unui fişier configurare FlatCAM este anulată." -#: FlatCAMApp.py:9316 FlatCAMApp.py:9684 +#: FlatCAMApp.py:9404 FlatCAMApp.py:9772 FlatCAMApp.py:10246 msgid "No object selected." msgstr "Nici-un obiect nu este selectat." -#: FlatCAMApp.py:9317 FlatCAMApp.py:9685 +#: FlatCAMApp.py:9405 FlatCAMApp.py:9773 msgid "Please Select a Geometry object to export" msgstr "Selectează un obiect Geometrie pentru export" -#: FlatCAMApp.py:9331 +#: FlatCAMApp.py:9419 msgid "Only Geometry, Gerber and CNCJob objects can be used." msgstr "Doar obiectele Geometrie, Gerber și CNCJob pot fi folosite." -#: FlatCAMApp.py:9344 FlatCAMApp.py:9348 flatcamTools/ToolQRCode.py:827 +#: FlatCAMApp.py:9432 FlatCAMApp.py:9436 flatcamTools/ToolQRCode.py:827 #: flatcamTools/ToolQRCode.py:831 msgid "Export SVG" msgstr "Exporta SVG" -#: FlatCAMApp.py:9354 flatcamTools/ToolQRCode.py:836 +#: FlatCAMApp.py:9442 flatcamTools/ToolQRCode.py:836 msgid " Export SVG cancelled." msgstr " Exportul fisierului SVG a fost anulat." -#: FlatCAMApp.py:9375 +#: FlatCAMApp.py:9463 msgid "Data must be a 3D array with last dimension 3 or 4" msgstr "" "Datele trebuie să fie organizate intr-o arie 3D cu ultima dimensiune cu " "valoarea 3 sau 4" -#: FlatCAMApp.py:9381 FlatCAMApp.py:9385 +#: FlatCAMApp.py:9469 FlatCAMApp.py:9473 msgid "Export PNG Image" msgstr "Exporta imagine PNG" -#: FlatCAMApp.py:9390 +#: FlatCAMApp.py:9478 msgid "Export PNG cancelled." msgstr "Exportul imagine PNG este anulat." -#: FlatCAMApp.py:9414 +#: FlatCAMApp.py:9502 msgid "No object selected. Please select an Gerber object to export." msgstr "Nici-un obiect selectat. Selectează un obiect Gerber pentru export." -#: FlatCAMApp.py:9420 FlatCAMApp.py:9643 +#: FlatCAMApp.py:9508 FlatCAMApp.py:9731 msgid "Failed. Only Gerber objects can be saved as Gerber files..." msgstr "Eșuat. Doar obiectele tip Gerber pot fi salvate ca fişiere Gerber..." -#: FlatCAMApp.py:9432 +#: FlatCAMApp.py:9520 msgid "Save Gerber source file" msgstr "Salvează codul sursa Gerber ca fişier" -#: FlatCAMApp.py:9438 +#: FlatCAMApp.py:9526 msgid "Save Gerber source file cancelled." msgstr "Salvarea codului sursa Gerber este anulată." -#: FlatCAMApp.py:9458 +#: FlatCAMApp.py:9546 msgid "No object selected. Please select an Script object to export." msgstr "Nici-un obiect selectat. Selectează un obiect Script pentru export." -#: FlatCAMApp.py:9464 +#: FlatCAMApp.py:9552 msgid "Failed. Only Script objects can be saved as TCL Script files..." msgstr "" "Eșuat. Doar obiectele tip Script pot fi salvate ca fişiere TCL Script..." -#: FlatCAMApp.py:9476 +#: FlatCAMApp.py:9564 msgid "Save Script source file" msgstr "Salvează codul sursa Script ca fişier" -#: FlatCAMApp.py:9482 +#: FlatCAMApp.py:9570 msgid "Save Script source file cancelled." msgstr "Salvarea codului sursa Script este anulată." -#: FlatCAMApp.py:9502 +#: FlatCAMApp.py:9590 msgid "No object selected. Please select an Document object to export." msgstr "Nici-un obiect selectat. Selectează un obiect Document pentru export." -#: FlatCAMApp.py:9508 +#: FlatCAMApp.py:9596 msgid "Failed. Only Document objects can be saved as Document files..." msgstr "" "Eșuat. Doar obiectele tip Document pot fi salvate ca fişiere Document ..." -#: FlatCAMApp.py:9520 +#: FlatCAMApp.py:9608 msgid "Save Document source file" msgstr "Salvează codul sursa Document ca fişier" -#: FlatCAMApp.py:9526 +#: FlatCAMApp.py:9614 msgid "Save Document source file cancelled." msgstr "Salvarea codului sursa Document este anulată." -#: FlatCAMApp.py:9546 +#: FlatCAMApp.py:9634 msgid "No object selected. Please select an Excellon object to export." msgstr "Nici-un obiect selectat. Selectează un obiect Excellon pentru export." -#: FlatCAMApp.py:9552 FlatCAMApp.py:9596 FlatCAMApp.py:10288 +#: FlatCAMApp.py:9640 FlatCAMApp.py:9684 FlatCAMApp.py:10422 msgid "Failed. Only Excellon objects can be saved as Excellon files..." msgstr "" "Eșuat. Doar obiectele tip Excellon pot fi salvate ca fişiere Excellon ..." -#: FlatCAMApp.py:9560 FlatCAMApp.py:9564 +#: FlatCAMApp.py:9648 FlatCAMApp.py:9652 msgid "Save Excellon source file" msgstr "Salvează codul sursa Excellon ca fişier" -#: FlatCAMApp.py:9570 +#: FlatCAMApp.py:9658 msgid "Saving Excellon source file cancelled." msgstr "Salvarea codului sursa Excellon este anulată." -#: FlatCAMApp.py:9590 +#: FlatCAMApp.py:9678 msgid "No object selected. Please Select an Excellon object to export." msgstr "Nici-un obiect selectat. Selectează un obiect Excellon pentru export." -#: FlatCAMApp.py:9604 FlatCAMApp.py:9608 +#: FlatCAMApp.py:9692 FlatCAMApp.py:9696 msgid "Export Excellon" msgstr "Exportă Excellon" -#: FlatCAMApp.py:9614 +#: FlatCAMApp.py:9702 msgid "Export Excellon cancelled." msgstr "Exportul fișierului Excellon a fost anulat." -#: FlatCAMApp.py:9637 +#: FlatCAMApp.py:9725 msgid "No object selected. Please Select an Gerber object to export." msgstr "Nici-un obiect selectat. Selectează un obiect Gerber pentru export." -#: FlatCAMApp.py:9651 FlatCAMApp.py:9655 +#: FlatCAMApp.py:9739 FlatCAMApp.py:9743 msgid "Export Gerber" msgstr "Exportă Gerber" -#: FlatCAMApp.py:9661 +#: FlatCAMApp.py:9749 msgid "Export Gerber cancelled." msgstr "Exportul fișierului Gerber a fost anulat." -#: FlatCAMApp.py:9696 +#: FlatCAMApp.py:9784 msgid "Only Geometry objects can be used." msgstr "Doar obiecte tip Geometrie pot fi folosite." -#: FlatCAMApp.py:9710 FlatCAMApp.py:9714 +#: FlatCAMApp.py:9798 FlatCAMApp.py:9802 msgid "Export DXF" msgstr "Exportă DXF" -#: FlatCAMApp.py:9721 +#: FlatCAMApp.py:9809 msgid "Export DXF cancelled." msgstr "Exportul fișierului DXF a fost anulat." -#: FlatCAMApp.py:9741 FlatCAMApp.py:9744 +#: FlatCAMApp.py:9829 FlatCAMApp.py:9832 msgid "Import SVG" msgstr "Importă SVG" -#: FlatCAMApp.py:9754 +#: FlatCAMApp.py:9842 msgid "Open SVG cancelled." msgstr "Incărcarea fișierului SVG a fost anulată." -#: FlatCAMApp.py:9773 FlatCAMApp.py:9777 +#: FlatCAMApp.py:9861 FlatCAMApp.py:9865 msgid "Import DXF" msgstr "Importa DXF" -#: FlatCAMApp.py:9787 +#: FlatCAMApp.py:9875 msgid "Open DXF cancelled." msgstr "Incărcarea fișierului DXF a fost anulată." -#: FlatCAMApp.py:9829 +#: FlatCAMApp.py:9917 msgid "Viewing the source code of the selected object." msgstr "Vizualizarea codului sursă a obiectului selectat." -#: FlatCAMApp.py:9830 FlatCAMObj.py:6244 FlatCAMObj.py:6835 +#: FlatCAMApp.py:9918 FlatCAMObj.py:6442 FlatCAMObj.py:7043 msgid "Loading..." msgstr "Se incarcă..." -#: FlatCAMApp.py:9836 FlatCAMApp.py:9840 +#: FlatCAMApp.py:9924 FlatCAMApp.py:9928 msgid "Select an Gerber or Excellon file to view it's source file." msgstr "Selectati un obiect Gerber sau Excellon pentru a-i vedea codul sursa." -#: FlatCAMApp.py:9854 +#: FlatCAMApp.py:9942 msgid "Source Editor" msgstr "Editor Cod Sursă" -#: FlatCAMApp.py:9894 FlatCAMApp.py:9901 +#: FlatCAMApp.py:9982 FlatCAMApp.py:9989 msgid "There is no selected object for which to see it's source file code." msgstr "Nici-un obiect selectat pentru a-i vedea codul sursa." -#: FlatCAMApp.py:9913 +#: FlatCAMApp.py:10001 msgid "Failed to load the source code for the selected object" msgstr "Codul sursă pentru obiectul selectat nu a putut fi încărcat" -#: FlatCAMApp.py:9955 +#: FlatCAMApp.py:10043 msgid "New TCL script file created in Code Editor." msgstr "Un nou script TCL a fost creat in Editorul de cod." -#: FlatCAMApp.py:9993 FlatCAMApp.py:9995 +#: FlatCAMApp.py:10081 FlatCAMApp.py:10083 msgid "Open TCL script" msgstr "Încarcă TCL script" -#: FlatCAMApp.py:9999 +#: FlatCAMApp.py:10087 msgid "Open TCL script cancelled." msgstr "Incărcarea fisierului TCL script anulată." -#: FlatCAMApp.py:10023 +#: FlatCAMApp.py:10111 msgid "Executing FlatCAMScript file." msgstr "Se executa un fisier script FlatCAM." -#: FlatCAMApp.py:10030 FlatCAMApp.py:10033 +#: FlatCAMApp.py:10118 FlatCAMApp.py:10121 msgid "Run TCL script" msgstr "Ruleaza TCL script" -#: FlatCAMApp.py:10043 +#: FlatCAMApp.py:10131 msgid "Run TCL script cancelled." msgstr "Executarea fisierului Script a fost anulată." -#: FlatCAMApp.py:10059 +#: FlatCAMApp.py:10147 msgid "TCL script file opened in Code Editor and executed." msgstr "Un fisier script TCL a fost deschis in Editorul de cod si executat." -#: FlatCAMApp.py:10110 FlatCAMApp.py:10114 +#: FlatCAMApp.py:10198 FlatCAMApp.py:10204 msgid "Save Project As ..." msgstr "Salvează Proiectul ca ..." -#: FlatCAMApp.py:10111 -#, python-brace-format -msgid "{l_save}/Project_{date}" -msgstr "{l_save}/Proiect_{date}" +#: FlatCAMApp.py:10200 flatcamGUI/FlatCAMGUI.py:909 +#: flatcamGUI/FlatCAMGUI.py:1899 +msgid "Project" +msgstr "Proiect" -#: FlatCAMApp.py:10120 +#: FlatCAMApp.py:10209 msgid "Save Project cancelled." msgstr "Salvarea Proiect anulată." -#: FlatCAMApp.py:10168 +#: FlatCAMApp.py:10216 +msgid "The object is used by another application." +msgstr "Obiectul este folosit de o altă aplicație." + +#: FlatCAMApp.py:10252 FlatCAMApp.py:10259 flatcamGUI/FlatCAMGUI.py:261 +msgid "Save Object as PDF ..." +msgstr "Salvați obiectul în format PDF ..." + +#: FlatCAMApp.py:10264 +msgid "Save Object PDF cancelled." +msgstr "Salvarea obiectului PDF anulată." + +#: FlatCAMApp.py:10302 msgid "Exporting SVG" msgstr "SVG in curs de export" -#: FlatCAMApp.py:10212 +#: FlatCAMApp.py:10346 msgid "SVG file exported to" msgstr "Fişier SVG exportat in" -#: FlatCAMApp.py:10237 +#: FlatCAMApp.py:10371 msgid "" "Save cancelled because source file is empty. Try to export the Gerber file." msgstr "" +"Salvare anulată deoarece fișierul sursă este gol. Încercați să exportați " +"fișierul Gerber." -#: FlatCAMApp.py:10383 +#: FlatCAMApp.py:10517 msgid "Excellon file exported to" msgstr "Fişierul Excellon exportat in" -#: FlatCAMApp.py:10392 +#: FlatCAMApp.py:10526 msgid "Exporting Excellon" msgstr "Excellon in curs de export" -#: FlatCAMApp.py:10398 FlatCAMApp.py:10406 +#: FlatCAMApp.py:10532 FlatCAMApp.py:10540 msgid "Could not export Excellon file." msgstr "Fişierul Excellon nu a fost posibil să fie exportat." -#: FlatCAMApp.py:10522 +#: FlatCAMApp.py:10656 msgid "Gerber file exported to" msgstr "Fişier Gerber exportat in" -#: FlatCAMApp.py:10530 +#: FlatCAMApp.py:10664 msgid "Exporting Gerber" msgstr "Gerber in curs de export" -#: FlatCAMApp.py:10536 FlatCAMApp.py:10544 +#: FlatCAMApp.py:10670 FlatCAMApp.py:10678 msgid "Could not export Gerber file." msgstr "Fişierul Gerber nu a fost posibil să fie exportat." -#: FlatCAMApp.py:10578 +#: FlatCAMApp.py:10712 msgid "DXF file exported to" msgstr "Fişierul DXF exportat in" -#: FlatCAMApp.py:10584 +#: FlatCAMApp.py:10718 msgid "Exporting DXF" msgstr "DXF in curs de export" -#: FlatCAMApp.py:10589 FlatCAMApp.py:10596 +#: FlatCAMApp.py:10723 FlatCAMApp.py:10730 msgid "Could not export DXF file." msgstr "Fişierul DXF nu a fost posibil să fie exportat." -#: FlatCAMApp.py:10619 FlatCAMApp.py:10662 flatcamTools/ToolImage.py:278 +#: FlatCAMApp.py:10753 FlatCAMApp.py:10796 flatcamTools/ToolImage.py:278 msgid "" "Not supported type is picked as parameter. Only Geometry and Gerber are " "supported" @@ -1288,85 +1291,87 @@ msgstr "" "Tipul parametrului nu este compatibil. Doar obiectele tip Geometrie si " "Gerber sunt acceptate" -#: FlatCAMApp.py:10629 +#: FlatCAMApp.py:10763 msgid "Importing SVG" msgstr "SVG in curs de ia fi importat" -#: FlatCAMApp.py:10640 FlatCAMApp.py:10682 FlatCAMApp.py:10741 -#: FlatCAMApp.py:10808 FlatCAMApp.py:10871 FlatCAMApp.py:10909 -#: flatcamTools/ToolImage.py:298 flatcamTools/ToolPDF.py:225 +#: FlatCAMApp.py:10774 FlatCAMApp.py:10816 FlatCAMApp.py:10875 +#: FlatCAMApp.py:10942 FlatCAMApp.py:11005 FlatCAMApp.py:11072 +#: FlatCAMApp.py:11110 flatcamTools/ToolImage.py:298 +#: flatcamTools/ToolPDF.py:225 msgid "Opened" msgstr "Încarcat" -#: FlatCAMApp.py:10671 +#: FlatCAMApp.py:10805 msgid "Importing DXF" msgstr "DXF in curs de a fi importat" -#: FlatCAMApp.py:10707 +#: FlatCAMApp.py:10841 FlatCAMApp.py:11031 msgid "Failed to open file" msgstr "Eşec in incărcarea fişierului" -#: FlatCAMApp.py:10710 +#: FlatCAMApp.py:10844 FlatCAMApp.py:11034 msgid "Failed to parse file" msgstr "Parsarea fişierului a eșuat" -#: FlatCAMApp.py:10715 FlatCAMApp.py:10776 FlatCAMObj.py:4898 -#: flatcamEditors/FlatCAMGrbEditor.py:4110 flatcamTools/ToolPcbWizard.py:437 +#: FlatCAMApp.py:10849 FlatCAMApp.py:10910 FlatCAMApp.py:11039 +#: FlatCAMObj.py:5004 flatcamEditors/FlatCAMGrbEditor.py:4110 +#: flatcamTools/ToolPcbWizard.py:437 msgid "An internal error has occurred. See shell.\n" msgstr "" "A apărut o eroare internă. Verifică in TCL Shell pt mai multe detalii.\n" -#: FlatCAMApp.py:10722 +#: FlatCAMApp.py:10856 msgid "Object is not Gerber file or empty. Aborting object creation." msgstr "" "Obiectul nu estetip Gerber sau este gol. Se anulează crearea obiectului." -#: FlatCAMApp.py:10727 +#: FlatCAMApp.py:10861 msgid "Opening Gerber" msgstr "Gerber in curs de incărcare" -#: FlatCAMApp.py:10734 +#: FlatCAMApp.py:10868 msgid " Open Gerber failed. Probable not a Gerber file." msgstr " Incărcarea Gerber a eșuat. Probabil nu este de tip Gerber." -#: FlatCAMApp.py:10766 flatcamTools/ToolPcbWizard.py:427 +#: FlatCAMApp.py:10900 flatcamTools/ToolPcbWizard.py:427 msgid "This is not Excellon file." msgstr "Acesta nu este un fişier Excellon." -#: FlatCAMApp.py:10770 +#: FlatCAMApp.py:10904 msgid "Cannot open file" msgstr "Nu se poate incărca fişierul" -#: FlatCAMApp.py:10790 flatcamTools/ToolPDF.py:275 +#: FlatCAMApp.py:10924 flatcamTools/ToolPDF.py:275 #: flatcamTools/ToolPcbWizard.py:451 msgid "No geometry found in file" msgstr "Nici-o informaţie de tip geometrie nu s-a gasit in fişierul" -#: FlatCAMApp.py:10793 +#: FlatCAMApp.py:10927 msgid "Opening Excellon." msgstr "Excellon in curs de incărcare." -#: FlatCAMApp.py:10800 +#: FlatCAMApp.py:10934 msgid "Open Excellon file failed. Probable not an Excellon file." msgstr "Incărcarea Excellon a eșuat. Probabil nu este de tip Excellon." -#: FlatCAMApp.py:10831 +#: FlatCAMApp.py:10965 msgid "Reading GCode file" msgstr "Se citeşte un fişier G-Code" -#: FlatCAMApp.py:10838 +#: FlatCAMApp.py:10972 msgid "Failed to open" msgstr "A eșuat incărcarea fişierului" -#: FlatCAMApp.py:10846 +#: FlatCAMApp.py:10980 msgid "This is not GCODE" msgstr "Acest obiect nu este de tip GCode" -#: FlatCAMApp.py:10851 +#: FlatCAMApp.py:10985 msgid "Opening G-Code." msgstr "G-Code in curs de incărcare." -#: FlatCAMApp.py:10860 +#: FlatCAMApp.py:10994 msgid "" "Failed to create CNCJob Object. Probable not a GCode file. Try to load it " "from File menu.\n" @@ -1377,55 +1382,68 @@ msgstr "" "Încercați să-l încărcați din meniul Fișier. \n" "Incercarea de a crea un obiect CNCJob din G-Code a eșuat in timpul procesarii" -#: FlatCAMApp.py:10885 +#: FlatCAMApp.py:11053 +msgid "Object is not HPGL2 file or empty. Aborting object creation." +msgstr "" +"Obiectul nu este fișier HPGL2 sau este gol. Se renunta la crearea obiectului." + +#: FlatCAMApp.py:11058 +msgid "Opening HPGL2" +msgstr "HPGL2 in curs de incărcare" + +#: FlatCAMApp.py:11065 +msgid " Open HPGL2 failed. Probable not a HPGL2 file." +msgstr " Incărcarea HPGL2 a eșuat. Probabil nu este de tip HPGL2 ." + +#: FlatCAMApp.py:11086 msgid "Opening TCL Script..." msgstr "Încarcă TCL script..." -#: FlatCAMApp.py:10893 +#: FlatCAMApp.py:11094 msgid "TCL script file opened in Code Editor." msgstr "S-a încărcat un script TCL în Editorul Cod." -#: FlatCAMApp.py:10896 +#: FlatCAMApp.py:11097 msgid "Failed to open TCL Script." msgstr "Eşec in incărcarea fişierului TCL." -#: FlatCAMApp.py:10924 +#: FlatCAMApp.py:11125 msgid "Opening FlatCAM Config file." msgstr "Se incarca un fişier FlatCAM de configurare." -#: FlatCAMApp.py:10952 +#: FlatCAMApp.py:11153 msgid "Failed to open config file" msgstr "Eşec in incărcarea fişierului de configurare" -#: FlatCAMApp.py:10978 +#: FlatCAMApp.py:11179 msgid "Loading Project ... Please Wait ..." msgstr "Se încarcă proiectul ... Vă rugăm să așteptați ..." -#: FlatCAMApp.py:10983 +#: FlatCAMApp.py:11184 msgid "Opening FlatCAM Project file." msgstr "Se incarca un fisier proiect FlatCAM." -#: FlatCAMApp.py:10993 FlatCAMApp.py:11011 +#: FlatCAMApp.py:11194 FlatCAMApp.py:11212 msgid "Failed to open project file" msgstr "Eşec in incărcarea fişierului proiect" -#: FlatCAMApp.py:11045 +#: FlatCAMApp.py:11246 msgid "Loading Project ... restoring" msgstr "Se încarcă proiectul ... se restabileste" -#: FlatCAMApp.py:11054 +#: FlatCAMApp.py:11255 msgid "Project loaded from" msgstr "Proiectul a fost incărcat din" -#: FlatCAMApp.py:11117 +#: FlatCAMApp.py:11318 msgid "Redrawing all objects" msgstr "Toate obiectele sunt reafisate" -#: FlatCAMApp.py:11149 +#: FlatCAMApp.py:11350 msgid "Available commands:\n" msgstr "Comenzi disponibile:\n" -#: FlatCAMApp.py:11151 +#: FlatCAMApp.py:11352 msgid "" "\n" "\n" @@ -1437,51 +1455,51 @@ msgstr "" "Introduceți help pentru utilizare.\n" "Exemplu: help open_gerber" -#: FlatCAMApp.py:11301 +#: FlatCAMApp.py:11502 msgid "Shows list of commands." msgstr "Arata o lista de comenzi." -#: FlatCAMApp.py:11363 +#: FlatCAMApp.py:11564 msgid "Failed to load recent item list." msgstr "Eşec in incărcarea listei cu fişiere recente." -#: FlatCAMApp.py:11371 +#: FlatCAMApp.py:11572 msgid "Failed to parse recent item list." msgstr "Eşec in parsarea listei cu fişiere recente." -#: FlatCAMApp.py:11382 +#: FlatCAMApp.py:11583 msgid "Failed to load recent projects item list." msgstr "Eşec in incărcarea listei cu proiecte recente." -#: FlatCAMApp.py:11390 +#: FlatCAMApp.py:11591 msgid "Failed to parse recent project item list." msgstr "Eşec in parsarea listei cu proiecte recente." -#: FlatCAMApp.py:11449 +#: FlatCAMApp.py:11650 msgid "Clear Recent projects" msgstr "Sterge Proiectele recente" -#: FlatCAMApp.py:11472 +#: FlatCAMApp.py:11673 msgid "Clear Recent files" msgstr "Sterge fişierele recente" -#: FlatCAMApp.py:11489 flatcamGUI/FlatCAMGUI.py:1121 +#: FlatCAMApp.py:11690 flatcamGUI/FlatCAMGUI.py:1133 msgid "Shortcut Key List" msgstr "Lista cu taste Shortcut" -#: FlatCAMApp.py:11563 +#: FlatCAMApp.py:11764 msgid "Selected Tab - Choose an Item from Project Tab" msgstr "Tab-ul Selectat - Alege un obiect din Tab-ul Proiect" -#: FlatCAMApp.py:11564 +#: FlatCAMApp.py:11765 msgid "Details" msgstr "Detalii" -#: FlatCAMApp.py:11566 +#: FlatCAMApp.py:11767 msgid "The normal flow when working in FlatCAM is the following:" msgstr "Fluxul normal cand se lucreaza in FlatCAM este urmatorul:" -#: FlatCAMApp.py:11567 +#: FlatCAMApp.py:11768 msgid "" "Load/Import a Gerber, Excellon, Gcode, DXF, Raster Image or SVG file into " "FlatCAM using either the toolbars, key shortcuts or even dragging and " @@ -1491,7 +1509,7 @@ msgstr "" "sau SVG în FlatCAM utilizând fie barele de instrumente, combinatii de taste " "sau chiar tragând fișierele în GUI." -#: FlatCAMApp.py:11570 +#: FlatCAMApp.py:11771 msgid "" "You can also load a FlatCAM project by double clicking on the project file, " "drag and drop of the file into the FLATCAM GUI or through the menu (or " @@ -1501,7 +1519,7 @@ msgstr "" "proiectului, tragând fișierul în fereastra FLATCAM sau prin icon-urile din " "meniu (sau din bara de instrumente) oferite în aplicație." -#: FlatCAMApp.py:11573 +#: FlatCAMApp.py:11774 msgid "" "Once an object is available in the Project Tab, by selecting it and then " "focusing on SELECTED TAB (more simpler is to double click the object name in " @@ -1514,7 +1532,7 @@ msgstr "" "proprietățile obiectului în funcție de tipul său: Gerber, Excellon, " "Geometrie sau obiect CNCJob." -#: FlatCAMApp.py:11577 +#: FlatCAMApp.py:11778 msgid "" "If the selection of the object is done on the canvas by single click " "instead, and the SELECTED TAB is in focus, again the object properties will " @@ -1528,14 +1546,14 @@ msgstr "" "de pe ecran va aduce fila SELECTAT și o va popula chiar dacă nu a fost in " "focus." -#: FlatCAMApp.py:11581 +#: FlatCAMApp.py:11782 msgid "" "You can change the parameters in this screen and the flow direction is like " "this:" msgstr "" "Se pot schimba parametrii in acest ecran si directia de executive este asa:" -#: FlatCAMApp.py:11582 +#: FlatCAMApp.py:11783 msgid "" "Gerber/Excellon Object --> Change Parameter --> Generate Geometry --> " "Geometry Object --> Add tools (change param in Selected Tab) --> Generate " @@ -1548,7 +1566,7 @@ msgstr "" "CNC) și / sau adăugați in fata / la final codul G-code (din nou, efectuat în " "fila SELECȚIONATĂ) -> Salvați codul G-code." -#: FlatCAMApp.py:11586 +#: FlatCAMApp.py:11787 msgid "" "A list of key shortcuts is available through an menu entry in Help --> " "Shortcuts List or through its own key shortcut: F3." @@ -1557,25 +1575,25 @@ msgstr "" "meniul Ajutor -> Lista de combinatii taste sau prin propria tasta asociata: " "F3." -#: FlatCAMApp.py:11647 +#: FlatCAMApp.py:11848 msgid "Failed checking for latest version. Could not connect." msgstr "" "Verificarea pentru ultima versiune a eșuat. Nu a fost posibilă conectarea la " "server." -#: FlatCAMApp.py:11655 +#: FlatCAMApp.py:11856 msgid "Could not parse information about latest version." msgstr "Informatia cu privire la ultima versiune nu s-a putut interpreta." -#: FlatCAMApp.py:11666 +#: FlatCAMApp.py:11867 msgid "FlatCAM is up to date!" msgstr "FlatCAM este la ultima versiune!" -#: FlatCAMApp.py:11671 +#: FlatCAMApp.py:11872 msgid "Newer Version Available" msgstr "O nouă versiune este disponibila" -#: FlatCAMApp.py:11672 +#: FlatCAMApp.py:11873 msgid "" "There is a newer version of FlatCAM available for download:\n" "\n" @@ -1583,63 +1601,63 @@ msgstr "" "O nouă versiune de FlatCAM este disponibilă pentru download::\n" "\n" -#: FlatCAMApp.py:11674 +#: FlatCAMApp.py:11875 msgid "info" msgstr "informaţie" -#: FlatCAMApp.py:11753 +#: FlatCAMApp.py:11954 msgid "All plots disabled." msgstr "Toate afişările sunt dezactivate." -#: FlatCAMApp.py:11760 +#: FlatCAMApp.py:11961 msgid "All non selected plots disabled." msgstr "Toate afişările care nu sunt selectate sunt dezactivate." -#: FlatCAMApp.py:11767 +#: FlatCAMApp.py:11968 msgid "All plots enabled." msgstr "Toate afişările sunt activate." -#: FlatCAMApp.py:11774 +#: FlatCAMApp.py:11975 msgid "Selected plots enabled..." msgstr "Toate afişările selectate sunt activate..." -#: FlatCAMApp.py:11783 +#: FlatCAMApp.py:11984 msgid "Selected plots disabled..." msgstr "Toate afişările selectate sunt dezactivate..." -#: FlatCAMApp.py:11802 +#: FlatCAMApp.py:12003 msgid "Enabling plots ..." msgstr "Activează Afișare ..." -#: FlatCAMApp.py:11842 +#: FlatCAMApp.py:12043 msgid "Disabling plots ..." msgstr "Dezactivează Afișare ..." -#: FlatCAMApp.py:11864 +#: FlatCAMApp.py:12065 msgid "Working ..." msgstr "Se lucrează..." -#: FlatCAMApp.py:11903 +#: FlatCAMApp.py:12104 msgid "Saving FlatCAM Project" msgstr "Proiectul FlatCAM este in curs de salvare" -#: FlatCAMApp.py:11923 FlatCAMApp.py:11961 +#: FlatCAMApp.py:12124 FlatCAMApp.py:12162 msgid "Project saved to" msgstr "Proiectul s-a salvat in" -#: FlatCAMApp.py:11943 +#: FlatCAMApp.py:12144 msgid "Failed to verify project file" msgstr "Eşec in incărcarea fişierului proiect" -#: FlatCAMApp.py:11943 FlatCAMApp.py:11952 FlatCAMApp.py:11964 +#: FlatCAMApp.py:12144 FlatCAMApp.py:12153 FlatCAMApp.py:12165 msgid "Retry to save it." msgstr "Încercați din nou pentru a-l salva." -#: FlatCAMApp.py:11952 FlatCAMApp.py:11964 +#: FlatCAMApp.py:12153 FlatCAMApp.py:12165 msgid "Failed to parse saved project file" msgstr "Esec in analizarea fişierului Proiect" -#: FlatCAMApp.py:12080 +#: FlatCAMApp.py:12281 msgid "The user requested a graceful exit of the current task." msgstr "Utilizatorul a solicitat o inchidere grațioasă a taskului curent." @@ -1695,43 +1713,33 @@ msgstr "Importă lista" #: FlatCAMCommon.py:260 msgid "Title entry is empty." -msgstr "" +msgstr "Caseta de introducere Titlu este goală." #: FlatCAMCommon.py:269 msgid "Web link entry is empty." -msgstr "" +msgstr "Caseta de introducere a link-ului web este goală." #: FlatCAMCommon.py:277 -#, fuzzy -#| msgid "Edit cancelled. New diameter value is already in the Tool Table." msgid "Either the Title or the Weblink already in the table." -msgstr "" -"Editare eșuată. Noua valoare pt diametrul uneltei este deja in Tabela de " -"Unelte." +msgstr "Fie Titlul, fie Weblink-ul deja sunt in tabel." #: FlatCAMCommon.py:297 -#, fuzzy -#| msgid "Bookmarks Manager" msgid "Bookmark added." -msgstr "Bookmarks Manager" +msgstr "Bookmark adăugat." #: FlatCAMCommon.py:314 msgid "This bookmark can not be removed" msgstr "Acest bookmark nu poate fi eliminat" #: FlatCAMCommon.py:345 -#, fuzzy -#| msgid "Bookmarks limit" msgid "Bookmark removed." -msgstr "Limită nr. bookmark-uri" +msgstr "Bookmark-ul a fost eliminat." #: FlatCAMCommon.py:360 -#, fuzzy -#| msgid "Import FlatCAM Bookmarks" msgid "Export FlatCAM Bookmarks" -msgstr "Importă Bookmark-uri FlatCAM" +msgstr "Exportați bookmark-urile FlatCAM" -#: FlatCAMCommon.py:363 flatcamGUI/FlatCAMGUI.py:437 +#: FlatCAMCommon.py:363 flatcamGUI/FlatCAMGUI.py:448 msgid "Bookmarks" msgstr "Bookmarks" @@ -1763,100 +1771,89 @@ msgstr "Importul de Bookmark-uri FlatCAM a eșuat." msgid "Imported Bookmarks from" msgstr "Bookmark-uri au fost importate din" -#: FlatCAMCommon.py:477 FlatCAMObj.py:3488 FlatCAMObj.py:4483 -#: FlatCAMObj.py:4484 FlatCAMObj.py:4493 +#: FlatCAMCommon.py:477 FlatCAMObj.py:3588 FlatCAMObj.py:4589 +#: FlatCAMObj.py:4590 FlatCAMObj.py:4599 msgid "Iso" msgstr "Izo" -#: FlatCAMCommon.py:477 FlatCAMCommon.py:984 FlatCAMObj.py:1260 -#: FlatCAMObj.py:3488 FlatCAMObj.py:3759 FlatCAMObj.py:4043 +#: FlatCAMCommon.py:477 FlatCAMCommon.py:1012 FlatCAMObj.py:1351 +#: FlatCAMObj.py:3588 FlatCAMObj.py:3861 FlatCAMObj.py:4149 msgid "Rough" msgstr "Grosier" -#: FlatCAMCommon.py:477 FlatCAMObj.py:3488 +#: FlatCAMCommon.py:477 FlatCAMObj.py:3588 msgid "Finish" msgstr "Finisare" #: FlatCAMCommon.py:513 -#, fuzzy -#| msgid "Tool Number" msgid "Tool Name" -msgstr "Număr unealtă" +msgstr "Nume unealtă" #: FlatCAMCommon.py:514 flatcamEditors/FlatCAMExcEditor.py:1527 -#: flatcamGUI/ObjectUI.py:1219 flatcamTools/ToolNonCopperClear.py:271 +#: flatcamGUI/ObjectUI.py:1256 flatcamTools/ToolNonCopperClear.py:271 #: flatcamTools/ToolPaint.py:176 msgid "Tool Dia" msgstr "Dia Unealtă" -#: FlatCAMCommon.py:515 flatcamGUI/ObjectUI.py:1202 +#: FlatCAMCommon.py:515 flatcamGUI/ObjectUI.py:1239 msgid "Tool Offset" msgstr "Ofset unealtă" #: FlatCAMCommon.py:516 -#, fuzzy -#| msgid "Tool Offset" msgid "Custom Offset" -msgstr "Ofset unealtă" +msgstr "Ofset personal." -#: FlatCAMCommon.py:517 flatcamGUI/ObjectUI.py:288 -#: flatcamGUI/PreferencesUI.py:1626 flatcamGUI/PreferencesUI.py:3973 +#: FlatCAMCommon.py:517 flatcamGUI/ObjectUI.py:293 +#: flatcamGUI/PreferencesUI.py:1626 flatcamGUI/PreferencesUI.py:3991 #: flatcamTools/ToolNonCopperClear.py:213 msgid "Tool Type" msgstr "Tip Unealtă" #: FlatCAMCommon.py:518 -#, fuzzy -#| msgid "Tool change" msgid "Tool Shape" -msgstr "Schimb unealtă" +msgstr "Formă unealtă" -#: FlatCAMCommon.py:519 flatcamGUI/ObjectUI.py:329 flatcamGUI/ObjectUI.py:779 -#: flatcamGUI/ObjectUI.py:1329 flatcamGUI/PreferencesUI.py:1666 -#: flatcamGUI/PreferencesUI.py:2334 flatcamGUI/PreferencesUI.py:3177 -#: flatcamGUI/PreferencesUI.py:4018 flatcamGUI/PreferencesUI.py:4272 -#: flatcamGUI/PreferencesUI.py:5096 flatcamTools/ToolCalculators.py:114 -#: flatcamTools/ToolCutOut.py:132 flatcamTools/ToolNonCopperClear.py:254 +#: FlatCAMCommon.py:519 flatcamGUI/ObjectUI.py:334 flatcamGUI/ObjectUI.py:796 +#: flatcamGUI/ObjectUI.py:1366 flatcamGUI/ObjectUI.py:1876 +#: flatcamGUI/PreferencesUI.py:1666 flatcamGUI/PreferencesUI.py:2334 +#: flatcamGUI/PreferencesUI.py:3179 flatcamGUI/PreferencesUI.py:4036 +#: flatcamGUI/PreferencesUI.py:4290 flatcamGUI/PreferencesUI.py:5114 +#: flatcamTools/ToolCalculators.py:114 flatcamTools/ToolCutOut.py:132 +#: flatcamTools/ToolNonCopperClear.py:254 msgid "Cut Z" msgstr "Z tăiere" #: FlatCAMCommon.py:520 -#, fuzzy -#| msgid "Multi-Depth" msgid "MultiDepth" msgstr "Multi-Pas" #: FlatCAMCommon.py:521 msgid "DPP" -msgstr "" +msgstr "DPP" #: FlatCAMCommon.py:522 msgid "V-Dia" -msgstr "" +msgstr "V-Dia" #: FlatCAMCommon.py:523 -#, fuzzy -#| msgid "Angle" msgid "V-Angle" -msgstr "Unghi" +msgstr "V-Unghi" -#: FlatCAMCommon.py:524 flatcamGUI/ObjectUI.py:798 flatcamGUI/ObjectUI.py:1376 -#: flatcamGUI/PreferencesUI.py:2352 flatcamGUI/PreferencesUI.py:3230 -#: flatcamGUI/PreferencesUI.py:6448 flatcamTools/ToolCalibration.py:295 +#: FlatCAMCommon.py:524 flatcamGUI/ObjectUI.py:815 flatcamGUI/ObjectUI.py:1413 +#: flatcamGUI/PreferencesUI.py:2352 flatcamGUI/PreferencesUI.py:3232 +#: flatcamGUI/PreferencesUI.py:6466 flatcamTools/ToolCalibration.py:74 msgid "Travel Z" msgstr "Z Deplasare" #: FlatCAMCommon.py:525 msgid "FR" -msgstr "" +msgstr "Feedrate" #: FlatCAMCommon.py:526 msgid "FR Z" -msgstr "" +msgstr "Z feedrate" #: FlatCAMCommon.py:527 -#, fuzzy -#| msgid "Feed Rate Rapids" msgid "FR Rapids" msgstr "Feedrate rapizi" @@ -1864,76 +1861,69 @@ msgstr "Feedrate rapizi" msgid "Spindle Speed" msgstr "Viteza Motor" -#: FlatCAMCommon.py:529 flatcamGUI/ObjectUI.py:920 flatcamGUI/ObjectUI.py:1528 -#: flatcamGUI/PreferencesUI.py:2437 flatcamGUI/PreferencesUI.py:3348 +#: FlatCAMCommon.py:529 flatcamGUI/ObjectUI.py:939 flatcamGUI/ObjectUI.py:1582 +#: flatcamGUI/PreferencesUI.py:2439 flatcamGUI/PreferencesUI.py:3353 msgid "Dwell" msgstr "Pauza" #: FlatCAMCommon.py:530 -#, fuzzy -#| msgid "Dwell" msgid "Dwelltime" -msgstr "Pauza" +msgstr "Durata pauza" -#: FlatCAMCommon.py:531 flatcamGUI/ObjectUI.py:939 -#: flatcamGUI/PreferencesUI.py:2459 flatcamGUI/PreferencesUI.py:3370 +#: FlatCAMCommon.py:531 flatcamGUI/ObjectUI.py:958 +#: flatcamGUI/PreferencesUI.py:2461 flatcamGUI/PreferencesUI.py:3375 msgid "Preprocessor" msgstr "Postprocesor" #: FlatCAMCommon.py:532 msgid "ExtraCut" -msgstr "" +msgstr "Extra taiere" #: FlatCAMCommon.py:533 -#, fuzzy -#| msgid "Tool change" +msgid "E-Cut Length" +msgstr "Lungime E-taiere" + +#: FlatCAMCommon.py:534 msgid "Toolchange" msgstr "Schimb unealtă" -#: FlatCAMCommon.py:534 -#, fuzzy -#| msgid "Toolchange X,Y" +#: FlatCAMCommon.py:535 msgid "Toolchange XY" -msgstr "X,Y schimb. unealtă" +msgstr "X,Y schimb unealtă" -#: FlatCAMCommon.py:535 flatcamGUI/PreferencesUI.py:2378 -#: flatcamGUI/PreferencesUI.py:3262 flatcamGUI/PreferencesUI.py:6485 -#: flatcamTools/ToolCalibration.py:332 +#: FlatCAMCommon.py:536 flatcamGUI/PreferencesUI.py:2378 +#: flatcamGUI/PreferencesUI.py:3264 flatcamGUI/PreferencesUI.py:6503 +#: flatcamTools/ToolCalibration.py:111 msgid "Toolchange Z" msgstr "Z schimb. unealtă" -#: FlatCAMCommon.py:536 -#, fuzzy -#| msgid "Start" -msgid "Start Z" -msgstr "Start" - #: FlatCAMCommon.py:537 -#, fuzzy -#| msgid "End move Z" +msgid "Start Z" +msgstr "Z Start" + +#: FlatCAMCommon.py:538 msgid "End Z" -msgstr "Z oprire" +msgstr "Z Oprire" -#: FlatCAMCommon.py:541 -#, fuzzy -#| msgid "Tool order" +#: FlatCAMCommon.py:542 msgid "Tool Index." -msgstr "Ordine unelte" +msgstr "Index unealta." -#: FlatCAMCommon.py:543 +#: FlatCAMCommon.py:544 msgid "" "Tool name.\n" "This is not used in the app, it's function\n" "is to serve as a note for the user." msgstr "" +"Numele uneltei.\n" +"Aceasta nu este folosită în aplicație, funcția sa\n" +"este să servească drept notă pentru utilizator." -#: FlatCAMCommon.py:547 -#, fuzzy -#| msgid "Tool Diameter" +#: FlatCAMCommon.py:548 msgid "Tool Diameter." -msgstr "Dia unealtă" +msgstr "Diametru unealtă." -#: FlatCAMCommon.py:549 +#: FlatCAMCommon.py:550 msgid "" "Tool Offset.\n" "Can be of a few types:\n" @@ -1942,14 +1932,22 @@ msgid "" "Out = offset outside by half of tool diameter\n" "Custom = custom offset using the Custom Offset value" msgstr "" +"Offset-ul uneltei.\n" +"Poate fi de câteva tipuri:\n" +"Cale = decalare zero\n" +"Interior = compensat în interior cu jumătate din diametrul sculei\n" +"Exterior = compensat în exterior cu jumătate din diametrul sculei\n" +"Custom = compensare personalizată folosind valoarea Offset personalizat" -#: FlatCAMCommon.py:556 +#: FlatCAMCommon.py:557 msgid "" "Custom Offset.\n" "A value to be used as offset from the current path." msgstr "" +"Ofset personalizat.\n" +"O valoare care trebuie utilizată ca compensare din Calea curentă." -#: FlatCAMCommon.py:559 +#: FlatCAMCommon.py:560 msgid "" "Tool Type.\n" "Can be:\n" @@ -1957,8 +1955,13 @@ msgid "" "Rough = rough cut, low feedrate, multiple passes\n" "Finish = finishing cut, high feedrate" msgstr "" +"Tip uneltei.\n" +"Poate fi:\n" +"Iso = tăiere de izolare\n" +"Aspră = tăietură aspră, viteză scăzută, treceri multiple\n" +"Finisare = tăiere de finisare, avans mare" -#: FlatCAMCommon.py:565 +#: FlatCAMCommon.py:566 msgid "" "Tool Shape. \n" "Can be:\n" @@ -1966,99 +1969,131 @@ msgid "" "B = ball tip milling tool\n" "V = v-shape milling tool" msgstr "" +"Forma uneltei.\n" +"Poate fi:\n" +"C1 ... C4 = unealtă circulară cu x dinti\n" +"B = instrument de frezare cu vârf formal bila\n" +"V = instrument de frezare în formă V" -#: FlatCAMCommon.py:571 +#: FlatCAMCommon.py:572 msgid "" "Cutting Depth.\n" "The depth at which to cut into material." msgstr "" +"Adâncimea de tăiere.\n" +"Adâncimea la care se taie în material." -#: FlatCAMCommon.py:574 +#: FlatCAMCommon.py:575 msgid "" "Multi Depth.\n" "Selecting this will allow cutting in multiple passes,\n" "each pass adding a DPP parameter depth." msgstr "" +"Adâncime multiplă\n" +"Selectarea acestui lucru va permite tăierea în mai multe treceri,\n" +"fiecare trecere adăugând o adâncime a parametrului DPP." -#: FlatCAMCommon.py:578 +#: FlatCAMCommon.py:579 msgid "" "DPP. Depth per Pass.\n" "The value used to cut into material on each pass." msgstr "" +"DPP. Adâncimea pe trecere.\n" +"Valoarea folosită pentru a tăia în material la fiecare trecere." -#: FlatCAMCommon.py:581 -#, fuzzy -#| msgid "Diameter of the drill for the alignment holes." +#: FlatCAMCommon.py:582 msgid "" "V-Dia.\n" "Diameter of the tip for V-Shape Tools." -msgstr "Diametrul găurii pentru găurile de aliniere." +msgstr "" +"V-Dia.\n" +"Diametrul vârfului pentru uneltele în formă de V." -#: FlatCAMCommon.py:584 +#: FlatCAMCommon.py:585 msgid "" "V-Agle.\n" "Angle at the tip for the V-Shape Tools." msgstr "" +"V-Unghi.\n" +"Unghiul în vârf pentru instrumentele în formă de V." -#: FlatCAMCommon.py:587 +#: FlatCAMCommon.py:588 msgid "" "Clearance Height.\n" "Height at which the milling bit will travel between cuts,\n" "above the surface of the material, avoiding all fixtures." msgstr "" +"Înălțimea de Siguranta.\n" +"Înălțimea la care bitul de frezare va călători între tăieturi,\n" +"deasupra suprafeței materialului, evitând toate accesoriile." -#: FlatCAMCommon.py:591 +#: FlatCAMCommon.py:592 msgid "" "FR. Feedrate\n" "The speed on XY plane used while cutting into material." msgstr "" +"FR. Avans.\n" +"Viteza pe planul XY utilizat la tăierea în material." -#: FlatCAMCommon.py:594 +#: FlatCAMCommon.py:595 msgid "" "FR Z. Feedrate Z\n" "The speed on Z plane." msgstr "" +"FR Z. Feedrate Z. Avans Z.\n" +"Viteza de deplasare in planul Z." -#: FlatCAMCommon.py:597 +#: FlatCAMCommon.py:598 msgid "" "FR Rapids. Feedrate Rapids\n" "Speed used while moving as fast as possible.\n" "This is used only by some devices that can't use\n" "the G0 g-code command. Mostly 3D printers." msgstr "" +"FR Rapid. Feedrate Rapids. Avans Rapid.\n" +"Viteza folosită în timpul deplasarii pe cât mai repede posibil.\n" +"Acesta este folosit doar de unele dispozitive in care nu poate fi utilizata\n" +"comanda G-cod G0. În mare parte este vorda de imprimante 3D." -#: FlatCAMCommon.py:602 +#: FlatCAMCommon.py:603 msgid "" "Spindle Speed.\n" "If it's left empty it will not be used.\n" "The speed of the spindle in RPM." msgstr "" +"Viteza motorului.\n" +"Dacă este lăsat gol, nu va fi folosit.\n" +"Viteza rotorului în RPM." -#: FlatCAMCommon.py:606 -#, fuzzy -#| msgid "dwelltime = time to dwell to allow the spindle to reach it's set RPM" +#: FlatCAMCommon.py:607 msgid "" "Dwell.\n" "Check this if a delay is needed to allow\n" "the spindle motor to reach it's set speed." -msgstr "dwelltime = durata de asteptare ca motorul să ajunga la turatia setată" +msgstr "" +"Pauză.\n" +"Verificați dacă este necesară o întârziere pentru a permite\n" +"motorului sa ajungă la viteza setată." -#: FlatCAMCommon.py:610 -#, fuzzy -#| msgid "dwelltime = time to dwell to allow the spindle to reach it's set RPM" +#: FlatCAMCommon.py:611 msgid "" "Dwell Time.\n" "A delay used to allow the motor spindle reach it's set speed." -msgstr "dwelltime = durata de asteptare ca motorul să ajunga la turatia setată" +msgstr "" +"Durata pauzei.\n" +"O întârziere pentru a permite motorului sa ajungă la viteza setată." -#: FlatCAMCommon.py:613 +#: FlatCAMCommon.py:614 msgid "" "Preprocessor.\n" "A selection of files that will alter the generated G-code\n" "to fit for a number of use cases." msgstr "" +"Preprocesorul.\n" +"O selecție de fișiere care vor modifica codul G generat\n" +"pentru a se potrivi pentru o serie de cazuri de utilizare." -#: FlatCAMCommon.py:617 +#: FlatCAMCommon.py:618 msgid "" "Extra Cut.\n" "If checked, after a isolation is finished an extra cut\n" @@ -2066,390 +2101,376 @@ msgid "" "such as that this point is covered by this extra cut to\n" "ensure a complete isolation." msgstr "" +"Taietura suplimentara\n" +"Dacă este bifat, după terminarea izolării, tăieri suplimentare\n" +"vor fi adăugate acolo unde se întâlnesc începutul și sfârșitul izolării\n" +"astfel că acest punct este acoperit de aceste tăieri suplimentare si\n" +"asigură o izolare completă." -#: FlatCAMCommon.py:623 +#: FlatCAMCommon.py:624 +msgid "" +"Extra Cut length.\n" +"If checked, after a isolation is finished an extra cut\n" +"will be added where the start and end of isolation meet\n" +"such as that this point is covered by this extra cut to\n" +"ensure a complete isolation. This is the length of\n" +"the extra cut." +msgstr "" +"Lungime suplimentară tăiată\n" +"Dacă este bifat, după terminarea izolării, tăieri suplimentare\n" +"vor fi adăugate acolo unde se întâlnesc începutul și sfârșitul izolării\n" +"astfel că acest punct este acoperit de aceste tăieri suplimentare si\n" +"asigură o izolare completă." + +#: FlatCAMCommon.py:631 msgid "" "Toolchange.\n" "It will create a toolchange event.\n" "The kind of toolchange is determined by\n" "the preprocessor file." msgstr "" +"Schimbarea Uneltei.\n" +"Va crea un eveniment de schimbare a uneltelor.\n" +"Tipul schimbului de unelte este determinat de\n" +"fișierul preprocesor." -#: FlatCAMCommon.py:628 +#: FlatCAMCommon.py:636 msgid "" "Toolchange XY.\n" "A set of coordinates in the format (x, y).\n" "Will determine the cartesian position of the point\n" "where the tool change event take place." msgstr "" +"Schimb de unelte - locatia XY.\n" +"Un set de coordonate în format (x, y).\n" +"Va determina poziția carteziană a punctului\n" +"unde are loc evenimentul schimbării instrumentelor." -#: FlatCAMCommon.py:633 +#: FlatCAMCommon.py:641 msgid "" "Toolchange Z.\n" "The position on Z plane where the tool change event take place." msgstr "" +"Schimb de unelte - locatia Z.\n" +"Poziția in planul Z unde are loc evenimentul de schimbare a sculei." -#: FlatCAMCommon.py:636 +#: FlatCAMCommon.py:644 msgid "" "Start Z.\n" "If it's left empty it will not be used.\n" "A position on Z plane to move immediately after job start." msgstr "" +"Z Start.\n" +"Dacă este lăsat gol, nu va fi folosit.\n" +"O poziție pe planul Z pentru a se deplasa imediat după începerea lucrului." -#: FlatCAMCommon.py:640 +#: FlatCAMCommon.py:648 msgid "" "End Z.\n" "A position on Z plane to move immediately after job stop." msgstr "" +"Z Sfârșit.\n" +"O poziție pe planul Z pentru a se deplasa imediat după oprirea executiei." -#: FlatCAMCommon.py:661 -#, fuzzy -#| msgid "Add Text Tool" +#: FlatCAMCommon.py:669 msgid "Add Tool to Tools DB" -msgstr "Unealta Adaugare Text" +msgstr "Adăugați Unealta in DB Unelte" -#: FlatCAMCommon.py:663 -#, fuzzy -#| msgid "" -#| "Add a new tool to the Tool Table\n" -#| "with the diameter specified above." +#: FlatCAMCommon.py:671 msgid "" "Add a new tool in the Tools Database.\n" "You can edit it after it is added." msgstr "" -"Adaugă o noua unelata in Tabela de Unelte,\n" -"cu diametrul specificat mai sus." - -#: FlatCAMCommon.py:666 -msgid "Remove Tool from Tools DB" -msgstr "" - -#: FlatCAMCommon.py:668 -#, fuzzy -#| msgid "No selected tools in Tool Table." -msgid "Remove a selection of tools in the Tools Database." -msgstr "Nu sunt unelte selectate in Tabela de Unelte." - -#: FlatCAMCommon.py:670 -#, fuzzy -#| msgid "Export DXF" -msgid "Export Tool DB" -msgstr "Exportă DXF" - -#: FlatCAMCommon.py:672 -msgid "Save the Tools Database to a custom text file." -msgstr "" +"Adăugați un instrument nou în baza de date Unelte.\n" +"Îl puteți edita după ce este adăugat." #: FlatCAMCommon.py:674 -#, fuzzy -#| msgid "PDF Import Tool" -msgid "Import Tool DB" -msgstr "Unealta import PDF" +msgid "Remove Tool from Tools DB" +msgstr "Stergeti Unealta din DB Unelte" #: FlatCAMCommon.py:676 +msgid "Remove a selection of tools in the Tools Database." +msgstr "Stergeți o selecție de Unelte din baza de date Unelte." + +#: FlatCAMCommon.py:678 +msgid "Export Tool DB" +msgstr "Export DB Unelte" + +#: FlatCAMCommon.py:680 +msgid "Save the Tools Database to a custom text file." +msgstr "Salvați baza de date Unelte într-un fișier text." + +#: FlatCAMCommon.py:682 +msgid "Import Tool DB" +msgstr "Import DB Unelte" + +#: FlatCAMCommon.py:684 msgid "Load the Tools Database information's from a custom text file." -msgstr "" +msgstr "Încărcați informațiile din baza de date Unelte dintr-un fișier text." -#: FlatCAMCommon.py:686 +#: FlatCAMCommon.py:694 msgid "Add Tool from Tools DB" -msgstr "" +msgstr "Adăugați Unealta din DB Unelte" -#: FlatCAMCommon.py:688 -#, fuzzy -#| msgid "" -#| "Copy a selection of tools in the Tool Table\n" -#| "by first selecting a row in the Tool Table." +#: FlatCAMCommon.py:696 msgid "" "Add a new tool in the Tools Table of the\n" "active Geometry object after selecting a tool\n" "in the Tools Database." msgstr "" -"Copiază o selecţie de unelte in Tabela de Unelte prin\n" -"selectarea unei linii (sau mai multe) in Tabela de Unelte." +"Adăugați o Unealta noua în Tabelul Unelte din\n" +"obiectul Geometrie activ după selectarea unei Unelte\n" +"în baza de date Unelte." -#: FlatCAMCommon.py:727 FlatCAMCommon.py:1077 FlatCAMCommon.py:1111 -#, fuzzy -#| msgid "Could not load bookmarks file." +#: FlatCAMCommon.py:735 FlatCAMCommon.py:1105 FlatCAMCommon.py:1139 msgid "Could not load Tools DB file." -msgstr "Nu am putut incărca fişierul cu bookmark-uri." +msgstr "Nu s-a putut încărca fișierul DB Unelte." -#: FlatCAMCommon.py:735 FlatCAMCommon.py:1119 -#, fuzzy -#| msgid "Failed to parse defaults file." +#: FlatCAMCommon.py:743 FlatCAMCommon.py:1147 msgid "Failed to parse Tools DB file." -msgstr "Parsarea fişierului cu valori default a eșuat." +msgstr "Eroare la analizarea fișierului DB Unelte." -#: FlatCAMCommon.py:738 FlatCAMCommon.py:1122 +#: FlatCAMCommon.py:746 FlatCAMCommon.py:1150 msgid "Loaded FlatCAM Tools DB from" -msgstr "" +msgstr "S-a incărcat DB Unelte din" -#: FlatCAMCommon.py:744 -#, fuzzy -#| msgid "Add Tool" +#: FlatCAMCommon.py:752 msgid "Add to DB" -msgstr "Adaugă Unealta" +msgstr "Adăugați la DB Unelte" -#: FlatCAMCommon.py:746 -#, fuzzy -#| msgid "Copy Geom\tC" +#: FlatCAMCommon.py:754 msgid "Copy from DB" -msgstr "Copiază Geo\tC" +msgstr "Copiați din DB Unelte" -#: FlatCAMCommon.py:748 -#, fuzzy -#| msgid "Delete Tool" +#: FlatCAMCommon.py:756 msgid "Delete from DB" -msgstr "Șterge Unealta" +msgstr "Ștergeți din DB Unelte" -#: FlatCAMCommon.py:998 -#, fuzzy -#| msgid "Tool added in Tool Table." +#: FlatCAMCommon.py:1026 msgid "Tool added to DB." -msgstr "Unealtă adăugată in Tabela de Unelte." +msgstr "Unealtă adăugată in DB Unelte" -#: FlatCAMCommon.py:1019 -#, fuzzy -#| msgid "Tool was copied in Tool Table." +#: FlatCAMCommon.py:1047 msgid "Tool copied from Tools DB." -msgstr "Unealta a fost copiata in Tabela de Unelte." +msgstr "Unealta a fost copiata din DB Unelte." -#: FlatCAMCommon.py:1037 -#, fuzzy -#| msgid "Tool(s) deleted from Tool Table." +#: FlatCAMCommon.py:1065 msgid "Tool removed from Tools DB." -msgstr "Au fost șterse unelte din Tabela de Unelte." +msgstr "Unealta a fost stearsa din DB Unelte." -#: FlatCAMCommon.py:1048 -#, fuzzy -#| msgid "Tool Data" +#: FlatCAMCommon.py:1076 msgid "Export Tools Database" -msgstr "Date unealtă" +msgstr "Export DB Unelte" -#: FlatCAMCommon.py:1051 -#, fuzzy -#| msgid "Tool Data" +#: FlatCAMCommon.py:1079 msgid "Tools_Database" -msgstr "Date unealtă" +msgstr "DB Unelte" -#: FlatCAMCommon.py:1058 -#, fuzzy -#| msgid "FlatCAM bookmarks export cancelled." +#: FlatCAMCommon.py:1086 msgid "FlatCAM Tools DB export cancelled." -msgstr "Exportul de bookmark-uri FlatCAM este anulat." +msgstr "Exportul DB Unelte a fost anulat." -#: FlatCAMCommon.py:1088 FlatCAMCommon.py:1091 FlatCAMCommon.py:1143 -#, fuzzy -#| msgid "Failed to write bookmarks to file." +#: FlatCAMCommon.py:1116 FlatCAMCommon.py:1119 FlatCAMCommon.py:1171 msgid "Failed to write Tools DB to file." -msgstr "Salvarea bookmark-urilor intr-un fişier a eșuat." +msgstr "Eroare la scrierea DB Unelte în fișier." -#: FlatCAMCommon.py:1094 -#, fuzzy -#| msgid "Exported bookmarks to" +#: FlatCAMCommon.py:1122 msgid "Exported Tools DB to" -msgstr "Exportă Bookmark-uri in" +msgstr "S-a exportat DB Unelte in" -#: FlatCAMCommon.py:1101 -#, fuzzy -#| msgid "Import FlatCAM Bookmarks" +#: FlatCAMCommon.py:1129 msgid "Import FlatCAM Tools DB" -msgstr "Importă Bookmark-uri FlatCAM" +msgstr "Importă DB Unelte" -#: FlatCAMCommon.py:1104 -#, fuzzy -#| msgid "FlatCAM bookmarks import cancelled." +#: FlatCAMCommon.py:1132 msgid "FlatCAM Tools DB import cancelled." -msgstr "Importul de Bookmark-uri FlatCAM a eșuat." +msgstr "Importul DB Unelte a fost anulat." -#: FlatCAMCommon.py:1147 -#, fuzzy -#| msgid "Tool Data" +#: FlatCAMCommon.py:1175 msgid "Saved Tools DB." -msgstr "Date unealtă" +msgstr "DB unelte salvata." -#: FlatCAMCommon.py:1293 -#, fuzzy -#| msgid "Failed. No tool selected in the tool table ..." +#: FlatCAMCommon.py:1322 msgid "No Tool/row selected in the Tools Database table" -msgstr "Eșuat. Nici-o unealtă nu este selectată in Tabela de Unelte ..." +msgstr "Nu a fost selectat nici-o Unealta / rând în tabela DB Unelte" -#: FlatCAMCommon.py:1311 +#: FlatCAMCommon.py:1340 msgid "Cancelled adding tool from DB." -msgstr "" +msgstr "S-a anulat adăugarea de Unealtă din DB Unelte." -#: FlatCAMObj.py:248 +#: FlatCAMObj.py:249 msgid "Name changed from" msgstr "Nume schimbat din" -#: FlatCAMObj.py:248 +#: FlatCAMObj.py:249 msgid "to" msgstr "la" -#: FlatCAMObj.py:259 +#: FlatCAMObj.py:260 msgid "Offsetting..." msgstr "Ofsetare..." -#: FlatCAMObj.py:278 +#: FlatCAMObj.py:274 FlatCAMObj.py:279 +msgid "Scaling could not be executed." +msgstr "Scalarea nu a putut fi executată." + +#: FlatCAMObj.py:283 FlatCAMObj.py:291 +msgid "Scale done." +msgstr "Scalare efectuată." + +#: FlatCAMObj.py:289 msgid "Scaling..." msgstr "Scalare..." -#: FlatCAMObj.py:294 +#: FlatCAMObj.py:307 msgid "Skewing..." msgstr "Deformare..." -#: FlatCAMObj.py:708 FlatCAMObj.py:2612 FlatCAMObj.py:3802 +#: FlatCAMObj.py:723 FlatCAMObj.py:2710 FlatCAMObj.py:3904 #: flatcamGUI/PreferencesUI.py:1123 flatcamGUI/PreferencesUI.py:2257 msgid "Basic" msgstr "Baza" -#: FlatCAMObj.py:730 FlatCAMObj.py:2624 FlatCAMObj.py:3822 +#: FlatCAMObj.py:745 FlatCAMObj.py:2722 FlatCAMObj.py:3925 #: flatcamGUI/PreferencesUI.py:1124 msgid "Advanced" msgstr "Avansat" -#: FlatCAMObj.py:947 +#: FlatCAMObj.py:962 msgid "Buffering solid geometry" msgstr "Buferarea geometriei solide" -#: FlatCAMObj.py:950 camlib.py:965 flatcamGUI/PreferencesUI.py:1700 +#: FlatCAMObj.py:965 camlib.py:965 flatcamGUI/PreferencesUI.py:1700 #: flatcamTools/ToolCopperThieving.py:1010 #: flatcamTools/ToolCopperThieving.py:1199 #: flatcamTools/ToolCopperThieving.py:1211 -#: flatcamTools/ToolNonCopperClear.py:1627 -#: flatcamTools/ToolNonCopperClear.py:1725 -#: flatcamTools/ToolNonCopperClear.py:1737 -#: flatcamTools/ToolNonCopperClear.py:1986 -#: flatcamTools/ToolNonCopperClear.py:2082 -#: flatcamTools/ToolNonCopperClear.py:2094 +#: flatcamTools/ToolNonCopperClear.py:1628 +#: flatcamTools/ToolNonCopperClear.py:1726 +#: flatcamTools/ToolNonCopperClear.py:1738 +#: flatcamTools/ToolNonCopperClear.py:1987 +#: flatcamTools/ToolNonCopperClear.py:2083 +#: flatcamTools/ToolNonCopperClear.py:2095 msgid "Buffering" msgstr "Buferare" -#: FlatCAMObj.py:956 +#: FlatCAMObj.py:971 msgid "Done" msgstr "Executat" -#: FlatCAMObj.py:1004 +#: FlatCAMObj.py:1019 msgid "Isolating..." msgstr "Se izoleaza..." -#: FlatCAMObj.py:1063 -#, fuzzy -#| msgid "Click on Stop point to complete ..." +#: FlatCAMObj.py:1078 msgid "Click on a polygon to isolate it." -msgstr "Click pe punctul de Stop pentru terminare ..." +msgstr "Faceți clic pe un poligon pentru a-l izola." -#: FlatCAMObj.py:1095 flatcamTools/ToolPaint.py:1123 -#, fuzzy -#| msgid "Add Polygon" +#: FlatCAMObj.py:1117 FlatCAMObj.py:1222 flatcamTools/ToolPaint.py:1125 msgid "Added polygon" -msgstr "Adaugă Poligon" +msgstr "S-a adăugat poligon" -#: FlatCAMObj.py:1097 -#, fuzzy -#| msgid "" -#| "Zone added. Click to start adding next zone or right click to finish." +#: FlatCAMObj.py:1119 FlatCAMObj.py:1224 msgid "Click to add next polygon or right click to start isolation." msgstr "" -"Zona adăugată. Faceți clic stanga pt a continua adăugarea de zone sau click " -"dreapta pentru a termina." +"Faceți clic pentru a adăuga următorul poligon sau faceți clic dreapta pentru " +"a începe izolarea." -#: FlatCAMObj.py:1109 flatcamTools/ToolPaint.py:1137 -#, fuzzy -#| msgid "Add Polygon" +#: FlatCAMObj.py:1131 flatcamTools/ToolPaint.py:1139 msgid "Removed polygon" -msgstr "Adaugă Poligon" +msgstr "Poligon eliminat" -#: FlatCAMObj.py:1110 -#, fuzzy -#| msgid "" -#| "Zone added. Click to start adding next zone or right click to finish." +#: FlatCAMObj.py:1132 msgid "Click to add/remove next polygon or right click to start isolation." msgstr "" -"Zona adăugată. Faceți clic stanga pt a continua adăugarea de zone sau click " -"dreapta pentru a termina." +"Faceți clic pentru a adăuga / elimina următorul poligon sau faceți clic " +"dreapta pentru a începe izolarea." -#: FlatCAMObj.py:1115 flatcamTools/ToolPaint.py:1143 +#: FlatCAMObj.py:1137 flatcamTools/ToolPaint.py:1145 msgid "No polygon detected under click position." -msgstr "" +msgstr "Nu a fost detectat niciun poligon sub poziția clicului." -#: FlatCAMObj.py:1137 flatcamTools/ToolPaint.py:1172 +#: FlatCAMObj.py:1158 flatcamTools/ToolPaint.py:1174 msgid "List of single polygons is empty. Aborting." -msgstr "" +msgstr "Lista Poligoanelor este goală. Intrerup." -#: FlatCAMObj.py:1211 FlatCAMObj.py:1339 -#: flatcamTools/ToolNonCopperClear.py:1656 -#: flatcamTools/ToolNonCopperClear.py:2010 +#: FlatCAMObj.py:1227 +msgid "No polygon in selection." +msgstr "Niciun poligon în selecție." + +#: FlatCAMObj.py:1301 FlatCAMObj.py:1430 +#: flatcamTools/ToolNonCopperClear.py:1657 +#: flatcamTools/ToolNonCopperClear.py:2011 msgid "Isolation geometry could not be generated." msgstr "Geometria de izolare nu a fost posibil să fie generată." -#: FlatCAMObj.py:1286 FlatCAMObj.py:1362 +#: FlatCAMObj.py:1377 FlatCAMObj.py:1453 msgid "Isolation geometry created" msgstr "Geometria de izolare creată" -#: FlatCAMObj.py:1295 FlatCAMObj.py:1369 +#: FlatCAMObj.py:1386 FlatCAMObj.py:1460 msgid "Subtracting Geo" msgstr "Scădere Geo" -#: FlatCAMObj.py:1686 +#: FlatCAMObj.py:1777 msgid "Plotting Apertures" msgstr "Aperturile sunt in curs de afișare" -#: FlatCAMObj.py:2439 flatcamEditors/FlatCAMExcEditor.py:2352 +#: FlatCAMObj.py:2537 flatcamEditors/FlatCAMExcEditor.py:2352 msgid "Total Drills" msgstr "Nr. Tot. Op. Găurire" -#: FlatCAMObj.py:2471 flatcamEditors/FlatCAMExcEditor.py:2384 +#: FlatCAMObj.py:2569 flatcamEditors/FlatCAMExcEditor.py:2384 msgid "Total Slots" msgstr "Nr. Tot. Sloturi" -#: FlatCAMObj.py:2926 FlatCAMObj.py:3021 FlatCAMObj.py:3142 +#: FlatCAMObj.py:3024 FlatCAMObj.py:3119 FlatCAMObj.py:3240 msgid "Please select one or more tools from the list and try again." msgstr "Selectează una sau mai multe unelte din lista și încearcă din nou." -#: FlatCAMObj.py:2933 +#: FlatCAMObj.py:3031 msgid "Milling tool for DRILLS is larger than hole size. Cancelled." msgstr "" "Anulat. Freza pt frezarea găurilor este mai mare decat diametrul găurii." -#: FlatCAMObj.py:2934 FlatCAMObj.py:4384 flatcamEditors/FlatCAMGeoEditor.py:408 -#: flatcamGUI/FlatCAMGUI.py:427 flatcamGUI/FlatCAMGUI.py:918 -#: flatcamGUI/ObjectUI.py:1277 +#: FlatCAMObj.py:3032 FlatCAMObj.py:4490 flatcamEditors/FlatCAMGeoEditor.py:408 +#: flatcamGUI/FlatCAMGUI.py:438 flatcamGUI/FlatCAMGUI.py:930 +#: flatcamGUI/ObjectUI.py:1314 msgid "Tool" msgstr "Unealta" -#: FlatCAMObj.py:2950 FlatCAMObj.py:3043 FlatCAMObj.py:3161 +#: FlatCAMObj.py:3048 FlatCAMObj.py:3141 FlatCAMObj.py:3259 msgid "Tool_nr" msgstr "Nr. Unealtă" -#: FlatCAMObj.py:2950 FlatCAMObj.py:3043 FlatCAMObj.py:3161 +#: FlatCAMObj.py:3048 FlatCAMObj.py:3141 FlatCAMObj.py:3259 #: flatcamEditors/FlatCAMExcEditor.py:1507 -#: flatcamEditors/FlatCAMExcEditor.py:2967 flatcamGUI/ObjectUI.py:736 +#: flatcamEditors/FlatCAMExcEditor.py:2967 flatcamGUI/ObjectUI.py:753 #: flatcamTools/ToolNonCopperClear.py:120 flatcamTools/ToolPaint.py:123 #: flatcamTools/ToolPcbWizard.py:76 flatcamTools/ToolProperties.py:396 #: flatcamTools/ToolProperties.py:449 flatcamTools/ToolSolderPaste.py:84 msgid "Diameter" msgstr "Diametru" -#: FlatCAMObj.py:2950 FlatCAMObj.py:3043 FlatCAMObj.py:3161 +#: FlatCAMObj.py:3048 FlatCAMObj.py:3141 FlatCAMObj.py:3259 msgid "Drills_Nr" msgstr "Nr. gaura" -#: FlatCAMObj.py:2950 FlatCAMObj.py:3043 FlatCAMObj.py:3161 +#: FlatCAMObj.py:3048 FlatCAMObj.py:3141 FlatCAMObj.py:3259 msgid "Slots_Nr" msgstr "Nr. slot" -#: FlatCAMObj.py:3030 +#: FlatCAMObj.py:3128 msgid "Milling tool for SLOTS is larger than hole size. Cancelled." msgstr "Anulat. Freza este mai mare decat diametrul slotului de frezat." -#: FlatCAMObj.py:3202 +#: FlatCAMObj.py:3300 msgid "" "Wrong value format for self.defaults[\"z_pdepth\"] or self.options[\"z_pdepth" "\"]" msgstr "" "Valoare gresita pt self.defaults[\"z_pdepth\"] sau self.options[\"z_pdepth\"]" -#: FlatCAMObj.py:3213 +#: FlatCAMObj.py:3311 msgid "" "Wrong value format for self.defaults[\"feedrate_probe\"] or self." "options[\"feedrate_probe\"]" @@ -2457,103 +2478,89 @@ msgstr "" "Valoare gresita pt self.defaults[\"feedrate_probe\"] sau self." "options[\"feedrate_probe\"]" -#: FlatCAMObj.py:3243 FlatCAMObj.py:5203 FlatCAMObj.py:5207 FlatCAMObj.py:5340 +#: FlatCAMObj.py:3341 FlatCAMObj.py:5311 FlatCAMObj.py:5315 FlatCAMObj.py:5450 msgid "Generating CNC Code" msgstr "CNC Code in curs de generare" -#: FlatCAMObj.py:3270 camlib.py:2387 camlib.py:3396 -msgid "" -"The Toolchange X,Y field in Edit -> Preferences has to be in the format (x, " -"y) \n" -"but now there is only one value, not two. " -msgstr "" -"Parametrul >Schimbare Unealtă X, Y< in Editare -> Peferințe trebuie să fie " -"in formatul (x, y) \n" -"dar are o singură valoare in loc de doua. " - -#: FlatCAMObj.py:3794 -#, fuzzy -#| msgid "Add Tool" +#: FlatCAMObj.py:3896 msgid "Add from Tool DB" -msgstr "Adaugă Unealta" +msgstr "Adaugă Unealta din DB Unelte" -#: FlatCAMObj.py:3796 flatcamGUI/FlatCAMGUI.py:599 flatcamGUI/FlatCAMGUI.py:704 -#: flatcamGUI/FlatCAMGUI.py:838 flatcamGUI/FlatCAMGUI.py:1856 -#: flatcamGUI/FlatCAMGUI.py:1954 flatcamGUI/FlatCAMGUI.py:2154 -#: flatcamGUI/FlatCAMGUI.py:2277 flatcamGUI/ObjectUI.py:1248 +#: FlatCAMObj.py:3898 flatcamGUI/FlatCAMGUI.py:610 flatcamGUI/FlatCAMGUI.py:715 +#: flatcamGUI/FlatCAMGUI.py:850 flatcamGUI/FlatCAMGUI.py:1868 +#: flatcamGUI/FlatCAMGUI.py:1966 flatcamGUI/FlatCAMGUI.py:2166 +#: flatcamGUI/FlatCAMGUI.py:2290 flatcamGUI/ObjectUI.py:1285 #: flatcamTools/ToolPanelize.py:534 flatcamTools/ToolPanelize.py:561 #: flatcamTools/ToolPanelize.py:660 flatcamTools/ToolPanelize.py:694 #: flatcamTools/ToolPanelize.py:759 msgid "Copy" msgstr "Copiază" -#: FlatCAMObj.py:3879 FlatCAMObj.py:4248 FlatCAMObj.py:4955 FlatCAMObj.py:5591 +#: FlatCAMObj.py:3985 FlatCAMObj.py:4354 FlatCAMObj.py:5061 FlatCAMObj.py:5701 #: flatcamEditors/FlatCAMExcEditor.py:2459 -#: flatcamEditors/FlatCAMGeoEditor.py:1080 -#: flatcamEditors/FlatCAMGeoEditor.py:1114 -#: flatcamEditors/FlatCAMGeoEditor.py:1135 -#: flatcamEditors/FlatCAMGeoEditor.py:1156 -#: flatcamEditors/FlatCAMGeoEditor.py:1193 -#: flatcamEditors/FlatCAMGeoEditor.py:1221 -#: flatcamEditors/FlatCAMGeoEditor.py:1242 -#: flatcamTools/ToolNonCopperClear.py:1056 -#: flatcamTools/ToolNonCopperClear.py:1464 flatcamTools/ToolPaint.py:838 -#: flatcamTools/ToolPaint.py:1022 flatcamTools/ToolPaint.py:2094 +#: flatcamEditors/FlatCAMGeoEditor.py:1078 +#: flatcamEditors/FlatCAMGeoEditor.py:1112 +#: flatcamEditors/FlatCAMGeoEditor.py:1133 +#: flatcamEditors/FlatCAMGeoEditor.py:1154 +#: flatcamEditors/FlatCAMGeoEditor.py:1191 +#: flatcamEditors/FlatCAMGeoEditor.py:1219 +#: flatcamEditors/FlatCAMGeoEditor.py:1240 +#: flatcamTools/ToolNonCopperClear.py:1057 +#: flatcamTools/ToolNonCopperClear.py:1465 flatcamTools/ToolPaint.py:840 +#: flatcamTools/ToolPaint.py:1024 flatcamTools/ToolPaint.py:2096 #: flatcamTools/ToolSolderPaste.py:879 flatcamTools/ToolSolderPaste.py:954 msgid "Wrong value format entered, use a number." msgstr "Valoare in format incorect, foloseşte un număr." -#: FlatCAMObj.py:4017 +#: FlatCAMObj.py:4123 msgid "Please enter the desired tool diameter in Float format." msgstr "Introdu diametrul dorit pt unealtă in format Real." -#: FlatCAMObj.py:4087 +#: FlatCAMObj.py:4193 msgid "Tool added in Tool Table." msgstr "Unealtă adăugată in Tabela de Unelte." -#: FlatCAMObj.py:4091 +#: FlatCAMObj.py:4197 msgid "Default Tool added. Wrong value format entered." msgstr "Unealta implicita adăugată dar valoarea are un format gresit." -#: FlatCAMObj.py:4198 FlatCAMObj.py:4207 +#: FlatCAMObj.py:4304 FlatCAMObj.py:4313 msgid "Failed. Select a tool to copy." msgstr "Eșuat. Selectează o unealtă pt copiere." -#: FlatCAMObj.py:4234 +#: FlatCAMObj.py:4340 msgid "Tool was copied in Tool Table." msgstr "Unealta a fost copiata in Tabela de Unelte." -#: FlatCAMObj.py:4262 +#: FlatCAMObj.py:4368 msgid "Tool was edited in Tool Table." msgstr "Unealta a fost editata in Tabela de Unelte." -#: FlatCAMObj.py:4291 FlatCAMObj.py:4300 +#: FlatCAMObj.py:4397 FlatCAMObj.py:4406 msgid "Failed. Select a tool to delete." msgstr "Eșuat. Selectează o unealtă pentru ștergere." -#: FlatCAMObj.py:4323 +#: FlatCAMObj.py:4429 msgid "Tool was deleted in Tool Table." msgstr "Unealta a fost stearsa din Tabela de Unelte." -#: FlatCAMObj.py:4384 flatcamGUI/ObjectUI.py:1277 -#, fuzzy -#| msgid "Parameters" +#: FlatCAMObj.py:4490 flatcamGUI/ObjectUI.py:1314 msgid "Parameters for" -msgstr "Parametri" +msgstr "Parametri pt" -#: FlatCAMObj.py:4815 +#: FlatCAMObj.py:4921 msgid "This Geometry can't be processed because it is" msgstr "Acest obiect Geometrie nu poate fi procesat deoarece" -#: FlatCAMObj.py:4817 +#: FlatCAMObj.py:4923 msgid "geometry" msgstr "geometria" -#: FlatCAMObj.py:4860 +#: FlatCAMObj.py:4966 msgid "Failed. No tool selected in the tool table ..." msgstr "Eșuat. Nici-o unealtă nu este selectată in Tabela de Unelte ..." -#: FlatCAMObj.py:4960 FlatCAMObj.py:5112 +#: FlatCAMObj.py:5066 FlatCAMObj.py:5219 msgid "" "Tool Offset is selected in Tool Table but no value is provided.\n" "Add a Tool Offset or change the Offset Type." @@ -2562,44 +2569,44 @@ msgstr "" "este oferita.\n" "Adaugă un ofset pt unealtă sau schimbă Tipul Ofset." -#: FlatCAMObj.py:5024 FlatCAMObj.py:5172 +#: FlatCAMObj.py:5131 FlatCAMObj.py:5280 msgid "G-Code parsing in progress..." msgstr "Analiza codului G în curs ..." -#: FlatCAMObj.py:5026 FlatCAMObj.py:5174 +#: FlatCAMObj.py:5133 FlatCAMObj.py:5282 msgid "G-Code parsing finished..." msgstr "Analizarea codului G s-a terminat ..." -#: FlatCAMObj.py:5034 +#: FlatCAMObj.py:5141 msgid "Finished G-Code processing" msgstr "Prelucrarea G-Code terminată" -#: FlatCAMObj.py:5036 FlatCAMObj.py:5186 +#: FlatCAMObj.py:5143 FlatCAMObj.py:5294 msgid "G-Code processing failed with error" msgstr "Procesarea G-Code a eșuat cu eroarea" -#: FlatCAMObj.py:5082 flatcamTools/ToolSolderPaste.py:1302 +#: FlatCAMObj.py:5189 flatcamTools/ToolSolderPaste.py:1300 msgid "Cancelled. Empty file, it has no geometry" msgstr "Anulat. Fişier gol, nu are geometrie" -#: FlatCAMObj.py:5184 FlatCAMObj.py:5333 +#: FlatCAMObj.py:5292 FlatCAMObj.py:5443 msgid "Finished G-Code processing..." msgstr "Prelucrarea G-Code terminată ..." -#: FlatCAMObj.py:5205 FlatCAMObj.py:5209 FlatCAMObj.py:5343 +#: FlatCAMObj.py:5313 FlatCAMObj.py:5317 FlatCAMObj.py:5453 msgid "CNCjob created" msgstr "CNCjob creat" -#: FlatCAMObj.py:5374 FlatCAMObj.py:5383 flatcamParsers/ParseGerber.py:1750 +#: FlatCAMObj.py:5484 FlatCAMObj.py:5493 flatcamParsers/ParseGerber.py:1750 #: flatcamParsers/ParseGerber.py:1760 msgid "Scale factor has to be a number: integer or float." msgstr "Factorul de scalare trebuie să fie un număr: natural sau real." -#: FlatCAMObj.py:5447 +#: FlatCAMObj.py:5557 msgid "Geometry Scale done." msgstr "Scalare Geometrie executată." -#: FlatCAMObj.py:5464 flatcamParsers/ParseGerber.py:1876 +#: FlatCAMObj.py:5574 flatcamParsers/ParseGerber.py:1876 msgid "" "An (x,y) pair of values are needed. Probable you entered only one value in " "the Offset field." @@ -2607,11 +2614,11 @@ msgstr "" "O pereche de valori (x,y) este necesară. Probabil că ai introdus numai o " "singură valoare in câmpul Offset." -#: FlatCAMObj.py:5521 +#: FlatCAMObj.py:5631 msgid "Geometry Offset done." msgstr "Ofset Geometrie executat." -#: FlatCAMObj.py:5550 +#: FlatCAMObj.py:5660 msgid "" "The Toolchange X,Y field in Edit -> Preferences has to be in the format (x, " "y)\n" @@ -2621,80 +2628,80 @@ msgstr "" "in formatul (x, y) \n" "dar are o singură valoare in loc de două." -#: FlatCAMObj.py:6137 FlatCAMObj.py:6785 FlatCAMObj.py:6981 +#: FlatCAMObj.py:6335 FlatCAMObj.py:6993 FlatCAMObj.py:7189 msgid "Basic" msgstr "Baza" -#: FlatCAMObj.py:6143 FlatCAMObj.py:6789 FlatCAMObj.py:6985 +#: FlatCAMObj.py:6341 FlatCAMObj.py:6997 FlatCAMObj.py:7193 msgid "Advanced" msgstr "Avansat" -#: FlatCAMObj.py:6186 +#: FlatCAMObj.py:6384 msgid "Plotting..." msgstr "Se afișeaza..." -#: FlatCAMObj.py:6209 FlatCAMObj.py:6214 flatcamTools/ToolSolderPaste.py:1508 +#: FlatCAMObj.py:6407 FlatCAMObj.py:6412 flatcamTools/ToolSolderPaste.py:1506 msgid "Export Machine Code ..." msgstr "Exporta CNC Cod Masina ..." -#: FlatCAMObj.py:6219 flatcamTools/ToolSolderPaste.py:1512 +#: FlatCAMObj.py:6417 flatcamTools/ToolSolderPaste.py:1510 msgid "Export Machine Code cancelled ..." msgstr "Exportul Codului Mașina a fost anulat ..." -#: FlatCAMObj.py:6241 +#: FlatCAMObj.py:6439 msgid "Machine Code file saved to" msgstr "Fişierul cu cod CNC este salvat in" -#: FlatCAMObj.py:6295 flatcamTools/ToolCalibration.py:953 +#: FlatCAMObj.py:6493 flatcamTools/ToolCalibration.py:1083 msgid "Loaded Machine Code into Code Editor" msgstr "S-a încărcat Codul Masina în Editorul Cod" -#: FlatCAMObj.py:6430 +#: FlatCAMObj.py:6628 msgid "This CNCJob object can't be processed because it is a" msgstr "Acest obiect CNCJob nu poate fi procesat deoarece este un" -#: FlatCAMObj.py:6432 +#: FlatCAMObj.py:6630 msgid "CNCJob object" msgstr "Obiect CNCJob" -#: FlatCAMObj.py:6483 +#: FlatCAMObj.py:6681 msgid "G-code does not have a units code: either G20 or G21" msgstr "G-code nu contine codul pt unitati: G20 sau G21" -#: FlatCAMObj.py:6497 +#: FlatCAMObj.py:6695 msgid "Cancelled. The Toolchange Custom code is enabled but it's empty." msgstr "" "Anulat. Codul G-Code din Macro-ul Schimbare unealtă este activat dar nu " "contine nimic." -#: FlatCAMObj.py:6502 +#: FlatCAMObj.py:6700 msgid "Toolchange G-code was replaced by a custom code." msgstr "G-Code-ul pt schimbare unealtă a fost inlocuit cu un cod pesonalizat." -#: FlatCAMObj.py:6519 flatcamEditors/FlatCAMTextEditor.py:224 -#: flatcamTools/ToolSolderPaste.py:1539 +#: FlatCAMObj.py:6717 flatcamEditors/FlatCAMTextEditor.py:224 +#: flatcamTools/ToolSolderPaste.py:1537 msgid "No such file or directory" msgstr "Nu exista un aşa fişier sau director" -#: FlatCAMObj.py:6533 flatcamEditors/FlatCAMTextEditor.py:236 +#: FlatCAMObj.py:6731 flatcamEditors/FlatCAMTextEditor.py:236 msgid "Saved to" msgstr "Salvat in" -#: FlatCAMObj.py:6543 FlatCAMObj.py:6553 +#: FlatCAMObj.py:6741 FlatCAMObj.py:6751 msgid "" "The used preprocessor file has to have in it's name: 'toolchange_custom'" msgstr "" "Postprocesorul folosit trebuie să aibă in numele sau: 'toolchange_custom'" -#: FlatCAMObj.py:6557 +#: FlatCAMObj.py:6755 msgid "There is no preprocessor file." msgstr "Nu exista nici-un fişier postprocesor." -#: FlatCAMObj.py:6804 +#: FlatCAMObj.py:7012 msgid "Script Editor" msgstr "Editor Script" -#: FlatCAMObj.py:7085 +#: FlatCAMObj.py:7293 msgid "Document Editor" msgstr "Editor Documente" @@ -2719,7 +2726,7 @@ msgstr "Aplică Traducere ..." msgid "Object renamed from {old} to {new}" msgstr "Obiectul este redenumit din {old} in {new}" -#: ObjectCollection.py:834 +#: ObjectCollection.py:852 msgid "Cause of error" msgstr "Motivul erorii" @@ -2767,7 +2774,7 @@ msgstr "Deformare eșuată. Nici-un obiect nu este selectat" msgid "There is no such parameter" msgstr "Nu exista un asemenea parametru" -#: camlib.py:2366 +#: camlib.py:2368 msgid "" "The Cut Z parameter has positive value. It is the depth value to drill into " "material.\n" @@ -2780,37 +2787,47 @@ 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:2374 camlib.py:3078 camlib.py:3423 +#: camlib.py:2376 camlib.py:3089 camlib.py:3436 msgid "The Cut Z parameter is zero. There will be no cut, skipping file" msgstr "" "Parametrul >Z tăiere< este nul. Nu va fi nici-o tăiere prin urmare nu " "procesam fişierul" -#: camlib.py:2450 +#: camlib.py:2389 camlib.py:3409 +msgid "" +"The Toolchange X,Y field in Edit -> Preferences has to be in the format (x, " +"y) \n" +"but now there is only one value, not two. " +msgstr "" +"Parametrul >Schimbare Unealtă X, Y< in Editare -> Peferințe trebuie să fie " +"in formatul (x, y) \n" +"dar are o singură valoare in loc de doua. " + +#: camlib.py:2458 msgid "Creating a list of points to drill..." msgstr "Crearea unei liste de puncte pentru găurire ..." -#: camlib.py:2532 +#: camlib.py:2540 msgid "Starting G-Code" msgstr "Începând G-Code" -#: camlib.py:2627 camlib.py:2770 camlib.py:2871 camlib.py:3189 camlib.py:3534 +#: camlib.py:2635 camlib.py:2778 camlib.py:2880 camlib.py:3200 camlib.py:3547 msgid "Starting G-Code for tool with diameter" msgstr "Pornirea codului G pentru scula cu diametrul" -#: camlib.py:2683 camlib.py:2826 camlib.py:2928 +#: camlib.py:2691 camlib.py:2834 camlib.py:2937 msgid "G91 coordinates not implemented" msgstr "Coordonatele G91 nu au fost implementate" -#: camlib.py:2689 camlib.py:2832 camlib.py:2934 +#: camlib.py:2697 camlib.py:2841 camlib.py:2943 msgid "The loaded Excellon file has no drills" msgstr "Fişierul Excellon incărcat nu are găuri" -#: camlib.py:2956 +#: camlib.py:2966 msgid "Finished G-Code generation..." msgstr "Generarea G-Code finalizata ..." -#: camlib.py:3050 +#: camlib.py:3061 msgid "" "The Toolchange X,Y field in Edit -> Preferences has to be in the format (x, " "y) \n" @@ -2820,7 +2837,7 @@ msgstr "" "in formatul (x, y) \n" "dar are o singură valoare in loc de doua." -#: camlib.py:3063 camlib.py:3409 +#: camlib.py:3074 camlib.py:3422 msgid "" "Cut_Z parameter is None or zero. Most likely a bad combinations of other " "parameters." @@ -2828,7 +2845,7 @@ msgstr "" "Parametrul >Z tăiere< este None sau zero. Cel mai probabil o combinaţie " "nefericita de parametri." -#: camlib.py:3070 camlib.py:3415 +#: camlib.py:3081 camlib.py:3428 msgid "" "The Cut Z parameter has positive value. It is the depth value to cut into " "material.\n" @@ -2841,11 +2858,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:3083 camlib.py:3429 +#: camlib.py:3094 camlib.py:3442 msgid "Travel Z parameter is None or zero." msgstr "Parametrul >Z deplasare< este None sau zero." -#: camlib.py:3088 camlib.py:3434 +#: camlib.py:3099 camlib.py:3447 msgid "" "The Travel Z parameter has negative value. It is the height value to travel " "between cuts.\n" @@ -2858,40 +2875,40 @@ 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:3096 camlib.py:3442 +#: camlib.py:3107 camlib.py:3455 msgid "The Z Travel parameter is zero. This is dangerous, skipping file" msgstr "" "Parametrul >Z deplasare< este zero. Aceasta este periculos, prin urmare nu " "se procesează fişierul" -#: camlib.py:3115 camlib.py:3461 +#: camlib.py:3126 camlib.py:3474 msgid "Indexing geometry before generating G-Code..." msgstr "Geometria se indexeaza înainte de a genera G-Code..." -#: camlib.py:3176 camlib.py:3523 +#: camlib.py:3187 camlib.py:3536 msgid "Starting G-Code..." msgstr "Pornirea G-Code ..." -#: camlib.py:3258 camlib.py:3604 +#: camlib.py:3270 camlib.py:3618 msgid "Finished G-Code generation" msgstr "Generarea G-Code terminată" -#: camlib.py:3260 +#: camlib.py:3272 msgid "paths traced" msgstr "căi trasate" -#: camlib.py:3296 +#: camlib.py:3309 msgid "Expected a Geometry, got" msgstr "Se astepta o Geometrie, am primit in schimb" -#: camlib.py:3303 +#: camlib.py:3316 msgid "" "Trying to generate a CNC Job from a Geometry object without solid_geometry." msgstr "" "Se încearcă generarea unui CNC Job dintr-un obiect Geometrie fără atributul " "solid_geometry." -#: camlib.py:3343 +#: camlib.py:3356 msgid "" "The Tool Offset value is too negative to use for the current_geometry.\n" "Raise the value (in module) and try again." @@ -2900,35 +2917,35 @@ msgstr "" "current_geometry \n" "Mareste valoarea absoluta și încearcă din nou." -#: camlib.py:3604 +#: camlib.py:3618 msgid " paths traced." msgstr " căi trasate." -#: camlib.py:3632 +#: camlib.py:3646 msgid "There is no tool data in the SolderPaste geometry." msgstr "Nu există date cu privire la unealtă in Geometria SolderPaste." -#: camlib.py:3719 +#: camlib.py:3733 msgid "Finished SolderPste G-Code generation" msgstr "Generarea G-Code SolderPaste s-a terminat" -#: camlib.py:3721 +#: camlib.py:3735 msgid "paths traced." msgstr "căi trasate." -#: camlib.py:3976 +#: camlib.py:3991 msgid "Parsing GCode file. Number of lines" msgstr "Analizând fișierul GCode. Numărul de linii" -#: camlib.py:4083 +#: camlib.py:4098 msgid "Creating Geometry from the parsed GCode file. " msgstr "Crează un obiect tip Geometrie din fisierul GCode analizat. " -#: camlib.py:4219 camlib.py:4503 camlib.py:4606 camlib.py:4653 +#: camlib.py:4234 camlib.py:4518 camlib.py:4621 camlib.py:4690 msgid "G91 coordinates not implemented ..." msgstr "Coordonatele G91 nu au fost implementate ..." -#: camlib.py:4350 +#: camlib.py:4365 msgid "Unifying Geometry from parsed Geometry segments" msgstr "Se unifica Geometria din segmentele de Geometrie parsate" @@ -3043,8 +3060,8 @@ msgstr "" "dimetrul la care se face redimensionarea." #: flatcamEditors/FlatCAMExcEditor.py:983 -#: flatcamEditors/FlatCAMExcEditor.py:1052 flatcamGUI/FlatCAMGUI.py:2879 -#: flatcamGUI/FlatCAMGUI.py:3092 flatcamGUI/FlatCAMGUI.py:3309 +#: flatcamEditors/FlatCAMExcEditor.py:1052 flatcamGUI/FlatCAMGUI.py:2892 +#: flatcamGUI/FlatCAMGUI.py:3105 flatcamGUI/FlatCAMGUI.py:3322 msgid "Cancelled." msgstr "Anulat." @@ -3069,7 +3086,7 @@ msgstr "Executat. Operatiile de găurire au fost mutate." msgid "Done. Drill(s) copied." msgstr "Executat. Operatiile de găurire au fost copiate." -#: flatcamEditors/FlatCAMExcEditor.py:1480 flatcamGUI/PreferencesUI.py:2818 +#: flatcamEditors/FlatCAMExcEditor.py:1480 flatcamGUI/PreferencesUI.py:2820 msgid "Excellon Editor" msgstr "Editor Excellon" @@ -3078,13 +3095,13 @@ msgstr "Editor Excellon" msgid "Name:" msgstr "Nume:" -#: flatcamEditors/FlatCAMExcEditor.py:1493 flatcamGUI/ObjectUI.py:716 -#: flatcamGUI/ObjectUI.py:1108 flatcamTools/ToolNonCopperClear.py:109 +#: flatcamEditors/FlatCAMExcEditor.py:1493 flatcamGUI/ObjectUI.py:733 +#: flatcamGUI/ObjectUI.py:1145 flatcamTools/ToolNonCopperClear.py:109 #: flatcamTools/ToolPaint.py:112 flatcamTools/ToolSolderPaste.py:73 msgid "Tools Table" msgstr "Tabela Unelte" -#: flatcamEditors/FlatCAMExcEditor.py:1495 flatcamGUI/ObjectUI.py:718 +#: flatcamEditors/FlatCAMExcEditor.py:1495 flatcamGUI/ObjectUI.py:735 msgid "" "Tools in this Excellon object\n" "when are used for drilling." @@ -3104,8 +3121,8 @@ msgstr "" "Adaugă/Șterge o unealtă la lista de unelte\n" "pentru acest obiect Excellon." -#: flatcamEditors/FlatCAMExcEditor.py:1529 flatcamGUI/ObjectUI.py:1221 -#: flatcamGUI/PreferencesUI.py:2849 +#: flatcamEditors/FlatCAMExcEditor.py:1529 flatcamGUI/ObjectUI.py:1258 +#: flatcamGUI/PreferencesUI.py:2851 msgid "Diameter for the new tool" msgstr "Diametru pentru noua unealtă (burghiu, freza)" @@ -3133,7 +3150,7 @@ msgstr "" "Șterge o unealtă in lista de unelte\n" "prin selectarea unei linii in tabela de unelte." -#: flatcamEditors/FlatCAMExcEditor.py:1573 flatcamGUI/FlatCAMGUI.py:1737 +#: flatcamEditors/FlatCAMExcEditor.py:1573 flatcamGUI/FlatCAMGUI.py:1749 msgid "Resize Drill(s)" msgstr "Redimensionare operațiuni de găurire" @@ -3159,8 +3176,8 @@ msgstr "Redimensionează" msgid "Resize drill(s)" msgstr "Redimensionează op. de găurire." -#: flatcamEditors/FlatCAMExcEditor.py:1622 flatcamGUI/FlatCAMGUI.py:1736 -#: flatcamGUI/FlatCAMGUI.py:1946 +#: flatcamEditors/FlatCAMExcEditor.py:1622 flatcamGUI/FlatCAMGUI.py:1748 +#: flatcamGUI/FlatCAMGUI.py:1958 msgid "Add Drill Array" msgstr "Adaugă o arie de op. găurire" @@ -3184,17 +3201,17 @@ msgstr "Liniar" #: flatcamEditors/FlatCAMExcEditor.py:1634 #: flatcamEditors/FlatCAMExcEditor.py:1848 -#: flatcamEditors/FlatCAMGrbEditor.py:2696 flatcamGUI/ObjectUI.py:295 -#: flatcamGUI/PreferencesUI.py:3981 flatcamGUI/PreferencesUI.py:6378 +#: flatcamEditors/FlatCAMGrbEditor.py:2696 flatcamGUI/ObjectUI.py:300 +#: flatcamGUI/PreferencesUI.py:3999 flatcamGUI/PreferencesUI.py:6396 #: flatcamTools/ToolFiducials.py:220 flatcamTools/ToolNonCopperClear.py:221 msgid "Circular" msgstr "Circular" -#: flatcamEditors/FlatCAMExcEditor.py:1642 flatcamGUI/PreferencesUI.py:2860 +#: flatcamEditors/FlatCAMExcEditor.py:1642 flatcamGUI/PreferencesUI.py:2862 msgid "Nr of drills" msgstr "Nr. op. găurire" -#: flatcamEditors/FlatCAMExcEditor.py:1643 flatcamGUI/PreferencesUI.py:2862 +#: flatcamEditors/FlatCAMExcEditor.py:1643 flatcamGUI/PreferencesUI.py:2864 msgid "Specify how many drills to be in the array." msgstr "Specifica cate operațiuni de găurire să fie incluse in arie." @@ -3205,14 +3222,14 @@ msgstr "Specifica cate operațiuni de găurire să fie incluse in arie." #: flatcamEditors/FlatCAMExcEditor.py:1927 #: flatcamEditors/FlatCAMGrbEditor.py:1524 #: flatcamEditors/FlatCAMGrbEditor.py:2724 -#: flatcamEditors/FlatCAMGrbEditor.py:2773 flatcamGUI/PreferencesUI.py:2970 +#: flatcamEditors/FlatCAMGrbEditor.py:2773 flatcamGUI/PreferencesUI.py:2972 msgid "Direction" msgstr "Direcţie" #: flatcamEditors/FlatCAMExcEditor.py:1663 #: flatcamEditors/FlatCAMExcEditor.py:1878 #: flatcamEditors/FlatCAMGrbEditor.py:2726 flatcamGUI/PreferencesUI.py:1940 -#: flatcamGUI/PreferencesUI.py:2878 flatcamGUI/PreferencesUI.py:3026 +#: flatcamGUI/PreferencesUI.py:2880 flatcamGUI/PreferencesUI.py:3028 msgid "" "Direction on which the linear array is oriented:\n" "- 'X' - horizontal axis \n" @@ -3228,8 +3245,8 @@ msgstr "" #: flatcamEditors/FlatCAMExcEditor.py:1792 #: flatcamEditors/FlatCAMExcEditor.py:1885 #: flatcamEditors/FlatCAMGrbEditor.py:2733 flatcamGUI/PreferencesUI.py:1946 -#: flatcamGUI/PreferencesUI.py:2884 flatcamGUI/PreferencesUI.py:2979 -#: flatcamGUI/PreferencesUI.py:3032 flatcamGUI/PreferencesUI.py:4804 +#: flatcamGUI/PreferencesUI.py:2886 flatcamGUI/PreferencesUI.py:2981 +#: flatcamGUI/PreferencesUI.py:3034 flatcamGUI/PreferencesUI.py:4822 #: flatcamTools/ToolFilm.py:256 msgid "X" msgstr "X" @@ -3238,8 +3255,8 @@ msgstr "X" #: flatcamEditors/FlatCAMExcEditor.py:1793 #: flatcamEditors/FlatCAMExcEditor.py:1886 #: flatcamEditors/FlatCAMGrbEditor.py:2734 flatcamGUI/PreferencesUI.py:1947 -#: flatcamGUI/PreferencesUI.py:2885 flatcamGUI/PreferencesUI.py:2980 -#: flatcamGUI/PreferencesUI.py:3033 flatcamGUI/PreferencesUI.py:4805 +#: flatcamGUI/PreferencesUI.py:2887 flatcamGUI/PreferencesUI.py:2982 +#: flatcamGUI/PreferencesUI.py:3035 flatcamGUI/PreferencesUI.py:4823 #: flatcamTools/ToolFilm.py:257 msgid "Y" msgstr "Y" @@ -3255,10 +3272,10 @@ msgstr "Y" #: flatcamEditors/FlatCAMGrbEditor.py:2735 #: flatcamEditors/FlatCAMGrbEditor.py:2752 #: flatcamEditors/FlatCAMGrbEditor.py:2788 flatcamGUI/PreferencesUI.py:1948 -#: flatcamGUI/PreferencesUI.py:1966 flatcamGUI/PreferencesUI.py:2886 -#: flatcamGUI/PreferencesUI.py:2905 flatcamGUI/PreferencesUI.py:2981 -#: flatcamGUI/PreferencesUI.py:2986 flatcamGUI/PreferencesUI.py:3034 -#: flatcamGUI/PreferencesUI.py:3055 flatcamGUI/PreferencesUI.py:5197 +#: flatcamGUI/PreferencesUI.py:1966 flatcamGUI/PreferencesUI.py:2888 +#: flatcamGUI/PreferencesUI.py:2907 flatcamGUI/PreferencesUI.py:2983 +#: flatcamGUI/PreferencesUI.py:2988 flatcamGUI/PreferencesUI.py:3036 +#: flatcamGUI/PreferencesUI.py:3057 flatcamGUI/PreferencesUI.py:5215 #: flatcamTools/ToolDistance.py:66 flatcamTools/ToolDistanceMin.py:68 #: flatcamTools/ToolTransform.py:62 msgid "Angle" @@ -3267,25 +3284,19 @@ msgstr "Unghi" #: flatcamEditors/FlatCAMExcEditor.py:1676 #: flatcamEditors/FlatCAMExcEditor.py:1891 #: flatcamEditors/FlatCAMGrbEditor.py:2739 flatcamGUI/PreferencesUI.py:1954 -#: flatcamGUI/PreferencesUI.py:2892 flatcamGUI/PreferencesUI.py:3040 +#: flatcamGUI/PreferencesUI.py:2894 flatcamGUI/PreferencesUI.py:3042 msgid "Pitch" msgstr "Pas" #: flatcamEditors/FlatCAMExcEditor.py:1678 #: flatcamEditors/FlatCAMExcEditor.py:1893 #: flatcamEditors/FlatCAMGrbEditor.py:2741 flatcamGUI/PreferencesUI.py:1956 -#: flatcamGUI/PreferencesUI.py:2894 flatcamGUI/PreferencesUI.py:3042 +#: flatcamGUI/PreferencesUI.py:2896 flatcamGUI/PreferencesUI.py:3044 msgid "Pitch = Distance between elements of the array." msgstr "Pas = Distanta între elementele ariei." #: flatcamEditors/FlatCAMExcEditor.py:1691 #: flatcamEditors/FlatCAMExcEditor.py:1907 -#, fuzzy -#| 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." msgid "" "Angle at which the linear array is placed.\n" "The precision is of max 2 decimals.\n" @@ -3294,7 +3305,7 @@ msgid "" 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 minima este: -360grade.\n" "Val maxima este: 360.00 grade." #: flatcamEditors/FlatCAMExcEditor.py:1712 @@ -3310,25 +3321,25 @@ msgstr "" #: flatcamEditors/FlatCAMExcEditor.py:1719 #: flatcamEditors/FlatCAMExcEditor.py:1935 #: flatcamEditors/FlatCAMGrbEditor.py:2783 flatcamGUI/PreferencesUI.py:1988 -#: flatcamGUI/PreferencesUI.py:2632 flatcamGUI/PreferencesUI.py:2928 -#: flatcamGUI/PreferencesUI.py:3078 flatcamGUI/PreferencesUI.py:3490 +#: flatcamGUI/PreferencesUI.py:2634 flatcamGUI/PreferencesUI.py:2930 +#: flatcamGUI/PreferencesUI.py:3080 flatcamGUI/PreferencesUI.py:3508 msgid "CW" msgstr "Orar" #: flatcamEditors/FlatCAMExcEditor.py:1720 #: flatcamEditors/FlatCAMExcEditor.py:1936 #: flatcamEditors/FlatCAMGrbEditor.py:2784 flatcamGUI/PreferencesUI.py:1989 -#: flatcamGUI/PreferencesUI.py:2633 flatcamGUI/PreferencesUI.py:2929 -#: flatcamGUI/PreferencesUI.py:3079 flatcamGUI/PreferencesUI.py:3491 +#: flatcamGUI/PreferencesUI.py:2635 flatcamGUI/PreferencesUI.py:2931 +#: flatcamGUI/PreferencesUI.py:3081 flatcamGUI/PreferencesUI.py:3509 msgid "CCW" msgstr "Antiorar" #: flatcamEditors/FlatCAMExcEditor.py:1724 #: flatcamEditors/FlatCAMExcEditor.py:1940 #: flatcamEditors/FlatCAMGrbEditor.py:2790 flatcamGUI/PreferencesUI.py:1968 -#: flatcamGUI/PreferencesUI.py:1997 flatcamGUI/PreferencesUI.py:2907 -#: flatcamGUI/PreferencesUI.py:2937 flatcamGUI/PreferencesUI.py:3057 -#: flatcamGUI/PreferencesUI.py:3087 +#: flatcamGUI/PreferencesUI.py:1997 flatcamGUI/PreferencesUI.py:2909 +#: flatcamGUI/PreferencesUI.py:2939 flatcamGUI/PreferencesUI.py:3059 +#: flatcamGUI/PreferencesUI.py:3089 msgid "Angle at which each element in circular array is placed." msgstr "" "Unghiul la care fiecare element al ariei circulare este plasat fata de " @@ -3346,16 +3357,16 @@ msgstr "" "Parametri pentru adăugarea unui slot (gaură cu formă ovală)\n" "fie single sau ca parte a unei arii." -#: flatcamEditors/FlatCAMExcEditor.py:1769 flatcamGUI/PreferencesUI.py:2954 +#: flatcamEditors/FlatCAMExcEditor.py:1769 flatcamGUI/PreferencesUI.py:2956 #: flatcamTools/ToolProperties.py:555 msgid "Length" msgstr "Lungime" -#: flatcamEditors/FlatCAMExcEditor.py:1771 flatcamGUI/PreferencesUI.py:2956 +#: flatcamEditors/FlatCAMExcEditor.py:1771 flatcamGUI/PreferencesUI.py:2958 msgid "Length = The length of the slot." msgstr "Lungime = Lungimea slotului." -#: flatcamEditors/FlatCAMExcEditor.py:1785 flatcamGUI/PreferencesUI.py:2972 +#: flatcamEditors/FlatCAMExcEditor.py:1785 flatcamGUI/PreferencesUI.py:2974 msgid "" "Direction on which the slot is oriented:\n" "- 'X' - horizontal axis \n" @@ -3368,12 +3379,6 @@ msgstr "" "- „Unghi” - un unghi personalizat pentru înclinarea slotului" #: flatcamEditors/FlatCAMExcEditor.py:1800 -#, fuzzy -#| msgid "" -#| "Angle at which the slot is placed.\n" -#| "The precision is of max 2 decimals.\n" -#| "Min value is: -359.99 degrees.\n" -#| "Max value is: 360.00 degrees." msgid "" "Angle at which the slot is placed.\n" "The precision is of max 2 decimals.\n" @@ -3382,8 +3387,8 @@ msgid "" msgstr "" "Unghiul la care este plasat slotul.\n" "Precizia este de maxim 2 zecimale.\n" -"Valoarea minimă este: -359,99 grade.\n" -"Valoarea maximă este: 360,00 grade." +"Valoarea minimă este: -360 grade.\n" +"Valoarea maximă este: 360.00 grade." #: flatcamEditors/FlatCAMExcEditor.py:1833 msgid "Slot Array Parameters" @@ -3401,11 +3406,11 @@ msgstr "" "Selectați tipul de slot pentru creare.\n" "Poate fi liniar X (Y) sau circular" -#: flatcamEditors/FlatCAMExcEditor.py:1856 flatcamGUI/PreferencesUI.py:3011 +#: flatcamEditors/FlatCAMExcEditor.py:1856 flatcamGUI/PreferencesUI.py:3013 msgid "Nr of slots" msgstr "Nr de sloturi" -#: flatcamEditors/FlatCAMExcEditor.py:1857 flatcamGUI/PreferencesUI.py:3013 +#: flatcamEditors/FlatCAMExcEditor.py:1857 flatcamGUI/PreferencesUI.py:3015 msgid "Specify how many slots to be in the array." msgstr "Specificați câte sloturi trebuie să fie în arie." @@ -3418,7 +3423,7 @@ msgstr "" "Salvează și reeditează obiectul Excellon dacă ai nevoie să adaugi această " "unealtă. " -#: flatcamEditors/FlatCAMExcEditor.py:2480 flatcamGUI/FlatCAMGUI.py:3478 +#: flatcamEditors/FlatCAMExcEditor.py:2480 flatcamGUI/FlatCAMGUI.py:3491 msgid "Added new tool with dia" msgstr "O nouă unealtă este adăugată cu diametrul" @@ -3495,7 +3500,7 @@ msgid "Round" msgstr "Rotund" #: flatcamEditors/FlatCAMGeoEditor.py:96 -#: flatcamEditors/FlatCAMGrbEditor.py:2552 flatcamGUI/PreferencesUI.py:5971 +#: flatcamEditors/FlatCAMGrbEditor.py:2552 flatcamGUI/PreferencesUI.py:5989 #: flatcamTools/ToolQRCode.py:198 msgid "Square" msgstr "Patrat" @@ -3518,7 +3523,7 @@ msgid "Full Buffer" msgstr "Bufer complet" #: flatcamEditors/FlatCAMGeoEditor.py:133 -#: flatcamEditors/FlatCAMGeoEditor.py:2760 flatcamGUI/FlatCAMGUI.py:1646 +#: flatcamEditors/FlatCAMGeoEditor.py:2758 flatcamGUI/FlatCAMGUI.py:1658 #: flatcamGUI/PreferencesUI.py:2008 msgid "Buffer Tool" msgstr "Unealta Bufer" @@ -3526,9 +3531,9 @@ msgstr "Unealta Bufer" #: flatcamEditors/FlatCAMGeoEditor.py:145 #: flatcamEditors/FlatCAMGeoEditor.py:162 #: flatcamEditors/FlatCAMGeoEditor.py:179 -#: flatcamEditors/FlatCAMGeoEditor.py:2780 -#: flatcamEditors/FlatCAMGeoEditor.py:2810 -#: flatcamEditors/FlatCAMGeoEditor.py:2840 +#: flatcamEditors/FlatCAMGeoEditor.py:2778 +#: flatcamEditors/FlatCAMGeoEditor.py:2808 +#: flatcamEditors/FlatCAMGeoEditor.py:2838 #: flatcamEditors/FlatCAMGrbEditor.py:4821 msgid "Buffer distance value is missing or wrong format. Add it and retry." msgstr "" @@ -3539,7 +3544,7 @@ msgstr "" msgid "Font" msgstr "Font" -#: flatcamEditors/FlatCAMGeoEditor.py:324 flatcamGUI/FlatCAMGUI.py:1907 +#: flatcamEditors/FlatCAMGeoEditor.py:324 flatcamGUI/FlatCAMGUI.py:1919 msgid "Text" msgstr "Text" @@ -3547,13 +3552,13 @@ msgstr "Text" msgid "Text Tool" msgstr "Unealta Text" -#: flatcamEditors/FlatCAMGeoEditor.py:442 flatcamGUI/ObjectUI.py:343 -#: flatcamGUI/PreferencesUI.py:1449 flatcamGUI/PreferencesUI.py:3142 -#: flatcamGUI/PreferencesUI.py:4482 +#: flatcamEditors/FlatCAMGeoEditor.py:442 flatcamGUI/ObjectUI.py:348 +#: flatcamGUI/PreferencesUI.py:1449 flatcamGUI/PreferencesUI.py:3144 +#: flatcamGUI/PreferencesUI.py:4500 msgid "Tool dia" msgstr "Dia unealtă" -#: flatcamEditors/FlatCAMGeoEditor.py:444 flatcamGUI/PreferencesUI.py:4484 +#: flatcamEditors/FlatCAMGeoEditor.py:444 flatcamGUI/PreferencesUI.py:4502 msgid "" "Diameter of the tool to\n" "be used in the operation." @@ -3561,30 +3566,16 @@ msgstr "" "Diametrul uneltei care este utilizata in operaţie. \n" "Este și lăţimea de tăiere pentru uneltele cilindrice." -#: flatcamEditors/FlatCAMGeoEditor.py:455 flatcamGUI/PreferencesUI.py:4089 -#: flatcamGUI/PreferencesUI.py:4514 flatcamTools/ToolNonCopperClear.py:319 +#: flatcamEditors/FlatCAMGeoEditor.py:455 flatcamGUI/PreferencesUI.py:4107 +#: flatcamGUI/PreferencesUI.py:4532 flatcamTools/ToolNonCopperClear.py:319 #: flatcamTools/ToolPaint.py:219 msgid "Overlap Rate" msgstr "Rată suprapunere" -#: flatcamEditors/FlatCAMGeoEditor.py:457 -#, fuzzy, 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." +#: flatcamEditors/FlatCAMGeoEditor.py:457 flatcamGUI/PreferencesUI.py:4534 +#: flatcamTools/ToolPaint.py:221 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" @@ -3594,9 +3585,6 @@ msgid "" 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" @@ -3604,17 +3592,17 @@ msgstr "" "Valori mari= procesare lenta cat și o execuţie la fel de lenta a PCB-ului,\n" "datorita numărului mai mare de treceri-tăiere." -#: flatcamEditors/FlatCAMGeoEditor.py:477 flatcamGUI/PreferencesUI.py:4108 -#: flatcamGUI/PreferencesUI.py:4329 flatcamGUI/PreferencesUI.py:4534 -#: flatcamGUI/PreferencesUI.py:6088 flatcamGUI/PreferencesUI.py:6245 -#: flatcamGUI/PreferencesUI.py:6330 flatcamTools/ToolCopperThieving.py:111 +#: flatcamEditors/FlatCAMGeoEditor.py:475 flatcamGUI/PreferencesUI.py:4126 +#: flatcamGUI/PreferencesUI.py:4347 flatcamGUI/PreferencesUI.py:4552 +#: flatcamGUI/PreferencesUI.py:6106 flatcamGUI/PreferencesUI.py:6263 +#: flatcamGUI/PreferencesUI.py:6348 flatcamTools/ToolCopperThieving.py:111 #: flatcamTools/ToolCopperThieving.py:361 flatcamTools/ToolCutOut.py:182 #: flatcamTools/ToolFiducials.py:172 flatcamTools/ToolNonCopperClear.py:337 #: flatcamTools/ToolPaint.py:238 msgid "Margin" msgstr "Margine" -#: flatcamEditors/FlatCAMGeoEditor.py:479 flatcamGUI/PreferencesUI.py:4536 +#: flatcamEditors/FlatCAMGeoEditor.py:477 flatcamGUI/PreferencesUI.py:4554 #: flatcamTools/ToolPaint.py:240 msgid "" "Distance by which to avoid\n" @@ -3625,13 +3613,13 @@ msgstr "" "poligonului care trebuie\n" "să fie >pictat<." -#: flatcamEditors/FlatCAMGeoEditor.py:491 flatcamGUI/PreferencesUI.py:4121 -#: flatcamGUI/PreferencesUI.py:4549 flatcamTools/ToolNonCopperClear.py:348 +#: flatcamEditors/FlatCAMGeoEditor.py:489 flatcamGUI/PreferencesUI.py:4139 +#: flatcamGUI/PreferencesUI.py:4567 flatcamTools/ToolNonCopperClear.py:348 #: flatcamTools/ToolPaint.py:251 msgid "Method" msgstr "Metodă" -#: flatcamEditors/FlatCAMGeoEditor.py:493 +#: flatcamEditors/FlatCAMGeoEditor.py:491 msgid "" "Algorithm to paint the polygon:
Standard: Fixed step inwards." "
Seed-based: Outwards from seed." @@ -3639,30 +3627,30 @@ msgstr "" "Algoritm pentru a picta poligonul
Standard: Pas fix spre interior." "
Samanta: Spre exterior pornind de la un punct-samanta." -#: flatcamEditors/FlatCAMGeoEditor.py:498 flatcamGUI/PreferencesUI.py:4130 -#: flatcamGUI/PreferencesUI.py:4558 flatcamTools/ToolNonCopperClear.py:357 +#: flatcamEditors/FlatCAMGeoEditor.py:496 flatcamGUI/PreferencesUI.py:4148 +#: flatcamGUI/PreferencesUI.py:4576 flatcamTools/ToolNonCopperClear.py:357 #: flatcamTools/ToolPaint.py:260 msgid "Standard" msgstr "Standard" -#: flatcamEditors/FlatCAMGeoEditor.py:499 flatcamGUI/PreferencesUI.py:4131 -#: flatcamGUI/PreferencesUI.py:4559 flatcamTools/ToolNonCopperClear.py:358 +#: flatcamEditors/FlatCAMGeoEditor.py:497 flatcamGUI/PreferencesUI.py:4149 +#: flatcamGUI/PreferencesUI.py:4577 flatcamTools/ToolNonCopperClear.py:358 #: flatcamTools/ToolPaint.py:261 msgid "Seed-based" msgstr "Punct-samanta" -#: flatcamEditors/FlatCAMGeoEditor.py:500 flatcamGUI/PreferencesUI.py:4132 -#: flatcamGUI/PreferencesUI.py:4560 flatcamTools/ToolNonCopperClear.py:359 +#: flatcamEditors/FlatCAMGeoEditor.py:498 flatcamGUI/PreferencesUI.py:4150 +#: flatcamGUI/PreferencesUI.py:4578 flatcamTools/ToolNonCopperClear.py:359 #: flatcamTools/ToolPaint.py:262 msgid "Straight lines" msgstr "Linii drepte" -#: flatcamEditors/FlatCAMGeoEditor.py:507 +#: flatcamEditors/FlatCAMGeoEditor.py:505 msgid "Connect:" msgstr "Conectează:" -#: flatcamEditors/FlatCAMGeoEditor.py:509 flatcamGUI/PreferencesUI.py:4141 -#: flatcamGUI/PreferencesUI.py:4567 flatcamTools/ToolNonCopperClear.py:366 +#: flatcamEditors/FlatCAMGeoEditor.py:507 flatcamGUI/PreferencesUI.py:4159 +#: flatcamGUI/PreferencesUI.py:4585 flatcamTools/ToolNonCopperClear.py:366 #: flatcamTools/ToolPaint.py:269 msgid "" "Draw lines between resulting\n" @@ -3672,12 +3660,12 @@ msgstr "" "rezultate pentru a minimiza miscarile\n" "de ridicare a uneltei." -#: flatcamEditors/FlatCAMGeoEditor.py:517 +#: flatcamEditors/FlatCAMGeoEditor.py:515 msgid "Contour:" msgstr "Contur:" -#: flatcamEditors/FlatCAMGeoEditor.py:519 flatcamGUI/PreferencesUI.py:4152 -#: flatcamGUI/PreferencesUI.py:4577 flatcamTools/ToolNonCopperClear.py:375 +#: flatcamEditors/FlatCAMGeoEditor.py:517 flatcamGUI/PreferencesUI.py:4170 +#: flatcamGUI/PreferencesUI.py:4595 flatcamTools/ToolNonCopperClear.py:375 #: flatcamTools/ToolPaint.py:278 msgid "" "Cut around the perimeter of the polygon\n" @@ -3686,86 +3674,86 @@ msgstr "" "Taie de-a lungul perimetrului poligonului\n" "pentru a elimina bavurile." -#: flatcamEditors/FlatCAMGeoEditor.py:531 flatcamGUI/FlatCAMGUI.py:1909 +#: flatcamEditors/FlatCAMGeoEditor.py:529 flatcamGUI/FlatCAMGUI.py:1921 msgid "Paint" msgstr "Pictează" -#: flatcamEditors/FlatCAMGeoEditor.py:549 flatcamGUI/FlatCAMGUI.py:738 -#: flatcamGUI/FlatCAMGUI.py:2182 flatcamGUI/ObjectUI.py:1637 -#: flatcamTools/ToolPaint.py:41 flatcamTools/ToolPaint.py:537 +#: flatcamEditors/FlatCAMGeoEditor.py:547 flatcamGUI/FlatCAMGUI.py:749 +#: flatcamGUI/FlatCAMGUI.py:2194 flatcamGUI/ObjectUI.py:1694 +#: flatcamTools/ToolPaint.py:41 flatcamTools/ToolPaint.py:538 msgid "Paint Tool" msgstr "Unealta Paint" -#: flatcamEditors/FlatCAMGeoEditor.py:586 +#: flatcamEditors/FlatCAMGeoEditor.py:584 msgid "Paint cancelled. No shape selected." msgstr "Operaţie Paint anulată. Nici-o forma selectată." -#: flatcamEditors/FlatCAMGeoEditor.py:599 -#: flatcamEditors/FlatCAMGeoEditor.py:2786 -#: flatcamEditors/FlatCAMGeoEditor.py:2816 -#: flatcamEditors/FlatCAMGeoEditor.py:2846 flatcamGUI/PreferencesUI.py:3138 +#: flatcamEditors/FlatCAMGeoEditor.py:597 +#: flatcamEditors/FlatCAMGeoEditor.py:2784 +#: flatcamEditors/FlatCAMGeoEditor.py:2814 +#: flatcamEditors/FlatCAMGeoEditor.py:2844 flatcamGUI/PreferencesUI.py:3140 #: flatcamTools/ToolProperties.py:120 flatcamTools/ToolProperties.py:158 msgid "Tools" msgstr "Unelte" -#: flatcamEditors/FlatCAMGeoEditor.py:610 -#: flatcamEditors/FlatCAMGeoEditor.py:994 +#: flatcamEditors/FlatCAMGeoEditor.py:608 +#: flatcamEditors/FlatCAMGeoEditor.py:992 #: flatcamEditors/FlatCAMGrbEditor.py:5011 -#: flatcamEditors/FlatCAMGrbEditor.py:5408 flatcamGUI/FlatCAMGUI.py:751 -#: flatcamGUI/FlatCAMGUI.py:2195 flatcamTools/ToolTransform.py:371 +#: flatcamEditors/FlatCAMGrbEditor.py:5408 flatcamGUI/FlatCAMGUI.py:762 +#: flatcamGUI/FlatCAMGUI.py:2207 flatcamTools/ToolTransform.py:371 msgid "Transform Tool" msgstr "Unealta Transformare" -#: flatcamEditors/FlatCAMGeoEditor.py:611 -#: flatcamEditors/FlatCAMGeoEditor.py:676 +#: flatcamEditors/FlatCAMGeoEditor.py:609 +#: flatcamEditors/FlatCAMGeoEditor.py:674 #: flatcamEditors/FlatCAMGrbEditor.py:5012 -#: flatcamEditors/FlatCAMGrbEditor.py:5077 flatcamGUI/PreferencesUI.py:5189 +#: flatcamEditors/FlatCAMGrbEditor.py:5077 flatcamGUI/PreferencesUI.py:5207 #: flatcamTools/ToolTransform.py:25 flatcamTools/ToolTransform.py:79 msgid "Rotate" msgstr "Rotaţie" -#: flatcamEditors/FlatCAMGeoEditor.py:612 +#: flatcamEditors/FlatCAMGeoEditor.py:610 #: flatcamEditors/FlatCAMGrbEditor.py:5013 flatcamTools/ToolTransform.py:26 msgid "Skew/Shear" msgstr "Deformare" -#: flatcamEditors/FlatCAMGeoEditor.py:613 +#: flatcamEditors/FlatCAMGeoEditor.py:611 #: flatcamEditors/FlatCAMGrbEditor.py:2600 -#: flatcamEditors/FlatCAMGrbEditor.py:5014 flatcamGUI/FlatCAMGUI.py:831 -#: flatcamGUI/FlatCAMGUI.py:1858 flatcamGUI/FlatCAMGUI.py:1936 -#: flatcamGUI/FlatCAMGUI.py:2271 flatcamGUI/ObjectUI.py:92 -#: flatcamGUI/ObjectUI.py:113 flatcamGUI/PreferencesUI.py:5239 +#: flatcamEditors/FlatCAMGrbEditor.py:5014 flatcamGUI/FlatCAMGUI.py:843 +#: flatcamGUI/FlatCAMGUI.py:1870 flatcamGUI/FlatCAMGUI.py:1948 +#: flatcamGUI/FlatCAMGUI.py:2284 flatcamGUI/ObjectUI.py:92 +#: flatcamGUI/ObjectUI.py:110 flatcamGUI/PreferencesUI.py:5257 #: flatcamTools/ToolTransform.py:27 msgid "Scale" msgstr "Scalare" -#: flatcamEditors/FlatCAMGeoEditor.py:614 +#: flatcamEditors/FlatCAMGeoEditor.py:612 #: flatcamEditors/FlatCAMGrbEditor.py:5015 flatcamTools/ToolTransform.py:28 msgid "Mirror (Flip)" msgstr "Oglindire" -#: flatcamEditors/FlatCAMGeoEditor.py:615 -#: flatcamEditors/FlatCAMGrbEditor.py:5016 flatcamGUI/ObjectUI.py:124 -#: flatcamGUI/ObjectUI.py:139 flatcamGUI/ObjectUI.py:1141 -#: flatcamGUI/ObjectUI.py:1784 flatcamGUI/PreferencesUI.py:4177 -#: flatcamGUI/PreferencesUI.py:5286 flatcamTools/ToolNonCopperClear.py:397 +#: flatcamEditors/FlatCAMGeoEditor.py:613 +#: flatcamEditors/FlatCAMGrbEditor.py:5016 flatcamGUI/ObjectUI.py:121 +#: flatcamGUI/ObjectUI.py:137 flatcamGUI/ObjectUI.py:1178 +#: flatcamGUI/ObjectUI.py:1866 flatcamGUI/PreferencesUI.py:4195 +#: flatcamGUI/PreferencesUI.py:5304 flatcamTools/ToolNonCopperClear.py:397 #: flatcamTools/ToolTransform.py:29 msgid "Offset" msgstr "Ofset" -#: flatcamEditors/FlatCAMGeoEditor.py:628 -#: flatcamEditors/FlatCAMGrbEditor.py:5029 flatcamGUI/FlatCAMGUI.py:698 -#: flatcamGUI/FlatCAMGUI.py:2148 +#: flatcamEditors/FlatCAMGeoEditor.py:626 +#: flatcamEditors/FlatCAMGrbEditor.py:5029 flatcamGUI/FlatCAMGUI.py:709 +#: flatcamGUI/FlatCAMGUI.py:2160 msgid "Editor" msgstr "Editor" -#: flatcamEditors/FlatCAMGeoEditor.py:660 +#: flatcamEditors/FlatCAMGeoEditor.py:658 #: flatcamEditors/FlatCAMGrbEditor.py:5061 msgid "Angle:" msgstr "Unghi:" -#: flatcamEditors/FlatCAMGeoEditor.py:662 -#: flatcamEditors/FlatCAMGrbEditor.py:5063 flatcamGUI/PreferencesUI.py:5199 +#: flatcamEditors/FlatCAMGeoEditor.py:660 +#: flatcamEditors/FlatCAMGrbEditor.py:5063 flatcamGUI/PreferencesUI.py:5217 #: flatcamTools/ToolTransform.py:64 msgid "" "Angle for Rotation action, in degrees.\n" @@ -3777,7 +3765,7 @@ msgstr "" "Numerele pozitive inseamna o mișcare in sens ace ceasornic.\n" "Numerele negative inseamna o mișcare in sens invers ace ceasornic." -#: flatcamEditors/FlatCAMGeoEditor.py:678 +#: flatcamEditors/FlatCAMGeoEditor.py:676 #: flatcamEditors/FlatCAMGrbEditor.py:5079 msgid "" "Rotate the selected shape(s).\n" @@ -3789,17 +3777,17 @@ msgstr "" "formei înconjurătoare care cuprinde\n" "toate formele selectate." -#: flatcamEditors/FlatCAMGeoEditor.py:701 +#: flatcamEditors/FlatCAMGeoEditor.py:699 #: flatcamEditors/FlatCAMGrbEditor.py:5102 msgid "Angle X:" msgstr "Unghi X:" -#: flatcamEditors/FlatCAMGeoEditor.py:703 -#: flatcamEditors/FlatCAMGeoEditor.py:723 +#: flatcamEditors/FlatCAMGeoEditor.py:701 +#: flatcamEditors/FlatCAMGeoEditor.py:721 #: flatcamEditors/FlatCAMGrbEditor.py:5104 -#: flatcamEditors/FlatCAMGrbEditor.py:5124 flatcamGUI/PreferencesUI.py:5218 -#: flatcamGUI/PreferencesUI.py:5232 flatcamTools/ToolCalibration.py:445 -#: flatcamTools/ToolCalibration.py:458 +#: flatcamEditors/FlatCAMGrbEditor.py:5124 flatcamGUI/PreferencesUI.py:5236 +#: flatcamGUI/PreferencesUI.py:5250 flatcamTools/ToolCalibration.py:508 +#: flatcamTools/ToolCalibration.py:521 msgid "" "Angle for Skew action, in degrees.\n" "Float number between -360 and 359." @@ -3807,13 +3795,13 @@ msgstr "" "Valoarea unghiului de Deformare, in grade.\n" "Ia valori Reale între -360 and 359 grade." -#: flatcamEditors/FlatCAMGeoEditor.py:714 +#: flatcamEditors/FlatCAMGeoEditor.py:712 #: flatcamEditors/FlatCAMGrbEditor.py:5115 flatcamTools/ToolTransform.py:108 msgid "Skew X" msgstr "Deformare X" -#: flatcamEditors/FlatCAMGeoEditor.py:716 -#: flatcamEditors/FlatCAMGeoEditor.py:736 +#: flatcamEditors/FlatCAMGeoEditor.py:714 +#: flatcamEditors/FlatCAMGeoEditor.py:734 #: flatcamEditors/FlatCAMGrbEditor.py:5117 #: flatcamEditors/FlatCAMGrbEditor.py:5137 msgid "" @@ -3826,33 +3814,33 @@ msgstr "" "formei înconjurătoare care cuprinde\n" "toate formele selectate." -#: flatcamEditors/FlatCAMGeoEditor.py:721 +#: flatcamEditors/FlatCAMGeoEditor.py:719 #: flatcamEditors/FlatCAMGrbEditor.py:5122 msgid "Angle Y:" msgstr "Unghi Y:" -#: flatcamEditors/FlatCAMGeoEditor.py:734 +#: flatcamEditors/FlatCAMGeoEditor.py:732 #: flatcamEditors/FlatCAMGrbEditor.py:5135 flatcamTools/ToolTransform.py:130 msgid "Skew Y" msgstr "Deformare Y" -#: flatcamEditors/FlatCAMGeoEditor.py:762 +#: flatcamEditors/FlatCAMGeoEditor.py:760 #: flatcamEditors/FlatCAMGrbEditor.py:5163 msgid "Factor X:" msgstr "Factor X:" -#: flatcamEditors/FlatCAMGeoEditor.py:764 -#: flatcamEditors/FlatCAMGrbEditor.py:5165 flatcamTools/ToolCalibration.py:409 +#: flatcamEditors/FlatCAMGeoEditor.py:762 +#: flatcamEditors/FlatCAMGrbEditor.py:5165 flatcamTools/ToolCalibration.py:472 msgid "Factor for Scale action over X axis." msgstr "Factor pentru scalarea pe axa X." -#: flatcamEditors/FlatCAMGeoEditor.py:774 +#: flatcamEditors/FlatCAMGeoEditor.py:772 #: flatcamEditors/FlatCAMGrbEditor.py:5175 flatcamTools/ToolTransform.py:157 msgid "Scale X" msgstr "Scalează X" -#: flatcamEditors/FlatCAMGeoEditor.py:776 -#: flatcamEditors/FlatCAMGeoEditor.py:795 +#: flatcamEditors/FlatCAMGeoEditor.py:774 +#: flatcamEditors/FlatCAMGeoEditor.py:793 #: flatcamEditors/FlatCAMGrbEditor.py:5177 #: flatcamEditors/FlatCAMGrbEditor.py:5196 msgid "" @@ -3864,28 +3852,28 @@ msgstr "" "Punctul de referinţă depinde de \n" "starea checkbox-ului >Referința scalare<." -#: flatcamEditors/FlatCAMGeoEditor.py:781 +#: flatcamEditors/FlatCAMGeoEditor.py:779 #: flatcamEditors/FlatCAMGrbEditor.py:5182 msgid "Factor Y:" msgstr "Factor Y:" -#: flatcamEditors/FlatCAMGeoEditor.py:783 -#: flatcamEditors/FlatCAMGrbEditor.py:5184 flatcamTools/ToolCalibration.py:421 +#: flatcamEditors/FlatCAMGeoEditor.py:781 +#: flatcamEditors/FlatCAMGrbEditor.py:5184 flatcamTools/ToolCalibration.py:484 msgid "Factor for Scale action over Y axis." msgstr "Factor pentru scalarea pe axa Y." -#: flatcamEditors/FlatCAMGeoEditor.py:793 +#: flatcamEditors/FlatCAMGeoEditor.py:791 #: flatcamEditors/FlatCAMGrbEditor.py:5194 flatcamTools/ToolTransform.py:178 msgid "Scale Y" msgstr "Scalează Y" -#: flatcamEditors/FlatCAMGeoEditor.py:802 -#: flatcamEditors/FlatCAMGrbEditor.py:5203 flatcamGUI/PreferencesUI.py:5268 +#: flatcamEditors/FlatCAMGeoEditor.py:800 +#: flatcamEditors/FlatCAMGrbEditor.py:5203 flatcamGUI/PreferencesUI.py:5286 #: flatcamTools/ToolTransform.py:191 msgid "Link" msgstr "Legatura" -#: flatcamEditors/FlatCAMGeoEditor.py:804 +#: flatcamEditors/FlatCAMGeoEditor.py:802 #: flatcamEditors/FlatCAMGrbEditor.py:5205 msgid "" "Scale the selected shape(s)\n" @@ -3894,13 +3882,13 @@ msgstr "" "Scalează formele selectate\n" "folsoind factorul: Factor X pentru ambele axe." -#: flatcamEditors/FlatCAMGeoEditor.py:810 -#: flatcamEditors/FlatCAMGrbEditor.py:5211 flatcamGUI/PreferencesUI.py:5276 +#: flatcamEditors/FlatCAMGeoEditor.py:808 +#: flatcamEditors/FlatCAMGrbEditor.py:5211 flatcamGUI/PreferencesUI.py:5294 #: flatcamTools/ToolTransform.py:199 msgid "Scale Reference" msgstr "Referința scalare" -#: flatcamEditors/FlatCAMGeoEditor.py:812 +#: flatcamEditors/FlatCAMGeoEditor.py:810 #: flatcamEditors/FlatCAMGrbEditor.py:5213 msgid "" "Scale the selected shape(s)\n" @@ -3914,23 +3902,23 @@ msgstr "" "toate formele selectate când nu este\n" "bifat și este originea când este bifat." -#: flatcamEditors/FlatCAMGeoEditor.py:840 +#: flatcamEditors/FlatCAMGeoEditor.py:838 #: flatcamEditors/FlatCAMGrbEditor.py:5242 msgid "Value X:" msgstr "Valoare X:" -#: flatcamEditors/FlatCAMGeoEditor.py:842 +#: flatcamEditors/FlatCAMGeoEditor.py:840 #: flatcamEditors/FlatCAMGrbEditor.py:5244 msgid "Value for Offset action on X axis." msgstr "Valoare pentru deplasarea pe axa X." -#: flatcamEditors/FlatCAMGeoEditor.py:852 +#: flatcamEditors/FlatCAMGeoEditor.py:850 #: flatcamEditors/FlatCAMGrbEditor.py:5254 flatcamTools/ToolTransform.py:226 msgid "Offset X" msgstr "Ofset pe X" -#: flatcamEditors/FlatCAMGeoEditor.py:854 -#: flatcamEditors/FlatCAMGeoEditor.py:874 +#: flatcamEditors/FlatCAMGeoEditor.py:852 +#: flatcamEditors/FlatCAMGeoEditor.py:872 #: flatcamEditors/FlatCAMGrbEditor.py:5256 #: flatcamEditors/FlatCAMGrbEditor.py:5276 msgid "" @@ -3943,28 +3931,28 @@ msgstr "" "formei înconjurătoare care cuprinde\n" "toate formele selectate.\n" -#: flatcamEditors/FlatCAMGeoEditor.py:860 +#: flatcamEditors/FlatCAMGeoEditor.py:858 #: flatcamEditors/FlatCAMGrbEditor.py:5262 msgid "Value Y:" msgstr "Valoare Y:" -#: flatcamEditors/FlatCAMGeoEditor.py:862 +#: flatcamEditors/FlatCAMGeoEditor.py:860 #: flatcamEditors/FlatCAMGrbEditor.py:5264 msgid "Value for Offset action on Y axis." msgstr "Valoare pentru deplasarea pe axa Y." -#: flatcamEditors/FlatCAMGeoEditor.py:872 +#: flatcamEditors/FlatCAMGeoEditor.py:870 #: flatcamEditors/FlatCAMGrbEditor.py:5274 flatcamTools/ToolTransform.py:247 msgid "Offset Y" msgstr "Ofset pe Y" -#: flatcamEditors/FlatCAMGeoEditor.py:903 +#: flatcamEditors/FlatCAMGeoEditor.py:901 #: flatcamEditors/FlatCAMGrbEditor.py:5305 flatcamTools/ToolTransform.py:265 msgid "Flip on X" msgstr "Oglindește pe X" -#: flatcamEditors/FlatCAMGeoEditor.py:905 -#: flatcamEditors/FlatCAMGeoEditor.py:912 +#: flatcamEditors/FlatCAMGeoEditor.py:903 +#: flatcamEditors/FlatCAMGeoEditor.py:910 #: flatcamEditors/FlatCAMGrbEditor.py:5307 #: flatcamEditors/FlatCAMGrbEditor.py:5314 msgid "" @@ -3974,17 +3962,17 @@ msgstr "" "Oglindește formele selectate peste axa X\n" "Nu crează noi forme." -#: flatcamEditors/FlatCAMGeoEditor.py:910 +#: flatcamEditors/FlatCAMGeoEditor.py:908 #: flatcamEditors/FlatCAMGrbEditor.py:5312 flatcamTools/ToolTransform.py:271 msgid "Flip on Y" msgstr "Oglindește pe Y" -#: flatcamEditors/FlatCAMGeoEditor.py:918 +#: flatcamEditors/FlatCAMGeoEditor.py:916 #: flatcamEditors/FlatCAMGrbEditor.py:5320 msgid "Ref Pt" msgstr "Pt ref" -#: flatcamEditors/FlatCAMGeoEditor.py:920 +#: flatcamEditors/FlatCAMGeoEditor.py:918 #: flatcamEditors/FlatCAMGrbEditor.py:5322 msgid "" "Flip the selected shape(s)\n" @@ -4008,12 +3996,12 @@ msgstr "" "Alternativ se pot introduce manual in formatul (x, y). \n" "La final click pe >Oglindește pe X(Y)<." -#: flatcamEditors/FlatCAMGeoEditor.py:932 +#: flatcamEditors/FlatCAMGeoEditor.py:930 #: flatcamEditors/FlatCAMGrbEditor.py:5334 msgid "Point:" msgstr "Punct:" -#: flatcamEditors/FlatCAMGeoEditor.py:934 +#: flatcamEditors/FlatCAMGeoEditor.py:932 #: flatcamEditors/FlatCAMGrbEditor.py:5336 flatcamTools/ToolTransform.py:300 msgid "" "Coordinates in format (x, y) used as reference for mirroring.\n" @@ -4024,7 +4012,7 @@ msgstr "" "Valoarea 'x' in (x, y) va fi folosita când se face oglindire pe X\n" "și valoarea 'y' in (x, y) va fi folosita când se face oglindire pe Y." -#: flatcamEditors/FlatCAMGeoEditor.py:944 +#: flatcamEditors/FlatCAMGeoEditor.py:942 #: flatcamEditors/FlatCAMGrbEditor.py:5348 flatcamTools/ToolTransform.py:311 msgid "" "The point coordinates can be captured by\n" @@ -4036,360 +4024,360 @@ msgstr "" "tasta SHIFT.\n" "La final, apasa butonul >Adaugă< pt a le insera." -#: flatcamEditors/FlatCAMGeoEditor.py:1059 +#: flatcamEditors/FlatCAMGeoEditor.py:1057 #: flatcamEditors/FlatCAMGrbEditor.py:5473 msgid "Transformation cancelled. No shape selected." msgstr "Transformare anulată. Nici-o formă nu este selectată." -#: flatcamEditors/FlatCAMGeoEditor.py:1260 +#: flatcamEditors/FlatCAMGeoEditor.py:1258 #: flatcamEditors/FlatCAMGrbEditor.py:5657 msgid "No shape selected. Please Select a shape to rotate!" msgstr "" "Nici-o forma nu este selectată. Selectează o forma pentru a putea face " "Rotaţie!" -#: flatcamEditors/FlatCAMGeoEditor.py:1263 +#: flatcamEditors/FlatCAMGeoEditor.py:1261 #: flatcamEditors/FlatCAMGrbEditor.py:5660 flatcamTools/ToolTransform.py:545 msgid "Appying Rotate" msgstr "Execuţie Rotaţie" -#: flatcamEditors/FlatCAMGeoEditor.py:1292 +#: flatcamEditors/FlatCAMGeoEditor.py:1290 #: flatcamEditors/FlatCAMGrbEditor.py:5694 msgid "Done. Rotate completed." msgstr "Executat. Rotaţie finalizată." -#: flatcamEditors/FlatCAMGeoEditor.py:1297 +#: flatcamEditors/FlatCAMGeoEditor.py:1295 msgid "Rotation action was not executed" msgstr "Actiunea de rotatie nu a fost efectuată" -#: flatcamEditors/FlatCAMGeoEditor.py:1309 +#: flatcamEditors/FlatCAMGeoEditor.py:1307 #: flatcamEditors/FlatCAMGrbEditor.py:5715 msgid "No shape selected. Please Select a shape to flip!" msgstr "" "Nici-o formă nu este selectată. Selectează o formă pentru a putea face " "Oglindire!" -#: flatcamEditors/FlatCAMGeoEditor.py:1312 +#: flatcamEditors/FlatCAMGeoEditor.py:1310 #: flatcamEditors/FlatCAMGrbEditor.py:5718 flatcamTools/ToolTransform.py:598 msgid "Applying Flip" msgstr "Execuţie Oglindire" -#: flatcamEditors/FlatCAMGeoEditor.py:1343 +#: flatcamEditors/FlatCAMGeoEditor.py:1341 #: flatcamEditors/FlatCAMGrbEditor.py:5758 flatcamTools/ToolTransform.py:641 msgid "Flip on the Y axis done" msgstr "Oglindire pe axa Y executată" -#: flatcamEditors/FlatCAMGeoEditor.py:1347 +#: flatcamEditors/FlatCAMGeoEditor.py:1345 #: flatcamEditors/FlatCAMGrbEditor.py:5767 flatcamTools/ToolTransform.py:651 msgid "Flip on the X axis done" msgstr "Oglindire pe axa X executată" -#: flatcamEditors/FlatCAMGeoEditor.py:1357 +#: flatcamEditors/FlatCAMGeoEditor.py:1355 msgid "Flip action was not executed" msgstr "Actiunea de oglindire nu a fost efectuată" -#: flatcamEditors/FlatCAMGeoEditor.py:1367 +#: flatcamEditors/FlatCAMGeoEditor.py:1365 #: flatcamEditors/FlatCAMGrbEditor.py:5789 msgid "No shape selected. Please Select a shape to shear/skew!" msgstr "" "Nici-o formă nu este selectată. Selectează o formă pentru a putea face " "Deformare!" -#: flatcamEditors/FlatCAMGeoEditor.py:1370 +#: flatcamEditors/FlatCAMGeoEditor.py:1368 #: flatcamEditors/FlatCAMGrbEditor.py:5792 flatcamTools/ToolTransform.py:676 msgid "Applying Skew" msgstr "Execuţie Deformare" -#: flatcamEditors/FlatCAMGeoEditor.py:1396 +#: flatcamEditors/FlatCAMGeoEditor.py:1394 #: flatcamEditors/FlatCAMGrbEditor.py:5828 msgid "Skew on the X axis done" msgstr "Oglindire pe axa X executată" -#: flatcamEditors/FlatCAMGeoEditor.py:1399 +#: flatcamEditors/FlatCAMGeoEditor.py:1397 #: flatcamEditors/FlatCAMGrbEditor.py:5830 msgid "Skew on the Y axis done" msgstr "Oglindire pe axa Y executată" -#: flatcamEditors/FlatCAMGeoEditor.py:1403 +#: flatcamEditors/FlatCAMGeoEditor.py:1401 msgid "Skew action was not executed" msgstr "Actiunea de deformare nu a fost efectuată" -#: flatcamEditors/FlatCAMGeoEditor.py:1415 +#: flatcamEditors/FlatCAMGeoEditor.py:1413 #: flatcamEditors/FlatCAMGrbEditor.py:5854 msgid "No shape selected. Please Select a shape to scale!" msgstr "" "Nici-o formă nu este selectată. Selectează o formă pentru a putea face " "Scalare!" -#: flatcamEditors/FlatCAMGeoEditor.py:1418 +#: flatcamEditors/FlatCAMGeoEditor.py:1416 #: flatcamEditors/FlatCAMGrbEditor.py:5857 flatcamTools/ToolTransform.py:728 msgid "Applying Scale" msgstr "Execuţie Scalare" -#: flatcamEditors/FlatCAMGeoEditor.py:1453 +#: flatcamEditors/FlatCAMGeoEditor.py:1451 #: flatcamEditors/FlatCAMGrbEditor.py:5896 msgid "Scale on the X axis done" msgstr "Scalarea pe axa X executată" -#: flatcamEditors/FlatCAMGeoEditor.py:1456 +#: flatcamEditors/FlatCAMGeoEditor.py:1454 #: flatcamEditors/FlatCAMGrbEditor.py:5898 msgid "Scale on the Y axis done" msgstr "Scalarea pe axa Y executată" -#: flatcamEditors/FlatCAMGeoEditor.py:1459 +#: flatcamEditors/FlatCAMGeoEditor.py:1457 msgid "Scale action was not executed" msgstr "Scalarea nu a fost efectuată" -#: flatcamEditors/FlatCAMGeoEditor.py:1469 +#: flatcamEditors/FlatCAMGeoEditor.py:1467 #: flatcamEditors/FlatCAMGrbEditor.py:5915 msgid "No shape selected. Please Select a shape to offset!" msgstr "" "Nici-o formă nu este selectată. Selectează o formă pentru a putea face Ofset!" -#: flatcamEditors/FlatCAMGeoEditor.py:1472 +#: flatcamEditors/FlatCAMGeoEditor.py:1470 #: flatcamEditors/FlatCAMGrbEditor.py:5918 flatcamTools/ToolTransform.py:783 msgid "Applying Offset" msgstr "Execuţie Ofset" -#: flatcamEditors/FlatCAMGeoEditor.py:1485 +#: flatcamEditors/FlatCAMGeoEditor.py:1483 #: flatcamEditors/FlatCAMGrbEditor.py:5939 msgid "Offset on the X axis done" msgstr "Ofset pe axa X efectuat" -#: flatcamEditors/FlatCAMGeoEditor.py:1488 +#: flatcamEditors/FlatCAMGeoEditor.py:1486 #: flatcamEditors/FlatCAMGrbEditor.py:5941 msgid "Offset on the Y axis done" msgstr "Ofset pe axa Y efectuat" -#: flatcamEditors/FlatCAMGeoEditor.py:1492 +#: flatcamEditors/FlatCAMGeoEditor.py:1490 msgid "Offset action was not executed" msgstr "Actiuena de Ofset nu a fost efectuată" -#: flatcamEditors/FlatCAMGeoEditor.py:1496 +#: flatcamEditors/FlatCAMGeoEditor.py:1494 #: flatcamEditors/FlatCAMGrbEditor.py:5948 msgid "Rotate ..." msgstr "Rotaţie ..." -#: flatcamEditors/FlatCAMGeoEditor.py:1497 -#: flatcamEditors/FlatCAMGeoEditor.py:1552 -#: flatcamEditors/FlatCAMGeoEditor.py:1569 +#: flatcamEditors/FlatCAMGeoEditor.py:1495 +#: flatcamEditors/FlatCAMGeoEditor.py:1550 +#: flatcamEditors/FlatCAMGeoEditor.py:1567 #: flatcamEditors/FlatCAMGrbEditor.py:5949 #: flatcamEditors/FlatCAMGrbEditor.py:5998 #: flatcamEditors/FlatCAMGrbEditor.py:6013 msgid "Enter an Angle Value (degrees)" msgstr "Introdu o valoare in grade pt Unghi" -#: flatcamEditors/FlatCAMGeoEditor.py:1506 +#: flatcamEditors/FlatCAMGeoEditor.py:1504 #: flatcamEditors/FlatCAMGrbEditor.py:5957 msgid "Geometry shape rotate done" msgstr "Rotatia formei geometrice executată" -#: flatcamEditors/FlatCAMGeoEditor.py:1510 +#: flatcamEditors/FlatCAMGeoEditor.py:1508 #: flatcamEditors/FlatCAMGrbEditor.py:5960 msgid "Geometry shape rotate cancelled" msgstr "Rotatia formei geometrice anulată" -#: flatcamEditors/FlatCAMGeoEditor.py:1515 +#: flatcamEditors/FlatCAMGeoEditor.py:1513 #: flatcamEditors/FlatCAMGrbEditor.py:5965 msgid "Offset on X axis ..." msgstr "Ofset pe axa X ..." -#: flatcamEditors/FlatCAMGeoEditor.py:1516 -#: flatcamEditors/FlatCAMGeoEditor.py:1535 +#: flatcamEditors/FlatCAMGeoEditor.py:1514 +#: flatcamEditors/FlatCAMGeoEditor.py:1533 #: flatcamEditors/FlatCAMGrbEditor.py:5966 #: flatcamEditors/FlatCAMGrbEditor.py:5983 msgid "Enter a distance Value" msgstr "Introdu of valoare pt Distantă" -#: flatcamEditors/FlatCAMGeoEditor.py:1525 +#: flatcamEditors/FlatCAMGeoEditor.py:1523 #: flatcamEditors/FlatCAMGrbEditor.py:5974 msgid "Geometry shape offset on X axis done" msgstr "Ofset pe axa X executat" -#: flatcamEditors/FlatCAMGeoEditor.py:1529 +#: flatcamEditors/FlatCAMGeoEditor.py:1527 #: flatcamEditors/FlatCAMGrbEditor.py:5977 msgid "Geometry shape offset X cancelled" msgstr "Ofset pe axa X anulat" -#: flatcamEditors/FlatCAMGeoEditor.py:1534 +#: flatcamEditors/FlatCAMGeoEditor.py:1532 #: flatcamEditors/FlatCAMGrbEditor.py:5982 msgid "Offset on Y axis ..." msgstr "Ofset pe axa Y ..." -#: flatcamEditors/FlatCAMGeoEditor.py:1544 +#: flatcamEditors/FlatCAMGeoEditor.py:1542 #: flatcamEditors/FlatCAMGrbEditor.py:5991 msgid "Geometry shape offset on Y axis done" msgstr "Ofset pe axa Y executat" -#: flatcamEditors/FlatCAMGeoEditor.py:1548 +#: flatcamEditors/FlatCAMGeoEditor.py:1546 msgid "Geometry shape offset on Y axis canceled" msgstr "Ofset pe axa Y anulat" -#: flatcamEditors/FlatCAMGeoEditor.py:1551 +#: flatcamEditors/FlatCAMGeoEditor.py:1549 #: flatcamEditors/FlatCAMGrbEditor.py:5997 msgid "Skew on X axis ..." msgstr "Deformare pe axa X ..." -#: flatcamEditors/FlatCAMGeoEditor.py:1561 +#: flatcamEditors/FlatCAMGeoEditor.py:1559 #: flatcamEditors/FlatCAMGrbEditor.py:6006 msgid "Geometry shape skew on X axis done" msgstr "Deformarea pe axa X executată" -#: flatcamEditors/FlatCAMGeoEditor.py:1565 +#: flatcamEditors/FlatCAMGeoEditor.py:1563 msgid "Geometry shape skew on X axis canceled" msgstr "Deformarea pe axa X anulată" -#: flatcamEditors/FlatCAMGeoEditor.py:1568 +#: flatcamEditors/FlatCAMGeoEditor.py:1566 #: flatcamEditors/FlatCAMGrbEditor.py:6012 msgid "Skew on Y axis ..." msgstr "Deformare pe axa Y ..." -#: flatcamEditors/FlatCAMGeoEditor.py:1578 +#: flatcamEditors/FlatCAMGeoEditor.py:1576 #: flatcamEditors/FlatCAMGrbEditor.py:6021 msgid "Geometry shape skew on Y axis done" msgstr "Deformarea pe axa Y executată" -#: flatcamEditors/FlatCAMGeoEditor.py:1582 +#: flatcamEditors/FlatCAMGeoEditor.py:1580 msgid "Geometry shape skew on Y axis canceled" msgstr "Deformarea pe axa Y anulată" -#: flatcamEditors/FlatCAMGeoEditor.py:1946 -#: flatcamEditors/FlatCAMGeoEditor.py:1998 +#: flatcamEditors/FlatCAMGeoEditor.py:1944 +#: flatcamEditors/FlatCAMGeoEditor.py:1996 #: flatcamEditors/FlatCAMGrbEditor.py:1397 #: flatcamEditors/FlatCAMGrbEditor.py:1467 msgid "Click on Center point ..." msgstr "Click pe punctul de Centru ..." -#: flatcamEditors/FlatCAMGeoEditor.py:1953 +#: flatcamEditors/FlatCAMGeoEditor.py:1951 #: flatcamEditors/FlatCAMGrbEditor.py:1405 msgid "Click on Perimeter point to complete ..." msgstr "Click pe un punct aflat pe Circumferintă pentru terminare ..." -#: flatcamEditors/FlatCAMGeoEditor.py:1983 +#: flatcamEditors/FlatCAMGeoEditor.py:1981 msgid "Done. Adding Circle completed." msgstr "Executat. Adăugarea unei forme Cerc terminată." -#: flatcamEditors/FlatCAMGeoEditor.py:2018 +#: flatcamEditors/FlatCAMGeoEditor.py:2016 #: flatcamEditors/FlatCAMGrbEditor.py:1499 msgid "Click on Start point ..." msgstr "Click pe punctul de Start ..." -#: flatcamEditors/FlatCAMGeoEditor.py:2020 +#: flatcamEditors/FlatCAMGeoEditor.py:2018 #: flatcamEditors/FlatCAMGrbEditor.py:1501 msgid "Click on Point3 ..." msgstr "Click pe Punctul3 ..." -#: flatcamEditors/FlatCAMGeoEditor.py:2022 +#: flatcamEditors/FlatCAMGeoEditor.py:2020 #: flatcamEditors/FlatCAMGrbEditor.py:1503 msgid "Click on Stop point ..." msgstr "Click pe punctulde Stop ..." -#: flatcamEditors/FlatCAMGeoEditor.py:2027 +#: flatcamEditors/FlatCAMGeoEditor.py:2025 #: flatcamEditors/FlatCAMGrbEditor.py:1508 msgid "Click on Stop point to complete ..." msgstr "Click pe punctul de Stop pentru terminare ..." -#: flatcamEditors/FlatCAMGeoEditor.py:2029 +#: flatcamEditors/FlatCAMGeoEditor.py:2027 #: flatcamEditors/FlatCAMGrbEditor.py:1510 msgid "Click on Point2 to complete ..." msgstr "Click pe Punctul2 pentru terminare ..." -#: flatcamEditors/FlatCAMGeoEditor.py:2031 +#: flatcamEditors/FlatCAMGeoEditor.py:2029 #: flatcamEditors/FlatCAMGrbEditor.py:1512 msgid "Click on Center point to complete ..." msgstr "Click pe punctul de Centru pentru terminare ..." -#: flatcamEditors/FlatCAMGeoEditor.py:2043 +#: flatcamEditors/FlatCAMGeoEditor.py:2041 #, python-format msgid "Direction: %s" msgstr "Direcţie: %s" -#: flatcamEditors/FlatCAMGeoEditor.py:2053 +#: flatcamEditors/FlatCAMGeoEditor.py:2051 #: flatcamEditors/FlatCAMGrbEditor.py:1534 msgid "Mode: Start -> Stop -> Center. Click on Start point ..." msgstr "Mod: Start -> Stop -> Centru. Click pe punctul de Start ..." -#: flatcamEditors/FlatCAMGeoEditor.py:2056 +#: flatcamEditors/FlatCAMGeoEditor.py:2054 #: flatcamEditors/FlatCAMGrbEditor.py:1537 msgid "Mode: Point1 -> Point3 -> Point2. Click on Point1 ..." msgstr "Mod: Point1 -> Point3 -> Point2. Click pe Punctul1 ..." -#: flatcamEditors/FlatCAMGeoEditor.py:2059 +#: flatcamEditors/FlatCAMGeoEditor.py:2057 #: flatcamEditors/FlatCAMGrbEditor.py:1540 msgid "Mode: Center -> Start -> Stop. Click on Center point ..." msgstr "Mod: Center -> Start -> Stop. Click pe punctul de Centru ..." -#: flatcamEditors/FlatCAMGeoEditor.py:2198 +#: flatcamEditors/FlatCAMGeoEditor.py:2196 msgid "Done. Arc completed." msgstr "Executat. Adăugarea unei forme Arc terminată." -#: flatcamEditors/FlatCAMGeoEditor.py:2217 -#: flatcamEditors/FlatCAMGeoEditor.py:2271 -#: flatcamEditors/FlatCAMGeoEditor.py:2698 +#: flatcamEditors/FlatCAMGeoEditor.py:2215 +#: flatcamEditors/FlatCAMGeoEditor.py:2269 +#: flatcamEditors/FlatCAMGeoEditor.py:2696 msgid "Click on 1st corner ..." msgstr "Click pe primul colt ..." -#: flatcamEditors/FlatCAMGeoEditor.py:2223 +#: flatcamEditors/FlatCAMGeoEditor.py:2221 msgid "Click on opposite corner to complete ..." msgstr "Click pe punctul opus pentru terminare ..." -#: flatcamEditors/FlatCAMGeoEditor.py:2252 +#: flatcamEditors/FlatCAMGeoEditor.py:2250 msgid "Done. Rectangle completed." msgstr "Executat. Adăugare Pătrat terminată." -#: flatcamEditors/FlatCAMGeoEditor.py:2278 +#: flatcamEditors/FlatCAMGeoEditor.py:2276 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:2307 +#: flatcamEditors/FlatCAMGeoEditor.py:2305 msgid "Done. Polygon completed." msgstr "Executat. Adăugarea unei forme Poligon terminată." -#: flatcamEditors/FlatCAMGeoEditor.py:2317 -#: flatcamEditors/FlatCAMGeoEditor.py:2363 +#: flatcamEditors/FlatCAMGeoEditor.py:2315 +#: flatcamEditors/FlatCAMGeoEditor.py:2361 #: flatcamEditors/FlatCAMGrbEditor.py:1086 #: flatcamEditors/FlatCAMGrbEditor.py:1288 msgid "Backtracked one point ..." msgstr "Revenit la penultimul Punct ..." -#: flatcamEditors/FlatCAMGeoEditor.py:2345 +#: flatcamEditors/FlatCAMGeoEditor.py:2343 msgid "Done. Path completed." msgstr "Executat. Traseu finalizat." -#: flatcamEditors/FlatCAMGeoEditor.py:2463 +#: flatcamEditors/FlatCAMGeoEditor.py:2461 msgid "No shape selected. Select a shape to explode" msgstr "Nicio formă selectată. Selectați o formă pentru a o exploda" -#: flatcamEditors/FlatCAMGeoEditor.py:2496 +#: flatcamEditors/FlatCAMGeoEditor.py:2494 msgid "Done. Polygons exploded into lines." msgstr "Terminat. Poligoanele au fost descompuse în linii." -#: flatcamEditors/FlatCAMGeoEditor.py:2518 +#: flatcamEditors/FlatCAMGeoEditor.py:2516 msgid "MOVE: No shape selected. Select a shape to move" msgstr "" "MUTARE: Nici-o formă nu este selectată. Selectează o formă pentru a putea " "face deplasare" -#: flatcamEditors/FlatCAMGeoEditor.py:2520 -#: flatcamEditors/FlatCAMGeoEditor.py:2532 +#: flatcamEditors/FlatCAMGeoEditor.py:2518 +#: flatcamEditors/FlatCAMGeoEditor.py:2530 msgid " MOVE: Click on reference point ..." msgstr " MUTARE: Click pe punctul de referinţă ..." -#: flatcamEditors/FlatCAMGeoEditor.py:2523 +#: flatcamEditors/FlatCAMGeoEditor.py:2521 msgid " Click on destination point ..." msgstr " Click pe punctul de Destinaţie ..." -#: flatcamEditors/FlatCAMGeoEditor.py:2558 +#: flatcamEditors/FlatCAMGeoEditor.py:2556 msgid "Done. Geometry(s) Move completed." msgstr "Executat. Mutarea Geometriilor terminată." -#: flatcamEditors/FlatCAMGeoEditor.py:2679 +#: flatcamEditors/FlatCAMGeoEditor.py:2677 msgid "Done. Geometry(s) Copy completed." msgstr "Executat. Copierea Geometriilor terminată." -#: flatcamEditors/FlatCAMGeoEditor.py:2715 +#: flatcamEditors/FlatCAMGeoEditor.py:2713 msgid "" "Font not supported. Only Regular, Bold, Italic and BoldItalic are supported. " "Error" @@ -4397,98 +4385,98 @@ msgstr "" "Fontul nu este compatibil. Doar cele tip: Regular, Bold, Italic și " "BoldItalic sunt acceptate. Eroarea" -#: flatcamEditors/FlatCAMGeoEditor.py:2722 +#: flatcamEditors/FlatCAMGeoEditor.py:2720 msgid "No text to add." msgstr "Niciun text de adăugat." -#: flatcamEditors/FlatCAMGeoEditor.py:2728 +#: flatcamEditors/FlatCAMGeoEditor.py:2726 msgid " Done. Adding Text completed." msgstr " Executat. Adăugarea de Text terminată." -#: flatcamEditors/FlatCAMGeoEditor.py:2756 +#: flatcamEditors/FlatCAMGeoEditor.py:2754 msgid "Create buffer geometry ..." msgstr "Crează o geometrie de tipe Bufer ..." -#: flatcamEditors/FlatCAMGeoEditor.py:2768 -#: flatcamEditors/FlatCAMGeoEditor.py:2798 -#: flatcamEditors/FlatCAMGeoEditor.py:2828 +#: flatcamEditors/FlatCAMGeoEditor.py:2766 +#: flatcamEditors/FlatCAMGeoEditor.py:2796 +#: flatcamEditors/FlatCAMGeoEditor.py:2826 msgid "Buffer cancelled. No shape selected." msgstr "" "Crearea de geometrie Bufer anulată. Nici-o forma geometrică nu este " "selectată." -#: flatcamEditors/FlatCAMGeoEditor.py:2793 +#: flatcamEditors/FlatCAMGeoEditor.py:2791 #: flatcamEditors/FlatCAMGrbEditor.py:4865 msgid "Done. Buffer Tool completed." msgstr "Executat. Unealta Bufer terminată." -#: flatcamEditors/FlatCAMGeoEditor.py:2823 +#: flatcamEditors/FlatCAMGeoEditor.py:2821 msgid "Done. Buffer Int Tool completed." msgstr "Executat. Unealta Bufer Intern terminată." -#: flatcamEditors/FlatCAMGeoEditor.py:2853 +#: flatcamEditors/FlatCAMGeoEditor.py:2851 msgid "Done. Buffer Ext Tool completed." msgstr "Executat. Unealta Bufer Extern terminată." -#: flatcamEditors/FlatCAMGeoEditor.py:2888 +#: flatcamEditors/FlatCAMGeoEditor.py:2886 #: flatcamEditors/FlatCAMGrbEditor.py:2087 msgid "Select a shape to act as deletion area ..." msgstr "Selectează o formă geometrică ca formă de stergere ..." -#: flatcamEditors/FlatCAMGeoEditor.py:2890 -#: flatcamEditors/FlatCAMGeoEditor.py:2909 -#: flatcamEditors/FlatCAMGeoEditor.py:2915 +#: flatcamEditors/FlatCAMGeoEditor.py:2888 +#: flatcamEditors/FlatCAMGeoEditor.py:2907 +#: flatcamEditors/FlatCAMGeoEditor.py:2913 #: flatcamEditors/FlatCAMGrbEditor.py:2089 msgid "Click to pick-up the erase shape..." msgstr "Click pentru a activa forma de stergere..." -#: flatcamEditors/FlatCAMGeoEditor.py:2919 +#: flatcamEditors/FlatCAMGeoEditor.py:2917 #: flatcamEditors/FlatCAMGrbEditor.py:2146 msgid "Click to erase ..." msgstr "Click pt a sterge ..." -#: flatcamEditors/FlatCAMGeoEditor.py:2949 +#: flatcamEditors/FlatCAMGeoEditor.py:2947 #: flatcamEditors/FlatCAMGrbEditor.py:2180 msgid "Done. Eraser tool action completed." msgstr "Executat. Unealta Stergere s-a terminat." -#: flatcamEditors/FlatCAMGeoEditor.py:2992 +#: flatcamEditors/FlatCAMGeoEditor.py:2990 msgid "Create Paint geometry ..." msgstr "Crează o geometrie Paint ..." -#: flatcamEditors/FlatCAMGeoEditor.py:3006 +#: flatcamEditors/FlatCAMGeoEditor.py:3004 #: flatcamEditors/FlatCAMGrbEditor.py:2331 msgid "Shape transformations ..." msgstr "Transformări de forme geometrice ..." -#: flatcamEditors/FlatCAMGeoEditor.py:3620 +#: flatcamEditors/FlatCAMGeoEditor.py:3618 msgid "Editing MultiGeo Geometry, tool" msgstr "Se editează Geometrie tip MultiGeo. unealta" -#: flatcamEditors/FlatCAMGeoEditor.py:3622 +#: flatcamEditors/FlatCAMGeoEditor.py:3620 msgid "with diameter" msgstr "cu diametrul" -#: flatcamEditors/FlatCAMGeoEditor.py:4020 +#: flatcamEditors/FlatCAMGeoEditor.py:4018 msgid "Copy cancelled. No shape selected." msgstr "Copiere anulată. Nici-o forma geometrică nu este selectată." -#: flatcamEditors/FlatCAMGeoEditor.py:4027 flatcamGUI/FlatCAMGUI.py:3187 -#: flatcamGUI/FlatCAMGUI.py:3234 flatcamGUI/FlatCAMGUI.py:3253 -#: flatcamGUI/FlatCAMGUI.py:3388 flatcamGUI/FlatCAMGUI.py:3401 -#: flatcamGUI/FlatCAMGUI.py:3435 flatcamGUI/FlatCAMGUI.py:3493 +#: flatcamEditors/FlatCAMGeoEditor.py:4025 flatcamGUI/FlatCAMGUI.py:3200 +#: flatcamGUI/FlatCAMGUI.py:3247 flatcamGUI/FlatCAMGUI.py:3266 +#: flatcamGUI/FlatCAMGUI.py:3401 flatcamGUI/FlatCAMGUI.py:3414 +#: flatcamGUI/FlatCAMGUI.py:3448 flatcamGUI/FlatCAMGUI.py:3506 msgid "Click on target point." msgstr "Click pe punctul tinta." -#: flatcamEditors/FlatCAMGeoEditor.py:4330 -#: flatcamEditors/FlatCAMGeoEditor.py:4365 +#: flatcamEditors/FlatCAMGeoEditor.py:4328 +#: flatcamEditors/FlatCAMGeoEditor.py:4363 msgid "A selection of at least 2 geo items is required to do Intersection." msgstr "" "Cel puțin o selecţie de doua forme geometrice este necesară pentru a face o " "Intersecţie." -#: flatcamEditors/FlatCAMGeoEditor.py:4451 -#: flatcamEditors/FlatCAMGeoEditor.py:4555 +#: flatcamEditors/FlatCAMGeoEditor.py:4449 +#: flatcamEditors/FlatCAMGeoEditor.py:4553 msgid "" "Negative buffer value is not accepted. Use Buffer interior to generate an " "'inside' shape" @@ -4496,59 +4484,59 @@ msgstr "" "O valoare de bufer negativă nu se acceptă. Foloseste Bufer Interior pentru a " "genera o formă geo. interioară" -#: flatcamEditors/FlatCAMGeoEditor.py:4461 -#: flatcamEditors/FlatCAMGeoEditor.py:4514 -#: flatcamEditors/FlatCAMGeoEditor.py:4564 +#: flatcamEditors/FlatCAMGeoEditor.py:4459 +#: flatcamEditors/FlatCAMGeoEditor.py:4512 +#: flatcamEditors/FlatCAMGeoEditor.py:4562 msgid "Nothing selected for buffering." msgstr "Nici-o forma geometrică nu este selectată pentru a face Bufer." -#: flatcamEditors/FlatCAMGeoEditor.py:4466 -#: flatcamEditors/FlatCAMGeoEditor.py:4518 -#: flatcamEditors/FlatCAMGeoEditor.py:4569 +#: flatcamEditors/FlatCAMGeoEditor.py:4464 +#: flatcamEditors/FlatCAMGeoEditor.py:4516 +#: flatcamEditors/FlatCAMGeoEditor.py:4567 msgid "Invalid distance for buffering." msgstr "Distanta invalida pentru a face Bufer." -#: flatcamEditors/FlatCAMGeoEditor.py:4490 -#: flatcamEditors/FlatCAMGeoEditor.py:4589 +#: flatcamEditors/FlatCAMGeoEditor.py:4488 +#: flatcamEditors/FlatCAMGeoEditor.py:4587 msgid "Failed, the result is empty. Choose a different buffer value." msgstr "Eșuat, rezultatul este gol. Foloseşte o valoare diferita pentru Bufer." -#: flatcamEditors/FlatCAMGeoEditor.py:4501 +#: flatcamEditors/FlatCAMGeoEditor.py:4499 msgid "Full buffer geometry created." msgstr "Geometrie tip Bufer Complet creată." -#: flatcamEditors/FlatCAMGeoEditor.py:4507 +#: flatcamEditors/FlatCAMGeoEditor.py:4505 msgid "Negative buffer value is not accepted." msgstr "Valoarea bufer negativă nu este acceptată." -#: flatcamEditors/FlatCAMGeoEditor.py:4538 +#: flatcamEditors/FlatCAMGeoEditor.py:4536 msgid "Failed, the result is empty. Choose a smaller buffer value." msgstr "Eșuat, rezultatul este gol. Foloseşte of valoare mai mica pt. Bufer." -#: flatcamEditors/FlatCAMGeoEditor.py:4548 +#: flatcamEditors/FlatCAMGeoEditor.py:4546 msgid "Interior buffer geometry created." msgstr "Geometrie Bufer interior creată." -#: flatcamEditors/FlatCAMGeoEditor.py:4599 +#: flatcamEditors/FlatCAMGeoEditor.py:4597 msgid "Exterior buffer geometry created." msgstr "Geometrie Bufer Exterior creată." -#: flatcamEditors/FlatCAMGeoEditor.py:4605 +#: flatcamEditors/FlatCAMGeoEditor.py:4603 #, python-format msgid "Could not do Paint. Overlap value has to be less than 1.00 (100%%)." msgstr "" "Nu se poate face Paint. Valoarea de suprapunere trebuie să fie mai puțin de " "1.00 (100%%)." -#: flatcamEditors/FlatCAMGeoEditor.py:4612 +#: flatcamEditors/FlatCAMGeoEditor.py:4610 msgid "Nothing selected for painting." msgstr "Nici-o forma geometrică nu este selectată pentru Paint." -#: flatcamEditors/FlatCAMGeoEditor.py:4618 +#: flatcamEditors/FlatCAMGeoEditor.py:4616 msgid "Invalid value for" msgstr "Valoare invalida pentru" -#: flatcamEditors/FlatCAMGeoEditor.py:4677 +#: flatcamEditors/FlatCAMGeoEditor.py:4675 msgid "" "Could not do Paint. Try a different combination of parameters. Or a " "different method of Paint" @@ -4556,7 +4544,7 @@ msgstr "" "Nu se poate face Paint. Incearcă o combinaţie diferita de parametri. Or o " "metoda diferita de Paint" -#: flatcamEditors/FlatCAMGeoEditor.py:4691 +#: flatcamEditors/FlatCAMGeoEditor.py:4689 msgid "Paint done." msgstr "Pictare executata." @@ -4707,54 +4695,54 @@ msgstr "Executat. Mutarea Aperturilor terminată." msgid "Done. Apertures copied." msgstr "Executat. Aperturile au fost copiate." -#: flatcamEditors/FlatCAMGrbEditor.py:2376 flatcamGUI/FlatCAMGUI.py:1922 +#: flatcamEditors/FlatCAMGrbEditor.py:2376 flatcamGUI/FlatCAMGUI.py:1934 #: flatcamGUI/PreferencesUI.py:1847 msgid "Gerber Editor" msgstr "Editor Gerber" -#: flatcamEditors/FlatCAMGrbEditor.py:2396 flatcamGUI/ObjectUI.py:210 +#: flatcamEditors/FlatCAMGrbEditor.py:2396 flatcamGUI/ObjectUI.py:212 #: flatcamTools/ToolProperties.py:156 msgid "Apertures" msgstr "Aperturi" -#: flatcamEditors/FlatCAMGrbEditor.py:2398 flatcamGUI/ObjectUI.py:212 +#: flatcamEditors/FlatCAMGrbEditor.py:2398 flatcamGUI/ObjectUI.py:214 msgid "Apertures Table for the Gerber Object." msgstr "Tabela de aperturi pt obiectul Gerber." #: flatcamEditors/FlatCAMGrbEditor.py:2409 -#: flatcamEditors/FlatCAMGrbEditor.py:3755 flatcamGUI/ObjectUI.py:245 +#: flatcamEditors/FlatCAMGrbEditor.py:3755 flatcamGUI/ObjectUI.py:247 msgid "Code" msgstr "Cod" #: flatcamEditors/FlatCAMGrbEditor.py:2409 -#: flatcamEditors/FlatCAMGrbEditor.py:3755 flatcamGUI/ObjectUI.py:245 -#: flatcamGUI/ObjectUI.py:1141 flatcamGUI/ObjectUI.py:1784 +#: flatcamEditors/FlatCAMGrbEditor.py:3755 flatcamGUI/ObjectUI.py:247 +#: flatcamGUI/ObjectUI.py:1178 flatcamGUI/ObjectUI.py:1866 msgid "Type" msgstr "Tip" #: flatcamEditors/FlatCAMGrbEditor.py:2409 -#: flatcamEditors/FlatCAMGrbEditor.py:3755 flatcamGUI/ObjectUI.py:245 -#: flatcamGUI/PreferencesUI.py:6183 flatcamGUI/PreferencesUI.py:6212 -#: flatcamGUI/PreferencesUI.py:6314 flatcamTools/ToolCopperThieving.py:260 +#: flatcamEditors/FlatCAMGrbEditor.py:3755 flatcamGUI/ObjectUI.py:247 +#: flatcamGUI/PreferencesUI.py:6201 flatcamGUI/PreferencesUI.py:6230 +#: flatcamGUI/PreferencesUI.py:6332 flatcamTools/ToolCopperThieving.py:260 #: flatcamTools/ToolCopperThieving.py:300 flatcamTools/ToolFiducials.py:156 msgid "Size" msgstr "Dimensiune" #: flatcamEditors/FlatCAMGrbEditor.py:2409 -#: flatcamEditors/FlatCAMGrbEditor.py:3755 flatcamGUI/ObjectUI.py:245 +#: flatcamEditors/FlatCAMGrbEditor.py:3755 flatcamGUI/ObjectUI.py:247 msgid "Dim" msgstr "Dim" -#: flatcamEditors/FlatCAMGrbEditor.py:2413 flatcamGUI/ObjectUI.py:249 +#: flatcamEditors/FlatCAMGrbEditor.py:2413 flatcamGUI/ObjectUI.py:251 msgid "Index" msgstr "Index" #: flatcamEditors/FlatCAMGrbEditor.py:2415 -#: flatcamEditors/FlatCAMGrbEditor.py:2444 flatcamGUI/ObjectUI.py:251 +#: flatcamEditors/FlatCAMGrbEditor.py:2444 flatcamGUI/ObjectUI.py:253 msgid "Aperture Code" msgstr "Cod" -#: flatcamEditors/FlatCAMGrbEditor.py:2417 flatcamGUI/ObjectUI.py:253 +#: flatcamEditors/FlatCAMGrbEditor.py:2417 flatcamGUI/ObjectUI.py:255 msgid "Type of aperture: circular, rectangle, macros etc" msgstr "" "Tipul aperturilor:\n" @@ -4763,11 +4751,11 @@ msgstr "" "- macro-uri\n" "etc" -#: flatcamEditors/FlatCAMGrbEditor.py:2419 flatcamGUI/ObjectUI.py:255 +#: flatcamEditors/FlatCAMGrbEditor.py:2419 flatcamGUI/ObjectUI.py:257 msgid "Aperture Size:" msgstr "Dim. aper.:" -#: flatcamEditors/FlatCAMGrbEditor.py:2421 flatcamGUI/ObjectUI.py:257 +#: flatcamEditors/FlatCAMGrbEditor.py:2421 flatcamGUI/ObjectUI.py:259 msgid "" "Aperture Dimensions:\n" " - (width, height) for R, O type.\n" @@ -4874,9 +4862,9 @@ msgstr "" " - 'Beveled:' coltul este inlocuit cu o linie care uneste capetele liniilor " "care formează coltul" -#: flatcamEditors/FlatCAMGrbEditor.py:2560 flatcamGUI/FlatCAMGUI.py:830 -#: flatcamGUI/FlatCAMGUI.py:1856 flatcamGUI/FlatCAMGUI.py:1908 -#: flatcamGUI/FlatCAMGUI.py:1935 flatcamGUI/FlatCAMGUI.py:2270 +#: flatcamEditors/FlatCAMGrbEditor.py:2560 flatcamGUI/FlatCAMGUI.py:842 +#: flatcamGUI/FlatCAMGUI.py:1868 flatcamGUI/FlatCAMGUI.py:1920 +#: flatcamGUI/FlatCAMGUI.py:1947 flatcamGUI/FlatCAMGUI.py:2283 msgid "Buffer" msgstr "Bufer" @@ -4952,8 +4940,8 @@ msgstr "Șterge" msgid "Clear all the markings." msgstr "Ștergeți toate marcajele." -#: flatcamEditors/FlatCAMGrbEditor.py:2684 flatcamGUI/FlatCAMGUI.py:820 -#: flatcamGUI/FlatCAMGUI.py:1856 flatcamGUI/FlatCAMGUI.py:2260 +#: flatcamEditors/FlatCAMGrbEditor.py:2684 flatcamGUI/FlatCAMGUI.py:832 +#: flatcamGUI/FlatCAMGUI.py:1868 flatcamGUI/FlatCAMGUI.py:2273 msgid "Add Pad Array" msgstr "Adaugă o arie de paduri" @@ -5031,26 +5019,20 @@ msgid "Deleted aperture with code" msgstr "A fost stearsă unealta cu codul" #: flatcamEditors/FlatCAMGrbEditor.py:3847 -#, fuzzy -#| msgid "Gerber Editor" msgid "Loading Gerber into Editor" -msgstr "Editor Gerber" +msgstr "Se încarcă Gerber în editor" #: flatcamEditors/FlatCAMGrbEditor.py:3957 msgid "Setting up the UI" -msgstr "" +msgstr "Configurarea UI" #: flatcamEditors/FlatCAMGrbEditor.py:3958 -#, fuzzy -#| msgid "Adding geometry for aperture" msgid "Adding geometry finished. Preparing the GUI" -msgstr "Se adaugă geometria pentru apertura" +msgstr "Adăugarea geometriei terminate. Pregătirea GUI" #: flatcamEditors/FlatCAMGrbEditor.py:3967 -#, fuzzy -#| msgid "One or more of the Gerber objects is not valid." msgid "Finished loading the Gerber object into the editor." -msgstr "Unul sau mai multe dintre obiectele Gerber nu sunt valabile." +msgstr "S-a terminat încărcarea obiectului Gerber în editor." #: flatcamEditors/FlatCAMGrbEditor.py:4107 msgid "" @@ -5187,9 +5169,9 @@ msgid "String to replace the one in the Find box throughout the text." msgstr "" "String care sa inlocuiasca pe acele din campul 'Cautare' in cadrul textului." -#: flatcamEditors/FlatCAMTextEditor.py:87 flatcamGUI/ObjectUI.py:466 -#: flatcamGUI/ObjectUI.py:1677 flatcamGUI/PreferencesUI.py:1494 -#: flatcamGUI/PreferencesUI.py:3623 flatcamGUI/PreferencesUI.py:4598 +#: flatcamEditors/FlatCAMTextEditor.py:87 flatcamGUI/ObjectUI.py:471 +#: flatcamGUI/ObjectUI.py:1759 flatcamGUI/PreferencesUI.py:1494 +#: flatcamGUI/PreferencesUI.py:3641 flatcamGUI/PreferencesUI.py:4616 msgid "All" msgstr "Toate" @@ -5228,12 +5210,12 @@ msgstr "Va salva textul din Editor intr-un fisier." #: flatcamEditors/FlatCAMTextEditor.py:101 msgid "Run Code" -msgstr "Ruleaza Cod" +msgstr "Rulează Cod" #: flatcamEditors/FlatCAMTextEditor.py:102 msgid "Will run the TCL commands found in the text file, one by one." msgstr "" -"Va rula instructiunile/comenzile TCL care se gasesc in textul din Editor, " +"Va rula instructiunile/comenzile TCL care se găsesc in textul din Editor, " "una cate una." #: flatcamEditors/FlatCAMTextEditor.py:176 @@ -5242,10 +5224,8 @@ msgstr "Deschide fişierul" #: flatcamEditors/FlatCAMTextEditor.py:207 #: flatcamEditors/FlatCAMTextEditor.py:212 -#, fuzzy -#| msgid "Export GCode ..." msgid "Export Code ..." -msgstr "Exporta GCode ..." +msgstr "Exportă GCode ..." #: flatcamEditors/FlatCAMTextEditor.py:215 msgid "Export Code cancelled." @@ -5256,7 +5236,7 @@ msgid "Code Editor content copied to clipboard ..." msgstr "Conținut Editor de cod copiat în clipboard ..." #: flatcamGUI/FlatCAMGUI.py:52 flatcamGUI/FlatCAMGUI.py:54 -#: flatcamGUI/FlatCAMGUI.py:1879 +#: flatcamGUI/FlatCAMGUI.py:1891 msgid "Toggle Panel" msgstr "Comută Panel" @@ -5308,7 +5288,7 @@ msgstr "Document\tD" msgid "Will create a new, empty Document Object." msgstr "Va crea un obiect nou de tip Document, fără continut." -#: flatcamGUI/FlatCAMGUI.py:98 flatcamGUI/FlatCAMGUI.py:3824 +#: flatcamGUI/FlatCAMGUI.py:98 flatcamGUI/FlatCAMGUI.py:3837 #: flatcamTools/ToolPcbWizard.py:62 flatcamTools/ToolPcbWizard.py:69 msgid "Open" msgstr "Încarcă" @@ -5317,15 +5297,15 @@ msgstr "Încarcă" msgid "Open &Project ..." msgstr "Încarcă &Project ..." -#: flatcamGUI/FlatCAMGUI.py:108 flatcamGUI/FlatCAMGUI.py:3833 +#: flatcamGUI/FlatCAMGUI.py:108 flatcamGUI/FlatCAMGUI.py:3846 msgid "Open &Gerber ...\tCTRL+G" msgstr "Încarcă &Gerber ...\tCTRL+G" -#: flatcamGUI/FlatCAMGUI.py:113 flatcamGUI/FlatCAMGUI.py:3838 +#: flatcamGUI/FlatCAMGUI.py:113 flatcamGUI/FlatCAMGUI.py:3851 msgid "Open &Excellon ...\tCTRL+E" msgstr "Încarcă &Excellon ...\tCTRL+E" -#: flatcamGUI/FlatCAMGUI.py:117 flatcamGUI/FlatCAMGUI.py:3842 +#: flatcamGUI/FlatCAMGUI.py:117 flatcamGUI/FlatCAMGUI.py:3855 msgid "Open G-&Code ..." msgstr "Încarcă G-&Code ..." @@ -5345,22 +5325,22 @@ msgstr "Fişierele Recente" msgid "Scripting" msgstr "Scripting" -#: flatcamGUI/FlatCAMGUI.py:137 flatcamGUI/FlatCAMGUI.py:728 -#: flatcamGUI/FlatCAMGUI.py:2174 +#: flatcamGUI/FlatCAMGUI.py:137 flatcamGUI/FlatCAMGUI.py:739 +#: flatcamGUI/FlatCAMGUI.py:2186 msgid "New Script ..." msgstr "Script nou ..." -#: flatcamGUI/FlatCAMGUI.py:138 flatcamGUI/FlatCAMGUI.py:729 -#: flatcamGUI/FlatCAMGUI.py:2175 +#: flatcamGUI/FlatCAMGUI.py:138 flatcamGUI/FlatCAMGUI.py:740 +#: flatcamGUI/FlatCAMGUI.py:2187 msgid "Open Script ..." msgstr "Încarcă &Script..." -#: flatcamGUI/FlatCAMGUI.py:140 flatcamGUI/FlatCAMGUI.py:730 -#: flatcamGUI/FlatCAMGUI.py:2176 flatcamGUI/FlatCAMGUI.py:3813 +#: flatcamGUI/FlatCAMGUI.py:140 flatcamGUI/FlatCAMGUI.py:741 +#: flatcamGUI/FlatCAMGUI.py:2188 flatcamGUI/FlatCAMGUI.py:3826 msgid "Run Script ..." msgstr "Rulează Script..." -#: flatcamGUI/FlatCAMGUI.py:142 flatcamGUI/FlatCAMGUI.py:3815 +#: flatcamGUI/FlatCAMGUI.py:142 flatcamGUI/FlatCAMGUI.py:3828 msgid "" "Will run the opened Tcl Script thus\n" "enabling the automation of certain\n" @@ -5390,23 +5370,27 @@ msgstr "&DXF ca și obiect Geometrie ..." msgid "&DXF as Gerber Object ..." msgstr "&DXF ca și obiect Gerber ..." -#: flatcamGUI/FlatCAMGUI.py:173 +#: flatcamGUI/FlatCAMGUI.py:172 +msgid "HPGL2 as Geometry Object ..." +msgstr "HPGL2 ca obiect de geometrie ..." + +#: flatcamGUI/FlatCAMGUI.py:177 msgid "Export" msgstr "Export" -#: flatcamGUI/FlatCAMGUI.py:176 +#: flatcamGUI/FlatCAMGUI.py:180 msgid "Export &SVG ..." msgstr "Exporta &SVG ..." -#: flatcamGUI/FlatCAMGUI.py:179 +#: flatcamGUI/FlatCAMGUI.py:183 msgid "Export DXF ..." msgstr "Exporta DXF ..." -#: flatcamGUI/FlatCAMGUI.py:184 +#: flatcamGUI/FlatCAMGUI.py:188 msgid "Export &PNG ..." msgstr "Exporta &PNG ..." -#: flatcamGUI/FlatCAMGUI.py:186 +#: flatcamGUI/FlatCAMGUI.py:190 msgid "" "Will export an image in PNG format,\n" "the saved image will contain the visual \n" @@ -5416,11 +5400,11 @@ msgstr "" "imagina salvata va contine elementele vizuale\n" "afisate in zona de afișare." -#: flatcamGUI/FlatCAMGUI.py:195 +#: flatcamGUI/FlatCAMGUI.py:199 msgid "Export &Excellon ..." msgstr "Exporta Excellon ..." -#: flatcamGUI/FlatCAMGUI.py:197 +#: flatcamGUI/FlatCAMGUI.py:201 msgid "" "Will export an Excellon Object as Excellon file,\n" "the coordinates format, the file units and zeros\n" @@ -5430,11 +5414,11 @@ msgstr "" "Formatul coordonatelor, unitatile de masura și tipul\n" "de zerouri se vor seta in Preferințe -> Export Excellon." -#: flatcamGUI/FlatCAMGUI.py:204 +#: flatcamGUI/FlatCAMGUI.py:208 msgid "Export &Gerber ..." msgstr "Exporta &Gerber ..." -#: flatcamGUI/FlatCAMGUI.py:206 +#: flatcamGUI/FlatCAMGUI.py:210 msgid "" "Will export an Gerber Object as Gerber file,\n" "the coordinates format, the file units and zeros\n" @@ -5444,61 +5428,61 @@ msgstr "" "Formatul coordonatelor, unitatile de măsură și tipul\n" "de zerouri se vor seta in Preferințe -> Export Gerber." -#: flatcamGUI/FlatCAMGUI.py:222 +#: flatcamGUI/FlatCAMGUI.py:226 msgid "Backup" msgstr "Backup" -#: flatcamGUI/FlatCAMGUI.py:226 +#: flatcamGUI/FlatCAMGUI.py:230 msgid "Import Preferences from file ..." msgstr "Importați Preferințele din fișier ..." -#: flatcamGUI/FlatCAMGUI.py:231 +#: flatcamGUI/FlatCAMGUI.py:235 msgid "Export Preferences to file ..." msgstr "Exportați Preferințele într-un fișier ..." -#: flatcamGUI/FlatCAMGUI.py:237 flatcamGUI/FlatCAMGUI.py:601 -#: flatcamGUI/FlatCAMGUI.py:1097 +#: flatcamGUI/FlatCAMGUI.py:241 flatcamGUI/FlatCAMGUI.py:612 +#: flatcamGUI/FlatCAMGUI.py:1109 msgid "Save" msgstr "Salvează" -#: flatcamGUI/FlatCAMGUI.py:240 +#: flatcamGUI/FlatCAMGUI.py:244 msgid "&Save Project ..." msgstr "&Salvează Proiect ..." -#: flatcamGUI/FlatCAMGUI.py:245 +#: flatcamGUI/FlatCAMGUI.py:249 msgid "Save Project &As ...\tCTRL+S" msgstr "Salvează Proiect &ca ...\tCTRL+S" -#: flatcamGUI/FlatCAMGUI.py:250 +#: flatcamGUI/FlatCAMGUI.py:254 msgid "Save Project C&opy ..." msgstr "Salvează o C&opie Proiect..." -#: flatcamGUI/FlatCAMGUI.py:257 +#: flatcamGUI/FlatCAMGUI.py:268 msgid "E&xit" msgstr "Iesire" -#: flatcamGUI/FlatCAMGUI.py:265 flatcamGUI/FlatCAMGUI.py:598 -#: flatcamGUI/FlatCAMGUI.py:1956 +#: flatcamGUI/FlatCAMGUI.py:276 flatcamGUI/FlatCAMGUI.py:609 +#: flatcamGUI/FlatCAMGUI.py:1968 msgid "Edit" msgstr "Editează" -#: flatcamGUI/FlatCAMGUI.py:268 +#: flatcamGUI/FlatCAMGUI.py:279 msgid "Edit Object\tE" msgstr "Editare Obiect\tE" -#: flatcamGUI/FlatCAMGUI.py:269 +#: flatcamGUI/FlatCAMGUI.py:280 msgid "Close Editor\tCTRL+S" msgstr "Salvează Editor\tCTRL+S" -#: flatcamGUI/FlatCAMGUI.py:277 +#: flatcamGUI/FlatCAMGUI.py:288 msgid "Conversion" msgstr "Conversii" -#: flatcamGUI/FlatCAMGUI.py:279 +#: flatcamGUI/FlatCAMGUI.py:290 msgid "&Join Geo/Gerber/Exc -> Geo" msgstr "&Fuzionează Geo/Gerber/Exc -> Geo" -#: flatcamGUI/FlatCAMGUI.py:281 +#: flatcamGUI/FlatCAMGUI.py:292 msgid "" "Merge a selection of objects, which can be of type:\n" "- Gerber\n" @@ -5512,30 +5496,30 @@ msgstr "" "- Geometrie\n" "intr-un nou obiect tip Geometrie >combo<." -#: flatcamGUI/FlatCAMGUI.py:288 +#: flatcamGUI/FlatCAMGUI.py:299 msgid "Join Excellon(s) -> Excellon" msgstr "Fuzionează Excellon(s) -> Excellon" -#: flatcamGUI/FlatCAMGUI.py:290 +#: flatcamGUI/FlatCAMGUI.py:301 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:293 +#: flatcamGUI/FlatCAMGUI.py:304 msgid "Join Gerber(s) -> Gerber" msgstr "Fuzionează Gerber(s) -> Gerber" -#: flatcamGUI/FlatCAMGUI.py:295 +#: flatcamGUI/FlatCAMGUI.py:306 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:300 +#: flatcamGUI/FlatCAMGUI.py:311 msgid "Convert Single to MultiGeo" msgstr "Converteste SingleGeo in MultiGeo" -#: flatcamGUI/FlatCAMGUI.py:302 +#: flatcamGUI/FlatCAMGUI.py:313 msgid "" "Will convert a Geometry object from single_geometry type\n" "to a multi_geometry type." @@ -5543,11 +5527,11 @@ msgstr "" "Va converti un obiect Geometrie din tipul simpla geometrie (SingleGeo)\n" "la tipul geometrie complexa (MultiGeo)." -#: flatcamGUI/FlatCAMGUI.py:306 +#: flatcamGUI/FlatCAMGUI.py:317 msgid "Convert Multi to SingleGeo" msgstr "Converteste MultiGeo in SingleGeo" -#: flatcamGUI/FlatCAMGUI.py:308 +#: flatcamGUI/FlatCAMGUI.py:319 msgid "" "Will convert a Geometry object from multi_geometry type\n" "to a single_geometry type." @@ -5555,704 +5539,702 @@ msgstr "" "Va converti un obiect Geometrie din tipul geometrie complexa (MultiGeo)\n" "la tipul geometrie simpla (SingleGeo)." -#: flatcamGUI/FlatCAMGUI.py:314 +#: flatcamGUI/FlatCAMGUI.py:325 msgid "Convert Any to Geo" msgstr "Converteste Oricare to Geo" -#: flatcamGUI/FlatCAMGUI.py:316 +#: flatcamGUI/FlatCAMGUI.py:327 msgid "Convert Any to Gerber" msgstr "Converteste Oricare in Gerber" -#: flatcamGUI/FlatCAMGUI.py:321 +#: flatcamGUI/FlatCAMGUI.py:332 msgid "&Copy\tCTRL+C" msgstr "&Copiază\tCTRL+C" -#: flatcamGUI/FlatCAMGUI.py:325 +#: flatcamGUI/FlatCAMGUI.py:336 msgid "&Delete\tDEL" msgstr "&Șterge\tDEL" -#: flatcamGUI/FlatCAMGUI.py:329 +#: flatcamGUI/FlatCAMGUI.py:340 msgid "Se&t Origin\tO" msgstr "Se&tează Originea\tO" -#: flatcamGUI/FlatCAMGUI.py:330 +#: flatcamGUI/FlatCAMGUI.py:341 msgid "Jump to Location\tJ" msgstr "Sari la Locaţie\tJ" -#: flatcamGUI/FlatCAMGUI.py:335 +#: flatcamGUI/FlatCAMGUI.py:346 msgid "Toggle Units\tQ" msgstr "Comută Unitati\tQ" -#: flatcamGUI/FlatCAMGUI.py:336 +#: flatcamGUI/FlatCAMGUI.py:347 msgid "&Select All\tCTRL+A" msgstr "&Selectează Tot\tCTRL+A" -#: flatcamGUI/FlatCAMGUI.py:340 +#: flatcamGUI/FlatCAMGUI.py:351 msgid "&Preferences\tSHIFT+P" msgstr "&Preferințe\tSHIFT+P" -#: flatcamGUI/FlatCAMGUI.py:346 flatcamTools/ToolProperties.py:153 +#: flatcamGUI/FlatCAMGUI.py:357 flatcamTools/ToolProperties.py:153 msgid "Options" msgstr "Opțiuni" -#: flatcamGUI/FlatCAMGUI.py:348 +#: flatcamGUI/FlatCAMGUI.py:359 msgid "&Rotate Selection\tSHIFT+(R)" msgstr "&Roteste Selectia\tSHIFT+(R)" -#: flatcamGUI/FlatCAMGUI.py:353 +#: flatcamGUI/FlatCAMGUI.py:364 msgid "&Skew on X axis\tSHIFT+X" msgstr "&Deformează pe axa X\tSHIFT+X" -#: flatcamGUI/FlatCAMGUI.py:355 +#: flatcamGUI/FlatCAMGUI.py:366 msgid "S&kew on Y axis\tSHIFT+Y" msgstr "Deformează pe axa Y\tSHIFT+Y" -#: flatcamGUI/FlatCAMGUI.py:360 +#: flatcamGUI/FlatCAMGUI.py:371 msgid "Flip on &X axis\tX" msgstr "Oglindește pe axa &X\tX" -#: flatcamGUI/FlatCAMGUI.py:362 +#: flatcamGUI/FlatCAMGUI.py:373 msgid "Flip on &Y axis\tY" msgstr "Oglindește pe axa &Y\tY" -#: flatcamGUI/FlatCAMGUI.py:367 +#: flatcamGUI/FlatCAMGUI.py:378 msgid "View source\tALT+S" msgstr "Vezi sursa\tALT+S" -#: flatcamGUI/FlatCAMGUI.py:369 -#, fuzzy -#| msgid "Tool Data" +#: flatcamGUI/FlatCAMGUI.py:380 msgid "Tools DataBase\tCTRL+D" -msgstr "Date unealtă" +msgstr "Baza de data Unelte\tCTRL+D" -#: flatcamGUI/FlatCAMGUI.py:376 flatcamGUI/FlatCAMGUI.py:1892 +#: flatcamGUI/FlatCAMGUI.py:387 flatcamGUI/FlatCAMGUI.py:1904 msgid "View" msgstr "Vizualizare" -#: flatcamGUI/FlatCAMGUI.py:377 +#: flatcamGUI/FlatCAMGUI.py:388 msgid "Enable all plots\tALT+1" msgstr "Activează toate afişările\tALT+1" -#: flatcamGUI/FlatCAMGUI.py:379 +#: flatcamGUI/FlatCAMGUI.py:390 msgid "Disable all plots\tALT+2" msgstr "Dezactivează toate afişările\tALT+2" -#: flatcamGUI/FlatCAMGUI.py:381 +#: flatcamGUI/FlatCAMGUI.py:392 msgid "Disable non-selected\tALT+3" msgstr "Dezactivează non-selectate\tALT+3" -#: flatcamGUI/FlatCAMGUI.py:384 +#: flatcamGUI/FlatCAMGUI.py:395 msgid "&Zoom Fit\tV" msgstr "&Mărește și potrivește\tV" -#: flatcamGUI/FlatCAMGUI.py:385 +#: flatcamGUI/FlatCAMGUI.py:396 msgid "&Zoom In\t=" msgstr "&Măreste\t=" -#: flatcamGUI/FlatCAMGUI.py:386 +#: flatcamGUI/FlatCAMGUI.py:397 msgid "&Zoom Out\t-" msgstr "&Micșorează\t-" -#: flatcamGUI/FlatCAMGUI.py:390 +#: flatcamGUI/FlatCAMGUI.py:401 msgid "Redraw All\tF5" msgstr "Reafisare Toate\tF5" -#: flatcamGUI/FlatCAMGUI.py:394 +#: flatcamGUI/FlatCAMGUI.py:405 msgid "Toggle Code Editor\tSHIFT+E" msgstr "Comută Editorul de cod\tSHIFT+E" -#: flatcamGUI/FlatCAMGUI.py:397 +#: flatcamGUI/FlatCAMGUI.py:408 msgid "&Toggle FullScreen\tALT+F10" msgstr "Comută FullScreen\tALT+F10" -#: flatcamGUI/FlatCAMGUI.py:399 +#: flatcamGUI/FlatCAMGUI.py:410 msgid "&Toggle Plot Area\tCTRL+F10" msgstr "Comută Aria de Afișare\tCTRL+F10" -#: flatcamGUI/FlatCAMGUI.py:401 +#: flatcamGUI/FlatCAMGUI.py:412 msgid "&Toggle Project/Sel/Tool\t`" msgstr "Comută Proiect/Sel/Unealta\t`" -#: flatcamGUI/FlatCAMGUI.py:405 +#: flatcamGUI/FlatCAMGUI.py:416 msgid "&Toggle Grid Snap\tG" msgstr "Comută Grid\tG" -#: flatcamGUI/FlatCAMGUI.py:407 +#: flatcamGUI/FlatCAMGUI.py:418 msgid "&Toggle Grid Lines\tALT+G" msgstr "Comută Linii Grid\tALT+G" -#: flatcamGUI/FlatCAMGUI.py:408 +#: flatcamGUI/FlatCAMGUI.py:419 msgid "&Toggle Axis\tSHIFT+G" msgstr "Comută Axe\tSHIFT+G" -#: flatcamGUI/FlatCAMGUI.py:411 +#: flatcamGUI/FlatCAMGUI.py:422 msgid "Toggle Workspace\tSHIFT+W" msgstr "Comută Suprafata de lucru\tSHIFT+W" -#: flatcamGUI/FlatCAMGUI.py:416 +#: flatcamGUI/FlatCAMGUI.py:427 msgid "Objects" msgstr "Obiecte" -#: flatcamGUI/FlatCAMGUI.py:429 +#: flatcamGUI/FlatCAMGUI.py:440 msgid "&Command Line\tS" msgstr "&Linie de comanda\tS" -#: flatcamGUI/FlatCAMGUI.py:434 +#: flatcamGUI/FlatCAMGUI.py:445 msgid "Help" msgstr "Ajutor" -#: flatcamGUI/FlatCAMGUI.py:435 +#: flatcamGUI/FlatCAMGUI.py:446 msgid "Online Help\tF1" msgstr "Resurse online\tF1" -#: flatcamGUI/FlatCAMGUI.py:443 +#: flatcamGUI/FlatCAMGUI.py:454 msgid "Report a bug" msgstr "Raportati o eroare program" -#: flatcamGUI/FlatCAMGUI.py:446 +#: flatcamGUI/FlatCAMGUI.py:457 msgid "Excellon Specification" msgstr "Specificatii Excellon" -#: flatcamGUI/FlatCAMGUI.py:448 +#: flatcamGUI/FlatCAMGUI.py:459 msgid "Gerber Specification" msgstr "Specificatii Gerber" -#: flatcamGUI/FlatCAMGUI.py:453 +#: flatcamGUI/FlatCAMGUI.py:464 msgid "Shortcuts List\tF3" msgstr "Lista shortcut-uri\tF3" -#: flatcamGUI/FlatCAMGUI.py:454 +#: flatcamGUI/FlatCAMGUI.py:465 msgid "YouTube Channel\tF4" msgstr "YouTube \tF4" -#: flatcamGUI/FlatCAMGUI.py:465 +#: flatcamGUI/FlatCAMGUI.py:476 msgid "Add Circle\tO" msgstr "Adaugă Cerc\tO" -#: flatcamGUI/FlatCAMGUI.py:467 +#: flatcamGUI/FlatCAMGUI.py:478 msgid "Add Arc\tA" msgstr "Adaugă Arc\tA" -#: flatcamGUI/FlatCAMGUI.py:470 +#: flatcamGUI/FlatCAMGUI.py:481 msgid "Add Rectangle\tR" msgstr "Adaugă Patrulater\tR" -#: flatcamGUI/FlatCAMGUI.py:473 +#: flatcamGUI/FlatCAMGUI.py:484 msgid "Add Polygon\tN" msgstr "Adaugă Poligon\tN" -#: flatcamGUI/FlatCAMGUI.py:475 +#: flatcamGUI/FlatCAMGUI.py:486 msgid "Add Path\tP" msgstr "Adaugă Cale\tP" -#: flatcamGUI/FlatCAMGUI.py:477 +#: flatcamGUI/FlatCAMGUI.py:488 msgid "Add Text\tT" msgstr "Adaugă Text\tT" -#: flatcamGUI/FlatCAMGUI.py:480 +#: flatcamGUI/FlatCAMGUI.py:491 msgid "Polygon Union\tU" msgstr "Uniune Poligoane\tU" -#: flatcamGUI/FlatCAMGUI.py:482 +#: flatcamGUI/FlatCAMGUI.py:493 msgid "Polygon Intersection\tE" msgstr "Intersecţie Poligoane\tE" -#: flatcamGUI/FlatCAMGUI.py:484 +#: flatcamGUI/FlatCAMGUI.py:495 msgid "Polygon Subtraction\tS" msgstr "Substracţie Poligoane\tS" -#: flatcamGUI/FlatCAMGUI.py:488 +#: flatcamGUI/FlatCAMGUI.py:499 msgid "Cut Path\tX" msgstr "Tăiere Cale\tX" -#: flatcamGUI/FlatCAMGUI.py:490 +#: flatcamGUI/FlatCAMGUI.py:501 msgid "Copy Geom\tC" msgstr "Copiază Geo\tC" -#: flatcamGUI/FlatCAMGUI.py:492 +#: flatcamGUI/FlatCAMGUI.py:503 msgid "Delete Shape\tDEL" msgstr "Șterge forma Geo.\tDEL" -#: flatcamGUI/FlatCAMGUI.py:495 flatcamGUI/FlatCAMGUI.py:577 +#: flatcamGUI/FlatCAMGUI.py:506 flatcamGUI/FlatCAMGUI.py:588 msgid "Move\tM" msgstr "Muta\tM" -#: flatcamGUI/FlatCAMGUI.py:497 +#: flatcamGUI/FlatCAMGUI.py:508 msgid "Buffer Tool\tB" msgstr "Unealta Bufer\tB" -#: flatcamGUI/FlatCAMGUI.py:500 +#: flatcamGUI/FlatCAMGUI.py:511 msgid "Paint Tool\tI" msgstr "Unealta Paint\tI" -#: flatcamGUI/FlatCAMGUI.py:503 +#: flatcamGUI/FlatCAMGUI.py:514 msgid "Transform Tool\tALT+R" msgstr "Unealta Transformare\tALT+R" -#: flatcamGUI/FlatCAMGUI.py:507 +#: flatcamGUI/FlatCAMGUI.py:518 msgid "Toggle Corner Snap\tK" msgstr "Comută lipire colt\tK" -#: flatcamGUI/FlatCAMGUI.py:513 +#: flatcamGUI/FlatCAMGUI.py:524 msgid ">Excellon Editor<" msgstr ">Editor Excellon<" -#: flatcamGUI/FlatCAMGUI.py:517 +#: flatcamGUI/FlatCAMGUI.py:528 msgid "Add Drill Array\tA" msgstr "Adaugă Arie Găuriri\tA" -#: flatcamGUI/FlatCAMGUI.py:519 +#: flatcamGUI/FlatCAMGUI.py:530 msgid "Add Drill\tD" msgstr "Adaugă Găurire\tD" -#: flatcamGUI/FlatCAMGUI.py:523 +#: flatcamGUI/FlatCAMGUI.py:534 msgid "Add Slot Array\tQ" msgstr "Adăugați Arie de Sloturi\tQ" -#: flatcamGUI/FlatCAMGUI.py:525 +#: flatcamGUI/FlatCAMGUI.py:536 msgid "Add Slot\tW" msgstr "Adăugați Slot\tW" -#: flatcamGUI/FlatCAMGUI.py:529 +#: flatcamGUI/FlatCAMGUI.py:540 msgid "Resize Drill(S)\tR" msgstr "Redimens. Găuriri\tR" -#: flatcamGUI/FlatCAMGUI.py:531 flatcamGUI/FlatCAMGUI.py:572 +#: flatcamGUI/FlatCAMGUI.py:542 flatcamGUI/FlatCAMGUI.py:583 msgid "Copy\tC" msgstr "Copiază\tC" -#: flatcamGUI/FlatCAMGUI.py:533 flatcamGUI/FlatCAMGUI.py:574 +#: flatcamGUI/FlatCAMGUI.py:544 flatcamGUI/FlatCAMGUI.py:585 msgid "Delete\tDEL" msgstr "Șterge\tDEL" -#: flatcamGUI/FlatCAMGUI.py:538 +#: flatcamGUI/FlatCAMGUI.py:549 msgid "Move Drill(s)\tM" msgstr "Muta Găuriri\tM" -#: flatcamGUI/FlatCAMGUI.py:543 +#: flatcamGUI/FlatCAMGUI.py:554 msgid ">Gerber Editor<" msgstr ">Editor Gerber<" -#: flatcamGUI/FlatCAMGUI.py:547 +#: flatcamGUI/FlatCAMGUI.py:558 msgid "Add Pad\tP" msgstr "Adaugă Pad\tP" -#: flatcamGUI/FlatCAMGUI.py:549 +#: flatcamGUI/FlatCAMGUI.py:560 msgid "Add Pad Array\tA" msgstr "Adaugă Arie paduri\tA" -#: flatcamGUI/FlatCAMGUI.py:551 +#: flatcamGUI/FlatCAMGUI.py:562 msgid "Add Track\tT" msgstr "Adaugă Traseu\tA" -#: flatcamGUI/FlatCAMGUI.py:553 +#: flatcamGUI/FlatCAMGUI.py:564 msgid "Add Region\tN" msgstr "Adaugă Regiune\tN" -#: flatcamGUI/FlatCAMGUI.py:557 +#: flatcamGUI/FlatCAMGUI.py:568 msgid "Poligonize\tALT+N" msgstr "Poligonizare\tALT+N" -#: flatcamGUI/FlatCAMGUI.py:559 +#: flatcamGUI/FlatCAMGUI.py:570 msgid "Add SemiDisc\tE" msgstr "Adaugă SemiDisc\tE" -#: flatcamGUI/FlatCAMGUI.py:560 +#: flatcamGUI/FlatCAMGUI.py:571 msgid "Add Disc\tD" msgstr "Adaugă Disc\tD" -#: flatcamGUI/FlatCAMGUI.py:562 +#: flatcamGUI/FlatCAMGUI.py:573 msgid "Buffer\tB" msgstr "Bufer\tB" -#: flatcamGUI/FlatCAMGUI.py:563 +#: flatcamGUI/FlatCAMGUI.py:574 msgid "Scale\tS" msgstr "Scalare\tS" -#: flatcamGUI/FlatCAMGUI.py:565 +#: flatcamGUI/FlatCAMGUI.py:576 msgid "Mark Area\tALT+A" msgstr "Marchează aria\tALT+A" -#: flatcamGUI/FlatCAMGUI.py:567 +#: flatcamGUI/FlatCAMGUI.py:578 msgid "Eraser\tCTRL+E" msgstr "Radieră\tCTRL+E" -#: flatcamGUI/FlatCAMGUI.py:569 +#: flatcamGUI/FlatCAMGUI.py:580 msgid "Transform\tALT+R" msgstr "Unealta Transformare\tALT+R" -#: flatcamGUI/FlatCAMGUI.py:592 +#: flatcamGUI/FlatCAMGUI.py:603 msgid "Enable Plot" msgstr "Activează Afișare" -#: flatcamGUI/FlatCAMGUI.py:593 +#: flatcamGUI/FlatCAMGUI.py:604 msgid "Disable Plot" msgstr "Dezactivează Afișare" -#: flatcamGUI/FlatCAMGUI.py:595 +#: flatcamGUI/FlatCAMGUI.py:606 msgid "Generate CNC" msgstr "Generează CNC" -#: flatcamGUI/FlatCAMGUI.py:596 +#: flatcamGUI/FlatCAMGUI.py:607 msgid "View Source" msgstr "Vizualiz. Sursa" -#: flatcamGUI/FlatCAMGUI.py:604 flatcamGUI/FlatCAMGUI.py:1962 +#: flatcamGUI/FlatCAMGUI.py:615 flatcamGUI/FlatCAMGUI.py:1974 #: flatcamTools/ToolProperties.py:30 msgid "Properties" msgstr "Proprietati" -#: flatcamGUI/FlatCAMGUI.py:633 +#: flatcamGUI/FlatCAMGUI.py:644 msgid "File Toolbar" msgstr "Toolbar Fişiere" -#: flatcamGUI/FlatCAMGUI.py:637 +#: flatcamGUI/FlatCAMGUI.py:648 msgid "Edit Toolbar" msgstr "Toolbar Editare" -#: flatcamGUI/FlatCAMGUI.py:641 +#: flatcamGUI/FlatCAMGUI.py:652 msgid "View Toolbar" msgstr "Toolbar Vizualizare" -#: flatcamGUI/FlatCAMGUI.py:645 +#: flatcamGUI/FlatCAMGUI.py:656 msgid "Shell Toolbar" msgstr "Toolbar Linie de comanda" -#: flatcamGUI/FlatCAMGUI.py:649 +#: flatcamGUI/FlatCAMGUI.py:660 msgid "Tools Toolbar" msgstr "Toolbar Unelte" -#: flatcamGUI/FlatCAMGUI.py:653 +#: flatcamGUI/FlatCAMGUI.py:664 msgid "Excellon Editor Toolbar" msgstr "Toolbar Editor Excellon" -#: flatcamGUI/FlatCAMGUI.py:659 +#: flatcamGUI/FlatCAMGUI.py:670 msgid "Geometry Editor Toolbar" msgstr "Toolbar Editor Geometrii" -#: flatcamGUI/FlatCAMGUI.py:663 +#: flatcamGUI/FlatCAMGUI.py:674 msgid "Gerber Editor Toolbar" msgstr "Toolbar Editor Gerber" -#: flatcamGUI/FlatCAMGUI.py:667 +#: flatcamGUI/FlatCAMGUI.py:678 msgid "Grid Toolbar" msgstr "Toolbar Grid-uri" -#: flatcamGUI/FlatCAMGUI.py:688 flatcamGUI/FlatCAMGUI.py:2140 +#: flatcamGUI/FlatCAMGUI.py:699 flatcamGUI/FlatCAMGUI.py:2152 msgid "Open project" msgstr "Încarcă Proiect" -#: flatcamGUI/FlatCAMGUI.py:689 flatcamGUI/FlatCAMGUI.py:2141 +#: flatcamGUI/FlatCAMGUI.py:700 flatcamGUI/FlatCAMGUI.py:2153 msgid "Save project" msgstr "Salvează Proiect" -#: flatcamGUI/FlatCAMGUI.py:694 flatcamGUI/FlatCAMGUI.py:2144 +#: flatcamGUI/FlatCAMGUI.py:705 flatcamGUI/FlatCAMGUI.py:2156 msgid "New Blank Geometry" msgstr "Geometrie Noua (goală)" -#: flatcamGUI/FlatCAMGUI.py:695 flatcamGUI/FlatCAMGUI.py:2145 +#: flatcamGUI/FlatCAMGUI.py:706 flatcamGUI/FlatCAMGUI.py:2157 msgid "New Blank Gerber" msgstr "Gerber Nou (gol)" -#: flatcamGUI/FlatCAMGUI.py:696 flatcamGUI/FlatCAMGUI.py:2146 +#: flatcamGUI/FlatCAMGUI.py:707 flatcamGUI/FlatCAMGUI.py:2158 msgid "New Blank Excellon" msgstr "Excellon nou (gol)" -#: flatcamGUI/FlatCAMGUI.py:700 flatcamGUI/FlatCAMGUI.py:2150 +#: flatcamGUI/FlatCAMGUI.py:711 flatcamGUI/FlatCAMGUI.py:2162 msgid "Save Object and close the Editor" msgstr "Salvează Obiectul și inchide Editorul" -#: flatcamGUI/FlatCAMGUI.py:705 flatcamGUI/FlatCAMGUI.py:2155 +#: flatcamGUI/FlatCAMGUI.py:716 flatcamGUI/FlatCAMGUI.py:2167 msgid "&Delete" msgstr "&Șterge" -#: flatcamGUI/FlatCAMGUI.py:707 flatcamGUI/FlatCAMGUI.py:1454 -#: flatcamGUI/FlatCAMGUI.py:1653 flatcamGUI/FlatCAMGUI.py:2157 +#: flatcamGUI/FlatCAMGUI.py:718 flatcamGUI/FlatCAMGUI.py:1466 +#: flatcamGUI/FlatCAMGUI.py:1665 flatcamGUI/FlatCAMGUI.py:2169 #: flatcamTools/ToolDistance.py:30 flatcamTools/ToolDistance.py:160 msgid "Distance Tool" msgstr "Unealta Distanță" -#: flatcamGUI/FlatCAMGUI.py:709 flatcamGUI/FlatCAMGUI.py:2159 +#: flatcamGUI/FlatCAMGUI.py:720 flatcamGUI/FlatCAMGUI.py:2171 msgid "Distance Min Tool" msgstr "Unealta Distanță min" -#: flatcamGUI/FlatCAMGUI.py:710 flatcamGUI/FlatCAMGUI.py:1447 -#: flatcamGUI/FlatCAMGUI.py:2160 +#: flatcamGUI/FlatCAMGUI.py:721 flatcamGUI/FlatCAMGUI.py:1459 +#: flatcamGUI/FlatCAMGUI.py:2172 msgid "Set Origin" msgstr "Setează Originea" -#: flatcamGUI/FlatCAMGUI.py:711 flatcamGUI/FlatCAMGUI.py:2161 +#: flatcamGUI/FlatCAMGUI.py:722 flatcamGUI/FlatCAMGUI.py:2173 msgid "Jump to Location" msgstr "Sari la Locaţie" -#: flatcamGUI/FlatCAMGUI.py:716 flatcamGUI/FlatCAMGUI.py:2164 +#: flatcamGUI/FlatCAMGUI.py:727 flatcamGUI/FlatCAMGUI.py:2176 msgid "&Replot" msgstr "&Reafișare" -#: flatcamGUI/FlatCAMGUI.py:717 flatcamGUI/FlatCAMGUI.py:2165 +#: flatcamGUI/FlatCAMGUI.py:728 flatcamGUI/FlatCAMGUI.py:2177 msgid "&Clear plot" msgstr "&Șterge Afișare" -#: flatcamGUI/FlatCAMGUI.py:718 flatcamGUI/FlatCAMGUI.py:1450 -#: flatcamGUI/FlatCAMGUI.py:2166 +#: flatcamGUI/FlatCAMGUI.py:729 flatcamGUI/FlatCAMGUI.py:1462 +#: flatcamGUI/FlatCAMGUI.py:2178 msgid "Zoom In" msgstr "Marire" -#: flatcamGUI/FlatCAMGUI.py:719 flatcamGUI/FlatCAMGUI.py:1450 -#: flatcamGUI/FlatCAMGUI.py:2167 +#: flatcamGUI/FlatCAMGUI.py:730 flatcamGUI/FlatCAMGUI.py:1462 +#: flatcamGUI/FlatCAMGUI.py:2179 msgid "Zoom Out" msgstr "Micsorare" -#: flatcamGUI/FlatCAMGUI.py:720 flatcamGUI/FlatCAMGUI.py:1449 -#: flatcamGUI/FlatCAMGUI.py:1893 flatcamGUI/FlatCAMGUI.py:2168 +#: flatcamGUI/FlatCAMGUI.py:731 flatcamGUI/FlatCAMGUI.py:1461 +#: flatcamGUI/FlatCAMGUI.py:1905 flatcamGUI/FlatCAMGUI.py:2180 msgid "Zoom Fit" msgstr "Marire și ajustare" -#: flatcamGUI/FlatCAMGUI.py:727 flatcamGUI/FlatCAMGUI.py:2173 +#: flatcamGUI/FlatCAMGUI.py:738 flatcamGUI/FlatCAMGUI.py:2185 msgid "&Command Line" msgstr "&Linie de comanda" -#: flatcamGUI/FlatCAMGUI.py:735 flatcamGUI/FlatCAMGUI.py:2179 +#: flatcamGUI/FlatCAMGUI.py:746 flatcamGUI/FlatCAMGUI.py:2191 msgid "2Sided Tool" msgstr "Unealta 2-fețe" -#: flatcamGUI/FlatCAMGUI.py:736 flatcamGUI/ObjectUI.py:566 +#: flatcamGUI/FlatCAMGUI.py:747 flatcamGUI/ObjectUI.py:577 #: flatcamTools/ToolCutOut.py:434 msgid "Cutout Tool" msgstr "Unealta Decupare" -#: flatcamGUI/FlatCAMGUI.py:737 flatcamGUI/FlatCAMGUI.py:2181 -#: flatcamGUI/ObjectUI.py:550 flatcamTools/ToolNonCopperClear.py:637 +#: flatcamGUI/FlatCAMGUI.py:748 flatcamGUI/FlatCAMGUI.py:2193 +#: flatcamGUI/ObjectUI.py:555 flatcamGUI/ObjectUI.py:1712 +#: flatcamTools/ToolNonCopperClear.py:637 msgid "NCC Tool" msgstr "Unealta NCC" -#: flatcamGUI/FlatCAMGUI.py:741 flatcamGUI/FlatCAMGUI.py:2185 +#: flatcamGUI/FlatCAMGUI.py:752 flatcamGUI/FlatCAMGUI.py:2197 msgid "Panel Tool" msgstr "Unealta Panel" -#: flatcamGUI/FlatCAMGUI.py:742 flatcamGUI/FlatCAMGUI.py:2186 +#: flatcamGUI/FlatCAMGUI.py:753 flatcamGUI/FlatCAMGUI.py:2198 #: flatcamTools/ToolFilm.py:578 msgid "Film Tool" msgstr "Unealta Film" -#: flatcamGUI/FlatCAMGUI.py:743 flatcamGUI/FlatCAMGUI.py:2188 +#: flatcamGUI/FlatCAMGUI.py:754 flatcamGUI/FlatCAMGUI.py:2200 #: flatcamTools/ToolSolderPaste.py:547 msgid "SolderPaste Tool" msgstr "Unealta Dispenser SP" -#: flatcamGUI/FlatCAMGUI.py:744 flatcamGUI/FlatCAMGUI.py:2189 +#: flatcamGUI/FlatCAMGUI.py:755 flatcamGUI/FlatCAMGUI.py:2201 #: flatcamTools/ToolSub.py:35 msgid "Subtract Tool" msgstr "Unealta Scădere" -#: flatcamGUI/FlatCAMGUI.py:745 flatcamTools/ToolRulesCheck.py:607 +#: flatcamGUI/FlatCAMGUI.py:756 flatcamTools/ToolRulesCheck.py:607 msgid "Rules Tool" msgstr "Unalta Verif. Reguli" -#: flatcamGUI/FlatCAMGUI.py:746 flatcamGUI/FlatCAMGUI.py:1465 +#: flatcamGUI/FlatCAMGUI.py:757 flatcamGUI/FlatCAMGUI.py:1477 #: flatcamTools/ToolOptimal.py:34 flatcamTools/ToolOptimal.py:310 msgid "Optimal Tool" msgstr "Unealta Optim" -#: flatcamGUI/FlatCAMGUI.py:750 flatcamGUI/FlatCAMGUI.py:1463 -#: flatcamGUI/FlatCAMGUI.py:2194 +#: flatcamGUI/FlatCAMGUI.py:761 flatcamGUI/FlatCAMGUI.py:1475 +#: flatcamGUI/FlatCAMGUI.py:2206 msgid "Calculators Tool" msgstr "Unealta Calculatoare" -#: flatcamGUI/FlatCAMGUI.py:752 flatcamGUI/FlatCAMGUI.py:1466 -#: flatcamGUI/FlatCAMGUI.py:2196 flatcamTools/ToolQRCode.py:43 +#: flatcamGUI/FlatCAMGUI.py:763 flatcamGUI/FlatCAMGUI.py:1478 +#: flatcamGUI/FlatCAMGUI.py:2208 flatcamTools/ToolQRCode.py:43 #: flatcamTools/ToolQRCode.py:382 -#, fuzzy -#| msgid "Rules Tool" msgid "QRCode Tool" -msgstr "Unalta Verif. Reguli" +msgstr "Unealta QRCode" -#: flatcamGUI/FlatCAMGUI.py:754 flatcamGUI/FlatCAMGUI.py:2198 +#: flatcamGUI/FlatCAMGUI.py:765 flatcamGUI/FlatCAMGUI.py:2210 #: flatcamTools/ToolCopperThieving.py:40 flatcamTools/ToolCopperThieving.py:566 -#, fuzzy -#| msgid "Non-Copper Clearing Tool" msgid "Copper Thieving Tool" -msgstr "Curățăre Non-Cupru" +msgstr "Unealta Copper Thieving" -#: flatcamGUI/FlatCAMGUI.py:756 flatcamGUI/FlatCAMGUI.py:1463 -#: flatcamGUI/FlatCAMGUI.py:2200 flatcamTools/ToolFiducials.py:33 +#: flatcamGUI/FlatCAMGUI.py:767 flatcamGUI/FlatCAMGUI.py:1475 +#: flatcamGUI/FlatCAMGUI.py:2212 flatcamTools/ToolFiducials.py:33 #: flatcamTools/ToolFiducials.py:393 -#, fuzzy -#| msgid "Film Tool" msgid "Fiducials Tool" -msgstr "Unealta Film" +msgstr "Unealta Fiducials" -#: flatcamGUI/FlatCAMGUI.py:761 flatcamGUI/FlatCAMGUI.py:780 -#: flatcamGUI/FlatCAMGUI.py:818 flatcamGUI/FlatCAMGUI.py:2203 -#: flatcamGUI/FlatCAMGUI.py:2258 +#: flatcamGUI/FlatCAMGUI.py:768 flatcamGUI/FlatCAMGUI.py:2213 +#: flatcamTools/ToolCalibration.py:37 flatcamTools/ToolCalibration.py:762 +msgid "Calibration Tool" +msgstr "Unealta Calibrare" + +#: flatcamGUI/FlatCAMGUI.py:773 flatcamGUI/FlatCAMGUI.py:792 +#: flatcamGUI/FlatCAMGUI.py:830 flatcamGUI/FlatCAMGUI.py:2216 +#: flatcamGUI/FlatCAMGUI.py:2271 msgid "Select" msgstr "Selectează" -#: flatcamGUI/FlatCAMGUI.py:762 flatcamGUI/FlatCAMGUI.py:2204 +#: flatcamGUI/FlatCAMGUI.py:774 flatcamGUI/FlatCAMGUI.py:2217 msgid "Add Drill Hole" msgstr "Adaugă o Găurire" -#: flatcamGUI/FlatCAMGUI.py:764 flatcamGUI/FlatCAMGUI.py:2206 +#: flatcamGUI/FlatCAMGUI.py:776 flatcamGUI/FlatCAMGUI.py:2219 msgid "Add Drill Hole Array" msgstr "Adaugă o arie de Găuriri" -#: flatcamGUI/FlatCAMGUI.py:765 flatcamGUI/FlatCAMGUI.py:1738 -#: flatcamGUI/FlatCAMGUI.py:1948 flatcamGUI/FlatCAMGUI.py:2208 +#: flatcamGUI/FlatCAMGUI.py:777 flatcamGUI/FlatCAMGUI.py:1750 +#: flatcamGUI/FlatCAMGUI.py:1960 flatcamGUI/FlatCAMGUI.py:2221 msgid "Add Slot" msgstr "Adaugă Slot" -#: flatcamGUI/FlatCAMGUI.py:767 flatcamGUI/FlatCAMGUI.py:1737 -#: flatcamGUI/FlatCAMGUI.py:1949 flatcamGUI/FlatCAMGUI.py:2210 +#: flatcamGUI/FlatCAMGUI.py:779 flatcamGUI/FlatCAMGUI.py:1749 +#: flatcamGUI/FlatCAMGUI.py:1961 flatcamGUI/FlatCAMGUI.py:2223 msgid "Add Slot Array" msgstr "Adaugă o Arie sloturi" -#: flatcamGUI/FlatCAMGUI.py:768 flatcamGUI/FlatCAMGUI.py:1951 -#: flatcamGUI/FlatCAMGUI.py:2207 +#: flatcamGUI/FlatCAMGUI.py:780 flatcamGUI/FlatCAMGUI.py:1963 +#: flatcamGUI/FlatCAMGUI.py:2220 msgid "Resize Drill" msgstr "Redimens. Găurire" -#: flatcamGUI/FlatCAMGUI.py:771 flatcamGUI/FlatCAMGUI.py:2213 +#: flatcamGUI/FlatCAMGUI.py:783 flatcamGUI/FlatCAMGUI.py:2226 msgid "Copy Drill" msgstr "Copiază Găurire" -#: flatcamGUI/FlatCAMGUI.py:772 flatcamGUI/FlatCAMGUI.py:2215 +#: flatcamGUI/FlatCAMGUI.py:784 flatcamGUI/FlatCAMGUI.py:2228 msgid "Delete Drill" msgstr "Șterge Găurire" -#: flatcamGUI/FlatCAMGUI.py:775 flatcamGUI/FlatCAMGUI.py:2218 +#: flatcamGUI/FlatCAMGUI.py:787 flatcamGUI/FlatCAMGUI.py:2231 msgid "Move Drill" msgstr "Muta Găurire" -#: flatcamGUI/FlatCAMGUI.py:781 flatcamGUI/FlatCAMGUI.py:2222 +#: flatcamGUI/FlatCAMGUI.py:793 flatcamGUI/FlatCAMGUI.py:2235 msgid "Add Circle" msgstr "Adaugă Cerc" -#: flatcamGUI/FlatCAMGUI.py:782 flatcamGUI/FlatCAMGUI.py:2223 +#: flatcamGUI/FlatCAMGUI.py:794 flatcamGUI/FlatCAMGUI.py:2236 msgid "Add Arc" msgstr "Adaugă Arc" -#: flatcamGUI/FlatCAMGUI.py:784 flatcamGUI/FlatCAMGUI.py:2225 +#: flatcamGUI/FlatCAMGUI.py:796 flatcamGUI/FlatCAMGUI.py:2238 msgid "Add Rectangle" msgstr "Adaugă Patrulater" -#: flatcamGUI/FlatCAMGUI.py:787 flatcamGUI/FlatCAMGUI.py:2228 +#: flatcamGUI/FlatCAMGUI.py:799 flatcamGUI/FlatCAMGUI.py:2241 msgid "Add Path" msgstr "Adaugă Cale" -#: flatcamGUI/FlatCAMGUI.py:788 flatcamGUI/FlatCAMGUI.py:2230 +#: flatcamGUI/FlatCAMGUI.py:800 flatcamGUI/FlatCAMGUI.py:2243 msgid "Add Polygon" msgstr "Adaugă Poligon" -#: flatcamGUI/FlatCAMGUI.py:790 flatcamGUI/FlatCAMGUI.py:2232 +#: flatcamGUI/FlatCAMGUI.py:802 flatcamGUI/FlatCAMGUI.py:2245 msgid "Add Text" msgstr "Adaugă Text" -#: flatcamGUI/FlatCAMGUI.py:791 flatcamGUI/FlatCAMGUI.py:2233 +#: flatcamGUI/FlatCAMGUI.py:803 flatcamGUI/FlatCAMGUI.py:2246 msgid "Add Buffer" msgstr "Adaugă Bufer" -#: flatcamGUI/FlatCAMGUI.py:792 flatcamGUI/FlatCAMGUI.py:2234 +#: flatcamGUI/FlatCAMGUI.py:804 flatcamGUI/FlatCAMGUI.py:2247 msgid "Paint Shape" msgstr "Paint o forma" -#: flatcamGUI/FlatCAMGUI.py:793 flatcamGUI/FlatCAMGUI.py:835 -#: flatcamGUI/FlatCAMGUI.py:1910 flatcamGUI/FlatCAMGUI.py:1938 -#: flatcamGUI/FlatCAMGUI.py:2235 flatcamGUI/FlatCAMGUI.py:2274 +#: flatcamGUI/FlatCAMGUI.py:805 flatcamGUI/FlatCAMGUI.py:847 +#: flatcamGUI/FlatCAMGUI.py:1922 flatcamGUI/FlatCAMGUI.py:1950 +#: flatcamGUI/FlatCAMGUI.py:2248 flatcamGUI/FlatCAMGUI.py:2287 msgid "Eraser" msgstr "Stergere Selectivă" -#: flatcamGUI/FlatCAMGUI.py:796 flatcamGUI/FlatCAMGUI.py:2238 +#: flatcamGUI/FlatCAMGUI.py:808 flatcamGUI/FlatCAMGUI.py:2251 msgid "Polygon Union" msgstr "Uniune Poligoane" -#: flatcamGUI/FlatCAMGUI.py:797 flatcamGUI/FlatCAMGUI.py:2239 +#: flatcamGUI/FlatCAMGUI.py:809 flatcamGUI/FlatCAMGUI.py:2252 msgid "Polygon Explode" msgstr "Explodare Poligoane" -#: flatcamGUI/FlatCAMGUI.py:800 flatcamGUI/FlatCAMGUI.py:2242 +#: flatcamGUI/FlatCAMGUI.py:812 flatcamGUI/FlatCAMGUI.py:2255 msgid "Polygon Intersection" msgstr "Intersecţie Poligoane" -#: flatcamGUI/FlatCAMGUI.py:802 flatcamGUI/FlatCAMGUI.py:2244 +#: flatcamGUI/FlatCAMGUI.py:814 flatcamGUI/FlatCAMGUI.py:2257 msgid "Polygon Subtraction" msgstr "Substracţie Poligoane" -#: flatcamGUI/FlatCAMGUI.py:805 flatcamGUI/FlatCAMGUI.py:2247 +#: flatcamGUI/FlatCAMGUI.py:817 flatcamGUI/FlatCAMGUI.py:2260 msgid "Cut Path" msgstr "Taie Cale" -#: flatcamGUI/FlatCAMGUI.py:806 +#: flatcamGUI/FlatCAMGUI.py:818 msgid "Copy Shape(s)" msgstr "Copiază forme geo." -#: flatcamGUI/FlatCAMGUI.py:809 +#: flatcamGUI/FlatCAMGUI.py:821 msgid "Delete Shape '-'" msgstr "Șterge forme geo" -#: flatcamGUI/FlatCAMGUI.py:811 flatcamGUI/FlatCAMGUI.py:842 -#: flatcamGUI/FlatCAMGUI.py:1917 flatcamGUI/FlatCAMGUI.py:1942 -#: flatcamGUI/FlatCAMGUI.py:2252 flatcamGUI/FlatCAMGUI.py:2281 +#: flatcamGUI/FlatCAMGUI.py:823 flatcamGUI/FlatCAMGUI.py:854 +#: flatcamGUI/FlatCAMGUI.py:1929 flatcamGUI/FlatCAMGUI.py:1954 +#: flatcamGUI/FlatCAMGUI.py:2265 flatcamGUI/FlatCAMGUI.py:2294 msgid "Transformations" msgstr "Transformări" -#: flatcamGUI/FlatCAMGUI.py:813 +#: flatcamGUI/FlatCAMGUI.py:825 msgid "Move Objects " msgstr "Mută Obiecte " -#: flatcamGUI/FlatCAMGUI.py:819 flatcamGUI/FlatCAMGUI.py:1857 -#: flatcamGUI/FlatCAMGUI.py:2259 +#: flatcamGUI/FlatCAMGUI.py:831 flatcamGUI/FlatCAMGUI.py:1869 +#: flatcamGUI/FlatCAMGUI.py:2272 msgid "Add Pad" msgstr "Adaugă Pad" -#: flatcamGUI/FlatCAMGUI.py:821 flatcamGUI/FlatCAMGUI.py:1858 -#: flatcamGUI/FlatCAMGUI.py:2261 +#: flatcamGUI/FlatCAMGUI.py:833 flatcamGUI/FlatCAMGUI.py:1870 +#: flatcamGUI/FlatCAMGUI.py:2274 msgid "Add Track" msgstr "Adaugă Traseu" -#: flatcamGUI/FlatCAMGUI.py:822 flatcamGUI/FlatCAMGUI.py:1857 -#: flatcamGUI/FlatCAMGUI.py:2262 +#: flatcamGUI/FlatCAMGUI.py:834 flatcamGUI/FlatCAMGUI.py:1869 +#: flatcamGUI/FlatCAMGUI.py:2275 msgid "Add Region" msgstr "Adaugă Regiune" -#: flatcamGUI/FlatCAMGUI.py:824 flatcamGUI/FlatCAMGUI.py:1930 -#: flatcamGUI/FlatCAMGUI.py:2264 +#: flatcamGUI/FlatCAMGUI.py:836 flatcamGUI/FlatCAMGUI.py:1942 +#: flatcamGUI/FlatCAMGUI.py:2277 msgid "Poligonize" msgstr "Poligonizare" -#: flatcamGUI/FlatCAMGUI.py:826 flatcamGUI/FlatCAMGUI.py:1931 -#: flatcamGUI/FlatCAMGUI.py:2266 +#: flatcamGUI/FlatCAMGUI.py:838 flatcamGUI/FlatCAMGUI.py:1943 +#: flatcamGUI/FlatCAMGUI.py:2279 msgid "SemiDisc" msgstr "SemiDisc" -#: flatcamGUI/FlatCAMGUI.py:827 flatcamGUI/FlatCAMGUI.py:1932 -#: flatcamGUI/FlatCAMGUI.py:2267 +#: flatcamGUI/FlatCAMGUI.py:839 flatcamGUI/FlatCAMGUI.py:1944 +#: flatcamGUI/FlatCAMGUI.py:2280 msgid "Disc" msgstr "Disc" -#: flatcamGUI/FlatCAMGUI.py:833 flatcamGUI/FlatCAMGUI.py:1937 -#: flatcamGUI/FlatCAMGUI.py:2273 +#: flatcamGUI/FlatCAMGUI.py:845 flatcamGUI/FlatCAMGUI.py:1949 +#: flatcamGUI/FlatCAMGUI.py:2286 msgid "Mark Area" msgstr "Marc. aria" -#: flatcamGUI/FlatCAMGUI.py:844 flatcamGUI/FlatCAMGUI.py:1857 -#: flatcamGUI/FlatCAMGUI.py:1920 flatcamGUI/FlatCAMGUI.py:1961 -#: flatcamGUI/FlatCAMGUI.py:2283 flatcamTools/ToolMove.py:28 +#: flatcamGUI/FlatCAMGUI.py:856 flatcamGUI/FlatCAMGUI.py:1869 +#: flatcamGUI/FlatCAMGUI.py:1932 flatcamGUI/FlatCAMGUI.py:1973 +#: flatcamGUI/FlatCAMGUI.py:2296 flatcamTools/ToolMove.py:28 msgid "Move" msgstr "Mutare" -#: flatcamGUI/FlatCAMGUI.py:851 flatcamGUI/FlatCAMGUI.py:2289 +#: flatcamGUI/FlatCAMGUI.py:863 flatcamGUI/FlatCAMGUI.py:2302 msgid "Snap to grid" msgstr "Lipire la grid" -#: flatcamGUI/FlatCAMGUI.py:854 flatcamGUI/FlatCAMGUI.py:2292 +#: flatcamGUI/FlatCAMGUI.py:866 flatcamGUI/FlatCAMGUI.py:2305 msgid "Grid X snapping distance" msgstr "Distanta de lipire la grid pe axa X" -#: flatcamGUI/FlatCAMGUI.py:859 flatcamGUI/FlatCAMGUI.py:2297 +#: flatcamGUI/FlatCAMGUI.py:871 flatcamGUI/FlatCAMGUI.py:2310 msgid "Grid Y snapping distance" msgstr "Distanta de lipire la grid pe axa Y" -#: flatcamGUI/FlatCAMGUI.py:865 flatcamGUI/FlatCAMGUI.py:2303 +#: flatcamGUI/FlatCAMGUI.py:877 flatcamGUI/FlatCAMGUI.py:2316 msgid "" "When active, value on Grid_X\n" "is copied to the Grid_Y value." @@ -6260,66 +6242,63 @@ msgstr "" "Când este activ, valoarea de pe Grid_X\n" "este copiata și in Grid_Y." -#: flatcamGUI/FlatCAMGUI.py:871 flatcamGUI/FlatCAMGUI.py:2309 +#: flatcamGUI/FlatCAMGUI.py:883 flatcamGUI/FlatCAMGUI.py:2322 msgid "Snap to corner" msgstr "Lipire la colt" -#: flatcamGUI/FlatCAMGUI.py:875 flatcamGUI/FlatCAMGUI.py:2313 +#: flatcamGUI/FlatCAMGUI.py:887 flatcamGUI/FlatCAMGUI.py:2326 #: flatcamGUI/PreferencesUI.py:348 msgid "Max. magnet distance" msgstr "Distanta magnetica maxima" -#: flatcamGUI/FlatCAMGUI.py:897 flatcamGUI/FlatCAMGUI.py:1887 -msgid "Project" -msgstr "Proiect" - -#: flatcamGUI/FlatCAMGUI.py:909 +#: flatcamGUI/FlatCAMGUI.py:921 msgid "Selected" msgstr "Selectat" -#: flatcamGUI/FlatCAMGUI.py:936 flatcamGUI/FlatCAMGUI.py:944 +#: flatcamGUI/FlatCAMGUI.py:948 flatcamGUI/FlatCAMGUI.py:956 msgid "Plot Area" msgstr "Arie Afișare" -#: flatcamGUI/FlatCAMGUI.py:971 +#: flatcamGUI/FlatCAMGUI.py:983 msgid "General" msgstr "General" -#: flatcamGUI/FlatCAMGUI.py:986 flatcamTools/ToolCopperThieving.py:74 +#: flatcamGUI/FlatCAMGUI.py:998 flatcamTools/ToolCopperThieving.py:74 #: flatcamTools/ToolDblSided.py:57 flatcamTools/ToolOptimal.py:71 #: flatcamTools/ToolQRCode.py:77 msgid "GERBER" msgstr "GERBER" -#: flatcamGUI/FlatCAMGUI.py:996 flatcamTools/ToolDblSided.py:85 +#: flatcamGUI/FlatCAMGUI.py:1008 flatcamTools/ToolDblSided.py:85 msgid "EXCELLON" msgstr "EXCELLON" -#: flatcamGUI/FlatCAMGUI.py:1006 flatcamTools/ToolDblSided.py:113 +#: flatcamGUI/FlatCAMGUI.py:1018 flatcamTools/ToolDblSided.py:113 msgid "GEOMETRY" msgstr "GEOMETRIE" -#: flatcamGUI/FlatCAMGUI.py:1016 +#: flatcamGUI/FlatCAMGUI.py:1028 msgid "CNC-JOB" msgstr "CNCJob" -#: flatcamGUI/FlatCAMGUI.py:1025 flatcamGUI/ObjectUI.py:539 +#: flatcamGUI/FlatCAMGUI.py:1037 flatcamGUI/ObjectUI.py:544 +#: flatcamGUI/ObjectUI.py:1687 msgid "TOOLS" msgstr "Unelte" -#: flatcamGUI/FlatCAMGUI.py:1034 +#: flatcamGUI/FlatCAMGUI.py:1046 msgid "TOOLS 2" msgstr "UNELTE 2" -#: flatcamGUI/FlatCAMGUI.py:1044 +#: flatcamGUI/FlatCAMGUI.py:1056 msgid "UTILITIES" msgstr "UTILITARE" -#: flatcamGUI/FlatCAMGUI.py:1061 +#: flatcamGUI/FlatCAMGUI.py:1073 msgid "Import Preferences" msgstr "Importa Preferințele" -#: flatcamGUI/FlatCAMGUI.py:1064 +#: flatcamGUI/FlatCAMGUI.py:1076 msgid "" "Import a full set of FlatCAM settings from a file\n" "previously saved on HDD.\n" @@ -6333,11 +6312,11 @@ msgstr "" "FlatCAM salvează automat un fişier numit 'factory_defaults'\n" "la prima pornire. Nu șterge acel fişier." -#: flatcamGUI/FlatCAMGUI.py:1071 +#: flatcamGUI/FlatCAMGUI.py:1083 msgid "Export Preferences" msgstr "Exporta Preferințele" -#: flatcamGUI/FlatCAMGUI.py:1074 +#: flatcamGUI/FlatCAMGUI.py:1086 msgid "" "Export a full set of FlatCAM settings in a file\n" "that is saved on HDD." @@ -6345,23 +6324,23 @@ msgstr "" "Exporta un set complet de setări ale FlatCAM\n" "intr-un fişier care se salvează pe HDD." -#: flatcamGUI/FlatCAMGUI.py:1079 +#: flatcamGUI/FlatCAMGUI.py:1091 msgid "Open Pref Folder" msgstr "Deschide Pref Dir" -#: flatcamGUI/FlatCAMGUI.py:1082 +#: flatcamGUI/FlatCAMGUI.py:1094 msgid "Open the folder where FlatCAM save the preferences files." msgstr "Deschide directorul unde FlatCAM salvează fişierele cu setări." -#: flatcamGUI/FlatCAMGUI.py:1090 +#: flatcamGUI/FlatCAMGUI.py:1102 msgid "Apply" -msgstr "" +msgstr "Aplicați" -#: flatcamGUI/FlatCAMGUI.py:1093 +#: flatcamGUI/FlatCAMGUI.py:1105 msgid "Apply the current preferences without saving to a file." -msgstr "" +msgstr "Aplicați preferințele actuale fără a salva într-un fișier." -#: flatcamGUI/FlatCAMGUI.py:1100 +#: flatcamGUI/FlatCAMGUI.py:1112 msgid "" "Save the current settings in the 'current_defaults' file\n" "which is the file storing the working default preferences." @@ -6369,534 +6348,532 @@ msgstr "" "Salvează setările curente in fişierul numit: 'current_defaults'\n" "fişier care este cel unde se salvează preferințele cu care se va lucra." -#: flatcamGUI/FlatCAMGUI.py:1108 +#: flatcamGUI/FlatCAMGUI.py:1120 msgid "Will not save the changes and will close the preferences window." -msgstr "" +msgstr "Nu va salva modificările și va închide fereastra de preferințe." -#: flatcamGUI/FlatCAMGUI.py:1444 +#: flatcamGUI/FlatCAMGUI.py:1456 msgid "SHOW SHORTCUT LIST" msgstr "ARATA LISTA DE TASTE SHORTCUT" -#: flatcamGUI/FlatCAMGUI.py:1444 +#: flatcamGUI/FlatCAMGUI.py:1456 msgid "Switch to Project Tab" msgstr "Treci la Tab-ul Proiect" -#: flatcamGUI/FlatCAMGUI.py:1444 +#: flatcamGUI/FlatCAMGUI.py:1456 msgid "Switch to Selected Tab" msgstr "Treci la Tab-ul Selectat" -#: flatcamGUI/FlatCAMGUI.py:1445 +#: flatcamGUI/FlatCAMGUI.py:1457 msgid "Switch to Tool Tab" msgstr "Treci la Tab-ul 'Unealta'" -#: flatcamGUI/FlatCAMGUI.py:1446 +#: flatcamGUI/FlatCAMGUI.py:1458 msgid "New Gerber" msgstr "Gerber Nou" -#: flatcamGUI/FlatCAMGUI.py:1446 +#: flatcamGUI/FlatCAMGUI.py:1458 msgid "Edit Object (if selected)" msgstr "Editeaza obiectul (daca este selectat)" -#: flatcamGUI/FlatCAMGUI.py:1446 +#: flatcamGUI/FlatCAMGUI.py:1458 msgid "Jump to Coordinates" msgstr "Sari la Coordonatele" -#: flatcamGUI/FlatCAMGUI.py:1447 +#: flatcamGUI/FlatCAMGUI.py:1459 msgid "New Excellon" msgstr "Excellon nou" -#: flatcamGUI/FlatCAMGUI.py:1447 +#: flatcamGUI/FlatCAMGUI.py:1459 msgid "Move Obj" msgstr "Mută Obiecte" -#: flatcamGUI/FlatCAMGUI.py:1447 +#: flatcamGUI/FlatCAMGUI.py:1459 msgid "New Geometry" msgstr "Geometrie Noua" -#: flatcamGUI/FlatCAMGUI.py:1447 +#: flatcamGUI/FlatCAMGUI.py:1459 msgid "Change Units" msgstr "Comută Unitati" -#: flatcamGUI/FlatCAMGUI.py:1448 +#: flatcamGUI/FlatCAMGUI.py:1460 msgid "Open Properties Tool" msgstr "Deschide Unealta Proprietati" -#: flatcamGUI/FlatCAMGUI.py:1448 +#: flatcamGUI/FlatCAMGUI.py:1460 msgid "Rotate by 90 degree CW" msgstr "Roteste cu 90 grade CW" -#: flatcamGUI/FlatCAMGUI.py:1448 +#: flatcamGUI/FlatCAMGUI.py:1460 msgid "Shell Toggle" msgstr "Comuta Linie de comanda" -#: flatcamGUI/FlatCAMGUI.py:1449 +#: flatcamGUI/FlatCAMGUI.py:1461 msgid "" "Add a Tool (when in Geometry Selected Tab or in Tools NCC or Tools Paint)" msgstr "" "Adaugă o Unealtă (cand ne aflam in tab-ul Selected al Geometriei sau in " "Unealta NCC sau in unealta Paint)" -#: flatcamGUI/FlatCAMGUI.py:1450 +#: flatcamGUI/FlatCAMGUI.py:1462 msgid "Flip on X_axis" msgstr "Oglindește pe axa X" -#: flatcamGUI/FlatCAMGUI.py:1450 +#: flatcamGUI/FlatCAMGUI.py:1462 msgid "Flip on Y_axis" msgstr "Oglindește pe axa Y" -#: flatcamGUI/FlatCAMGUI.py:1453 +#: flatcamGUI/FlatCAMGUI.py:1465 msgid "Copy Obj" msgstr "Copiază Obiecte" -#: flatcamGUI/FlatCAMGUI.py:1453 -#, fuzzy -#| msgid "Tool Data" +#: flatcamGUI/FlatCAMGUI.py:1465 msgid "Open Tools Database" -msgstr "Date unealtă" +msgstr "Deschide baza de date Unelte" -#: flatcamGUI/FlatCAMGUI.py:1454 +#: flatcamGUI/FlatCAMGUI.py:1466 msgid "Open Excellon File" msgstr "Încarcă un fisier Excellon" -#: flatcamGUI/FlatCAMGUI.py:1454 +#: flatcamGUI/FlatCAMGUI.py:1466 msgid "Open Gerber File" msgstr "Încarcă un fisier Gerber" -#: flatcamGUI/FlatCAMGUI.py:1454 +#: flatcamGUI/FlatCAMGUI.py:1466 msgid "New Project" msgstr "Un Nou Project" -#: flatcamGUI/FlatCAMGUI.py:1455 flatcamTools/ToolPDF.py:42 +#: flatcamGUI/FlatCAMGUI.py:1467 flatcamTools/ToolPDF.py:42 msgid "PDF Import Tool" msgstr "Unealta import PDF" -#: flatcamGUI/FlatCAMGUI.py:1455 +#: flatcamGUI/FlatCAMGUI.py:1467 msgid "Save Project As" msgstr "Salvează Proiectul ca" -#: flatcamGUI/FlatCAMGUI.py:1455 +#: flatcamGUI/FlatCAMGUI.py:1467 msgid "Toggle Plot Area" msgstr "Comută Aria de Afișare" -#: flatcamGUI/FlatCAMGUI.py:1458 +#: flatcamGUI/FlatCAMGUI.py:1470 msgid "Copy Obj_Name" msgstr "Copiază Nume Obiect" -#: flatcamGUI/FlatCAMGUI.py:1459 +#: flatcamGUI/FlatCAMGUI.py:1471 msgid "Toggle Code Editor" msgstr "Comută Editorul de cod" -#: flatcamGUI/FlatCAMGUI.py:1459 +#: flatcamGUI/FlatCAMGUI.py:1471 msgid "Toggle the axis" msgstr "Comută Reprezentare Axe" -#: flatcamGUI/FlatCAMGUI.py:1459 flatcamGUI/FlatCAMGUI.py:1651 -#: flatcamGUI/FlatCAMGUI.py:1738 flatcamGUI/FlatCAMGUI.py:1860 +#: flatcamGUI/FlatCAMGUI.py:1471 flatcamGUI/FlatCAMGUI.py:1663 +#: flatcamGUI/FlatCAMGUI.py:1750 flatcamGUI/FlatCAMGUI.py:1872 msgid "Distance Minimum Tool" msgstr "Unealta Distanță minimă" -#: flatcamGUI/FlatCAMGUI.py:1459 +#: flatcamGUI/FlatCAMGUI.py:1471 msgid "Open Preferences Window" msgstr "Deschide Preferințe" -#: flatcamGUI/FlatCAMGUI.py:1460 +#: flatcamGUI/FlatCAMGUI.py:1472 msgid "Rotate by 90 degree CCW" msgstr "Roteste cu 90 grade CCW" -#: flatcamGUI/FlatCAMGUI.py:1460 +#: flatcamGUI/FlatCAMGUI.py:1472 msgid "Run a Script" msgstr "Rulează TCL script" -#: flatcamGUI/FlatCAMGUI.py:1460 +#: flatcamGUI/FlatCAMGUI.py:1472 msgid "Toggle the workspace" msgstr "Comută Suprafata de lucru" -#: flatcamGUI/FlatCAMGUI.py:1460 +#: flatcamGUI/FlatCAMGUI.py:1472 msgid "Skew on X axis" msgstr "Deformare pe axa X" -#: flatcamGUI/FlatCAMGUI.py:1461 +#: flatcamGUI/FlatCAMGUI.py:1473 msgid "Skew on Y axis" msgstr "Deformare pe axa Y" -#: flatcamGUI/FlatCAMGUI.py:1463 +#: flatcamGUI/FlatCAMGUI.py:1475 msgid "2-Sided PCB Tool" msgstr "Unealta 2-fețe" -#: flatcamGUI/FlatCAMGUI.py:1463 +#: flatcamGUI/FlatCAMGUI.py:1475 msgid "Transformations Tool" msgstr "Unealta Transformări" -#: flatcamGUI/FlatCAMGUI.py:1464 +#: flatcamGUI/FlatCAMGUI.py:1476 msgid "Solder Paste Dispensing Tool" msgstr "Unealta DispensorPF" -#: flatcamGUI/FlatCAMGUI.py:1465 +#: flatcamGUI/FlatCAMGUI.py:1477 msgid "Film PCB Tool" msgstr "Unealta Film" -#: flatcamGUI/FlatCAMGUI.py:1465 +#: flatcamGUI/FlatCAMGUI.py:1477 msgid "Non-Copper Clearing Tool" msgstr "Curățăre Non-Cupru" -#: flatcamGUI/FlatCAMGUI.py:1466 +#: flatcamGUI/FlatCAMGUI.py:1478 msgid "Paint Area Tool" msgstr "Unealta Paint" -#: flatcamGUI/FlatCAMGUI.py:1466 +#: flatcamGUI/FlatCAMGUI.py:1478 msgid "Rules Check Tool" msgstr "Unealta Verificari Reguli" -#: flatcamGUI/FlatCAMGUI.py:1467 +#: flatcamGUI/FlatCAMGUI.py:1479 msgid "View File Source" msgstr "Vizualiz. Cod Sursă" -#: flatcamGUI/FlatCAMGUI.py:1468 +#: flatcamGUI/FlatCAMGUI.py:1480 msgid "Cutout PCB Tool" msgstr "Unealta Decupare" -#: flatcamGUI/FlatCAMGUI.py:1468 +#: flatcamGUI/FlatCAMGUI.py:1480 msgid "Enable all Plots" msgstr "Activează Afișare pt Tot" -#: flatcamGUI/FlatCAMGUI.py:1468 +#: flatcamGUI/FlatCAMGUI.py:1480 msgid "Disable all Plots" msgstr "Dezactivează Afișare pt Tot" -#: flatcamGUI/FlatCAMGUI.py:1468 +#: flatcamGUI/FlatCAMGUI.py:1480 msgid "Disable Non-selected Plots" msgstr "Dezactivează ne-selectate" -#: flatcamGUI/FlatCAMGUI.py:1469 +#: flatcamGUI/FlatCAMGUI.py:1481 msgid "Toggle Full Screen" msgstr "Comută FullScreen" -#: flatcamGUI/FlatCAMGUI.py:1472 +#: flatcamGUI/FlatCAMGUI.py:1484 msgid "Abort current task (gracefully)" msgstr "Renutna la task" -#: flatcamGUI/FlatCAMGUI.py:1475 +#: flatcamGUI/FlatCAMGUI.py:1487 msgid "Open Online Manual" msgstr "Deschide Manualul Online" -#: flatcamGUI/FlatCAMGUI.py:1476 +#: flatcamGUI/FlatCAMGUI.py:1488 msgid "Open Online Tutorials" msgstr "Deschide Tutoriale Online" -#: flatcamGUI/FlatCAMGUI.py:1476 +#: flatcamGUI/FlatCAMGUI.py:1488 msgid "Refresh Plots" msgstr "Improspatare Afișare" -#: flatcamGUI/FlatCAMGUI.py:1476 flatcamTools/ToolSolderPaste.py:503 +#: flatcamGUI/FlatCAMGUI.py:1488 flatcamTools/ToolSolderPaste.py:503 msgid "Delete Object" msgstr "Șterge Obiectul" -#: flatcamGUI/FlatCAMGUI.py:1476 +#: flatcamGUI/FlatCAMGUI.py:1488 msgid "Alternate: Delete Tool" msgstr "Alternativ: Șterge Unealta" -#: flatcamGUI/FlatCAMGUI.py:1477 +#: flatcamGUI/FlatCAMGUI.py:1489 msgid "(left to Key_1)Toogle Notebook Area (Left Side)" msgstr "(in stanga tasta 1) Comuta aria Notebook (partea stanga)" -#: flatcamGUI/FlatCAMGUI.py:1477 +#: flatcamGUI/FlatCAMGUI.py:1489 msgid "En(Dis)able Obj Plot" msgstr "(Dez)activează Afișare" -#: flatcamGUI/FlatCAMGUI.py:1478 +#: flatcamGUI/FlatCAMGUI.py:1490 msgid "Deselects all objects" msgstr "Deselectează toate obiectele" -#: flatcamGUI/FlatCAMGUI.py:1492 +#: flatcamGUI/FlatCAMGUI.py:1504 msgid "Editor Shortcut list" msgstr "Lista de shortcut-uri" -#: flatcamGUI/FlatCAMGUI.py:1646 +#: flatcamGUI/FlatCAMGUI.py:1658 msgid "GEOMETRY EDITOR" msgstr "EDITOR GEOMETRIE" -#: flatcamGUI/FlatCAMGUI.py:1646 +#: flatcamGUI/FlatCAMGUI.py:1658 msgid "Draw an Arc" msgstr "Deseneaza un Arc" -#: flatcamGUI/FlatCAMGUI.py:1646 +#: flatcamGUI/FlatCAMGUI.py:1658 msgid "Copy Geo Item" msgstr "Copiază Geo" -#: flatcamGUI/FlatCAMGUI.py:1647 +#: flatcamGUI/FlatCAMGUI.py:1659 msgid "Within Add Arc will toogle the ARC direction: CW or CCW" msgstr "In cadrul 'Aadauga Arc' va comuta intre directiile arcului: CW sau CCW" -#: flatcamGUI/FlatCAMGUI.py:1647 +#: flatcamGUI/FlatCAMGUI.py:1659 msgid "Polygon Intersection Tool" msgstr "Unealta Intersecţie Poligoane" -#: flatcamGUI/FlatCAMGUI.py:1648 +#: flatcamGUI/FlatCAMGUI.py:1660 msgid "Geo Paint Tool" msgstr "Unealta Paint Geo" -#: flatcamGUI/FlatCAMGUI.py:1648 flatcamGUI/FlatCAMGUI.py:1737 -#: flatcamGUI/FlatCAMGUI.py:1857 +#: flatcamGUI/FlatCAMGUI.py:1660 flatcamGUI/FlatCAMGUI.py:1749 +#: flatcamGUI/FlatCAMGUI.py:1869 msgid "Jump to Location (x, y)" msgstr "Sari la Locaţia (x, y)" -#: flatcamGUI/FlatCAMGUI.py:1648 +#: flatcamGUI/FlatCAMGUI.py:1660 msgid "Toggle Corner Snap" msgstr "Comută lipire colt" -#: flatcamGUI/FlatCAMGUI.py:1648 +#: flatcamGUI/FlatCAMGUI.py:1660 msgid "Move Geo Item" msgstr "Muta El. Geo" -#: flatcamGUI/FlatCAMGUI.py:1649 +#: flatcamGUI/FlatCAMGUI.py:1661 msgid "Within Add Arc will cycle through the ARC modes" msgstr "In cadrul 'Adauga Arc' va trece circular prin tipurile de Arc" -#: flatcamGUI/FlatCAMGUI.py:1649 +#: flatcamGUI/FlatCAMGUI.py:1661 msgid "Draw a Polygon" msgstr "Deseneaza un Poligon" -#: flatcamGUI/FlatCAMGUI.py:1649 +#: flatcamGUI/FlatCAMGUI.py:1661 msgid "Draw a Circle" msgstr "Deseneaza un Cerc" -#: flatcamGUI/FlatCAMGUI.py:1650 +#: flatcamGUI/FlatCAMGUI.py:1662 msgid "Draw a Path" msgstr "Deseneaza un Traseu" -#: flatcamGUI/FlatCAMGUI.py:1650 +#: flatcamGUI/FlatCAMGUI.py:1662 msgid "Draw Rectangle" msgstr "Deseneaza un Patrulater" -#: flatcamGUI/FlatCAMGUI.py:1650 +#: flatcamGUI/FlatCAMGUI.py:1662 msgid "Polygon Subtraction Tool" msgstr "Unealta Substracţie Poligoane" -#: flatcamGUI/FlatCAMGUI.py:1650 +#: flatcamGUI/FlatCAMGUI.py:1662 msgid "Add Text Tool" msgstr "Unealta Adaugare Text" -#: flatcamGUI/FlatCAMGUI.py:1651 +#: flatcamGUI/FlatCAMGUI.py:1663 msgid "Polygon Union Tool" msgstr "Unealta Uniune Poligoane" -#: flatcamGUI/FlatCAMGUI.py:1651 +#: flatcamGUI/FlatCAMGUI.py:1663 msgid "Flip shape on X axis" msgstr "Oglindește pe axa X" -#: flatcamGUI/FlatCAMGUI.py:1651 +#: flatcamGUI/FlatCAMGUI.py:1663 msgid "Flip shape on Y axis" msgstr "Oglindește pe axa Y" -#: flatcamGUI/FlatCAMGUI.py:1652 +#: flatcamGUI/FlatCAMGUI.py:1664 msgid "Skew shape on X axis" msgstr "Deformare pe axa X" -#: flatcamGUI/FlatCAMGUI.py:1652 +#: flatcamGUI/FlatCAMGUI.py:1664 msgid "Skew shape on Y axis" msgstr "Deformare pe axa Y" -#: flatcamGUI/FlatCAMGUI.py:1652 +#: flatcamGUI/FlatCAMGUI.py:1664 msgid "Editor Transformation Tool" msgstr "Unealta Transformare in Editor" -#: flatcamGUI/FlatCAMGUI.py:1653 +#: flatcamGUI/FlatCAMGUI.py:1665 msgid "Offset shape on X axis" msgstr "Ofset pe axa X" -#: flatcamGUI/FlatCAMGUI.py:1653 +#: flatcamGUI/FlatCAMGUI.py:1665 msgid "Offset shape on Y axis" msgstr "Ofset pe axa Y" -#: flatcamGUI/FlatCAMGUI.py:1654 flatcamGUI/FlatCAMGUI.py:1740 -#: flatcamGUI/FlatCAMGUI.py:1862 +#: flatcamGUI/FlatCAMGUI.py:1666 flatcamGUI/FlatCAMGUI.py:1752 +#: flatcamGUI/FlatCAMGUI.py:1874 msgid "Save Object and Exit Editor" msgstr "Salvează Obiectul și inchide Editorul" -#: flatcamGUI/FlatCAMGUI.py:1654 +#: flatcamGUI/FlatCAMGUI.py:1666 msgid "Polygon Cut Tool" msgstr "Unealta Taiere Poligoane" -#: flatcamGUI/FlatCAMGUI.py:1655 +#: flatcamGUI/FlatCAMGUI.py:1667 msgid "Rotate Geometry" msgstr "Roteste Geometrie" -#: flatcamGUI/FlatCAMGUI.py:1655 +#: flatcamGUI/FlatCAMGUI.py:1667 msgid "Finish drawing for certain tools" msgstr "Termina de desenat (pt anumite unelte)" -#: flatcamGUI/FlatCAMGUI.py:1655 flatcamGUI/FlatCAMGUI.py:1740 -#: flatcamGUI/FlatCAMGUI.py:1860 +#: flatcamGUI/FlatCAMGUI.py:1667 flatcamGUI/FlatCAMGUI.py:1752 +#: flatcamGUI/FlatCAMGUI.py:1872 msgid "Abort and return to Select" msgstr "Renutna si intoarce-te la Selectie" -#: flatcamGUI/FlatCAMGUI.py:1656 flatcamGUI/FlatCAMGUI.py:2250 +#: flatcamGUI/FlatCAMGUI.py:1668 flatcamGUI/FlatCAMGUI.py:2263 msgid "Delete Shape" msgstr "Șterge forme geo" -#: flatcamGUI/FlatCAMGUI.py:1736 +#: flatcamGUI/FlatCAMGUI.py:1748 msgid "EXCELLON EDITOR" msgstr "EDITOR EXCELLON" -#: flatcamGUI/FlatCAMGUI.py:1736 +#: flatcamGUI/FlatCAMGUI.py:1748 msgid "Copy Drill(s)" msgstr "Copiaza Găurire" -#: flatcamGUI/FlatCAMGUI.py:1736 flatcamGUI/FlatCAMGUI.py:1945 +#: flatcamGUI/FlatCAMGUI.py:1748 flatcamGUI/FlatCAMGUI.py:1957 msgid "Add Drill" msgstr "Adaugă găurire" -#: flatcamGUI/FlatCAMGUI.py:1737 +#: flatcamGUI/FlatCAMGUI.py:1749 msgid "Move Drill(s)" msgstr "Muta Găuri" -#: flatcamGUI/FlatCAMGUI.py:1738 +#: flatcamGUI/FlatCAMGUI.py:1750 msgid "Add a new Tool" msgstr "Adaugă Unealta Noua" -#: flatcamGUI/FlatCAMGUI.py:1739 +#: flatcamGUI/FlatCAMGUI.py:1751 msgid "Delete Drill(s)" msgstr "Șterge Găuri" -#: flatcamGUI/FlatCAMGUI.py:1739 +#: flatcamGUI/FlatCAMGUI.py:1751 msgid "Alternate: Delete Tool(s)" msgstr "Alternativ: Șterge Unealta" -#: flatcamGUI/FlatCAMGUI.py:1856 +#: flatcamGUI/FlatCAMGUI.py:1868 msgid "GERBER EDITOR" msgstr "EDITOR GERBER" -#: flatcamGUI/FlatCAMGUI.py:1856 +#: flatcamGUI/FlatCAMGUI.py:1868 msgid "Add Disc" msgstr "Adaugă Disc" -#: flatcamGUI/FlatCAMGUI.py:1856 +#: flatcamGUI/FlatCAMGUI.py:1868 msgid "Add SemiDisc" msgstr "Adaugă SemiDisc" -#: flatcamGUI/FlatCAMGUI.py:1858 +#: flatcamGUI/FlatCAMGUI.py:1870 msgid "Within Track & Region Tools will cycle in REVERSE the bend modes" msgstr "" "In cadrul uneltelor Traseu si Regiune va trece circular in Revers prin " "modurile de indoire" -#: flatcamGUI/FlatCAMGUI.py:1859 +#: flatcamGUI/FlatCAMGUI.py:1871 msgid "Within Track & Region Tools will cycle FORWARD the bend modes" msgstr "" "In cadrul uneltelor Traseu si Regiune va trece circular in Avans prin " "modurile de indoire" -#: flatcamGUI/FlatCAMGUI.py:1860 +#: flatcamGUI/FlatCAMGUI.py:1872 msgid "Alternate: Delete Apertures" msgstr "Alternativ: Șterge Apertură" -#: flatcamGUI/FlatCAMGUI.py:1861 +#: flatcamGUI/FlatCAMGUI.py:1873 msgid "Eraser Tool" msgstr "Unealta Stergere" -#: flatcamGUI/FlatCAMGUI.py:1862 flatcamGUI/PreferencesUI.py:2038 +#: flatcamGUI/FlatCAMGUI.py:1874 flatcamGUI/PreferencesUI.py:2038 msgid "Mark Area Tool" msgstr "Unealta de Marc. Arie" -#: flatcamGUI/FlatCAMGUI.py:1862 +#: flatcamGUI/FlatCAMGUI.py:1874 msgid "Poligonize Tool" msgstr "Unealta Poligonizare" -#: flatcamGUI/FlatCAMGUI.py:1862 +#: flatcamGUI/FlatCAMGUI.py:1874 msgid "Transformation Tool" msgstr "Unealta Transformare" -#: flatcamGUI/FlatCAMGUI.py:1878 +#: flatcamGUI/FlatCAMGUI.py:1890 msgid "Toggle Visibility" msgstr "Comută Vizibilitate" -#: flatcamGUI/FlatCAMGUI.py:1882 +#: flatcamGUI/FlatCAMGUI.py:1894 msgid "New" msgstr "Nou" -#: flatcamGUI/FlatCAMGUI.py:1883 flatcamTools/ToolCalibration.py:569 +#: flatcamGUI/FlatCAMGUI.py:1895 flatcamTools/ToolCalibration.py:634 msgid "Geometry" msgstr "Geometrie" -#: flatcamGUI/FlatCAMGUI.py:1885 flatcamTools/ToolCalibration.py:90 -#: flatcamTools/ToolCalibration.py:569 flatcamTools/ToolFilm.py:359 +#: flatcamGUI/FlatCAMGUI.py:1897 flatcamTools/ToolCalibration.py:197 +#: flatcamTools/ToolCalibration.py:634 flatcamTools/ToolFilm.py:359 msgid "Excellon" msgstr "Excellon" -#: flatcamGUI/FlatCAMGUI.py:1890 +#: flatcamGUI/FlatCAMGUI.py:1902 msgid "Grids" msgstr "Grid-uri" -#: flatcamGUI/FlatCAMGUI.py:1894 +#: flatcamGUI/FlatCAMGUI.py:1906 msgid "Clear Plot" msgstr "Șterge Afișare" -#: flatcamGUI/FlatCAMGUI.py:1895 +#: flatcamGUI/FlatCAMGUI.py:1907 msgid "Replot" msgstr "Reafișare" -#: flatcamGUI/FlatCAMGUI.py:1898 +#: flatcamGUI/FlatCAMGUI.py:1910 msgid "Geo Editor" msgstr "Editor Geometrii" -#: flatcamGUI/FlatCAMGUI.py:1899 +#: flatcamGUI/FlatCAMGUI.py:1911 msgid "Path" msgstr "Pe cale" -#: flatcamGUI/FlatCAMGUI.py:1900 +#: flatcamGUI/FlatCAMGUI.py:1912 msgid "Rectangle" msgstr "Patrulater" -#: flatcamGUI/FlatCAMGUI.py:1902 +#: flatcamGUI/FlatCAMGUI.py:1914 msgid "Circle" msgstr "Cerc" -#: flatcamGUI/FlatCAMGUI.py:1903 +#: flatcamGUI/FlatCAMGUI.py:1915 msgid "Polygon" msgstr "Poligon" -#: flatcamGUI/FlatCAMGUI.py:1904 +#: flatcamGUI/FlatCAMGUI.py:1916 msgid "Arc" msgstr "Arc" -#: flatcamGUI/FlatCAMGUI.py:1913 +#: flatcamGUI/FlatCAMGUI.py:1925 msgid "Union" msgstr "Uniune" -#: flatcamGUI/FlatCAMGUI.py:1914 +#: flatcamGUI/FlatCAMGUI.py:1926 msgid "Intersection" msgstr "Intersecţie" -#: flatcamGUI/FlatCAMGUI.py:1915 +#: flatcamGUI/FlatCAMGUI.py:1927 msgid "Subtraction" msgstr "Scădere" -#: flatcamGUI/FlatCAMGUI.py:1916 flatcamGUI/ObjectUI.py:1679 -#: flatcamGUI/PreferencesUI.py:3625 +#: flatcamGUI/FlatCAMGUI.py:1928 flatcamGUI/ObjectUI.py:1761 +#: flatcamGUI/PreferencesUI.py:3643 msgid "Cut" msgstr "Tăiere" -#: flatcamGUI/FlatCAMGUI.py:1923 +#: flatcamGUI/FlatCAMGUI.py:1935 msgid "Pad" msgstr "Pad" -#: flatcamGUI/FlatCAMGUI.py:1924 +#: flatcamGUI/FlatCAMGUI.py:1936 msgid "Pad Array" msgstr "Arie de paduri" -#: flatcamGUI/FlatCAMGUI.py:1927 +#: flatcamGUI/FlatCAMGUI.py:1939 msgid "Track" msgstr "Traseu" -#: flatcamGUI/FlatCAMGUI.py:1928 +#: flatcamGUI/FlatCAMGUI.py:1940 msgid "Region" msgstr "Regiune" -#: flatcamGUI/FlatCAMGUI.py:1944 +#: flatcamGUI/FlatCAMGUI.py:1956 msgid "Exc Editor" msgstr "Editor EXC" -#: flatcamGUI/FlatCAMGUI.py:1974 +#: flatcamGUI/FlatCAMGUI.py:1986 msgid "" "Relative neasurement.\n" "Reference is last click position" @@ -6904,7 +6881,7 @@ msgstr "" "Măsurătoare relativă.\n" "Referința este poziţia ultimului click pe canvas" -#: flatcamGUI/FlatCAMGUI.py:1980 +#: flatcamGUI/FlatCAMGUI.py:1992 msgid "" "Absolute neasurement.\n" "Reference is (X=0, Y= 0) position" @@ -6912,27 +6889,27 @@ msgstr "" "Măsurătoare absolută.\n" "Referința este originea (0, 0)" -#: flatcamGUI/FlatCAMGUI.py:2087 +#: flatcamGUI/FlatCAMGUI.py:2099 msgid "Lock Toolbars" msgstr "Blochează Toolbar-uri" -#: flatcamGUI/FlatCAMGUI.py:2180 +#: flatcamGUI/FlatCAMGUI.py:2192 msgid "&Cutout Tool" msgstr "Unealta Decupare" -#: flatcamGUI/FlatCAMGUI.py:2221 +#: flatcamGUI/FlatCAMGUI.py:2234 msgid "Select 'Esc'" msgstr "Select" -#: flatcamGUI/FlatCAMGUI.py:2248 +#: flatcamGUI/FlatCAMGUI.py:2261 msgid "Copy Objects" msgstr "Copiază Obiecte" -#: flatcamGUI/FlatCAMGUI.py:2255 +#: flatcamGUI/FlatCAMGUI.py:2268 msgid "Move Objects" msgstr "Mută Obiecte" -#: flatcamGUI/FlatCAMGUI.py:2800 +#: flatcamGUI/FlatCAMGUI.py:2813 msgid "" "Please first select a geometry item to be cutted\n" "then select the geometry item that will be cutted\n" @@ -6943,12 +6920,12 @@ msgstr "" "apoi selectează forma geo. tăietoare. La final apasă tasta ~X~ sau\n" "butonul corespunzator din Toolbar." -#: flatcamGUI/FlatCAMGUI.py:2807 flatcamGUI/FlatCAMGUI.py:2951 -#: flatcamGUI/FlatCAMGUI.py:3010 flatcamGUI/FlatCAMGUI.py:3030 +#: flatcamGUI/FlatCAMGUI.py:2820 flatcamGUI/FlatCAMGUI.py:2964 +#: flatcamGUI/FlatCAMGUI.py:3023 flatcamGUI/FlatCAMGUI.py:3043 msgid "Warning" msgstr "Atenţie" -#: flatcamGUI/FlatCAMGUI.py:2946 +#: flatcamGUI/FlatCAMGUI.py:2959 msgid "" "Please select geometry items \n" "on which to perform Intersection Tool." @@ -6956,7 +6933,7 @@ msgstr "" "Selectează forma geometrică asupra căreia să se\n" "aplice Unealta Intersecţie." -#: flatcamGUI/FlatCAMGUI.py:3005 +#: flatcamGUI/FlatCAMGUI.py:3018 msgid "" "Please select geometry items \n" "on which to perform Substraction Tool." @@ -6964,7 +6941,7 @@ msgstr "" "Selectează forma geometrică asupra căreia să se\n" "aplice Unealta Substracţie." -#: flatcamGUI/FlatCAMGUI.py:3025 +#: flatcamGUI/FlatCAMGUI.py:3038 msgid "" "Please select geometry items \n" "on which to perform union." @@ -6972,52 +6949,52 @@ msgstr "" "Selectează forma geometrică asupra căreia să se\n" "aplice Unealta Uniune." -#: flatcamGUI/FlatCAMGUI.py:3109 flatcamGUI/FlatCAMGUI.py:3327 +#: flatcamGUI/FlatCAMGUI.py:3122 flatcamGUI/FlatCAMGUI.py:3340 msgid "Cancelled. Nothing selected to delete." msgstr "Anulat. Nimic nu este selectat pentru ștergere." -#: flatcamGUI/FlatCAMGUI.py:3194 flatcamGUI/FlatCAMGUI.py:3395 +#: flatcamGUI/FlatCAMGUI.py:3207 flatcamGUI/FlatCAMGUI.py:3408 msgid "Cancelled. Nothing selected to copy." msgstr "Anulat. Nimic nu este selectat pentru copiere." -#: flatcamGUI/FlatCAMGUI.py:3241 flatcamGUI/FlatCAMGUI.py:3442 +#: flatcamGUI/FlatCAMGUI.py:3254 flatcamGUI/FlatCAMGUI.py:3455 msgid "Cancelled. Nothing selected to move." msgstr "Anulat. Nimic nu este selectat pentru mutare." -#: flatcamGUI/FlatCAMGUI.py:3468 +#: flatcamGUI/FlatCAMGUI.py:3481 msgid "New Tool ..." msgstr "O noua Unealtă ..." -#: flatcamGUI/FlatCAMGUI.py:3469 flatcamTools/ToolNonCopperClear.py:588 -#: flatcamTools/ToolPaint.py:498 flatcamTools/ToolSolderPaste.py:554 +#: flatcamGUI/FlatCAMGUI.py:3482 flatcamTools/ToolNonCopperClear.py:588 +#: flatcamTools/ToolPaint.py:499 flatcamTools/ToolSolderPaste.py:554 msgid "Enter a Tool Diameter" msgstr "Introduceti un Diametru de Unealtă" -#: flatcamGUI/FlatCAMGUI.py:3481 +#: flatcamGUI/FlatCAMGUI.py:3494 msgid "Adding Tool cancelled ..." msgstr "Adăugarea unei unelte anulată..." -#: flatcamGUI/FlatCAMGUI.py:3524 +#: flatcamGUI/FlatCAMGUI.py:3537 msgid "Distance Tool exit..." msgstr "Măsurătoarea s-a terminat ..." -#: flatcamGUI/FlatCAMGUI.py:3734 flatcamGUI/FlatCAMGUI.py:3741 +#: flatcamGUI/FlatCAMGUI.py:3747 flatcamGUI/FlatCAMGUI.py:3754 msgid "Idle." msgstr "Inactiv." -#: flatcamGUI/FlatCAMGUI.py:3770 +#: flatcamGUI/FlatCAMGUI.py:3783 msgid "Application started ..." msgstr "Aplicaţia a pornit ..." -#: flatcamGUI/FlatCAMGUI.py:3771 +#: flatcamGUI/FlatCAMGUI.py:3784 msgid "Hello!" msgstr "Bună!" -#: flatcamGUI/FlatCAMGUI.py:3827 +#: flatcamGUI/FlatCAMGUI.py:3840 msgid "Open Project ..." msgstr "Încarcă Project ..." -#: flatcamGUI/FlatCAMGUI.py:3852 +#: flatcamGUI/FlatCAMGUI.py:3865 msgid "Exit" msgstr "Iesiere" @@ -7054,88 +7031,92 @@ msgstr "Factor" #: flatcamGUI/ObjectUI.py:102 msgid "" "Factor by which to multiply\n" -"geometric features of this object." +"geometric features of this object.\n" +"Expressions are allowed. E.g: 1/25.4" msgstr "" "Factor cu care se multiplica \n" "caracteristicile geometrice ale\n" -"acestui obiect." +"acestui obiect.\n" +"Expresiile sunt permise. De ex: 1 / 25.4" -#: flatcamGUI/ObjectUI.py:115 +#: flatcamGUI/ObjectUI.py:112 msgid "Perform scaling operation." msgstr "Efectuează operatia de scalare." -#: flatcamGUI/ObjectUI.py:126 +#: flatcamGUI/ObjectUI.py:123 msgid "Change the position of this object." msgstr "Schimbă poziţia acestui obiect." -#: flatcamGUI/ObjectUI.py:131 +#: flatcamGUI/ObjectUI.py:128 msgid "Vector" msgstr "Vector" -#: flatcamGUI/ObjectUI.py:133 +#: flatcamGUI/ObjectUI.py:130 msgid "" "Amount by which to move the object\n" -"in the x and y axes in (x, y) format." +"in the x and y axes in (x, y) format.\n" +"Expressions are allowed. E.g: (1/3.2, 0.5*3)" msgstr "" "Valoare cu cat să se deplaseze obiectul\n" -"pe axele X și /sau Y in formatul (x,y)." +"pe axele X și /sau Y in formatul (x,y).\n" +"Expresiile sunt permise. De ex: (1/3.2, 0.5*3)" -#: flatcamGUI/ObjectUI.py:141 +#: flatcamGUI/ObjectUI.py:139 msgid "Perform the offset operation." msgstr "Efectuează operația de Ofset." -#: flatcamGUI/ObjectUI.py:158 +#: flatcamGUI/ObjectUI.py:156 msgid "Gerber Object" msgstr "Obiect Gerber" -#: flatcamGUI/ObjectUI.py:168 flatcamGUI/ObjectUI.py:685 -#: flatcamGUI/ObjectUI.py:1083 flatcamGUI/ObjectUI.py:1663 +#: flatcamGUI/ObjectUI.py:171 flatcamGUI/ObjectUI.py:743 +#: flatcamGUI/ObjectUI.py:1166 flatcamGUI/ObjectUI.py:1855 +#: flatcamGUI/PreferencesUI.py:1360 flatcamGUI/PreferencesUI.py:3118 +#: flatcamGUI/PreferencesUI.py:3628 +msgid "Plot (show) this object." +msgstr "Afisează (arata) acest obiect." + +#: flatcamGUI/ObjectUI.py:173 flatcamGUI/ObjectUI.py:741 +#: flatcamGUI/PreferencesUI.py:1358 flatcamGUI/PreferencesUI.py:2084 +#: flatcamGUI/PreferencesUI.py:3116 +msgid "Plot" +msgstr "Afisează" + +#: flatcamGUI/ObjectUI.py:178 flatcamGUI/ObjectUI.py:702 +#: flatcamGUI/ObjectUI.py:1120 flatcamGUI/ObjectUI.py:1745 #: flatcamGUI/PreferencesUI.py:1337 flatcamGUI/PreferencesUI.py:2078 -#: flatcamGUI/PreferencesUI.py:3110 flatcamGUI/PreferencesUI.py:3599 +#: flatcamGUI/PreferencesUI.py:3112 flatcamGUI/PreferencesUI.py:3617 msgid "Plot Options" msgstr "Opțiuni afișare" -#: flatcamGUI/ObjectUI.py:174 flatcamGUI/ObjectUI.py:686 +#: flatcamGUI/ObjectUI.py:184 flatcamGUI/ObjectUI.py:703 #: flatcamGUI/PreferencesUI.py:1344 flatcamGUI/PreferencesUI.py:2090 -#: flatcamGUI/PreferencesUI.py:6135 flatcamTools/ToolCopperThieving.py:190 +#: flatcamGUI/PreferencesUI.py:6153 flatcamTools/ToolCopperThieving.py:190 msgid "Solid" msgstr "Solid" -#: flatcamGUI/ObjectUI.py:176 flatcamGUI/PreferencesUI.py:1346 +#: flatcamGUI/ObjectUI.py:186 flatcamGUI/PreferencesUI.py:1346 msgid "Solid color polygons." msgstr "Poligoane color solide." -#: flatcamGUI/ObjectUI.py:182 flatcamGUI/PreferencesUI.py:1351 -msgid "M-Color" -msgstr "M-Color" +#: flatcamGUI/ObjectUI.py:192 +msgid "Multi-Color" +msgstr "Multicolor" -#: flatcamGUI/ObjectUI.py:184 flatcamGUI/PreferencesUI.py:1353 +#: flatcamGUI/ObjectUI.py:194 flatcamGUI/PreferencesUI.py:1353 msgid "Draw polygons in different colors." msgstr "" "Desenează poligoanele Gerber din multiple culori\n" "alese in mod aleator." -#: flatcamGUI/ObjectUI.py:190 flatcamGUI/ObjectUI.py:724 -#: flatcamGUI/PreferencesUI.py:1358 flatcamGUI/PreferencesUI.py:2084 -#: flatcamGUI/PreferencesUI.py:3114 -msgid "Plot" -msgstr "Afisează" - -#: flatcamGUI/ObjectUI.py:192 flatcamGUI/ObjectUI.py:726 -#: flatcamGUI/ObjectUI.py:1129 flatcamGUI/ObjectUI.py:1773 -#: flatcamGUI/PreferencesUI.py:1360 flatcamGUI/PreferencesUI.py:3116 -#: flatcamGUI/PreferencesUI.py:3610 -msgid "Plot (show) this object." -msgstr "Afisează (arata) acest obiect." - -#: flatcamGUI/ObjectUI.py:200 flatcamGUI/ObjectUI.py:697 -#: flatcamGUI/ObjectUI.py:1089 flatcamGUI/ObjectUI.py:1693 -#: flatcamGUI/ObjectUI.py:1977 flatcamGUI/ObjectUI.py:2032 -#: flatcamTools/ToolCalibration.py:125 flatcamTools/ToolFiducials.py:73 +#: flatcamGUI/ObjectUI.py:202 flatcamGUI/ObjectUI.py:714 +#: flatcamGUI/ObjectUI.py:1126 flatcamGUI/ObjectUI.py:1775 +#: flatcamGUI/ObjectUI.py:2067 flatcamGUI/ObjectUI.py:2122 +#: flatcamTools/ToolCalibration.py:235 flatcamTools/ToolFiducials.py:73 msgid "Name" msgstr "Nume" -#: flatcamGUI/ObjectUI.py:221 +#: flatcamGUI/ObjectUI.py:223 msgid "" "Toggle the display of the Gerber Apertures Table.\n" "When unchecked, it will delete all mark shapes\n" @@ -7145,11 +7126,11 @@ msgstr "" "Când se debifează, toate marcajele aperturilor\n" "care sutn curent afisate, vor fi șterse." -#: flatcamGUI/ObjectUI.py:231 +#: flatcamGUI/ObjectUI.py:233 msgid "Mark All" msgstr "Marc. Toate" -#: flatcamGUI/ObjectUI.py:233 +#: flatcamGUI/ObjectUI.py:235 msgid "" "When checked it will display all the apertures.\n" "When unchecked, it will delete all mark shapes\n" @@ -7158,15 +7139,15 @@ 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:261 +#: flatcamGUI/ObjectUI.py:263 msgid "Mark the aperture instances on canvas." msgstr "Marchează aperturile pe canvas." -#: flatcamGUI/ObjectUI.py:270 flatcamGUI/PreferencesUI.py:1438 +#: flatcamGUI/ObjectUI.py:275 flatcamGUI/PreferencesUI.py:1438 msgid "Isolation Routing" msgstr "Izolare" -#: flatcamGUI/ObjectUI.py:272 flatcamGUI/PreferencesUI.py:1440 +#: flatcamGUI/ObjectUI.py:277 flatcamGUI/PreferencesUI.py:1440 msgid "" "Create a Geometry object with\n" "toolpaths to cut outside polygons." @@ -7175,7 +7156,7 @@ msgstr "" "care să fie taiate in afara poligoanelor,\n" "urmărindu-le conturul." -#: flatcamGUI/ObjectUI.py:290 flatcamGUI/PreferencesUI.py:1628 +#: flatcamGUI/ObjectUI.py:295 flatcamGUI/PreferencesUI.py:1628 msgid "" "Choose what tool to use for Gerber isolation:\n" "'Circular' or 'V-shape'.\n" @@ -7187,34 +7168,32 @@ msgstr "" "Când este selectată „forma V”, atunci\n" "diametrul uneltei va depinde de adâncimea de tăiere aleasă." -#: flatcamGUI/ObjectUI.py:296 -#, fuzzy -#| msgid "V-shape" +#: flatcamGUI/ObjectUI.py:301 msgid "V-Shape" msgstr "Forma-V" -#: flatcamGUI/ObjectUI.py:302 flatcamGUI/ObjectUI.py:1298 -#: flatcamGUI/PreferencesUI.py:1640 flatcamGUI/PreferencesUI.py:3992 +#: flatcamGUI/ObjectUI.py:307 flatcamGUI/ObjectUI.py:1335 +#: flatcamGUI/PreferencesUI.py:1640 flatcamGUI/PreferencesUI.py:4010 #: flatcamTools/ToolNonCopperClear.py:231 msgid "V-Tip Dia" msgstr "V-dia" -#: flatcamGUI/ObjectUI.py:304 flatcamGUI/ObjectUI.py:1301 -#: flatcamGUI/PreferencesUI.py:1642 flatcamGUI/PreferencesUI.py:3994 +#: flatcamGUI/ObjectUI.py:309 flatcamGUI/ObjectUI.py:1338 +#: flatcamGUI/PreferencesUI.py:1642 flatcamGUI/PreferencesUI.py:4012 #: flatcamTools/ToolNonCopperClear.py:233 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:315 flatcamGUI/ObjectUI.py:1313 -#: flatcamGUI/PreferencesUI.py:1653 flatcamGUI/PreferencesUI.py:4004 +#: flatcamGUI/ObjectUI.py:320 flatcamGUI/ObjectUI.py:1350 +#: flatcamGUI/PreferencesUI.py:1653 flatcamGUI/PreferencesUI.py:4022 #: flatcamTools/ToolNonCopperClear.py:242 msgid "V-Tip Angle" msgstr "V-unghi" -#: flatcamGUI/ObjectUI.py:317 flatcamGUI/ObjectUI.py:1316 -#: flatcamGUI/PreferencesUI.py:1655 flatcamGUI/PreferencesUI.py:4006 +#: flatcamGUI/ObjectUI.py:322 flatcamGUI/ObjectUI.py:1353 +#: flatcamGUI/PreferencesUI.py:1655 flatcamGUI/PreferencesUI.py:4024 #: flatcamTools/ToolNonCopperClear.py:244 msgid "" "The tip angle for V-Shape Tool.\n" @@ -7223,9 +7202,9 @@ msgstr "" "Unghiul la vârf pentru unealta tip V-Shape. \n" "In grade." -#: flatcamGUI/ObjectUI.py:331 flatcamGUI/ObjectUI.py:1332 -#: flatcamGUI/PreferencesUI.py:1668 flatcamGUI/PreferencesUI.py:3179 -#: flatcamGUI/PreferencesUI.py:4275 flatcamTools/ToolCutOut.py:135 +#: flatcamGUI/ObjectUI.py:336 flatcamGUI/ObjectUI.py:1369 +#: flatcamGUI/PreferencesUI.py:1668 flatcamGUI/PreferencesUI.py:3181 +#: flatcamGUI/PreferencesUI.py:4293 flatcamTools/ToolCutOut.py:135 msgid "" "Cutting depth (negative)\n" "below the copper surface." @@ -7233,7 +7212,7 @@ msgstr "" "Adâncimea la care se taie sub suprafata de cupru.\n" "Valoare negativă." -#: flatcamGUI/ObjectUI.py:345 +#: flatcamGUI/ObjectUI.py:350 msgid "" "Diameter of the cutting tool.\n" "If you want to have an isolation path\n" @@ -7246,11 +7225,11 @@ msgstr "" "in interiorul poligonului Gerber (traseu), foloseşte\n" "o valoare negativă pt acest parametru." -#: flatcamGUI/ObjectUI.py:361 flatcamGUI/PreferencesUI.py:1462 +#: flatcamGUI/ObjectUI.py:366 flatcamGUI/PreferencesUI.py:1462 msgid "# Passes" msgstr "# Treceri" -#: flatcamGUI/ObjectUI.py:363 flatcamGUI/PreferencesUI.py:1464 +#: flatcamGUI/ObjectUI.py:368 flatcamGUI/PreferencesUI.py:1464 msgid "" "Width of the isolation gap in\n" "number (integer) of tool widths." @@ -7258,28 +7237,24 @@ msgstr "" "Lăţimea spatiului de izolare\n" "in număr intreg de grosimi ale uneltei." -#: flatcamGUI/ObjectUI.py:373 flatcamGUI/PreferencesUI.py:1474 +#: flatcamGUI/ObjectUI.py:378 flatcamGUI/PreferencesUI.py:1474 msgid "Pass overlap" msgstr "Suprapunere" -#: flatcamGUI/ObjectUI.py:375 flatcamGUI/PreferencesUI.py:1476 -#, fuzzy -#| msgid "" -#| "How much (fraction) of the tool\n" -#| "width to overlap each tool pass." +#: flatcamGUI/ObjectUI.py:380 flatcamGUI/PreferencesUI.py:1476 msgid "How much (fraction) of the tool width to overlap each tool pass." 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/ObjectUI.py:387 flatcamGUI/PreferencesUI.py:1501 -#: flatcamGUI/PreferencesUI.py:3576 flatcamGUI/PreferencesUI.py:4049 +#: flatcamGUI/ObjectUI.py:392 flatcamGUI/PreferencesUI.py:1501 +#: flatcamGUI/PreferencesUI.py:3594 flatcamGUI/PreferencesUI.py:4067 #: flatcamTools/ToolNonCopperClear.py:162 msgid "Milling Type" msgstr "Tip Frezare" -#: flatcamGUI/ObjectUI.py:389 flatcamGUI/PreferencesUI.py:1503 -#: flatcamGUI/PreferencesUI.py:3578 +#: flatcamGUI/ObjectUI.py:394 flatcamGUI/PreferencesUI.py:1503 +#: flatcamGUI/PreferencesUI.py:3596 msgid "" "Milling type:\n" "- climb / best for precision milling and to reduce tool usage\n" @@ -7290,31 +7265,29 @@ msgstr "" "uneltei\n" "- conventional -> pentru cazul când nu exista o compensare a 'backlash-ului'" -#: flatcamGUI/ObjectUI.py:393 flatcamGUI/PreferencesUI.py:1508 -#: flatcamGUI/PreferencesUI.py:3582 flatcamGUI/PreferencesUI.py:4056 +#: flatcamGUI/ObjectUI.py:398 flatcamGUI/PreferencesUI.py:1508 +#: flatcamGUI/PreferencesUI.py:3600 flatcamGUI/PreferencesUI.py:4074 #: flatcamTools/ToolNonCopperClear.py:169 msgid "Climb" msgstr "Urcare" -#: flatcamGUI/ObjectUI.py:394 -#, fuzzy -#| msgid "Conversion" -msgid "Conventional" -msgstr "Conversii" - #: flatcamGUI/ObjectUI.py:399 +msgid "Conventional" +msgstr "Convenţional" + +#: flatcamGUI/ObjectUI.py:404 msgid "Combine" msgstr "Combina" -#: flatcamGUI/ObjectUI.py:401 flatcamGUI/PreferencesUI.py:1515 +#: flatcamGUI/ObjectUI.py:406 flatcamGUI/PreferencesUI.py:1515 msgid "Combine all passes into one object" msgstr "Combina toate trecerile intr-un singur obiect" -#: flatcamGUI/ObjectUI.py:405 flatcamGUI/PreferencesUI.py:1607 +#: flatcamGUI/ObjectUI.py:410 flatcamGUI/PreferencesUI.py:1607 msgid "\"Follow\"" msgstr "\"Urmareste\"" -#: flatcamGUI/ObjectUI.py:406 flatcamGUI/PreferencesUI.py:1609 +#: flatcamGUI/ObjectUI.py:411 flatcamGUI/PreferencesUI.py:1609 msgid "" "Generate a 'Follow' geometry.\n" "This means that it will cut through\n" @@ -7324,11 +7297,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/ObjectUI.py:412 +#: flatcamGUI/ObjectUI.py:417 msgid "Except" msgstr "Exceptie" -#: flatcamGUI/ObjectUI.py:415 +#: flatcamGUI/ObjectUI.py:420 msgid "" "When the isolation geometry is generated,\n" "by checking this, the area of the object bellow\n" @@ -7338,12 +7311,12 @@ msgstr "" "prin bifarea aici, aria obiectului de mai jos va fi\n" "scăzută din geometrie de tip Izolare." -#: flatcamGUI/ObjectUI.py:437 flatcamTools/ToolNonCopperClear.py:82 +#: flatcamGUI/ObjectUI.py:442 flatcamTools/ToolNonCopperClear.py:82 #: flatcamTools/ToolPaint.py:85 msgid "Obj Type" msgstr "Tip obiect" -#: flatcamGUI/ObjectUI.py:439 +#: flatcamGUI/ObjectUI.py:444 msgid "" "Specify the type of object to be excepted from isolation.\n" "It can be of type: Gerber or Geometry.\n" @@ -7356,41 +7329,42 @@ msgstr "" "obiecte care vor aparea in combobox-ul\n" "numit >Obiect<." -#: flatcamGUI/ObjectUI.py:452 flatcamGUI/PreferencesUI.py:6435 -#: flatcamTools/ToolCalibration.py:79 flatcamTools/ToolNonCopperClear.py:100 +#: flatcamGUI/ObjectUI.py:457 flatcamGUI/PreferencesUI.py:6453 +#: flatcamTools/ToolCalibration.py:186 flatcamTools/ToolNonCopperClear.py:100 #: flatcamTools/ToolPaint.py:103 flatcamTools/ToolPanelize.py:81 #: flatcamTools/ToolPanelize.py:94 msgid "Object" msgstr "Obiect" -#: flatcamGUI/ObjectUI.py:453 +#: flatcamGUI/ObjectUI.py:458 msgid "Object whose area will be removed from isolation geometry." msgstr "" "Obiectul a cărui suprafată va fi indepărtată din geometria tip Izolare." -#: flatcamGUI/ObjectUI.py:460 flatcamGUI/PreferencesUI.py:1488 +#: flatcamGUI/ObjectUI.py:465 flatcamGUI/PreferencesUI.py:1488 msgid "Scope" -msgstr "" +msgstr "Domeniu" -#: flatcamGUI/ObjectUI.py:462 flatcamGUI/PreferencesUI.py:1490 +#: flatcamGUI/ObjectUI.py:467 flatcamGUI/PreferencesUI.py:1490 msgid "" "Isolation scope. Choose what to isolate:\n" "- 'All' -> Isolate all the polygons in the object\n" "- 'Selection' -> Isolate a selection of polygons." msgstr "" +"Domeniul de izolare. Alegeți ce să izolați:\n" +"- 'Toate' -> Izolați toate poligoanele din obiect\n" +"- 'Selecție' -> Izolați o selecție de poligoane." -#: flatcamGUI/ObjectUI.py:467 flatcamGUI/PreferencesUI.py:1495 -#: flatcamGUI/PreferencesUI.py:4585 flatcamTools/ToolPaint.py:300 +#: flatcamGUI/ObjectUI.py:472 flatcamGUI/PreferencesUI.py:1495 +#: flatcamGUI/PreferencesUI.py:4603 flatcamTools/ToolPaint.py:300 msgid "Selection" msgstr "Selecţie" -#: flatcamGUI/ObjectUI.py:475 flatcamGUI/PreferencesUI.py:1681 -#, fuzzy -#| msgid "Isolation Routing" +#: flatcamGUI/ObjectUI.py:480 flatcamGUI/PreferencesUI.py:1681 msgid "Isolation Type" -msgstr "Izolare" +msgstr "Tip de izolare" -#: flatcamGUI/ObjectUI.py:477 flatcamGUI/PreferencesUI.py:1683 +#: flatcamGUI/ObjectUI.py:482 flatcamGUI/PreferencesUI.py:1683 msgid "" "Choose how the isolation will be executed:\n" "- 'Full' -> complete isolation of polygons\n" @@ -7401,29 +7375,33 @@ msgid "" "isolation can be done only when there is an opening\n" "inside of the polygon (e.g polygon is a 'doughnut' shape)." msgstr "" +"Alegeți modul în care se va executa izolarea:\n" +"- 'Complet' -> izolarea completă a poligoanelor din obiect\n" +"- „Ext” -> se va izola doar la exterior\n" +"- „Int” -> se va izola doar pe interior\n" +"Izolarea „exterioară” este aproape întotdeauna posibilă\n" +"(cu instrumentul potrivit), dar izolarea\n" +"„Interior”se poate face numai atunci când există o deschidere\n" +"în interiorul poligonului (de exemplu, poligonul are o formă de „gogoașă”)." -#: flatcamGUI/ObjectUI.py:486 flatcamGUI/PreferencesUI.py:1692 +#: flatcamGUI/ObjectUI.py:491 flatcamGUI/PreferencesUI.py:1692 #: flatcamGUI/PreferencesUI.py:1708 msgid "Full" msgstr "Complet" -#: flatcamGUI/ObjectUI.py:487 -#, fuzzy -#| msgid "Exit" +#: flatcamGUI/ObjectUI.py:492 msgid "Ext" -msgstr "Iesiere" - -#: flatcamGUI/ObjectUI.py:488 -#, fuzzy -#| msgid "In" -msgid "Int" -msgstr "În" +msgstr "Ext" #: flatcamGUI/ObjectUI.py:493 +msgid "Int" +msgstr "Int" + +#: flatcamGUI/ObjectUI.py:498 msgid "Generate Isolation Geometry" msgstr "Creează Geometrie de Izolare" -#: flatcamGUI/ObjectUI.py:501 +#: flatcamGUI/ObjectUI.py:506 msgid "" "Create a Geometry object with toolpaths to cut \n" "isolation outside, inside or on both sides of the\n" @@ -7442,11 +7420,11 @@ msgstr "" "(traseu, zona etc) iar >in interior< inseamna efectiv in interiorul\n" "acelui elem. Gerber (daca poate fi posibil)." -#: flatcamGUI/ObjectUI.py:513 +#: flatcamGUI/ObjectUI.py:518 msgid "Buffer Solid Geometry" msgstr "Creează Bufer Geometrie Solidă" -#: flatcamGUI/ObjectUI.py:515 +#: flatcamGUI/ObjectUI.py:520 msgid "" "This button is shown only when the Gerber file\n" "is loaded without buffering.\n" @@ -7458,11 +7436,11 @@ msgstr "" "Bifarea aici va crea această buferare care este necesară\n" "pentru a crea geometrie de tip Izolare." -#: flatcamGUI/ObjectUI.py:543 +#: flatcamGUI/ObjectUI.py:548 msgid "Clear N-copper" msgstr "Curăță Non-Cu" -#: flatcamGUI/ObjectUI.py:545 flatcamGUI/PreferencesUI.py:3956 +#: flatcamGUI/ObjectUI.py:550 flatcamGUI/PreferencesUI.py:3974 msgid "" "Create a Geometry object with\n" "toolpaths to cut all non-copper regions." @@ -7471,7 +7449,8 @@ msgstr "" "care să curete de cupru toate zonele unde se dorește să nu \n" "fie cupru." -#: flatcamGUI/ObjectUI.py:552 flatcamTools/ToolNonCopperClear.py:479 +#: flatcamGUI/ObjectUI.py:557 flatcamGUI/ObjectUI.py:1714 +#: flatcamTools/ToolNonCopperClear.py:479 msgid "" "Create the Geometry Object\n" "for non-copper routing." @@ -7480,11 +7459,11 @@ msgstr "" "pt rutare non-cupru (adica pt\n" "curățare zone de cupru)." -#: flatcamGUI/ObjectUI.py:559 +#: flatcamGUI/ObjectUI.py:570 msgid "Board cutout" msgstr "Decupare PCB" -#: flatcamGUI/ObjectUI.py:561 flatcamGUI/PreferencesUI.py:4248 +#: flatcamGUI/ObjectUI.py:572 flatcamGUI/PreferencesUI.py:4266 msgid "" "Create toolpaths to cut around\n" "the PCB and separate it from\n" @@ -7494,7 +7473,7 @@ msgstr "" "lasand punţi pentru a separa PCB-ul de \n" "placa din care a fost taiat." -#: flatcamGUI/ObjectUI.py:568 +#: flatcamGUI/ObjectUI.py:579 msgid "" "Generate the geometry for\n" "the board cutout." @@ -7502,11 +7481,11 @@ msgstr "" "Generează un obiect Geometrie\n" "pt decuparea PCB." -#: flatcamGUI/ObjectUI.py:580 flatcamGUI/PreferencesUI.py:1520 +#: flatcamGUI/ObjectUI.py:597 flatcamGUI/PreferencesUI.py:1520 msgid "Non-copper regions" msgstr "Regiuni fără Cu" -#: flatcamGUI/ObjectUI.py:582 flatcamGUI/PreferencesUI.py:1522 +#: flatcamGUI/ObjectUI.py:599 flatcamGUI/PreferencesUI.py:1522 msgid "" "Create polygons covering the\n" "areas without copper on the PCB.\n" @@ -7519,12 +7498,12 @@ msgstr "" "obiectului sursa. Poate fi folosit pt a indeparta\n" "cuprul din zona specificata." -#: flatcamGUI/ObjectUI.py:592 flatcamGUI/ObjectUI.py:633 +#: flatcamGUI/ObjectUI.py:609 flatcamGUI/ObjectUI.py:650 #: flatcamGUI/PreferencesUI.py:1534 flatcamGUI/PreferencesUI.py:1562 msgid "Boundary Margin" msgstr "Margine" -#: flatcamGUI/ObjectUI.py:594 flatcamGUI/PreferencesUI.py:1536 +#: flatcamGUI/ObjectUI.py:611 flatcamGUI/PreferencesUI.py:1536 msgid "" "Specify the edge of the PCB\n" "by drawing a box around all\n" @@ -7535,29 +7514,29 @@ msgstr "" "unei forme patratice de jur imprejurul la toate obiectele\n" "la o distanţa minima cu valoarea din acest câmp." -#: flatcamGUI/ObjectUI.py:609 flatcamGUI/ObjectUI.py:647 +#: flatcamGUI/ObjectUI.py:626 flatcamGUI/ObjectUI.py:664 #: flatcamGUI/PreferencesUI.py:1549 flatcamGUI/PreferencesUI.py:1575 msgid "Rounded Geo" msgstr "Geo rotunjita" -#: flatcamGUI/ObjectUI.py:611 flatcamGUI/PreferencesUI.py:1551 +#: flatcamGUI/ObjectUI.py:628 flatcamGUI/PreferencesUI.py:1551 msgid "Resulting geometry will have rounded corners." msgstr "" "Obiectul Geometrie rezultat \n" "va avea colțurile rotunjite." -#: flatcamGUI/ObjectUI.py:615 flatcamGUI/ObjectUI.py:656 +#: flatcamGUI/ObjectUI.py:632 flatcamGUI/ObjectUI.py:673 #: flatcamTools/ToolSolderPaste.py:133 msgid "Generate Geo" msgstr "Crează Geo" -#: flatcamGUI/ObjectUI.py:625 flatcamGUI/PreferencesUI.py:1556 -#: flatcamGUI/PreferencesUI.py:5965 flatcamTools/ToolPanelize.py:95 +#: flatcamGUI/ObjectUI.py:642 flatcamGUI/PreferencesUI.py:1556 +#: flatcamGUI/PreferencesUI.py:5983 flatcamTools/ToolPanelize.py:95 #: flatcamTools/ToolQRCode.py:192 msgid "Bounding Box" msgstr "Forma înconjurătoare" -#: flatcamGUI/ObjectUI.py:627 +#: flatcamGUI/ObjectUI.py:644 msgid "" "Create a geometry surrounding the Gerber object.\n" "Square shape." @@ -7565,7 +7544,7 @@ msgstr "" "Generează un obiect tip Geometrie care va inconjura\n" "obiectul Gerber. Forma patratica (rectangulara)." -#: flatcamGUI/ObjectUI.py:635 flatcamGUI/PreferencesUI.py:1564 +#: flatcamGUI/ObjectUI.py:652 flatcamGUI/PreferencesUI.py:1564 msgid "" "Distance of the edges of the box\n" "to the nearest polygon." @@ -7573,7 +7552,7 @@ msgstr "" "Distanta de la marginile formei înconjurătoare\n" "pana la cel mai apropiat poligon." -#: flatcamGUI/ObjectUI.py:649 flatcamGUI/PreferencesUI.py:1577 +#: flatcamGUI/ObjectUI.py:666 flatcamGUI/PreferencesUI.py:1577 msgid "" "If the bounding box is \n" "to have rounded corners\n" @@ -7583,32 +7562,33 @@ msgstr "" "Daca forma înconjurătoare să aibă colțuri rotunjite.\n" "Raza acesor colțuri va fi egală cu parametrul Margine." -#: flatcamGUI/ObjectUI.py:658 +#: flatcamGUI/ObjectUI.py:675 msgid "Generate the Geometry object." msgstr "Generează obiectul Geometrie." -#: flatcamGUI/ObjectUI.py:674 +#: flatcamGUI/ObjectUI.py:691 msgid "Excellon Object" msgstr "Obiect Excellon" -#: flatcamGUI/ObjectUI.py:688 +#: flatcamGUI/ObjectUI.py:705 msgid "Solid circles." msgstr "Cercuri solide." -#: flatcamGUI/ObjectUI.py:736 flatcamTools/ToolProperties.py:161 +#: flatcamGUI/ObjectUI.py:753 flatcamGUI/ObjectUI.py:1876 +#: flatcamTools/ToolProperties.py:161 msgid "Drills" msgstr "Găuri" -#: flatcamGUI/ObjectUI.py:736 flatcamGUI/PreferencesUI.py:2950 -#: flatcamTools/ToolProperties.py:162 +#: flatcamGUI/ObjectUI.py:753 flatcamGUI/ObjectUI.py:1876 +#: flatcamGUI/PreferencesUI.py:2952 flatcamTools/ToolProperties.py:162 msgid "Slots" msgstr "Sloturi" -#: flatcamGUI/ObjectUI.py:737 flatcamGUI/PreferencesUI.py:2553 +#: flatcamGUI/ObjectUI.py:754 flatcamGUI/PreferencesUI.py:2555 msgid "Offset Z" msgstr "Ofset Z" -#: flatcamGUI/ObjectUI.py:741 +#: flatcamGUI/ObjectUI.py:758 msgid "" "This is the Tool Number.\n" "When ToolChange is checked, on toolchange event this value\n" @@ -7622,7 +7602,7 @@ msgstr "" "in codul masina CNC.\n" "Aici se selectează uneltele pt generarea de G-Code." -#: flatcamGUI/ObjectUI.py:746 flatcamGUI/ObjectUI.py:1154 +#: flatcamGUI/ObjectUI.py:763 flatcamGUI/ObjectUI.py:1191 #: flatcamTools/ToolPaint.py:137 msgid "" "Tool Diameter. It's value (in current FlatCAM units) \n" @@ -7631,7 +7611,7 @@ msgstr "" "Diametrul uneltei. Valoarea să (in unitati curente)\n" "reprezinta lăţimea taieturii in material." -#: flatcamGUI/ObjectUI.py:749 +#: flatcamGUI/ObjectUI.py:766 msgid "" "The number of Drill holes. Holes that are drilled with\n" "a drill bit." @@ -7639,7 +7619,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:752 +#: flatcamGUI/ObjectUI.py:769 msgid "" "The number of Slot holes. Holes that are created by\n" "milling them with an endmill bit." @@ -7647,7 +7627,7 @@ msgstr "" "Numărul de sloturi. Sunt găuri efectuate\n" "prin op. de frezare cu o freza." -#: flatcamGUI/ObjectUI.py:755 flatcamGUI/PreferencesUI.py:2555 +#: flatcamGUI/ObjectUI.py:772 flatcamGUI/PreferencesUI.py:2557 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" @@ -7660,7 +7640,7 @@ msgstr "" "Valoarea de aici efectuează o compensare asupra\n" "parametrului >Z tăiere<." -#: flatcamGUI/ObjectUI.py:759 +#: flatcamGUI/ObjectUI.py:776 msgid "" "Toggle display of the drills for the current tool.\n" "This does not select the tools for G-code generation." @@ -7668,12 +7648,12 @@ msgstr "" "Comută afișarea găurilor pt unealta curentă.\n" "Aceata nu selectează uneltele pt generarea G-Code." -#: flatcamGUI/ObjectUI.py:766 flatcamGUI/PreferencesUI.py:2323 -#: flatcamGUI/PreferencesUI.py:3165 +#: flatcamGUI/ObjectUI.py:783 flatcamGUI/PreferencesUI.py:2323 +#: flatcamGUI/PreferencesUI.py:3167 msgid "Create CNC Job" msgstr "Crează CNCJob" -#: flatcamGUI/ObjectUI.py:768 +#: flatcamGUI/ObjectUI.py:785 msgid "" "Create a CNC Job object\n" "for this drill object." @@ -7681,7 +7661,7 @@ msgstr "" "Crează un obiect CNCJob din\n" "acest obiect." -#: flatcamGUI/ObjectUI.py:781 flatcamGUI/PreferencesUI.py:2336 +#: flatcamGUI/ObjectUI.py:798 flatcamGUI/PreferencesUI.py:2336 msgid "" "Drill depth (negative)\n" "below the copper surface." @@ -7690,7 +7670,7 @@ msgstr "" "Daca se foloseşte o val. pozitivă, aplicaţia\n" "va incerca in mod automat să schimbe semnul." -#: flatcamGUI/ObjectUI.py:800 flatcamGUI/PreferencesUI.py:2354 +#: flatcamGUI/ObjectUI.py:817 flatcamGUI/PreferencesUI.py:2354 msgid "" "Tool height when travelling\n" "across the XY plane." @@ -7699,12 +7679,12 @@ msgstr "" "in planul X-Y, fără a efectua taieri, adica\n" "in afara materialului." -#: flatcamGUI/ObjectUI.py:817 flatcamGUI/ObjectUI.py:1402 -#: flatcamGUI/PreferencesUI.py:2369 flatcamGUI/PreferencesUI.py:3250 +#: flatcamGUI/ObjectUI.py:834 flatcamGUI/ObjectUI.py:1439 +#: flatcamGUI/PreferencesUI.py:2369 flatcamGUI/PreferencesUI.py:3252 msgid "Tool change" msgstr "Schimb unealtă" -#: flatcamGUI/ObjectUI.py:819 flatcamGUI/PreferencesUI.py:2371 +#: flatcamGUI/ObjectUI.py:836 flatcamGUI/PreferencesUI.py:2371 msgid "" "Include tool-change sequence\n" "in G-Code (Pause for tool change)." @@ -7713,23 +7693,23 @@ msgstr "" "in codul G-Code (pauza pentru schimbare unealtă).\n" "De obicei este folosita comanda G-Code M6." -#: flatcamGUI/ObjectUI.py:825 flatcamGUI/ObjectUI.py:1395 +#: flatcamGUI/ObjectUI.py:842 flatcamGUI/ObjectUI.py:1432 msgid "Tool change Z" msgstr "Z schimb unealtă" -#: flatcamGUI/ObjectUI.py:827 flatcamGUI/ObjectUI.py:1398 -#: flatcamGUI/PreferencesUI.py:2380 flatcamGUI/PreferencesUI.py:3265 +#: flatcamGUI/ObjectUI.py:844 flatcamGUI/ObjectUI.py:1435 +#: flatcamGUI/PreferencesUI.py:2380 flatcamGUI/PreferencesUI.py:3267 msgid "" "Z-axis position (height) for\n" "tool change." msgstr "Înălţimea, pe axa Z, pentru schimbul uneltei." -#: flatcamGUI/ObjectUI.py:845 flatcamGUI/PreferencesUI.py:2573 -#: flatcamGUI/PreferencesUI.py:3415 +#: flatcamGUI/ObjectUI.py:862 flatcamGUI/PreferencesUI.py:2575 +#: flatcamGUI/PreferencesUI.py:3420 msgid "Start move Z" msgstr "Z pornire" -#: flatcamGUI/ObjectUI.py:847 flatcamGUI/PreferencesUI.py:2575 +#: flatcamGUI/ObjectUI.py:864 flatcamGUI/PreferencesUI.py:2577 msgid "" "Height of the tool just after start.\n" "Delete the value if you don't need this feature." @@ -7737,25 +7717,25 @@ msgstr "" "Înălţimea uneltei imediat dupa ce se porneste operatia CNC.\n" "Lasa casuta goala daca nu se foloseşte." -#: flatcamGUI/ObjectUI.py:855 flatcamGUI/ObjectUI.py:1436 -#: flatcamGUI/PreferencesUI.py:2395 flatcamGUI/PreferencesUI.py:3284 +#: flatcamGUI/ObjectUI.py:872 flatcamGUI/ObjectUI.py:1473 +#: flatcamGUI/PreferencesUI.py:2395 flatcamGUI/PreferencesUI.py:3286 msgid "End move Z" msgstr "Z oprire" -#: flatcamGUI/ObjectUI.py:857 flatcamGUI/ObjectUI.py:1438 -#: flatcamGUI/PreferencesUI.py:2397 flatcamGUI/PreferencesUI.py:3286 +#: flatcamGUI/ObjectUI.py:874 flatcamGUI/ObjectUI.py:1475 +#: flatcamGUI/PreferencesUI.py:2397 flatcamGUI/PreferencesUI.py:3288 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/ObjectUI.py:874 flatcamGUI/ObjectUI.py:1469 -#: flatcamGUI/PreferencesUI.py:2412 flatcamGUI/PreferencesUI.py:3319 -#: flatcamGUI/PreferencesUI.py:5479 flatcamTools/ToolSolderPaste.py:264 +#: flatcamGUI/ObjectUI.py:891 flatcamGUI/ObjectUI.py:1506 +#: flatcamGUI/PreferencesUI.py:2412 flatcamGUI/PreferencesUI.py:3321 +#: flatcamGUI/PreferencesUI.py:5497 flatcamTools/ToolSolderPaste.py:264 msgid "Feedrate Z" msgstr "Feedrate Z" -#: flatcamGUI/ObjectUI.py:876 flatcamGUI/PreferencesUI.py:2414 +#: flatcamGUI/ObjectUI.py:893 flatcamGUI/PreferencesUI.py:2414 msgid "" "Tool speed while drilling\n" "(in units per minute).\n" @@ -7767,12 +7747,12 @@ msgstr "" "Asa numita viteza unealta tip \"plunge\".\n" "Aceasta este mișcarea lineara G01." -#: flatcamGUI/ObjectUI.py:890 flatcamGUI/ObjectUI.py:1484 -#: flatcamGUI/PreferencesUI.py:2583 flatcamGUI/PreferencesUI.py:3425 +#: flatcamGUI/ObjectUI.py:907 flatcamGUI/ObjectUI.py:1521 +#: flatcamGUI/PreferencesUI.py:2585 flatcamGUI/PreferencesUI.py:3430 msgid "Feedrate Rapids" msgstr "Feedrate rapizi" -#: flatcamGUI/ObjectUI.py:892 flatcamGUI/PreferencesUI.py:2585 +#: flatcamGUI/ObjectUI.py:909 flatcamGUI/PreferencesUI.py:2587 msgid "" "Tool speed while drilling\n" "(in units per minute).\n" @@ -7785,12 +7765,12 @@ msgstr "" "printerul 3D Marlin, implicit când se foloseşte fişierul\n" "postprocesor: Marlin. Ignora aceasta parametru in rest." -#: flatcamGUI/ObjectUI.py:910 flatcamGUI/ObjectUI.py:1514 -#: flatcamGUI/PreferencesUI.py:3335 +#: flatcamGUI/ObjectUI.py:927 flatcamGUI/ObjectUI.py:1566 +#: flatcamGUI/PreferencesUI.py:3337 msgid "Spindle speed" msgstr "Viteza motor" -#: flatcamGUI/ObjectUI.py:912 flatcamGUI/PreferencesUI.py:2429 +#: flatcamGUI/ObjectUI.py:929 flatcamGUI/PreferencesUI.py:2429 msgid "" "Speed of the spindle\n" "in RPM (optional)" @@ -7800,8 +7780,8 @@ msgstr "" "Acest parametru este optional și se poate lasa gol\n" "daca nu se foloseşte." -#: flatcamGUI/ObjectUI.py:922 flatcamGUI/ObjectUI.py:1531 -#: flatcamGUI/PreferencesUI.py:2439 flatcamGUI/PreferencesUI.py:3350 +#: flatcamGUI/ObjectUI.py:941 flatcamGUI/ObjectUI.py:1585 +#: flatcamGUI/PreferencesUI.py:2441 flatcamGUI/PreferencesUI.py:3355 msgid "" "Pause to allow the spindle to reach its\n" "speed before cutting." @@ -7809,12 +7789,12 @@ 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/ObjectUI.py:931 flatcamGUI/ObjectUI.py:1541 -#: flatcamGUI/PreferencesUI.py:2444 flatcamGUI/PreferencesUI.py:3355 +#: flatcamGUI/ObjectUI.py:950 flatcamGUI/ObjectUI.py:1595 +#: flatcamGUI/PreferencesUI.py:2446 flatcamGUI/PreferencesUI.py:3360 msgid "Number of time units for spindle to dwell." msgstr "Timpul (ori secunde ori milisec) cat se stă in pauză." -#: flatcamGUI/ObjectUI.py:941 flatcamGUI/PreferencesUI.py:2461 +#: flatcamGUI/ObjectUI.py:960 flatcamGUI/PreferencesUI.py:2463 msgid "" "The preprocessor JSON file that dictates\n" "Gcode output." @@ -7822,13 +7802,13 @@ msgstr "" "Fișierul JSON postprocesor care dictează\n" "codul Gcode." -#: flatcamGUI/ObjectUI.py:950 flatcamGUI/ObjectUI.py:1561 -#: flatcamGUI/PreferencesUI.py:2599 flatcamGUI/PreferencesUI.py:3453 +#: flatcamGUI/ObjectUI.py:969 flatcamGUI/ObjectUI.py:1615 +#: flatcamGUI/PreferencesUI.py:2601 flatcamGUI/PreferencesUI.py:3471 msgid "Probe Z depth" msgstr "Z sonda" -#: flatcamGUI/ObjectUI.py:952 flatcamGUI/ObjectUI.py:1563 -#: flatcamGUI/PreferencesUI.py:2601 flatcamGUI/PreferencesUI.py:3455 +#: flatcamGUI/ObjectUI.py:971 flatcamGUI/ObjectUI.py:1617 +#: flatcamGUI/PreferencesUI.py:2603 flatcamGUI/PreferencesUI.py:3473 msgid "" "The maximum depth that the probe is allowed\n" "to probe. Negative value, in current units." @@ -7836,21 +7816,21 @@ msgstr "" "Adâncimea maxima la care este permis sondei să coboare.\n" "Are o valoare negativă, in unitatile curente." -#: flatcamGUI/ObjectUI.py:966 flatcamGUI/ObjectUI.py:1578 -#: flatcamGUI/PreferencesUI.py:2612 flatcamGUI/PreferencesUI.py:3468 +#: flatcamGUI/ObjectUI.py:985 flatcamGUI/ObjectUI.py:1632 +#: flatcamGUI/PreferencesUI.py:2614 flatcamGUI/PreferencesUI.py:3486 msgid "Feedrate Probe" msgstr "Feedrate sonda" -#: flatcamGUI/ObjectUI.py:968 flatcamGUI/ObjectUI.py:1580 -#: flatcamGUI/PreferencesUI.py:2614 flatcamGUI/PreferencesUI.py:3470 +#: flatcamGUI/ObjectUI.py:987 flatcamGUI/ObjectUI.py:1634 +#: flatcamGUI/PreferencesUI.py:2616 flatcamGUI/PreferencesUI.py:3488 msgid "The feedrate used while the probe is probing." msgstr "Viteza sondei când aceasta coboara." -#: flatcamGUI/ObjectUI.py:994 flatcamGUI/PreferencesUI.py:2470 +#: flatcamGUI/ObjectUI.py:1013 flatcamGUI/PreferencesUI.py:2472 msgid "Gcode" msgstr "Gcode" -#: flatcamGUI/ObjectUI.py:996 +#: flatcamGUI/ObjectUI.py:1015 msgid "" "Choose what to use for GCode generation:\n" "'Drills', 'Slots' or 'Both'.\n" @@ -7864,47 +7844,42 @@ msgstr "" "Când se alege >Sloturi< sau >Ambele<, sloturile\n" "vor fi convertite intr-o serie de găuriri." -#: flatcamGUI/ObjectUI.py:1010 +#: flatcamGUI/ObjectUI.py:1029 msgid "Create Drills GCode" msgstr "Crează GCode Găuri" -#: flatcamGUI/ObjectUI.py:1012 +#: flatcamGUI/ObjectUI.py:1031 msgid "Generate the CNC Job." msgstr "Generează un obiect CNCJob." -#: flatcamGUI/ObjectUI.py:1017 flatcamGUI/PreferencesUI.py:2488 +#: flatcamGUI/ObjectUI.py:1042 flatcamGUI/PreferencesUI.py:2490 msgid "Mill Holes" msgstr "Frezare găuri" -#: flatcamGUI/ObjectUI.py:1019 -#, fuzzy -#| msgid "" -#| "Select from the Tools Table above\n" -#| "the hole dias that are to be milled.\n" -#| "Use the # column to make the selection." +#: flatcamGUI/ObjectUI.py:1044 msgid "" "Create Geometry for milling holes.\n" "Select from the Tools Table above the hole dias to be\n" "milled. Use the # column to make the selection." msgstr "" -"Selecteaa din Tabela de Unelte de mai sus\n" -"acele găuri care vor fi frezate.\n" -"Foloseste coloana # pt a face această selectie." +"Creați Geometrie pentru frezare de găuri.\n" +"Selectați din tabelul Unelte de deasupra găurile\n" +"care trebuie frezate. Utilizați coloana # pentru a face selecția." -#: flatcamGUI/ObjectUI.py:1025 flatcamGUI/PreferencesUI.py:2494 +#: flatcamGUI/ObjectUI.py:1050 flatcamGUI/PreferencesUI.py:2496 msgid "Drill Tool dia" msgstr "Dia. Burghiu Găurire" -#: flatcamGUI/ObjectUI.py:1027 flatcamGUI/PreferencesUI.py:1451 -#: flatcamGUI/PreferencesUI.py:2496 +#: flatcamGUI/ObjectUI.py:1052 flatcamGUI/PreferencesUI.py:1451 +#: flatcamGUI/PreferencesUI.py:2498 msgid "Diameter of the cutting tool." msgstr "Diametrul uneltei taietoare." -#: flatcamGUI/ObjectUI.py:1034 +#: flatcamGUI/ObjectUI.py:1059 msgid "Mill Drills Geo" msgstr "Geo pt frezare găuri" -#: flatcamGUI/ObjectUI.py:1036 +#: flatcamGUI/ObjectUI.py:1061 msgid "" "Create the Geometry Object\n" "for milling DRILLS toolpaths." @@ -7912,21 +7887,21 @@ msgstr "" "Crează un obiect tip Geometrie pt.\n" "frezarea rutelor create din Găuri." -#: flatcamGUI/ObjectUI.py:1044 flatcamGUI/PreferencesUI.py:2505 +#: flatcamGUI/ObjectUI.py:1075 flatcamGUI/PreferencesUI.py:2507 msgid "Slot Tool dia" msgstr "Dia. Freza Slot" -#: flatcamGUI/ObjectUI.py:1046 flatcamGUI/PreferencesUI.py:2507 +#: flatcamGUI/ObjectUI.py:1077 flatcamGUI/PreferencesUI.py:2509 msgid "" "Diameter of the cutting tool\n" "when milling slots." msgstr "Diametrul frezei când se frezează sloturile." -#: flatcamGUI/ObjectUI.py:1055 +#: flatcamGUI/ObjectUI.py:1086 msgid "Mill Slots Geo" msgstr "Geo pt. frezare sloturi" -#: flatcamGUI/ObjectUI.py:1057 +#: flatcamGUI/ObjectUI.py:1088 msgid "" "Create the Geometry Object\n" "for milling SLOTS toolpaths." @@ -7934,11 +7909,11 @@ msgstr "" "Crează un obiect tip Geometrie pt.\n" "frezarea rutelor create din Sloturi." -#: flatcamGUI/ObjectUI.py:1078 flatcamTools/ToolCutOut.py:315 +#: flatcamGUI/ObjectUI.py:1115 flatcamTools/ToolCutOut.py:315 msgid "Geometry Object" msgstr "Obiect Geometrie" -#: flatcamGUI/ObjectUI.py:1110 +#: flatcamGUI/ObjectUI.py:1147 msgid "" "Tools in this Geometry object used for cutting.\n" "The 'Offset' entry will set an offset for the cut.\n" @@ -7968,22 +7943,23 @@ msgstr "" "- V-Dia \n" "- V-unghi." -#: flatcamGUI/ObjectUI.py:1127 flatcamGUI/ObjectUI.py:1771 -#: flatcamGUI/PreferencesUI.py:3609 +#: flatcamGUI/ObjectUI.py:1164 flatcamGUI/ObjectUI.py:1853 +#: flatcamGUI/PreferencesUI.py:3627 msgid "Plot Object" msgstr "Afisează" -#: flatcamGUI/ObjectUI.py:1141 flatcamGUI/ObjectUI.py:1784 -#: flatcamGUI/PreferencesUI.py:6154 flatcamTools/ToolCopperThieving.py:220 +#: flatcamGUI/ObjectUI.py:1178 flatcamGUI/ObjectUI.py:1866 +#: flatcamGUI/ObjectUI.py:1876 flatcamGUI/PreferencesUI.py:6172 +#: flatcamTools/ToolCopperThieving.py:220 msgid "Dia" msgstr "Dia" -#: flatcamGUI/ObjectUI.py:1141 flatcamGUI/ObjectUI.py:1784 +#: flatcamGUI/ObjectUI.py:1178 flatcamGUI/ObjectUI.py:1866 #: flatcamTools/ToolNonCopperClear.py:120 flatcamTools/ToolPaint.py:123 msgid "TT" msgstr "TU" -#: flatcamGUI/ObjectUI.py:1148 +#: flatcamGUI/ObjectUI.py:1185 msgid "" "This is the Tool Number.\n" "When ToolChange is checked, on toolchange event this value\n" @@ -7994,7 +7970,7 @@ msgstr "" "la evenim. de schimb unealtă, va aparea sub forma T1, T2, etc\n" "in codul masina CNC" -#: flatcamGUI/ObjectUI.py:1159 +#: flatcamGUI/ObjectUI.py:1196 msgid "" "The value for the Offset can be:\n" "- Path -> There is no offset, the tool cut will be done through the geometry " @@ -8010,7 +7986,7 @@ msgstr "" "'buzunar'\n" "- Afară-> Tăietura va urma geometria pe exterior." -#: flatcamGUI/ObjectUI.py:1166 +#: flatcamGUI/ObjectUI.py:1203 msgid "" "The (Operation) Type has only informative value. Usually the UI form " "values \n" @@ -8033,7 +8009,7 @@ msgstr "" "un\n" "vârf fin, ascuțit." -#: flatcamGUI/ObjectUI.py:1175 +#: flatcamGUI/ObjectUI.py:1212 msgid "" "The Tool Type (TT) can be:\n" "- Circular with 1 ... 4 teeth -> it is informative only. Being circular the " @@ -8063,7 +8039,7 @@ msgstr "" "Alegerea tipului V-Shape (forma in V) va selecta automat Tipul de Operaţie " "ca Izolare." -#: flatcamGUI/ObjectUI.py:1187 +#: flatcamGUI/ObjectUI.py:1224 msgid "" "Plot column. It is visible only for MultiGeo geometries, meaning geometries " "that holds the geometry\n" @@ -8083,7 +8059,7 @@ msgstr "" "se poate activa/dezactiva\n" "afișarea in canvas." -#: flatcamGUI/ObjectUI.py:1205 +#: flatcamGUI/ObjectUI.py:1242 msgid "" "The value to offset the cut when \n" "the Offset type selected is 'Offset'.\n" @@ -8094,35 +8070,27 @@ 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:1230 -#, fuzzy -#| msgid "" -#| "Add a new tool to the Tool Table\n" -#| "with the diameter specified above." +#: flatcamGUI/ObjectUI.py:1267 msgid "" "Add a new tool to the Tool Table\n" "with the specified diameter." msgstr "" -"Adaugă o noua unelata in Tabela de Unelte,\n" -"cu diametrul specificat mai sus." +"Adăugați o Unealta noua in Tabelul de Unelte\n" +"cu diametrul specificat." -#: flatcamGUI/ObjectUI.py:1238 +#: flatcamGUI/ObjectUI.py:1275 msgid "Add Tool from DataBase" -msgstr "" +msgstr "Adăugați Unealta din DB Unelte" -#: flatcamGUI/ObjectUI.py:1240 -#, fuzzy -#| msgid "" -#| "Add a new tool to the Tool Table\n" -#| "with the diameter specified above." +#: flatcamGUI/ObjectUI.py:1277 msgid "" "Add a new tool to the Tool Table\n" "from the Tool DataBase." msgstr "" -"Adaugă o noua unelata in Tabela de Unelte,\n" -"cu diametrul specificat mai sus." +"Adaugă o noua unealta in Tabela de Unelte,\n" +"din DB Unelte." -#: flatcamGUI/ObjectUI.py:1250 +#: flatcamGUI/ObjectUI.py:1287 msgid "" "Copy a selection of tools in the Tool Table\n" "by first selecting a row in the Tool Table." @@ -8130,7 +8098,7 @@ msgstr "" "Copiază o selecţie de unelte in Tabela de Unelte prin\n" "selectarea unei linii (sau mai multe) in Tabela de Unelte." -#: flatcamGUI/ObjectUI.py:1256 +#: flatcamGUI/ObjectUI.py:1293 msgid "" "Delete a selection of tools in the Tool Table\n" "by first selecting a row in the Tool Table." @@ -8138,7 +8106,7 @@ 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:1280 +#: flatcamGUI/ObjectUI.py:1317 msgid "" "The data used for creating GCode.\n" "Each tool store it's own set of such data." @@ -8146,13 +8114,13 @@ msgstr "" "Datele folosite pentru crearea codului GCode.\n" "Fiecare unealtă stochează un subset de asemenea date." -#: flatcamGUI/ObjectUI.py:1350 flatcamGUI/PreferencesUI.py:3197 -#: flatcamGUI/PreferencesUI.py:4293 flatcamTools/ToolCutOut.py:153 +#: flatcamGUI/ObjectUI.py:1387 flatcamGUI/PreferencesUI.py:3199 +#: flatcamGUI/PreferencesUI.py:4311 flatcamTools/ToolCutOut.py:153 msgid "Multi-Depth" msgstr "Multi-Pas" -#: flatcamGUI/ObjectUI.py:1353 flatcamGUI/PreferencesUI.py:3200 -#: flatcamGUI/PreferencesUI.py:4296 flatcamTools/ToolCutOut.py:156 +#: flatcamGUI/ObjectUI.py:1390 flatcamGUI/PreferencesUI.py:3202 +#: flatcamGUI/PreferencesUI.py:4314 flatcamTools/ToolCutOut.py:156 msgid "" "Use multiple passes to limit\n" "the cut depth in each pass. Will\n" @@ -8164,14 +8132,14 @@ msgstr "" "va tăia de mai multe ori până când este\n" "atins Z de tăiere, Z Cut." -#: flatcamGUI/ObjectUI.py:1367 flatcamGUI/PreferencesUI.py:4308 +#: flatcamGUI/ObjectUI.py:1404 flatcamGUI/PreferencesUI.py:4326 #: flatcamTools/ToolCutOut.py:170 msgid "Depth of each pass (positive)." msgstr "" "Adâncimea pentru fiecare trecere.\n" "Valoare pozitivă, in unitatile curente." -#: flatcamGUI/ObjectUI.py:1378 flatcamGUI/PreferencesUI.py:3232 +#: flatcamGUI/ObjectUI.py:1415 flatcamGUI/PreferencesUI.py:3234 msgid "" "Height of the tool when\n" "moving without cutting." @@ -8179,7 +8147,7 @@ msgstr "" "Înălţimea la care se misca unealta când nu taie,\n" "deasupra materialului." -#: flatcamGUI/ObjectUI.py:1405 flatcamGUI/PreferencesUI.py:3253 +#: flatcamGUI/ObjectUI.py:1442 flatcamGUI/PreferencesUI.py:3255 msgid "" "Include tool-change sequence\n" "in the Machine Code (Pause for tool change)." @@ -8188,12 +8156,12 @@ msgstr "" "codul masina CNC. O pauza pentru schimbul\n" "uneltei (M6)." -#: flatcamGUI/ObjectUI.py:1455 flatcamGUI/PreferencesUI.py:3304 -#: flatcamGUI/PreferencesUI.py:5466 flatcamTools/ToolSolderPaste.py:252 +#: flatcamGUI/ObjectUI.py:1492 flatcamGUI/PreferencesUI.py:3306 +#: flatcamGUI/PreferencesUI.py:5484 flatcamTools/ToolSolderPaste.py:252 msgid "Feedrate X-Y" msgstr "Feedrate X-Y" -#: flatcamGUI/ObjectUI.py:1457 flatcamGUI/PreferencesUI.py:3306 +#: flatcamGUI/ObjectUI.py:1494 flatcamGUI/PreferencesUI.py:3308 msgid "" "Cutting speed in the XY\n" "plane in units per minute" @@ -8201,7 +8169,7 @@ msgstr "" "Viteza de tăiere in planul X-Y\n" "in unitati pe minut" -#: flatcamGUI/ObjectUI.py:1471 flatcamGUI/PreferencesUI.py:3321 +#: flatcamGUI/ObjectUI.py:1508 flatcamGUI/PreferencesUI.py:3323 msgid "" "Cutting speed in the XY\n" "plane in units per minute.\n" @@ -8211,7 +8179,7 @@ msgstr "" "in unitati pe minut.\n" "Mai este numita și viteza de plonjare." -#: flatcamGUI/ObjectUI.py:1486 flatcamGUI/PreferencesUI.py:3427 +#: flatcamGUI/ObjectUI.py:1523 flatcamGUI/PreferencesUI.py:3432 msgid "" "Cutting speed in the XY plane\n" "(in units per minute).\n" @@ -8224,11 +8192,12 @@ msgstr "" "Este utila doar când se foloseşte cu un printer 3D Marlin,\n" "pentru toate celelalte cazuri ignora acest parametru." -#: flatcamGUI/ObjectUI.py:1504 flatcamGUI/PreferencesUI.py:3443 -msgid "Re-cut 1st pt." -msgstr "Re-tăiere 1-ul pt." +#: flatcamGUI/ObjectUI.py:1541 flatcamGUI/PreferencesUI.py:3448 +msgid "Re-cut" +msgstr "Re-tăiere" -#: flatcamGUI/ObjectUI.py:1506 flatcamGUI/PreferencesUI.py:3445 +#: flatcamGUI/ObjectUI.py:1543 flatcamGUI/ObjectUI.py:1555 +#: flatcamGUI/PreferencesUI.py:3450 flatcamGUI/PreferencesUI.py:3462 msgid "" "In order to remove possible\n" "copper leftovers where first cut\n" @@ -8240,7 +8209,7 @@ msgstr "" "cu sfârşitul acesteia (este vorba de un contur), sunt eliminate\n" "prin taierea peste acest punct." -#: flatcamGUI/ObjectUI.py:1517 flatcamGUI/PreferencesUI.py:3338 +#: flatcamGUI/ObjectUI.py:1569 flatcamGUI/PreferencesUI.py:3340 msgid "" "Speed of the spindle in RPM (optional).\n" "If LASER preprocessor is used,\n" @@ -8250,12 +8219,12 @@ msgstr "" "Daca postprocesorul Laser este folosit,\n" "valoarea să este puterea laserului." -#: flatcamGUI/ObjectUI.py:1549 flatcamGUI/PreferencesUI.py:5555 +#: flatcamGUI/ObjectUI.py:1603 flatcamGUI/PreferencesUI.py:5573 #: flatcamTools/ToolSolderPaste.py:334 msgid "PostProcessor" msgstr "Postprocesor" -#: flatcamGUI/ObjectUI.py:1551 flatcamGUI/PreferencesUI.py:3372 +#: flatcamGUI/ObjectUI.py:1605 flatcamGUI/PreferencesUI.py:3377 msgid "" "The Preprocessor file that dictates\n" "the Machine Code (like GCode, RML, HPGL) output." @@ -8264,17 +8233,19 @@ msgstr "" "codului masina CNC (GCode, RML, HPGL) care \n" "mai apoi este salvat." -#: flatcamGUI/ObjectUI.py:1598 +#: flatcamGUI/ObjectUI.py:1652 msgid "Apply parameters to all tools" -msgstr "" +msgstr "Aplicați parametrii la toate Uneltele" -#: flatcamGUI/ObjectUI.py:1600 +#: flatcamGUI/ObjectUI.py:1654 msgid "" "The parameters in the current form will be applied\n" "on all the tools from the Tool Table." msgstr "" +"Parametrii din formularul curent vor fi aplicați\n" +"la toate Uneltele din Tabelul Unelte." -#: flatcamGUI/ObjectUI.py:1609 +#: flatcamGUI/ObjectUI.py:1663 msgid "" "Add at least one tool in the tool-table.\n" "Click the header to select all, or Ctrl + LMB\n" @@ -8284,21 +8255,21 @@ msgstr "" "Click pe header pentru selectarea tuturora asu CTRL + LMB click\n" "pentru o selecţie personalizata de unelte." -#: flatcamGUI/ObjectUI.py:1616 -#, fuzzy -#| msgid "Generate the CNC Job object." +#: flatcamGUI/ObjectUI.py:1670 msgid "Generate CNCJob object" -msgstr "Generează un obiect CNCJob." +msgstr "Generează un obiect CNCJob" -#: flatcamGUI/ObjectUI.py:1618 +#: flatcamGUI/ObjectUI.py:1672 msgid "Generate the CNC Job object." msgstr "Generează un obiect CNCJob." -#: flatcamGUI/ObjectUI.py:1625 -msgid "Paint Area" -msgstr "Unealta Paint" +#: flatcamGUI/ObjectUI.py:1689 +msgid "Launch Paint Tool in Tools Tab." +msgstr "" +"Lansează unealta FlatCAM numita Paint și\n" +"o instalează in Tab-ul Unealta." -#: flatcamGUI/ObjectUI.py:1628 flatcamGUI/PreferencesUI.py:4471 +#: flatcamGUI/ObjectUI.py:1697 flatcamGUI/PreferencesUI.py:4489 msgid "" "Creates tool paths to cover the\n" "whole area of a polygon (remove\n" @@ -8311,21 +8282,15 @@ msgstr "" "singur poligon se va cere să faceti click pe poligonul\n" "dorit." -#: flatcamGUI/ObjectUI.py:1639 -msgid "Launch Paint Tool in Tools Tab." -msgstr "" -"Lansează unealta FlatCAM numita Paint și\n" -"o instalează in Tab-ul Unealta." - -#: flatcamGUI/ObjectUI.py:1655 +#: flatcamGUI/ObjectUI.py:1737 msgid "CNC Job Object" msgstr "Obiect CNCJob" -#: flatcamGUI/ObjectUI.py:1666 flatcamGUI/PreferencesUI.py:3614 +#: flatcamGUI/ObjectUI.py:1748 flatcamGUI/PreferencesUI.py:3632 msgid "Plot kind" msgstr "Tip afișare" -#: flatcamGUI/ObjectUI.py:1669 flatcamGUI/PreferencesUI.py:3616 +#: flatcamGUI/ObjectUI.py:1751 flatcamGUI/PreferencesUI.py:3634 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" @@ -8337,15 +8302,15 @@ msgstr "" "- Voiaj -> miscarile deasupra materialului\n" "- Tăiere -> miscarile in material, tăiere." -#: flatcamGUI/ObjectUI.py:1678 flatcamGUI/PreferencesUI.py:3624 +#: flatcamGUI/ObjectUI.py:1760 flatcamGUI/PreferencesUI.py:3642 msgid "Travel" msgstr "Voiaj" -#: flatcamGUI/ObjectUI.py:1682 flatcamGUI/PreferencesUI.py:3633 +#: flatcamGUI/ObjectUI.py:1764 flatcamGUI/PreferencesUI.py:3651 msgid "Display Annotation" msgstr "Afişează notații" -#: flatcamGUI/ObjectUI.py:1684 flatcamGUI/PreferencesUI.py:3635 +#: flatcamGUI/ObjectUI.py:1766 flatcamGUI/PreferencesUI.py:3653 msgid "" "This selects if to display text annotation on the plot.\n" "When checked it will display numbers in order for each end\n" @@ -8355,11 +8320,11 @@ msgstr "" "Cand este selectat va afisa numerele in ordine pt fiecare\n" "capat al liniilor de traversare." -#: flatcamGUI/ObjectUI.py:1699 +#: flatcamGUI/ObjectUI.py:1781 msgid "Travelled dist." -msgstr "Distanța parcursă" +msgstr "Dist. parcursă" -#: flatcamGUI/ObjectUI.py:1701 flatcamGUI/ObjectUI.py:1706 +#: flatcamGUI/ObjectUI.py:1783 flatcamGUI/ObjectUI.py:1788 msgid "" "This is the total travelled distance on X-Y plane.\n" "In current units." @@ -8367,11 +8332,11 @@ msgstr "" "Aceasta este distanţa totala parcursa in planul X-Y.\n" "In unitatile curente." -#: flatcamGUI/ObjectUI.py:1711 +#: flatcamGUI/ObjectUI.py:1793 msgid "Estimated time" msgstr "Durată estimată" -#: flatcamGUI/ObjectUI.py:1713 flatcamGUI/ObjectUI.py:1718 +#: flatcamGUI/ObjectUI.py:1795 flatcamGUI/ObjectUI.py:1800 msgid "" "This is the estimated time to do the routing/drilling,\n" "without the time spent in ToolChange events." @@ -8379,11 +8344,11 @@ msgstr "" "Acesta este timpul estimat pentru efectuarea traseului / găuririi,\n" "fără timpul petrecut în evenimentele ToolChange." -#: flatcamGUI/ObjectUI.py:1753 +#: flatcamGUI/ObjectUI.py:1835 msgid "CNC Tools Table" msgstr "Tabela Unelte CNC" -#: flatcamGUI/ObjectUI.py:1756 +#: flatcamGUI/ObjectUI.py:1838 msgid "" "Tools in this CNCJob object used for cutting.\n" "The tool diameter is used for plotting on canvas.\n" @@ -8404,24 +8369,24 @@ msgstr "" "Shape\n" "(cu forma in V)." -#: flatcamGUI/ObjectUI.py:1785 +#: flatcamGUI/ObjectUI.py:1866 flatcamGUI/ObjectUI.py:1877 msgid "P" msgstr "P" -#: flatcamGUI/ObjectUI.py:1797 +#: flatcamGUI/ObjectUI.py:1887 msgid "Update Plot" msgstr "Actualiz. afișare" -#: flatcamGUI/ObjectUI.py:1799 +#: flatcamGUI/ObjectUI.py:1889 msgid "Update the plot." msgstr "Actualizează afișarea obiectelor." -#: flatcamGUI/ObjectUI.py:1806 flatcamGUI/PreferencesUI.py:3801 +#: flatcamGUI/ObjectUI.py:1896 flatcamGUI/PreferencesUI.py:3819 msgid "Export CNC Code" msgstr "Exporta codul masina CNC" -#: flatcamGUI/ObjectUI.py:1808 flatcamGUI/PreferencesUI.py:3742 -#: flatcamGUI/PreferencesUI.py:3803 +#: flatcamGUI/ObjectUI.py:1898 flatcamGUI/PreferencesUI.py:3760 +#: flatcamGUI/PreferencesUI.py:3821 msgid "" "Export and save G-Code to\n" "make this object to a file." @@ -8429,11 +8394,12 @@ msgstr "" "Exportă și salvează codul G-Code intr-un fişier\n" "care este salvat pe HDD." -#: flatcamGUI/ObjectUI.py:1814 +#: flatcamGUI/ObjectUI.py:1904 msgid "Prepend to CNC Code" msgstr "Adaugă la inceput in codul G-Code" -#: flatcamGUI/ObjectUI.py:1816 flatcamGUI/PreferencesUI.py:3758 +#: flatcamGUI/ObjectUI.py:1906 flatcamGUI/ObjectUI.py:1913 +#: flatcamGUI/PreferencesUI.py:3776 flatcamGUI/PreferencesUI.py:3783 msgid "" "Type here any G-Code commands you would\n" "like to add at the beginning of the G-Code file." @@ -8441,23 +8407,12 @@ msgstr "" "Adaugă aici orice comenzi G-Code care se dorește să fie\n" "inserate la inceputul codului G-Code." -#: flatcamGUI/ObjectUI.py:1823 flatcamGUI/PreferencesUI.py:3765 -#, fuzzy -#| msgid "" -#| "Type here any G-Code commands you would\n" -#| "like to add at the beginning of the G-Code file." -msgid "" -"Type here any G-Code commands you would like to add at the beginning of the " -"G-Code file." -msgstr "" -"Adaugă aici orice comenzi G-Code care se dorește să fie\n" -"inserate la inceputul codului G-Code." - -#: flatcamGUI/ObjectUI.py:1829 +#: flatcamGUI/ObjectUI.py:1919 msgid "Append to CNC Code" msgstr "Adaugă la sfârşit in codul G-Code" -#: flatcamGUI/ObjectUI.py:1831 flatcamGUI/PreferencesUI.py:3774 +#: flatcamGUI/ObjectUI.py:1921 flatcamGUI/ObjectUI.py:1929 +#: flatcamGUI/PreferencesUI.py:3792 flatcamGUI/PreferencesUI.py:3800 msgid "" "Type here any G-Code commands you would\n" "like to append to the generated file.\n" @@ -8466,24 +8421,11 @@ msgstr "" "Adaugă aici orice comenzi G-Code care se dorește să fie\n" "inserate la sfârşitul codului G-Code." -#: flatcamGUI/ObjectUI.py:1839 flatcamGUI/PreferencesUI.py:3782 -#, fuzzy -#| msgid "" -#| "Type here any G-Code commands you would\n" -#| "like to append to the generated file.\n" -#| "I.e.: M2 (End of program)" -msgid "" -"Type here any G-Code commands you would like to append to the generated " -"file. I.e.: M2 (End of program)" -msgstr "" -"Adaugă aici orice comenzi G-Code care se dorește să fie\n" -"inserate la sfârşitul codului G-Code." - -#: flatcamGUI/ObjectUI.py:1853 flatcamGUI/PreferencesUI.py:3809 +#: flatcamGUI/ObjectUI.py:1943 flatcamGUI/PreferencesUI.py:3827 msgid "Toolchange G-Code" msgstr "G-Code pt schimb unealtă" -#: flatcamGUI/ObjectUI.py:1856 flatcamGUI/PreferencesUI.py:3812 +#: flatcamGUI/ObjectUI.py:1946 flatcamGUI/PreferencesUI.py:3830 msgid "" "Type here any G-Code commands you would\n" "like to be executed when Toolchange event is encountered.\n" @@ -8505,40 +8447,30 @@ msgstr "" "'toolchange_custom'\n" "in numele sau." -#: flatcamGUI/ObjectUI.py:1871 flatcamGUI/PreferencesUI.py:3835 -#, fuzzy -#| msgid "" -#| "Type here any G-Code commands you would\n" -#| "like to be executed when Toolchange event is encountered.\n" -#| "This will constitute a Custom Toolchange GCode,\n" -#| "or a Toolchange Macro.\n" -#| "The FlatCAM variables are surrounded by '%' symbol.\n" -#| "\n" -#| "WARNING: it can be used only with a preprocessor file\n" -#| "that has 'toolchange_custom' in it's name and this is built\n" -#| "having as template the 'Toolchange Custom' posprocessor file." +#: flatcamGUI/ObjectUI.py:1961 flatcamGUI/PreferencesUI.py:3853 msgid "" -"Type here any G-Code commands you would like to be executed when Toolchange " -"event is encountered. This will constitute a Custom Toolchange GCode, or a " -"Toolchange Macro. The FlatCAM variables are surrounded by '%' symbol. \n" -"WARNING: it can be used only with a preprocessor file that has " -"'toolchange_custom' in it's name." +"Type here any G-Code commands you would\n" +"like to be executed when Toolchange event is encountered.\n" +"This will constitute a Custom Toolchange GCode,\n" +"or a Toolchange Macro.\n" +"The FlatCAM variables are surrounded by '%' symbol.\n" +"WARNING: it can be used only with a preprocessor file\n" +"that has 'toolchange_custom' in it's name." msgstr "" "Plasează aici acele comenzi G-Code care se dorește să fie executate\n" "atunci când evenimentul de tip Schimb Unealtă este intalnit.\n" "Aceasta va constitui un Macro pentru schimbare unealtă.\n" "Variabilele FlatCAM folosite aici sunt inconjurate de simbolul %.\n" -"\n" "ATENTIE:\n" -"poate fi folosit doar cu un fişier postprocesor care contine " +"Poate fi folosit doar cu un fişier pretprocesor care contine " "'toolchange_custom'\n" "in numele sau." -#: flatcamGUI/ObjectUI.py:1886 flatcamGUI/PreferencesUI.py:3851 +#: flatcamGUI/ObjectUI.py:1976 flatcamGUI/PreferencesUI.py:3869 msgid "Use Toolchange Macro" msgstr "Fol. Macro schimb unealtă" -#: flatcamGUI/ObjectUI.py:1888 flatcamGUI/PreferencesUI.py:3853 +#: flatcamGUI/ObjectUI.py:1978 flatcamGUI/PreferencesUI.py:3871 msgid "" "Check this box if you want to use\n" "a Custom Toolchange GCode (macro)." @@ -8546,7 +8478,7 @@ msgstr "" "Bifează aici daca dorești să folosești Macro pentru\n" "schimb unelte." -#: flatcamGUI/ObjectUI.py:1896 flatcamGUI/PreferencesUI.py:3865 +#: flatcamGUI/ObjectUI.py:1986 flatcamGUI/PreferencesUI.py:3883 msgid "" "A list of the FlatCAM variables that can be used\n" "in the Toolchange event.\n" @@ -8556,73 +8488,73 @@ msgstr "" "de schimb al uneltei (când se intalneste comanda M6).\n" "Este necesar să fie inconjurate de simbolul '%'" -#: flatcamGUI/ObjectUI.py:1903 flatcamGUI/PreferencesUI.py:1851 -#: flatcamGUI/PreferencesUI.py:2822 flatcamGUI/PreferencesUI.py:3551 -#: flatcamGUI/PreferencesUI.py:3872 flatcamGUI/PreferencesUI.py:3954 -#: flatcamGUI/PreferencesUI.py:4246 flatcamGUI/PreferencesUI.py:4405 -#: flatcamGUI/PreferencesUI.py:4627 flatcamGUI/PreferencesUI.py:4924 -#: flatcamGUI/PreferencesUI.py:5175 flatcamGUI/PreferencesUI.py:5351 -#: flatcamGUI/PreferencesUI.py:5576 flatcamGUI/PreferencesUI.py:5598 -#: flatcamGUI/PreferencesUI.py:5822 flatcamGUI/PreferencesUI.py:5859 -#: flatcamGUI/PreferencesUI.py:6053 flatcamGUI/PreferencesUI.py:6307 -#: flatcamGUI/PreferencesUI.py:6423 flatcamTools/ToolCopperThieving.py:89 +#: flatcamGUI/ObjectUI.py:1993 flatcamGUI/PreferencesUI.py:1851 +#: flatcamGUI/PreferencesUI.py:2824 flatcamGUI/PreferencesUI.py:3569 +#: flatcamGUI/PreferencesUI.py:3890 flatcamGUI/PreferencesUI.py:3972 +#: flatcamGUI/PreferencesUI.py:4264 flatcamGUI/PreferencesUI.py:4423 +#: flatcamGUI/PreferencesUI.py:4645 flatcamGUI/PreferencesUI.py:4942 +#: flatcamGUI/PreferencesUI.py:5193 flatcamGUI/PreferencesUI.py:5369 +#: flatcamGUI/PreferencesUI.py:5594 flatcamGUI/PreferencesUI.py:5616 +#: flatcamGUI/PreferencesUI.py:5840 flatcamGUI/PreferencesUI.py:5877 +#: flatcamGUI/PreferencesUI.py:6071 flatcamGUI/PreferencesUI.py:6325 +#: flatcamGUI/PreferencesUI.py:6441 flatcamTools/ToolCopperThieving.py:89 #: flatcamTools/ToolFiducials.py:149 flatcamTools/ToolNonCopperClear.py:315 msgid "Parameters" msgstr "Parametri" -#: flatcamGUI/ObjectUI.py:1906 flatcamGUI/PreferencesUI.py:3875 +#: flatcamGUI/ObjectUI.py:1996 flatcamGUI/PreferencesUI.py:3893 msgid "FlatCAM CNC parameters" msgstr "Parametri FlatCAM CNC" -#: flatcamGUI/ObjectUI.py:1907 flatcamGUI/PreferencesUI.py:3876 +#: flatcamGUI/ObjectUI.py:1997 flatcamGUI/PreferencesUI.py:3894 msgid "tool number" msgstr "numărul uneltei" -#: flatcamGUI/ObjectUI.py:1908 flatcamGUI/PreferencesUI.py:3877 +#: flatcamGUI/ObjectUI.py:1998 flatcamGUI/PreferencesUI.py:3895 msgid "tool diameter" msgstr "diametrul sculei" -#: flatcamGUI/ObjectUI.py:1909 flatcamGUI/PreferencesUI.py:3878 +#: flatcamGUI/ObjectUI.py:1999 flatcamGUI/PreferencesUI.py:3896 msgid "for Excellon, total number of drills" msgstr "pentru Excellon, numărul total de operațiuni găurire" -#: flatcamGUI/ObjectUI.py:1911 flatcamGUI/PreferencesUI.py:3880 +#: flatcamGUI/ObjectUI.py:2001 flatcamGUI/PreferencesUI.py:3898 msgid "X coord for Toolchange" msgstr "Coordonata X pentru schimbarea uneltei" -#: flatcamGUI/ObjectUI.py:1912 flatcamGUI/PreferencesUI.py:3881 +#: flatcamGUI/ObjectUI.py:2002 flatcamGUI/PreferencesUI.py:3899 msgid "Y coord for Toolchange" msgstr "Coordonata Y pentru schimbarea uneltei" -#: flatcamGUI/ObjectUI.py:1913 flatcamGUI/PreferencesUI.py:3883 +#: flatcamGUI/ObjectUI.py:2003 flatcamGUI/PreferencesUI.py:3901 msgid "Z coord for Toolchange" msgstr "Coordonata Z pentru schimbarea uneltei" -#: flatcamGUI/ObjectUI.py:1914 +#: flatcamGUI/ObjectUI.py:2004 msgid "depth where to cut" msgstr "adâncimea de tăiere" -#: flatcamGUI/ObjectUI.py:1915 +#: flatcamGUI/ObjectUI.py:2005 msgid "height where to travel" msgstr "inălţimea deplasare" -#: flatcamGUI/ObjectUI.py:1916 flatcamGUI/PreferencesUI.py:3886 +#: flatcamGUI/ObjectUI.py:2006 flatcamGUI/PreferencesUI.py:3904 msgid "the step value for multidepth cut" msgstr "pasul pentru taierea progresiva" -#: flatcamGUI/ObjectUI.py:1918 flatcamGUI/PreferencesUI.py:3888 +#: flatcamGUI/ObjectUI.py:2008 flatcamGUI/PreferencesUI.py:3906 msgid "the value for the spindle speed" msgstr "valoarea viteza motor" -#: flatcamGUI/ObjectUI.py:1920 +#: flatcamGUI/ObjectUI.py:2010 msgid "time to dwell to allow the spindle to reach it's set RPM" msgstr "durata de asteptare ca motorul să ajunga la turatia setată" -#: flatcamGUI/ObjectUI.py:1936 +#: flatcamGUI/ObjectUI.py:2026 msgid "View CNC Code" msgstr "Vizualiz. codul CNC" -#: flatcamGUI/ObjectUI.py:1938 +#: flatcamGUI/ObjectUI.py:2028 msgid "" "Opens TAB to view/modify/print G-Code\n" "file." @@ -8630,11 +8562,11 @@ msgstr "" "Deschide un nou tab pentru a vizualiza, modifica\n" "sau tipari codul G-Code." -#: flatcamGUI/ObjectUI.py:1943 +#: flatcamGUI/ObjectUI.py:2033 msgid "Save CNC Code" msgstr "Salvează codul CNC" -#: flatcamGUI/ObjectUI.py:1945 +#: flatcamGUI/ObjectUI.py:2035 msgid "" "Opens dialog to save G-Code\n" "file." @@ -8642,78 +8574,78 @@ msgstr "" "Deshide o fereastra dialog pentru salvarea codului\n" "G-Code intr-un fişier." -#: flatcamGUI/ObjectUI.py:1965 +#: flatcamGUI/ObjectUI.py:2055 msgid "Script Object" msgstr "Editare Script" -#: flatcamGUI/ObjectUI.py:1987 flatcamGUI/ObjectUI.py:2049 +#: flatcamGUI/ObjectUI.py:2077 flatcamGUI/ObjectUI.py:2139 msgid "Auto Completer" msgstr "Autocompletare" -#: flatcamGUI/ObjectUI.py:1989 +#: flatcamGUI/ObjectUI.py:2079 msgid "This selects if the auto completer is enabled in the Script Editor." msgstr "" "Aceasta selectează dacă completatorul automat este activat în Script Editor." -#: flatcamGUI/ObjectUI.py:2020 +#: flatcamGUI/ObjectUI.py:2110 msgid "Document Object" msgstr "Obiect document" -#: flatcamGUI/ObjectUI.py:2051 +#: flatcamGUI/ObjectUI.py:2141 msgid "This selects if the auto completer is enabled in the Document Editor." msgstr "" "Aceasta selectează dacă completatorul automat este activat în Editorul de " "documente." -#: flatcamGUI/ObjectUI.py:2069 +#: flatcamGUI/ObjectUI.py:2159 msgid "Font Type" msgstr "Tipul Font" -#: flatcamGUI/ObjectUI.py:2086 +#: flatcamGUI/ObjectUI.py:2176 msgid "Font Size" msgstr "Dim. Font" -#: flatcamGUI/ObjectUI.py:2122 +#: flatcamGUI/ObjectUI.py:2212 msgid "Alignment" msgstr "Aliniere" -#: flatcamGUI/ObjectUI.py:2127 +#: flatcamGUI/ObjectUI.py:2217 msgid "Align Left" msgstr "Aliniați la stânga" -#: flatcamGUI/ObjectUI.py:2132 +#: flatcamGUI/ObjectUI.py:2222 msgid "Center" msgstr "Centru" -#: flatcamGUI/ObjectUI.py:2137 +#: flatcamGUI/ObjectUI.py:2227 msgid "Align Right" msgstr "Aliniați la dreapta" -#: flatcamGUI/ObjectUI.py:2142 +#: flatcamGUI/ObjectUI.py:2232 msgid "Justify" msgstr "Aliniere duala" -#: flatcamGUI/ObjectUI.py:2149 +#: flatcamGUI/ObjectUI.py:2239 msgid "Font Color" msgstr "Culoare FOnt" -#: flatcamGUI/ObjectUI.py:2151 +#: flatcamGUI/ObjectUI.py:2241 msgid "Set the font color for the selected text" msgstr "Setați culoarea fontului pentru textul selectat" -#: flatcamGUI/ObjectUI.py:2165 +#: flatcamGUI/ObjectUI.py:2255 msgid "Selection Color" msgstr "Culoare de selecție" -#: flatcamGUI/ObjectUI.py:2167 +#: flatcamGUI/ObjectUI.py:2257 msgid "Set the selection color when doing text selection." msgstr "Setați culoarea de selecție atunci când faceți selecția textului." -#: flatcamGUI/ObjectUI.py:2181 +#: flatcamGUI/ObjectUI.py:2271 msgid "Tab Size" msgstr "Dimens. filei" -#: flatcamGUI/ObjectUI.py:2183 +#: flatcamGUI/ObjectUI.py:2273 msgid "Set the tab size. In pixels. Default value is 80 pixels." msgstr "" "Setați dimensiunea filei. În pixeli. Valoarea implicită este de 80 pixeli." @@ -8763,10 +8695,8 @@ msgstr "" "Scopul este de a ilustra limitele suprafetei noastre de lucru." #: flatcamGUI/PreferencesUI.py:359 -#, fuzzy -#| msgid "Seg. X size" msgid "Wk. size" -msgstr "Dim. seg X" +msgstr "Dim. Sp. Lucru" #: flatcamGUI/PreferencesUI.py:361 msgid "" @@ -8778,24 +8708,28 @@ msgstr "" #: flatcamGUI/PreferencesUI.py:429 msgid "Wk. Orientation" -msgstr "" +msgstr "Orientare Sp. Lucru" -#: flatcamGUI/PreferencesUI.py:430 flatcamTools/ToolFilm.py:420 +#: flatcamGUI/PreferencesUI.py:430 flatcamGUI/PreferencesUI.py:4853 +#: flatcamTools/ToolFilm.py:420 msgid "" "Can be:\n" "- Portrait\n" "- Landscape" msgstr "" +"Poate fi:\n" +"- Portret\n" +"- Peisaj" -#: flatcamGUI/PreferencesUI.py:434 flatcamGUI/PreferencesUI.py:4839 +#: flatcamGUI/PreferencesUI.py:434 flatcamGUI/PreferencesUI.py:4857 #: flatcamTools/ToolFilm.py:424 msgid "Portrait" -msgstr "" +msgstr "Portret" -#: flatcamGUI/PreferencesUI.py:435 flatcamGUI/PreferencesUI.py:4840 +#: flatcamGUI/PreferencesUI.py:435 flatcamGUI/PreferencesUI.py:4858 #: flatcamTools/ToolFilm.py:425 msgid "Landscape" -msgstr "" +msgstr "Peisaj" #: flatcamGUI/PreferencesUI.py:447 msgid "Plot Fill" @@ -8902,7 +8836,7 @@ msgstr "Setează culoarea pentru forma geometrică din Editor." #: flatcamGUI/PreferencesUI.py:607 msgid "Editor Draw Sel." -msgstr "Sel. Desen Editor" +msgstr "Sel. in Editor Desen" #: flatcamGUI/PreferencesUI.py:609 msgid "Set the color of the shape when selected." @@ -9027,7 +8961,7 @@ msgstr "" #: flatcamGUI/PreferencesUI.py:806 msgid "Sel. Shape" -msgstr "Forma Sel." +msgstr "Forma de sel." #: flatcamGUI/PreferencesUI.py:808 msgid "" @@ -9196,7 +9130,7 @@ msgid "App Preferences" msgstr "Preferințele Aplicaţie" #: flatcamGUI/PreferencesUI.py:1063 flatcamGUI/PreferencesUI.py:1388 -#: flatcamGUI/PreferencesUI.py:1763 flatcamGUI/PreferencesUI.py:2684 +#: flatcamGUI/PreferencesUI.py:1763 flatcamGUI/PreferencesUI.py:2686 #: flatcamTools/ToolDistance.py:49 flatcamTools/ToolDistanceMin.py:49 #: flatcamTools/ToolPcbWizard.py:127 flatcamTools/ToolProperties.py:152 msgid "Units" @@ -9213,7 +9147,7 @@ msgstr "" #: flatcamGUI/PreferencesUI.py:1067 flatcamGUI/PreferencesUI.py:1394 #: flatcamGUI/PreferencesUI.py:1769 flatcamGUI/PreferencesUI.py:2223 -#: flatcamGUI/PreferencesUI.py:2690 flatcamTools/ToolCalculators.py:62 +#: flatcamGUI/PreferencesUI.py:2692 flatcamTools/ToolCalculators.py:62 #: flatcamTools/ToolPcbWizard.py:126 msgid "MM" msgstr "MM" @@ -9223,10 +9157,8 @@ msgid "IN" msgstr "Inch" #: flatcamGUI/PreferencesUI.py:1074 -#, fuzzy -#| msgid "Precision" msgid "Precision MM" -msgstr "Precizie" +msgstr "Precizie MM" #: flatcamGUI/PreferencesUI.py:1076 msgid "" @@ -9234,12 +9166,13 @@ msgid "" "when the set units are in METRIC system.\n" "Any change here require an application restart." msgstr "" +"Numărul de zecimale utilizate în întreaga aplicație\n" +"când unitățile setate sunt în sistem METRIC.\n" +"Orice modificare necesită repornirea aplicației." #: flatcamGUI/PreferencesUI.py:1088 -#, fuzzy -#| msgid "Precision" msgid "Precision INCH" -msgstr "Precizie" +msgstr "Precizie INCH" #: flatcamGUI/PreferencesUI.py:1090 msgid "" @@ -9247,6 +9180,9 @@ msgid "" "when the set units are in INCH system.\n" "Any change here require an application restart." msgstr "" +"Numărul de zecimale utilizate în întreaga aplicație\n" +"când unitățile setate sunt în sistem INCH.\n" +"Orice modificare necesită repornirea aplicației." #: flatcamGUI/PreferencesUI.py:1102 msgid "Graphic Engine" @@ -9516,7 +9452,7 @@ msgstr "" #: flatcamGUI/PreferencesUI.py:1310 msgid "Allow Machinist Unsafe Settings" -msgstr "" +msgstr "Permiteți setări nesigure pt Mașiniști" #: flatcamGUI/PreferencesUI.py:1312 msgid "" @@ -9526,13 +9462,22 @@ msgid "" "It will applied at the next application start.\n" "<>: Don't change this unless you know what you are doing !!!" msgstr "" +"Dacă este bifat, unele dintre setările aplicației vor fi permise\n" +"pentru a avea valori de obicei nesigure de utilizat.\n" +"Cum ar fi valori negative pt Z Travel sau valori positive pt Z Tăieri .\n" +"Se va aplica la următoarea pornire a aplicatiei.\n" +"<>: Nu schimbați acest lucru decât dacă știți ce faceți !!!" #: flatcamGUI/PreferencesUI.py:1333 msgid "Gerber General" msgstr "Gerber General" -#: flatcamGUI/PreferencesUI.py:1365 flatcamGUI/PreferencesUI.py:3126 -#: flatcamGUI/PreferencesUI.py:3646 flatcamGUI/PreferencesUI.py:6061 +#: flatcamGUI/PreferencesUI.py:1351 +msgid "M-Color" +msgstr "M-Color" + +#: flatcamGUI/PreferencesUI.py:1365 flatcamGUI/PreferencesUI.py:3128 +#: flatcamGUI/PreferencesUI.py:3664 flatcamGUI/PreferencesUI.py:6079 msgid "Circle Steps" msgstr "Pași pt. cerc" @@ -9563,13 +9508,13 @@ msgstr "Unitătile de măsură folosite in fişierul Gerber." #: flatcamGUI/PreferencesUI.py:1393 flatcamGUI/PreferencesUI.py:1768 #: flatcamGUI/PreferencesUI.py:2124 flatcamGUI/PreferencesUI.py:2222 -#: flatcamGUI/PreferencesUI.py:2689 flatcamTools/ToolCalculators.py:61 +#: flatcamGUI/PreferencesUI.py:2691 flatcamTools/ToolCalculators.py:61 #: flatcamTools/ToolPcbWizard.py:125 msgid "INCH" msgstr "Inch" #: flatcamGUI/PreferencesUI.py:1403 flatcamGUI/PreferencesUI.py:1817 -#: flatcamGUI/PreferencesUI.py:2757 +#: flatcamGUI/PreferencesUI.py:2759 msgid "Zeros" msgstr "Zero-uri" @@ -9591,13 +9536,13 @@ msgstr "" "(Invers fată de fişierele Excellon)." #: flatcamGUI/PreferencesUI.py:1413 flatcamGUI/PreferencesUI.py:1827 -#: flatcamGUI/PreferencesUI.py:2198 flatcamGUI/PreferencesUI.py:2767 +#: flatcamGUI/PreferencesUI.py:2198 flatcamGUI/PreferencesUI.py:2769 #: flatcamTools/ToolPcbWizard.py:111 msgid "LZ" msgstr "LZ" #: flatcamGUI/PreferencesUI.py:1414 flatcamGUI/PreferencesUI.py:1828 -#: flatcamGUI/PreferencesUI.py:2199 flatcamGUI/PreferencesUI.py:2768 +#: flatcamGUI/PreferencesUI.py:2199 flatcamGUI/PreferencesUI.py:2770 #: flatcamTools/ToolPcbWizard.py:112 msgid "TZ" msgstr "TZ" @@ -9606,8 +9551,8 @@ msgstr "TZ" msgid "Gerber Options" msgstr "Opțiuni Gerber" -#: flatcamGUI/PreferencesUI.py:1509 flatcamGUI/PreferencesUI.py:3583 -#: flatcamGUI/PreferencesUI.py:4057 flatcamTools/ToolNonCopperClear.py:170 +#: flatcamGUI/PreferencesUI.py:1509 flatcamGUI/PreferencesUI.py:3601 +#: flatcamGUI/PreferencesUI.py:4075 flatcamTools/ToolNonCopperClear.py:170 msgid "Conv." msgstr "Conv." @@ -9619,8 +9564,8 @@ msgstr "Combina" msgid "Gerber Adv. Options" msgstr "Opțiuni Av. Gerber" -#: flatcamGUI/PreferencesUI.py:1595 flatcamGUI/PreferencesUI.py:2542 -#: flatcamGUI/PreferencesUI.py:3394 +#: flatcamGUI/PreferencesUI.py:1595 flatcamGUI/PreferencesUI.py:2544 +#: flatcamGUI/PreferencesUI.py:3399 msgid "Advanced Options" msgstr "Opțiuni avansate" @@ -9650,16 +9595,12 @@ msgstr "" "posibil afisatele marcaje ale aperturilor." #: flatcamGUI/PreferencesUI.py:1693 -#, fuzzy -#| msgid "Get Exteriors" msgid "Exterior" -msgstr "Obtine Exterior" +msgstr "Exterior" #: flatcamGUI/PreferencesUI.py:1694 -#, fuzzy -#| msgid "Get Interiors" msgid "Interior" -msgstr "Obtine Interioare" +msgstr "Interior" #: flatcamGUI/PreferencesUI.py:1702 msgid "" @@ -9675,8 +9616,8 @@ msgstr "" "valoarea de bază.\n" "<>: Nu schimba această valoare decat dacă stii ce faci !!!" -#: flatcamGUI/PreferencesUI.py:1707 flatcamGUI/PreferencesUI.py:4803 -#: flatcamGUI/PreferencesUI.py:6359 flatcamTools/ToolFiducials.py:201 +#: flatcamGUI/PreferencesUI.py:1707 flatcamGUI/PreferencesUI.py:4821 +#: flatcamGUI/PreferencesUI.py:6377 flatcamTools/ToolFiducials.py:201 #: flatcamTools/ToolFilm.py:255 flatcamTools/ToolProperties.py:411 #: flatcamTools/ToolProperties.py:426 flatcamTools/ToolProperties.py:429 #: flatcamTools/ToolProperties.py:432 flatcamTools/ToolProperties.py:456 @@ -9709,7 +9650,7 @@ msgstr "Toleranță pentru simplificarea poligoanelor." msgid "Gerber Export" msgstr "Export Gerber" -#: flatcamGUI/PreferencesUI.py:1752 flatcamGUI/PreferencesUI.py:2673 +#: flatcamGUI/PreferencesUI.py:1752 flatcamGUI/PreferencesUI.py:2675 msgid "Export Options" msgstr "Opțiuni de Export" @@ -9722,7 +9663,7 @@ msgstr "" "se exporta un fişier Gerber folosind:\n" "File -> Exportă -> Exportă Gerber." -#: flatcamGUI/PreferencesUI.py:1777 flatcamGUI/PreferencesUI.py:2698 +#: flatcamGUI/PreferencesUI.py:1777 flatcamGUI/PreferencesUI.py:2700 msgid "Int/Decimals" msgstr "Înt/Zecimale" @@ -9754,8 +9695,8 @@ msgstr "" msgid "A list of Gerber Editor parameters." msgstr "O listă de parametri ai Editorului Gerber." -#: flatcamGUI/PreferencesUI.py:1861 flatcamGUI/PreferencesUI.py:2832 -#: flatcamGUI/PreferencesUI.py:3561 flatcamGUI/PreferencesUI.py:6022 +#: flatcamGUI/PreferencesUI.py:1861 flatcamGUI/PreferencesUI.py:2834 +#: flatcamGUI/PreferencesUI.py:3579 flatcamGUI/PreferencesUI.py:6040 msgid "Selection limit" msgstr "Limita selecţie" @@ -9800,8 +9741,8 @@ msgstr "" msgid "Aperture Dimensions" msgstr "Dim. aper" -#: flatcamGUI/PreferencesUI.py:1928 flatcamGUI/PreferencesUI.py:3144 -#: flatcamGUI/PreferencesUI.py:3966 +#: flatcamGUI/PreferencesUI.py:1928 flatcamGUI/PreferencesUI.py:3146 +#: flatcamGUI/PreferencesUI.py:3984 msgid "Diameters of the cutting tools, separated by ','" msgstr "Diametrele pentru unelte tăietoare, separate cu virgula" @@ -9809,8 +9750,8 @@ msgstr "Diametrele pentru unelte tăietoare, separate cu virgula" msgid "Linear Pad Array" msgstr "Arie Lineară de Sloturi" -#: flatcamGUI/PreferencesUI.py:1938 flatcamGUI/PreferencesUI.py:2876 -#: flatcamGUI/PreferencesUI.py:3024 +#: flatcamGUI/PreferencesUI.py:1938 flatcamGUI/PreferencesUI.py:2878 +#: flatcamGUI/PreferencesUI.py:3026 msgid "Linear Direction" msgstr "Direcție liniară" @@ -9818,13 +9759,13 @@ msgstr "Direcție liniară" msgid "Circular Pad Array" msgstr "Arie de Sloturi circ" -#: flatcamGUI/PreferencesUI.py:1982 flatcamGUI/PreferencesUI.py:2922 -#: flatcamGUI/PreferencesUI.py:3072 +#: flatcamGUI/PreferencesUI.py:1982 flatcamGUI/PreferencesUI.py:2924 +#: flatcamGUI/PreferencesUI.py:3074 msgid "Circular Direction" msgstr "Direcția circulară" -#: flatcamGUI/PreferencesUI.py:1984 flatcamGUI/PreferencesUI.py:2924 -#: flatcamGUI/PreferencesUI.py:3074 +#: flatcamGUI/PreferencesUI.py:1984 flatcamGUI/PreferencesUI.py:2926 +#: flatcamGUI/PreferencesUI.py:3076 msgid "" "Direction for circular array.\n" "Can be CW = clockwise or CCW = counter clockwise." @@ -9833,8 +9774,8 @@ msgstr "" "Poate fi CW = in sensul acelor de ceasornic sau CCW = invers acelor de " "ceasornic." -#: flatcamGUI/PreferencesUI.py:1995 flatcamGUI/PreferencesUI.py:2935 -#: flatcamGUI/PreferencesUI.py:3085 +#: flatcamGUI/PreferencesUI.py:1995 flatcamGUI/PreferencesUI.py:2937 +#: flatcamGUI/PreferencesUI.py:3087 msgid "Circular Angle" msgstr "Unghi circular" @@ -9927,7 +9868,7 @@ msgstr "" "adica 2 parti intregi și 4 zecimale" #: flatcamGUI/PreferencesUI.py:2134 flatcamGUI/PreferencesUI.py:2165 -#: flatcamGUI/PreferencesUI.py:2712 +#: flatcamGUI/PreferencesUI.py:2714 msgid "" "This numbers signify the number of digits in\n" "the whole part of Excellon coordinates." @@ -9936,7 +9877,7 @@ msgstr "" "intreaga a coordonatelor Excellon." #: flatcamGUI/PreferencesUI.py:2147 flatcamGUI/PreferencesUI.py:2178 -#: flatcamGUI/PreferencesUI.py:2725 +#: flatcamGUI/PreferencesUI.py:2727 msgid "" "This numbers signify the number of digits in\n" "the decimal part of Excellon coordinates." @@ -9958,7 +9899,7 @@ msgstr "" msgid "Default Zeros" msgstr "Suprimare Zero" -#: flatcamGUI/PreferencesUI.py:2190 flatcamGUI/PreferencesUI.py:2760 +#: flatcamGUI/PreferencesUI.py:2190 flatcamGUI/PreferencesUI.py:2762 msgid "" "This sets the type of Excellon zeros.\n" "If LZ then Leading Zeros are kept and\n" @@ -10097,11 +10038,11 @@ msgstr "" "Parametrii folositi pentru a crea un obiect FlatCAM tip CNCJob\n" "din acest obiect Excellon." -#: flatcamGUI/PreferencesUI.py:2442 flatcamGUI/PreferencesUI.py:3353 +#: flatcamGUI/PreferencesUI.py:2444 flatcamGUI/PreferencesUI.py:3358 msgid "Duration" msgstr "Durată" -#: flatcamGUI/PreferencesUI.py:2472 +#: flatcamGUI/PreferencesUI.py:2474 msgid "" "Choose what to use for GCode generation:\n" "'Drills', 'Slots' or 'Both'.\n" @@ -10115,19 +10056,19 @@ msgstr "" "Când se alege Sloturi sau Ambele, sloturile vor fi convertite in serii de " "găuri." -#: flatcamGUI/PreferencesUI.py:2490 +#: flatcamGUI/PreferencesUI.py:2492 msgid "Create Geometry for milling holes." msgstr "Crează un obiect tip Geometrie pentru frezarea găurilor." -#: flatcamGUI/PreferencesUI.py:2522 +#: flatcamGUI/PreferencesUI.py:2524 msgid "Defaults" msgstr "Val. Implicite" -#: flatcamGUI/PreferencesUI.py:2535 +#: flatcamGUI/PreferencesUI.py:2537 msgid "Excellon Adv. Options" msgstr "Opțiuni Avans. Excellon" -#: flatcamGUI/PreferencesUI.py:2544 +#: flatcamGUI/PreferencesUI.py:2546 msgid "" "A list of Excellon advanced parameters.\n" "Those parameters are available only for\n" @@ -10138,21 +10079,19 @@ msgstr "" "când este selectat Nivelul Avansat pentru\n" "aplicaţie in Preferințe - > General." -#: flatcamGUI/PreferencesUI.py:2565 +#: flatcamGUI/PreferencesUI.py:2567 msgid "Toolchange X,Y" msgstr "X,Y schimb. unealtă" -#: flatcamGUI/PreferencesUI.py:2567 flatcamGUI/PreferencesUI.py:3408 +#: flatcamGUI/PreferencesUI.py:2569 flatcamGUI/PreferencesUI.py:3413 msgid "Toolchange X,Y position." msgstr "Poziţia X,Y in format (x,y) unde se face schimbarea uneltei." -#: flatcamGUI/PreferencesUI.py:2624 flatcamGUI/PreferencesUI.py:3482 -#, fuzzy -#| msgid "Spindle dir." +#: flatcamGUI/PreferencesUI.py:2626 flatcamGUI/PreferencesUI.py:3500 msgid "Spindle direction" -msgstr "Directie Motor" +msgstr "Directie rotatie Motor" -#: flatcamGUI/PreferencesUI.py:2626 flatcamGUI/PreferencesUI.py:3484 +#: flatcamGUI/PreferencesUI.py:2628 flatcamGUI/PreferencesUI.py:3502 msgid "" "This sets the direction that the spindle is rotating.\n" "It can be either:\n" @@ -10164,11 +10103,11 @@ msgstr "" "- CW = in sensul acelor de ceasornic\n" "- CCW = in sensul invers acelor de ceasornic" -#: flatcamGUI/PreferencesUI.py:2637 flatcamGUI/PreferencesUI.py:3496 +#: flatcamGUI/PreferencesUI.py:2639 flatcamGUI/PreferencesUI.py:3514 msgid "Fast Plunge" msgstr "Plonjare rapidă" -#: flatcamGUI/PreferencesUI.py:2639 flatcamGUI/PreferencesUI.py:3498 +#: flatcamGUI/PreferencesUI.py:2641 flatcamGUI/PreferencesUI.py:3516 msgid "" "By checking this, the vertical move from\n" "Z_Toolchange to Z_move is done with G0,\n" @@ -10185,11 +10124,11 @@ msgstr "" "schimba\n" "unealta. Daca aveti ceva plasat sub unealtă ceva se va strica." -#: flatcamGUI/PreferencesUI.py:2648 +#: flatcamGUI/PreferencesUI.py:2650 msgid "Fast Retract" msgstr "Retragere rapida" -#: flatcamGUI/PreferencesUI.py:2650 +#: flatcamGUI/PreferencesUI.py:2652 msgid "" "Exit hole strategy.\n" " - When uncheked, while exiting the drilled hole the drill bit\n" @@ -10208,11 +10147,11 @@ msgstr "" "adâncimea\n" "de deplasare cu viteza maxima G0, intr-o singură mișcare." -#: flatcamGUI/PreferencesUI.py:2669 +#: flatcamGUI/PreferencesUI.py:2671 msgid "Excellon Export" msgstr "Export Excellon" -#: flatcamGUI/PreferencesUI.py:2675 +#: flatcamGUI/PreferencesUI.py:2677 msgid "" "The parameters set here are used in the file exported\n" "when using the File -> Export -> Export Excellon menu entry." @@ -10221,11 +10160,11 @@ msgstr "" "se exporta un fişier Excellon folosind:\n" "File -> Exporta -> Exporta Excellon." -#: flatcamGUI/PreferencesUI.py:2686 flatcamGUI/PreferencesUI.py:2692 +#: flatcamGUI/PreferencesUI.py:2688 flatcamGUI/PreferencesUI.py:2694 msgid "The units used in the Excellon file." msgstr "Unitatile de masura folosite in fişierul Excellon." -#: flatcamGUI/PreferencesUI.py:2700 +#: flatcamGUI/PreferencesUI.py:2702 msgid "" "The NC drill files, usually named Excellon files\n" "are files that can be found in different formats.\n" @@ -10237,11 +10176,11 @@ msgstr "" "Aici se setează formatul Excellon când nu se utilizează\n" "coordonate cu zecimale." -#: flatcamGUI/PreferencesUI.py:2734 +#: flatcamGUI/PreferencesUI.py:2736 msgid "Format" msgstr "Format" -#: flatcamGUI/PreferencesUI.py:2736 flatcamGUI/PreferencesUI.py:2746 +#: flatcamGUI/PreferencesUI.py:2738 flatcamGUI/PreferencesUI.py:2748 msgid "" "Select the kind of coordinates format used.\n" "Coordinates can be saved with decimal point or without.\n" @@ -10260,15 +10199,15 @@ msgstr "" "- LZ = zerourile prefix sunt pastrate și cele sufix eliminate\n" "- TZ = zerourile prefix sunt eliminate și cele sufix pastrate." -#: flatcamGUI/PreferencesUI.py:2743 +#: flatcamGUI/PreferencesUI.py:2745 msgid "Decimal" msgstr "Zecimale" -#: flatcamGUI/PreferencesUI.py:2744 +#: flatcamGUI/PreferencesUI.py:2746 msgid "No-Decimal" msgstr "Fără zecimale" -#: flatcamGUI/PreferencesUI.py:2770 +#: flatcamGUI/PreferencesUI.py:2772 msgid "" "This sets the default type of Excellon zeros.\n" "If LZ then Leading Zeros are kept and\n" @@ -10280,11 +10219,11 @@ msgstr "" "- LZ = zerourile prefix sunt pastrate și cele sufix eliminate\n" "- TZ = zerourile prefix sunt eliminate și cele sufix pastrate." -#: flatcamGUI/PreferencesUI.py:2780 +#: flatcamGUI/PreferencesUI.py:2782 msgid "Slot type" msgstr "Tip slot" -#: flatcamGUI/PreferencesUI.py:2783 flatcamGUI/PreferencesUI.py:2793 +#: flatcamGUI/PreferencesUI.py:2785 flatcamGUI/PreferencesUI.py:2795 msgid "" "This sets how the slots will be exported.\n" "If ROUTED then the slots will be routed\n" @@ -10298,19 +10237,19 @@ msgstr "" "Dacă sunt Găurite (G85) sloturile vor fi exportate\n" "folosind comanda slotului găurit (G85)." -#: flatcamGUI/PreferencesUI.py:2790 +#: flatcamGUI/PreferencesUI.py:2792 msgid "Routed" msgstr "Decupate" -#: flatcamGUI/PreferencesUI.py:2791 +#: flatcamGUI/PreferencesUI.py:2793 msgid "Drilled(G85)" msgstr "Găurite(G85)" -#: flatcamGUI/PreferencesUI.py:2824 +#: flatcamGUI/PreferencesUI.py:2826 msgid "A list of Excellon Editor parameters." msgstr "O listă de parametri ai Editorului Excellon." -#: flatcamGUI/PreferencesUI.py:2834 +#: flatcamGUI/PreferencesUI.py:2836 msgid "" "Set the number of selected Excellon geometry\n" "items above which the utility geometry\n" @@ -10324,19 +10263,19 @@ msgstr "" "Creste performanta cand se muta un număr mai mare de \n" "elemente geometrice." -#: flatcamGUI/PreferencesUI.py:2847 flatcamGUI/PreferencesUI.py:4037 +#: flatcamGUI/PreferencesUI.py:2849 flatcamGUI/PreferencesUI.py:4055 msgid "New Tool Dia" msgstr "Dia. nou unealtă" -#: flatcamGUI/PreferencesUI.py:2872 +#: flatcamGUI/PreferencesUI.py:2874 msgid "Linear Drill Array" msgstr "Arie lineară de găuri" -#: flatcamGUI/PreferencesUI.py:2918 +#: flatcamGUI/PreferencesUI.py:2920 msgid "Circular Drill Array" msgstr "Arie circ. de găuri" -#: flatcamGUI/PreferencesUI.py:2988 +#: flatcamGUI/PreferencesUI.py:2990 msgid "" "Angle at which the slot is placed.\n" "The precision is of max 2 decimals.\n" @@ -10348,19 +10287,19 @@ msgstr "" "Valoarea minimă este: -359,99 grade.\n" "Valoarea maximă este: 360,00 grade." -#: flatcamGUI/PreferencesUI.py:3007 +#: flatcamGUI/PreferencesUI.py:3009 msgid "Linear Slot Array" msgstr "Arie lineară de Sloturi" -#: flatcamGUI/PreferencesUI.py:3068 +#: flatcamGUI/PreferencesUI.py:3070 msgid "Circular Slot Array" msgstr "Arie circ. de Sloturi" -#: flatcamGUI/PreferencesUI.py:3106 +#: flatcamGUI/PreferencesUI.py:3108 msgid "Geometry General" msgstr "Geometrie General" -#: flatcamGUI/PreferencesUI.py:3128 +#: flatcamGUI/PreferencesUI.py:3130 msgid "" "The number of circle steps for Geometry \n" "circle and arc shapes linear approximation." @@ -10368,11 +10307,11 @@ msgstr "" "Numărul de segmente utilizate pentru\n" "aproximarea lineara a Geometriilor circulare." -#: flatcamGUI/PreferencesUI.py:3159 +#: flatcamGUI/PreferencesUI.py:3161 msgid "Geometry Options" msgstr "Opțiuni Geometrie" -#: flatcamGUI/PreferencesUI.py:3167 +#: flatcamGUI/PreferencesUI.py:3169 msgid "" "Create a CNC Job object\n" "tracing the contours of this\n" @@ -10381,11 +10320,11 @@ msgstr "" "Crează un obiect CNCJob care urmăreste conturul\n" "acestui obiect tip Geometrie." -#: flatcamGUI/PreferencesUI.py:3209 +#: flatcamGUI/PreferencesUI.py:3211 msgid "Depth/Pass" msgstr "Adânc./Trecere" -#: flatcamGUI/PreferencesUI.py:3211 +#: flatcamGUI/PreferencesUI.py:3213 msgid "" "The depth to cut on each pass,\n" "when multidepth is enabled.\n" @@ -10398,11 +10337,11 @@ msgstr "" "Valoarea este pozitivă desi reprezinta o fracţie\n" "a adancimii de tăiere care este o valoare negativă." -#: flatcamGUI/PreferencesUI.py:3388 +#: flatcamGUI/PreferencesUI.py:3393 msgid "Geometry Adv. Options" msgstr "Opțiuni Avans. Geometrie" -#: flatcamGUI/PreferencesUI.py:3396 +#: flatcamGUI/PreferencesUI.py:3401 msgid "" "A list of Geometry advanced parameters.\n" "Those parameters are available only for\n" @@ -10413,12 +10352,13 @@ msgstr "" "când este selectat Nivelul Avansat pentru\n" "aplicaţie in Preferințe - > General." -#: flatcamGUI/PreferencesUI.py:3406 flatcamGUI/PreferencesUI.py:5452 +#: flatcamGUI/PreferencesUI.py:3411 flatcamGUI/PreferencesUI.py:5470 +#: flatcamGUI/PreferencesUI.py:6517 flatcamTools/ToolCalibration.py:125 #: flatcamTools/ToolSolderPaste.py:239 msgid "Toolchange X-Y" msgstr "X,Y schimb. unealtă" -#: flatcamGUI/PreferencesUI.py:3417 +#: flatcamGUI/PreferencesUI.py:3422 msgid "" "Height of the tool just after starting the work.\n" "Delete the value if you don't need this feature." @@ -10426,13 +10366,11 @@ msgstr "" "Înălţimea uneltei la care se gaseste la inceputul lucrului.\n" "Lasa câmpul gol daca nu folosești aceasta." -#: flatcamGUI/PreferencesUI.py:3508 -#, fuzzy -#| msgid "Seg. X size" +#: flatcamGUI/PreferencesUI.py:3526 msgid "Segment X size" msgstr "Dim. seg X" -#: flatcamGUI/PreferencesUI.py:3510 +#: flatcamGUI/PreferencesUI.py:3528 msgid "" "The size of the trace segment on the X axis.\n" "Useful for auto-leveling.\n" @@ -10443,13 +10381,11 @@ msgstr "" "O valoare de 0 inseamnaca nu se face segmentare\n" "pe axa X." -#: flatcamGUI/PreferencesUI.py:3524 -#, fuzzy -#| msgid "Seg. Y size" +#: flatcamGUI/PreferencesUI.py:3542 msgid "Segment Y size" msgstr "Dim. seg Y" -#: flatcamGUI/PreferencesUI.py:3526 +#: flatcamGUI/PreferencesUI.py:3544 msgid "" "The size of the trace segment on the Y axis.\n" "Useful for auto-leveling.\n" @@ -10460,15 +10396,15 @@ msgstr "" "O valoare de 0 inseamnaca nu se face segmentare\n" "pe axa Y." -#: flatcamGUI/PreferencesUI.py:3547 +#: flatcamGUI/PreferencesUI.py:3565 msgid "Geometry Editor" msgstr "Editor Geometrii" -#: flatcamGUI/PreferencesUI.py:3553 +#: flatcamGUI/PreferencesUI.py:3571 msgid "A list of Geometry Editor parameters." msgstr "O lista de parametri ai Editorului de Geometrii." -#: flatcamGUI/PreferencesUI.py:3563 flatcamGUI/PreferencesUI.py:6024 +#: flatcamGUI/PreferencesUI.py:3581 flatcamGUI/PreferencesUI.py:6042 msgid "" "Set the number of selected geometry\n" "items above which the utility geometry\n" @@ -10482,11 +10418,11 @@ msgstr "" "Creste performanta cand se muta un număr mai mare de \n" "elemente geometrice." -#: flatcamGUI/PreferencesUI.py:3595 +#: flatcamGUI/PreferencesUI.py:3613 msgid "CNC Job General" msgstr "CNCJob General" -#: flatcamGUI/PreferencesUI.py:3648 +#: flatcamGUI/PreferencesUI.py:3666 msgid "" "The number of circle steps for GCode \n" "circle and arc shapes linear approximation." @@ -10494,21 +10430,21 @@ msgstr "" "Numărul de segmente utilizate pentru\n" "aproximarea lineara a reprezentarilor GCodului circular." -#: flatcamGUI/PreferencesUI.py:3657 +#: flatcamGUI/PreferencesUI.py:3675 msgid "Travel dia" msgstr "Dia Deplasare" -#: flatcamGUI/PreferencesUI.py:3659 +#: flatcamGUI/PreferencesUI.py:3677 msgid "" "The width of the travel lines to be\n" "rendered in the plot." msgstr "Diametrul liniilor de deplasare care să fie redate prin afișare." -#: flatcamGUI/PreferencesUI.py:3675 +#: flatcamGUI/PreferencesUI.py:3693 msgid "Coordinates decimals" msgstr "Coord. zecimale" -#: flatcamGUI/PreferencesUI.py:3677 +#: flatcamGUI/PreferencesUI.py:3695 msgid "" "The number of decimals to be used for \n" "the X, Y, Z coordinates in CNC code (GCODE, etc.)" @@ -10516,11 +10452,11 @@ msgstr "" "Numărul de zecimale care să fie folosit in \n" "coordonatele X,Y,Z in codul CNC (GCode etc)." -#: flatcamGUI/PreferencesUI.py:3688 +#: flatcamGUI/PreferencesUI.py:3706 msgid "Feedrate decimals" msgstr "Feedrate zecimale" -#: flatcamGUI/PreferencesUI.py:3690 +#: flatcamGUI/PreferencesUI.py:3708 msgid "" "The number of decimals to be used for \n" "the Feedrate parameter in CNC code (GCODE, etc.)" @@ -10528,11 +10464,11 @@ msgstr "" "Numărul de zecimale care să fie folosit in \n" "parametrul >Feedrate< in codul CNC (GCode etc)." -#: flatcamGUI/PreferencesUI.py:3701 +#: flatcamGUI/PreferencesUI.py:3719 msgid "Coordinates type" msgstr "Tip coordinate" -#: flatcamGUI/PreferencesUI.py:3703 +#: flatcamGUI/PreferencesUI.py:3721 msgid "" "The type of coordinates to be used in Gcode.\n" "Can be:\n" @@ -10544,81 +10480,83 @@ msgstr "" "- Absolut G90 -> referinta este originea x=0, y=0\n" "- Incrementator G91 -> referinta este pozitia anterioară" -#: flatcamGUI/PreferencesUI.py:3709 +#: flatcamGUI/PreferencesUI.py:3727 msgid "Absolute G90" msgstr "Absolut G90" -#: flatcamGUI/PreferencesUI.py:3710 +#: flatcamGUI/PreferencesUI.py:3728 msgid "Incremental G91" msgstr "Incrementator G91" -#: flatcamGUI/PreferencesUI.py:3720 +#: flatcamGUI/PreferencesUI.py:3738 msgid "Force Windows style line-ending" -msgstr "" +msgstr "Forțați finalizarea liniei în stil Windows" -#: flatcamGUI/PreferencesUI.py:3722 +#: flatcamGUI/PreferencesUI.py:3740 msgid "" "When checked will force a Windows style line-ending\n" "(\\r\\n) on non-Windows OS's." msgstr "" +"Când este bifat, va forța o linie de finalizare a stilului Windows\n" +"(\\r \\n) pe sistemele de operare non-Windows." -#: flatcamGUI/PreferencesUI.py:3736 +#: flatcamGUI/PreferencesUI.py:3754 msgid "CNC Job Options" msgstr "Opțiuni CNCJob" -#: flatcamGUI/PreferencesUI.py:3740 +#: flatcamGUI/PreferencesUI.py:3758 msgid "Export G-Code" msgstr "Exportă G-Code" -#: flatcamGUI/PreferencesUI.py:3756 +#: flatcamGUI/PreferencesUI.py:3774 msgid "Prepend to G-Code" msgstr "Adaugă la inceputul G-Code" -#: flatcamGUI/PreferencesUI.py:3772 +#: flatcamGUI/PreferencesUI.py:3790 msgid "Append to G-Code" msgstr "Adaugă la sfârşitul G-Code" -#: flatcamGUI/PreferencesUI.py:3798 +#: flatcamGUI/PreferencesUI.py:3816 msgid "CNC Job Adv. Options" msgstr "Opțiuni Avans. CNCJob" -#: flatcamGUI/PreferencesUI.py:3884 +#: flatcamGUI/PreferencesUI.py:3902 msgid "Z depth for the cut" msgstr "Z adâncimea de tăiere" -#: flatcamGUI/PreferencesUI.py:3885 +#: flatcamGUI/PreferencesUI.py:3903 msgid "Z height for travel" msgstr "Z Înălţimea deplasare" -#: flatcamGUI/PreferencesUI.py:3891 +#: flatcamGUI/PreferencesUI.py:3909 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/PreferencesUI.py:3910 +#: flatcamGUI/PreferencesUI.py:3928 msgid "Annotation Size" msgstr "Dim. anotate" -#: flatcamGUI/PreferencesUI.py:3912 +#: flatcamGUI/PreferencesUI.py:3930 msgid "The font size of the annotation text. In pixels." msgstr "Dimensiunea fontului pt. textul cu notatii. In pixeli." -#: flatcamGUI/PreferencesUI.py:3922 +#: flatcamGUI/PreferencesUI.py:3940 msgid "Annotation Color" msgstr "Culoarea anotatii" -#: flatcamGUI/PreferencesUI.py:3924 +#: flatcamGUI/PreferencesUI.py:3942 msgid "Set the font color for the annotation texts." msgstr "Setează culoarea pentru textul cu anotatii." -#: flatcamGUI/PreferencesUI.py:3950 +#: flatcamGUI/PreferencesUI.py:3968 msgid "NCC Tool Options" msgstr "Opțiuni Unealta NCC" -#: flatcamGUI/PreferencesUI.py:3964 flatcamGUI/PreferencesUI.py:5362 +#: flatcamGUI/PreferencesUI.py:3982 flatcamGUI/PreferencesUI.py:5380 msgid "Tools dia" msgstr "Dia unealtă" -#: flatcamGUI/PreferencesUI.py:3975 flatcamGUI/PreferencesUI.py:3983 +#: flatcamGUI/PreferencesUI.py:3993 flatcamGUI/PreferencesUI.py:4001 #: flatcamTools/ToolNonCopperClear.py:215 #: flatcamTools/ToolNonCopperClear.py:223 msgid "" @@ -10630,11 +10568,11 @@ msgstr "" "- 'Forma-V'\n" "- Circular" -#: flatcamGUI/PreferencesUI.py:3980 flatcamTools/ToolNonCopperClear.py:220 +#: flatcamGUI/PreferencesUI.py:3998 flatcamTools/ToolNonCopperClear.py:220 msgid "V-shape" msgstr "Forma-V" -#: flatcamGUI/PreferencesUI.py:4020 flatcamGUI/PreferencesUI.py:4029 +#: flatcamGUI/PreferencesUI.py:4038 flatcamGUI/PreferencesUI.py:4047 #: flatcamTools/ToolNonCopperClear.py:256 #: flatcamTools/ToolNonCopperClear.py:264 msgid "" @@ -10644,13 +10582,12 @@ msgstr "" "Adancimea de tăiere in material. Valoare negative.\n" "In unitătile FlatCAM." -#: flatcamGUI/PreferencesUI.py:4039 -#, fuzzy -#| msgid "Diameter for the new tool to add in the Tool Table" +#: flatcamGUI/PreferencesUI.py:4057 msgid "The new tool diameter (cut width) to add in the tool table." -msgstr "Diametrul pentru noua unealtă care să fie adăugată in Tabela de Unelte" +msgstr "" +"Noul diametru al sculei (lățimea tăiată) pt adăugare în tabelul Unelte." -#: flatcamGUI/PreferencesUI.py:4051 flatcamGUI/PreferencesUI.py:4059 +#: flatcamGUI/PreferencesUI.py:4069 flatcamGUI/PreferencesUI.py:4077 #: flatcamTools/ToolNonCopperClear.py:164 #: flatcamTools/ToolNonCopperClear.py:172 msgid "" @@ -10663,13 +10600,13 @@ msgstr "" "uneltei\n" "- conventional -> pentru cazul când nu exista o compensare a 'backlash-ului'" -#: flatcamGUI/PreferencesUI.py:4068 flatcamGUI/PreferencesUI.py:4493 +#: flatcamGUI/PreferencesUI.py:4086 flatcamGUI/PreferencesUI.py:4511 #: flatcamTools/ToolNonCopperClear.py:181 flatcamTools/ToolPaint.py:153 msgid "Tool order" msgstr "Ordine unelte" -#: flatcamGUI/PreferencesUI.py:4069 flatcamGUI/PreferencesUI.py:4079 -#: flatcamGUI/PreferencesUI.py:4494 flatcamGUI/PreferencesUI.py:4504 +#: flatcamGUI/PreferencesUI.py:4087 flatcamGUI/PreferencesUI.py:4097 +#: flatcamGUI/PreferencesUI.py:4512 flatcamGUI/PreferencesUI.py:4522 #: flatcamTools/ToolNonCopperClear.py:182 #: flatcamTools/ToolNonCopperClear.py:192 flatcamTools/ToolPaint.py:154 #: flatcamTools/ToolPaint.py:164 @@ -10691,29 +10628,17 @@ msgstr "" "AVERTIZARE: folosirea prelucrării 'resturi' va seta automat ordonarea\n" "în sens invers și va dezactiva acest control." -#: flatcamGUI/PreferencesUI.py:4077 flatcamGUI/PreferencesUI.py:4502 +#: flatcamGUI/PreferencesUI.py:4095 flatcamGUI/PreferencesUI.py:4520 #: flatcamTools/ToolNonCopperClear.py:190 flatcamTools/ToolPaint.py:162 msgid "Forward" msgstr "Înainte" -#: flatcamGUI/PreferencesUI.py:4078 flatcamGUI/PreferencesUI.py:4503 +#: flatcamGUI/PreferencesUI.py:4096 flatcamGUI/PreferencesUI.py:4521 #: flatcamTools/ToolNonCopperClear.py:191 flatcamTools/ToolPaint.py:163 msgid "Reverse" msgstr "Înapoi" -#: flatcamGUI/PreferencesUI.py:4091 flatcamTools/ToolNonCopperClear.py:321 -#, fuzzy -#| 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 cleared are still \n" -#| "not cleared.\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." +#: flatcamGUI/PreferencesUI.py:4109 flatcamTools/ToolNonCopperClear.py:321 msgid "" "How much (fraction) of the tool width to overlap each tool pass.\n" "Adjust the value starting with lower values\n" @@ -10725,9 +10650,6 @@ msgid "" 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\n" "și pe urma creste daca ariile care ar trebui >curățate< inca\n" "nu sunt procesate.\n" @@ -10735,14 +10657,14 @@ msgstr "" "Valori mari= procesare lenta cat și o execuţie la fel de lenta a PCB-ului,\n" "datorita numărului mai mare de treceri-tăiere." -#: flatcamGUI/PreferencesUI.py:4110 flatcamGUI/PreferencesUI.py:6090 -#: flatcamGUI/PreferencesUI.py:6332 flatcamGUI/PreferencesUI.py:6396 +#: flatcamGUI/PreferencesUI.py:4128 flatcamGUI/PreferencesUI.py:6108 +#: flatcamGUI/PreferencesUI.py:6350 flatcamGUI/PreferencesUI.py:6414 #: flatcamTools/ToolCopperThieving.py:113 flatcamTools/ToolFiducials.py:174 #: flatcamTools/ToolFiducials.py:237 flatcamTools/ToolNonCopperClear.py:339 msgid "Bounding box margin." msgstr "Marginea pentru forma înconjurătoare." -#: flatcamGUI/PreferencesUI.py:4123 flatcamGUI/PreferencesUI.py:4551 +#: flatcamGUI/PreferencesUI.py:4141 flatcamGUI/PreferencesUI.py:4569 #: flatcamTools/ToolNonCopperClear.py:350 msgid "" "Algorithm for non-copper clearing:
Standard: Fixed step inwards." @@ -10753,22 +10675,22 @@ msgstr "" "
Punct-samanta: De la punctul samanta, spre expterior.
Linii " "drepte: Linii paralele." -#: flatcamGUI/PreferencesUI.py:4139 flatcamGUI/PreferencesUI.py:4565 +#: flatcamGUI/PreferencesUI.py:4157 flatcamGUI/PreferencesUI.py:4583 #: flatcamTools/ToolNonCopperClear.py:364 flatcamTools/ToolPaint.py:267 msgid "Connect" msgstr "Conectează" -#: flatcamGUI/PreferencesUI.py:4150 flatcamGUI/PreferencesUI.py:4575 +#: flatcamGUI/PreferencesUI.py:4168 flatcamGUI/PreferencesUI.py:4593 #: flatcamTools/ToolNonCopperClear.py:373 flatcamTools/ToolPaint.py:276 msgid "Contour" msgstr "Contur" -#: flatcamGUI/PreferencesUI.py:4161 flatcamTools/ToolNonCopperClear.py:382 +#: flatcamGUI/PreferencesUI.py:4179 flatcamTools/ToolNonCopperClear.py:382 #: flatcamTools/ToolPaint.py:285 msgid "Rest M." msgstr "Rest M." -#: flatcamGUI/PreferencesUI.py:4163 flatcamTools/ToolNonCopperClear.py:384 +#: flatcamGUI/PreferencesUI.py:4181 flatcamTools/ToolNonCopperClear.py:384 msgid "" "If checked, use 'rest machining'.\n" "Basically it will clear copper outside PCB features,\n" @@ -10786,7 +10708,7 @@ msgstr "" "final. Aceasta deaorece unele unelte nu vor putea genera geometrie.\n" "Daca nu este bifat, foloseşte algoritmul standard." -#: flatcamGUI/PreferencesUI.py:4179 flatcamTools/ToolNonCopperClear.py:399 +#: flatcamGUI/PreferencesUI.py:4197 flatcamTools/ToolNonCopperClear.py:399 #: flatcamTools/ToolNonCopperClear.py:411 msgid "" "If used, it will add an offset to the copper features.\n" @@ -10799,17 +10721,11 @@ msgstr "" "de traseele de cupru.\n" "Valoarea poate fi cuprinsă între 0 și 10 unități FlatCAM." -#: flatcamGUI/PreferencesUI.py:4190 flatcamTools/ToolNonCopperClear.py:409 +#: flatcamGUI/PreferencesUI.py:4208 flatcamTools/ToolNonCopperClear.py:409 msgid "Offset value" msgstr "Valoare Ofset" -#: flatcamGUI/PreferencesUI.py:4192 -#, fuzzy -#| msgid "" -#| "If used, it will add an offset to the copper features.\n" -#| "The copper clearing will finish to a distance\n" -#| "from the copper features.\n" -#| "The value can be between 0 and 10 FlatCAM units." +#: flatcamGUI/PreferencesUI.py:4210 msgid "" "If used, it will add an offset to the copper features.\n" "The copper clearing will finish to a distance\n" @@ -10819,28 +10735,28 @@ msgstr "" "Dacă este folosit, va adăuga un offset la traseele de cupru.\n" "Curătarea de cupru se va termina la o anume distanță\n" "de traseele de cupru.\n" -"Valoarea poate fi cuprinsă între 0 și 10 unități FlatCAM." +"Valoarea poate fi cuprinsă între 0 și 9999.9 unități FlatCAM." -#: flatcamGUI/PreferencesUI.py:4207 flatcamGUI/PreferencesUI.py:6102 +#: flatcamGUI/PreferencesUI.py:4225 flatcamGUI/PreferencesUI.py:6120 #: flatcamTools/ToolCopperThieving.py:125 #: flatcamTools/ToolNonCopperClear.py:435 msgid "Itself" msgstr "Însuşi" -#: flatcamGUI/PreferencesUI.py:4208 flatcamGUI/PreferencesUI.py:4597 +#: flatcamGUI/PreferencesUI.py:4226 flatcamGUI/PreferencesUI.py:4615 msgid "Area" msgstr "Aria" -#: flatcamGUI/PreferencesUI.py:4209 flatcamGUI/PreferencesUI.py:4599 +#: flatcamGUI/PreferencesUI.py:4227 flatcamGUI/PreferencesUI.py:4617 msgid "Ref" msgstr "Ref" -#: flatcamGUI/PreferencesUI.py:4210 flatcamGUI/PreferencesUI.py:4776 +#: flatcamGUI/PreferencesUI.py:4228 flatcamGUI/PreferencesUI.py:4794 #: flatcamTools/ToolFilm.py:219 msgid "Reference" msgstr "Referinţă" -#: flatcamGUI/PreferencesUI.py:4212 +#: flatcamGUI/PreferencesUI.py:4230 msgid "" "- 'Itself' - the non copper clearing extent\n" "is based on the object that is copper cleared.\n" @@ -10860,19 +10776,19 @@ msgstr "" "- „Obiect de referință” - va face o curățare fără cupru în zona\n" "specificată de un alt obiect." -#: flatcamGUI/PreferencesUI.py:4224 flatcamGUI/PreferencesUI.py:4605 +#: flatcamGUI/PreferencesUI.py:4242 flatcamGUI/PreferencesUI.py:4623 msgid "Normal" msgstr "Normal" -#: flatcamGUI/PreferencesUI.py:4225 flatcamGUI/PreferencesUI.py:4606 +#: flatcamGUI/PreferencesUI.py:4243 flatcamGUI/PreferencesUI.py:4624 msgid "Progressive" msgstr "Progresiv" -#: flatcamGUI/PreferencesUI.py:4226 +#: flatcamGUI/PreferencesUI.py:4244 msgid "NCC Plotting" msgstr "Afisare NCC" -#: flatcamGUI/PreferencesUI.py:4228 +#: flatcamGUI/PreferencesUI.py:4246 msgid "" "- 'Normal' - normal plotting, done at the end of the NCC job\n" "- 'Progressive' - after each shape is generated it will be plotted." @@ -10880,16 +10796,16 @@ msgstr "" "- 'Normal' - afisare normală, efectuată la sfarsitul activitătii NCC\n" "- 'Progresiv' - forma se afisează imediat ce a fost generată." -#: flatcamGUI/PreferencesUI.py:4242 +#: flatcamGUI/PreferencesUI.py:4260 msgid "Cutout Tool Options" msgstr "Opțiuni Unealta Decupare" -#: flatcamGUI/PreferencesUI.py:4257 flatcamTools/ToolCalculators.py:123 +#: flatcamGUI/PreferencesUI.py:4275 flatcamTools/ToolCalculators.py:123 #: flatcamTools/ToolCutOut.py:123 msgid "Tool Diameter" msgstr "Dia unealtă" -#: flatcamGUI/PreferencesUI.py:4259 flatcamTools/ToolCutOut.py:125 +#: flatcamGUI/PreferencesUI.py:4277 flatcamTools/ToolCutOut.py:125 msgid "" "Diameter of the tool used to cutout\n" "the PCB shape out of the surrounding material." @@ -10897,13 +10813,11 @@ msgstr "" "Diametrul uneltei folosita pt decuparea\n" "PCB-ului din materialului inconjurator." -#: flatcamGUI/PreferencesUI.py:4314 flatcamTools/ToolCutOut.py:104 -#, fuzzy -#| msgid "Obj kind" +#: flatcamGUI/PreferencesUI.py:4332 flatcamTools/ToolCutOut.py:104 msgid "Object kind" msgstr "Tipul de obiect" -#: flatcamGUI/PreferencesUI.py:4316 flatcamTools/ToolCutOut.py:106 +#: flatcamGUI/PreferencesUI.py:4334 flatcamTools/ToolCutOut.py:106 msgid "" "Choice of what kind the object we want to cutout is.
- Single: " "contain a single PCB Gerber outline object.
- Panel: a panel PCB " @@ -10915,15 +10829,15 @@ msgstr "" "tip panel, care este făcut\n" "din mai multe contururi PCB." -#: flatcamGUI/PreferencesUI.py:4323 flatcamTools/ToolCutOut.py:112 +#: flatcamGUI/PreferencesUI.py:4341 flatcamTools/ToolCutOut.py:112 msgid "Single" msgstr "Unic" -#: flatcamGUI/PreferencesUI.py:4324 flatcamTools/ToolCutOut.py:113 +#: flatcamGUI/PreferencesUI.py:4342 flatcamTools/ToolCutOut.py:113 msgid "Panel" msgstr "Panel" -#: flatcamGUI/PreferencesUI.py:4331 flatcamTools/ToolCutOut.py:184 +#: flatcamGUI/PreferencesUI.py:4349 flatcamTools/ToolCutOut.py:184 msgid "" "Margin over bounds. A positive value here\n" "will make the cutout of the PCB further from\n" @@ -10933,11 +10847,11 @@ msgstr "" "va face decuparea distanțat cu aceasta valoare \n" "fata de PCB-ul efectiv" -#: flatcamGUI/PreferencesUI.py:4344 flatcamTools/ToolCutOut.py:195 +#: flatcamGUI/PreferencesUI.py:4362 flatcamTools/ToolCutOut.py:195 msgid "Gap size" msgstr "Dim. punte" -#: flatcamGUI/PreferencesUI.py:4346 flatcamTools/ToolCutOut.py:197 +#: flatcamGUI/PreferencesUI.py:4364 flatcamTools/ToolCutOut.py:197 msgid "" "The size of the bridge gaps in the cutout\n" "used to keep the board connected to\n" @@ -10948,11 +10862,11 @@ msgstr "" "in a mentine ataşat PCB-ul la materialul de unde \n" "este decupat." -#: flatcamGUI/PreferencesUI.py:4360 flatcamTools/ToolCutOut.py:239 +#: flatcamGUI/PreferencesUI.py:4378 flatcamTools/ToolCutOut.py:239 msgid "Gaps" msgstr "Punţi" -#: flatcamGUI/PreferencesUI.py:4362 +#: flatcamGUI/PreferencesUI.py:4380 msgid "" "Number of gaps used for the cutout.\n" "There can be maximum 8 bridges/gaps.\n" @@ -10976,11 +10890,11 @@ msgstr "" "- 2tb = 2* sus - 2* jos\n" "- 8 = 2* stânga - 2* dreapta - 2* sus - 2* jos" -#: flatcamGUI/PreferencesUI.py:4385 +#: flatcamGUI/PreferencesUI.py:4403 msgid "Convex Sh." msgstr "Formă Conv." -#: flatcamGUI/PreferencesUI.py:4387 flatcamTools/ToolCutOut.py:217 +#: flatcamGUI/PreferencesUI.py:4405 flatcamTools/ToolCutOut.py:217 msgid "" "Create a convex shape surrounding the entire PCB.\n" "Used only if the source object type is Gerber." @@ -10989,11 +10903,11 @@ msgstr "" "tot PCB-ul. Forma sa este convexa.\n" "Se foloseste doar daca obiectul sursă este de tip Gerber." -#: flatcamGUI/PreferencesUI.py:4401 +#: flatcamGUI/PreferencesUI.py:4419 msgid "2Sided Tool Options" msgstr "Opțiuni Unealta 2Fețe" -#: flatcamGUI/PreferencesUI.py:4407 +#: flatcamGUI/PreferencesUI.py:4425 msgid "" "A tool to help in creating a double sided\n" "PCB using alignment holes." @@ -11001,36 +10915,36 @@ msgstr "" "O unealtă care ajuta in crearea de PCB-uri cu 2 fețe\n" "folosind găuri de aliniere." -#: flatcamGUI/PreferencesUI.py:4421 flatcamTools/ToolDblSided.py:276 +#: flatcamGUI/PreferencesUI.py:4439 flatcamTools/ToolDblSided.py:276 msgid "Drill dia" msgstr "Dia gaură" -#: flatcamGUI/PreferencesUI.py:4423 flatcamTools/ToolDblSided.py:267 +#: flatcamGUI/PreferencesUI.py:4441 flatcamTools/ToolDblSided.py:267 #: flatcamTools/ToolDblSided.py:278 msgid "Diameter of the drill for the alignment holes." msgstr "Diametrul găurii pentru găurile de aliniere." -#: flatcamGUI/PreferencesUI.py:4432 flatcamTools/ToolDblSided.py:144 +#: flatcamGUI/PreferencesUI.py:4450 flatcamTools/ToolDblSided.py:144 msgid "Mirror Axis:" msgstr "Axe oglindire:" -#: flatcamGUI/PreferencesUI.py:4434 flatcamTools/ToolDblSided.py:145 +#: flatcamGUI/PreferencesUI.py:4452 flatcamTools/ToolDblSided.py:145 msgid "Mirror vertically (X) or horizontally (Y)." msgstr "Oglindește vertical (X) sau orizontal (Y)." -#: flatcamGUI/PreferencesUI.py:4443 flatcamTools/ToolDblSided.py:154 +#: flatcamGUI/PreferencesUI.py:4461 flatcamTools/ToolDblSided.py:154 msgid "Point" msgstr "Punct" -#: flatcamGUI/PreferencesUI.py:4444 flatcamTools/ToolDblSided.py:155 +#: flatcamGUI/PreferencesUI.py:4462 flatcamTools/ToolDblSided.py:155 msgid "Box" msgstr "Forma" -#: flatcamGUI/PreferencesUI.py:4445 +#: flatcamGUI/PreferencesUI.py:4463 flatcamTools/ToolDblSided.py:156 msgid "Axis Ref" msgstr "Axa de Ref" -#: flatcamGUI/PreferencesUI.py:4447 flatcamTools/ToolDblSided.py:158 +#: flatcamGUI/PreferencesUI.py:4465 flatcamTools/ToolDblSided.py:158 msgid "" "The axis should pass through a point or cut\n" " a specified box (in a FlatCAM object) through \n" @@ -11039,61 +10953,16 @@ msgstr "" "Axa de referinţă ar trebui să treacă printr-un punct ori să strabata\n" " o forma (obiect FlatCAM) prin mijloc." -#: flatcamGUI/PreferencesUI.py:4463 +#: flatcamGUI/PreferencesUI.py:4481 msgid "Paint Tool Options" msgstr "Opțiuni Unealta Paint" -#: flatcamGUI/PreferencesUI.py:4469 +#: flatcamGUI/PreferencesUI.py:4487 msgid "Parameters:" msgstr "Parametri:" -#: flatcamGUI/PreferencesUI.py:4516 flatcamTools/ToolPaint.py:221 -#, fuzzy -#| 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." -msgid "" -"How much (fraction) of the tool width to overlap each tool pass.\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 CNC.\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." - -#: flatcamGUI/PreferencesUI.py:4587 flatcamTools/ToolPaint.py:302 +#: flatcamGUI/PreferencesUI.py:4605 flatcamTools/ToolPaint.py:302 #: flatcamTools/ToolPaint.py:319 -#, fuzzy -#| msgid "" -#| "How to select Polygons to be painted.\n" -#| "\n" -#| "- 'Area Selection' - left mouse click to start selection of the area to " -#| "be painted.\n" -#| "Keeping a modifier key pressed (CTRL or SHIFT) will allow to add multiple " -#| "areas.\n" -#| "- 'All Polygons' - the Paint will start after click.\n" -#| "- 'Reference Object' - will do non copper clearing within the area\n" -#| "specified by another object." msgid "" "How to select Polygons to be painted.\n" "- 'Polygon Selection' - left mouse click to add/remove polygons to be " @@ -11107,26 +10976,25 @@ msgid "" "specified by another object." msgstr "" "Cum se selectează Poligoanele care vor fi pictate.\n" -"\n" +"- „Selecție poligon” - faceți clic stânga pentru a adăuga / elimina " +"poligoane care urmează să fie pictate.\n" "- „Selecție zonă” - faceți clic stânga cu mouse-ul pentru a începe selecția " "zonei care va fi pictată.\n" -"Menținerea unei taste de modificare apăsată (CTRL sau SHIFT) va permite " +"Menținerea unei taste modificatoare apăsată (CTRL sau SHIFT) va permite " "adăugarea mai multor zone.\n" -"- „Toate Poligoanele” - Pictarea va începe după clic.\n" -"- „Obiect de referință” - va face o curățare fără cupru în zona\n" -"specificată de un alt obiect." +"- „Toate Poligoanele” - Unealta Paint va începe după clic.\n" +"- „Obiect de referință” - va face o curățare fără cupru în zona specificată " +"de un alt obiect." -#: flatcamGUI/PreferencesUI.py:4596 -#, fuzzy -#| msgid "Select" +#: flatcamGUI/PreferencesUI.py:4614 msgid "Sel" msgstr "Selectează" -#: flatcamGUI/PreferencesUI.py:4607 +#: flatcamGUI/PreferencesUI.py:4625 msgid "Paint Plotting" msgstr "Afisare Paint" -#: flatcamGUI/PreferencesUI.py:4609 +#: flatcamGUI/PreferencesUI.py:4627 msgid "" "- 'Normal' - normal plotting, done at the end of the Paint job\n" "- 'Progressive' - after each shape is generated it will be plotted." @@ -11134,11 +11002,11 @@ msgstr "" "- 'Normal' - afisare normală, efectuată la sfarsitul activitătii Paint\n" "- 'Progresiv' - forma se afisează imediat ce a fost generată." -#: flatcamGUI/PreferencesUI.py:4623 +#: flatcamGUI/PreferencesUI.py:4641 msgid "Film Tool Options" msgstr "Opțiuni Unealta Film" -#: flatcamGUI/PreferencesUI.py:4629 +#: flatcamGUI/PreferencesUI.py:4647 msgid "" "Create a PCB film from a Gerber or Geometry\n" "FlatCAM object.\n" @@ -11147,11 +11015,11 @@ msgstr "" "Crează un film PCB dintr-un obiect Gerber sau tip Geometrie.\n" "Fişierul este salvat in format SVG." -#: flatcamGUI/PreferencesUI.py:4640 +#: flatcamGUI/PreferencesUI.py:4658 msgid "Film Type" msgstr "Tip film" -#: flatcamGUI/PreferencesUI.py:4642 flatcamTools/ToolFilm.py:300 +#: flatcamGUI/PreferencesUI.py:4660 flatcamTools/ToolFilm.py:300 msgid "" "Generate a Positive black film or a Negative film.\n" "Positive means that it will print the features\n" @@ -11165,19 +11033,19 @@ msgstr "" "Negativ = traseele vor fi albe pe un fundal negru.\n" "Formatul fişierului pt filmul salvat este SVG." -#: flatcamGUI/PreferencesUI.py:4653 +#: flatcamGUI/PreferencesUI.py:4671 msgid "Film Color" msgstr "Film Color" -#: flatcamGUI/PreferencesUI.py:4655 +#: flatcamGUI/PreferencesUI.py:4673 msgid "Set the film color when positive film is selected." msgstr "Setați culoarea filmului atunci când este selectat filmul pozitiv." -#: flatcamGUI/PreferencesUI.py:4678 flatcamTools/ToolFilm.py:316 +#: flatcamGUI/PreferencesUI.py:4696 flatcamTools/ToolFilm.py:316 msgid "Border" msgstr "Bordură" -#: flatcamGUI/PreferencesUI.py:4680 flatcamTools/ToolFilm.py:318 +#: flatcamGUI/PreferencesUI.py:4698 flatcamTools/ToolFilm.py:318 msgid "" "Specify a border around the object.\n" "Only for negative film.\n" @@ -11194,11 +11062,11 @@ msgstr "" "Va crea o bara solidă neagră in jurul printului efectiv permitand o\n" "delimitare exactă." -#: flatcamGUI/PreferencesUI.py:4697 flatcamTools/ToolFilm.py:283 +#: flatcamGUI/PreferencesUI.py:4715 flatcamTools/ToolFilm.py:283 msgid "Scale Stroke" msgstr "Scalează" -#: flatcamGUI/PreferencesUI.py:4699 flatcamTools/ToolFilm.py:285 +#: flatcamGUI/PreferencesUI.py:4717 flatcamTools/ToolFilm.py:285 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 " @@ -11208,11 +11076,11 @@ msgstr "" "Scalează grosimea conturului fiecarui element din fişierul SVG.\n" "Elementele mai mici vor fi afectate mai mult." -#: flatcamGUI/PreferencesUI.py:4706 flatcamTools/ToolFilm.py:141 +#: flatcamGUI/PreferencesUI.py:4724 flatcamTools/ToolFilm.py:141 msgid "Film Adjustments" msgstr "Reglarea filmelor" -#: flatcamGUI/PreferencesUI.py:4708 flatcamTools/ToolFilm.py:143 +#: flatcamGUI/PreferencesUI.py:4726 flatcamTools/ToolFilm.py:143 msgid "" "Sometime the printers will distort the print shape, especially the Laser " "types.\n" @@ -11223,11 +11091,11 @@ msgstr "" "Această secțiune oferă instrumentele pentru a compensa distorsiunile de " "tipărire." -#: flatcamGUI/PreferencesUI.py:4715 flatcamTools/ToolFilm.py:150 +#: flatcamGUI/PreferencesUI.py:4733 flatcamTools/ToolFilm.py:150 msgid "Scale Film geometry" msgstr "Scalați geo film" -#: flatcamGUI/PreferencesUI.py:4717 flatcamTools/ToolFilm.py:152 +#: flatcamGUI/PreferencesUI.py:4735 flatcamTools/ToolFilm.py:152 msgid "" "A value greater than 1 will stretch the film\n" "while a value less than 1 will jolt it." @@ -11235,21 +11103,21 @@ msgstr "" "O valoare mai mare de 1 va întinde filmul\n" "în timp ce o valoare mai mică de 1 il va compacta." -#: flatcamGUI/PreferencesUI.py:4727 flatcamGUI/PreferencesUI.py:5247 +#: flatcamGUI/PreferencesUI.py:4745 flatcamGUI/PreferencesUI.py:5265 #: flatcamTools/ToolFilm.py:162 flatcamTools/ToolTransform.py:147 msgid "X factor" msgstr "Factor X" -#: flatcamGUI/PreferencesUI.py:4736 flatcamGUI/PreferencesUI.py:5260 +#: flatcamGUI/PreferencesUI.py:4754 flatcamGUI/PreferencesUI.py:5278 #: flatcamTools/ToolFilm.py:171 flatcamTools/ToolTransform.py:168 msgid "Y factor" msgstr "Factor Y" -#: flatcamGUI/PreferencesUI.py:4746 flatcamTools/ToolFilm.py:189 +#: flatcamGUI/PreferencesUI.py:4764 flatcamTools/ToolFilm.py:189 msgid "Skew Film geometry" msgstr "Deformeaza Geo Film" -#: flatcamGUI/PreferencesUI.py:4748 flatcamTools/ToolFilm.py:191 +#: flatcamGUI/PreferencesUI.py:4766 flatcamTools/ToolFilm.py:191 msgid "" "Positive values will skew to the right\n" "while negative values will skew to the left." @@ -11257,17 +11125,17 @@ msgstr "" "Valorile pozitive vor înclina spre dreapta\n" "în timp ce valorile negative vor înclina spre stânga." -#: flatcamGUI/PreferencesUI.py:4758 flatcamGUI/PreferencesUI.py:5216 +#: flatcamGUI/PreferencesUI.py:4776 flatcamGUI/PreferencesUI.py:5234 #: flatcamTools/ToolFilm.py:201 flatcamTools/ToolTransform.py:97 msgid "X angle" msgstr "Unghi X" -#: flatcamGUI/PreferencesUI.py:4767 flatcamGUI/PreferencesUI.py:5230 +#: flatcamGUI/PreferencesUI.py:4785 flatcamGUI/PreferencesUI.py:5248 #: flatcamTools/ToolFilm.py:210 flatcamTools/ToolTransform.py:119 msgid "Y angle" msgstr "Unghi Y" -#: flatcamGUI/PreferencesUI.py:4778 flatcamTools/ToolFilm.py:221 +#: flatcamGUI/PreferencesUI.py:4796 flatcamTools/ToolFilm.py:221 msgid "" "The reference point to be used as origin for the skew.\n" "It can be one of the four points of the geometry bounding box." @@ -11276,90 +11144,85 @@ msgstr "" "Poate fi unul dintre cele patru puncte ale căsuței de delimitare a " "geometriei." -#: flatcamGUI/PreferencesUI.py:4781 flatcamTools/ToolFiducials.py:87 +#: flatcamGUI/PreferencesUI.py:4799 flatcamTools/ToolFiducials.py:87 #: flatcamTools/ToolFilm.py:224 msgid "Bottom Left" msgstr "Stânga jos" -#: flatcamGUI/PreferencesUI.py:4782 flatcamTools/ToolFilm.py:225 +#: flatcamGUI/PreferencesUI.py:4800 flatcamTools/ToolFilm.py:225 msgid "Top Left" msgstr "Stânga sus" -#: flatcamGUI/PreferencesUI.py:4783 flatcamTools/ToolFilm.py:226 +#: flatcamGUI/PreferencesUI.py:4801 flatcamTools/ToolFilm.py:226 msgid "Bottom Right" msgstr "Dreapta-jos" -#: flatcamGUI/PreferencesUI.py:4784 flatcamTools/ToolFilm.py:227 +#: flatcamGUI/PreferencesUI.py:4802 flatcamTools/ToolFilm.py:227 msgid "Top right" msgstr "Dreapta-sus" -#: flatcamGUI/PreferencesUI.py:4792 flatcamTools/ToolFilm.py:244 +#: flatcamGUI/PreferencesUI.py:4810 flatcamTools/ToolFilm.py:244 msgid "Mirror Film geometry" msgstr "Oglindeste Geo Film" -#: flatcamGUI/PreferencesUI.py:4794 flatcamTools/ToolFilm.py:246 +#: flatcamGUI/PreferencesUI.py:4812 flatcamTools/ToolFilm.py:246 msgid "Mirror the film geometry on the selected axis or on both." msgstr "Oglindeste geometria filmului pe axa selectată sau pe ambele." -#: flatcamGUI/PreferencesUI.py:4806 flatcamTools/ToolFilm.py:258 +#: flatcamGUI/PreferencesUI.py:4824 flatcamTools/ToolFilm.py:258 msgid "Both" msgstr "Ambele" -#: flatcamGUI/PreferencesUI.py:4808 flatcamTools/ToolFilm.py:260 +#: flatcamGUI/PreferencesUI.py:4826 flatcamTools/ToolFilm.py:260 msgid "Mirror axis" msgstr "Axe oglindire" -#: flatcamGUI/PreferencesUI.py:4818 flatcamTools/ToolFilm.py:403 +#: flatcamGUI/PreferencesUI.py:4836 flatcamTools/ToolFilm.py:403 msgid "SVG" -msgstr "" +msgstr "SVG" -#: flatcamGUI/PreferencesUI.py:4819 flatcamTools/ToolFilm.py:404 +#: flatcamGUI/PreferencesUI.py:4837 flatcamTools/ToolFilm.py:404 msgid "PNG" -msgstr "" +msgstr "PNG" -#: flatcamGUI/PreferencesUI.py:4820 flatcamTools/ToolFilm.py:405 +#: flatcamGUI/PreferencesUI.py:4838 flatcamTools/ToolFilm.py:405 msgid "PDF" -msgstr "" +msgstr "PDF" -#: flatcamGUI/PreferencesUI.py:4823 flatcamTools/ToolFilm.py:298 +#: flatcamGUI/PreferencesUI.py:4841 flatcamTools/ToolFilm.py:298 #: flatcamTools/ToolFilm.py:408 msgid "Film Type:" msgstr "Tip film:" -#: flatcamGUI/PreferencesUI.py:4825 flatcamTools/ToolFilm.py:410 +#: flatcamGUI/PreferencesUI.py:4843 flatcamTools/ToolFilm.py:410 msgid "" "The file type of the saved film. Can be:\n" "- 'SVG' -> open-source vectorial format\n" "- 'PNG' -> raster image\n" "- 'PDF' -> portable document format" msgstr "" +"Tipul de fișier al filmului salvat. Poate fi:\n" +"- 'SVG' -> format vectorial open-source\n" +"- „PNG” -> imagine raster\n" +"- „PDF” -> format document portabil" -#: flatcamGUI/PreferencesUI.py:4834 flatcamTools/ToolFilm.py:419 +#: flatcamGUI/PreferencesUI.py:4852 flatcamTools/ToolFilm.py:419 msgid "Page Orientation" -msgstr "" +msgstr "Orientarea paginii" -#: flatcamGUI/PreferencesUI.py:4835 -msgid "" -"Can be:\n" -"- Portrait\n" -"- Lanscape" -msgstr "" - -#: flatcamGUI/PreferencesUI.py:4847 flatcamTools/ToolFilm.py:432 -#, fuzzy -#| msgid "Trace Size" +#: flatcamGUI/PreferencesUI.py:4865 flatcamTools/ToolFilm.py:432 msgid "Page Size" -msgstr "Dim. traseu" +msgstr "Mărimea paginii" -#: flatcamGUI/PreferencesUI.py:4848 flatcamTools/ToolFilm.py:433 +#: flatcamGUI/PreferencesUI.py:4866 flatcamTools/ToolFilm.py:433 msgid "A selection of standard ISO 216 page sizes." -msgstr "" +msgstr "O selecție de dimensiuni standard de pagină conform ISO 216." -#: flatcamGUI/PreferencesUI.py:4920 +#: flatcamGUI/PreferencesUI.py:4938 msgid "Panelize Tool Options" msgstr "Opțiuni Unealta Panelizare" -#: flatcamGUI/PreferencesUI.py:4926 +#: flatcamGUI/PreferencesUI.py:4944 msgid "" "Create an object that contains an array of (x, y) elements,\n" "each element is a copy of the source object spaced\n" @@ -11369,11 +11232,11 @@ msgstr "" "unde fiecare element este o copie a obiectului sursa, separat la o\n" "distanţă X, Y unul de celalalt." -#: flatcamGUI/PreferencesUI.py:4943 flatcamTools/ToolPanelize.py:160 +#: flatcamGUI/PreferencesUI.py:4961 flatcamTools/ToolPanelize.py:160 msgid "Spacing cols" msgstr "Sep. coloane" -#: flatcamGUI/PreferencesUI.py:4945 flatcamTools/ToolPanelize.py:162 +#: flatcamGUI/PreferencesUI.py:4963 flatcamTools/ToolPanelize.py:162 msgid "" "Spacing between columns of the desired panel.\n" "In current units." @@ -11381,11 +11244,11 @@ msgstr "" "Spatiul de separare între coloane.\n" "In unitatile curente." -#: flatcamGUI/PreferencesUI.py:4957 flatcamTools/ToolPanelize.py:172 +#: flatcamGUI/PreferencesUI.py:4975 flatcamTools/ToolPanelize.py:172 msgid "Spacing rows" msgstr "Sep. linii" -#: flatcamGUI/PreferencesUI.py:4959 flatcamTools/ToolPanelize.py:174 +#: flatcamGUI/PreferencesUI.py:4977 flatcamTools/ToolPanelize.py:174 msgid "" "Spacing between rows of the desired panel.\n" "In current units." @@ -11393,36 +11256,36 @@ msgstr "" "Spatiul de separare între linii.\n" "In unitatile curente." -#: flatcamGUI/PreferencesUI.py:4970 flatcamTools/ToolPanelize.py:183 +#: flatcamGUI/PreferencesUI.py:4988 flatcamTools/ToolPanelize.py:183 msgid "Columns" msgstr "Coloane" -#: flatcamGUI/PreferencesUI.py:4972 flatcamTools/ToolPanelize.py:185 +#: flatcamGUI/PreferencesUI.py:4990 flatcamTools/ToolPanelize.py:185 msgid "Number of columns of the desired panel" msgstr "Numărul de coloane ale panel-ului dorit" -#: flatcamGUI/PreferencesUI.py:4982 flatcamTools/ToolPanelize.py:193 +#: flatcamGUI/PreferencesUI.py:5000 flatcamTools/ToolPanelize.py:193 msgid "Rows" msgstr "Linii" -#: flatcamGUI/PreferencesUI.py:4984 flatcamTools/ToolPanelize.py:195 +#: flatcamGUI/PreferencesUI.py:5002 flatcamTools/ToolPanelize.py:195 msgid "Number of rows of the desired panel" msgstr "Numărul de linii ale panel-ului dorit" -#: flatcamGUI/PreferencesUI.py:4990 flatcamTools/ToolCalibration.py:89 -#: flatcamTools/ToolCalibration.py:569 flatcamTools/ToolPanelize.py:201 +#: flatcamGUI/PreferencesUI.py:5008 flatcamTools/ToolCalibration.py:196 +#: flatcamTools/ToolCalibration.py:634 flatcamTools/ToolPanelize.py:201 msgid "Gerber" msgstr "Gerber" -#: flatcamGUI/PreferencesUI.py:4991 flatcamTools/ToolPanelize.py:202 +#: flatcamGUI/PreferencesUI.py:5009 flatcamTools/ToolPanelize.py:202 msgid "Geo" msgstr "Geo" -#: flatcamGUI/PreferencesUI.py:4992 flatcamTools/ToolPanelize.py:203 +#: flatcamGUI/PreferencesUI.py:5010 flatcamTools/ToolPanelize.py:203 msgid "Panel Type" msgstr "Tip panel" -#: flatcamGUI/PreferencesUI.py:4994 +#: flatcamGUI/PreferencesUI.py:5012 msgid "" "Choose the type of object for the panel object:\n" "- Gerber\n" @@ -11432,11 +11295,11 @@ msgstr "" "- Gerber\n" "- Geometrie" -#: flatcamGUI/PreferencesUI.py:5003 +#: flatcamGUI/PreferencesUI.py:5021 msgid "Constrain within" msgstr "Constrange" -#: flatcamGUI/PreferencesUI.py:5005 flatcamTools/ToolPanelize.py:215 +#: flatcamGUI/PreferencesUI.py:5023 flatcamTools/ToolPanelize.py:215 msgid "" "Area define by DX and DY within to constrain the panel.\n" "DX and DY values are in current units.\n" @@ -11450,11 +11313,11 @@ msgstr "" "panelul final va contine numai acel număr de linii/coloane care se inscrie\n" "complet in aria desemnata." -#: flatcamGUI/PreferencesUI.py:5018 flatcamTools/ToolPanelize.py:227 +#: flatcamGUI/PreferencesUI.py:5036 flatcamTools/ToolPanelize.py:227 msgid "Width (DX)" msgstr "Lătime (Dx)" -#: flatcamGUI/PreferencesUI.py:5020 flatcamTools/ToolPanelize.py:229 +#: flatcamGUI/PreferencesUI.py:5038 flatcamTools/ToolPanelize.py:229 msgid "" "The width (DX) within which the panel must fit.\n" "In current units." @@ -11462,11 +11325,11 @@ msgstr "" "Lăţimea (Dx) in care panelul trebuie să se inscrie.\n" "In unitati curente." -#: flatcamGUI/PreferencesUI.py:5031 flatcamTools/ToolPanelize.py:238 +#: flatcamGUI/PreferencesUI.py:5049 flatcamTools/ToolPanelize.py:238 msgid "Height (DY)" msgstr "Inăltime (Dy)" -#: flatcamGUI/PreferencesUI.py:5033 flatcamTools/ToolPanelize.py:240 +#: flatcamGUI/PreferencesUI.py:5051 flatcamTools/ToolPanelize.py:240 msgid "" "The height (DY)within which the panel must fit.\n" "In current units." @@ -11474,15 +11337,15 @@ msgstr "" "Înălţimea (Dy) in care panelul trebuie să se inscrie.\n" "In unitati curente." -#: flatcamGUI/PreferencesUI.py:5047 +#: flatcamGUI/PreferencesUI.py:5065 msgid "Calculators Tool Options" msgstr "Opțiuni Unealta Calculatoare" -#: flatcamGUI/PreferencesUI.py:5051 flatcamTools/ToolCalculators.py:25 +#: flatcamGUI/PreferencesUI.py:5069 flatcamTools/ToolCalculators.py:25 msgid "V-Shape Tool Calculator" msgstr "Calculator Unealta V-Shape" -#: flatcamGUI/PreferencesUI.py:5053 +#: flatcamGUI/PreferencesUI.py:5071 msgid "" "Calculate the tool diameter for a given V-shape tool,\n" "having the tip diameter, tip angle and\n" @@ -11492,11 +11355,11 @@ msgstr "" "avand diametrul vârfului și unghiul la vârf cat și\n" "adâncimea de tăiere, ca parametri." -#: flatcamGUI/PreferencesUI.py:5068 flatcamTools/ToolCalculators.py:94 +#: flatcamGUI/PreferencesUI.py:5086 flatcamTools/ToolCalculators.py:94 msgid "Tip Diameter" msgstr "Dia vârf" -#: flatcamGUI/PreferencesUI.py:5070 flatcamTools/ToolCalculators.py:102 +#: flatcamGUI/PreferencesUI.py:5088 flatcamTools/ToolCalculators.py:102 msgid "" "This is the tool tip diameter.\n" "It is specified by manufacturer." @@ -11504,11 +11367,11 @@ msgstr "" "Acesta este diametrul la vârf al uneltei.\n" "Este specificat de producator." -#: flatcamGUI/PreferencesUI.py:5082 flatcamTools/ToolCalculators.py:105 +#: flatcamGUI/PreferencesUI.py:5100 flatcamTools/ToolCalculators.py:105 msgid "Tip Angle" msgstr "V-Unghi" -#: flatcamGUI/PreferencesUI.py:5084 +#: flatcamGUI/PreferencesUI.py:5102 msgid "" "This is the angle on the tip of the tool.\n" "It is specified by manufacturer." @@ -11516,7 +11379,7 @@ msgstr "" "Acesta este unghiul la vârf al uneltei.\n" "Este specificat de producator." -#: flatcamGUI/PreferencesUI.py:5098 +#: flatcamGUI/PreferencesUI.py:5116 msgid "" "This is depth to cut into material.\n" "In the CNCJob object it is the CutZ parameter." @@ -11524,11 +11387,11 @@ msgstr "" "Aceasta este adâncimea la care se taie in material.\n" "In obiectul CNCJob este parametrul >Z tăiere<." -#: flatcamGUI/PreferencesUI.py:5105 flatcamTools/ToolCalculators.py:27 +#: flatcamGUI/PreferencesUI.py:5123 flatcamTools/ToolCalculators.py:27 msgid "ElectroPlating Calculator" msgstr "Calculator ElectroPlacare" -#: flatcamGUI/PreferencesUI.py:5107 flatcamTools/ToolCalculators.py:158 +#: flatcamGUI/PreferencesUI.py:5125 flatcamTools/ToolCalculators.py:158 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 " @@ -11540,31 +11403,31 @@ msgstr "" "- clorura paladiu\n" "- hipofosfit de calciu." -#: flatcamGUI/PreferencesUI.py:5121 flatcamTools/ToolCalculators.py:167 +#: flatcamGUI/PreferencesUI.py:5139 flatcamTools/ToolCalculators.py:167 msgid "Board Length" msgstr "Lung. plăcii" -#: flatcamGUI/PreferencesUI.py:5123 flatcamTools/ToolCalculators.py:173 +#: flatcamGUI/PreferencesUI.py:5141 flatcamTools/ToolCalculators.py:173 msgid "This is the board length. In centimeters." msgstr "" "Aceasta este lungimea PCB-ului.\n" "In centimetri." -#: flatcamGUI/PreferencesUI.py:5133 flatcamTools/ToolCalculators.py:175 +#: flatcamGUI/PreferencesUI.py:5151 flatcamTools/ToolCalculators.py:175 msgid "Board Width" msgstr "Lăt. plăcii" -#: flatcamGUI/PreferencesUI.py:5135 flatcamTools/ToolCalculators.py:181 +#: flatcamGUI/PreferencesUI.py:5153 flatcamTools/ToolCalculators.py:181 msgid "This is the board width.In centimeters." msgstr "" "Aceasta este lăţimea PCB-ului.\n" "In centimetri." -#: flatcamGUI/PreferencesUI.py:5140 flatcamTools/ToolCalculators.py:183 +#: flatcamGUI/PreferencesUI.py:5158 flatcamTools/ToolCalculators.py:183 msgid "Current Density" msgstr "Densitate I" -#: flatcamGUI/PreferencesUI.py:5146 flatcamTools/ToolCalculators.py:190 +#: flatcamGUI/PreferencesUI.py:5164 flatcamTools/ToolCalculators.py:190 msgid "" "Current density to pass through the board. \n" "In Amps per Square Feet ASF." @@ -11572,11 +11435,11 @@ msgstr "" "Densitatea de curent care să treaca prin placa.\n" "In ASF (amperi pe picior la patrat)." -#: flatcamGUI/PreferencesUI.py:5152 flatcamTools/ToolCalculators.py:193 +#: flatcamGUI/PreferencesUI.py:5170 flatcamTools/ToolCalculators.py:193 msgid "Copper Growth" msgstr "Grosime Cu" -#: flatcamGUI/PreferencesUI.py:5158 flatcamTools/ToolCalculators.py:200 +#: flatcamGUI/PreferencesUI.py:5176 flatcamTools/ToolCalculators.py:200 msgid "" "How thick the copper growth is intended to be.\n" "In microns." @@ -11584,11 +11447,11 @@ msgstr "" "Cat de gros se dorește să fie stratul de cupru depus.\n" "In microni." -#: flatcamGUI/PreferencesUI.py:5171 +#: flatcamGUI/PreferencesUI.py:5189 msgid "Transform Tool Options" msgstr "Opțiuni Unealta Transformare" -#: flatcamGUI/PreferencesUI.py:5177 +#: flatcamGUI/PreferencesUI.py:5195 msgid "" "Various transformations that can be applied\n" "on a FlatCAM object." @@ -11596,19 +11459,19 @@ msgstr "" "Diverse transformări care pot fi aplicate\n" "asupra unui obiect FlatCAM." -#: flatcamGUI/PreferencesUI.py:5208 +#: flatcamGUI/PreferencesUI.py:5226 msgid "Skew" msgstr "Deformare" -#: flatcamGUI/PreferencesUI.py:5249 flatcamTools/ToolTransform.py:149 +#: flatcamGUI/PreferencesUI.py:5267 flatcamTools/ToolTransform.py:149 msgid "Factor for scaling on X axis." msgstr "Factor de scalare pe axa X." -#: flatcamGUI/PreferencesUI.py:5262 flatcamTools/ToolTransform.py:170 +#: flatcamGUI/PreferencesUI.py:5280 flatcamTools/ToolTransform.py:170 msgid "Factor for scaling on Y axis." msgstr "Factor de scalare pe axa Y." -#: flatcamGUI/PreferencesUI.py:5270 flatcamTools/ToolTransform.py:193 +#: flatcamGUI/PreferencesUI.py:5288 flatcamTools/ToolTransform.py:193 msgid "" "Scale the selected object(s)\n" "using the Scale_X factor for both axis." @@ -11616,7 +11479,7 @@ msgstr "" "Scalează obiectele selectate folosind\n" "Factor Scal_X pentru ambele axe." -#: flatcamGUI/PreferencesUI.py:5278 flatcamTools/ToolTransform.py:201 +#: flatcamGUI/PreferencesUI.py:5296 flatcamTools/ToolTransform.py:201 msgid "" "Scale the selected object(s)\n" "using the origin reference when checked,\n" @@ -11629,27 +11492,27 @@ msgstr "" "centrul formei inconjuatoare care cuprinde\n" "toate obiectele selectate." -#: flatcamGUI/PreferencesUI.py:5294 flatcamTools/ToolTransform.py:216 +#: flatcamGUI/PreferencesUI.py:5312 flatcamTools/ToolTransform.py:216 msgid "X val" msgstr "Val X" -#: flatcamGUI/PreferencesUI.py:5296 flatcamTools/ToolTransform.py:218 +#: flatcamGUI/PreferencesUI.py:5314 flatcamTools/ToolTransform.py:218 msgid "Distance to offset on X axis. In current units." msgstr "Distanta la care se face ofset pe axa X. In unitatile curente." -#: flatcamGUI/PreferencesUI.py:5307 flatcamTools/ToolTransform.py:237 +#: flatcamGUI/PreferencesUI.py:5325 flatcamTools/ToolTransform.py:237 msgid "Y val" msgstr "Val Y" -#: flatcamGUI/PreferencesUI.py:5309 flatcamTools/ToolTransform.py:239 +#: flatcamGUI/PreferencesUI.py:5327 flatcamTools/ToolTransform.py:239 msgid "Distance to offset on Y axis. In current units." msgstr "Distanta la care se face ofset pe axa Y. In unitatile curente." -#: flatcamGUI/PreferencesUI.py:5315 flatcamTools/ToolTransform.py:284 +#: flatcamGUI/PreferencesUI.py:5333 flatcamTools/ToolTransform.py:284 msgid "Mirror Reference" msgstr "Referinţă Oglindire" -#: flatcamGUI/PreferencesUI.py:5317 flatcamTools/ToolTransform.py:286 +#: flatcamGUI/PreferencesUI.py:5335 flatcamTools/ToolTransform.py:286 msgid "" "Flip the selected object(s)\n" "around the point in Point Entry Field.\n" @@ -11672,11 +11535,11 @@ msgstr "" "in forma (x, y).\n" "La final apasă butonul de oglindire pe axa dorită" -#: flatcamGUI/PreferencesUI.py:5328 +#: flatcamGUI/PreferencesUI.py:5346 msgid "Mirror Reference point" msgstr "Punct referinţă Oglindire" -#: flatcamGUI/PreferencesUI.py:5330 +#: flatcamGUI/PreferencesUI.py:5348 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" @@ -11687,11 +11550,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 si" -#: flatcamGUI/PreferencesUI.py:5347 +#: flatcamGUI/PreferencesUI.py:5365 msgid "SolderPaste Tool Options" msgstr "Opțiuni Unealta Pasta Fludor" -#: flatcamGUI/PreferencesUI.py:5353 +#: flatcamGUI/PreferencesUI.py:5371 msgid "" "A tool to create GCode for dispensing\n" "solder paste onto a PCB." @@ -11699,49 +11562,49 @@ msgstr "" "O unealtă care crează cod G-Code pentru dispensarea de pastă de fludor\n" "pe padurile unui PCB." -#: flatcamGUI/PreferencesUI.py:5364 +#: flatcamGUI/PreferencesUI.py:5382 msgid "Diameters of nozzle tools, separated by ','" msgstr "Diametrele uneltelor (nozzle), separate prin virgula." -#: flatcamGUI/PreferencesUI.py:5372 +#: flatcamGUI/PreferencesUI.py:5390 msgid "New Nozzle Dia" msgstr "Dia nou" -#: flatcamGUI/PreferencesUI.py:5374 flatcamTools/ToolSolderPaste.py:106 +#: flatcamGUI/PreferencesUI.py:5392 flatcamTools/ToolSolderPaste.py:106 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/PreferencesUI.py:5390 flatcamTools/ToolSolderPaste.py:182 +#: flatcamGUI/PreferencesUI.py:5408 flatcamTools/ToolSolderPaste.py:182 msgid "Z Dispense Start" -msgstr "Z start disp." +msgstr "Z start dispensare" -#: flatcamGUI/PreferencesUI.py:5392 flatcamTools/ToolSolderPaste.py:184 +#: flatcamGUI/PreferencesUI.py:5410 flatcamTools/ToolSolderPaste.py:184 msgid "The height (Z) when solder paste dispensing starts." msgstr "Înălţimea (Z) când incepe dispensarea de pastă de fludor." -#: flatcamGUI/PreferencesUI.py:5403 flatcamTools/ToolSolderPaste.py:194 +#: flatcamGUI/PreferencesUI.py:5421 flatcamTools/ToolSolderPaste.py:194 msgid "Z Dispense" -msgstr "Z disp." +msgstr "Z dispensare" -#: flatcamGUI/PreferencesUI.py:5405 flatcamTools/ToolSolderPaste.py:196 +#: flatcamGUI/PreferencesUI.py:5423 flatcamTools/ToolSolderPaste.py:196 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/PreferencesUI.py:5416 flatcamTools/ToolSolderPaste.py:206 +#: flatcamGUI/PreferencesUI.py:5434 flatcamTools/ToolSolderPaste.py:206 msgid "Z Dispense Stop" -msgstr "Z stop disp." +msgstr "Z stop dispensare" -#: flatcamGUI/PreferencesUI.py:5418 flatcamTools/ToolSolderPaste.py:208 +#: flatcamGUI/PreferencesUI.py:5436 flatcamTools/ToolSolderPaste.py:208 msgid "The height (Z) when solder paste dispensing stops." msgstr "Înălţimea (Z) când se opreste dispensarea de pastă de fludor." -#: flatcamGUI/PreferencesUI.py:5429 flatcamTools/ToolSolderPaste.py:218 +#: flatcamGUI/PreferencesUI.py:5447 flatcamTools/ToolSolderPaste.py:218 msgid "Z Travel" msgstr "Z deplasare" -#: flatcamGUI/PreferencesUI.py:5431 flatcamTools/ToolSolderPaste.py:220 +#: flatcamGUI/PreferencesUI.py:5449 flatcamTools/ToolSolderPaste.py:220 msgid "" "The height (Z) for travel between pads\n" "(without dispensing solder paste)." @@ -11749,15 +11612,15 @@ msgstr "" "Înălţimea (Z) când se face deplasare între pad-uri.\n" "(fără dispensare de pastă de fludor)." -#: flatcamGUI/PreferencesUI.py:5443 flatcamTools/ToolSolderPaste.py:231 +#: flatcamGUI/PreferencesUI.py:5461 flatcamTools/ToolSolderPaste.py:231 msgid "Z Toolchange" msgstr "Z schimb. unealtă" -#: flatcamGUI/PreferencesUI.py:5445 flatcamTools/ToolSolderPaste.py:233 +#: flatcamGUI/PreferencesUI.py:5463 flatcamTools/ToolSolderPaste.py:233 msgid "The height (Z) for tool (nozzle) change." msgstr "Înălţimea (Z) când se schimbă unealta (nozzle-ul)." -#: flatcamGUI/PreferencesUI.py:5454 flatcamTools/ToolSolderPaste.py:241 +#: flatcamGUI/PreferencesUI.py:5472 flatcamTools/ToolSolderPaste.py:241 msgid "" "The X,Y location for tool (nozzle) change.\n" "The format is (x, y) where x and y are real numbers." @@ -11765,22 +11628,22 @@ msgstr "" "Coordonatele X, Y pentru schimbarea uneltei (nozzle).\n" "Formatul este (x,y) unde x și y sunt numere Reale." -#: flatcamGUI/PreferencesUI.py:5468 flatcamTools/ToolSolderPaste.py:254 +#: flatcamGUI/PreferencesUI.py:5486 flatcamTools/ToolSolderPaste.py:254 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/PreferencesUI.py:5481 flatcamTools/ToolSolderPaste.py:266 +#: flatcamGUI/PreferencesUI.py:5499 flatcamTools/ToolSolderPaste.py:266 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/PreferencesUI.py:5493 flatcamTools/ToolSolderPaste.py:277 +#: flatcamGUI/PreferencesUI.py:5511 flatcamTools/ToolSolderPaste.py:277 msgid "Feedrate Z Dispense" -msgstr "Feedrate Z disp." +msgstr "Feedrate Z dispensare" -#: flatcamGUI/PreferencesUI.py:5495 +#: flatcamGUI/PreferencesUI.py:5513 msgid "" "Feedrate (speed) while moving up vertically\n" "to Dispense position (on Z plane)." @@ -11788,11 +11651,11 @@ msgstr "" "Viteza de deplasare la mișcarea pe verticala spre\n" "poziţia de dispensare (in planul Z)." -#: flatcamGUI/PreferencesUI.py:5506 flatcamTools/ToolSolderPaste.py:289 +#: flatcamGUI/PreferencesUI.py:5524 flatcamTools/ToolSolderPaste.py:289 msgid "Spindle Speed FWD" msgstr "Viteza motor inainte" -#: flatcamGUI/PreferencesUI.py:5508 flatcamTools/ToolSolderPaste.py:291 +#: flatcamGUI/PreferencesUI.py:5526 flatcamTools/ToolSolderPaste.py:291 msgid "" "The dispenser speed while pushing solder paste\n" "through the dispenser nozzle." @@ -11800,19 +11663,19 @@ msgstr "" "Viteza motorului de dispensare in timp ce impinge pastă de fludor\n" "prin orificiul uneltei de dispensare." -#: flatcamGUI/PreferencesUI.py:5520 flatcamTools/ToolSolderPaste.py:302 +#: flatcamGUI/PreferencesUI.py:5538 flatcamTools/ToolSolderPaste.py:302 msgid "Dwell FWD" msgstr "Pauza FWD" -#: flatcamGUI/PreferencesUI.py:5522 flatcamTools/ToolSolderPaste.py:304 +#: flatcamGUI/PreferencesUI.py:5540 flatcamTools/ToolSolderPaste.py:304 msgid "Pause after solder dispensing." msgstr "Pauza dupa dispensarea de pastă de fludor." -#: flatcamGUI/PreferencesUI.py:5532 flatcamTools/ToolSolderPaste.py:313 +#: flatcamGUI/PreferencesUI.py:5550 flatcamTools/ToolSolderPaste.py:313 msgid "Spindle Speed REV" msgstr "Viteza motor inapoi" -#: flatcamGUI/PreferencesUI.py:5534 flatcamTools/ToolSolderPaste.py:315 +#: flatcamGUI/PreferencesUI.py:5552 flatcamTools/ToolSolderPaste.py:315 msgid "" "The dispenser speed while retracting solder paste\n" "through the dispenser nozzle." @@ -11820,11 +11683,11 @@ msgstr "" "Viteza motorului de dispensare in timp ce retrage pasta de fludor\n" "prin orificiul uneltei de dispensare." -#: flatcamGUI/PreferencesUI.py:5546 flatcamTools/ToolSolderPaste.py:326 +#: flatcamGUI/PreferencesUI.py:5564 flatcamTools/ToolSolderPaste.py:326 msgid "Dwell REV" msgstr "Pauza REV" -#: flatcamGUI/PreferencesUI.py:5548 flatcamTools/ToolSolderPaste.py:328 +#: flatcamGUI/PreferencesUI.py:5566 flatcamTools/ToolSolderPaste.py:328 msgid "" "Pause after solder paste dispenser retracted,\n" "to allow pressure equilibrium." @@ -11832,15 +11695,15 @@ msgstr "" "Pauza dupa ce pasta de fludor a fost retrasă,\n" "necesară pt a ajunge la un echilibru al presiunilor." -#: flatcamGUI/PreferencesUI.py:5557 flatcamTools/ToolSolderPaste.py:336 +#: flatcamGUI/PreferencesUI.py:5575 flatcamTools/ToolSolderPaste.py:336 msgid "Files that control the GCode generation." msgstr "Fişiere care controlează generarea codului G-Code." -#: flatcamGUI/PreferencesUI.py:5572 +#: flatcamGUI/PreferencesUI.py:5590 msgid "Substractor Tool Options" msgstr "Opțiuni Unealta Substracţie" -#: flatcamGUI/PreferencesUI.py:5578 +#: flatcamGUI/PreferencesUI.py:5596 msgid "" "A tool to substract one Gerber or Geometry object\n" "from another of the same type." @@ -11848,22 +11711,22 @@ msgstr "" "O unealtă pentru scăderea unui obiect Gerber sau Geometry\n" "din altul de același tip." -#: flatcamGUI/PreferencesUI.py:5583 flatcamTools/ToolSub.py:149 +#: flatcamGUI/PreferencesUI.py:5601 flatcamTools/ToolSub.py:149 msgid "Close paths" msgstr "Închide căile" -#: flatcamGUI/PreferencesUI.py:5584 +#: flatcamGUI/PreferencesUI.py:5602 msgid "" "Checking this will close the paths cut by the Geometry substractor object." msgstr "" "Verificând aceasta, se vor închide căile tăiate de obiectul tăietor de tip " "Geometrie." -#: flatcamGUI/PreferencesUI.py:5595 +#: flatcamGUI/PreferencesUI.py:5613 msgid "Check Rules Tool Options" msgstr "Opțiuni Unealta Verificare Reguli" -#: flatcamGUI/PreferencesUI.py:5600 +#: flatcamGUI/PreferencesUI.py:5618 msgid "" "A tool to check if Gerber files are within a set\n" "of Manufacturing Rules." @@ -11871,20 +11734,20 @@ msgstr "" "Un instrument pentru a verifica dacă fișierele Gerber se află într-un set\n" "de Norme de fabricație." -#: flatcamGUI/PreferencesUI.py:5610 flatcamTools/ToolRulesCheck.py:256 +#: flatcamGUI/PreferencesUI.py:5628 flatcamTools/ToolRulesCheck.py:256 #: flatcamTools/ToolRulesCheck.py:920 msgid "Trace Size" msgstr "Dim. traseu" -#: flatcamGUI/PreferencesUI.py:5612 flatcamTools/ToolRulesCheck.py:258 +#: flatcamGUI/PreferencesUI.py:5630 flatcamTools/ToolRulesCheck.py:258 msgid "This checks if the minimum size for traces is met." msgstr "Aceasta verifică dacă dimensiunea minimă a traseelor este respectată." -#: flatcamGUI/PreferencesUI.py:5622 flatcamGUI/PreferencesUI.py:5642 -#: flatcamGUI/PreferencesUI.py:5662 flatcamGUI/PreferencesUI.py:5682 -#: flatcamGUI/PreferencesUI.py:5702 flatcamGUI/PreferencesUI.py:5722 -#: flatcamGUI/PreferencesUI.py:5742 flatcamGUI/PreferencesUI.py:5762 -#: flatcamGUI/PreferencesUI.py:5784 flatcamGUI/PreferencesUI.py:5804 +#: flatcamGUI/PreferencesUI.py:5640 flatcamGUI/PreferencesUI.py:5660 +#: flatcamGUI/PreferencesUI.py:5680 flatcamGUI/PreferencesUI.py:5700 +#: flatcamGUI/PreferencesUI.py:5720 flatcamGUI/PreferencesUI.py:5740 +#: flatcamGUI/PreferencesUI.py:5760 flatcamGUI/PreferencesUI.py:5780 +#: flatcamGUI/PreferencesUI.py:5802 flatcamGUI/PreferencesUI.py:5822 #: flatcamTools/ToolRulesCheck.py:268 flatcamTools/ToolRulesCheck.py:290 #: flatcamTools/ToolRulesCheck.py:313 flatcamTools/ToolRulesCheck.py:336 #: flatcamTools/ToolRulesCheck.py:359 flatcamTools/ToolRulesCheck.py:382 @@ -11893,16 +11756,16 @@ msgstr "Aceasta verifică dacă dimensiunea minimă a traseelor este respectată msgid "Min value" msgstr "Val. min" -#: flatcamGUI/PreferencesUI.py:5624 flatcamTools/ToolRulesCheck.py:270 +#: flatcamGUI/PreferencesUI.py:5642 flatcamTools/ToolRulesCheck.py:270 msgid "Minimum acceptable trace size." msgstr "Dimensiunea minimă acceptabilă a traseelor." -#: flatcamGUI/PreferencesUI.py:5629 flatcamTools/ToolRulesCheck.py:277 +#: flatcamGUI/PreferencesUI.py:5647 flatcamTools/ToolRulesCheck.py:277 #: flatcamTools/ToolRulesCheck.py:1148 flatcamTools/ToolRulesCheck.py:1178 msgid "Copper to Copper clearance" msgstr "Distanta de la cupru până la cupru" -#: flatcamGUI/PreferencesUI.py:5631 flatcamTools/ToolRulesCheck.py:279 +#: flatcamGUI/PreferencesUI.py:5649 flatcamTools/ToolRulesCheck.py:279 msgid "" "This checks if the minimum clearance between copper\n" "features is met." @@ -11910,23 +11773,23 @@ msgstr "" "Aceasta verifică dacă distanța minimă dintre traseele cupru\n" "este îndeplinita." -#: flatcamGUI/PreferencesUI.py:5644 flatcamGUI/PreferencesUI.py:5664 -#: flatcamGUI/PreferencesUI.py:5684 flatcamGUI/PreferencesUI.py:5704 -#: flatcamGUI/PreferencesUI.py:5724 flatcamGUI/PreferencesUI.py:5744 -#: flatcamGUI/PreferencesUI.py:5806 flatcamTools/ToolRulesCheck.py:292 +#: flatcamGUI/PreferencesUI.py:5662 flatcamGUI/PreferencesUI.py:5682 +#: flatcamGUI/PreferencesUI.py:5702 flatcamGUI/PreferencesUI.py:5722 +#: flatcamGUI/PreferencesUI.py:5742 flatcamGUI/PreferencesUI.py:5762 +#: flatcamGUI/PreferencesUI.py:5824 flatcamTools/ToolRulesCheck.py:292 #: flatcamTools/ToolRulesCheck.py:315 flatcamTools/ToolRulesCheck.py:338 #: flatcamTools/ToolRulesCheck.py:361 flatcamTools/ToolRulesCheck.py:384 #: flatcamTools/ToolRulesCheck.py:407 flatcamTools/ToolRulesCheck.py:455 msgid "Minimum acceptable clearance value." msgstr "Valoarea minimă acceptabilă a distantei." -#: flatcamGUI/PreferencesUI.py:5649 flatcamTools/ToolRulesCheck.py:300 +#: flatcamGUI/PreferencesUI.py:5667 flatcamTools/ToolRulesCheck.py:300 #: flatcamTools/ToolRulesCheck.py:1208 flatcamTools/ToolRulesCheck.py:1214 #: flatcamTools/ToolRulesCheck.py:1227 flatcamTools/ToolRulesCheck.py:1234 msgid "Copper to Outline clearance" msgstr "Distanta de la Cupru până la contur" -#: flatcamGUI/PreferencesUI.py:5651 flatcamTools/ToolRulesCheck.py:302 +#: flatcamGUI/PreferencesUI.py:5669 flatcamTools/ToolRulesCheck.py:302 msgid "" "This checks if the minimum clearance between copper\n" "features and the outline is met." @@ -11934,11 +11797,11 @@ msgstr "" "Aceasta verifică dacă distanța minimă dintre\n" "traseele de cupru și conturul este îndeplinit." -#: flatcamGUI/PreferencesUI.py:5669 flatcamTools/ToolRulesCheck.py:323 +#: flatcamGUI/PreferencesUI.py:5687 flatcamTools/ToolRulesCheck.py:323 msgid "Silk to Silk Clearance" msgstr "Distanta Silk până la Silk Clearance" -#: flatcamGUI/PreferencesUI.py:5671 flatcamTools/ToolRulesCheck.py:325 +#: flatcamGUI/PreferencesUI.py:5689 flatcamTools/ToolRulesCheck.py:325 msgid "" "This checks if the minimum clearance between silkscreen\n" "features and silkscreen features is met." @@ -11946,13 +11809,13 @@ msgstr "" "Acest lucru verifică dacă distanța minimă între silk (anotari)\n" "sunt îndeplinite." -#: flatcamGUI/PreferencesUI.py:5689 flatcamTools/ToolRulesCheck.py:346 +#: flatcamGUI/PreferencesUI.py:5707 flatcamTools/ToolRulesCheck.py:346 #: flatcamTools/ToolRulesCheck.py:1317 flatcamTools/ToolRulesCheck.py:1323 #: flatcamTools/ToolRulesCheck.py:1341 msgid "Silk to Solder Mask Clearance" msgstr "Distanta intre Silk (anotari) si Solder mask (masca fludor)" -#: flatcamGUI/PreferencesUI.py:5691 flatcamTools/ToolRulesCheck.py:348 +#: flatcamGUI/PreferencesUI.py:5709 flatcamTools/ToolRulesCheck.py:348 msgid "" "This checks if the minimum clearance between silkscreen\n" "features and soldermask features is met." @@ -11960,13 +11823,13 @@ msgstr "" "Acest lucru verifică dacă distanța minimă între Silk (anotari)\n" "și Solder Mask (masca de fludor) este îndeplinită." -#: flatcamGUI/PreferencesUI.py:5709 flatcamTools/ToolRulesCheck.py:369 +#: flatcamGUI/PreferencesUI.py:5727 flatcamTools/ToolRulesCheck.py:369 #: flatcamTools/ToolRulesCheck.py:1371 flatcamTools/ToolRulesCheck.py:1377 #: flatcamTools/ToolRulesCheck.py:1391 flatcamTools/ToolRulesCheck.py:1398 msgid "Silk to Outline Clearance" msgstr "Distanta Silk (anotari) si Contur" -#: flatcamGUI/PreferencesUI.py:5711 flatcamTools/ToolRulesCheck.py:371 +#: flatcamGUI/PreferencesUI.py:5729 flatcamTools/ToolRulesCheck.py:371 msgid "" "This checks if the minimum clearance between silk\n" "features and the outline is met." @@ -11974,14 +11837,14 @@ msgstr "" "Acest lucru verifică dacă distanța minimă dintre Silk (anotari)\n" "și Contur este îndeplinită." -#: flatcamGUI/PreferencesUI.py:5729 flatcamTools/ToolRulesCheck.py:392 +#: flatcamGUI/PreferencesUI.py:5747 flatcamTools/ToolRulesCheck.py:392 #: flatcamTools/ToolRulesCheck.py:1409 flatcamTools/ToolRulesCheck.py:1436 msgid "Minimum Solder Mask Sliver" msgstr "" "Dim. minima a separatorului din Solder Mask\n" "(masca de fludor)" -#: flatcamGUI/PreferencesUI.py:5731 flatcamTools/ToolRulesCheck.py:394 +#: flatcamGUI/PreferencesUI.py:5749 flatcamTools/ToolRulesCheck.py:394 msgid "" "This checks if the minimum clearance between soldermask\n" "features and soldermask features is met." @@ -11989,13 +11852,13 @@ msgstr "" "Acest lucru verifică dacă distanta minimă între\n" "elementele soldermask (masca de fludor) este îndeplinită." -#: flatcamGUI/PreferencesUI.py:5749 flatcamTools/ToolRulesCheck.py:415 +#: flatcamGUI/PreferencesUI.py:5767 flatcamTools/ToolRulesCheck.py:415 #: flatcamTools/ToolRulesCheck.py:1474 flatcamTools/ToolRulesCheck.py:1480 #: flatcamTools/ToolRulesCheck.py:1496 flatcamTools/ToolRulesCheck.py:1503 msgid "Minimum Annular Ring" msgstr "Inel anular minim" -#: flatcamGUI/PreferencesUI.py:5751 flatcamTools/ToolRulesCheck.py:417 +#: flatcamGUI/PreferencesUI.py:5769 flatcamTools/ToolRulesCheck.py:417 msgid "" "This checks if the minimum copper ring left by drilling\n" "a hole into a pad is met." @@ -12003,16 +11866,16 @@ msgstr "" "Acest lucru verifică dacă inelul de cupru minim rămas prin găurire\n" "unde se întâlnește o gaură cu pad-ul depășește valoarea minimă." -#: flatcamGUI/PreferencesUI.py:5764 flatcamTools/ToolRulesCheck.py:430 +#: flatcamGUI/PreferencesUI.py:5782 flatcamTools/ToolRulesCheck.py:430 msgid "Minimum acceptable ring value." msgstr "Valoarea minimă acceptabilă a inelului." -#: flatcamGUI/PreferencesUI.py:5771 flatcamTools/ToolRulesCheck.py:440 +#: flatcamGUI/PreferencesUI.py:5789 flatcamTools/ToolRulesCheck.py:440 #: flatcamTools/ToolRulesCheck.py:864 msgid "Hole to Hole Clearance" msgstr "Distanta de la Gaură la Gaură" -#: flatcamGUI/PreferencesUI.py:5773 flatcamTools/ToolRulesCheck.py:442 +#: flatcamGUI/PreferencesUI.py:5791 flatcamTools/ToolRulesCheck.py:442 msgid "" "This checks if the minimum clearance between a drill hole\n" "and another drill hole is met." @@ -12020,16 +11883,16 @@ msgstr "" "Acest lucru verifică dacă distanța minimă dintre o gaură\n" "și o altă gaură este îndeplinită." -#: flatcamGUI/PreferencesUI.py:5786 flatcamTools/ToolRulesCheck.py:478 +#: flatcamGUI/PreferencesUI.py:5804 flatcamTools/ToolRulesCheck.py:478 msgid "Minimum acceptable drill size." msgstr "Dimensiunea minimă acceptabilă a gaurii." -#: flatcamGUI/PreferencesUI.py:5791 flatcamTools/ToolRulesCheck.py:463 +#: flatcamGUI/PreferencesUI.py:5809 flatcamTools/ToolRulesCheck.py:463 #: flatcamTools/ToolRulesCheck.py:838 msgid "Hole Size" msgstr "Dimens. gaura" -#: flatcamGUI/PreferencesUI.py:5793 flatcamTools/ToolRulesCheck.py:465 +#: flatcamGUI/PreferencesUI.py:5811 flatcamTools/ToolRulesCheck.py:465 msgid "" "This checks if the drill holes\n" "sizes are above the threshold." @@ -12037,11 +11900,11 @@ msgstr "" "Acest lucru verifică dacă\n" "dimensiunile găurilor sunt peste prag." -#: flatcamGUI/PreferencesUI.py:5818 +#: flatcamGUI/PreferencesUI.py:5836 msgid "Optimal Tool Options" msgstr "Opțiuni Unealta Optim" -#: flatcamGUI/PreferencesUI.py:5824 +#: flatcamGUI/PreferencesUI.py:5842 msgid "" "A tool to find the minimum distance between\n" "every two Gerber geometric elements" @@ -12049,46 +11912,44 @@ msgstr "" "Un instrument pentru a găsi distanța minimă între\n" "la fiecare două elemente geometrice Gerber" -#: flatcamGUI/PreferencesUI.py:5839 flatcamTools/ToolOptimal.py:78 +#: flatcamGUI/PreferencesUI.py:5857 flatcamTools/ToolOptimal.py:78 msgid "Precision" msgstr "Precizie" -#: flatcamGUI/PreferencesUI.py:5841 +#: flatcamGUI/PreferencesUI.py:5859 msgid "Number of decimals for the distances and coordinates in this tool." msgstr "" "Numărul de zecimale pentru distanțele și coordonatele din acest instrument." -#: flatcamGUI/PreferencesUI.py:5855 -#, fuzzy -#| msgid "NCC Tool Options" +#: flatcamGUI/PreferencesUI.py:5873 msgid "QRCode Tool Options" -msgstr "Opțiuni Unealta NCC" +msgstr "Opțiuni Unealta QRCode" -#: flatcamGUI/PreferencesUI.py:5861 +#: flatcamGUI/PreferencesUI.py:5879 msgid "" "A tool to create a QRCode that can be inserted\n" "into a selected Gerber file, or it can be exported as a file." msgstr "" +"O unealta pentru a crea un cod QRC care poate fi inserat\n" +"într-un fișier Gerber selectat sau care poate fi exportat ca fișier." -#: flatcamGUI/PreferencesUI.py:5873 flatcamTools/ToolQRCode.py:99 -#, fuzzy -#| msgid "Conversion" +#: flatcamGUI/PreferencesUI.py:5891 flatcamTools/ToolQRCode.py:99 msgid "Version" -msgstr "Conversii" +msgstr "Versiune" -#: flatcamGUI/PreferencesUI.py:5875 flatcamTools/ToolQRCode.py:101 +#: flatcamGUI/PreferencesUI.py:5893 flatcamTools/ToolQRCode.py:101 msgid "" "QRCode version can have values from 1 (21x21 boxes)\n" "to 40 (177x177 boxes)." msgstr "" +"Versiunea QRCode poate avea valori de la 1 (21x21 elemente)\n" +"la 40 (177x177 elemente)." -#: flatcamGUI/PreferencesUI.py:5886 flatcamTools/ToolQRCode.py:112 -#, fuzzy -#| msgid "Corrections" +#: flatcamGUI/PreferencesUI.py:5904 flatcamTools/ToolQRCode.py:112 msgid "Error correction" -msgstr "Corecţii" +msgstr "Corectarea erorii" -#: flatcamGUI/PreferencesUI.py:5888 flatcamGUI/PreferencesUI.py:5899 +#: flatcamGUI/PreferencesUI.py:5906 flatcamGUI/PreferencesUI.py:5917 #: flatcamTools/ToolQRCode.py:114 flatcamTools/ToolQRCode.py:125 #, python-format msgid "" @@ -12098,376 +11959,361 @@ msgid "" "Q = maximum 25%% errors can be corrected\n" "H = maximum 30%% errors can be corrected." msgstr "" +"Parametru care controlează corectarea erorilor utilizate pentru codul QR.\n" +"L = maxim 7%% erorile pot fi corectate\n" +"M = maxim 15%% erorile pot fi corectate\n" +"Q = erorile maxime de 25%% pot fi corectate\n" +"H = maxim 30%% erorile pot fi corectate." -#: flatcamGUI/PreferencesUI.py:5909 flatcamTools/ToolQRCode.py:135 -#, fuzzy -#| msgid "Font Size" +#: flatcamGUI/PreferencesUI.py:5927 flatcamTools/ToolQRCode.py:135 msgid "Box Size" -msgstr "Dim. Font" +msgstr "Dim. Element" -#: flatcamGUI/PreferencesUI.py:5911 flatcamTools/ToolQRCode.py:137 +#: flatcamGUI/PreferencesUI.py:5929 flatcamTools/ToolQRCode.py:137 msgid "" "Box size control the overall size of the QRcode\n" "by adjusting the size of each box in the code." msgstr "" +"Dimensiunea Element controlează dimensiunea generală a codului QR\n" +"prin ajustarea dimensiunii fiecărui element din cod." -#: flatcamGUI/PreferencesUI.py:5922 flatcamTools/ToolQRCode.py:148 -#, fuzzy -#| msgid "Border" +#: flatcamGUI/PreferencesUI.py:5940 flatcamTools/ToolQRCode.py:148 msgid "Border Size" -msgstr "Bordură" +msgstr "Dim Bordură" -#: flatcamGUI/PreferencesUI.py:5924 flatcamTools/ToolQRCode.py:150 +#: flatcamGUI/PreferencesUI.py:5942 flatcamTools/ToolQRCode.py:150 msgid "" "Size of the QRCode border. How many boxes thick is the border.\n" "Default value is 4. The width of the clearance around the QRCode." msgstr "" +"Dimensiunea chenarului QRCode. Câte elemente va contine bordura.\n" +"Valoarea implicită este 4. Lățimea spatiului liber în jurul codului QRC." -#: flatcamGUI/PreferencesUI.py:5935 flatcamTools/ToolQRCode.py:162 -#, fuzzy -#| msgid "Tool Data" +#: flatcamGUI/PreferencesUI.py:5953 flatcamTools/ToolQRCode.py:162 msgid "QRCode Data" -msgstr "Date unealtă" +msgstr "Date QRCode" -#: flatcamGUI/PreferencesUI.py:5937 flatcamTools/ToolQRCode.py:164 +#: flatcamGUI/PreferencesUI.py:5955 flatcamTools/ToolQRCode.py:164 msgid "QRCode Data. Alphanumeric text to be encoded in the QRCode." -msgstr "" +msgstr "Date QRCode. Text alfanumeric care va fi codat în codul QRC." -#: flatcamGUI/PreferencesUI.py:5941 flatcamTools/ToolQRCode.py:168 +#: flatcamGUI/PreferencesUI.py:5959 flatcamTools/ToolQRCode.py:168 msgid "Add here the text to be included in the QRCode..." -msgstr "" +msgstr "Adăugați aici textul care va fi inclus în codul QR ..." -#: flatcamGUI/PreferencesUI.py:5947 flatcamTools/ToolQRCode.py:174 +#: flatcamGUI/PreferencesUI.py:5965 flatcamTools/ToolQRCode.py:174 msgid "Polarity" -msgstr "" +msgstr "Polaritate" -#: flatcamGUI/PreferencesUI.py:5949 flatcamTools/ToolQRCode.py:176 +#: flatcamGUI/PreferencesUI.py:5967 flatcamTools/ToolQRCode.py:176 msgid "" "Choose the polarity of the QRCode.\n" "It can be drawn in a negative way (squares are clear)\n" "or in a positive way (squares are opaque)." msgstr "" +"Alegeți polaritatea codului QRC.\n" +"Poate fi desenat într-un mod negativ (pătratele sunt clare)\n" +"sau într-un mod pozitiv (pătratele sunt opace)." -#: flatcamGUI/PreferencesUI.py:5953 flatcamTools/ToolFilm.py:296 +#: flatcamGUI/PreferencesUI.py:5971 flatcamTools/ToolFilm.py:296 #: flatcamTools/ToolQRCode.py:180 msgid "Negative" msgstr "Negativ" -#: flatcamGUI/PreferencesUI.py:5954 flatcamTools/ToolFilm.py:295 +#: flatcamGUI/PreferencesUI.py:5972 flatcamTools/ToolFilm.py:295 #: flatcamTools/ToolQRCode.py:181 msgid "Positive" msgstr "Pozitiv" -#: flatcamGUI/PreferencesUI.py:5956 flatcamTools/ToolQRCode.py:183 +#: flatcamGUI/PreferencesUI.py:5974 flatcamTools/ToolQRCode.py:183 msgid "" "Choose the type of QRCode to be created.\n" "If added on a Silkscreen Gerber file the QRCode may\n" "be added as positive. If it is added to a Copper Gerber\n" "file then perhaps the QRCode can be added as negative." msgstr "" +"Alegeți tipul de cod QRC care urmează să fie creat.\n" +"Dacă este adăugat într-un fișier Silkscreen Gerber, codul QR poate\n" +"să fie adăugat ca fiind pozitiv. Dacă este adăugat la un Gerber de cupru\n" +"atunci codul QR poate fi adăugat ca negativ." -#: flatcamGUI/PreferencesUI.py:5967 flatcamGUI/PreferencesUI.py:5973 +#: flatcamGUI/PreferencesUI.py:5985 flatcamGUI/PreferencesUI.py:5991 #: flatcamTools/ToolQRCode.py:194 flatcamTools/ToolQRCode.py:200 msgid "" "The bounding box, meaning the empty space that surrounds\n" "the QRCode geometry, can have a rounded or a square shape." msgstr "" +"Caseta de încadrare, adică spațiul gol care înconjoară\n" +"geometria QRCode, poate avea o formă rotunjită sau pătrată." -#: flatcamGUI/PreferencesUI.py:5970 flatcamTools/ToolQRCode.py:197 -#, fuzzy -#| msgid "Round" +#: flatcamGUI/PreferencesUI.py:5988 flatcamTools/ToolQRCode.py:197 msgid "Rounded" -msgstr "Rotund" +msgstr "Rotunjit" -#: flatcamGUI/PreferencesUI.py:5980 flatcamTools/ToolQRCode.py:228 -#, fuzzy -#| msgid "Film Color" +#: flatcamGUI/PreferencesUI.py:5998 flatcamTools/ToolQRCode.py:228 msgid "Fill Color" -msgstr "Film Color" +msgstr "Culoare Continut" -#: flatcamGUI/PreferencesUI.py:5982 flatcamTools/ToolQRCode.py:230 +#: flatcamGUI/PreferencesUI.py:6000 flatcamTools/ToolQRCode.py:230 msgid "Set the QRCode fill color (squares color)." -msgstr "" +msgstr "Setați culoarea QRCode de umplere (culoarea elementelor)." -#: flatcamGUI/PreferencesUI.py:6001 flatcamTools/ToolQRCode.py:252 -#, fuzzy -#| msgid "Font Color" +#: flatcamGUI/PreferencesUI.py:6019 flatcamTools/ToolQRCode.py:252 msgid "Back Color" -msgstr "Culoare FOnt" +msgstr "Culoare de fundal" -#: flatcamGUI/PreferencesUI.py:6003 flatcamTools/ToolQRCode.py:254 +#: flatcamGUI/PreferencesUI.py:6021 flatcamTools/ToolQRCode.py:254 msgid "Set the QRCode background color." -msgstr "" +msgstr "Setați culoarea de fundal QRCode." -#: flatcamGUI/PreferencesUI.py:6043 -#, fuzzy -#| msgid "Film Tool Options" +#: flatcamGUI/PreferencesUI.py:6061 msgid "Copper Thieving Tool Options" -msgstr "Opțiuni Unealta Film" +msgstr "Opțiunile Uneltei Copper Thieving" -#: flatcamGUI/PreferencesUI.py:6055 +#: flatcamGUI/PreferencesUI.py:6073 msgid "" "A tool to generate a Copper Thieving that can be added\n" "to a selected Gerber file." msgstr "" +"Un instrument pentru a genera o Copper Thieving care poate fi adăugat\n" +"la un fișier Gerber selectat." -#: flatcamGUI/PreferencesUI.py:6063 +#: flatcamGUI/PreferencesUI.py:6081 msgid "Number of steps (lines) used to interpolate circles." -msgstr "" +msgstr "Numărul de pași (linii) utilizate pentru interpolarea cercurilor." -#: flatcamGUI/PreferencesUI.py:6073 flatcamGUI/PreferencesUI.py:6277 +#: flatcamGUI/PreferencesUI.py:6091 flatcamGUI/PreferencesUI.py:6295 #: flatcamTools/ToolCopperThieving.py:96 flatcamTools/ToolCopperThieving.py:429 -#, fuzzy -#| msgid "Tolerance" msgid "Clearance" -msgstr "Toleranta" +msgstr "Degajare" -#: flatcamGUI/PreferencesUI.py:6075 +#: flatcamGUI/PreferencesUI.py:6093 msgid "" "This set the distance between the copper Thieving components\n" "(the polygon fill may be split in multiple polygons)\n" "and the copper traces in the Gerber file." msgstr "" +"Acest lucru a stabilit distanța dintre componentele Copper Thieving\n" +"(umplutura poligonului poate fi împărțită în mai multe poligoane)\n" +"si traseele de cupru din fisierul Gerber." -#: flatcamGUI/PreferencesUI.py:6103 flatcamTools/ToolCopperThieving.py:126 +#: flatcamGUI/PreferencesUI.py:6121 flatcamTools/ToolCopperThieving.py:126 #: flatcamTools/ToolNonCopperClear.py:436 flatcamTools/ToolPaint.py:314 msgid "Area Selection" msgstr "Selecţie zonă" -#: flatcamGUI/PreferencesUI.py:6104 flatcamTools/ToolCopperThieving.py:127 +#: flatcamGUI/PreferencesUI.py:6122 flatcamTools/ToolCopperThieving.py:127 #: flatcamTools/ToolNonCopperClear.py:437 flatcamTools/ToolPaint.py:316 msgid "Reference Object" msgstr "Obiect Ref" -#: flatcamGUI/PreferencesUI.py:6106 flatcamTools/ToolCopperThieving.py:129 +#: flatcamGUI/PreferencesUI.py:6124 flatcamTools/ToolCopperThieving.py:129 #: flatcamTools/ToolNonCopperClear.py:439 msgid "Reference:" msgstr "Referinţă:" -#: flatcamGUI/PreferencesUI.py:6108 -#, fuzzy -#| msgid "" -#| "- 'Itself' - the non copper clearing extent\n" -#| "is based on the object that is copper cleared.\n" -#| " - 'Area Selection' - left mouse click to start selection of the area to " -#| "be painted.\n" -#| "Keeping a modifier key pressed (CTRL or SHIFT) will allow to add multiple " -#| "areas.\n" -#| "- 'Reference Object' - will do non copper clearing within the area\n" -#| "specified by another object." +#: flatcamGUI/PreferencesUI.py:6126 msgid "" "- 'Itself' - the copper Thieving extent is based on the object that is " "copper cleared.\n" -" - 'Area Selection' - left mouse click to start selection of the area to be " +"- 'Area Selection' - left mouse click to start selection of the area to be " "filled.\n" "- 'Reference Object' - will do copper thieving within the area specified by " "another object." msgstr "" -"- „Însuși” - suprafața de curățare a cuprului\n" -"se bazează pe obiectul care este curățat de cupru.\n" -"  - „Selecție zonă” - faceți clic stânga cu mouse-ul pentru a începe " -"selecția zonei care va fi pictată.\n" -"Menținerea unei taste de modificare apăsată (CTRL sau SHIFT) va permite " -"adăugarea mai multor zone.\n" -"- „Obiect de referință” - va face o curățare fără cupru în zona\n" -"specificată de un alt obiect." +"- „Însuși” - dimensiunea Copper Thieving se bazează pe obiectul care este " +"curățat de cupru.\n" +"- „Selecție zonă” - faceți clic stânga cu mouse-ul pentru a începe selecția " +"zonei de completat.\n" +"- „Obiect de referință” - va face Copper Thieving în zona specificată de un " +"alt obiect." -#: flatcamGUI/PreferencesUI.py:6117 flatcamTools/ToolCopperThieving.py:170 +#: flatcamGUI/PreferencesUI.py:6135 flatcamTools/ToolCopperThieving.py:170 msgid "Rectangular" msgstr "Patrulater" -#: flatcamGUI/PreferencesUI.py:6118 flatcamTools/ToolCopperThieving.py:171 +#: flatcamGUI/PreferencesUI.py:6136 flatcamTools/ToolCopperThieving.py:171 msgid "Minimal" -msgstr "" +msgstr "Minimal" -#: flatcamGUI/PreferencesUI.py:6120 flatcamTools/ToolCopperThieving.py:173 +#: flatcamGUI/PreferencesUI.py:6138 flatcamTools/ToolCopperThieving.py:173 #: flatcamTools/ToolFilm.py:113 msgid "Box Type:" msgstr "Tip container:" -#: flatcamGUI/PreferencesUI.py:6122 +#: flatcamGUI/PreferencesUI.py:6140 flatcamTools/ToolCopperThieving.py:175 msgid "" "- 'Rectangular' - the bounding box will be of rectangular shape.\n" -" - 'Minimal' - the bounding box will be the convex hull shape." +"- 'Minimal' - the bounding box will be the convex hull shape." msgstr "" +"- „Dreptunghiular” - caseta de delimitare va avea o formă dreptunghiulară.\n" +"- „Minimal” - caseta de delimitare va fi forma arie convexă." -#: flatcamGUI/PreferencesUI.py:6136 flatcamTools/ToolCopperThieving.py:191 +#: flatcamGUI/PreferencesUI.py:6154 flatcamTools/ToolCopperThieving.py:191 msgid "Dots Grid" -msgstr "" +msgstr "Grilă de puncte" -#: flatcamGUI/PreferencesUI.py:6137 flatcamTools/ToolCopperThieving.py:192 -#, fuzzy -#| msgid "Square" +#: flatcamGUI/PreferencesUI.py:6155 flatcamTools/ToolCopperThieving.py:192 msgid "Squares Grid" -msgstr "Patrat" +msgstr "Grilă de pătrate" -#: flatcamGUI/PreferencesUI.py:6138 flatcamTools/ToolCopperThieving.py:193 -#, fuzzy -#| msgid "Linear" +#: flatcamGUI/PreferencesUI.py:6156 flatcamTools/ToolCopperThieving.py:193 msgid "Lines Grid" -msgstr "Liniar" +msgstr "Grilă de linii" -#: flatcamGUI/PreferencesUI.py:6140 flatcamTools/ToolCopperThieving.py:195 -#, fuzzy -#| msgid "Film Type:" +#: flatcamGUI/PreferencesUI.py:6158 flatcamTools/ToolCopperThieving.py:195 msgid "Fill Type:" -msgstr "Tip film:" +msgstr "Tip de umplere:" -#: flatcamGUI/PreferencesUI.py:6142 +#: flatcamGUI/PreferencesUI.py:6160 flatcamTools/ToolCopperThieving.py:197 msgid "" "- 'Solid' - copper thieving will be a solid polygon.\n" -" - 'Dots Grid' - the empty area will be filled with a pattern of dots.\n" +"- 'Dots Grid' - the empty area will be filled with a pattern of dots.\n" "- 'Squares Grid' - the empty area will be filled with a pattern of squares.\n" "- 'Lines Grid' - the empty area will be filled with a pattern of lines." msgstr "" +"- „Solid” - Copper Thieving va fi un poligon solid.\n" +"- „Grilă de puncte” - zona goală va fi umplută cu un model de puncte.\n" +"- „Grilă de pătrate” - zona goală va fi umplută cu un model de pătrate.\n" +"- „Grilă de linii” - zona goală va fi umplută cu un model de linii." -#: flatcamGUI/PreferencesUI.py:6150 flatcamTools/ToolCopperThieving.py:216 -#, fuzzy -#| msgid "Slot Parameters" +#: flatcamGUI/PreferencesUI.py:6168 flatcamTools/ToolCopperThieving.py:216 msgid "Dots Grid Parameters" -msgstr "Parametrii pt slot" +msgstr "Parametri grilă puncte" -#: flatcamGUI/PreferencesUI.py:6156 flatcamTools/ToolCopperThieving.py:222 -#, fuzzy -#| msgid "Tool diameter in file units." +#: flatcamGUI/PreferencesUI.py:6174 flatcamTools/ToolCopperThieving.py:222 msgid "Dot diameter in Dots Grid." -msgstr "Dimaetrul uneltei in unitătile fisierului." +msgstr "Diametrul punctului în Grila de Puncte." -#: flatcamGUI/PreferencesUI.py:6167 flatcamGUI/PreferencesUI.py:6196 -#: flatcamGUI/PreferencesUI.py:6225 flatcamTools/ToolCopperThieving.py:233 +#: flatcamGUI/PreferencesUI.py:6185 flatcamGUI/PreferencesUI.py:6214 +#: flatcamGUI/PreferencesUI.py:6243 flatcamTools/ToolCopperThieving.py:233 #: flatcamTools/ToolCopperThieving.py:273 #: flatcamTools/ToolCopperThieving.py:313 -#, fuzzy -#| msgid "Spacing cols" msgid "Spacing" -msgstr "Sep. coloane" +msgstr "Spaţiere" -#: flatcamGUI/PreferencesUI.py:6169 flatcamTools/ToolCopperThieving.py:235 +#: flatcamGUI/PreferencesUI.py:6187 flatcamTools/ToolCopperThieving.py:235 msgid "Distance between each two dots in Dots Grid." -msgstr "" +msgstr "Distanța dintre fiecare două puncte din Grila de Puncte." -#: flatcamGUI/PreferencesUI.py:6179 flatcamTools/ToolCopperThieving.py:256 -#, fuzzy -#| msgid "Slot Parameters" +#: flatcamGUI/PreferencesUI.py:6197 flatcamTools/ToolCopperThieving.py:256 msgid "Squares Grid Parameters" -msgstr "Parametrii pt slot" +msgstr "Parametri grilă de patrate" -#: flatcamGUI/PreferencesUI.py:6185 flatcamTools/ToolCopperThieving.py:262 +#: flatcamGUI/PreferencesUI.py:6203 flatcamTools/ToolCopperThieving.py:262 msgid "Square side size in Squares Grid." -msgstr "" +msgstr "Dimensiunea pătratului în grila de pătrate" -#: flatcamGUI/PreferencesUI.py:6198 flatcamTools/ToolCopperThieving.py:275 +#: flatcamGUI/PreferencesUI.py:6216 flatcamTools/ToolCopperThieving.py:275 msgid "Distance between each two squares in Squares Grid." -msgstr "" +msgstr "Distanța dintre fiecare două pătrate din Grila Pătrate." -#: flatcamGUI/PreferencesUI.py:6208 flatcamTools/ToolCopperThieving.py:296 -#, fuzzy -#| msgid "Slot Parameters" +#: flatcamGUI/PreferencesUI.py:6226 flatcamTools/ToolCopperThieving.py:296 msgid "Lines Grid Parameters" -msgstr "Parametrii pt slot" +msgstr "Parametri grilă de linii" -#: flatcamGUI/PreferencesUI.py:6214 flatcamTools/ToolCopperThieving.py:302 +#: flatcamGUI/PreferencesUI.py:6232 flatcamTools/ToolCopperThieving.py:302 msgid "Line thickness size in Lines Grid." -msgstr "" +msgstr "Mărimea grosimii liniei în Grila de linii." -#: flatcamGUI/PreferencesUI.py:6227 flatcamTools/ToolCopperThieving.py:315 +#: flatcamGUI/PreferencesUI.py:6245 flatcamTools/ToolCopperThieving.py:315 msgid "Distance between each two lines in Lines Grid." -msgstr "" +msgstr "Distanța dintre fiecare două linii în Grial de linii." -#: flatcamGUI/PreferencesUI.py:6237 flatcamTools/ToolCopperThieving.py:353 -#, fuzzy -#| msgid "Slot Parameters" +#: flatcamGUI/PreferencesUI.py:6255 flatcamTools/ToolCopperThieving.py:353 msgid "Robber Bar Parameters" -msgstr "Parametrii pt slot" +msgstr "Parametri pentru Robber Bar" -#: flatcamGUI/PreferencesUI.py:6239 flatcamTools/ToolCopperThieving.py:355 +#: flatcamGUI/PreferencesUI.py:6257 flatcamTools/ToolCopperThieving.py:355 msgid "" "Parameters used for the robber bar.\n" "Robber bar = copper border to help in pattern hole plating." msgstr "" +"Parametrii folosiți pentru Robber Bar.\n" +"Robber Bar = bordura de cupru pentru a ajuta la placarea de găuri, cu model." -#: flatcamGUI/PreferencesUI.py:6247 flatcamTools/ToolCopperThieving.py:363 -#, fuzzy -#| msgid "Bounding box margin." +#: flatcamGUI/PreferencesUI.py:6265 flatcamTools/ToolCopperThieving.py:363 msgid "Bounding box margin for robber bar." -msgstr "Marginea pentru forma înconjurătoare." +msgstr "" +"Marginea pentru forma înconjurătoare\n" +"a Robber Bar." -#: flatcamGUI/PreferencesUI.py:6258 flatcamTools/ToolCopperThieving.py:374 +#: flatcamGUI/PreferencesUI.py:6276 flatcamTools/ToolCopperThieving.py:374 msgid "Thickness" -msgstr "" +msgstr "Grosime" -#: flatcamGUI/PreferencesUI.py:6260 flatcamTools/ToolCopperThieving.py:376 +#: flatcamGUI/PreferencesUI.py:6278 flatcamTools/ToolCopperThieving.py:376 msgid "The robber bar thickness." -msgstr "" +msgstr "Grosimea Robber Bar." -#: flatcamGUI/PreferencesUI.py:6270 flatcamTools/ToolCopperThieving.py:407 +#: flatcamGUI/PreferencesUI.py:6288 flatcamTools/ToolCopperThieving.py:407 msgid "Pattern Plating Mask" -msgstr "" +msgstr "Masca de placare cu model" -#: flatcamGUI/PreferencesUI.py:6272 flatcamTools/ToolCopperThieving.py:409 +#: flatcamGUI/PreferencesUI.py:6290 flatcamTools/ToolCopperThieving.py:409 msgid "Generate a mask for pattern plating." -msgstr "" +msgstr "Generați o mască pentru placarea cu model." -#: flatcamGUI/PreferencesUI.py:6279 flatcamTools/ToolCopperThieving.py:431 +#: flatcamGUI/PreferencesUI.py:6297 flatcamTools/ToolCopperThieving.py:431 msgid "" "The distance between the possible copper thieving elements\n" "and/or robber bar and the actual openings in the mask." msgstr "" -#: flatcamGUI/PreferencesUI.py:6298 +#: flatcamGUI/PreferencesUI.py:6316 #, fuzzy #| msgid "Film Tool Options" msgid "Fiducials Tool Options" msgstr "Opțiuni Unealta Film" -#: flatcamGUI/PreferencesUI.py:6309 flatcamGUI/PreferencesUI.py:6425 +#: flatcamGUI/PreferencesUI.py:6327 flatcamGUI/PreferencesUI.py:6443 #: flatcamTools/ToolCopperThieving.py:91 flatcamTools/ToolFiducials.py:151 #, fuzzy #| msgid "Diameter for the new tool." msgid "Parameters used for this tool." msgstr "Diametrul pt noua unealtă." -#: flatcamGUI/PreferencesUI.py:6316 flatcamTools/ToolFiducials.py:158 +#: flatcamGUI/PreferencesUI.py:6334 flatcamTools/ToolFiducials.py:158 msgid "" "This set the fiducial diameter if fiducial type is circular,\n" "otherwise is the size of the fiducial.\n" "The soldermask opening is double than that." msgstr "" -#: flatcamGUI/PreferencesUI.py:6344 flatcamTools/ToolFiducials.py:186 +#: flatcamGUI/PreferencesUI.py:6362 flatcamTools/ToolFiducials.py:186 msgid "Auto" msgstr "" -#: flatcamGUI/PreferencesUI.py:6345 flatcamTools/ToolFiducials.py:187 +#: flatcamGUI/PreferencesUI.py:6363 flatcamTools/ToolFiducials.py:187 #, fuzzy #| msgid "Manual Geo" msgid "Manual" msgstr "Geo manual" -#: flatcamGUI/PreferencesUI.py:6347 flatcamTools/ToolFiducials.py:189 +#: flatcamGUI/PreferencesUI.py:6365 flatcamTools/ToolFiducials.py:189 msgid "Mode:" msgstr "" -#: flatcamGUI/PreferencesUI.py:6349 flatcamTools/ToolFiducials.py:191 +#: flatcamGUI/PreferencesUI.py:6367 flatcamTools/ToolFiducials.py:191 msgid "" "- 'Auto' - automatic placement of fiducials in the corners of the bounding " "box.\n" " - 'Manual' - manual placement of fiducials." msgstr "" -#: flatcamGUI/PreferencesUI.py:6357 flatcamTools/ToolFiducials.py:199 +#: flatcamGUI/PreferencesUI.py:6375 flatcamTools/ToolFiducials.py:199 msgid "Up" msgstr "" -#: flatcamGUI/PreferencesUI.py:6358 flatcamTools/ToolFiducials.py:200 +#: flatcamGUI/PreferencesUI.py:6376 flatcamTools/ToolFiducials.py:200 msgid "Down" msgstr "" -#: flatcamGUI/PreferencesUI.py:6361 flatcamTools/ToolFiducials.py:203 +#: flatcamGUI/PreferencesUI.py:6379 flatcamTools/ToolFiducials.py:203 msgid "Second fiducial" msgstr "" -#: flatcamGUI/PreferencesUI.py:6363 flatcamTools/ToolFiducials.py:205 +#: flatcamGUI/PreferencesUI.py:6381 flatcamTools/ToolFiducials.py:205 msgid "" "The position for the second fiducial.\n" "- 'Up' - the order is: bottom-left, top-left, top-right.\n" @@ -12475,21 +12321,21 @@ msgid "" "- 'None' - there is no second fiducial. The order is: bottom-left, top-right." msgstr "" -#: flatcamGUI/PreferencesUI.py:6379 flatcamTools/ToolFiducials.py:221 +#: flatcamGUI/PreferencesUI.py:6397 flatcamTools/ToolFiducials.py:221 msgid "Cross" msgstr "" -#: flatcamGUI/PreferencesUI.py:6380 flatcamTools/ToolFiducials.py:222 +#: flatcamGUI/PreferencesUI.py:6398 flatcamTools/ToolFiducials.py:222 msgid "Chess" msgstr "" -#: flatcamGUI/PreferencesUI.py:6383 flatcamTools/ToolFiducials.py:224 +#: flatcamGUI/PreferencesUI.py:6401 flatcamTools/ToolFiducials.py:224 #, fuzzy #| msgid "Film Type" msgid "Fiducial Type" msgstr "Tip film" -#: flatcamGUI/PreferencesUI.py:6385 flatcamTools/ToolFiducials.py:226 +#: flatcamGUI/PreferencesUI.py:6403 flatcamTools/ToolFiducials.py:226 msgid "" "The type of fiducial.\n" "- 'Circular' - this is the regular fiducial.\n" @@ -12497,23 +12343,23 @@ msgid "" "- 'Chess' - chess pattern fiducial." msgstr "" -#: flatcamGUI/PreferencesUI.py:6394 flatcamTools/ToolFiducials.py:235 +#: flatcamGUI/PreferencesUI.py:6412 flatcamTools/ToolFiducials.py:235 msgid "Line thickness" msgstr "" -#: flatcamGUI/PreferencesUI.py:6414 +#: flatcamGUI/PreferencesUI.py:6432 #, fuzzy #| msgid "Calculators Tool Options" msgid "Calibration Tool Options" msgstr "Opțiuni Unealta Calculatoare" -#: flatcamGUI/PreferencesUI.py:6430 flatcamTools/ToolCalibration.py:74 +#: flatcamGUI/PreferencesUI.py:6448 flatcamTools/ToolCalibration.py:181 #, fuzzy #| msgid "Source" msgid "Source Type" msgstr "Sursă" -#: flatcamGUI/PreferencesUI.py:6431 flatcamTools/ToolCalibration.py:75 +#: flatcamGUI/PreferencesUI.py:6449 flatcamTools/ToolCalibration.py:182 msgid "" "The source of calibration points.\n" "It can be:\n" @@ -12521,13 +12367,13 @@ msgid "" "- Free -> click freely on canvas to acquire the calibration points" msgstr "" -#: flatcamGUI/PreferencesUI.py:6436 flatcamTools/ToolCalibration.py:80 +#: flatcamGUI/PreferencesUI.py:6454 flatcamTools/ToolCalibration.py:187 #, fuzzy #| msgid "FreeForm" msgid "Free" msgstr "Formă liberă" -#: flatcamGUI/PreferencesUI.py:6450 flatcamTools/ToolCalibration.py:297 +#: flatcamGUI/PreferencesUI.py:6468 flatcamTools/ToolCalibration.py:76 #, fuzzy #| msgid "" #| "The height (Z) for travel between pads\n" @@ -12537,61 +12383,93 @@ msgstr "" "Înălţimea (Z) când se face deplasare între pad-uri.\n" "(fără dispensare de pastă de fludor)." -#: flatcamGUI/PreferencesUI.py:6462 flatcamTools/ToolCalibration.py:309 +#: flatcamGUI/PreferencesUI.py:6480 flatcamTools/ToolCalibration.py:88 #, fuzzy #| msgid "Gerber Specification" msgid "Verification Z" msgstr "Specificatii Gerber" -#: flatcamGUI/PreferencesUI.py:6464 flatcamTools/ToolCalibration.py:311 +#: flatcamGUI/PreferencesUI.py:6482 flatcamTools/ToolCalibration.py:90 msgid "Height (Z) for checking the point." msgstr "" -#: flatcamGUI/PreferencesUI.py:6476 flatcamTools/ToolCalibration.py:323 +#: flatcamGUI/PreferencesUI.py:6494 flatcamTools/ToolCalibration.py:102 msgid "Zero Z tool" msgstr "" -#: flatcamGUI/PreferencesUI.py:6478 flatcamTools/ToolCalibration.py:325 +#: flatcamGUI/PreferencesUI.py:6496 flatcamTools/ToolCalibration.py:104 msgid "" "Include a sequence to zero the height (Z)\n" "of the verification tool." msgstr "" -#: flatcamGUI/PreferencesUI.py:6487 flatcamTools/ToolCalibration.py:334 +#: flatcamGUI/PreferencesUI.py:6505 flatcamTools/ToolCalibration.py:113 msgid "Height (Z) for mounting the verification probe." msgstr "" -#: flatcamGUI/PreferencesUI.py:6506 +#: flatcamGUI/PreferencesUI.py:6519 flatcamTools/ToolCalibration.py:127 +msgid "" +"Toolchange X,Y position.\n" +"If no value is entered then the current\n" +"(x, y) point will be used," +msgstr "" + +#: flatcamGUI/PreferencesUI.py:6530 flatcamTools/ToolCalibration.py:153 +#, fuzzy +#| msgid "Second object point" +msgid "Second point" +msgstr "Al doilea punct" + +#: flatcamGUI/PreferencesUI.py:6532 flatcamTools/ToolCalibration.py:155 +msgid "" +"Second point in the Gcode verification can be:\n" +"- top-left -> the user will align the PCB vertically\n" +"- bottom-right -> the user will align the PCB horizontally" +msgstr "" + +#: flatcamGUI/PreferencesUI.py:6536 flatcamTools/ToolCalibration.py:159 +#, fuzzy +#| msgid "Top Left" +msgid "Top-Left" +msgstr "Stânga sus" + +#: flatcamGUI/PreferencesUI.py:6537 flatcamTools/ToolCalibration.py:160 +#, fuzzy +#| msgid "Bottom Right" +msgid "Bottom-Right" +msgstr "Dreapta-jos" + +#: flatcamGUI/PreferencesUI.py:6551 msgid "Excellon File associations" msgstr "Asocieri fisiere Excellon" -#: flatcamGUI/PreferencesUI.py:6519 flatcamGUI/PreferencesUI.py:6592 -#: flatcamGUI/PreferencesUI.py:6662 flatcamGUI/PreferencesUI.py:6732 +#: flatcamGUI/PreferencesUI.py:6564 flatcamGUI/PreferencesUI.py:6637 +#: flatcamGUI/PreferencesUI.py:6707 flatcamGUI/PreferencesUI.py:6777 msgid "Restore" msgstr "Restabilire" -#: flatcamGUI/PreferencesUI.py:6520 flatcamGUI/PreferencesUI.py:6593 -#: flatcamGUI/PreferencesUI.py:6663 +#: flatcamGUI/PreferencesUI.py:6565 flatcamGUI/PreferencesUI.py:6638 +#: flatcamGUI/PreferencesUI.py:6708 msgid "Restore the extension list to the default state." msgstr "Restabiliți lista de extensii la starea implicită." -#: flatcamGUI/PreferencesUI.py:6521 flatcamGUI/PreferencesUI.py:6594 -#: flatcamGUI/PreferencesUI.py:6664 flatcamGUI/PreferencesUI.py:6734 +#: flatcamGUI/PreferencesUI.py:6566 flatcamGUI/PreferencesUI.py:6639 +#: flatcamGUI/PreferencesUI.py:6709 flatcamGUI/PreferencesUI.py:6779 msgid "Delete All" msgstr "Sterge tot" -#: flatcamGUI/PreferencesUI.py:6522 flatcamGUI/PreferencesUI.py:6595 -#: flatcamGUI/PreferencesUI.py:6665 +#: flatcamGUI/PreferencesUI.py:6567 flatcamGUI/PreferencesUI.py:6640 +#: flatcamGUI/PreferencesUI.py:6710 msgid "Delete all extensions from the list." msgstr "Ștergeți toate extensiile din listă." -#: flatcamGUI/PreferencesUI.py:6530 flatcamGUI/PreferencesUI.py:6603 -#: flatcamGUI/PreferencesUI.py:6673 +#: flatcamGUI/PreferencesUI.py:6575 flatcamGUI/PreferencesUI.py:6648 +#: flatcamGUI/PreferencesUI.py:6718 msgid "Extensions list" msgstr "Lista de extensii" -#: flatcamGUI/PreferencesUI.py:6532 flatcamGUI/PreferencesUI.py:6605 -#: flatcamGUI/PreferencesUI.py:6675 +#: flatcamGUI/PreferencesUI.py:6577 flatcamGUI/PreferencesUI.py:6650 +#: flatcamGUI/PreferencesUI.py:6720 msgid "" "List of file extensions to be\n" "associated with FlatCAM." @@ -12599,43 +12477,43 @@ msgstr "" "Listă de extensii fisiere care să fie\n" "associate cu FlatCAM." -#: flatcamGUI/PreferencesUI.py:6552 flatcamGUI/PreferencesUI.py:6625 -#: flatcamGUI/PreferencesUI.py:6694 flatcamGUI/PreferencesUI.py:6766 +#: flatcamGUI/PreferencesUI.py:6597 flatcamGUI/PreferencesUI.py:6670 +#: flatcamGUI/PreferencesUI.py:6739 flatcamGUI/PreferencesUI.py:6811 msgid "Extension" msgstr "Extensie fișier" -#: flatcamGUI/PreferencesUI.py:6553 flatcamGUI/PreferencesUI.py:6626 -#: flatcamGUI/PreferencesUI.py:6695 +#: flatcamGUI/PreferencesUI.py:6598 flatcamGUI/PreferencesUI.py:6671 +#: flatcamGUI/PreferencesUI.py:6740 msgid "A file extension to be added or deleted to the list." msgstr "O extensie de fișier care trebuie adăugată sau ștersă din listă." -#: flatcamGUI/PreferencesUI.py:6561 flatcamGUI/PreferencesUI.py:6634 -#: flatcamGUI/PreferencesUI.py:6703 +#: flatcamGUI/PreferencesUI.py:6606 flatcamGUI/PreferencesUI.py:6679 +#: flatcamGUI/PreferencesUI.py:6748 msgid "Add Extension" msgstr "Adaugă Extensie" -#: flatcamGUI/PreferencesUI.py:6562 flatcamGUI/PreferencesUI.py:6635 -#: flatcamGUI/PreferencesUI.py:6704 +#: flatcamGUI/PreferencesUI.py:6607 flatcamGUI/PreferencesUI.py:6680 +#: flatcamGUI/PreferencesUI.py:6749 msgid "Add a file extension to the list" msgstr "Adăugați o extensie de fișier la listă" -#: flatcamGUI/PreferencesUI.py:6563 flatcamGUI/PreferencesUI.py:6636 -#: flatcamGUI/PreferencesUI.py:6705 +#: flatcamGUI/PreferencesUI.py:6608 flatcamGUI/PreferencesUI.py:6681 +#: flatcamGUI/PreferencesUI.py:6750 msgid "Delete Extension" msgstr "Ștergeți Extensia" -#: flatcamGUI/PreferencesUI.py:6564 flatcamGUI/PreferencesUI.py:6637 -#: flatcamGUI/PreferencesUI.py:6706 +#: flatcamGUI/PreferencesUI.py:6609 flatcamGUI/PreferencesUI.py:6682 +#: flatcamGUI/PreferencesUI.py:6751 msgid "Delete a file extension from the list" msgstr "Ștergeți o extensie de fișier din listă" -#: flatcamGUI/PreferencesUI.py:6571 flatcamGUI/PreferencesUI.py:6644 -#: flatcamGUI/PreferencesUI.py:6713 +#: flatcamGUI/PreferencesUI.py:6616 flatcamGUI/PreferencesUI.py:6689 +#: flatcamGUI/PreferencesUI.py:6758 msgid "Apply Association" msgstr "Aplicați Asociere" -#: flatcamGUI/PreferencesUI.py:6572 flatcamGUI/PreferencesUI.py:6645 -#: flatcamGUI/PreferencesUI.py:6714 +#: flatcamGUI/PreferencesUI.py:6617 flatcamGUI/PreferencesUI.py:6690 +#: flatcamGUI/PreferencesUI.py:6759 msgid "" "Apply the file associations between\n" "FlatCAM and the files with above extensions.\n" @@ -12647,32 +12525,32 @@ msgstr "" "Vor fi active după următorul login.\n" "Functionează numai pt Windows." -#: flatcamGUI/PreferencesUI.py:6589 +#: flatcamGUI/PreferencesUI.py:6634 msgid "GCode File associations" msgstr "Asocierile de fisiere G-Code" -#: flatcamGUI/PreferencesUI.py:6659 +#: flatcamGUI/PreferencesUI.py:6704 msgid "Gerber File associations" msgstr "Asocierile de fisiere Gerber" -#: flatcamGUI/PreferencesUI.py:6729 +#: flatcamGUI/PreferencesUI.py:6774 msgid "Autocompleter Keywords" msgstr "Cuvinte cheie pt autocomplete" -#: flatcamGUI/PreferencesUI.py:6733 +#: flatcamGUI/PreferencesUI.py:6778 msgid "Restore the autocompleter keywords list to the default state." msgstr "" "Restaurați lista cuvinte cheie pentru autocompletere la starea implicită." -#: flatcamGUI/PreferencesUI.py:6735 +#: flatcamGUI/PreferencesUI.py:6780 msgid "Delete all autocompleter keywords from the list." msgstr "Ștergeți din listă toate cuvintele cheie pentru autocompletare." -#: flatcamGUI/PreferencesUI.py:6743 +#: flatcamGUI/PreferencesUI.py:6788 msgid "Keywords list" msgstr "Lista de cuvinte cheie" -#: flatcamGUI/PreferencesUI.py:6745 +#: flatcamGUI/PreferencesUI.py:6790 msgid "" "List of keywords used by\n" "the autocompleter in FlatCAM.\n" @@ -12684,23 +12562,23 @@ msgstr "" "Autocompleterul este instalat\n" "în Editorul de coduri și pentru Shell Tcl." -#: flatcamGUI/PreferencesUI.py:6767 +#: flatcamGUI/PreferencesUI.py:6812 msgid "A keyword to be added or deleted to the list." msgstr "Un cuvânt cheie care trebuie adăugat sau șters la listă." -#: flatcamGUI/PreferencesUI.py:6775 +#: flatcamGUI/PreferencesUI.py:6820 msgid "Add keyword" msgstr "Adăugați cuvant cheie" -#: flatcamGUI/PreferencesUI.py:6776 +#: flatcamGUI/PreferencesUI.py:6821 msgid "Add a keyword to the list" msgstr "Adăugați un cuvânt cheie la listă" -#: flatcamGUI/PreferencesUI.py:6777 +#: flatcamGUI/PreferencesUI.py:6822 msgid "Delete keyword" msgstr "Ștergeți cuvântul cheie" -#: flatcamGUI/PreferencesUI.py:6778 +#: flatcamGUI/PreferencesUI.py:6823 msgid "Delete a keyword from the list" msgstr "Ștergeți un cuvânt cheie din listă" @@ -12729,16 +12607,15 @@ msgstr "" "Userul trebuie să editeze obictul Excellon rezultat si sa ajusteze " "diametrele a.i sa reflecte diametrele reale." -#: flatcamParsers/ParseExcellon.py:887 -#, python-brace-format +#: flatcamParsers/ParseExcellon.py:889 msgid "" -"{e_code} Excellon Parser error.\n" -"Parsing Failed. Line {l_nr}: {line}\n" +"Excellon Parser error.\n" +"Parsing Failed. Line" msgstr "" -"{e_code} Eroare de analiza Excellon.\n" -"Analizarea a esuat. Linia {l_nr}: {line}\n" +"Eroare de analiza Excellon.\n" +"Analizarea a esuat. Linia" -#: flatcamParsers/ParseExcellon.py:972 +#: flatcamParsers/ParseExcellon.py:973 msgid "" "Excellon.create_geometry() -> a drill location was skipped due of not having " "a tool associated.\n" @@ -12756,11 +12633,14 @@ msgstr "Fontul nu este acceptat, incearcă altul." msgid "Gerber processing. Parsing" msgstr "Prelucrare Gerber. Analizare" -#: flatcamParsers/ParseGerber.py:424 +#: flatcamParsers/ParseGerber.py:424 flatcamParsers/ParseHPGL2.py:176 msgid "lines" msgstr "linii" #: flatcamParsers/ParseGerber.py:953 flatcamParsers/ParseGerber.py:1048 +#: flatcamParsers/ParseHPGL2.py:269 flatcamParsers/ParseHPGL2.py:283 +#: flatcamParsers/ParseHPGL2.py:302 flatcamParsers/ParseHPGL2.py:326 +#: flatcamParsers/ParseHPGL2.py:361 msgid "Coordinates missing, line ignored" msgstr "Coordonatele lipsesc, linia este ignorată" @@ -12776,7 +12656,7 @@ msgstr "" "Regiunea Gerber nu are suficiente puncte. Fişierul va fi procesat dar sunt " "erori de parsare. Numărul liniei" -#: flatcamParsers/ParseGerber.py:1395 +#: flatcamParsers/ParseGerber.py:1395 flatcamParsers/ParseHPGL2.py:396 msgid "Gerber processing. Joining polygons" msgstr "Prelucrare Gerber. Se combină poligoanele" @@ -12816,6 +12696,30 @@ msgstr "Deformarea Gerber efectuată." msgid "Gerber Rotate done." msgstr "Rotatia Gerber efectuată." +#: flatcamParsers/ParseHPGL2.py:176 +#, fuzzy +#| msgid "Gerber processing. Parsing" +msgid "HPGL2 processing. Parsing" +msgstr "Prelucrare Gerber. Analizare" + +#: flatcamParsers/ParseHPGL2.py:408 +#, fuzzy +#| msgid "Plot Line" +msgid "HPGL2 Line" +msgstr "Culoare contur" + +#: flatcamParsers/ParseHPGL2.py:408 +#, fuzzy +#| msgid "Gerber Line Content" +msgid "HPGL2 Line Content" +msgstr "Continut linie Gerber" + +#: flatcamParsers/ParseHPGL2.py:409 +#, fuzzy +#| msgid "Gerber Parser ERROR" +msgid "HPGL2 Parser ERROR" +msgstr "Eroare in parserul Gerber" + #: flatcamTools/ToolCalculators.py:24 msgid "Calculators" msgstr "Calculatoare" @@ -12907,122 +12811,124 @@ msgstr "" msgid "Calc. Tool" msgstr "Unealta Calc" -#: flatcamTools/ToolCalibration.py:36 +#: flatcamTools/ToolCalibration.py:67 #, fuzzy -#| msgid "Calculators Tool" -msgid "Calibration Tool" -msgstr "Unealta Calculatoare" +#| msgid "Slot Parameters" +msgid "GCode Parameters" +msgstr "Parametrii pt slot" -#: flatcamTools/ToolCalibration.py:66 +#: flatcamTools/ToolCalibration.py:69 +msgid "Parameters used when creating the GCode in this tool." +msgstr "" + +#: flatcamTools/ToolCalibration.py:173 msgid "STEP 1: Acquire Calibration Points" msgstr "" -#: flatcamTools/ToolCalibration.py:68 +#: flatcamTools/ToolCalibration.py:175 msgid "" "Pick four points by clicking inside the drill holes.\n" "Those four points should be in the four\n" "(as much as possible) corners of the Excellon object." msgstr "" -#: flatcamTools/ToolCalibration.py:86 flatcamTools/ToolCutOut.py:80 +#: flatcamTools/ToolCalibration.py:193 flatcamTools/ToolCutOut.py:80 #: flatcamTools/ToolFilm.py:78 flatcamTools/ToolImage.py:55 #: flatcamTools/ToolPanelize.py:66 flatcamTools/ToolProperties.py:169 msgid "Object Type" msgstr "Tip Obiect" -#: flatcamTools/ToolCalibration.py:101 -#, fuzzy -#| msgid "No object selected." +#: flatcamTools/ToolCalibration.py:211 msgid "Source object selection" -msgstr "Nici-un obiect nu este selectat." +msgstr "Selectarea obiectului sursă" -#: flatcamTools/ToolCalibration.py:103 +#: flatcamTools/ToolCalibration.py:213 #, fuzzy #| msgid "The FlatCAM object to be used as non copper clearing reference." msgid "FlatCAM Object to be used as a source for reference points." msgstr "" "Obiectul FlatCAM pentru a fi utilizat ca referință pt. curățarea de cupru." -#: flatcamTools/ToolCalibration.py:109 +#: flatcamTools/ToolCalibration.py:219 msgid "Calibration Points" msgstr "" -#: flatcamTools/ToolCalibration.py:111 +#: flatcamTools/ToolCalibration.py:221 msgid "" "Contain the expected calibration points and the\n" "ones measured." msgstr "" -#: flatcamTools/ToolCalibration.py:126 flatcamTools/ToolSub.py:74 +#: flatcamTools/ToolCalibration.py:236 flatcamTools/ToolSub.py:74 #: flatcamTools/ToolSub.py:126 msgid "Target" msgstr "Tintă" -#: flatcamTools/ToolCalibration.py:127 +#: flatcamTools/ToolCalibration.py:237 msgid "Found Delta" msgstr "" -#: flatcamTools/ToolCalibration.py:139 +#: flatcamTools/ToolCalibration.py:249 #, fuzzy #| msgid "Bottom Left" msgid "Bot Left X" msgstr "Stânga jos" -#: flatcamTools/ToolCalibration.py:148 +#: flatcamTools/ToolCalibration.py:258 #, fuzzy #| msgid "Bottom Left" msgid "Bot Left Y" msgstr "Stânga jos" -#: flatcamTools/ToolCalibration.py:156 flatcamTools/ToolCalibration.py:157 +#: flatcamTools/ToolCalibration.py:266 flatcamTools/ToolCalibration.py:267 #, fuzzy #| msgid "Origin set" msgid "Origin" msgstr "Originea a fost setată" -#: flatcamTools/ToolCalibration.py:168 +#: flatcamTools/ToolCalibration.py:278 #, fuzzy #| msgid "Bottom Right" msgid "Bot Right X" msgstr "Dreapta-jos" -#: flatcamTools/ToolCalibration.py:178 +#: flatcamTools/ToolCalibration.py:288 #, fuzzy #| msgid "Bottom Right" msgid "Bot Right Y" msgstr "Dreapta-jos" -#: flatcamTools/ToolCalibration.py:193 +#: flatcamTools/ToolCalibration.py:303 #, fuzzy #| msgid "Top Left" msgid "Top Left X" msgstr "Stânga sus" -#: flatcamTools/ToolCalibration.py:202 +#: flatcamTools/ToolCalibration.py:312 #, fuzzy #| msgid "Top Left" msgid "Top Left Y" msgstr "Stânga sus" -#: flatcamTools/ToolCalibration.py:217 +#: flatcamTools/ToolCalibration.py:327 #, fuzzy #| msgid "Top right" msgid "Top Right X" msgstr "Dreapta-sus" -#: flatcamTools/ToolCalibration.py:226 +#: flatcamTools/ToolCalibration.py:337 #, fuzzy #| msgid "Top right" msgid "Top Right Y" msgstr "Dreapta-sus" -#: flatcamTools/ToolCalibration.py:258 +#: flatcamTools/ToolCalibration.py:370 #, fuzzy #| msgid "Ref. Point" msgid "Get Points" msgstr "Pt. Ref" -#: flatcamTools/ToolCalibration.py:260 +#: flatcamTools/ToolCalibration.py:372 msgid "" "Pick four points by clicking on canvas if the source choice\n" "is 'free' or inside the object geometry if the source is 'object'.\n" @@ -13030,160 +12936,157 @@ msgid "" "the object." msgstr "" -#: flatcamTools/ToolCalibration.py:281 +#: flatcamTools/ToolCalibration.py:393 #, fuzzy #| msgid "Generate GCode" msgid "STEP 2: Verification GCode" msgstr "Genereaa GCode" -#: flatcamTools/ToolCalibration.py:283 flatcamTools/ToolCalibration.py:350 +#: flatcamTools/ToolCalibration.py:395 flatcamTools/ToolCalibration.py:408 msgid "" "Generate GCode file to locate and align the PCB by using\n" -"the four points acquired above." +"the four points acquired above.\n" +"The points sequence is:\n" +"- first point -> set the origin\n" +"- second point -> alignment point. Can be: top-left or bottom-right.\n" +"- third point -> check point. Can be: top-left or bottom-right.\n" +"- forth point -> final verification point. Just for evaluation." msgstr "" -#: flatcamTools/ToolCalibration.py:288 -#, fuzzy -#| msgid "Slot Parameters" -msgid "GCode Parameters" -msgstr "Parametrii pt slot" - -#: flatcamTools/ToolCalibration.py:290 -msgid "Parameters used when creating the GCode in this tool." -msgstr "" - -#: flatcamTools/ToolCalibration.py:348 flatcamTools/ToolSolderPaste.py:347 +#: flatcamTools/ToolCalibration.py:406 flatcamTools/ToolSolderPaste.py:347 msgid "Generate GCode" msgstr "Genereaa GCode" -#: flatcamTools/ToolCalibration.py:369 +#: flatcamTools/ToolCalibration.py:432 #, fuzzy #| msgid "Film Adjustments" msgid "STEP 3: Adjustments" msgstr "Reglarea filmelor" -#: flatcamTools/ToolCalibration.py:371 flatcamTools/ToolCalibration.py:380 +#: flatcamTools/ToolCalibration.py:434 flatcamTools/ToolCalibration.py:443 msgid "" "Calculate Scale and Skew factors based on the differences (delta)\n" "found when checking the PCB pattern. The differences must be filled\n" "in the fields Found (Delta)." msgstr "" -#: flatcamTools/ToolCalibration.py:378 +#: flatcamTools/ToolCalibration.py:441 #, fuzzy #| msgid "Calculators" msgid "Calculate Factors" msgstr "Calculatoare" -#: flatcamTools/ToolCalibration.py:400 +#: flatcamTools/ToolCalibration.py:463 #, fuzzy #| msgid "Generate GCode" msgid "STEP 4: Adjusted GCode" msgstr "Genereaa GCode" -#: flatcamTools/ToolCalibration.py:402 flatcamTools/ToolCalibration.py:542 +#: flatcamTools/ToolCalibration.py:465 msgid "" "Generate verification GCode file adjusted with\n" "the factors above." msgstr "" -#: flatcamTools/ToolCalibration.py:407 +#: flatcamTools/ToolCalibration.py:470 #, fuzzy #| msgid "Scale Factor:" msgid "Scale Factor X:" msgstr "Factor scalare:" -#: flatcamTools/ToolCalibration.py:419 +#: flatcamTools/ToolCalibration.py:482 #, fuzzy #| msgid "Scale Factor:" msgid "Scale Factor Y:" msgstr "Factor scalare:" -#: flatcamTools/ToolCalibration.py:431 -#, fuzzy -#| msgid "Ap. Scale Factor:" +#: flatcamTools/ToolCalibration.py:494 msgid "Apply Scale Factors" -msgstr "Factor scalare ap.:" +msgstr "Aplicați factorii de scalare" -#: flatcamTools/ToolCalibration.py:433 +#: flatcamTools/ToolCalibration.py:496 msgid "Apply Scale factors on the calibration points." msgstr "" -#: flatcamTools/ToolCalibration.py:443 +#: flatcamTools/ToolCalibration.py:506 #, fuzzy #| msgid "Angle X:" msgid "Skew Angle X:" msgstr "Unghi X:" -#: flatcamTools/ToolCalibration.py:456 +#: flatcamTools/ToolCalibration.py:519 #, fuzzy #| msgid "Angle Y:" msgid "Skew Angle Y:" msgstr "Unghi Y:" -#: flatcamTools/ToolCalibration.py:469 -#, fuzzy -#| msgid "Ap. Scale Factor:" +#: flatcamTools/ToolCalibration.py:532 msgid "Apply Skew Factors" -msgstr "Factor scalare ap.:" +msgstr "Aplicați factorii de deformare" -#: flatcamTools/ToolCalibration.py:471 +#: flatcamTools/ToolCalibration.py:534 msgid "Apply Skew factors on the calibration points." msgstr "" -#: flatcamTools/ToolCalibration.py:540 +#: flatcamTools/ToolCalibration.py:603 #, fuzzy #| msgid "Generate GCode" msgid "Generate Adjusted GCode" msgstr "Genereaa GCode" -#: flatcamTools/ToolCalibration.py:561 +#: flatcamTools/ToolCalibration.py:605 +msgid "" +"Generate verification GCode file adjusted with\n" +"the factors set above.\n" +"The GCode parameters can be readjusted\n" +"before clicking this button." +msgstr "" + +#: flatcamTools/ToolCalibration.py:626 msgid "STEP 5: Calibrate FlatCAM Objects" msgstr "" -#: flatcamTools/ToolCalibration.py:563 +#: flatcamTools/ToolCalibration.py:628 msgid "" "Adjust the FlatCAM objects\n" "with the factors determined and verified above." msgstr "" -#: flatcamTools/ToolCalibration.py:572 +#: flatcamTools/ToolCalibration.py:641 #, fuzzy #| msgid "Edit Object\tE" msgid "Adjusted object type" msgstr "Editare Obiect\tE" -#: flatcamTools/ToolCalibration.py:574 +#: flatcamTools/ToolCalibration.py:643 #, fuzzy #| msgid "Geometry Obj to be mirrored." msgid "Type of the FlatCAM Object to be adjusted." msgstr "Obiectul Geometrie care va fi oglindit." -#: flatcamTools/ToolCalibration.py:585 +#: flatcamTools/ToolCalibration.py:654 #, fuzzy #| msgid "Edit Object\tE" msgid "Adjusted object selection" msgstr "Editare Obiect\tE" -#: flatcamTools/ToolCalibration.py:587 +#: flatcamTools/ToolCalibration.py:656 #, fuzzy #| msgid "Excellon Object to be mirrored." msgid "The FlatCAM Object to be adjusted." msgstr "Obiectul Excellon care va fi oglindit." -#: flatcamTools/ToolCalibration.py:594 -#, fuzzy -#| msgid "Creating Excellon." +#: flatcamTools/ToolCalibration.py:663 msgid "Calibrate" -msgstr "In curs de creere Excellon." +msgstr "Calibreaza" -#: flatcamTools/ToolCalibration.py:596 +#: flatcamTools/ToolCalibration.py:665 msgid "" "Adjust (scale and/or skew) the objects\n" "with the factors determined above." msgstr "" -#: flatcamTools/ToolCalibration.py:617 flatcamTools/ToolCopperThieving.py:482 +#: flatcamTools/ToolCalibration.py:686 flatcamTools/ToolCopperThieving.py:482 #: flatcamTools/ToolCutOut.py:360 flatcamTools/ToolDblSided.py:302 #: flatcamTools/ToolFiducials.py:316 flatcamTools/ToolFilm.py:518 #: flatcamTools/ToolNonCopperClear.py:492 flatcamTools/ToolOptimal.py:237 @@ -13195,7 +13098,7 @@ msgstr "" msgid "Reset Tool" msgstr "Unalta Verif. Reguli" -#: flatcamTools/ToolCalibration.py:619 flatcamTools/ToolCopperThieving.py:484 +#: flatcamTools/ToolCalibration.py:688 flatcamTools/ToolCopperThieving.py:484 #: flatcamTools/ToolCutOut.py:362 flatcamTools/ToolDblSided.py:304 #: flatcamTools/ToolFiducials.py:318 flatcamTools/ToolFilm.py:520 #: flatcamTools/ToolNonCopperClear.py:494 flatcamTools/ToolOptimal.py:239 @@ -13211,59 +13114,59 @@ msgstr "" "Selectează unelte.\n" "Modifica parametri." -#: flatcamTools/ToolCalibration.py:688 -#, fuzzy -#| msgid "Creating Excellon." -msgid "Calibrate Tool" -msgstr "In curs de creere Excellon." - -#: flatcamTools/ToolCalibration.py:715 +#: flatcamTools/ToolCalibration.py:792 msgid "Tool initialized" msgstr "" -#: flatcamTools/ToolCalibration.py:747 +#: flatcamTools/ToolCalibration.py:824 #, fuzzy #| msgid "There is no Excellon object loaded ..." msgid "There is no source FlatCAM object selected..." msgstr "Nici-un obiect tip Excellon nu este incărcat ..." -#: flatcamTools/ToolCalibration.py:768 +#: flatcamTools/ToolCalibration.py:845 #, fuzzy #| msgid "Click inside the desired polygon." msgid "Get First calibration point. Bottom Left..." msgstr "Click in interiorul poligonului care se dorește să fie 'pictat'." -#: flatcamTools/ToolCalibration.py:820 +#: flatcamTools/ToolCalibration.py:906 +#, fuzzy +#| msgid "Copy cancelled. No shape selected." +msgid "Cancelled by user request." +msgstr "Copiere anulată. Nici-o forma geometrică nu este selectată." + +#: flatcamTools/ToolCalibration.py:912 msgid "Get Second calibration point. Bottom Right..." msgstr "" -#: flatcamTools/ToolCalibration.py:824 +#: flatcamTools/ToolCalibration.py:916 #, fuzzy #| msgid "Click inside the desired polygon." msgid "Get Third calibration point. Top Left..." msgstr "Click in interiorul poligonului care se dorește să fie 'pictat'." -#: flatcamTools/ToolCalibration.py:828 +#: flatcamTools/ToolCalibration.py:920 msgid "Get Forth calibration point. Top Right..." msgstr "" -#: flatcamTools/ToolCalibration.py:832 +#: flatcamTools/ToolCalibration.py:924 msgid "Done. All four points have been acquired." msgstr "" -#: flatcamTools/ToolCalibration.py:857 -msgid "Verification GCode for FlatCAM Calibrate Tool" +#: flatcamTools/ToolCalibration.py:955 +msgid "Verification GCode for FlatCAM Calibration Tool" msgstr "" -#: flatcamTools/ToolCalibration.py:869 flatcamTools/ToolCalibration.py:923 +#: flatcamTools/ToolCalibration.py:967 flatcamTools/ToolCalibration.py:1053 msgid "Gcode Viewer" msgstr "" -#: flatcamTools/ToolCalibration.py:881 +#: flatcamTools/ToolCalibration.py:983 msgid "Cancelled. Four points are needed for GCode generation." msgstr "" -#: flatcamTools/ToolCalibration.py:1041 flatcamTools/ToolCalibration.py:1137 +#: flatcamTools/ToolCalibration.py:1239 flatcamTools/ToolCalibration.py:1335 #, fuzzy #| msgid "There is no Box object loaded ..." msgid "There is no FlatCAM object selected..." @@ -13360,20 +13263,6 @@ msgid "The FlatCAM object to be used as non copper clearing reference." msgstr "" "Obiectul FlatCAM pentru a fi utilizat ca referință pt. curățarea de cupru." -#: flatcamTools/ToolCopperThieving.py:175 -msgid "" -"- 'Rectangular' - the bounding box will be of rectangular shape.\n" -"- 'Minimal' - the bounding box will be the convex hull shape." -msgstr "" - -#: flatcamTools/ToolCopperThieving.py:197 -msgid "" -"- 'Solid' - copper thieving will be a solid polygon.\n" -"- 'Dots Grid' - the empty area will be filled with a pattern of dots.\n" -"- 'Squares Grid' - the empty area will be filled with a pattern of squares.\n" -"- 'Lines Grid' - the empty area will be filled with a pattern of lines." -msgstr "" - #: flatcamTools/ToolCopperThieving.py:326 #, fuzzy #| msgid "Non-Copper Clearing" @@ -13480,10 +13369,8 @@ msgstr "Nu este nici-un obiect Gerber incărcat ..." #: flatcamTools/ToolCopperThieving.py:675 #: flatcamTools/ToolCopperThieving.py:1267 -#, fuzzy -#| msgid "geometry" msgid "Append geometry" -msgstr "geometria" +msgstr "Adăugați geometria" #: flatcamTools/ToolCopperThieving.py:719 #: flatcamTools/ToolCopperThieving.py:1300 @@ -13495,16 +13382,14 @@ msgstr "Salvează codul sursa Document ca fişier" #: flatcamTools/ToolCopperThieving.py:727 #: flatcamTools/ToolCopperThieving.py:1308 -#, fuzzy -#| msgid "Drill Tool dia" msgid "Copper Thieving Tool done." -msgstr "Dia. Burghiu Găurire" +msgstr "Unealta Copper Thieving efectuata." #: flatcamTools/ToolCopperThieving.py:754 #: flatcamTools/ToolCopperThieving.py:787 flatcamTools/ToolCutOut.py:466 -#: flatcamTools/ToolCutOut.py:640 flatcamTools/ToolNonCopperClear.py:1155 -#: flatcamTools/ToolNonCopperClear.py:1196 -#: flatcamTools/ToolNonCopperClear.py:1228 flatcamTools/ToolPaint.py:1077 +#: flatcamTools/ToolCutOut.py:640 flatcamTools/ToolNonCopperClear.py:1156 +#: flatcamTools/ToolNonCopperClear.py:1197 +#: flatcamTools/ToolNonCopperClear.py:1229 flatcamTools/ToolPaint.py:1079 #: flatcamTools/ToolPanelize.py:401 flatcamTools/ToolPanelize.py:416 #: flatcamTools/ToolSub.py:288 flatcamTools/ToolSub.py:301 #: flatcamTools/ToolSub.py:492 flatcamTools/ToolSub.py:507 @@ -13514,7 +13399,7 @@ msgid "Could not retrieve object" msgstr "Nu s-a putut incărca obiectul" #: flatcamTools/ToolCopperThieving.py:764 -#: flatcamTools/ToolNonCopperClear.py:1209 +#: flatcamTools/ToolNonCopperClear.py:1210 msgid "Click the start point of the area." msgstr "Faceți clic pe punctul de pornire al zonei." @@ -13525,7 +13410,7 @@ msgid "Click the end point of the filling area." msgstr "Faceți clic pe punctul final al zonei de pictat." #: flatcamTools/ToolCopperThieving.py:821 -#: flatcamTools/ToolNonCopperClear.py:1265 flatcamTools/ToolPaint.py:1204 +#: flatcamTools/ToolNonCopperClear.py:1266 flatcamTools/ToolPaint.py:1206 msgid "Zone added. Click to start adding next zone or right click to finish." msgstr "" "Zona adăugată. Faceți clic stanga pt a continua adăugarea de zone sau click " @@ -13567,12 +13452,12 @@ msgid "Geometry not supported for bounding box" msgstr "Geometria nu este acceptată pentru decupaj" #: flatcamTools/ToolCopperThieving.py:1061 -#: flatcamTools/ToolNonCopperClear.py:1516 flatcamTools/ToolPaint.py:2569 +#: flatcamTools/ToolNonCopperClear.py:1517 flatcamTools/ToolPaint.py:2571 msgid "No object available." msgstr "Nici-un obiect disponibil." #: flatcamTools/ToolCopperThieving.py:1098 -#: flatcamTools/ToolNonCopperClear.py:1558 +#: flatcamTools/ToolNonCopperClear.py:1559 msgid "The reference object type is not supported." msgstr "Tipul de obiect de referintă nu este acceptat." @@ -13600,10 +13485,8 @@ msgid "Generating Pattern Plating Mask done." msgstr "" #: flatcamTools/ToolCopperThieving.py:1543 -#, fuzzy -#| msgid "Drill Tool dia" msgid "Copper Thieving Tool exit." -msgstr "Dia. Burghiu Găurire" +msgstr "Unealta Copper Thieving terminata." #: flatcamTools/ToolCutOut.py:42 msgid "Cutout PCB" @@ -13623,16 +13506,12 @@ msgstr "" "numit >Obiect<." #: flatcamTools/ToolCutOut.py:91 flatcamTools/ToolCutOut.py:92 -#, fuzzy -#| msgid "Object to be painted." msgid "Object to be cutout" -msgstr "Obiect care trebuie pictat." +msgstr "Obiect care trebuie decupat" #: flatcamTools/ToolCutOut.py:214 -#, fuzzy -#| msgid "Convex Sh." msgid "Convex Shape" -msgstr "Formă Conv." +msgstr "Forma convexă" #: flatcamTools/ToolCutOut.py:228 msgid "A. Automatic Bridge Gaps" @@ -13800,8 +13679,8 @@ msgstr "" msgid "Any form CutOut operation finished." msgstr "Operatia de decupaj cu formă liberă s-a terminat." -#: flatcamTools/ToolCutOut.py:644 flatcamTools/ToolNonCopperClear.py:1159 -#: flatcamTools/ToolPaint.py:997 flatcamTools/ToolPanelize.py:406 +#: flatcamTools/ToolCutOut.py:644 flatcamTools/ToolNonCopperClear.py:1160 +#: flatcamTools/ToolPaint.py:999 flatcamTools/ToolPanelize.py:406 #: tclCommands/TclCommandBbox.py:70 tclCommands/TclCommandNregions.py:70 msgid "Object not found" msgstr "Obiectul nu a fost gasit" @@ -13858,10 +13737,8 @@ msgid "2-Sided PCB" msgstr "2-fețe PCB" #: flatcamTools/ToolDblSided.py:58 -#, fuzzy -#| msgid "Geometry Obj to be mirrored." msgid "Gerber to be mirrored" -msgstr "Obiectul Geometrie care va fi oglindit." +msgstr "Gerber pentru oglindit" #: flatcamTools/ToolDblSided.py:60 flatcamTools/ToolDblSided.py:88 #: flatcamTools/ToolDblSided.py:118 @@ -13886,10 +13763,6 @@ msgstr "Obiectul Excellon care va fi oglindit." msgid "Geometry Obj to be mirrored." msgstr "Obiectul Geometrie care va fi oglindit." -#: flatcamTools/ToolDblSided.py:156 -msgid "Axis Ref:" -msgstr "Axa de ref.:" - #: flatcamTools/ToolDblSided.py:177 msgid "Point/Box Reference" msgstr "Referință Punct/Container" @@ -14126,10 +13999,21 @@ msgstr "Masoara: Click pe punctul de Start ..." msgid "MEASURING: Click on the Destination point ..." msgstr "Masoara: Click pe punctul Destinaţie..." -#: flatcamTools/ToolDistance.py:352 flatcamTools/ToolDistanceMin.py:281 -#, 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}" +#: flatcamTools/ToolDistance.py:353 flatcamTools/ToolDistanceMin.py:282 +msgid "MEASURING" +msgstr "" + +#: flatcamTools/ToolDistance.py:354 flatcamTools/ToolDistanceMin.py:283 +#, fuzzy +#| msgid "Geo Result" +msgid "Result" +msgstr "Rezultat Geo" + +#: flatcamTools/ToolDistance.py:355 flatcamTools/ToolDistanceMin.py:284 +#, fuzzy +#| msgid "Distance Tool" +msgid "Distance" +msgstr "Unealta Distanță" #: flatcamTools/ToolDistanceMin.py:31 flatcamTools/ToolDistanceMin.py:152 msgid "Minimum Distance Tool" @@ -14188,11 +14072,11 @@ msgid "Select two objects and no more. Currently the selection has objects: " msgstr "" "Selectați două obiecte și nu mai mult. În prezent, selecția are nr obiecte: " -#: flatcamTools/ToolDistanceMin.py:288 +#: flatcamTools/ToolDistanceMin.py:291 msgid "Objects intersects or touch at" msgstr "Obiectele se intersectează sau ating la" -#: flatcamTools/ToolDistanceMin.py:294 +#: flatcamTools/ToolDistanceMin.py:297 msgid "Jumped to the half point between the two selected objects" msgstr "A sărit la jumătatea punctului dintre cele două obiecte selectate" @@ -14288,10 +14172,8 @@ msgid "Done. All fiducials have been added." msgstr "" #: flatcamTools/ToolFiducials.py:872 -#, fuzzy -#| msgid "Drill Tool dia" msgid "Fiducials Tool exit." -msgstr "Dia. Burghiu Găurire" +msgstr "Unealta Fiducials terminate." #: flatcamTools/ToolFilm.py:42 msgid "Film PCB" @@ -14444,30 +14326,36 @@ msgstr "" "Nici-un obiect FlatCAM nu este selectat. Încarcă un obiect container și " "încearcă din nou." -#: flatcamTools/ToolFilm.py:680 +#: flatcamTools/ToolFilm.py:673 +#, fuzzy +#| msgid "No object selected." +msgid "No FlatCAM object selected." +msgstr "Nici-un obiect nu este selectat." + +#: flatcamTools/ToolFilm.py:684 msgid "Generating Film ..." msgstr "Se generează Film-ul ..." -#: flatcamTools/ToolFilm.py:729 flatcamTools/ToolFilm.py:733 +#: flatcamTools/ToolFilm.py:733 flatcamTools/ToolFilm.py:737 #, fuzzy #| msgid "Export SVG positive" msgid "Export positive film" msgstr "Exporta SVG pozitiv" -#: flatcamTools/ToolFilm.py:738 +#: flatcamTools/ToolFilm.py:742 #, fuzzy #| msgid "Export SVG positive cancelled." msgid "Export positive film cancelled." msgstr "Exportul unui fişier SVG pozitiv este anulat." -#: flatcamTools/ToolFilm.py:760 +#: flatcamTools/ToolFilm.py:770 msgid "" "No Excellon object selected. Load an object for punching reference and retry." msgstr "" "Nici-un obiect Excellon nu este selectat. Incarcă un obiect ca referinta " "pentru perforare și încearcă din nou." -#: flatcamTools/ToolFilm.py:784 +#: flatcamTools/ToolFilm.py:794 msgid "" " Could not generate punched hole film because the punch hole sizeis bigger " "than some of the apertures in the Gerber object." @@ -14475,7 +14363,7 @@ msgstr "" " Nu a putut genera un film cu găuri perforate, deoarece dimensiunea găurii " "de perforare este mai mare decât unele dintre aperturile din obiectul Gerber." -#: flatcamTools/ToolFilm.py:796 +#: flatcamTools/ToolFilm.py:806 msgid "" "Could not generate punched hole film because the punch hole sizeis bigger " "than some of the apertures in the Gerber object." @@ -14483,7 +14371,7 @@ msgstr "" "Nu s-a putut genera un film cu găuri perforate, deoarece dimensiunea găurii " "de perforare este mai mare decât unele dintre aperturile din obiectul Gerber." -#: flatcamTools/ToolFilm.py:814 +#: flatcamTools/ToolFilm.py:824 msgid "" "Could not generate punched hole film because the newly created object " "geometry is the same as the one in the source object geometry..." @@ -14491,30 +14379,30 @@ msgstr "" "Nu s-a putut genera Film cu găuri perforate, deoarece geometria obiectului " "nou creat este aceeași cu cea din geometria obiectului sursă ..." -#: flatcamTools/ToolFilm.py:869 flatcamTools/ToolFilm.py:873 +#: flatcamTools/ToolFilm.py:879 flatcamTools/ToolFilm.py:883 #, fuzzy #| msgid "Export SVG negative" msgid "Export negative film" msgstr "Exporta SVG negativ" -#: flatcamTools/ToolFilm.py:878 +#: flatcamTools/ToolFilm.py:888 #, fuzzy #| msgid "Export SVG negative cancelled." msgid "Export negative film cancelled." msgstr "Exportul unui fişier SVG negativ este anulat." -#: flatcamTools/ToolFilm.py:934 flatcamTools/ToolFilm.py:1112 +#: flatcamTools/ToolFilm.py:944 flatcamTools/ToolFilm.py:1122 #: flatcamTools/ToolPanelize.py:421 msgid "No object Box. Using instead" msgstr "Nu exista container. Se foloseşte in schimb" -#: flatcamTools/ToolFilm.py:1050 flatcamTools/ToolFilm.py:1221 +#: flatcamTools/ToolFilm.py:1060 flatcamTools/ToolFilm.py:1235 #, fuzzy #| msgid "DXF file exported to" msgid "Film file exported to" msgstr "Fişierul DXF exportat in" -#: flatcamTools/ToolFilm.py:1053 flatcamTools/ToolFilm.py:1224 +#: flatcamTools/ToolFilm.py:1063 flatcamTools/ToolFilm.py:1238 msgid "Generating Film ... Please wait." msgstr "Filmul se generează ... Aşteaptă." @@ -14837,116 +14725,116 @@ msgstr "" msgid "Generate Geometry" msgstr "Genereza Geometrie" -#: flatcamTools/ToolNonCopperClear.py:587 flatcamTools/ToolPaint.py:497 +#: flatcamTools/ToolNonCopperClear.py:587 flatcamTools/ToolPaint.py:498 #: flatcamTools/ToolSolderPaste.py:553 msgid "New Tool" msgstr "O Noua Unealtă" -#: flatcamTools/ToolNonCopperClear.py:985 flatcamTools/ToolPaint.py:769 +#: flatcamTools/ToolNonCopperClear.py:986 flatcamTools/ToolPaint.py:771 #: flatcamTools/ToolSolderPaste.py:884 msgid "Please enter a tool diameter to add, in Float format." msgstr "Introduce diametrul unei unelte pt a fi adăugată, in format Real." -#: flatcamTools/ToolNonCopperClear.py:1016 flatcamTools/ToolPaint.py:794 +#: flatcamTools/ToolNonCopperClear.py:1017 flatcamTools/ToolPaint.py:796 msgid "Adding tool cancelled. Tool already in Tool Table." msgstr "" "Adăugarea unei unelte noi este anulată. Unealta există deja in Tabela de " "Unelte." -#: flatcamTools/ToolNonCopperClear.py:1021 flatcamTools/ToolPaint.py:800 +#: flatcamTools/ToolNonCopperClear.py:1022 flatcamTools/ToolPaint.py:802 msgid "New tool added to Tool Table." msgstr "O noua unealtă a fost adăugată in Tabela de Unelte." -#: flatcamTools/ToolNonCopperClear.py:1065 flatcamTools/ToolPaint.py:846 +#: flatcamTools/ToolNonCopperClear.py:1066 flatcamTools/ToolPaint.py:848 msgid "Tool from Tool Table was edited." msgstr "O unealtă din Tabela de Unelte a fost editata." -#: flatcamTools/ToolNonCopperClear.py:1076 flatcamTools/ToolPaint.py:858 +#: flatcamTools/ToolNonCopperClear.py:1077 flatcamTools/ToolPaint.py:860 #: flatcamTools/ToolSolderPaste.py:975 msgid "Edit cancelled. New diameter value is already in the Tool Table." msgstr "" "Editare eșuată. Noua valoare pt diametrul uneltei este deja in Tabela de " "Unelte." -#: flatcamTools/ToolNonCopperClear.py:1123 flatcamTools/ToolPaint.py:956 +#: flatcamTools/ToolNonCopperClear.py:1124 flatcamTools/ToolPaint.py:958 msgid "Delete failed. Select a tool to delete." msgstr "Ștergere eșuată. Selectează o unealtă pt ștergere." -#: flatcamTools/ToolNonCopperClear.py:1128 flatcamTools/ToolPaint.py:962 +#: flatcamTools/ToolNonCopperClear.py:1129 flatcamTools/ToolPaint.py:964 msgid "Tool(s) deleted from Tool Table." msgstr "Au fost șterse unelte din Tabela de Unelte." -#: flatcamTools/ToolNonCopperClear.py:1175 +#: flatcamTools/ToolNonCopperClear.py:1176 msgid "Wrong Tool Dia value format entered, use a number." msgstr "Diametrul uneltei este in format gresit, foloseşte un număr Real." -#: flatcamTools/ToolNonCopperClear.py:1184 flatcamTools/ToolPaint.py:1026 +#: flatcamTools/ToolNonCopperClear.py:1185 flatcamTools/ToolPaint.py:1028 msgid "No selected tools in Tool Table." msgstr "Nu sunt unelte selectate in Tabela de Unelte." -#: flatcamTools/ToolNonCopperClear.py:1259 flatcamTools/ToolPaint.py:1198 +#: flatcamTools/ToolNonCopperClear.py:1260 flatcamTools/ToolPaint.py:1200 msgid "Click the end point of the paint area." msgstr "Faceți clic pe punctul final al zonei de pictat." -#: flatcamTools/ToolNonCopperClear.py:1413 -#: flatcamTools/ToolNonCopperClear.py:1415 +#: flatcamTools/ToolNonCopperClear.py:1414 +#: flatcamTools/ToolNonCopperClear.py:1416 msgid "Non-Copper clearing ..." msgstr "Curățare Non-Cupru ..." -#: flatcamTools/ToolNonCopperClear.py:1425 +#: flatcamTools/ToolNonCopperClear.py:1426 msgid "NCC Tool started. Reading parameters." msgstr "Unealta NCC a pornit. Se citesc parametrii." -#: flatcamTools/ToolNonCopperClear.py:1488 +#: flatcamTools/ToolNonCopperClear.py:1489 msgid "NCC Tool. Preparing non-copper polygons." msgstr "Unealta NCC. Se pregătesc poligoanele non-cupru." -#: flatcamTools/ToolNonCopperClear.py:1584 +#: flatcamTools/ToolNonCopperClear.py:1585 msgid "" "NCC Tool. Finished non-copper polygons. Normal copper clearing task started." msgstr "" "Unelata NCC. S-a terminat pregătirea poligoanelor non-cupru. Taskul de " "curatare normal de cupru a inceput." -#: flatcamTools/ToolNonCopperClear.py:1616 +#: flatcamTools/ToolNonCopperClear.py:1617 msgid "NCC Tool. Calculate 'empty' area." msgstr "Unealta NCC. Calculează aria 'goală'." -#: flatcamTools/ToolNonCopperClear.py:1629 -#: flatcamTools/ToolNonCopperClear.py:1728 -#: flatcamTools/ToolNonCopperClear.py:1740 -#: flatcamTools/ToolNonCopperClear.py:1989 -#: flatcamTools/ToolNonCopperClear.py:2085 -#: flatcamTools/ToolNonCopperClear.py:2097 +#: flatcamTools/ToolNonCopperClear.py:1630 +#: flatcamTools/ToolNonCopperClear.py:1729 +#: flatcamTools/ToolNonCopperClear.py:1741 +#: flatcamTools/ToolNonCopperClear.py:1990 +#: flatcamTools/ToolNonCopperClear.py:2086 +#: flatcamTools/ToolNonCopperClear.py:2098 msgid "Buffering finished" msgstr "Buferarea terminată" -#: flatcamTools/ToolNonCopperClear.py:1747 -#: flatcamTools/ToolNonCopperClear.py:2103 +#: flatcamTools/ToolNonCopperClear.py:1748 +#: flatcamTools/ToolNonCopperClear.py:2104 msgid "The selected object is not suitable for copper clearing." msgstr "Obiectul selectat nu este potrivit pentru curățarea cuprului." -#: flatcamTools/ToolNonCopperClear.py:1752 -#: flatcamTools/ToolNonCopperClear.py:2108 +#: flatcamTools/ToolNonCopperClear.py:1753 +#: flatcamTools/ToolNonCopperClear.py:2109 msgid "Could not get the extent of the area to be non copper cleared." msgstr "" "Nu s-a putut obtine intinderea suprafaței care să fie curățată de cupru." -#: flatcamTools/ToolNonCopperClear.py:1759 +#: flatcamTools/ToolNonCopperClear.py:1760 msgid "NCC Tool. Finished calculation of 'empty' area." msgstr "Unealta NCC. S-a terminat calculul suprafetei 'goale'." -#: flatcamTools/ToolNonCopperClear.py:1772 -#: flatcamTools/ToolNonCopperClear.py:2133 +#: flatcamTools/ToolNonCopperClear.py:1773 +#: flatcamTools/ToolNonCopperClear.py:2134 msgid "NCC Tool clearing with tool diameter = " msgstr "Unealta NCC cu diametrul uneltei = " -#: flatcamTools/ToolNonCopperClear.py:1775 -#: flatcamTools/ToolNonCopperClear.py:2136 +#: flatcamTools/ToolNonCopperClear.py:1776 +#: flatcamTools/ToolNonCopperClear.py:2137 msgid "started." msgstr "a inceput." -#: flatcamTools/ToolNonCopperClear.py:1918 +#: flatcamTools/ToolNonCopperClear.py:1919 msgid "" "There is no NCC Geometry in the file.\n" "Usually it means that the tool diameter is too big for the painted " @@ -14958,25 +14846,25 @@ msgstr "" "pictată.\n" "Schimbați parametrii Paint și încercați din nou." -#: flatcamTools/ToolNonCopperClear.py:1938 +#: flatcamTools/ToolNonCopperClear.py:1939 msgid "NCC Tool clear all done." msgstr "Unealta NCC curătare toate efectuată." -#: flatcamTools/ToolNonCopperClear.py:1940 +#: flatcamTools/ToolNonCopperClear.py:1941 msgid "NCC Tool clear all done but the copper features isolation is broken for" msgstr "" "Unealta NCC curătare toate efectuată dar izolatia este intreruptă pentru" -#: flatcamTools/ToolNonCopperClear.py:1943 -#: flatcamTools/ToolNonCopperClear.py:2309 +#: flatcamTools/ToolNonCopperClear.py:1944 +#: flatcamTools/ToolNonCopperClear.py:2310 msgid "tools" msgstr "unelte" -#: flatcamTools/ToolNonCopperClear.py:2305 +#: flatcamTools/ToolNonCopperClear.py:2306 msgid "NCC Tool Rest Machining clear all done." msgstr "Unealta NCC curătare cu prelucrare tip 'rest' efectuată." -#: flatcamTools/ToolNonCopperClear.py:2308 +#: flatcamTools/ToolNonCopperClear.py:2309 msgid "" "NCC Tool Rest Machining clear all done but the copper features isolation is " "broken for" @@ -14984,7 +14872,7 @@ msgstr "" "Unealta NCC curătare toate cu prelucrare tip 'rest' efectuată dar izolatia " "este intreruptă pentru" -#: flatcamTools/ToolNonCopperClear.py:2755 +#: flatcamTools/ToolNonCopperClear.py:2756 msgid "" "Try to use the Buffering Type = Full in Preferences -> Gerber General. " "Reload the Gerber file after this change." @@ -15291,30 +15179,30 @@ msgstr "" "- „Obiect de referință” - va face o curățare fără cupru în zona specificată " "de un alt obiect." -#: flatcamTools/ToolPaint.py:976 +#: flatcamTools/ToolPaint.py:978 msgid "Paint Tool. Reading parameters." msgstr "Unealta Paint. Se citesc parametrii." -#: flatcamTools/ToolPaint.py:991 +#: flatcamTools/ToolPaint.py:993 #, python-format msgid "Could not retrieve object: %s" msgstr "Nu s-a putut incărca obiectul: %s" -#: flatcamTools/ToolPaint.py:1005 +#: flatcamTools/ToolPaint.py:1007 msgid "Can't do Paint on MultiGeo geometries" msgstr "Nu se poate face 'pictare' pe geometrii MultiGeo" -#: flatcamTools/ToolPaint.py:1038 +#: flatcamTools/ToolPaint.py:1040 #, fuzzy #| msgid "Click on target point." msgid "Click on a polygon to paint it." msgstr "Click pe punctul tinta." -#: flatcamTools/ToolPaint.py:1057 +#: flatcamTools/ToolPaint.py:1059 msgid "Click the start point of the paint area." msgstr "Faceți clic pe punctul de pornire al zonei de pictat." -#: flatcamTools/ToolPaint.py:1125 +#: flatcamTools/ToolPaint.py:1127 #, fuzzy #| msgid "" #| "Zone added. Click to start adding next zone or right click to finish." @@ -15323,7 +15211,7 @@ msgstr "" "Zona adăugată. Faceți clic stanga pt a continua adăugarea de zone sau click " "dreapta pentru a termina." -#: flatcamTools/ToolPaint.py:1138 +#: flatcamTools/ToolPaint.py:1140 #, fuzzy #| msgid "" #| "Zone added. Click to start adding next zone or right click to finish." @@ -15332,39 +15220,39 @@ msgstr "" "Zona adăugată. Faceți clic stanga pt a continua adăugarea de zone sau click " "dreapta pentru a termina." -#: flatcamTools/ToolPaint.py:1346 flatcamTools/ToolPaint.py:1349 -#: flatcamTools/ToolPaint.py:1351 flatcamTools/ToolPaint.py:1883 -#: flatcamTools/ToolPaint.py:1887 flatcamTools/ToolPaint.py:1890 -#: flatcamTools/ToolPaint.py:2172 flatcamTools/ToolPaint.py:2177 -#: flatcamTools/ToolPaint.py:2180 flatcamTools/ToolPaint.py:2354 -#: flatcamTools/ToolPaint.py:2361 +#: flatcamTools/ToolPaint.py:1348 flatcamTools/ToolPaint.py:1351 +#: flatcamTools/ToolPaint.py:1353 flatcamTools/ToolPaint.py:1885 +#: flatcamTools/ToolPaint.py:1889 flatcamTools/ToolPaint.py:1892 +#: flatcamTools/ToolPaint.py:2174 flatcamTools/ToolPaint.py:2179 +#: flatcamTools/ToolPaint.py:2182 flatcamTools/ToolPaint.py:2356 +#: flatcamTools/ToolPaint.py:2363 msgid "Paint Tool." msgstr "Unealta Paint." -#: flatcamTools/ToolPaint.py:1346 flatcamTools/ToolPaint.py:1349 -#: flatcamTools/ToolPaint.py:1351 +#: flatcamTools/ToolPaint.py:1348 flatcamTools/ToolPaint.py:1351 +#: flatcamTools/ToolPaint.py:1353 msgid "Normal painting polygon task started." msgstr "Taskul de pictare normal a unui polygon a inceput." -#: flatcamTools/ToolPaint.py:1347 flatcamTools/ToolPaint.py:1709 -#: flatcamTools/ToolPaint.py:1884 flatcamTools/ToolPaint.py:2174 -#: flatcamTools/ToolPaint.py:2356 +#: flatcamTools/ToolPaint.py:1349 flatcamTools/ToolPaint.py:1711 +#: flatcamTools/ToolPaint.py:1886 flatcamTools/ToolPaint.py:2176 +#: flatcamTools/ToolPaint.py:2358 msgid "Buffering geometry..." msgstr "Crează o geometrie de tipul Bufer..." -#: flatcamTools/ToolPaint.py:1369 +#: flatcamTools/ToolPaint.py:1371 msgid "No polygon found." msgstr "Nu s-a gasit nici-un poligon." -#: flatcamTools/ToolPaint.py:1403 +#: flatcamTools/ToolPaint.py:1405 msgid "Painting polygon..." msgstr "Se 'pictează' un poligon..." -#: flatcamTools/ToolPaint.py:1451 +#: flatcamTools/ToolPaint.py:1453 msgid "Geometry could not be painted completely" msgstr "Geometria nu a fost posibil să fie 'pictată' complet" -#: flatcamTools/ToolPaint.py:1484 +#: flatcamTools/ToolPaint.py:1486 msgid "" "Could not do Paint. Try a different combination of parameters. Or a " "different strategy of paint" @@ -15372,9 +15260,9 @@ msgstr "" "Nu s-a putut face operatia de 'pictare'. Incearcă o combinaţie diferita de " "parametri. Sau o strategie diferita de 'pictare'" -#: flatcamTools/ToolPaint.py:1536 flatcamTools/ToolPaint.py:1863 -#: flatcamTools/ToolPaint.py:2013 flatcamTools/ToolPaint.py:2334 -#: flatcamTools/ToolPaint.py:2488 +#: flatcamTools/ToolPaint.py:1538 flatcamTools/ToolPaint.py:1865 +#: flatcamTools/ToolPaint.py:2015 flatcamTools/ToolPaint.py:2336 +#: flatcamTools/ToolPaint.py:2490 msgid "" "There is no Painting Geometry in the file.\n" "Usually it means that the tool diameter is too big for the painted " @@ -15386,36 +15274,36 @@ msgstr "" "geometrice.\n" "Schimbă parametrii de 'pictare' și încearcă din nou." -#: flatcamTools/ToolPaint.py:1542 +#: flatcamTools/ToolPaint.py:1544 msgid "Paint Single Done." msgstr "Pictarea unui polygon efectuată." -#: flatcamTools/ToolPaint.py:1574 flatcamTools/ToolPaint.py:2041 -#: flatcamTools/ToolPaint.py:2516 +#: flatcamTools/ToolPaint.py:1576 flatcamTools/ToolPaint.py:2043 +#: flatcamTools/ToolPaint.py:2518 msgid "Polygon Paint started ..." msgstr "Paint pt poligon a inceput ..." -#: flatcamTools/ToolPaint.py:1626 flatcamTools/ToolPaint.py:2103 +#: flatcamTools/ToolPaint.py:1628 flatcamTools/ToolPaint.py:2105 msgid "Painting polygons..." msgstr "Se 'pictează' poligoane..." -#: flatcamTools/ToolPaint.py:1708 flatcamTools/ToolPaint.py:1711 -#: flatcamTools/ToolPaint.py:1713 +#: flatcamTools/ToolPaint.py:1710 flatcamTools/ToolPaint.py:1713 +#: flatcamTools/ToolPaint.py:1715 msgid "Paint Tool. Normal painting all task started." msgstr "Unealta Paint. Taskul de pictare a tuturor poligoanelor a inceput." -#: flatcamTools/ToolPaint.py:1747 flatcamTools/ToolPaint.py:1919 -#: flatcamTools/ToolPaint.py:2221 flatcamTools/ToolPaint.py:2397 +#: flatcamTools/ToolPaint.py:1749 flatcamTools/ToolPaint.py:1921 +#: flatcamTools/ToolPaint.py:2223 flatcamTools/ToolPaint.py:2399 msgid "Painting with tool diameter = " msgstr "Pictand cu o unealtă cu diametrul = " -#: flatcamTools/ToolPaint.py:1750 flatcamTools/ToolPaint.py:1922 -#: flatcamTools/ToolPaint.py:2224 flatcamTools/ToolPaint.py:2400 +#: flatcamTools/ToolPaint.py:1752 flatcamTools/ToolPaint.py:1924 +#: flatcamTools/ToolPaint.py:2226 flatcamTools/ToolPaint.py:2402 msgid "started" msgstr "a inceput" -#: flatcamTools/ToolPaint.py:1812 flatcamTools/ToolPaint.py:1968 -#: flatcamTools/ToolPaint.py:2284 flatcamTools/ToolPaint.py:2444 +#: flatcamTools/ToolPaint.py:1814 flatcamTools/ToolPaint.py:1970 +#: flatcamTools/ToolPaint.py:2286 flatcamTools/ToolPaint.py:2446 msgid "" "Could not do Paint All. Try a different combination of parameters. Or a " "different Method of paint" @@ -15423,35 +15311,35 @@ msgstr "" "Nu s-a efectuat op. 'Paint' pt toate poligoanele. Incearcă o combinaţie " "diferită de parametri. Sau încearcă o alta metoda de 'pictat'" -#: flatcamTools/ToolPaint.py:1872 +#: flatcamTools/ToolPaint.py:1874 msgid "Paint All Done." msgstr "Pictarea Tuturor poligoanelor efectuată." -#: flatcamTools/ToolPaint.py:1883 flatcamTools/ToolPaint.py:1887 -#: flatcamTools/ToolPaint.py:1890 +#: flatcamTools/ToolPaint.py:1885 flatcamTools/ToolPaint.py:1889 +#: flatcamTools/ToolPaint.py:1892 msgid "Rest machining painting all task started." msgstr "" "Taskul de pictare prin prelucrare 'rest' a tuturor poligoanelor a inceput." -#: flatcamTools/ToolPaint.py:2022 flatcamTools/ToolPaint.py:2497 +#: flatcamTools/ToolPaint.py:2024 flatcamTools/ToolPaint.py:2499 msgid "Paint All with Rest-Machining done." msgstr "'Paint' pentru toate poligoanele cu strategia Rest a fost efectuată." -#: flatcamTools/ToolPaint.py:2173 flatcamTools/ToolPaint.py:2177 -#: flatcamTools/ToolPaint.py:2180 +#: flatcamTools/ToolPaint.py:2175 flatcamTools/ToolPaint.py:2179 +#: flatcamTools/ToolPaint.py:2182 msgid "Normal painting area task started." msgstr "Taskul de pictare normal a unei arii a inceput." -#: flatcamTools/ToolPaint.py:2343 +#: flatcamTools/ToolPaint.py:2345 msgid "Paint Area Done." msgstr "Paint pt o zona efectuata." -#: flatcamTools/ToolPaint.py:2355 flatcamTools/ToolPaint.py:2361 +#: flatcamTools/ToolPaint.py:2357 flatcamTools/ToolPaint.py:2363 msgid "Rest machining painting area task started." msgstr "" "Taskul de pictare a unei arii cu strategia de masinare 'rest' a inceput." -#: flatcamTools/ToolPaint.py:2358 +#: flatcamTools/ToolPaint.py:2360 msgid "Paint Tool. Rest machining painting area task started." msgstr "" "Unealta Paint. Taskul de pictare a unei arii cu strategia de masinare 'rest' " @@ -15846,22 +15734,16 @@ msgid "Drills number" msgstr "Număr de worker's" #: flatcamTools/ToolProperties.py:402 flatcamTools/ToolProperties.py:461 -#, fuzzy -#| msgid "tool number" msgid "Slots number" -msgstr "numărul uneltei" +msgstr "Numărul de sloturi" #: flatcamTools/ToolProperties.py:404 -#, fuzzy -#| msgid "tool number" msgid "Drills total number:" -msgstr "numărul uneltei" +msgstr "Număr total de gauri:" #: flatcamTools/ToolProperties.py:405 -#, fuzzy -#| msgid "tool number" msgid "Slots total number:" -msgstr "numărul uneltei" +msgstr "Număr total de sloturi:" #: flatcamTools/ToolProperties.py:411 flatcamTools/ToolProperties.py:426 #: flatcamTools/ToolProperties.py:429 flatcamTools/ToolProperties.py:432 @@ -15894,10 +15776,8 @@ msgid "Data" msgstr "Date unealtă" #: flatcamTools/ToolProperties.py:468 -#, fuzzy -#| msgid "depth where to cut" msgid "Depth of Cut" -msgstr "adâncimea de tăiere" +msgstr "Adâncimea de Tăiere" #: flatcamTools/ToolProperties.py:480 #, fuzzy @@ -15906,10 +15786,8 @@ msgid "Clearance Height" msgstr "Toleranta" #: flatcamTools/ToolProperties.py:492 -#, fuzzy -#| msgid "Feedrate:" msgid "Feedrate" -msgstr "Feedrate:" +msgstr "Feedrate" #: flatcamTools/ToolProperties.py:512 msgid "Routing time" @@ -16005,10 +15883,8 @@ msgstr "Generează un obiect CNCJob." #: flatcamTools/ToolQRCode.py:413 flatcamTools/ToolQRCode.py:748 #: flatcamTools/ToolQRCode.py:797 -#, fuzzy -#| msgid "Cancelled. There is no Tool/Drill selected" msgid "Cancelled. There is no QRCode Data in the text box." -msgstr "Anulat. Nu este selectată nici-o unealtă sau op. de găurire" +msgstr "Anulat. Nu există date QRCode în caseta de text." #: flatcamTools/ToolQRCode.py:432 #, fuzzy @@ -16033,10 +15909,8 @@ msgid "Export PNG" msgstr "Exporta SVG" #: flatcamTools/ToolQRCode.py:789 -#, fuzzy -#| msgid "Export PNG cancelled." msgid " Export PNG cancelled." -msgstr "Exportul imagine PNG este anulat." +msgstr " Exportul PNG a fost anulat." #: flatcamTools/ToolRulesCheck.py:33 msgid "Check Rules" @@ -16521,43 +16395,43 @@ msgstr "" msgid "Generating Solder Paste dispensing geometry..." msgstr "Se generează Geometria de dispensare a pastei de fludor ..." -#: flatcamTools/ToolSolderPaste.py:1287 +#: flatcamTools/ToolSolderPaste.py:1286 msgid "There is no Geometry object available." msgstr "Nu există obiect Geometrie disponibil." -#: flatcamTools/ToolSolderPaste.py:1292 +#: flatcamTools/ToolSolderPaste.py:1291 msgid "This Geometry can't be processed. NOT a solder_paste_tool geometry." msgstr "" "Acest obiect Geometrie nu poate fi procesat Nu este o Geometrie tip " "solder_paste_tool." -#: flatcamTools/ToolSolderPaste.py:1400 +#: flatcamTools/ToolSolderPaste.py:1398 msgid "ToolSolderPaste CNCjob created" msgstr "ToolSolderPaste CNCjob a fost creat" -#: flatcamTools/ToolSolderPaste.py:1421 +#: flatcamTools/ToolSolderPaste.py:1419 #, fuzzy #| msgid "Code Editor" msgid "SP GCode Editor" msgstr "Editor Cod" -#: flatcamTools/ToolSolderPaste.py:1433 flatcamTools/ToolSolderPaste.py:1438 -#: flatcamTools/ToolSolderPaste.py:1493 +#: flatcamTools/ToolSolderPaste.py:1431 flatcamTools/ToolSolderPaste.py:1436 +#: flatcamTools/ToolSolderPaste.py:1491 msgid "" "This CNCJob object can't be processed. NOT a solder_paste_tool CNCJob object." msgstr "" "Acest obiect CNCJob nu poate fi procesat. Nu este un obiect CNCJob tip " "'solder_paste_tool'." -#: flatcamTools/ToolSolderPaste.py:1463 +#: flatcamTools/ToolSolderPaste.py:1461 msgid "No Gcode in the object" msgstr "Nu există cod GCode in acest obiect" -#: flatcamTools/ToolSolderPaste.py:1503 +#: flatcamTools/ToolSolderPaste.py:1501 msgid "Export GCode ..." msgstr "Exporta GCode ..." -#: flatcamTools/ToolSolderPaste.py:1551 +#: flatcamTools/ToolSolderPaste.py:1549 msgid "Solder paste dispenser GCode file saved to" msgstr "Fişierul GCode pt dispensare pastă de fludor este salvat in" @@ -16649,10 +16523,8 @@ msgid "No Target object loaded." msgstr "Nu este incărcat un obiect Tintă." #: flatcamTools/ToolSub.py:281 -#, fuzzy -#| msgid "Adding geometry for aperture" msgid "Loading geometry from Gerber objects." -msgstr "Se adaugă geometria pentru apertura" +msgstr "Se Încarcă geometria din obiectele Gerber." #: flatcamTools/ToolSub.py:293 flatcamTools/ToolSub.py:498 msgid "No Subtractor object loaded." @@ -16870,16 +16742,16 @@ msgstr "" msgid "TclCommand Bounds done." msgstr "TclCommand Bounds executata." -#: tclCommands/TclCommandCopperClear.py:241 tclCommands/TclCommandPaint.py:239 +#: tclCommands/TclCommandCopperClear.py:242 tclCommands/TclCommandPaint.py:240 msgid "Expected -box ." msgstr "Asteptăm -box ." -#: tclCommands/TclCommandCopperClear.py:250 tclCommands/TclCommandPaint.py:248 +#: tclCommands/TclCommandCopperClear.py:251 tclCommands/TclCommandPaint.py:249 #: tclCommands/TclCommandScale.py:75 msgid "Could not retrieve box object" msgstr "Nu s-a putut incărca obiectul" -#: tclCommands/TclCommandCopperClear.py:272 +#: tclCommands/TclCommandCopperClear.py:273 msgid "" "None of the following args: 'ref', 'all' were found or none was set to 1.\n" "Copper clearing failed." @@ -16888,11 +16760,11 @@ msgstr "" "nici unul nu a fost setat la 1.\n" "Curatarea de cupru a eșuat." -#: tclCommands/TclCommandPaint.py:216 +#: tclCommands/TclCommandPaint.py:217 msgid "Expected -x and -y ." msgstr "Asteptam -x si -y ." -#: tclCommands/TclCommandPaint.py:267 +#: tclCommands/TclCommandPaint.py:268 msgid "" "There was none of the following args: 'ref', 'single', 'all'.\n" "Paint failed." @@ -16923,6 +16795,130 @@ msgstr "" "Nici-un nume de Geometrie in argumente. Furnizați un nume și încercați din " "nou." +#~ msgid "" +#~ "- 'Rectangular' - the bounding box will be of rectangular shape.\n" +#~ " - 'Minimal' - the bounding box will be the convex hull shape." +#~ msgstr "" +#~ "- „dreptunghiular” - caseta de delimitare va avea o formă " +#~ "dreptunghiulară.\n" +#~ "  - „Minimal” - caseta de delimitare va fi forma convexă a carenei." + +#~ msgid "" +#~ "Type here any G-Code commands you would like to add at the beginning of " +#~ "the G-Code file." +#~ msgstr "" +#~ "Introduceți aici orice comandă G-Code pe care doriți să o adăugați la " +#~ "începutul fișierului G-Code." + +#~ msgid "" +#~ "Type here any G-Code commands you would like to append to the generated " +#~ "file. I.e.: M2 (End of program)" +#~ msgstr "" +#~ "Introduceți aici toate comenzile Codului G pe care doriți să le adăugați " +#~ "la fișierul generat. I.e .: M2 (sfârșitul programului)" + +#, fuzzy +#~| msgid "" +#~| "Type here any G-Code commands you would\n" +#~| "like to be executed when Toolchange event is encountered.\n" +#~| "This will constitute a Custom Toolchange GCode,\n" +#~| "or a Toolchange Macro.\n" +#~| "The FlatCAM variables are surrounded by '%' symbol.\n" +#~| "\n" +#~| "WARNING: it can be used only with a preprocessor file\n" +#~| "that has 'toolchange_custom' in it's name and this is built\n" +#~| "having as template the 'Toolchange Custom' posprocessor file." +#~ msgid "" +#~ "Type here any G-Code commands you would like to be executed when " +#~ "Toolchange event is encountered. This will constitute a Custom Toolchange " +#~ "GCode, or a Toolchange Macro. The FlatCAM variables are surrounded by '%' " +#~ "symbol. \n" +#~ "WARNING: it can be used only with a preprocessor file that has " +#~ "'toolchange_custom' in it's name." +#~ msgstr "" +#~ "Plasează aici acele comenzi G-Code care se dorește să fie executate\n" +#~ "atunci când evenimentul de tip Schimb Unealtă este intalnit.\n" +#~ "Aceasta va constitui un Macro pentru schimbare unealtă.\n" +#~ "Variabilele FlatCAM folosite aici sunt inconjurate de simbolul %.\n" +#~ "\n" +#~ "ATENTIE:\n" +#~ "poate fi folosit doar cu un fişier postprocesor care contine " +#~ "'toolchange_custom'\n" +#~ "in numele sau." + +#, fuzzy, 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." +#~ 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 CNC.\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." + +#, fuzzy +#~| msgid "Creating Excellon." +#~ msgid "Calibrate Tool" +#~ msgstr "In curs de creere Excellon." + +#, python-brace-format +#~ msgid "" +#~ "[selected] {kind} created/selected: {name}" +#~ "" +#~ msgstr "" +#~ "[selected]{kind} creat/selectat: {name}" + +#, python-brace-format +#~ msgid "[selected]{name} selected" +#~ msgstr "[selected]{name} selectat" + +#, 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}" + +#, python-brace-format +#~ msgid "{l_save}/Project_{date}" +#~ msgstr "{l_save}/Proiect_{date}" + +#, python-brace-format +#~| msgid "{l_save}/Project_{date}" +#~ msgid "{l_save}/{obj_name}_{date}" +#~ msgstr "{l_save}/{obj_name}_{date}" + +#~ msgid "Paint Area" +#~ msgstr "Unealta Paint" + +#~ msgid "Axis Ref:" +#~ msgstr "Axa de ref.:" + #~ msgid "" #~ "#\n" #~ "# CREATE A NEW FLATCAM TCL SCRIPT\n"