diff --git a/FlatCAMApp.py b/FlatCAMApp.py index 36036f84..e796a181 100644 --- a/FlatCAMApp.py +++ b/FlatCAMApp.py @@ -962,6 +962,11 @@ class App(QtCore.QObject): else: self.decimals = int(self.defaults['decimals_inch']) + if self.defaults["global_theme"] == 'white': + self.resource_location = 'share' + else: + self.resource_location = 'share' + self.current_units = self.defaults['units'] # ############################################################################# @@ -985,7 +990,7 @@ class App(QtCore.QObject): show_splash = 1 if show_splash and self.cmd_line_headless != 1: - splash_pix = QtGui.QPixmap('share/splash.png') + splash_pix = QtGui.QPixmap(self.resource_location + '/splash.png') self.splash = QtWidgets.QSplashScreen(splash_pix, Qt.WindowStaysOnTopHint) # self.splash.setMask(splash_pix.mask()) @@ -1702,11 +1707,13 @@ class App(QtCore.QObject): self.parent_w = QtWidgets.QWidget() if self.cmd_line_headless == 1: - self.trayIcon = FlatCAMSystemTray(app=self, icon=QtGui.QIcon('share/flatcam_icon32_green.png'), + self.trayIcon = FlatCAMSystemTray(app=self, + icon=QtGui.QIcon(self.resource_location + '/flatcam_icon32_green.png'), headless=True, parent=self.parent_w) else: - self.trayIcon = FlatCAMSystemTray(app=self, icon=QtGui.QIcon('share/flatcam_icon32_green.png'), + self.trayIcon = FlatCAMSystemTray(app=self, + icon=QtGui.QIcon(self.resource_location + '/flatcam_icon32_green.png'), parent=self.parent_w) # ############################################################################# @@ -2992,84 +2999,96 @@ class App(QtCore.QObject): :return: None """ self.dblsidedtool = DblSidedTool(self) - self.dblsidedtool.install(icon=QtGui.QIcon('share/doubleside16.png'), separator=True) + self.dblsidedtool.install(icon=QtGui.QIcon(self.resource_location + '/doubleside16.png'), separator=True) self.cal_exc_tool = ToolCalibration(self) - self.cal_exc_tool.install(icon=QtGui.QIcon('share/calibrate_16.png'), pos=self.ui.menutool, + self.cal_exc_tool.install(icon=QtGui.QIcon(self.resource_location + '/calibrate_16.png'), pos=self.ui.menutool, before=self.dblsidedtool.menuAction, separator=False) self.distance_tool = Distance(self) - self.distance_tool.install(icon=QtGui.QIcon('share/distance16.png'), pos=self.ui.menuedit, + self.distance_tool.install(icon=QtGui.QIcon(self.resource_location + '/distance16.png'), pos=self.ui.menuedit, before=self.ui.menueditorigin, separator=False) self.distance_min_tool = DistanceMin(self) - self.distance_min_tool.install(icon=QtGui.QIcon('share/distance_min16.png'), pos=self.ui.menuedit, + self.distance_min_tool.install(icon=QtGui.QIcon(self.resource_location + '/distance_min16.png'), + pos=self.ui.menuedit, before=self.ui.menueditorigin, separator=True) self.panelize_tool = Panelize(self) - self.panelize_tool.install(icon=QtGui.QIcon('share/panelize16.png')) + self.panelize_tool.install(icon=QtGui.QIcon(self.resource_location + '/panelize16.png')) self.film_tool = Film(self) - self.film_tool.install(icon=QtGui.QIcon('share/film16.png')) + self.film_tool.install(icon=QtGui.QIcon(self.resource_location + '/film16.png')) self.paste_tool = SolderPaste(self) - self.paste_tool.install(icon=QtGui.QIcon('share/solderpastebis32.png')) + self.paste_tool.install(icon=QtGui.QIcon(self.resource_location + '/solderpastebis32.png')) self.calculator_tool = ToolCalculator(self) - self.calculator_tool.install(icon=QtGui.QIcon('share/calculator16.png'), separator=True) + self.calculator_tool.install(icon=QtGui.QIcon(self.resource_location + '/calculator16.png'), separator=True) self.sub_tool = ToolSub(self) - self.sub_tool.install(icon=QtGui.QIcon('share/sub32.png'), pos=self.ui.menutool, separator=True) + self.sub_tool.install(icon=QtGui.QIcon(self.resource_location + '/sub32.png'), + pos=self.ui.menutool, separator=True) self.rules_tool = RulesCheck(self) - self.rules_tool.install(icon=QtGui.QIcon('share/rules32.png'), pos=self.ui.menutool, separator=False) + self.rules_tool.install(icon=QtGui.QIcon(self.resource_location + '/rules32.png'), + pos=self.ui.menutool, separator=False) self.optimal_tool = ToolOptimal(self) - self.optimal_tool.install(icon=QtGui.QIcon('share/open_excellon32.png'), pos=self.ui.menutool, separator=True) + self.optimal_tool.install(icon=QtGui.QIcon(self.resource_location + '/open_excellon32.png'), + pos=self.ui.menutool, separator=True) self.move_tool = ToolMove(self) - self.move_tool.install(icon=QtGui.QIcon('share/move16.png'), pos=self.ui.menuedit, + self.move_tool.install(icon=QtGui.QIcon(self.resource_location + '/move16.png'), pos=self.ui.menuedit, before=self.ui.menueditorigin, separator=True) self.cutout_tool = CutOut(self) - self.cutout_tool.install(icon=QtGui.QIcon('share/cut16_bis.png'), pos=self.ui.menutool, + self.cutout_tool.install(icon=QtGui.QIcon(self.resource_location + '/cut16_bis.png'), pos=self.ui.menutool, before=self.sub_tool.menuAction) self.ncclear_tool = NonCopperClear(self) - self.ncclear_tool.install(icon=QtGui.QIcon('share/ncc16.png'), pos=self.ui.menutool, + self.ncclear_tool.install(icon=QtGui.QIcon(self.resource_location + '/ncc16.png'), pos=self.ui.menutool, before=self.sub_tool.menuAction, separator=True) self.paint_tool = ToolPaint(self) - self.paint_tool.install(icon=QtGui.QIcon('share/paint16.png'), pos=self.ui.menutool, + self.paint_tool.install(icon=QtGui.QIcon(self.resource_location + '/paint16.png'), pos=self.ui.menutool, before=self.sub_tool.menuAction, separator=True) self.copper_thieving_tool = ToolCopperThieving(self) - self.copper_thieving_tool.install(icon=QtGui.QIcon('share/copperfill32.png'), pos=self.ui.menutool) + self.copper_thieving_tool.install(icon=QtGui.QIcon(self.resource_location + '/copperfill32.png'), + pos=self.ui.menutool) self.fiducial_tool = ToolFiducials(self) - self.fiducial_tool.install(icon=QtGui.QIcon('share/fiducials_32.png'), pos=self.ui.menutool) + self.fiducial_tool.install(icon=QtGui.QIcon(self.resource_location + '/fiducials_32.png'), + pos=self.ui.menutool) self.qrcode_tool = QRCode(self) - self.qrcode_tool.install(icon=QtGui.QIcon('share/qrcode32.png'), pos=self.ui.menutool) + self.qrcode_tool.install(icon=QtGui.QIcon(self.resource_location + '/qrcode32.png'), + pos=self.ui.menutool) self.transform_tool = ToolTransform(self) - self.transform_tool.install(icon=QtGui.QIcon('share/transform.png'), pos=self.ui.menuoptions, separator=True) + self.transform_tool.install(icon=QtGui.QIcon(self.resource_location + '/transform.png'), + pos=self.ui.menuoptions, separator=True) self.properties_tool = Properties(self) - self.properties_tool.install(icon=QtGui.QIcon('share/properties32.png'), pos=self.ui.menuoptions) + self.properties_tool.install(icon=QtGui.QIcon(self.resource_location + '/properties32.png'), + pos=self.ui.menuoptions) self.pdf_tool = ToolPDF(self) - self.pdf_tool.install(icon=QtGui.QIcon('share/pdf32.png'), pos=self.ui.menufileimport, + self.pdf_tool.install(icon=QtGui.QIcon(self.resource_location + '/pdf32.png'), + pos=self.ui.menufileimport, separator=True) self.image_tool = ToolImage(self) - self.image_tool.install(icon=QtGui.QIcon('share/image32.png'), pos=self.ui.menufileimport, + self.image_tool.install(icon=QtGui.QIcon(self.resource_location + '/image32.png'), + pos=self.ui.menufileimport, separator=True) self.pcb_wizard_tool = PcbWizard(self) - self.pcb_wizard_tool.install(icon=QtGui.QIcon('share/drill32.png'), pos=self.ui.menufileimport) + self.pcb_wizard_tool.install(icon=QtGui.QIcon(self.resource_location + '/drill32.png'), + pos=self.ui.menufileimport) self.log.debug("Tools are installed.") @@ -3112,7 +3131,8 @@ class App(QtCore.QObject): self.remove_tools() # re-add the TCL Shell action to the Tools menu and reconnect it to ist slot function - self.ui.menutoolshell = self.ui.menutool.addAction(QtGui.QIcon('share/shell16.png'), '&Command Line\tS') + self.ui.menutoolshell = self.ui.menutool.addAction(QtGui.QIcon(self.resource_location + '/shell16.png'), + '&Command Line\tS') self.ui.menutoolshell.triggered.connect(self.on_toggle_shell) # third install all of them @@ -3293,7 +3313,7 @@ class App(QtCore.QObject): msgbox = QtWidgets.QMessageBox() msgbox.setText(_("Do you want to save the edited object?")) msgbox.setWindowTitle(_("Close Editor")) - msgbox.setWindowIcon(QtGui.QIcon('share/save_as.png')) + msgbox.setWindowIcon(QtGui.QIcon(self.resource_location + '/save_as.png')) bt_yes = msgbox.addButton(_('Yes'), QtWidgets.QMessageBox.YesRole) bt_no = msgbox.addButton(_('No'), QtWidgets.QMessageBox.NoRole) @@ -4418,9 +4438,11 @@ class App(QtCore.QObject): beta = self.beta class AboutDialog(QtWidgets.QDialog): - def __init__(self, parent=None): + def __init__(self, app, parent=None): QtWidgets.QDialog.__init__(self, parent) + self.app = app + # Icon and title self.setWindowIcon(parent.app_icon) self.setWindowTitle(_("About FlatCAM")) @@ -4431,14 +4453,14 @@ class App(QtCore.QObject): # "background-attachment: fixed" # ) - # bgimage = QtGui.QImage('share/flatcam_icon256.png') + # bgimage = QtGui.QImage(self.resource_location + '/flatcam_icon256.png') # s_bgimage = bgimage.scaled(QtCore.QSize(self.frameGeometry().width(), self.frameGeometry().height())) # palette = QtGui.QPalette() # palette.setBrush(10, QtGui.QBrush(bgimage)) # 10 = Windowrole # self.setPalette(palette) logo = QtWidgets.QLabel() - logo.setPixmap(QtGui.QPixmap('share/flatcam_icon256.png')) + logo.setPixmap(QtGui.QPixmap(self.app.resource_location + '/flatcam_icon256.png')) title = QtWidgets.QLabel( "FlatCAM
" @@ -4630,6 +4652,8 @@ class App(QtCore.QObject): self.prog_grid_lay.addWidget(QtWidgets.QLabel('%s' % "Chris Breneman"), 30, 0) self.prog_grid_lay.addWidget(QtWidgets.QLabel('%s' % "Eric Varsanyi"), 31, 0) + self.prog_grid_lay.addWidget(QtWidgets.QLabel(''), 34, 0) + self.prog_grid_lay.addWidget(QtWidgets.QLabel('%s' % "@Idechix"), 100, 0) self.prog_grid_lay.addWidget(QtWidgets.QLabel('%s' % "@SM"), 101, 0) self.prog_grid_lay.addWidget(QtWidgets.QLabel('%s' % "@grbf"), 102, 0) @@ -4664,12 +4688,12 @@ class App(QtCore.QObject): self.translator_grid_lay.addWidget(QtWidgets.QLabel('%s' % "Carlos Stein"), 1, 1) self.translator_grid_lay.addWidget(QtWidgets.QLabel('%s' % ""), 1, 3) self.translator_grid_lay.addWidget(QtWidgets.QLabel('%s' % "French"), 2, 0) - self.translator_grid_lay.addWidget(QtWidgets.QLabel('%s' % "Marius Stanciu"), 2, 1) - self.translator_grid_lay.addWidget(QtWidgets.QLabel('%s' % "(Google-Translation)"), 2, 2) + self.translator_grid_lay.addWidget(QtWidgets.QLabel('%s' % "Marius Stanciu (Google-Tr)"), 2, 1) + self.translator_grid_lay.addWidget(QtWidgets.QLabel('%s' % ""), 2, 2) self.translator_grid_lay.addWidget(QtWidgets.QLabel('%s' % " "), 2, 3) self.translator_grid_lay.addWidget(QtWidgets.QLabel('%s' % "German"), 3, 0) - self.translator_grid_lay.addWidget(QtWidgets.QLabel('%s' % "Marius Stanciu"), 3, 1) - self.translator_grid_lay.addWidget(QtWidgets.QLabel('%s' % "Jens Karstedt"), 3, 2) + self.translator_grid_lay.addWidget(QtWidgets.QLabel('%s' % "Marius Stanciu (Google-Tr)"), 3, 1) + self.translator_grid_lay.addWidget(QtWidgets.QLabel('%s' % "Jens Karstedt, @detlefeckardt"), 3, 2) self.translator_grid_lay.addWidget(QtWidgets.QLabel('%s' % " "), 3, 3) self.translator_grid_lay.addWidget(QtWidgets.QLabel('%s' % "Romanian"), 4, 0) self.translator_grid_lay.addWidget(QtWidgets.QLabel('%s' % "Marius Stanciu"), 4, 1) @@ -4678,8 +4702,8 @@ class App(QtCore.QObject): self.translator_grid_lay.addWidget(QtWidgets.QLabel('%s' % "Andrey Kultyapov"), 5, 1) self.translator_grid_lay.addWidget(QtWidgets.QLabel('%s' % ""), 5, 3) self.translator_grid_lay.addWidget(QtWidgets.QLabel('%s' % "Spanish"), 6, 0) - self.translator_grid_lay.addWidget(QtWidgets.QLabel('%s' % "Marius Stanciu"), 6, 1) - self.translator_grid_lay.addWidget(QtWidgets.QLabel('%s' % "(Google-Translation)"), 6, 2) + self.translator_grid_lay.addWidget(QtWidgets.QLabel('%s' % "Marius Stanciu (Google-Tr)"), 6, 1) + self.translator_grid_lay.addWidget(QtWidgets.QLabel('%s' % ""), 6, 2) self.translator_grid_lay.addWidget(QtWidgets.QLabel('%s' % " "), 6, 3) self.translator_grid_lay.setColumnStretch(0, 0) self.translators_tab_layout.addStretch() @@ -4697,7 +4721,7 @@ class App(QtCore.QObject): closebtn.clicked.connect(self.accept) - AboutDialog(self.ui).exec_() + AboutDialog(app=self, parent=self.ui).exec_() def install_bookmarks(self, book_dict=None): """ @@ -4751,7 +4775,7 @@ class App(QtCore.QObject): act = QtWidgets.QAction(parent=self.ui.menuhelp_bookmarks) act.setText(title) - act.setIcon(QtGui.QIcon('share/link16.png')) + act.setIcon(QtGui.QIcon(self.resource_location + '/link16.png')) # from here: https://stackoverflow.com/questions/20390323/pyqt-dynamic-generate-qmenu-action-and-connect if title == 'Backup Site' and weblink == "": act.triggered.connect(self.on_backup_site) @@ -4784,8 +4808,7 @@ class App(QtCore.QObject): # Switch plot_area to preferences page self.ui.plot_tab_area.setCurrentWidget(self.book_dialog_tab) - @staticmethod - def on_backup_site(): + def on_backup_site(self): msgbox = QtWidgets.QMessageBox() msgbox.setText(_("This entry will resolve to another website if:\n\n" "1. FlatCAM.org website is down\n" @@ -4795,7 +4818,7 @@ class App(QtCore.QObject): "use the YouTube channel link from the Help menu.")) msgbox.setWindowTitle(_("Alternative website")) - msgbox.setWindowIcon(QtGui.QIcon('share/globe16.png')) + msgbox.setWindowIcon(QtGui.QIcon(self.resource_location + '/globe16.png')) bt_yes = msgbox.addButton(_('Close'), QtWidgets.QMessageBox.YesRole) msgbox.setDefaultButton(bt_yes) @@ -4822,7 +4845,7 @@ class App(QtCore.QObject): # "\n" # "Do you want to Save the project?") # msgbox.setWindowTitle("Save changes") - # msgbox.setWindowIcon(QtGui.QIcon('share/save_as.png')) + # msgbox.setWindowIcon(QtGui.QIcon(self.resource_location + '/save_as.png')) # msgbox.setStandardButtons(QtWidgets.QMessageBox.Yes | QtWidgets.QMessageBox.No | # QtWidgets.QMessageBox.Cancel) # msgbox.setDefaultButton(QtWidgets.QMessageBox.Yes) @@ -5002,7 +5025,7 @@ class App(QtCore.QObject): "\n" "Do you want to Save the project?")) msgbox.setWindowTitle(_("Save changes")) - msgbox.setWindowIcon(QtGui.QIcon('share/save_as.png')) + msgbox.setWindowIcon(QtGui.QIcon(self.resource_location + '/save_as.png')) bt_yes = msgbox.addButton(_('Yes'), QtWidgets.QMessageBox.YesRole) bt_no = msgbox.addButton(_('No'), QtWidgets.QMessageBox.NoRole) bt_cancel = msgbox.addButton(_('Cancel'), QtWidgets.QMessageBox.RejectRole) @@ -5836,7 +5859,7 @@ class App(QtCore.QObject): # Changing project units. Warn user. msgbox = QtWidgets.QMessageBox() msgbox.setWindowTitle(_("Toggle Units")) - msgbox.setWindowIcon(QtGui.QIcon('share/toggle_units32.png')) + msgbox.setWindowIcon(QtGui.QIcon(self.resource_location + '/toggle_units32.png')) msgbox.setText(_("Changing the units of the project\n" "will scale all objects.\n\n" "Do you want to continue?")) @@ -7064,7 +7087,7 @@ class App(QtCore.QObject): tool_add_popup = FCInputDialog(title="New Tool ...", text='Enter a Tool Diameter:', min=0.0000, max=99.9999, decimals=4) - tool_add_popup.setWindowIcon(QtGui.QIcon('share/letter_t_32.png')) + tool_add_popup.setWindowIcon(QtGui.QIcon(self.resource_location + '/letter_t_32.png')) val, ok = tool_add_popup.get_value() if ok: @@ -7081,7 +7104,7 @@ class App(QtCore.QObject): msgbox.setText(_("Adding Tool works only when Advanced is checked.\n" "Go to Preferences -> General - Show Advanced Options.")) msgbox.setWindowTitle("Tool adding ...") - msgbox.setWindowIcon(QtGui.QIcon('share/warning.png')) + msgbox.setWindowIcon(QtGui.QIcon(self.resource_location + '/warning.png')) bt_ok = msgbox.addButton(_('Ok'), QtWidgets.QMessageBox.AcceptRole) msgbox.setDefaultButton(bt_ok) @@ -7154,7 +7177,7 @@ class App(QtCore.QObject): if self.defaults["global_delete_confirmation"] is True: msgbox = QtWidgets.QMessageBox() msgbox.setWindowTitle(_("Delete objects")) - msgbox.setWindowIcon(QtGui.QIcon('share/deleteshape32.png')) + msgbox.setWindowIcon(QtGui.QIcon(self.resource_location + '/deleteshape32.png')) # msgbox.setText("%s" % _("Change project units ...")) msgbox.setText(_("Are you sure you want to permanently delete\n" "the selected objects?")) @@ -7351,7 +7374,7 @@ class App(QtCore.QObject): dia_box = Dialog_box(title=_("Jump to ..."), label=_("Enter the coordinates in format X,Y:"), - icon=QtGui.QIcon('share/jump_to16.png'), + icon=QtGui.QIcon(self.resource_location + '/jump_to16.png'), initial_text=dia_box_location) if dia_box.ok is True: @@ -7861,7 +7884,7 @@ class App(QtCore.QObject): msgbox.setText(_("One or more values are changed.\n" "Do you want to save the Preferences?")) msgbox.setWindowTitle(_("Save Preferences")) - msgbox.setWindowIcon(QtGui.QIcon('share/save_as.png')) + msgbox.setWindowIcon(QtGui.QIcon(self.resource_location + '/save_as.png')) bt_yes = msgbox.addButton(_('Yes'), QtWidgets.QMessageBox.YesRole) msgbox.addButton(_('No'), QtWidgets.QMessageBox.NoRole) @@ -7887,7 +7910,7 @@ class App(QtCore.QObject): msgbox.setText(_("One or more Tools are edited.\n" "Do you want to update the Tools Database?")) msgbox.setWindowTitle(_("Save Tools Database")) - msgbox.setWindowIcon(QtGui.QIcon('share/save_as.png')) + msgbox.setWindowIcon(QtGui.QIcon(self.resource_location + '/save_as.png')) bt_yes = msgbox.addButton(_('Yes'), QtWidgets.QMessageBox.YesRole) msgbox.addButton(_('No'), QtWidgets.QMessageBox.NoRole) @@ -8183,12 +8206,12 @@ class App(QtCore.QObject): :return: None """ icon_files = { - "gerber": "share/flatcam_icon16.png", - "excellon": "share/drill16.png", - "cncjob": "share/cnc16.png", - "geometry": "share/geometry16.png", - "script": "share/script_new16.png", - "document": "share/notes16_1.png" + "gerber": self.resource_location + "/flatcam_icon16.png", + "excellon": self.resource_location + "/drill16.png", + "cncjob": self.resource_location + "/cnc16.png", + "geometry": self.resource_location + "/geometry16.png", + "script": self.resource_location + "/script_new16.png", + "document": self.resource_location + "/notes16_1.png" } if state == 'append': @@ -8257,11 +8280,11 @@ class App(QtCore.QObject): self.ui.menuobjects.addSeparator() self.ui.menuobjects_selall = self.ui.menuobjects.addAction( - QtGui.QIcon('share/select_all.png'), + QtGui.QIcon(self.resource_location + '/select_all.png'), _('Select All') ) self.ui.menuobjects_unselall = self.ui.menuobjects.addAction( - QtGui.QIcon('share/deselect_all32.png'), + QtGui.QIcon(self.resource_location + '/deselect_all32.png'), _('Deselect All') ) self.ui.menuobjects_selall.triggered.connect(lambda: self.on_objects_selection(True)) @@ -8304,11 +8327,11 @@ class App(QtCore.QObject): self.ui.menuobjects.addSeparator() self.ui.menuobjects_selall = self.ui.menuobjects.addAction( - QtGui.QIcon('share/select_all.png'), + QtGui.QIcon(self.resource_location + '/select_all.png'), _('Select All') ) self.ui.menuobjects_unselall = self.ui.menuobjects.addAction( - QtGui.QIcon('share/deselect_all32.png'), + QtGui.QIcon(self.resource_location + '/deselect_all32.png'), _('Deselect All') ) self.ui.menuobjects_selall.triggered.connect(lambda: self.on_objects_selection(True)) @@ -8351,7 +8374,8 @@ class App(QtCore.QObject): self.ui.cmenu_gridmenu.clear() sorted_list = sorted(self.defaults["global_grid_context_menu"][str(units)]) - grid_toggle = self.ui.cmenu_gridmenu.addAction(QtGui.QIcon('share/grid32_menu.png'), _("Grid On/Off")) + grid_toggle = self.ui.cmenu_gridmenu.addAction(QtGui.QIcon(self.resource_location + '/grid32_menu.png'), + _("Grid On/Off")) grid_toggle.setCheckable(True) if self.grid_status() == True: grid_toggle.setChecked(True) @@ -8360,12 +8384,15 @@ class App(QtCore.QObject): self.ui.cmenu_gridmenu.addSeparator() for grid in sorted_list: - action = self.ui.cmenu_gridmenu.addAction(QtGui.QIcon('share/grid32_menu.png'), "%s" % str(grid)) + action = self.ui.cmenu_gridmenu.addAction(QtGui.QIcon(self.resource_location + '/grid32_menu.png'), + "%s" % str(grid)) action.triggered.connect(self.set_grid) self.ui.cmenu_gridmenu.addSeparator() - grid_add = self.ui.cmenu_gridmenu.addAction(QtGui.QIcon('share/plus32.png'), _("Add")) - grid_delete = self.ui.cmenu_gridmenu.addAction(QtGui.QIcon('share/delete32.png'), _("Delete")) + grid_add = self.ui.cmenu_gridmenu.addAction(QtGui.QIcon(self.resource_location + '/plus32.png'), + _("Add")) + grid_delete = self.ui.cmenu_gridmenu.addAction(QtGui.QIcon(self.resource_location + '/delete32.png'), + _("Delete")) grid_add.triggered.connect(self.on_grid_add) grid_delete.triggered.connect(self.on_grid_delete) grid_toggle.triggered.connect(lambda: self.ui.grid_snap_btn.trigger()) @@ -8381,7 +8408,7 @@ class App(QtCore.QObject): grid_add_popup = FCInputDialog(title=_("New Grid ..."), text=_('Enter a Grid Value:'), min=0.0000, max=99.9999, decimals=4) - grid_add_popup.setWindowIcon(QtGui.QIcon('share/plus32.png')) + grid_add_popup.setWindowIcon(QtGui.QIcon(self.resource_location + '/plus32.png')) val, ok = grid_add_popup.get_value() if ok: @@ -8408,7 +8435,7 @@ class App(QtCore.QObject): grid_del_popup = FCInputDialog(title="Delete Grid ...", text='Enter a Grid Value:', min=0.0000, max=99.9999, decimals=4) - grid_del_popup.setWindowIcon(QtGui.QIcon('share/delete32.png')) + grid_del_popup.setWindowIcon(QtGui.QIcon(self.resource_location + '/delete32.png')) val, ok = grid_del_popup.get_value() if ok: @@ -9046,7 +9073,7 @@ class App(QtCore.QObject): "Creating a New project will delete them.\n" "Do you want to Save the project?")) msgbox.setWindowTitle(_("Save changes")) - msgbox.setWindowIcon(QtGui.QIcon('share/save_as.png')) + msgbox.setWindowIcon(QtGui.QIcon(self.resource_location + '/save_as.png')) bt_yes = msgbox.addButton(_('Yes'), QtWidgets.QMessageBox.YesRole) bt_no = msgbox.addButton(_('No'), QtWidgets.QMessageBox.NoRole) bt_cancel = msgbox.addButton(_('Cancel'), QtWidgets.QMessageBox.RejectRole) @@ -11532,17 +11559,17 @@ class App(QtCore.QObject): # TODO: Move this to constructor icons = { - "gerber": "share/flatcam_icon16.png", - "excellon": "share/drill16.png", - 'geometry': "share/geometry16.png", - "cncjob": "share/cnc16.png", - "script": "share/script_new24.png", - "document": "share/notes16_1.png", - "project": "share/project16.png", - "svg": "share/geometry16.png", - "dxf": "share/dxf16.png", - "pdf": "share/pdf32.png", - "image": "share/image16.png" + "gerber": self.resource_location + "/flatcam_icon16.png", + "excellon": self.resource_location + "/drill16.png", + 'geometry': self.resource_location + "/geometry16.png", + "cncjob": self.resource_location + "/cnc16.png", + "script": self.resource_location + "/script_new24.png", + "document": self.resource_location + "/notes16_1.png", + "project": self.resource_location + "/project16.png", + "svg": self.resource_location + "/geometry16.png", + "dxf": self.resource_location + "/dxf16.png", + "pdf": self.resource_location + "/pdf32.png", + "image": self.resource_location + "/image16.png" } @@ -11652,7 +11679,8 @@ class App(QtCore.QObject): App.log.error("Unsupported file type: %s" % recent["kind"]) # Last action in Recent Files menu is one that Clear the content - clear_action_proj = QtWidgets.QAction(QtGui.QIcon('share/trash32.png'), (_("Clear Recent projects")), self) + clear_action_proj = QtWidgets.QAction(QtGui.QIcon(self.resource_location + '/trash32.png'), + (_("Clear Recent projects")), self) clear_action_proj.triggered.connect(reset_recent_projects) self.ui.recent_projects.addSeparator() self.ui.recent_projects.addAction(clear_action_proj) @@ -11675,7 +11703,8 @@ class App(QtCore.QObject): App.log.error("Unsupported file type: %s" % recent["kind"]) # Last action in Recent Files menu is one that Clear the content - clear_action = QtWidgets.QAction(QtGui.QIcon('share/trash32.png'), (_("Clear Recent files")), self) + clear_action = QtWidgets.QAction(QtGui.QIcon(self.resource_location + '/trash32.png'), + (_("Clear Recent files")), self) clear_action.triggered.connect(reset_recent_files) self.ui.recent.addSeparator() self.ui.recent.addAction(clear_action) diff --git a/FlatCAMCommon.py b/FlatCAMCommon.py index ac6441dc..d86a2b8d 100644 --- a/FlatCAMCommon.py +++ b/FlatCAMCommon.py @@ -290,7 +290,7 @@ class BookmarkManager(QtWidgets.QWidget): if len(self.bm_dict) < bm_limit: act = QtWidgets.QAction(parent=self.app.ui.menuhelp_bookmarks) act.setText(title) - act.setIcon(QtGui.QIcon('share/link16.png')) + act.setIcon(QtGui.QIcon(self.app.resource_location + '/link16.png')) act.triggered.connect(lambda: webbrowser.open(link)) self.app.ui.menuhelp_bookmarks.insertAction(self.app.ui.menuhelp_bookmarks_manager, act) @@ -749,11 +749,11 @@ class ToolsDB(QtWidgets.QWidget): self.table_widget.setupContextMenu() self.table_widget.addContextMenu( - _("Add to DB"), self.on_tool_add, icon=QtGui.QIcon("share/plus16.png")) + _("Add to DB"), self.on_tool_add, icon=QtGui.QIcon(self.app.resource_location + "/plus16.png")) self.table_widget.addContextMenu( - _("Copy from DB"), self.on_tool_copy, icon=QtGui.QIcon("share/copy16.png")) + _("Copy from DB"), self.on_tool_copy, icon=QtGui.QIcon(self.app.resource_location + "/copy16.png")) self.table_widget.addContextMenu( - _("Delete from DB"), self.on_tool_delete, icon=QtGui.QIcon("share/delete32.png")) + _("Delete from DB"), self.on_tool_delete, icon=QtGui.QIcon(self.app.resource_location + "/delete32.png")) def build_db_ui(self): self.ui_disconnect() diff --git a/FlatCAMObj.py b/FlatCAMObj.py index 5098fb1f..53e7887b 100644 --- a/FlatCAMObj.py +++ b/FlatCAMObj.py @@ -3893,11 +3893,14 @@ class FlatCAMGeometry(FlatCAMObj, Geometry): self.ui.geo_tools_table.setupContextMenu() self.ui.geo_tools_table.addContextMenu( - _("Add from Tool DB"), self.on_tool_add_from_db_clicked, icon=QtGui.QIcon("share/plus16.png")) + _("Add from Tool DB"), self.on_tool_add_from_db_clicked, + icon=QtGui.QIcon(self.app.resource_location + "/plus16.png")) self.ui.geo_tools_table.addContextMenu( - _("Copy"), self.on_tool_copy, icon=QtGui.QIcon("share/copy16.png")) + _("Copy"), self.on_tool_copy, + icon=QtGui.QIcon(self.app.resource_location + "/copy16.png")) self.ui.geo_tools_table.addContextMenu( - _("Delete"), lambda: self.on_tool_delete(all=None), icon=QtGui.QIcon("share/delete32.png")) + _("Delete"), lambda: self.on_tool_delete(all=None), + icon=QtGui.QIcon(self.app.resource_location + "/delete32.png")) # Show/Hide Advanced Options if self.app.defaults["global_app_level"] == 'b': diff --git a/FlatCAMTranslation.py b/FlatCAMTranslation.py index 2529804e..7db184d9 100644 --- a/FlatCAMTranslation.py +++ b/FlatCAMTranslation.py @@ -80,6 +80,17 @@ def on_language_apply_click(app, restart=False): """ name = app.ui.general_defaults_form.general_app_group.language_cb.currentText() + theme_settings = QSettings("Open Source", "FlatCAM") + if theme_settings.contains("theme"): + theme = theme_settings.value('theme', type=str) + else: + theme = 'white' + + if theme == 'white': + resource_loc = 'share' + else: + resource_loc = 'share' + # do nothing if trying to apply the language that is the current language (already applied). settings = QSettings("Open Source", "FlatCAM") if settings.contains("language"): @@ -93,7 +104,7 @@ def on_language_apply_click(app, restart=False): msgbox.setInformativeText('%s %s?' % (_("Are you sure do you want to change the current language to"), name.capitalize())) msgbox.setWindowTitle(_("Apply Language ...")) - msgbox.setWindowIcon(QtGui.QIcon('share/language32.png')) + msgbox.setWindowIcon(QtGui.QIcon(resource_loc + '/language32.png')) bt_yes = msgbox.addButton(_("Yes"), QtWidgets.QMessageBox.YesRole) bt_no = msgbox.addButton(_("No"), QtWidgets.QMessageBox.NoRole) @@ -161,13 +172,24 @@ def restart_program(app, ask=None): saving data) must be done before calling this function. """ + theme_settings = QSettings("Open Source", "FlatCAM") + if theme_settings.contains("theme"): + theme = theme_settings.value('theme', type=str) + else: + theme = 'white' + + if theme == 'white': + resource_loc = 'share' + else: + resource_loc = 'share' + if app.should_we_save and app.collection.get_list() or ask is True: msgbox = QtWidgets.QMessageBox() msgbox.setText(_("There are files/objects modified in FlatCAM. " "\n" "Do you want to Save the project?")) msgbox.setWindowTitle(_("Save changes")) - msgbox.setWindowIcon(QtGui.QIcon('share/save_as.png')) + msgbox.setWindowIcon(QtGui.QIcon(resource_loc + '/save_as.png')) bt_yes = msgbox.addButton(_('Yes'), QtWidgets.QMessageBox.YesRole) bt_no = msgbox.addButton(_('No'), QtWidgets.QMessageBox.NoRole) diff --git a/ObjectCollection.py b/ObjectCollection.py index 8982e15b..da4d2700 100644 --- a/ObjectCollection.py +++ b/ObjectCollection.py @@ -234,7 +234,8 @@ class ObjectCollection(QtCore.QAbstractItemModel): # ## Icons for the list view self.icons = {} for kind in ObjectCollection.icon_files: - self.icons[kind] = QtGui.QPixmap(ObjectCollection.icon_files[kind]) + self.icons[kind] = QtGui.QPixmap( + ObjectCollection.icon_files[kind].replace('share', self.app.resource_location)) # Create root tree view item self.root_item = TreeItem(["root"]) diff --git a/README.md b/README.md index 27585cc2..cd111ac7 100644 --- a/README.md +++ b/README.md @@ -13,6 +13,9 @@ CAD program, and create G-Code for Isolation routing. - fixed a bug that created a crash in special conditions; it's related to the QSettings in FlatCAMGui.py - added a script to remove the bad profiles from resource pictures. From here: https://stackoverflow.com/questions/22745076/libpng-warning-iccp-known-incorrect-srgb-profile/43415650, link mentioned by @camellan (Andrey Kultyapov) +- prepared the application for usage of dark icons in case of using the dark theme +- updated the languages +- RELEASE 8.99 14.12.2019 diff --git a/flatcamEditors/FlatCAMExcEditor.py b/flatcamEditors/FlatCAMExcEditor.py index 4cd654e0..e62275a7 100644 --- a/flatcamEditors/FlatCAMExcEditor.py +++ b/flatcamEditors/FlatCAMExcEditor.py @@ -65,7 +65,7 @@ class FCDrillAdd(FCShapeTool): QtGui.QGuiApplication.restoreOverrideCursor() except Exception: pass - self.cursor = QtGui.QCursor(QtGui.QPixmap('share/aero_drill.png')) + self.cursor = QtGui.QCursor(QtGui.QPixmap(self.draw_app.app.resource_location + '/aero_drill.png')) QtGui.QGuiApplication.setOverrideCursor(self.cursor) geo = self.utility_geometry(data=(self.draw_app.snap_x, self.draw_app.snap_y)) @@ -171,7 +171,7 @@ class FCDrillArray(FCShapeTool): except Exception as e: pass - self.cursor = QtGui.QCursor(QtGui.QPixmap('share/aero_drill_array.png')) + self.cursor = QtGui.QCursor(QtGui.QPixmap(self.draw_app.app.resource_location + '/aero_drill_array.png')) QtGui.QGuiApplication.setOverrideCursor(self.cursor) geo = self.utility_geometry(data=(self.draw_app.snap_x, self.draw_app.snap_y), static=True) @@ -376,7 +376,7 @@ class FCSlot(FCShapeTool): QtGui.QGuiApplication.restoreOverrideCursor() except Exception as e: pass - self.cursor = QtGui.QCursor(QtGui.QPixmap('share/aero_slot.png')) + self.cursor = QtGui.QCursor(QtGui.QPixmap(self.draw_app.app.resource_location + '/aero_slot.png')) QtGui.QGuiApplication.setOverrideCursor(self.cursor) self.steps_per_circ = self.draw_app.app.defaults["geometry_circle_steps"] @@ -566,7 +566,7 @@ class FCSlotArray(FCShapeTool): QtGui.QGuiApplication.restoreOverrideCursor() except Exception as e: pass - self.cursor = QtGui.QCursor(QtGui.QPixmap('share/aero_array.png')) + self.cursor = QtGui.QCursor(QtGui.QPixmap(self.draw_app.app.resource_location + '/aero_array.png')) QtGui.QGuiApplication.setOverrideCursor(self.cursor) self.steps_per_circ = self.draw_app.app.defaults["geometry_circle_steps"] @@ -1471,7 +1471,7 @@ class FlatCAMExcEditor(QtCore.QObject): self.tools_box.addLayout(self.title_box) # ## Page Title icon - pixmap = QtGui.QPixmap('share/flatcam_icon32.png') + pixmap = QtGui.QPixmap(self.app.resource_location + '/flatcam_icon32.png') self.icon = QtWidgets.QLabel() self.icon.setPixmap(pixmap) self.title_box.addWidget(self.icon, stretch=0) diff --git a/flatcamEditors/FlatCAMGeoEditor.py b/flatcamEditors/FlatCAMGeoEditor.py index ac7df5e6..80834ae4 100644 --- a/flatcamEditors/FlatCAMGeoEditor.py +++ b/flatcamEditors/FlatCAMGeoEditor.py @@ -304,12 +304,12 @@ class TextInputTool(FlatCAMTool): self.font_bold_tb = QtWidgets.QToolButton() self.font_bold_tb.setCheckable(True) - self.font_bold_tb.setIcon(QtGui.QIcon('share/bold32.png')) + self.font_bold_tb.setIcon(QtGui.QIcon(self.app.resource_location + '/bold32.png')) hlay.addWidget(self.font_bold_tb) self.font_italic_tb = QtWidgets.QToolButton() self.font_italic_tb.setCheckable(True) - self.font_italic_tb.setIcon(QtGui.QIcon('share/italic32.png')) + self.font_italic_tb.setIcon(QtGui.QIcon(self.app.resource_location + '/italic32.png')) hlay.addWidget(self.font_italic_tb) self.form_layout.addRow(QtWidgets.QLabel('%s:' % "Size"), hlay) @@ -1495,7 +1495,7 @@ class TransformEditorTool(FlatCAMTool): text='%s:' % _('Enter an Angle Value (degrees)'), min=-359.9999, max=360.0000, decimals=self.decimals, init_val=float(self.app.defaults['tools_transform_rotate'])) - val_box.setWindowIcon(QtGui.QIcon('share/rotate.png')) + val_box.setWindowIcon(QtGui.QIcon(self.app.resource_location + '/rotate.png')) val, ok = val_box.get_value() if ok: @@ -1514,7 +1514,7 @@ class TransformEditorTool(FlatCAMTool): text='%s: (%s)' % (_('Enter a distance Value'), str(units)), min=-9999.9999, max=10000.0000, decimals=self.decimals, init_val=float(self.app.defaults['tools_transform_offset_x'])) - val_box.setWindowIcon(QtGui.QIcon('share/offsetx32.png')) + val_box.setWindowIcon(QtGui.QIcon(self.app.resource_location + '/offsetx32.png')) val, ok = val_box.get_value() if ok: @@ -1533,7 +1533,7 @@ class TransformEditorTool(FlatCAMTool): text='%s: (%s)' % (_('Enter a distance Value'), str(units)), min=-9999.9999, max=10000.0000, decimals=self.decimals, init_val=float(self.app.defaults['tools_transform_offset_y'])) - val_box.setWindowIcon(QtGui.QIcon('share/offsety32.png')) + val_box.setWindowIcon(QtGui.QIcon(self.app.resource_location + '/offsety32.png')) val, ok = val_box.get_value() if ok: @@ -1550,7 +1550,7 @@ class TransformEditorTool(FlatCAMTool): text='%s:' % _('Enter an Angle Value (degrees)'), min=-359.9999, max=360.0000, decimals=self.decimals, init_val=float(self.app.defaults['tools_transform_skew_x'])) - val_box.setWindowIcon(QtGui.QIcon('share/skewX.png')) + val_box.setWindowIcon(QtGui.QIcon(self.app.resource_location + '/skewX.png')) val, ok = val_box.get_value() if ok: @@ -1567,7 +1567,7 @@ class TransformEditorTool(FlatCAMTool): text='%s:' % _('Enter an Angle Value (degrees)'), min=-359.9999, max=360.0000, decimals=self.decimals, init_val=float(self.app.defaults['tools_transform_skew_y'])) - val_box.setWindowIcon(QtGui.QIcon('share/skewY.png')) + val_box.setWindowIcon(QtGui.QIcon(self.app.resource_location + '/skewY.png')) val, ok = val_box.get_value() if ok: @@ -1938,7 +1938,7 @@ class FCCircle(FCShapeTool): QtGui.QGuiApplication.restoreOverrideCursor() except Exception: pass - self.cursor = QtGui.QCursor(QtGui.QPixmap('share/aero_circle_geo.png')) + self.cursor = QtGui.QCursor(QtGui.QPixmap(self.app.resource_location + '/aero_circle_geo.png')) QtGui.QGuiApplication.setOverrideCursor(self.cursor) self.draw_app.app.inform.emit(_("Click on Center point ...")) @@ -1990,7 +1990,7 @@ class FCArc(FCShapeTool): QtGui.QGuiApplication.restoreOverrideCursor() except Exception: pass - self.cursor = QtGui.QCursor(QtGui.QPixmap('share/aero_arc.png')) + self.cursor = QtGui.QCursor(QtGui.QPixmap(self.app.resource_location + '/aero_arc.png')) QtGui.QGuiApplication.setOverrideCursor(self.cursor) self.draw_app.app.inform.emit(_("Click on Center point ...")) @@ -2209,7 +2209,7 @@ class FCRectangle(FCShapeTool): QtGui.QGuiApplication.restoreOverrideCursor() except Exception: pass - self.cursor = QtGui.QCursor(QtGui.QPixmap('share/aero.png')) + self.cursor = QtGui.QCursor(QtGui.QPixmap(self.app.resource_location + '/aero.png')) QtGui.QGuiApplication.setOverrideCursor(self.cursor) self.draw_app.app.inform.emit(_("Click on 1st corner ...")) @@ -2263,7 +2263,7 @@ class FCPolygon(FCShapeTool): QtGui.QGuiApplication.restoreOverrideCursor() except Exception: pass - self.cursor = QtGui.QCursor(QtGui.QPixmap('share/aero.png')) + self.cursor = QtGui.QCursor(QtGui.QPixmap(self.app.resource_location + '/aero.png')) QtGui.QGuiApplication.setOverrideCursor(self.cursor) self.draw_app.app.inform.emit(_("Click on 1st corner ...")) @@ -2326,7 +2326,7 @@ class FCPath(FCPolygon): QtGui.QGuiApplication.restoreOverrideCursor() except Exception: pass - self.cursor = QtGui.QCursor(QtGui.QPixmap('share/aero_path5.png')) + self.cursor = QtGui.QCursor(QtGui.QPixmap(self.app.resource_location + '/aero_path5.png')) QtGui.QGuiApplication.setOverrideCursor(self.cursor) def make(self): @@ -2686,7 +2686,7 @@ class FCText(FCShapeTool): QtGui.QGuiApplication.restoreOverrideCursor() except Exception: pass - self.cursor = QtGui.QCursor(QtGui.QPixmap('share/aero_text.png')) + self.cursor = QtGui.QCursor(QtGui.QPixmap(self.app.resource_location + '/aero_text.png')) QtGui.QGuiApplication.setOverrideCursor(self.cursor) # self.shape_buffer = self.draw_app.shape_buffer diff --git a/flatcamEditors/FlatCAMGrbEditor.py b/flatcamEditors/FlatCAMGrbEditor.py index 8c523ac2..0cfcae18 100644 --- a/flatcamEditors/FlatCAMGrbEditor.py +++ b/flatcamEditors/FlatCAMGrbEditor.py @@ -199,7 +199,7 @@ class FCPad(FCShapeTool): QtGui.QGuiApplication.restoreOverrideCursor() except Exception as e: pass - self.cursor = QtGui.QCursor(QtGui.QPixmap('share/aero_circle.png')) + self.cursor = QtGui.QCursor(QtGui.QPixmap(self.app.resource_location + '/aero_circle.png')) QtGui.QGuiApplication.setOverrideCursor(self.cursor) try: @@ -417,7 +417,7 @@ class FCPadArray(FCShapeTool): QtGui.QGuiApplication.restoreOverrideCursor() except Exception as e: pass - self.cursor = QtGui.QCursor(QtGui.QPixmap('share/aero_array.png')) + self.cursor = QtGui.QCursor(QtGui.QPixmap(self.app.resource_location + '/aero_array.png')) QtGui.QGuiApplication.setOverrideCursor(self.cursor) self.storage_obj = self.draw_app.storage_dict[self.draw_app.last_aperture_selected]['geometry'] @@ -874,7 +874,7 @@ class FCRegion(FCShapeTool): except Exception as e: log.debug("FlatCAMGrbEditor.FCRegion --> %s" % str(e)) - self.cursor = QtGui.QCursor(QtGui.QPixmap('share/aero.png')) + self.cursor = QtGui.QCursor(QtGui.QPixmap(self.app.resource_location + '/aero.png')) QtGui.QGuiApplication.setOverrideCursor(self.cursor) self.draw_app.app.inform.emit(_('Corner Mode 1: 45 degrees ...')) @@ -1148,7 +1148,7 @@ class FCTrack(FCRegion): except Exception as e: log.debug("FlatCAMGrbEditor.FCTrack.__init__() --> %s" % str(e)) - self.cursor = QtGui.QCursor(QtGui.QPixmap('share/aero_path%s.png' % self.draw_app.bend_mode)) + self.cursor = QtGui.QCursor(QtGui.QPixmap(self.app.resource_location + '/aero_path%s.png' % self.draw_app.bend_mode)) QtGui.QGuiApplication.setOverrideCursor(self.cursor) self.draw_app.app.inform.emit(_('Track Mode 1: 45 degrees ...')) @@ -1295,27 +1295,27 @@ class FCTrack(FCRegion): if self.draw_app.bend_mode == 1: self.draw_app.bend_mode = 2 - self.cursor = QtGui.QCursor(QtGui.QPixmap('share/aero_path2.png')) + self.cursor = QtGui.QCursor(QtGui.QPixmap(self.draw_app.app.resource_location + '/aero_path2.png')) QtGui.QGuiApplication.setOverrideCursor(self.cursor) msg = _('Track Mode 2: Reverse 45 degrees ...') elif self.draw_app.bend_mode == 2: self.draw_app.bend_mode = 3 - self.cursor = QtGui.QCursor(QtGui.QPixmap('share/aero_path3.png')) + self.cursor = QtGui.QCursor(QtGui.QPixmap(self.draw_app.app.resource_location + '/aero_path3.png')) QtGui.QGuiApplication.setOverrideCursor(self.cursor) msg = _('Track Mode 3: 90 degrees ...') elif self.draw_app.bend_mode == 3: self.draw_app.bend_mode = 4 - self.cursor = QtGui.QCursor(QtGui.QPixmap('share/aero_path4.png')) + self.cursor = QtGui.QCursor(QtGui.QPixmap(self.draw_app.app.resource_location + '/aero_path4.png')) QtGui.QGuiApplication.setOverrideCursor(self.cursor) msg = _('Track Mode 4: Reverse 90 degrees ...') elif self.draw_app.bend_mode == 4: self.draw_app.bend_mode = 5 - self.cursor = QtGui.QCursor(QtGui.QPixmap('share/aero_path5.png')) + self.cursor = QtGui.QCursor(QtGui.QPixmap(self.draw_app.app.resource_location + '/aero_path5.png')) QtGui.QGuiApplication.setOverrideCursor(self.cursor) msg = _('Track Mode 5: Free angle ...') else: self.draw_app.bend_mode = 1 - self.cursor = QtGui.QCursor(QtGui.QPixmap('share/aero_path1.png')) + self.cursor = QtGui.QCursor(QtGui.QPixmap(self.draw_app.app.resource_location + '/aero_path1.png')) QtGui.QGuiApplication.setOverrideCursor(self.cursor) msg = _('Track Mode 1: 45 degrees ...') @@ -1334,27 +1334,27 @@ class FCTrack(FCRegion): if self.draw_app.bend_mode == 1: self.draw_app.bend_mode = 5 - self.cursor = QtGui.QCursor(QtGui.QPixmap('share/aero_path5.png')) + self.cursor = QtGui.QCursor(QtGui.QPixmap(self.draw_app.app.resource_location + '/aero_path5.png')) QtGui.QGuiApplication.setOverrideCursor(self.cursor) msg = _('Track Mode 5: Free angle ...') elif self.draw_app.bend_mode == 5: self.draw_app.bend_mode = 4 - self.cursor = QtGui.QCursor(QtGui.QPixmap('share/aero_path4.png')) + self.cursor = QtGui.QCursor(QtGui.QPixmap(self.draw_app.app.resource_location + '/aero_path4.png')) QtGui.QGuiApplication.setOverrideCursor(self.cursor) msg = _('Track Mode 4: Reverse 90 degrees ...') elif self.draw_app.bend_mode == 4: self.draw_app.bend_mode = 3 - self.cursor = QtGui.QCursor(QtGui.QPixmap('share/aero_path3.png')) + self.cursor = QtGui.QCursor(QtGui.QPixmap(self.draw_app.app.resource_location + '/aero_path3.png')) QtGui.QGuiApplication.setOverrideCursor(self.cursor) msg = _('Track Mode 3: 90 degrees ...') elif self.draw_app.bend_mode == 3: self.draw_app.bend_mode = 2 - self.cursor = QtGui.QCursor(QtGui.QPixmap('share/aero_path2.png')) + self.cursor = QtGui.QCursor(QtGui.QPixmap(self.draw_app.app.resource_location + '/aero_path2.png')) QtGui.QGuiApplication.setOverrideCursor(self.cursor) msg = _('Track Mode 2: Reverse 45 degrees ...') else: self.draw_app.bend_mode = 1 - self.cursor = QtGui.QCursor(QtGui.QPixmap('share/aero_path1.png')) + self.cursor = QtGui.QCursor(QtGui.QPixmap(self.draw_app.app.resource_location + '/aero_path1.png')) QtGui.QGuiApplication.setOverrideCursor(self.cursor) msg = _('Track Mode 1: 45 degrees ...') @@ -1379,7 +1379,7 @@ class FCDisc(FCShapeTool): QtGui.QGuiApplication.restoreOverrideCursor() except Exception as e: pass - self.cursor = QtGui.QCursor(QtGui.QPixmap('share/aero_disc.png')) + self.cursor = QtGui.QCursor(QtGui.QPixmap(self.draw_app.app.resource_location + '/aero_disc.png')) QtGui.QGuiApplication.setOverrideCursor(self.cursor) size_ap = float(self.draw_app.storage_dict[self.draw_app.last_aperture_selected]['size']) @@ -1461,7 +1461,7 @@ class FCSemiDisc(FCShapeTool): except Exception as e: log.debug("FlatCAMGrbEditor.FCSemiDisc --> %s" % str(e)) - self.cursor = QtGui.QCursor(QtGui.QPixmap('share/aero_semidisc.png')) + self.cursor = QtGui.QCursor(QtGui.QPixmap(self.draw_app.app.resource_location + '/aero_semidisc.png')) QtGui.QGuiApplication.setOverrideCursor(self.cursor) self.draw_app.app.inform.emit(_("Click on Center point ...")) @@ -2367,7 +2367,7 @@ class FlatCAMGrbEditor(QtCore.QObject): layout.addLayout(self.title_box) # Page Title icon - pixmap = QtGui.QPixmap('share/flatcam_icon32.png') + pixmap = QtGui.QPixmap(self.app.resource_location + '/flatcam_icon32.png') self.icon = QtWidgets.QLabel() self.icon.setPixmap(pixmap) self.title_box.addWidget(self.icon, stretch=0) @@ -5949,7 +5949,7 @@ class TransformEditorTool(FlatCAMTool): text='%s:' % _('Enter an Angle Value (degrees)'), min=-359.9999, max=360.0000, decimals=self.decimals, init_val=float(self.app.defaults['tools_transform_rotate'])) - val_box.setWindowIcon(QtGui.QIcon('share/rotate.png')) + val_box.setWindowIcon(QtGui.QIcon(self.app.resource_location + '/rotate.png')) val, ok = val_box.get_value() if ok: @@ -5966,7 +5966,7 @@ class TransformEditorTool(FlatCAMTool): text='%s: (%s)' % (_('Enter a distance Value'), str(units)), min=-9999.9999, max=10000.0000, decimals=self.decimals, init_val=float(self.app.defaults['tools_transform_offset_x'])) - val_box.setWindowIcon(QtGui.QIcon('share/offsetx32.png')) + val_box.setWindowIcon(QtGui.QIcon(self.app.resource_location + '/offsetx32.png')) val, ok = val_box.get_value() if ok: @@ -5983,7 +5983,7 @@ class TransformEditorTool(FlatCAMTool): text='%s: (%s)' % (_('Enter a distance Value'), str(units)), min=-9999.9999, max=10000.0000, decimals=self.decimals, init_val=float(self.app.defaults['tools_transform_offset_y'])) - val_box.setWindowIcon(QtGui.QIcon('share/offsety32.png')) + val_box.setWindowIcon(QtGui.QIcon(self.app.resource_location + '/offsety32.png')) val, ok = val_box.get_value() if ok: @@ -5998,7 +5998,7 @@ class TransformEditorTool(FlatCAMTool): text='%s:' % _('Enter an Angle Value (degrees)'), min=-359.9999, max=360.0000, decimals=self.decimals, init_val=float(self.app.defaults['tools_transform_skew_x'])) - val_box.setWindowIcon(QtGui.QIcon('share/skewX.png')) + val_box.setWindowIcon(QtGui.QIcon(self.app.resource_location + '/skewX.png')) val, ok = val_box.get_value() if ok: @@ -6013,7 +6013,7 @@ class TransformEditorTool(FlatCAMTool): text='%s:' % _('Enter an Angle Value (degrees)'), min=-359.9999, max=360.0000, decimals=self.decimals, init_val=float(self.app.defaults['tools_transform_skew_y'])) - val_box.setWindowIcon(QtGui.QIcon('share/skewY.png')) + val_box.setWindowIcon(QtGui.QIcon(self.app.resource_location + '/skewY.png')) val, ok = val_box.get_value() if ok: diff --git a/flatcamGUI/FlatCAMGUI.py b/flatcamGUI/FlatCAMGUI.py index 33a88f07..9d451575 100644 --- a/flatcamGUI/FlatCAMGUI.py +++ b/flatcamGUI/FlatCAMGUI.py @@ -49,7 +49,7 @@ class FlatCAMGUI(QtWidgets.QMainWindow): # ######### ## self.menu = self.menuBar() - self.menu_toggle_nb = QtWidgets.QAction(QtGui.QIcon('share/notebook32.png'), _("Toggle Panel")) + self.menu_toggle_nb = QtWidgets.QAction(QtGui.QIcon(self.app.resource_location + '/notebook32.png'), _("Toggle Panel")) self.menu_toggle_nb.setToolTip( _("Toggle Panel") ) @@ -65,7 +65,7 @@ class FlatCAMGUI(QtWidgets.QMainWindow): self.menufile.setToolTipsVisible(True) # New Project - self.menufilenewproject = QtWidgets.QAction(QtGui.QIcon('share/file16.png'), + self.menufilenewproject = QtWidgets.QAction(QtGui.QIcon(self.app.resource_location + '/file16.png'), _('&New Project ...\tCTRL+N'), self) self.menufilenewproject.setToolTip( _("Will create a new, blank project") @@ -73,70 +73,71 @@ class FlatCAMGUI(QtWidgets.QMainWindow): self.menufile.addAction(self.menufilenewproject) # New Category (Excellon, Geometry) - self.menufilenew = self.menufile.addMenu(QtGui.QIcon('share/file16.png'), _('&New')) + self.menufilenew = self.menufile.addMenu(QtGui.QIcon(self.app.resource_location + '/file16.png'), _('&New')) self.menufilenew.setToolTipsVisible(True) - self.menufilenewgeo = self.menufilenew.addAction(QtGui.QIcon('share/new_file_geo16.png'), _('Geometry\tN')) + self.menufilenewgeo = self.menufilenew.addAction( + QtGui.QIcon(self.app.resource_location + '/new_file_geo16.png'), _('Geometry\tN')) self.menufilenewgeo.setToolTip( _("Will create a new, empty Geometry Object.") ) - self.menufilenewgrb = self.menufilenew.addAction(QtGui.QIcon('share/new_file_grb16.png'), _('Gerber\tB')) + self.menufilenewgrb = self.menufilenew.addAction(QtGui.QIcon(self.app.resource_location + '/new_file_grb16.png'), _('Gerber\tB')) self.menufilenewgrb.setToolTip( _("Will create a new, empty Gerber Object.") ) - self.menufilenewexc = self.menufilenew.addAction(QtGui.QIcon('share/new_file_exc16.png'), _('Excellon\tL')) + self.menufilenewexc = self.menufilenew.addAction(QtGui.QIcon(self.app.resource_location + '/new_file_exc16.png'), _('Excellon\tL')) self.menufilenewexc.setToolTip( _("Will create a new, empty Excellon Object.") ) self.menufilenew.addSeparator() - self.menufilenewdoc = self.menufilenew.addAction(QtGui.QIcon('share/notes16_1.png'), _('Document\tD')) + self.menufilenewdoc = self.menufilenew.addAction(QtGui.QIcon(self.app.resource_location + '/notes16_1.png'), _('Document\tD')) self.menufilenewdoc.setToolTip( _("Will create a new, empty Document Object.") ) - self.menufile_open = self.menufile.addMenu(QtGui.QIcon('share/folder32_bis.png'), _('Open')) + self.menufile_open = self.menufile.addMenu(QtGui.QIcon(self.app.resource_location + '/folder32_bis.png'), _('Open')) self.menufile_open.setToolTipsVisible(True) # Open Project ... - self.menufileopenproject = QtWidgets.QAction(QtGui.QIcon('share/folder16.png'), _('Open &Project ...'), self) + self.menufileopenproject = QtWidgets.QAction(QtGui.QIcon(self.app.resource_location + '/folder16.png'), _('Open &Project ...'), self) self.menufile_open.addAction(self.menufileopenproject) self.menufile_open.addSeparator() # Open Gerber ... - self.menufileopengerber = QtWidgets.QAction(QtGui.QIcon('share/flatcam_icon24.png'), + self.menufileopengerber = QtWidgets.QAction(QtGui.QIcon(self.app.resource_location + '/flatcam_icon24.png'), _('Open &Gerber ...\tCTRL+G'), self) self.menufile_open.addAction(self.menufileopengerber) # Open Excellon ... - self.menufileopenexcellon = QtWidgets.QAction(QtGui.QIcon('share/open_excellon32.png'), + self.menufileopenexcellon = QtWidgets.QAction(QtGui.QIcon(self.app.resource_location + '/open_excellon32.png'), _('Open &Excellon ...\tCTRL+E'), self) self.menufile_open.addAction(self.menufileopenexcellon) # Open G-Code ... - self.menufileopengcode = QtWidgets.QAction(QtGui.QIcon('share/code.png'), _('Open G-&Code ...'), self) + self.menufileopengcode = QtWidgets.QAction(QtGui.QIcon(self.app.resource_location + '/code.png'), _('Open G-&Code ...'), self) self.menufile_open.addAction(self.menufileopengcode) self.menufile_open.addSeparator() # Open Config File... - self.menufileopenconfig = QtWidgets.QAction(QtGui.QIcon('share/folder16.png'), _('Open Config ...'), self) + self.menufileopenconfig = QtWidgets.QAction(QtGui.QIcon(self.app.resource_location + '/folder16.png'), _('Open Config ...'), self) self.menufile_open.addAction(self.menufileopenconfig) # Recent - self.recent_projects = self.menufile.addMenu(QtGui.QIcon('share/recent_files.png'), _("Recent projects")) - self.recent = self.menufile.addMenu(QtGui.QIcon('share/recent_files.png'), _("Recent files")) + self.recent_projects = self.menufile.addMenu(QtGui.QIcon(self.app.resource_location + '/recent_files.png'), _("Recent projects")) + self.recent = self.menufile.addMenu(QtGui.QIcon(self.app.resource_location + '/recent_files.png'), _("Recent files")) # Separator self.menufile.addSeparator() # Scripting - self.menufile_scripting = self.menufile.addMenu(QtGui.QIcon('share/script16.png'), _('Scripting')) + self.menufile_scripting = self.menufile.addMenu(QtGui.QIcon(self.app.resource_location + '/script16.png'), _('Scripting')) self.menufile_scripting.setToolTipsVisible(True) - self.menufilenewscript = QtWidgets.QAction(QtGui.QIcon('share/script_new16.png'), _('New Script ...'), self) - self.menufileopenscript = QtWidgets.QAction(QtGui.QIcon('share/open_script32.png'), _('Open Script ...'), self) - self.menufilerunscript = QtWidgets.QAction(QtGui.QIcon('share/script16.png'), + self.menufilenewscript = QtWidgets.QAction(QtGui.QIcon(self.app.resource_location + '/script_new16.png'), _('New Script ...'), self) + self.menufileopenscript = QtWidgets.QAction(QtGui.QIcon(self.app.resource_location + '/open_script32.png'), _('Open Script ...'), self) + self.menufilerunscript = QtWidgets.QAction(QtGui.QIcon(self.app.resource_location + '/script16.png'), '%s\tSHIFT+S' % _('Run Script ...'), self) self.menufilerunscript.setToolTip( _("Will run the opened Tcl Script thus\n" @@ -152,40 +153,40 @@ class FlatCAMGUI(QtWidgets.QMainWindow): self.menufile.addSeparator() # Import ... - self.menufileimport = self.menufile.addMenu(QtGui.QIcon('share/import.png'), _('Import')) - self.menufileimportsvg = QtWidgets.QAction(QtGui.QIcon('share/svg16.png'), + self.menufileimport = self.menufile.addMenu(QtGui.QIcon(self.app.resource_location + '/import.png'), _('Import')) + self.menufileimportsvg = QtWidgets.QAction(QtGui.QIcon(self.app.resource_location + '/svg16.png'), _('&SVG as Geometry Object ...'), self) self.menufileimport.addAction(self.menufileimportsvg) - self.menufileimportsvg_as_gerber = QtWidgets.QAction(QtGui.QIcon('share/svg16.png'), + self.menufileimportsvg_as_gerber = QtWidgets.QAction(QtGui.QIcon(self.app.resource_location + '/svg16.png'), _('&SVG as Gerber Object ...'), self) self.menufileimport.addAction(self.menufileimportsvg_as_gerber) self.menufileimport.addSeparator() - self.menufileimportdxf = QtWidgets.QAction(QtGui.QIcon('share/dxf16.png'), + self.menufileimportdxf = QtWidgets.QAction(QtGui.QIcon(self.app.resource_location + '/dxf16.png'), _('&DXF as Geometry Object ...'), self) self.menufileimport.addAction(self.menufileimportdxf) - self.menufileimportdxf_as_gerber = QtWidgets.QAction(QtGui.QIcon('share/dxf16.png'), + self.menufileimportdxf_as_gerber = QtWidgets.QAction(QtGui.QIcon(self.app.resource_location + '/dxf16.png'), _('&DXF as Gerber Object ...'), self) self.menufileimport.addAction(self.menufileimportdxf_as_gerber) self.menufileimport.addSeparator() - self.menufileimport_hpgl2_as_geo = QtWidgets.QAction(QtGui.QIcon('share/dxf16.png'), + self.menufileimport_hpgl2_as_geo = QtWidgets.QAction(QtGui.QIcon(self.app.resource_location + '/dxf16.png'), _('HPGL2 as Geometry Object ...'), self) self.menufileimport.addAction(self.menufileimport_hpgl2_as_geo) self.menufileimport.addSeparator() # Export ... - self.menufileexport = self.menufile.addMenu(QtGui.QIcon('share/export.png'), _('Export')) + self.menufileexport = self.menufile.addMenu(QtGui.QIcon(self.app.resource_location + '/export.png'), _('Export')) self.menufileexport.setToolTipsVisible(True) - self.menufileexportsvg = QtWidgets.QAction(QtGui.QIcon('share/export.png'), _('Export &SVG ...'), self) + self.menufileexportsvg = QtWidgets.QAction(QtGui.QIcon(self.app.resource_location + '/export.png'), _('Export &SVG ...'), self) self.menufileexport.addAction(self.menufileexportsvg) - self.menufileexportdxf = QtWidgets.QAction(QtGui.QIcon('share/export.png'), _('Export DXF ...'), self) + self.menufileexportdxf = QtWidgets.QAction(QtGui.QIcon(self.app.resource_location + '/export.png'), _('Export DXF ...'), self) self.menufileexport.addAction(self.menufileexportdxf) self.menufileexport.addSeparator() - self.menufileexportpng = QtWidgets.QAction(QtGui.QIcon('share/export_png32.png'), _('Export &PNG ...'), self) + self.menufileexportpng = QtWidgets.QAction(QtGui.QIcon(self.app.resource_location + '/export_png32.png'), _('Export &PNG ...'), self) self.menufileexportpng.setToolTip( _("Will export an image in PNG format,\n" "the saved image will contain the visual \n" @@ -195,7 +196,7 @@ class FlatCAMGUI(QtWidgets.QMainWindow): self.menufileexport.addSeparator() - self.menufileexportexcellon = QtWidgets.QAction(QtGui.QIcon('share/drill32.png'), + self.menufileexportexcellon = QtWidgets.QAction(QtGui.QIcon(self.app.resource_location + '/drill32.png'), _('Export &Excellon ...'), self) self.menufileexportexcellon.setToolTip( _("Will export an Excellon Object as Excellon file,\n" @@ -204,7 +205,7 @@ class FlatCAMGUI(QtWidgets.QMainWindow): ) self.menufileexport.addAction(self.menufileexportexcellon) - self.menufileexportgerber = QtWidgets.QAction(QtGui.QIcon('share/flatcam_icon32.png'), + self.menufileexportgerber = QtWidgets.QAction(QtGui.QIcon(self.app.resource_location + '/flatcam_icon32.png'), _('Export &Gerber ...'), self) self.menufileexportgerber.setToolTip( _("Will export an Gerber Object as Gerber file,\n" @@ -217,47 +218,50 @@ class FlatCAMGUI(QtWidgets.QMainWindow): self.menufile.addSeparator() # Save Defaults - self.menufilesavedefaults = QtWidgets.QAction(QtGui.QIcon('share/defaults.png'), _('Save Preferences'), self) + self.menufilesavedefaults = QtWidgets.QAction(QtGui.QIcon(self.app.resource_location + '/defaults.png'), + _('Save Preferences'), self) self.menufile.addAction(self.menufilesavedefaults) # Separator self.menufile.addSeparator() - self.menufile_backup = self.menufile.addMenu(QtGui.QIcon('share/backup24.png'), _('Backup')) + self.menufile_backup = self.menufile.addMenu(QtGui.QIcon(self.app.resource_location + '/backup24.png'), + _('Backup')) # Import Preferences - self.menufileimportpref = QtWidgets.QAction(QtGui.QIcon('share/backup_import24.png'), + self.menufileimportpref = QtWidgets.QAction(QtGui.QIcon(self.app.resource_location + '/backup_import24.png'), _('Import Preferences from file ...'), self) self.menufile_backup.addAction(self.menufileimportpref) # Export Preferences - self.menufileexportpref = QtWidgets.QAction(QtGui.QIcon('share/backup_export24.png'), + self.menufileexportpref = QtWidgets.QAction(QtGui.QIcon(self.app.resource_location + '/backup_export24.png'), _('Export Preferences to file ...'), self) self.menufile_backup.addAction(self.menufileexportpref) # Separator self.menufile.addSeparator() - self.menufile_save = self.menufile.addMenu(QtGui.QIcon('share/save_as.png'), _('Save')) + self.menufile_save = self.menufile.addMenu(QtGui.QIcon(self.app.resource_location + '/save_as.png'), _('Save')) # Save Project - self.menufilesaveproject = QtWidgets.QAction(QtGui.QIcon('share/floppy16.png'), _('&Save Project ...'), self) + self.menufilesaveproject = QtWidgets.QAction(QtGui.QIcon(self.app.resource_location + '/floppy16.png'), + _('&Save Project ...'), self) self.menufile_save.addAction(self.menufilesaveproject) # Save Project As ... - self.menufilesaveprojectas = QtWidgets.QAction(QtGui.QIcon('share/save_as.png'), + self.menufilesaveprojectas = QtWidgets.QAction(QtGui.QIcon(self.app.resource_location + '/save_as.png'), _('Save Project &As ...\tCTRL+S'), self) self.menufile_save.addAction(self.menufilesaveprojectas) # Save Project Copy ... - self.menufilesaveprojectcopy = QtWidgets.QAction(QtGui.QIcon('share/floppy16.png'), + self.menufilesaveprojectcopy = QtWidgets.QAction(QtGui.QIcon(self.app.resource_location + '/floppy16.png'), _('Save Project C&opy ...'), self) self.menufile_save.addAction(self.menufilesaveprojectcopy) self.menufile_save.addSeparator() # Save Object PDF - self.menufilesave_object_pdf = QtWidgets.QAction(QtGui.QIcon('share/pdf32.png'), + self.menufilesave_object_pdf = QtWidgets.QAction(QtGui.QIcon(self.app.resource_location + '/pdf32.png'), _('Save Object as PDF ...'), self) self.menufile_save.addAction(self.menufilesave_object_pdf) @@ -265,7 +269,8 @@ class FlatCAMGUI(QtWidgets.QMainWindow): self.menufile.addSeparator() # Quit - self.menufile_exit = QtWidgets.QAction(QtGui.QIcon('share/power16.png'), _('E&xit'), self) + self.menufile_exit = QtWidgets.QAction(QtGui.QIcon(self.app.resource_location + '/power16.png'), + _('E&xit'), self) # exitAction.setShortcut('Ctrl+Q') # exitAction.setStatusTip('Exit application') self.menufile.addAction(self.menufile_exit) @@ -276,8 +281,10 @@ class FlatCAMGUI(QtWidgets.QMainWindow): self.menuedit = self.menu.addMenu(_('Edit')) # Separator self.menuedit.addSeparator() - self.menueditedit = self.menuedit.addAction(QtGui.QIcon('share/edit16.png'), _('Edit Object\tE')) - self.menueditok = self.menuedit.addAction(QtGui.QIcon('share/edit_ok16.png'), _('Close Editor\tCTRL+S')) + self.menueditedit = self.menuedit.addAction(QtGui.QIcon(self.app.resource_location + '/edit16.png'), + _('Edit Object\tE')) + self.menueditok = self.menuedit.addAction(QtGui.QIcon(self.app.resource_location + '/edit_ok16.png'), + _('Close Editor\tCTRL+S')) # adjust the initial state of the menu entries related to the editor self.menueditedit.setDisabled(False) @@ -285,9 +292,10 @@ class FlatCAMGUI(QtWidgets.QMainWindow): # Separator self.menuedit.addSeparator() - self.menuedit_convert = self.menuedit.addMenu(QtGui.QIcon('share/convert24.png'), _('Conversion')) + self.menuedit_convert = self.menuedit.addMenu(QtGui.QIcon(self.app.resource_location + '/convert24.png'), + _('Conversion')) self.menuedit_convertjoin = self.menuedit_convert.addAction( - QtGui.QIcon('share/join16.png'), _('&Join Geo/Gerber/Exc -> Geo')) + QtGui.QIcon(self.app.resource_location + '/join16.png'), _('&Join Geo/Gerber/Exc -> Geo')) self.menuedit_convertjoin.setToolTip( _("Merge a selection of objects, which can be of type:\n" "- Gerber\n" @@ -296,88 +304,96 @@ class FlatCAMGUI(QtWidgets.QMainWindow): "into a new combo Geometry object.") ) self.menuedit_convertjoinexc = self.menuedit_convert.addAction( - QtGui.QIcon('share/join16.png'), _('Join Excellon(s) -> Excellon')) + QtGui.QIcon(self.app.resource_location + '/join16.png'), _('Join Excellon(s) -> Excellon')) self.menuedit_convertjoinexc.setToolTip( _("Merge a selection of Excellon objects into a new combo Excellon object.") ) self.menuedit_convertjoingrb = self.menuedit_convert.addAction( - QtGui.QIcon('share/join16.png'), _('Join Gerber(s) -> Gerber')) + QtGui.QIcon(self.app.resource_location + '/join16.png'), _('Join Gerber(s) -> Gerber')) self.menuedit_convertjoingrb.setToolTip( _("Merge a selection of Gerber objects into a new combo Gerber object.") ) # Separator self.menuedit_convert.addSeparator() self.menuedit_convert_sg2mg = self.menuedit_convert.addAction( - QtGui.QIcon('share/convert24.png'), _('Convert Single to MultiGeo')) + QtGui.QIcon(self.app.resource_location + '/convert24.png'), _('Convert Single to MultiGeo')) self.menuedit_convert_sg2mg.setToolTip( _("Will convert a Geometry object from single_geometry type\n" "to a multi_geometry type.") ) self.menuedit_convert_mg2sg = self.menuedit_convert.addAction( - QtGui.QIcon('share/convert24.png'), _('Convert Multi to SingleGeo')) + QtGui.QIcon(self.app.resource_location + '/convert24.png'), _('Convert Multi to SingleGeo')) self.menuedit_convert_mg2sg.setToolTip( _("Will convert a Geometry object from multi_geometry type\n" "to a single_geometry type.") ) # Separator self.menuedit_convert.addSeparator() - self.menueditconvert_any2geo = self.menuedit_convert.addAction(QtGui.QIcon('share/copy_geo.png'), - _('Convert Any to Geo')) - self.menueditconvert_any2gerber = self.menuedit_convert.addAction(QtGui.QIcon('share/copy_geo.png'), - _('Convert Any to Gerber')) + self.menueditconvert_any2geo = self.menuedit_convert.addAction( + QtGui.QIcon(self.app.resource_location + '/copy_geo.png'), + _('Convert Any to Geo')) + self.menueditconvert_any2gerber = self.menuedit_convert.addAction( + QtGui.QIcon(self.app.resource_location + '/copy_geo.png'), + _('Convert Any to Gerber')) self.menuedit_convert.setToolTipsVisible(True) # Separator self.menuedit.addSeparator() - self.menueditcopyobject = self.menuedit.addAction(QtGui.QIcon('share/copy.png'), _('&Copy\tCTRL+C')) + self.menueditcopyobject = self.menuedit.addAction( + QtGui.QIcon(self.app.resource_location + '/copy.png'), _('&Copy\tCTRL+C')) # Separator self.menuedit.addSeparator() - self.menueditdelete = self.menuedit.addAction(QtGui.QIcon('share/trash16.png'), _('&Delete\tDEL')) + self.menueditdelete = self.menuedit.addAction( + QtGui.QIcon(self.app.resource_location + '/trash16.png'), _('&Delete\tDEL')) # Separator self.menuedit.addSeparator() - self.menueditorigin = self.menuedit.addAction(QtGui.QIcon('share/origin16.png'), _('Se&t Origin\tO')) - self.menueditjump = self.menuedit.addAction(QtGui.QIcon('share/jump_to16.png'), _('Jump to Location\tJ')) + self.menueditorigin = self.menuedit.addAction( + QtGui.QIcon(self.app.resource_location + '/origin16.png'), _('Se&t Origin\tO')) + self.menueditjump = self.menuedit.addAction( + QtGui.QIcon(self.app.resource_location + '/jump_to16.png'), _('Jump to Location\tJ')) # Separator self.menuedit.addSeparator() - self.menuedittoggleunits = self.menuedit.addAction(QtGui.QIcon('share/toggle_units16.png'), - _('Toggle Units\tQ')) - self.menueditselectall = self.menuedit.addAction(QtGui.QIcon('share/select_all.png'), _('&Select All\tCTRL+A')) + self.menuedittoggleunits = self.menuedit.addAction( + QtGui.QIcon(self.app.resource_location + '/toggle_units16.png'), _('Toggle Units\tQ')) + self.menueditselectall = self.menuedit.addAction( + QtGui.QIcon(self.app.resource_location + '/select_all.png'), _('&Select All\tCTRL+A')) # Separator self.menuedit.addSeparator() - self.menueditpreferences = self.menuedit.addAction(QtGui.QIcon('share/pref.png'), _('&Preferences\tSHIFT+P')) + self.menueditpreferences = self.menuedit.addAction( + QtGui.QIcon(self.app.resource_location + '/pref.png'), _('&Preferences\tSHIFT+P')) # ######################################################################## # ########################## OPTIONS # ################################### # ######################################################################## self.menuoptions = self.menu.addMenu(_('Options')) - self.menuoptions_transform_rotate = self.menuoptions.addAction(QtGui.QIcon('share/rotate.png'), - _("&Rotate Selection\tSHIFT+(R)")) + self.menuoptions_transform_rotate = self.menuoptions.addAction( + QtGui.QIcon(self.app.resource_location + '/rotate.png'), _("&Rotate Selection\tSHIFT+(R)")) # Separator self.menuoptions.addSeparator() - self.menuoptions_transform_skewx = self.menuoptions.addAction(QtGui.QIcon('share/skewX.png'), - _("&Skew on X axis\tSHIFT+X")) - self.menuoptions_transform_skewy = self.menuoptions.addAction(QtGui.QIcon('share/skewY.png'), - _("S&kew on Y axis\tSHIFT+Y")) + self.menuoptions_transform_skewx = self.menuoptions.addAction( + QtGui.QIcon(self.app.resource_location + '/skewX.png'), _("&Skew on X axis\tSHIFT+X")) + self.menuoptions_transform_skewy = self.menuoptions.addAction( + QtGui.QIcon(self.app.resource_location + '/skewY.png'), _("S&kew on Y axis\tSHIFT+Y")) # Separator self.menuoptions.addSeparator() - self.menuoptions_transform_flipx = self.menuoptions.addAction(QtGui.QIcon('share/flipx.png'), - _("Flip on &X axis\tX")) - self.menuoptions_transform_flipy = self.menuoptions.addAction(QtGui.QIcon('share/flipy.png'), - _("Flip on &Y axis\tY")) + self.menuoptions_transform_flipx = self.menuoptions.addAction( + QtGui.QIcon(self.app.resource_location + '/flipx.png'), _("Flip on &X axis\tX")) + self.menuoptions_transform_flipy = self.menuoptions.addAction( + QtGui.QIcon(self.app.resource_location + '/flipy.png'), _("Flip on &Y axis\tY")) # Separator self.menuoptions.addSeparator() - self.menuoptions_view_source = self.menuoptions.addAction(QtGui.QIcon('share/source32.png'), - _("View source\tALT+S")) - self.menuoptions_tools_db = self.menuoptions.addAction(QtGui.QIcon('share/database32.png'), - _("Tools DataBase\tCTRL+D")) + self.menuoptions_view_source = self.menuoptions.addAction( + QtGui.QIcon(self.app.resource_location + '/source32.png'), _("View source\tALT+S")) + self.menuoptions_tools_db = self.menuoptions.addAction( + QtGui.QIcon(self.app.resource_location + '/database32.png'), _("Tools DataBase\tCTRL+D")) # Separator self.menuoptions.addSeparator() @@ -385,51 +401,56 @@ class FlatCAMGUI(QtWidgets.QMainWindow): # ########################## View # ###################################### # ######################################################################## self.menuview = self.menu.addMenu(_('View')) - self.menuviewenable = self.menuview.addAction(QtGui.QIcon('share/replot16.png'), _('Enable all plots\tALT+1')) - self.menuviewdisableall = self.menuview.addAction(QtGui.QIcon('share/clear_plot16.png'), - _('Disable all plots\tALT+2')) - self.menuviewdisableother = self.menuview.addAction(QtGui.QIcon('share/clear_plot16.png'), - _('Disable non-selected\tALT+3')) + self.menuviewenable = self.menuview.addAction( + QtGui.QIcon(self.app.resource_location + '/replot16.png'), _('Enable all plots\tALT+1')) + self.menuviewdisableall = self.menuview.addAction( + QtGui.QIcon(self.app.resource_location + '/clear_plot16.png'), _('Disable all plots\tALT+2')) + self.menuviewdisableother = self.menuview.addAction( + QtGui.QIcon(self.app.resource_location + '/clear_plot16.png'), _('Disable non-selected\tALT+3')) # Separator self.menuview.addSeparator() - self.menuview_zoom_fit = self.menuview.addAction(QtGui.QIcon('share/zoom_fit32.png'), _("&Zoom Fit\tV")) - self.menuview_zoom_in = self.menuview.addAction(QtGui.QIcon('share/zoom_in32.png'), _("&Zoom In\t=")) - self.menuview_zoom_out = self.menuview.addAction(QtGui.QIcon('share/zoom_out32.png'), _("&Zoom Out\t-")) + self.menuview_zoom_fit = self.menuview.addAction( + QtGui.QIcon(self.app.resource_location + '/zoom_fit32.png'), _("&Zoom Fit\tV")) + self.menuview_zoom_in = self.menuview.addAction( + QtGui.QIcon(self.app.resource_location + '/zoom_in32.png'), _("&Zoom In\t=")) + self.menuview_zoom_out = self.menuview.addAction( + QtGui.QIcon(self.app.resource_location + '/zoom_out32.png'), _("&Zoom Out\t-")) self.menuview.addSeparator() # Replot all - self.menuview_replot = self.menuview.addAction(QtGui.QIcon('share/replot32.png'), _("Redraw All\tF5")) + self.menuview_replot = self.menuview.addAction( + QtGui.QIcon(self.app.resource_location + '/replot32.png'), _("Redraw All\tF5")) self.menuview.addSeparator() - self.menuview_toggle_code_editor = self.menuview.addAction(QtGui.QIcon('share/code_editor32.png'), - _('Toggle Code Editor\tSHIFT+E')) + self.menuview_toggle_code_editor = self.menuview.addAction( + QtGui.QIcon(self.app.resource_location + '/code_editor32.png'), _('Toggle Code Editor\tSHIFT+E')) self.menuview.addSeparator() self.menuview_toggle_fscreen = self.menuview.addAction( - QtGui.QIcon('share/fscreen32.png'), _("&Toggle FullScreen\tALT+F10")) + QtGui.QIcon(self.app.resource_location + '/fscreen32.png'), _("&Toggle FullScreen\tALT+F10")) self.menuview_toggle_parea = self.menuview.addAction( - QtGui.QIcon('share/plot32.png'), _("&Toggle Plot Area\tCTRL+F10")) + QtGui.QIcon(self.app.resource_location + '/plot32.png'), _("&Toggle Plot Area\tCTRL+F10")) self.menuview_toggle_notebook = self.menuview.addAction( - QtGui.QIcon('share/notebook32.png'), _("&Toggle Project/Sel/Tool\t`")) + QtGui.QIcon(self.app.resource_location + '/notebook32.png'), _("&Toggle Project/Sel/Tool\t`")) self.menuview.addSeparator() - self.menuview_toggle_grid = self.menuview.addAction(QtGui.QIcon('share/grid32.png'), - _("&Toggle Grid Snap\tG")) - self.menuview_toggle_grid_lines = self.menuview.addAction(QtGui.QIcon('share/grid32.png'), - _("&Toggle Grid Lines\tALT+G")) - self.menuview_toggle_axis = self.menuview.addAction(QtGui.QIcon('share/axis32.png'), _("&Toggle Axis\tSHIFT+G") - ) - self.menuview_toggle_workspace = self.menuview.addAction(QtGui.QIcon('share/workspace24.png'), - _("Toggle Workspace\tSHIFT+W")) + self.menuview_toggle_grid = self.menuview.addAction( + QtGui.QIcon(self.app.resource_location + '/grid32.png'), _("&Toggle Grid Snap\tG")) + self.menuview_toggle_grid_lines = self.menuview.addAction( + QtGui.QIcon(self.app.resource_location + '/grid32.png'), _("&Toggle Grid Lines\tALT+G")) + self.menuview_toggle_axis = self.menuview.addAction( + QtGui.QIcon(self.app.resource_location + '/axis32.png'), _("&Toggle Axis\tSHIFT+G")) + self.menuview_toggle_workspace = self.menuview.addAction( + QtGui.QIcon(self.app.resource_location + '/workspace24.png'), _("Toggle Workspace\tSHIFT+W")) # ######################################################################## # ########################## Objects # ################################### # ######################################################################## self.menuobjects = self.menu.addMenu(_('Objects')) self.menuobjects.addSeparator() - self.menuobjects_selall = self.menuobjects.addAction(QtGui.QIcon('share/select_all.png'), _('Select All')) + self.menuobjects_selall = self.menuobjects.addAction( + QtGui.QIcon(self.app.resource_location + '/select_all.png'), _('Select All')) self.menuobjects_unselall = self.menuobjects.addAction( - QtGui.QIcon('share/deselect_all32.png'), - _('Deselect All') + QtGui.QIcon(self.app.resource_location + '/deselect_all32.png'), _('Deselect All') ) # ######################################################################## @@ -437,34 +458,39 @@ class FlatCAMGUI(QtWidgets.QMainWindow): # ######################################################################## self.menutool = QtWidgets.QMenu(_('Tool')) self.menutoolaction = self.menu.addMenu(self.menutool) - self.menutoolshell = self.menutool.addAction(QtGui.QIcon('share/shell16.png'), _('&Command Line\tS')) + self.menutoolshell = self.menutool.addAction( + QtGui.QIcon(self.app.resource_location + '/shell16.png'), _('&Command Line\tS')) # ######################################################################## # ########################## Help # ###################################### # ######################################################################## self.menuhelp = self.menu.addMenu(_('Help')) - self.menuhelp_manual = self.menuhelp.addAction(QtGui.QIcon('share/globe16.png'), _('Online Help\tF1')) + self.menuhelp_manual = self.menuhelp.addAction( + QtGui.QIcon(self.app.resource_location + '/globe16.png'), _('Online Help\tF1')) - self.menuhelp_bookmarks = self.menuhelp.addMenu(QtGui.QIcon('share/bookmarks16.png'), _('Bookmarks')) + self.menuhelp_bookmarks = self.menuhelp.addMenu( + QtGui.QIcon(self.app.resource_location + '/bookmarks16.png'), _('Bookmarks')) self.menuhelp_bookmarks.addSeparator() self.menuhelp_bookmarks_manager = self.menuhelp_bookmarks.addAction( - QtGui.QIcon('share/bookmarks16.png'), _('Bookmarks Manager')) + QtGui.QIcon(self.app.resource_location + '/bookmarks16.png'), _('Bookmarks Manager')) self.menuhelp.addSeparator() - self.menuhelp_report_bug = self.menuhelp.addAction(QtGui.QIcon('share/bug16.png'), _('Report a bug')) + self.menuhelp_report_bug = self.menuhelp.addAction( + QtGui.QIcon(self.app.resource_location + '/bug16.png'), _('Report a bug')) self.menuhelp.addSeparator() - self.menuhelp_exc_spec = self.menuhelp.addAction(QtGui.QIcon('share/pdf_link16.png'), - _('Excellon Specification')) - self.menuhelp_gerber_spec = self.menuhelp.addAction(QtGui.QIcon('share/pdf_link16.png'), - _('Gerber Specification')) + self.menuhelp_exc_spec = self.menuhelp.addAction( + QtGui.QIcon(self.app.resource_location + '/pdf_link16.png'), _('Excellon Specification')) + self.menuhelp_gerber_spec = self.menuhelp.addAction( + QtGui.QIcon(self.app.resource_location + '/pdf_link16.png'), _('Gerber Specification')) self.menuhelp.addSeparator() - self.menuhelp_shortcut_list = self.menuhelp.addAction(QtGui.QIcon('share/shortcuts24.png'), - _('Shortcuts List\tF3')) - self.menuhelp_videohelp = self.menuhelp.addAction(QtGui.QIcon('share/youtube32.png'), _('YouTube Channel\tF4') - ) - self.menuhelp_about = self.menuhelp.addAction(QtGui.QIcon('share/about32.png'), _('About FlatCAM')) + self.menuhelp_shortcut_list = self.menuhelp.addAction( + QtGui.QIcon(self.app.resource_location + '/shortcuts24.png'), _('Shortcuts List\tF3')) + self.menuhelp_videohelp = self.menuhelp.addAction( + QtGui.QIcon(self.app.resource_location + '/youtube32.png'), _('YouTube Channel\tF4')) + self.menuhelp_about = self.menuhelp.addAction( + QtGui.QIcon(self.app.resource_location + '/about32.png'), _('About FlatCAM')) # ######################################################################## # ########################## GEOMETRY EDITOR # ########################### @@ -473,49 +499,54 @@ class FlatCAMGUI(QtWidgets.QMainWindow): self.menu.addMenu(self.geo_editor_menu) self.geo_add_circle_menuitem = self.geo_editor_menu.addAction( - QtGui.QIcon('share/circle32.png'), _('Add Circle\tO') + QtGui.QIcon(self.app.resource_location + '/circle32.png'), _('Add Circle\tO') ) - self.geo_add_arc_menuitem = self.geo_editor_menu.addAction(QtGui.QIcon('share/arc16.png'), _('Add Arc\tA')) + self.geo_add_arc_menuitem = self.geo_editor_menu.addAction( + QtGui.QIcon(self.app.resource_location + '/arc16.png'), _('Add Arc\tA')) self.geo_editor_menu.addSeparator() self.geo_add_rectangle_menuitem = self.geo_editor_menu.addAction( - QtGui.QIcon('share/rectangle32.png'), _('Add Rectangle\tR') + QtGui.QIcon(self.app.resource_location + '/rectangle32.png'), _('Add Rectangle\tR') ) self.geo_add_polygon_menuitem = self.geo_editor_menu.addAction( - QtGui.QIcon('share/polygon32.png'), _('Add Polygon\tN') + QtGui.QIcon(self.app.resource_location + '/polygon32.png'), _('Add Polygon\tN') ) - self.geo_add_path_menuitem = self.geo_editor_menu.addAction(QtGui.QIcon('share/path32.png'), _('Add Path\tP')) + self.geo_add_path_menuitem = self.geo_editor_menu.addAction( + QtGui.QIcon(self.app.resource_location + '/path32.png'), _('Add Path\tP')) self.geo_editor_menu.addSeparator() - self.geo_add_text_menuitem = self.geo_editor_menu.addAction(QtGui.QIcon('share/text32.png'), _('Add Text\tT')) + self.geo_add_text_menuitem = self.geo_editor_menu.addAction( + QtGui.QIcon(self.app.resource_location + '/text32.png'), _('Add Text\tT')) self.geo_editor_menu.addSeparator() - self.geo_union_menuitem = self.geo_editor_menu.addAction(QtGui.QIcon('share/union16.png'), - _('Polygon Union\tU')) - self.geo_intersection_menuitem = self.geo_editor_menu.addAction(QtGui.QIcon('share/intersection16.png'), - _('Polygon Intersection\tE')) + self.geo_union_menuitem = self.geo_editor_menu.addAction( + QtGui.QIcon(self.app.resource_location + '/union16.png'),_('Polygon Union\tU')) + self.geo_intersection_menuitem = self.geo_editor_menu.addAction( + QtGui.QIcon(self.app.resource_location + '/intersection16.png'), _('Polygon Intersection\tE')) self.geo_subtract_menuitem = self.geo_editor_menu.addAction( - QtGui.QIcon('share/subtract16.png'), _('Polygon Subtraction\tS') + QtGui.QIcon(self.app.resource_location + '/subtract16.png'), _('Polygon Subtraction\tS') ) self.geo_editor_menu.addSeparator() - self.geo_cutpath_menuitem = self.geo_editor_menu.addAction(QtGui.QIcon('share/cutpath16.png'), - _('Cut Path\tX')) - # self.move_menuitem = self.menu.addAction(QtGui.QIcon('share/move16.png'), "Move Objects 'm'") - self.geo_copy_menuitem = self.geo_editor_menu.addAction(QtGui.QIcon('share/copy16.png'), _("Copy Geom\tC")) + self.geo_cutpath_menuitem = self.geo_editor_menu.addAction( + QtGui.QIcon(self.app.resource_location + '/cutpath16.png'), _('Cut Path\tX')) + # self.move_menuitem = self.menu.addAction(QtGui.QIcon(self.app.resource_location + '/move16.png'), "Move Objects 'm'") + self.geo_copy_menuitem = self.geo_editor_menu.addAction( + QtGui.QIcon(self.app.resource_location + '/copy16.png'), _("Copy Geom\tC")) self.geo_delete_menuitem = self.geo_editor_menu.addAction( - QtGui.QIcon('share/deleteshape16.png'), _("Delete Shape\tDEL") + QtGui.QIcon(self.app.resource_location + '/deleteshape16.png'), _("Delete Shape\tDEL") ) self.geo_editor_menu.addSeparator() - self.geo_move_menuitem = self.geo_editor_menu.addAction(QtGui.QIcon('share/move32.png'), _("Move\tM")) + self.geo_move_menuitem = self.geo_editor_menu.addAction( + QtGui.QIcon(self.app.resource_location + '/move32.png'), _("Move\tM")) self.geo_buffer_menuitem = self.geo_editor_menu.addAction( - QtGui.QIcon('share/buffer16.png'), _("Buffer Tool\tB") + QtGui.QIcon(self.app.resource_location + '/buffer16.png'), _("Buffer Tool\tB") ) self.geo_paint_menuitem = self.geo_editor_menu.addAction( - QtGui.QIcon('share/paint16.png'), _("Paint Tool\tI") + QtGui.QIcon(self.app.resource_location + '/paint16.png'), _("Paint Tool\tI") ) self.geo_transform_menuitem = self.geo_editor_menu.addAction( - QtGui.QIcon('share/transform.png'), _("Transform Tool\tALT+R") + QtGui.QIcon(self.app.resource_location + '/transform.png'), _("Transform Tool\tALT+R") ) self.geo_editor_menu.addSeparator() self.geo_cornersnap_menuitem = self.geo_editor_menu.addAction( - QtGui.QIcon('share/corner32.png'), _("Toggle Corner Snap\tK") + QtGui.QIcon(self.app.resource_location + '/corner32.png'), _("Toggle Corner Snap\tK") ) # ######################################################################## @@ -525,28 +556,29 @@ class FlatCAMGUI(QtWidgets.QMainWindow): self.menu.addMenu(self.exc_editor_menu) self.exc_add_array_drill_menuitem = self.exc_editor_menu.addAction( - QtGui.QIcon('share/rectangle32.png'), _('Add Drill Array\tA')) - self.exc_add_drill_menuitem = self.exc_editor_menu.addAction(QtGui.QIcon('share/plus16.png'), - _('Add Drill\tD')) + QtGui.QIcon(self.app.resource_location + '/rectangle32.png'), _('Add Drill Array\tA')) + self.exc_add_drill_menuitem = self.exc_editor_menu.addAction( + QtGui.QIcon(self.app.resource_location + '/plus16.png'), _('Add Drill\tD')) self.exc_editor_menu.addSeparator() self.exc_add_array_slot_menuitem = self.exc_editor_menu.addAction( - QtGui.QIcon('share/slot_array26.png'), _('Add Slot Array\tQ')) - self.exc_add_slot_menuitem = self.exc_editor_menu.addAction(QtGui.QIcon('share/slot26.png'), - _('Add Slot\tW')) + QtGui.QIcon(self.app.resource_location + '/slot_array26.png'), _('Add Slot Array\tQ')) + self.exc_add_slot_menuitem = self.exc_editor_menu.addAction( + QtGui.QIcon(self.app.resource_location + '/slot26.png'), _('Add Slot\tW')) self.exc_editor_menu.addSeparator() self.exc_resize_drill_menuitem = self.exc_editor_menu.addAction( - QtGui.QIcon('share/resize16.png'), _('Resize Drill(S)\tR') + QtGui.QIcon(self.app.resource_location + '/resize16.png'), _('Resize Drill(S)\tR') ) - self.exc_copy_drill_menuitem = self.exc_editor_menu.addAction(QtGui.QIcon('share/copy32.png'), _('Copy\tC')) + self.exc_copy_drill_menuitem = self.exc_editor_menu.addAction( + QtGui.QIcon(self.app.resource_location + '/copy32.png'), _('Copy\tC')) self.exc_delete_drill_menuitem = self.exc_editor_menu.addAction( - QtGui.QIcon('share/deleteshape32.png'), _('Delete\tDEL') + QtGui.QIcon(self.app.resource_location + '/deleteshape32.png'), _('Delete\tDEL') ) self.exc_editor_menu.addSeparator() - self.exc_move_drill_menuitem = self.exc_editor_menu.addAction(QtGui.QIcon('share/move32.png'), - _('Move Drill(s)\tM')) + self.exc_move_drill_menuitem = self.exc_editor_menu.addAction( + QtGui.QIcon(self.app.resource_location + '/move32.png'), _('Move Drill(s)\tM')) # ######################################################################## # ########################## GERBER Editor # ############################# @@ -554,38 +586,42 @@ class FlatCAMGUI(QtWidgets.QMainWindow): self.grb_editor_menu = QtWidgets.QMenu(_(">Gerber Editor<")) self.menu.addMenu(self.grb_editor_menu) - self.grb_add_pad_menuitem = self.grb_editor_menu.addAction(QtGui.QIcon('share/aperture16.png'), - _('Add Pad\tP')) - self.grb_add_pad_array_menuitem = self.grb_editor_menu.addAction(QtGui.QIcon('share/padarray32.png'), - _('Add Pad Array\tA')) - self.grb_add_track_menuitem = self.grb_editor_menu.addAction(QtGui.QIcon('share/track32.png'), - _('Add Track\tT')) - self.grb_add_region_menuitem = self.grb_editor_menu.addAction(QtGui.QIcon('share/rectangle32.png'), - _('Add Region\tN')) + self.grb_add_pad_menuitem = self.grb_editor_menu.addAction( + QtGui.QIcon(self.app.resource_location + '/aperture16.png'), _('Add Pad\tP')) + self.grb_add_pad_array_menuitem = self.grb_editor_menu.addAction( + QtGui.QIcon(self.app.resource_location + '/padarray32.png'), _('Add Pad Array\tA')) + self.grb_add_track_menuitem = self.grb_editor_menu.addAction( + QtGui.QIcon(self.app.resource_location + '/track32.png'), _('Add Track\tT')) + self.grb_add_region_menuitem = self.grb_editor_menu.addAction( + QtGui.QIcon(self.app.resource_location + '/rectangle32.png'), _('Add Region\tN')) self.grb_editor_menu.addSeparator() - self.grb_convert_poly_menuitem = self.grb_editor_menu.addAction(QtGui.QIcon('share/poligonize32.png'), - _("Poligonize\tALT+N")) - self.grb_add_semidisc_menuitem = self.grb_editor_menu.addAction(QtGui.QIcon('share/semidisc32.png'), - _("Add SemiDisc\tE")) - self.grb_add_disc_menuitem = self.grb_editor_menu.addAction(QtGui.QIcon('share/disc32.png'), _("Add Disc\tD")) - self.grb_add_buffer_menuitem = self.grb_editor_menu.addAction(QtGui.QIcon('share/buffer16-2.png'), - _('Buffer\tB')) - self.grb_add_scale_menuitem = self.grb_editor_menu.addAction(QtGui.QIcon('share/scale32.png'), _('Scale\tS')) - self.grb_add_markarea_menuitem = self.grb_editor_menu.addAction(QtGui.QIcon('share/markarea32.png'), - _('Mark Area\tALT+A')) - self.grb_add_eraser_menuitem = self.grb_editor_menu.addAction(QtGui.QIcon('share/eraser26.png'), - _('Eraser\tCTRL+E')) - self.grb_transform_menuitem = self.grb_editor_menu.addAction(QtGui.QIcon('share/transform.png'), - _("Transform\tALT+R")) + self.grb_convert_poly_menuitem = self.grb_editor_menu.addAction( + QtGui.QIcon(self.app.resource_location + '/poligonize32.png'), _("Poligonize\tALT+N")) + self.grb_add_semidisc_menuitem = self.grb_editor_menu.addAction( + QtGui.QIcon(self.app.resource_location + '/semidisc32.png'), _("Add SemiDisc\tE")) + self.grb_add_disc_menuitem = self.grb_editor_menu.addAction( + QtGui.QIcon(self.app.resource_location + '/disc32.png'), _("Add Disc\tD")) + self.grb_add_buffer_menuitem = self.grb_editor_menu.addAction( + QtGui.QIcon(self.app.resource_location + '/buffer16-2.png'), _('Buffer\tB')) + self.grb_add_scale_menuitem = self.grb_editor_menu.addAction( + QtGui.QIcon(self.app.resource_location + '/scale32.png'), _('Scale\tS')) + self.grb_add_markarea_menuitem = self.grb_editor_menu.addAction( + QtGui.QIcon(self.app.resource_location + '/markarea32.png'), _('Mark Area\tALT+A')) + self.grb_add_eraser_menuitem = self.grb_editor_menu.addAction( + QtGui.QIcon(self.app.resource_location + '/eraser26.png'), _('Eraser\tCTRL+E')) + self.grb_transform_menuitem = self.grb_editor_menu.addAction( + QtGui.QIcon(self.app.resource_location + '/transform.png'), _("Transform\tALT+R")) self.grb_editor_menu.addSeparator() - self.grb_copy_menuitem = self.grb_editor_menu.addAction(QtGui.QIcon('share/copy32.png'), _('Copy\tC')) - self.grb_delete_menuitem = self.grb_editor_menu.addAction(QtGui.QIcon('share/deleteshape32.png'), - _('Delete\tDEL')) + self.grb_copy_menuitem = self.grb_editor_menu.addAction( + QtGui.QIcon(self.app.resource_location + '/copy32.png'), _('Copy\tC')) + self.grb_delete_menuitem = self.grb_editor_menu.addAction( + QtGui.QIcon(self.app.resource_location + '/deleteshape32.png'), _('Delete\tDEL')) self.grb_editor_menu.addSeparator() - self.grb_move_menuitem = self.grb_editor_menu.addAction(QtGui.QIcon('share/move32.png'), _('Move\tM')) + self.grb_move_menuitem = self.grb_editor_menu.addAction( + QtGui.QIcon(self.app.resource_location + '/move32.png'), _('Move\tM')) self.grb_editor_menu.menuAction().setVisible(False) self.grb_editor_menu.setDisabled(True) @@ -600,19 +636,28 @@ class FlatCAMGUI(QtWidgets.QMainWindow): # ########################## Project Tab Context Menu # ################## # ######################################################################## self.menuproject = QtWidgets.QMenu() - self.menuprojectenable = self.menuproject.addAction(QtGui.QIcon('share/replot32.png'), _('Enable Plot')) - self.menuprojectdisable = self.menuproject.addAction(QtGui.QIcon('share/clear_plot32.png'), _('Disable Plot')) + self.menuprojectenable = self.menuproject.addAction( + QtGui.QIcon(self.app.resource_location + '/replot32.png'), _('Enable Plot')) + self.menuprojectdisable = self.menuproject.addAction( + QtGui.QIcon(self.app.resource_location + '/clear_plot32.png'), _('Disable Plot')) self.menuproject.addSeparator() - self.menuprojectgeneratecnc = self.menuproject.addAction(QtGui.QIcon('share/cnc32.png'), _('Generate CNC')) - self.menuprojectviewsource = self.menuproject.addAction(QtGui.QIcon('share/source32.png'), _('View Source')) + self.menuprojectgeneratecnc = self.menuproject.addAction( + QtGui.QIcon(self.app.resource_location + '/cnc32.png'), _('Generate CNC')) + self.menuprojectviewsource = self.menuproject.addAction( + QtGui.QIcon(self.app.resource_location + '/source32.png'), _('View Source')) - self.menuprojectedit = self.menuproject.addAction(QtGui.QIcon('share/edit_ok32.png'), _('Edit')) - self.menuprojectcopy = self.menuproject.addAction(QtGui.QIcon('share/copy32.png'), _('Copy')) - self.menuprojectdelete = self.menuproject.addAction(QtGui.QIcon('share/delete32.png'), _('Delete')) - self.menuprojectsave = self.menuproject.addAction(QtGui.QIcon('share/save_as.png'), _('Save')) + self.menuprojectedit = self.menuproject.addAction( + QtGui.QIcon(self.app.resource_location + '/edit_ok32.png'), _('Edit')) + self.menuprojectcopy = self.menuproject.addAction( + QtGui.QIcon(self.app.resource_location + '/copy32.png'), _('Copy')) + self.menuprojectdelete = self.menuproject.addAction( + QtGui.QIcon(self.app.resource_location + '/delete32.png'), _('Delete')) + self.menuprojectsave = self.menuproject.addAction( + QtGui.QIcon(self.app.resource_location + '/save_as.png'), _('Save')) self.menuproject.addSeparator() - self.menuprojectproperties = self.menuproject.addAction(QtGui.QIcon('share/properties32.png'), _('Properties')) + self.menuprojectproperties = self.menuproject.addAction( + QtGui.QIcon(self.app.resource_location + '/properties32.png'), _('Properties')) # ######################################################################## # ####################### Central Widget -> Splitter # ################## @@ -692,175 +737,245 @@ class FlatCAMGUI(QtWidgets.QMainWindow): # ######################################################################## # ########################## File Toolbar# ############################### # ######################################################################## - self.file_open_gerber_btn = self.toolbarfile.addAction(QtGui.QIcon('share/flatcam_icon32.png'), - _("Open Gerber")) - self.file_open_excellon_btn = self.toolbarfile.addAction(QtGui.QIcon('share/drill32.png'), _("Open Excellon")) + self.file_open_gerber_btn = self.toolbarfile.addAction( + QtGui.QIcon(self.app.resource_location + '/flatcam_icon32.png'), _("Open Gerber")) + self.file_open_excellon_btn = self.toolbarfile.addAction( + QtGui.QIcon(self.app.resource_location + '/drill32.png'), _("Open Excellon")) self.toolbarfile.addSeparator() - self.file_open_btn = self.toolbarfile.addAction(QtGui.QIcon('share/folder32.png'), _("Open project")) - self.file_save_btn = self.toolbarfile.addAction(QtGui.QIcon('share/project_save32.png'), _("Save project")) + self.file_open_btn = self.toolbarfile.addAction( + QtGui.QIcon(self.app.resource_location + '/folder32.png'), _("Open project")) + self.file_save_btn = self.toolbarfile.addAction( + QtGui.QIcon(self.app.resource_location + '/project_save32.png'), _("Save project")) # ######################################################################## # ########################## Edit Toolbar# ############################### # ######################################################################## - self.newgeo_btn = self.toolbargeo.addAction(QtGui.QIcon('share/new_file_geo32.png'), _("New Blank Geometry")) - self.newgrb_btn = self.toolbargeo.addAction(QtGui.QIcon('share/new_file_grb32.png'), _("New Blank Gerber")) - self.newexc_btn = self.toolbargeo.addAction(QtGui.QIcon('share/new_file_exc32.png'), _("New Blank Excellon")) + self.newgeo_btn = self.toolbargeo.addAction( + QtGui.QIcon(self.app.resource_location + '/new_file_geo32.png'), _("New Blank Geometry")) + self.newgrb_btn = self.toolbargeo.addAction( + QtGui.QIcon(self.app.resource_location + '/new_file_grb32.png'), _("New Blank Gerber")) + self.newexc_btn = self.toolbargeo.addAction( + QtGui.QIcon(self.app.resource_location + '/new_file_exc32.png'), _("New Blank Excellon")) self.toolbargeo.addSeparator() - self.editgeo_btn = self.toolbargeo.addAction(QtGui.QIcon('share/edit_file32.png'), _("Editor")) + self.editgeo_btn = self.toolbargeo.addAction( + QtGui.QIcon(self.app.resource_location + '/edit_file32.png'), _("Editor")) self.update_obj_btn = self.toolbargeo.addAction( - QtGui.QIcon('share/close_edit_file32.png'), _("Save Object and close the Editor") + QtGui.QIcon(self.app.resource_location + '/close_edit_file32.png'), _("Save Object and close the Editor") ) self.toolbargeo.addSeparator() - self.copy_btn = self.toolbargeo.addAction(QtGui.QIcon('share/copy_file32.png'), _("Copy")) - self.delete_btn = self.toolbargeo.addAction(QtGui.QIcon('share/delete_file32.png'), _("&Delete")) + self.copy_btn = self.toolbargeo.addAction( + QtGui.QIcon(self.app.resource_location + '/copy_file32.png'), _("Copy")) + self.delete_btn = self.toolbargeo.addAction( + QtGui.QIcon(self.app.resource_location + '/delete_file32.png'), _("&Delete")) self.toolbargeo.addSeparator() - self.distance_btn = self.toolbargeo.addAction(QtGui.QIcon('share/distance32.png'), _("Distance Tool")) - self.distance_min_btn = self.toolbargeo.addAction(QtGui.QIcon('share/distance_min32.png'), - _("Distance Min Tool")) - self.origin_btn = self.toolbargeo.addAction(QtGui.QIcon('share/origin32.png'), _('Set Origin')) - self.jmp_btn = self.toolbargeo.addAction(QtGui.QIcon('share/jump_to16.png'), _('Jump to Location')) + self.distance_btn = self.toolbargeo.addAction( + QtGui.QIcon(self.app.resource_location + '/distance32.png'), _("Distance Tool")) + self.distance_min_btn = self.toolbargeo.addAction( + QtGui.QIcon(self.app.resource_location + '/distance_min32.png'), _("Distance Min Tool")) + self.origin_btn = self.toolbargeo.addAction( + QtGui.QIcon(self.app.resource_location + '/origin32.png'), _('Set Origin')) + self.jmp_btn = self.toolbargeo.addAction( + QtGui.QIcon(self.app.resource_location + '/jump_to16.png'), _('Jump to Location')) # ######################################################################## # ########################## View Toolbar# ############################### # ######################################################################## - self.replot_btn = self.toolbarview.addAction(QtGui.QIcon('share/replot32.png'), _("&Replot")) - self.clear_plot_btn = self.toolbarview.addAction(QtGui.QIcon('share/clear_plot32.png'), _("&Clear plot")) - self.zoom_in_btn = self.toolbarview.addAction(QtGui.QIcon('share/zoom_in32.png'), _("Zoom In")) - self.zoom_out_btn = self.toolbarview.addAction(QtGui.QIcon('share/zoom_out32.png'), _("Zoom Out")) - self.zoom_fit_btn = self.toolbarview.addAction(QtGui.QIcon('share/zoom_fit32.png'), _("Zoom Fit")) + self.replot_btn = self.toolbarview.addAction( + QtGui.QIcon(self.app.resource_location + '/replot32.png'), _("&Replot")) + self.clear_plot_btn = self.toolbarview.addAction( + QtGui.QIcon(self.app.resource_location + '/clear_plot32.png'), _("&Clear plot")) + self.zoom_in_btn = self.toolbarview.addAction( + QtGui.QIcon(self.app.resource_location + '/zoom_in32.png'), _("Zoom In")) + self.zoom_out_btn = self.toolbarview.addAction( + QtGui.QIcon(self.app.resource_location + '/zoom_out32.png'), _("Zoom Out")) + self.zoom_fit_btn = self.toolbarview.addAction( + QtGui.QIcon(self.app.resource_location + '/zoom_fit32.png'), _("Zoom Fit")) # self.toolbarview.setVisible(False) # ######################################################################## # ########################## Shell Toolbar# ############################## # ######################################################################## - self.shell_btn = self.toolbarshell.addAction(QtGui.QIcon('share/shell32.png'), _("&Command Line")) - self.new_script_btn = self.toolbarshell.addAction(QtGui.QIcon('share/script_new24.png'), _('New Script ...')) - self.open_script_btn = self.toolbarshell.addAction(QtGui.QIcon('share/open_script32.png'), _('Open Script ...')) - self.run_script_btn = self.toolbarshell.addAction(QtGui.QIcon('share/script16.png'), _('Run Script ...')) + self.shell_btn = self.toolbarshell.addAction( + QtGui.QIcon(self.app.resource_location + '/shell32.png'), _("&Command Line")) + self.new_script_btn = self.toolbarshell.addAction( + QtGui.QIcon(self.app.resource_location + '/script_new24.png'), _('New Script ...')) + self.open_script_btn = self.toolbarshell.addAction( + QtGui.QIcon(self.app.resource_location + '/open_script32.png'), _('Open Script ...')) + self.run_script_btn = self.toolbarshell.addAction( + QtGui.QIcon(self.app.resource_location + '/script16.png'), _('Run Script ...')) # ######################################################################## # ########################## Tools Toolbar# ############################## # ######################################################################## - self.dblsided_btn = self.toolbartools.addAction(QtGui.QIcon('share/doubleside32.png'), _("2Sided Tool")) - self.cutout_btn = self.toolbartools.addAction(QtGui.QIcon('share/cut16_bis.png'), _("Cutout Tool")) - self.ncc_btn = self.toolbartools.addAction(QtGui.QIcon('share/ncc16.png'), _("NCC Tool")) - self.paint_btn = self.toolbartools.addAction(QtGui.QIcon('share/paint20_1.png'), _("Paint Tool")) + self.dblsided_btn = self.toolbartools.addAction( + QtGui.QIcon(self.app.resource_location + '/doubleside32.png'), _("2Sided Tool")) + self.cutout_btn = self.toolbartools.addAction( + QtGui.QIcon(self.app.resource_location + '/cut16_bis.png'), _("Cutout Tool")) + self.ncc_btn = self.toolbartools.addAction( + QtGui.QIcon(self.app.resource_location + '/ncc16.png'), _("NCC Tool")) + self.paint_btn = self.toolbartools.addAction( + QtGui.QIcon(self.app.resource_location + '/paint20_1.png'), _("Paint Tool")) self.toolbartools.addSeparator() - self.panelize_btn = self.toolbartools.addAction(QtGui.QIcon('share/panelize32.png'), _("Panel Tool")) - self.film_btn = self.toolbartools.addAction(QtGui.QIcon('share/film16.png'), _("Film Tool")) - self.solder_btn = self.toolbartools.addAction(QtGui.QIcon('share/solderpastebis32.png'), _("SolderPaste Tool")) - self.sub_btn = self.toolbartools.addAction(QtGui.QIcon('share/sub32.png'), _("Subtract Tool")) - self.rules_btn = self.toolbartools.addAction(QtGui.QIcon('share/rules32.png'), _("Rules Tool")) - self.optimal_btn = self.toolbartools.addAction(QtGui.QIcon('share/open_excellon32.png'), _("Optimal Tool")) + self.panelize_btn = self.toolbartools.addAction( + QtGui.QIcon(self.app.resource_location + '/panelize32.png'), _("Panel Tool")) + self.film_btn = self.toolbartools.addAction( + QtGui.QIcon(self.app.resource_location + '/film16.png'), _("Film Tool")) + self.solder_btn = self.toolbartools.addAction( + QtGui.QIcon(self.app.resource_location + '/solderpastebis32.png'), _("SolderPaste Tool")) + self.sub_btn = self.toolbartools.addAction( + QtGui.QIcon(self.app.resource_location + '/sub32.png'), _("Subtract Tool")) + self.rules_btn = self.toolbartools.addAction( + QtGui.QIcon(self.app.resource_location + '/rules32.png'), _("Rules Tool")) + self.optimal_btn = self.toolbartools.addAction( + QtGui.QIcon(self.app.resource_location + '/open_excellon32.png'), _("Optimal Tool")) self.toolbartools.addSeparator() - self.calculators_btn = self.toolbartools.addAction(QtGui.QIcon('share/calculator24.png'), _("Calculators Tool")) - self.transform_btn = self.toolbartools.addAction(QtGui.QIcon('share/transform.png'), _("Transform Tool")) - self.qrcode_btn = self.toolbartools.addAction(QtGui.QIcon('share/qrcode32.png'), _("QRCode Tool")) - self.copperfill_btn = self.toolbartools.addAction(QtGui.QIcon('share/copperfill32.png'), - _("Copper Thieving Tool")) + self.calculators_btn = self.toolbartools.addAction( + QtGui.QIcon(self.app.resource_location + '/calculator24.png'), _("Calculators Tool")) + self.transform_btn = self.toolbartools.addAction( + QtGui.QIcon(self.app.resource_location + '/transform.png'), _("Transform Tool")) + self.qrcode_btn = self.toolbartools.addAction( + QtGui.QIcon(self.app.resource_location + '/qrcode32.png'), _("QRCode Tool")) + self.copperfill_btn = self.toolbartools.addAction( + QtGui.QIcon(self.app.resource_location + '/copperfill32.png'), _("Copper Thieving Tool")) - self.fiducials_btn = self.toolbartools.addAction(QtGui.QIcon('share/fiducials_32.png'), _("Fiducials Tool")) - self.cal_btn = self.toolbartools.addAction(QtGui.QIcon('share/calibrate_32.png'), _("Calibration Tool")) + self.fiducials_btn = self.toolbartools.addAction( + QtGui.QIcon(self.app.resource_location + '/fiducials_32.png'), _("Fiducials Tool")) + self.cal_btn = self.toolbartools.addAction( + QtGui.QIcon(self.app.resource_location + '/calibrate_32.png'), _("Calibration Tool")) # ######################################################################## # ########################## Excellon Editor Toolbar# #################### # ######################################################################## - self.select_drill_btn = self.exc_edit_toolbar.addAction(QtGui.QIcon('share/pointer32.png'), _("Select")) - self.add_drill_btn = self.exc_edit_toolbar.addAction(QtGui.QIcon('share/plus16.png'), _('Add Drill Hole')) + self.select_drill_btn = self.exc_edit_toolbar.addAction( + QtGui.QIcon(self.app.resource_location + '/pointer32.png'), _("Select")) + self.add_drill_btn = self.exc_edit_toolbar.addAction( + QtGui.QIcon(self.app.resource_location + '/plus16.png'), _('Add Drill Hole')) self.add_drill_array_btn = self.exc_edit_toolbar.addAction( - QtGui.QIcon('share/addarray16.png'), _('Add Drill Hole Array')) - self.add_slot_btn = self.exc_edit_toolbar.addAction(QtGui.QIcon('share/slot26.png'), _('Add Slot')) + QtGui.QIcon(self.app.resource_location + '/addarray16.png'), _('Add Drill Hole Array')) + self.add_slot_btn = self.exc_edit_toolbar.addAction( + QtGui.QIcon(self.app.resource_location + '/slot26.png'), _('Add Slot')) self.add_slot_array_btn = self.exc_edit_toolbar.addAction( - QtGui.QIcon('share/slot_array26.png'), _('Add Slot Array')) - self.resize_drill_btn = self.exc_edit_toolbar.addAction(QtGui.QIcon('share/resize16.png'), _('Resize Drill')) + QtGui.QIcon(self.app.resource_location + '/slot_array26.png'), _('Add Slot Array')) + self.resize_drill_btn = self.exc_edit_toolbar.addAction( + QtGui.QIcon(self.app.resource_location + '/resize16.png'), _('Resize Drill')) self.exc_edit_toolbar.addSeparator() - self.copy_drill_btn = self.exc_edit_toolbar.addAction(QtGui.QIcon('share/copy32.png'), _('Copy Drill')) - self.delete_drill_btn = self.exc_edit_toolbar.addAction(QtGui.QIcon('share/trash32.png'), _("Delete Drill")) + self.copy_drill_btn = self.exc_edit_toolbar.addAction( + QtGui.QIcon(self.app.resource_location + '/copy32.png'), _('Copy Drill')) + self.delete_drill_btn = self.exc_edit_toolbar.addAction( + QtGui.QIcon(self.app.resource_location + '/trash32.png'), _("Delete Drill")) self.exc_edit_toolbar.addSeparator() - self.move_drill_btn = self.exc_edit_toolbar.addAction(QtGui.QIcon('share/move32.png'), _("Move Drill")) + self.move_drill_btn = self.exc_edit_toolbar.addAction( + QtGui.QIcon(self.app.resource_location + '/move32.png'), _("Move Drill")) # ######################################################################## # ########################## Geometry Editor Toolbar# #################### # ######################################################################## - self.geo_select_btn = self.geo_edit_toolbar.addAction(QtGui.QIcon('share/pointer32.png'), _("Select")) - self.geo_add_circle_btn = self.geo_edit_toolbar.addAction(QtGui.QIcon('share/circle32.png'), _('Add Circle')) - self.geo_add_arc_btn = self.geo_edit_toolbar.addAction(QtGui.QIcon('share/arc32.png'), _('Add Arc')) - self.geo_add_rectangle_btn = self.geo_edit_toolbar.addAction(QtGui.QIcon('share/rectangle32.png'), - _('Add Rectangle')) + self.geo_select_btn = self.geo_edit_toolbar.addAction( + QtGui.QIcon(self.app.resource_location + '/pointer32.png'), _("Select")) + self.geo_add_circle_btn = self.geo_edit_toolbar.addAction( + QtGui.QIcon(self.app.resource_location + '/circle32.png'), _('Add Circle')) + self.geo_add_arc_btn = self.geo_edit_toolbar.addAction( + QtGui.QIcon(self.app.resource_location + '/arc32.png'), _('Add Arc')) + self.geo_add_rectangle_btn = self.geo_edit_toolbar.addAction( + QtGui.QIcon(self.app.resource_location + '/rectangle32.png'), _('Add Rectangle')) self.geo_edit_toolbar.addSeparator() - self.geo_add_path_btn = self.geo_edit_toolbar.addAction(QtGui.QIcon('share/path32.png'), _('Add Path')) - self.geo_add_polygon_btn = self.geo_edit_toolbar.addAction(QtGui.QIcon('share/polygon32.png'), _('Add Polygon')) + self.geo_add_path_btn = self.geo_edit_toolbar.addAction( + QtGui.QIcon(self.app.resource_location + '/path32.png'), _('Add Path')) + self.geo_add_polygon_btn = self.geo_edit_toolbar.addAction( + QtGui.QIcon(self.app.resource_location + '/polygon32.png'), _('Add Polygon')) self.geo_edit_toolbar.addSeparator() - self.geo_add_text_btn = self.geo_edit_toolbar.addAction(QtGui.QIcon('share/text32.png'), _('Add Text')) - self.geo_add_buffer_btn = self.geo_edit_toolbar.addAction(QtGui.QIcon('share/buffer16-2.png'), _('Add Buffer')) - self.geo_add_paint_btn = self.geo_edit_toolbar.addAction(QtGui.QIcon('share/paint20_1.png'), _('Paint Shape')) - self.geo_eraser_btn = self.geo_edit_toolbar.addAction(QtGui.QIcon('share/eraser26.png'), _('Eraser')) + self.geo_add_text_btn = self.geo_edit_toolbar.addAction( + QtGui.QIcon(self.app.resource_location + '/text32.png'), _('Add Text')) + self.geo_add_buffer_btn = self.geo_edit_toolbar.addAction( + QtGui.QIcon(self.app.resource_location + '/buffer16-2.png'), _('Add Buffer')) + self.geo_add_paint_btn = self.geo_edit_toolbar.addAction( + QtGui.QIcon(self.app.resource_location + '/paint20_1.png'), _('Paint Shape')) + self.geo_eraser_btn = self.geo_edit_toolbar.addAction( + QtGui.QIcon(self.app.resource_location + '/eraser26.png'), _('Eraser')) self.geo_edit_toolbar.addSeparator() - self.geo_union_btn = self.geo_edit_toolbar.addAction(QtGui.QIcon('share/union32.png'), _('Polygon Union')) - self.geo_explode_btn = self.geo_edit_toolbar.addAction(QtGui.QIcon('share/explode32.png'), _('Polygon Explode')) + self.geo_union_btn = self.geo_edit_toolbar.addAction( + QtGui.QIcon(self.app.resource_location + '/union32.png'), _('Polygon Union')) + self.geo_explode_btn = self.geo_edit_toolbar.addAction( + QtGui.QIcon(self.app.resource_location + '/explode32.png'), _('Polygon Explode')) - self.geo_intersection_btn = self.geo_edit_toolbar.addAction(QtGui.QIcon('share/intersection32.png'), - _('Polygon Intersection')) - self.geo_subtract_btn = self.geo_edit_toolbar.addAction(QtGui.QIcon('share/subtract32.png'), - _('Polygon Subtraction')) + self.geo_intersection_btn = self.geo_edit_toolbar.addAction( + QtGui.QIcon(self.app.resource_location + '/intersection32.png'), _('Polygon Intersection')) + self.geo_subtract_btn = self.geo_edit_toolbar.addAction( + QtGui.QIcon(self.app.resource_location + '/subtract32.png'), _('Polygon Subtraction')) self.geo_edit_toolbar.addSeparator() - self.geo_cutpath_btn = self.geo_edit_toolbar.addAction(QtGui.QIcon('share/cutpath32.png'), _('Cut Path')) - self.geo_copy_btn = self.geo_edit_toolbar.addAction(QtGui.QIcon('share/copy32.png'), _("Copy Shape(s)")) + self.geo_cutpath_btn = self.geo_edit_toolbar.addAction( + QtGui.QIcon(self.app.resource_location + '/cutpath32.png'), _('Cut Path')) + self.geo_copy_btn = self.geo_edit_toolbar.addAction( + QtGui.QIcon(self.app.resource_location + '/copy32.png'), _("Copy Shape(s)")) - self.geo_delete_btn = self.geo_edit_toolbar.addAction(QtGui.QIcon('share/trash32.png'), - _("Delete Shape '-'")) - self.geo_transform_btn = self.geo_edit_toolbar.addAction(QtGui.QIcon('share/transform.png'), - _("Transformations")) + self.geo_delete_btn = self.geo_edit_toolbar.addAction( + QtGui.QIcon(self.app.resource_location + '/trash32.png'), _("Delete Shape '-'")) + self.geo_transform_btn = self.geo_edit_toolbar.addAction( + QtGui.QIcon(self.app.resource_location + '/transform.png'), _("Transformations")) self.geo_edit_toolbar.addSeparator() - self.geo_move_btn = self.geo_edit_toolbar.addAction(QtGui.QIcon('share/move32.png'), _("Move Objects ")) + self.geo_move_btn = self.geo_edit_toolbar.addAction( + QtGui.QIcon(self.app.resource_location + '/move32.png'), _("Move Objects ")) # ######################################################################## # ########################## Gerber Editor Toolbar# ###################### # ######################################################################## - self.grb_select_btn = self.grb_edit_toolbar.addAction(QtGui.QIcon('share/pointer32.png'), _("Select")) - self.grb_add_pad_btn = self.grb_edit_toolbar.addAction(QtGui.QIcon('share/aperture32.png'), _("Add Pad")) - self.add_pad_ar_btn = self.grb_edit_toolbar.addAction(QtGui.QIcon('share/padarray32.png'), _('Add Pad Array')) - self.grb_add_track_btn = self.grb_edit_toolbar.addAction(QtGui.QIcon('share/track32.png'), _("Add Track")) - self.grb_add_region_btn = self.grb_edit_toolbar.addAction(QtGui.QIcon('share/polygon32.png'), _("Add Region")) - self.grb_convert_poly_btn = self.grb_edit_toolbar.addAction(QtGui.QIcon('share/poligonize32.png'), - _("Poligonize")) + self.grb_select_btn = self.grb_edit_toolbar.addAction( + QtGui.QIcon(self.app.resource_location + '/pointer32.png'), _("Select")) + self.grb_add_pad_btn = self.grb_edit_toolbar.addAction( + QtGui.QIcon(self.app.resource_location + '/aperture32.png'), _("Add Pad")) + self.add_pad_ar_btn = self.grb_edit_toolbar.addAction( + QtGui.QIcon(self.app.resource_location + '/padarray32.png'), _('Add Pad Array')) + self.grb_add_track_btn = self.grb_edit_toolbar.addAction( + QtGui.QIcon(self.app.resource_location + '/track32.png'), _("Add Track")) + self.grb_add_region_btn = self.grb_edit_toolbar.addAction( + QtGui.QIcon(self.app.resource_location + '/polygon32.png'), _("Add Region")) + self.grb_convert_poly_btn = self.grb_edit_toolbar.addAction( + QtGui.QIcon(self.app.resource_location + '/poligonize32.png'), _("Poligonize")) - self.grb_add_semidisc_btn = self.grb_edit_toolbar.addAction(QtGui.QIcon('share/semidisc32.png'), _("SemiDisc")) - self.grb_add_disc_btn = self.grb_edit_toolbar.addAction(QtGui.QIcon('share/disc32.png'), _("Disc")) + self.grb_add_semidisc_btn = self.grb_edit_toolbar.addAction( + QtGui.QIcon(self.app.resource_location + '/semidisc32.png'), _("SemiDisc")) + self.grb_add_disc_btn = self.grb_edit_toolbar.addAction( + QtGui.QIcon(self.app.resource_location + '/disc32.png'), _("Disc")) self.grb_edit_toolbar.addSeparator() - self.aperture_buffer_btn = self.grb_edit_toolbar.addAction(QtGui.QIcon('share/buffer16-2.png'), _('Buffer')) - self.aperture_scale_btn = self.grb_edit_toolbar.addAction(QtGui.QIcon('share/scale32.png'), _('Scale')) - self.aperture_markarea_btn = self.grb_edit_toolbar.addAction(QtGui.QIcon('share/markarea32.png'), - _('Mark Area')) + self.aperture_buffer_btn = self.grb_edit_toolbar.addAction( + QtGui.QIcon(self.app.resource_location + '/buffer16-2.png'), _('Buffer')) + self.aperture_scale_btn = self.grb_edit_toolbar.addAction( + QtGui.QIcon(self.app.resource_location + '/scale32.png'), _('Scale')) + self.aperture_markarea_btn = self.grb_edit_toolbar.addAction( + QtGui.QIcon(self.app.resource_location + '/markarea32.png'), _('Mark Area')) - self.aperture_eraser_btn = self.grb_edit_toolbar.addAction(QtGui.QIcon('share/eraser26.png'), _('Eraser')) + self.aperture_eraser_btn = self.grb_edit_toolbar.addAction( + QtGui.QIcon(self.app.resource_location + '/eraser26.png'), _('Eraser')) self.grb_edit_toolbar.addSeparator() - self.aperture_copy_btn = self.grb_edit_toolbar.addAction(QtGui.QIcon('share/copy32.png'), _("Copy")) - self.aperture_delete_btn = self.grb_edit_toolbar.addAction(QtGui.QIcon('share/trash32.png'), - _("Delete")) - self.grb_transform_btn = self.grb_edit_toolbar.addAction(QtGui.QIcon('share/transform.png'), - _("Transformations")) + self.aperture_copy_btn = self.grb_edit_toolbar.addAction( + QtGui.QIcon(self.app.resource_location + '/copy32.png'), _("Copy")) + self.aperture_delete_btn = self.grb_edit_toolbar.addAction( + QtGui.QIcon(self.app.resource_location + '/trash32.png'), _("Delete")) + self.grb_transform_btn = self.grb_edit_toolbar.addAction( + QtGui.QIcon(self.app.resource_location + '/transform.png'), _("Transformations")) self.grb_edit_toolbar.addSeparator() - self.aperture_move_btn = self.grb_edit_toolbar.addAction(QtGui.QIcon('share/move32.png'), _("Move")) + self.aperture_move_btn = self.grb_edit_toolbar.addAction( + QtGui.QIcon(self.app.resource_location + '/move32.png'), _("Move")) # ######################################################################## # ########################## Snap Toolbar# ############################### # ######################################################################## # Snap GRID toolbar is always active to facilitate usage of measurements done on GRID - self.grid_snap_btn = self.snap_toolbar.addAction(QtGui.QIcon('share/grid32.png'), _('Snap to grid')) + self.grid_snap_btn = self.snap_toolbar.addAction( + QtGui.QIcon(self.app.resource_location + '/grid32.png'), _('Snap to grid')) self.grid_gap_x_entry = FCEntry2() self.grid_gap_x_entry.setMaximumWidth(70) self.grid_gap_x_entry.setToolTip(_("Grid X snapping distance")) @@ -880,7 +995,8 @@ class FlatCAMGUI(QtWidgets.QMainWindow): self.ois_grid = OptionalInputSection(self.grid_gap_link_cb, [self.grid_gap_y_entry], logic=False) - self.corner_snap_btn = self.snap_toolbar.addAction(QtGui.QIcon('share/corner32.png'), _('Snap to corner')) + self.corner_snap_btn = self.snap_toolbar.addAction( + QtGui.QIcon(self.app.resource_location + '/corner32.png'), _('Snap to corner')) self.snap_max_dist_entry = FCEntry() self.snap_max_dist_entry.setMaximumWidth(70) @@ -1887,97 +2003,148 @@ class FlatCAMGUI(QtWidgets.QMainWindow): # ######################################################################## self.popMenu = FCMenu() - self.popmenu_disable = self.popMenu.addAction(QtGui.QIcon('share/disable32.png'), _("Toggle Visibility")) - self.popmenu_panel_toggle = self.popMenu.addAction(QtGui.QIcon('share/notebook16.png'), _("Toggle Panel")) + self.popmenu_disable = self.popMenu.addAction( + QtGui.QIcon(self.app.resource_location + '/disable32.png'), _("Toggle Visibility")) + self.popmenu_panel_toggle = self.popMenu.addAction( + QtGui.QIcon(self.app.resource_location + '/notebook16.png'), _("Toggle Panel")) self.popMenu.addSeparator() - self.cmenu_newmenu = self.popMenu.addMenu(QtGui.QIcon('share/file32.png'), _("New")) - self.popmenu_new_geo = self.cmenu_newmenu.addAction(QtGui.QIcon('share/new_geo32_bis.png'), _("Geometry")) - self.popmenu_new_grb = self.cmenu_newmenu.addAction(QtGui.QIcon('share/flatcam_icon32.png'), "Gerber") - self.popmenu_new_exc = self.cmenu_newmenu.addAction(QtGui.QIcon('share/new_exc32.png'), _("Excellon")) + self.cmenu_newmenu = self.popMenu.addMenu( + QtGui.QIcon(self.app.resource_location + '/file32.png'), _("New")) + self.popmenu_new_geo = self.cmenu_newmenu.addAction( + QtGui.QIcon(self.app.resource_location + '/new_geo32_bis.png'), _("Geometry")) + self.popmenu_new_grb = self.cmenu_newmenu.addAction( + QtGui.QIcon(self.app.resource_location + '/flatcam_icon32.png'), "Gerber") + self.popmenu_new_exc = self.cmenu_newmenu.addAction( + QtGui.QIcon(self.app.resource_location + '/new_exc32.png'), _("Excellon")) self.cmenu_newmenu.addSeparator() - self.popmenu_new_prj = self.cmenu_newmenu.addAction(QtGui.QIcon('share/file16.png'), _("Project")) + self.popmenu_new_prj = self.cmenu_newmenu.addAction( + QtGui.QIcon(self.app.resource_location + '/file16.png'), _("Project")) self.popMenu.addSeparator() - self.cmenu_gridmenu = self.popMenu.addMenu(QtGui.QIcon('share/grid32_menu.png'), _("Grids")) + self.cmenu_gridmenu = self.popMenu.addMenu( + QtGui.QIcon(self.app.resource_location + '/grid32_menu.png'), _("Grids")) - self.cmenu_viewmenu = self.popMenu.addMenu(QtGui.QIcon('share/view64.png'), _("View")) - self.zoomfit = self.cmenu_viewmenu.addAction(QtGui.QIcon('share/zoom_fit32.png'), _("Zoom Fit")) - self.clearplot = self.cmenu_viewmenu.addAction(QtGui.QIcon('share/clear_plot32.png'), _("Clear Plot")) - self.replot = self.cmenu_viewmenu.addAction(QtGui.QIcon('share/replot32.png'), _("Replot")) + self.cmenu_viewmenu = self.popMenu.addMenu( + QtGui.QIcon(self.app.resource_location + '/view64.png'), _("View")) + self.zoomfit = self.cmenu_viewmenu.addAction( + QtGui.QIcon(self.app.resource_location + '/zoom_fit32.png'), _("Zoom Fit")) + self.clearplot = self.cmenu_viewmenu.addAction( + QtGui.QIcon(self.app.resource_location + '/clear_plot32.png'), _("Clear Plot")) + self.replot = self.cmenu_viewmenu.addAction( + QtGui.QIcon(self.app.resource_location + '/replot32.png'), _("Replot")) self.popMenu.addSeparator() - self.g_editor_cmenu = self.popMenu.addMenu(QtGui.QIcon('share/draw32.png'), _("Geo Editor")) - self.draw_line = self.g_editor_cmenu.addAction(QtGui.QIcon('share/path32.png'), _("Path")) - self.draw_rect = self.g_editor_cmenu.addAction(QtGui.QIcon('share/rectangle32.png'), _("Rectangle")) + self.g_editor_cmenu = self.popMenu.addMenu( + QtGui.QIcon(self.app.resource_location + '/draw32.png'), _("Geo Editor")) + self.draw_line = self.g_editor_cmenu.addAction( + QtGui.QIcon(self.app.resource_location + '/path32.png'), _("Path")) + self.draw_rect = self.g_editor_cmenu.addAction( + QtGui.QIcon(self.app.resource_location + '/rectangle32.png'), _("Rectangle")) self.g_editor_cmenu.addSeparator() - self.draw_circle = self.g_editor_cmenu.addAction(QtGui.QIcon('share/circle32.png'), _("Circle")) - self.draw_poly = self.g_editor_cmenu.addAction(QtGui.QIcon('share/polygon32.png'), _("Polygon")) - self.draw_arc = self.g_editor_cmenu.addAction(QtGui.QIcon('share/arc32.png'), _("Arc")) + self.draw_circle = self.g_editor_cmenu.addAction( + QtGui.QIcon(self.app.resource_location + '/circle32.png'), _("Circle")) + self.draw_poly = self.g_editor_cmenu.addAction( + QtGui.QIcon(self.app.resource_location + '/polygon32.png'), _("Polygon")) + self.draw_arc = self.g_editor_cmenu.addAction( + QtGui.QIcon(self.app.resource_location + '/arc32.png'), _("Arc")) self.g_editor_cmenu.addSeparator() - self.draw_text = self.g_editor_cmenu.addAction(QtGui.QIcon('share/text32.png'), _("Text")) - self.draw_buffer = self.g_editor_cmenu.addAction(QtGui.QIcon('share/buffer16-2.png'), _("Buffer")) - self.draw_paint = self.g_editor_cmenu.addAction(QtGui.QIcon('share/paint20_1.png'), _("Paint")) - self.draw_eraser = self.g_editor_cmenu.addAction(QtGui.QIcon('share/eraser26.png'), _("Eraser")) + self.draw_text = self.g_editor_cmenu.addAction( + QtGui.QIcon(self.app.resource_location + '/text32.png'), _("Text")) + self.draw_buffer = self.g_editor_cmenu.addAction( + QtGui.QIcon(self.app.resource_location + '/buffer16-2.png'), _("Buffer")) + self.draw_paint = self.g_editor_cmenu.addAction( + QtGui.QIcon(self.app.resource_location + '/paint20_1.png'), _("Paint")) + self.draw_eraser = self.g_editor_cmenu.addAction( + QtGui.QIcon(self.app.resource_location + '/eraser26.png'), _("Eraser")) self.g_editor_cmenu.addSeparator() - self.draw_union = self.g_editor_cmenu.addAction(QtGui.QIcon('share/union32.png'), _("Union")) - self.draw_intersect = self.g_editor_cmenu.addAction(QtGui.QIcon('share/intersection32.png'), _("Intersection")) - self.draw_substract = self.g_editor_cmenu.addAction(QtGui.QIcon('share/subtract32.png'), _("Subtraction")) - self.draw_cut = self.g_editor_cmenu.addAction(QtGui.QIcon('share/cutpath32.png'), _("Cut")) - self.draw_transform = self.g_editor_cmenu.addAction(QtGui.QIcon('share/transform.png'), _("Transformations")) + self.draw_union = self.g_editor_cmenu.addAction( + QtGui.QIcon(self.app.resource_location + '/union32.png'), _("Union")) + self.draw_intersect = self.g_editor_cmenu.addAction( + QtGui.QIcon(self.app.resource_location + '/intersection32.png'), _("Intersection")) + self.draw_substract = self.g_editor_cmenu.addAction( + QtGui.QIcon(self.app.resource_location + '/subtract32.png'), _("Subtraction")) + self.draw_cut = self.g_editor_cmenu.addAction( + QtGui.QIcon(self.app.resource_location + '/cutpath32.png'), _("Cut")) + self.draw_transform = self.g_editor_cmenu.addAction( + QtGui.QIcon(self.app.resource_location + '/transform.png'), _("Transformations")) self.g_editor_cmenu.addSeparator() - self.draw_move = self.g_editor_cmenu.addAction(QtGui.QIcon('share/move32.png'), _("Move")) + self.draw_move = self.g_editor_cmenu.addAction( + QtGui.QIcon(self.app.resource_location + '/move32.png'), _("Move")) - self.grb_editor_cmenu = self.popMenu.addMenu(QtGui.QIcon('share/draw32.png'), _("Gerber Editor")) - self.grb_draw_pad = self.grb_editor_cmenu.addAction(QtGui.QIcon('share/aperture32.png'), _("Pad")) - self.grb_draw_pad_array = self.grb_editor_cmenu.addAction(QtGui.QIcon('share/padarray32.png'), _("Pad Array")) + self.grb_editor_cmenu = self.popMenu.addMenu( + QtGui.QIcon(self.app.resource_location + '/draw32.png'), _("Gerber Editor")) + self.grb_draw_pad = self.grb_editor_cmenu.addAction( + QtGui.QIcon(self.app.resource_location + '/aperture32.png'), _("Pad")) + self.grb_draw_pad_array = self.grb_editor_cmenu.addAction( + QtGui.QIcon(self.app.resource_location + '/padarray32.png'), _("Pad Array")) self.grb_editor_cmenu.addSeparator() - self.grb_draw_track = self.grb_editor_cmenu.addAction(QtGui.QIcon('share/track32.png'), _("Track")) - self.grb_draw_region = self.grb_editor_cmenu.addAction(QtGui.QIcon('share/polygon32.png'), _("Region")) - self.grb_draw_poligonize = self.grb_editor_cmenu.addAction(QtGui.QIcon('share/poligonize32.png'), - _("Poligonize")) - self.grb_draw_semidisc = self.grb_editor_cmenu.addAction(QtGui.QIcon('share/semidisc32.png'), _("SemiDisc")) - self.grb_draw_disc = self.grb_editor_cmenu.addAction(QtGui.QIcon('share/disc32.png'), _("Disc")) + self.grb_draw_track = self.grb_editor_cmenu.addAction( + QtGui.QIcon(self.app.resource_location + '/track32.png'), _("Track")) + self.grb_draw_region = self.grb_editor_cmenu.addAction( + QtGui.QIcon(self.app.resource_location + '/polygon32.png'), _("Region")) + self.grb_draw_poligonize = self.grb_editor_cmenu.addAction( + QtGui.QIcon(self.app.resource_location + '/poligonize32.png'), _("Poligonize")) + self.grb_draw_semidisc = self.grb_editor_cmenu.addAction( + QtGui.QIcon(self.app.resource_location + '/semidisc32.png'), _("SemiDisc")) + self.grb_draw_disc = self.grb_editor_cmenu.addAction( + QtGui.QIcon(self.app.resource_location + '/disc32.png'), _("Disc")) self.grb_editor_cmenu.addSeparator() - self.grb_draw_buffer = self.grb_editor_cmenu.addAction(QtGui.QIcon('share/buffer16-2.png'), _("Buffer")) - self.grb_draw_scale = self.grb_editor_cmenu.addAction(QtGui.QIcon('share/scale32.png'), _("Scale")) - self.grb_draw_markarea = self.grb_editor_cmenu.addAction(QtGui.QIcon('share/markarea32.png'), _("Mark Area")) - self.grb_draw_eraser = self.grb_editor_cmenu.addAction(QtGui.QIcon('share/eraser26.png'), _("Eraser")) + self.grb_draw_buffer = self.grb_editor_cmenu.addAction( + QtGui.QIcon(self.app.resource_location + '/buffer16-2.png'), _("Buffer")) + self.grb_draw_scale = self.grb_editor_cmenu.addAction( + QtGui.QIcon(self.app.resource_location + '/scale32.png'), _("Scale")) + self.grb_draw_markarea = self.grb_editor_cmenu.addAction( + QtGui.QIcon(self.app.resource_location + '/markarea32.png'), _("Mark Area")) + self.grb_draw_eraser = self.grb_editor_cmenu.addAction( + QtGui.QIcon(self.app.resource_location + '/eraser26.png'), _("Eraser")) self.grb_editor_cmenu.addSeparator() - self.grb_draw_transformations = self.grb_editor_cmenu.addAction(QtGui.QIcon('share/transform.png'), - _("Transformations")) + self.grb_draw_transformations = self.grb_editor_cmenu.addAction( + QtGui.QIcon(self.app.resource_location + '/transform.png'), _("Transformations")) - self.e_editor_cmenu = self.popMenu.addMenu(QtGui.QIcon('share/drill32.png'), _("Exc Editor")) - self.drill = self.e_editor_cmenu.addAction(QtGui.QIcon('share/drill32.png'), _("Add Drill")) - self.drill_array = self.e_editor_cmenu.addAction(QtGui.QIcon('share/addarray32.png'), _("Add Drill Array")) + self.e_editor_cmenu = self.popMenu.addMenu( + QtGui.QIcon(self.app.resource_location + '/drill32.png'), _("Exc Editor")) + self.drill = self.e_editor_cmenu.addAction( + QtGui.QIcon(self.app.resource_location + '/drill32.png'), _("Add Drill")) + self.drill_array = self.e_editor_cmenu.addAction( + QtGui.QIcon(self.app.resource_location + '/addarray32.png'), _("Add Drill Array")) self.e_editor_cmenu.addSeparator() - self.slot = self.e_editor_cmenu.addAction(QtGui.QIcon('share/slot26.png'), _("Add Slot")) - self.slot_array = self.e_editor_cmenu.addAction(QtGui.QIcon('share/slot_array26.png'), _("Add Slot Array")) + self.slot = self.e_editor_cmenu.addAction( + QtGui.QIcon(self.app.resource_location + '/slot26.png'), _("Add Slot")) + self.slot_array = self.e_editor_cmenu.addAction( + QtGui.QIcon(self.app.resource_location + '/slot_array26.png'), _("Add Slot Array")) self.e_editor_cmenu.addSeparator() - self.drill_resize = self.e_editor_cmenu.addAction(QtGui.QIcon('share/resize16.png'), _("Resize Drill")) + self.drill_resize = self.e_editor_cmenu.addAction( + QtGui.QIcon(self.app.resource_location + '/resize16.png'), _("Resize Drill")) self.popMenu.addSeparator() - self.popmenu_copy = self.popMenu.addAction(QtGui.QIcon('share/copy32.png'), _("Copy")) - self.popmenu_delete = self.popMenu.addAction(QtGui.QIcon('share/delete32.png'), _("Delete")) - self.popmenu_edit = self.popMenu.addAction(QtGui.QIcon('share/edit32.png'), _("Edit")) - self.popmenu_save = self.popMenu.addAction(QtGui.QIcon('share/floppy32.png'), _("Close Editor")) + self.popmenu_copy = self.popMenu.addAction( + QtGui.QIcon(self.app.resource_location + '/copy32.png'), _("Copy")) + self.popmenu_delete = self.popMenu.addAction( + QtGui.QIcon(self.app.resource_location + '/delete32.png'), _("Delete")) + self.popmenu_edit = self.popMenu.addAction( + QtGui.QIcon(self.app.resource_location + '/edit32.png'), _("Edit")) + self.popmenu_save = self.popMenu.addAction( + QtGui.QIcon(self.app.resource_location + '/floppy32.png'), _("Close Editor")) self.popmenu_save.setVisible(False) self.popMenu.addSeparator() - self.popmenu_move = self.popMenu.addAction(QtGui.QIcon('share/move32.png'), _("Move")) - self.popmenu_properties = self.popMenu.addAction(QtGui.QIcon('share/properties32.png'), _("Properties")) + self.popmenu_move = self.popMenu.addAction( + QtGui.QIcon(self.app.resource_location + '/move32.png'), _("Move")) + self.popmenu_properties = self.popMenu.addAction( + QtGui.QIcon(self.app.resource_location + '/properties32.png'), _("Properties")) # ######################################################################## # ########################## INFO BAR # ################################## # ######################################################################## self.infobar = self.statusBar() - self.fcinfo = FlatCAMInfoBar() + self.fcinfo = FlatCAMInfoBar(app=self.app) self.infobar.addWidget(self.fcinfo, stretch=1) self.rel_position_label = QtWidgets.QLabel( @@ -2006,12 +2173,12 @@ class FlatCAMGUI(QtWidgets.QMainWindow): # ########################## SET GUI Elements # ########################## # ######################################################################## self.app_icon = QtGui.QIcon() - self.app_icon.addFile('share/flatcam_icon16.png', QtCore.QSize(16, 16)) - self.app_icon.addFile('share/flatcam_icon24.png', QtCore.QSize(24, 24)) - self.app_icon.addFile('share/flatcam_icon32.png', QtCore.QSize(32, 32)) - self.app_icon.addFile('share/flatcam_icon48.png', QtCore.QSize(48, 48)) - self.app_icon.addFile('share/flatcam_icon128.png', QtCore.QSize(128, 128)) - self.app_icon.addFile('share/flatcam_icon256.png', QtCore.QSize(256, 256)) + self.app_icon.addFile(self.app.resource_location + '/flatcam_icon16.png', QtCore.QSize(16, 16)) + self.app_icon.addFile(self.app.resource_location + '/flatcam_icon24.png', QtCore.QSize(24, 24)) + self.app_icon.addFile(self.app.resource_location + '/flatcam_icon32.png', QtCore.QSize(32, 32)) + self.app_icon.addFile(self.app.resource_location + '/flatcam_icon48.png', QtCore.QSize(48, 48)) + self.app_icon.addFile(self.app.resource_location + '/flatcam_icon128.png', QtCore.QSize(128, 128)) + self.app_icon.addFile(self.app.resource_location + '/flatcam_icon256.png', QtCore.QSize(256, 256)) self.setWindowIcon(self.app_icon) self.setGeometry(100, 100, 1024, 650) @@ -2146,161 +2313,227 @@ class FlatCAMGUI(QtWidgets.QMainWindow): """ # ## File Toolbar # ## - self.file_open_gerber_btn = self.toolbarfile.addAction(QtGui.QIcon('share/flatcam_icon32.png'), - _("Open Gerber")) - self.file_open_excellon_btn = self.toolbarfile.addAction(QtGui.QIcon('share/drill32.png'), _("Open Excellon")) + self.file_open_gerber_btn = self.toolbarfile.addAction( + QtGui.QIcon(self.app.resource_location + '/flatcam_icon32.png'), _("Open Gerber")) + self.file_open_excellon_btn = self.toolbarfile.addAction( + QtGui.QIcon(self.app.resource_location + '/drill32.png'), _("Open Excellon")) self.toolbarfile.addSeparator() - self.file_open_btn = self.toolbarfile.addAction(QtGui.QIcon('share/folder32.png'), _("Open project")) - self.file_save_btn = self.toolbarfile.addAction(QtGui.QIcon('share/project_save32.png'), _("Save project")) + self.file_open_btn = self.toolbarfile.addAction( + QtGui.QIcon(self.app.resource_location + '/folder32.png'), _("Open project")) + self.file_save_btn = self.toolbarfile.addAction( + QtGui.QIcon(self.app.resource_location + '/project_save32.png'), _("Save project")) # ## Edit Toolbar # ## - self.newgeo_btn = self.toolbargeo.addAction(QtGui.QIcon('share/new_file_geo32.png'), _("New Blank Geometry")) - self.newgrb_btn = self.toolbargeo.addAction(QtGui.QIcon('share/new_file_grb32.png'), _("New Blank Gerber")) - self.newexc_btn = self.toolbargeo.addAction(QtGui.QIcon('share/new_file_exc32.png'), _("New Blank Excellon")) + self.newgeo_btn = self.toolbargeo.addAction( + QtGui.QIcon(self.app.resource_location + '/new_file_geo32.png'), _("New Blank Geometry")) + self.newgrb_btn = self.toolbargeo.addAction( + QtGui.QIcon(self.app.resource_location + '/new_file_grb32.png'), _("New Blank Gerber")) + self.newexc_btn = self.toolbargeo.addAction( + QtGui.QIcon(self.app.resource_location + '/new_file_exc32.png'), _("New Blank Excellon")) self.toolbargeo.addSeparator() - self.editgeo_btn = self.toolbargeo.addAction(QtGui.QIcon('share/edit32.png'), _("Editor")) + self.editgeo_btn = self.toolbargeo.addAction( + QtGui.QIcon(self.app.resource_location + '/edit32.png'), _("Editor")) self.update_obj_btn = self.toolbargeo.addAction( - QtGui.QIcon('share/close_edit_file32.png'), _("Save Object and close the Editor") + QtGui.QIcon(self.app.resource_location + '/close_edit_file32.png'), + _("Save Object and close the Editor") ) self.toolbargeo.addSeparator() - self.copy_btn = self.toolbargeo.addAction(QtGui.QIcon('share/copy_file32.png'), _("Copy")) - self.delete_btn = self.toolbargeo.addAction(QtGui.QIcon('share/delete_file32.png'), _("&Delete")) + self.copy_btn = self.toolbargeo.addAction( + QtGui.QIcon(self.app.resource_location + '/copy_file32.png'), _("Copy")) + self.delete_btn = self.toolbargeo.addAction( + QtGui.QIcon(self.app.resource_location + '/delete_file32.png'), _("&Delete")) self.toolbargeo.addSeparator() - self.distance_btn = self.toolbargeo.addAction(QtGui.QIcon('share/distance32.png'), _("Distance Tool")) - self.distance_min_btn = self.toolbargeo.addAction(QtGui.QIcon('share/distance_min32.png'), - _("Distance Min Tool")) - self.origin_btn = self.toolbargeo.addAction(QtGui.QIcon('share/origin32.png'), _('Set Origin')) - self.jmp_btn = self.toolbargeo.addAction(QtGui.QIcon('share/jump_to16.png'), _('Jump to Location')) + self.distance_btn = self.toolbargeo.addAction( + QtGui.QIcon(self.app.resource_location + '/distance32.png'), _("Distance Tool")) + self.distance_min_btn = self.toolbargeo.addAction( + QtGui.QIcon(self.app.resource_location + '/distance_min32.png'), _("Distance Min Tool")) + self.origin_btn = self.toolbargeo.addAction( + QtGui.QIcon(self.app.resource_location + '/origin32.png'), _('Set Origin')) + self.jmp_btn = self.toolbargeo.addAction( + QtGui.QIcon(self.app.resource_location + '/jump_to16.png'), _('Jump to Location')) # ## View Toolbar # ## - self.replot_btn = self.toolbarview.addAction(QtGui.QIcon('share/replot32.png'), _("&Replot")) - self.clear_plot_btn = self.toolbarview.addAction(QtGui.QIcon('share/clear_plot32.png'), _("&Clear plot")) - self.zoom_in_btn = self.toolbarview.addAction(QtGui.QIcon('share/zoom_in32.png'), _("Zoom In")) - self.zoom_out_btn = self.toolbarview.addAction(QtGui.QIcon('share/zoom_out32.png'), _("Zoom Out")) - self.zoom_fit_btn = self.toolbarview.addAction(QtGui.QIcon('share/zoom_fit32.png'), _("Zoom Fit")) + self.replot_btn = self.toolbarview.addAction( + QtGui.QIcon(self.app.resource_location + '/replot32.png'), _("&Replot")) + self.clear_plot_btn = self.toolbarview.addAction( + QtGui.QIcon(self.app.resource_location + '/clear_plot32.png'), _("&Clear plot")) + self.zoom_in_btn = self.toolbarview.addAction( + QtGui.QIcon(self.app.resource_location + '/zoom_in32.png'), _("Zoom In")) + self.zoom_out_btn = self.toolbarview.addAction( + QtGui.QIcon(self.app.resource_location + '/zoom_out32.png'), _("Zoom Out")) + self.zoom_fit_btn = self.toolbarview.addAction( + QtGui.QIcon(self.app.resource_location + '/zoom_fit32.png'), _("Zoom Fit")) # self.toolbarview.setVisible(False) # ## Shell Toolbar # ## - self.shell_btn = self.toolbarshell.addAction(QtGui.QIcon('share/shell32.png'), _("&Command Line")) - self.new_script_btn = self.toolbarshell.addAction(QtGui.QIcon('share/script_new24.png'), _('New Script ...')) - self.open_script_btn = self.toolbarshell.addAction(QtGui.QIcon('share/open_script32.png'), _('Open Script ...')) - self.run_script_btn = self.toolbarshell.addAction(QtGui.QIcon('share/script16.png'), _('Run Script ...')) + self.shell_btn = self.toolbarshell.addAction( + QtGui.QIcon(self.app.resource_location + '/shell32.png'), _("&Command Line")) + self.new_script_btn = self.toolbarshell.addAction( + QtGui.QIcon(self.app.resource_location + '/script_new24.png'), _('New Script ...')) + self.open_script_btn = self.toolbarshell.addAction( + QtGui.QIcon(self.app.resource_location + '/open_script32.png'), _('Open Script ...')) + self.run_script_btn = self.toolbarshell.addAction( + QtGui.QIcon(self.app.resource_location + '/script16.png'), _('Run Script ...')) # ## Tools Toolbar # ## - self.dblsided_btn = self.toolbartools.addAction(QtGui.QIcon('share/doubleside32.png'), _("2Sided Tool")) - self.cutout_btn = self.toolbartools.addAction(QtGui.QIcon('share/cut16_bis.png'), _("&Cutout Tool")) - self.ncc_btn = self.toolbartools.addAction(QtGui.QIcon('share/ncc16.png'), _("NCC Tool")) - self.paint_btn = self.toolbartools.addAction(QtGui.QIcon('share/paint20_1.png'), _("Paint Tool")) + self.dblsided_btn = self.toolbartools.addAction( + QtGui.QIcon(self.app.resource_location + '/doubleside32.png'), _("2Sided Tool")) + self.cutout_btn = self.toolbartools.addAction( + QtGui.QIcon(self.app.resource_location + '/cut16_bis.png'), _("&Cutout Tool")) + self.ncc_btn = self.toolbartools.addAction( + QtGui.QIcon(self.app.resource_location + '/ncc16.png'), _("NCC Tool")) + self.paint_btn = self.toolbartools.addAction( + QtGui.QIcon(self.app.resource_location + '/paint20_1.png'), _("Paint Tool")) self.toolbartools.addSeparator() - self.panelize_btn = self.toolbartools.addAction(QtGui.QIcon('share/panelize32.png'), _("Panel Tool")) - self.film_btn = self.toolbartools.addAction(QtGui.QIcon('share/film16.png'), _("Film Tool")) - self.solder_btn = self.toolbartools.addAction(QtGui.QIcon('share/solderpastebis32.png'), + self.panelize_btn = self.toolbartools.addAction( + QtGui.QIcon(self.app.resource_location + '/panelize32.png'), _("Panel Tool")) + self.film_btn = self.toolbartools.addAction( + QtGui.QIcon(self.app.resource_location + '/film16.png'), _("Film Tool")) + self.solder_btn = self.toolbartools.addAction( + QtGui.QIcon(self.app.resource_location + '/solderpastebis32.png'), _("SolderPaste Tool")) - self.sub_btn = self.toolbartools.addAction(QtGui.QIcon('share/sub32.png'), _("Subtract Tool")) + self.sub_btn = self.toolbartools.addAction( + QtGui.QIcon(self.app.resource_location + '/sub32.png'), _("Subtract Tool")) self.toolbartools.addSeparator() - self.calculators_btn = self.toolbartools.addAction(QtGui.QIcon('share/calculator24.png'), - _("Calculators Tool")) - self.transform_btn = self.toolbartools.addAction(QtGui.QIcon('share/transform.png'), _("Transform Tool")) - self.qrcode_btn = self.toolbartools.addAction(QtGui.QIcon('share/qrcode32.png'), _("QRCode Tool")) - self.copperfill_btn = self.toolbartools.addAction(QtGui.QIcon('share/copperfill32.png'), - _("Copper Thieving Tool")) + self.calculators_btn = self.toolbartools.addAction( + QtGui.QIcon(self.app.resource_location + '/calculator24.png'), _("Calculators Tool")) + self.transform_btn = self.toolbartools.addAction( + QtGui.QIcon(self.app.resource_location + '/transform.png'), _("Transform Tool")) + self.qrcode_btn = self.toolbartools.addAction( + QtGui.QIcon(self.app.resource_location + '/qrcode32.png'), _("QRCode Tool")) + self.copperfill_btn = self.toolbartools.addAction( + QtGui.QIcon(self.app.resource_location + '/copperfill32.png'), _("Copper Thieving Tool")) - self.fiducials_btn = self.toolbartools.addAction(QtGui.QIcon('share/fiducials_32.png'), _("Fiducials Tool")) - self.cal_btn = self.toolbartools.addAction(QtGui.QIcon('share/calibrate_32.png'), _("Calibration Tool")) + self.fiducials_btn = self.toolbartools.addAction( + QtGui.QIcon(self.app.resource_location + '/fiducials_32.png'), _("Fiducials Tool")) + self.cal_btn = self.toolbartools.addAction( + QtGui.QIcon(self.app.resource_location + '/calibrate_32.png'), _("Calibration Tool")) # ## Excellon Editor Toolbar # ## - self.select_drill_btn = self.exc_edit_toolbar.addAction(QtGui.QIcon('share/pointer32.png'), _("Select")) - self.add_drill_btn = self.exc_edit_toolbar.addAction(QtGui.QIcon('share/plus16.png'), _('Add Drill Hole')) + self.select_drill_btn = self.exc_edit_toolbar.addAction( + QtGui.QIcon(self.app.resource_location + '/pointer32.png'), _("Select")) + self.add_drill_btn = self.exc_edit_toolbar.addAction( + QtGui.QIcon(self.app.resource_location + '/plus16.png'), _('Add Drill Hole')) self.add_drill_array_btn = self.exc_edit_toolbar.addAction( - QtGui.QIcon('share/addarray16.png'), _('Add Drill Hole Array')) - self.resize_drill_btn = self.exc_edit_toolbar.addAction(QtGui.QIcon('share/resize16.png'), _('Resize Drill')) - self.add_slot_btn = self.exc_edit_toolbar.addAction(QtGui.QIcon('share/slot26.png'), _('Add Slot')) + QtGui.QIcon(self.app.resource_location + '/addarray16.png'), _('Add Drill Hole Array')) + self.resize_drill_btn = self.exc_edit_toolbar.addAction( + QtGui.QIcon(self.app.resource_location + '/resize16.png'), _('Resize Drill')) + self.add_slot_btn = self.exc_edit_toolbar.addAction( + QtGui.QIcon(self.app.resource_location + '/slot26.png'), _('Add Slot')) self.add_slot_array_btn = self.exc_edit_toolbar.addAction( - QtGui.QIcon('share/slot_array26.png'), _('Add Slot Array')) + QtGui.QIcon(self.app.resource_location + '/slot_array26.png'), _('Add Slot Array')) self.exc_edit_toolbar.addSeparator() - self.copy_drill_btn = self.exc_edit_toolbar.addAction(QtGui.QIcon('share/copy32.png'), _('Copy Drill')) - self.delete_drill_btn = self.exc_edit_toolbar.addAction(QtGui.QIcon('share/trash32.png'), - _("Delete Drill")) + self.copy_drill_btn = self.exc_edit_toolbar.addAction( + QtGui.QIcon(self.app.resource_location + '/copy32.png'), _('Copy Drill')) + self.delete_drill_btn = self.exc_edit_toolbar.addAction( + QtGui.QIcon(self.app.resource_location + '/trash32.png'), _("Delete Drill")) self.exc_edit_toolbar.addSeparator() - self.move_drill_btn = self.exc_edit_toolbar.addAction(QtGui.QIcon('share/move32.png'), _("Move Drill")) + self.move_drill_btn = self.exc_edit_toolbar.addAction( + QtGui.QIcon(self.app.resource_location + '/move32.png'), _("Move Drill")) # ## Geometry Editor Toolbar # ## - self.geo_select_btn = self.geo_edit_toolbar.addAction(QtGui.QIcon('share/pointer32.png'), _("Select 'Esc'")) - self.geo_add_circle_btn = self.geo_edit_toolbar.addAction(QtGui.QIcon('share/circle32.png'), _('Add Circle')) - self.geo_add_arc_btn = self.geo_edit_toolbar.addAction(QtGui.QIcon('share/arc32.png'), _('Add Arc')) - self.geo_add_rectangle_btn = self.geo_edit_toolbar.addAction(QtGui.QIcon('share/rectangle32.png'), - _('Add Rectangle')) + self.geo_select_btn = self.geo_edit_toolbar.addAction( + QtGui.QIcon(self.app.resource_location + '/pointer32.png'), _("Select 'Esc'")) + self.geo_add_circle_btn = self.geo_edit_toolbar.addAction( + QtGui.QIcon(self.app.resource_location + '/circle32.png'), _('Add Circle')) + self.geo_add_arc_btn = self.geo_edit_toolbar.addAction( + QtGui.QIcon(self.app.resource_location + '/arc32.png'), _('Add Arc')) + self.geo_add_rectangle_btn = self.geo_edit_toolbar.addAction( + QtGui.QIcon(self.app.resource_location + '/rectangle32.png'), _('Add Rectangle')) self.geo_edit_toolbar.addSeparator() - self.geo_add_path_btn = self.geo_edit_toolbar.addAction(QtGui.QIcon('share/path32.png'), _('Add Path')) - self.geo_add_polygon_btn = self.geo_edit_toolbar.addAction(QtGui.QIcon('share/polygon32.png'), - _('Add Polygon')) + self.geo_add_path_btn = self.geo_edit_toolbar.addAction( + QtGui.QIcon(self.app.resource_location + '/path32.png'), _('Add Path')) + self.geo_add_polygon_btn = self.geo_edit_toolbar.addAction( + QtGui.QIcon(self.app.resource_location + '/polygon32.png'), _('Add Polygon')) self.geo_edit_toolbar.addSeparator() - self.geo_add_text_btn = self.geo_edit_toolbar.addAction(QtGui.QIcon('share/text32.png'), _('Add Text')) - self.geo_add_buffer_btn = self.geo_edit_toolbar.addAction(QtGui.QIcon('share/buffer16-2.png'), _('Add Buffer')) - self.geo_add_paint_btn = self.geo_edit_toolbar.addAction(QtGui.QIcon('share/paint20_1.png'), _('Paint Shape')) - self.geo_eraser_btn = self.geo_edit_toolbar.addAction(QtGui.QIcon('share/eraser26.png'), _('Eraser')) + self.geo_add_text_btn = self.geo_edit_toolbar.addAction( + QtGui.QIcon(self.app.resource_location + '/text32.png'), _('Add Text')) + self.geo_add_buffer_btn = self.geo_edit_toolbar.addAction( + QtGui.QIcon(self.app.resource_location + '/buffer16-2.png'), _('Add Buffer')) + self.geo_add_paint_btn = self.geo_edit_toolbar.addAction( + QtGui.QIcon(self.app.resource_location + '/paint20_1.png'), _('Paint Shape')) + self.geo_eraser_btn = self.geo_edit_toolbar.addAction( + QtGui.QIcon(self.app.resource_location + '/eraser26.png'), _('Eraser')) self.geo_edit_toolbar.addSeparator() - self.geo_union_btn = self.geo_edit_toolbar.addAction(QtGui.QIcon('share/union32.png'), _('Polygon Union')) - self.geo_explode_btn = self.geo_edit_toolbar.addAction(QtGui.QIcon('share/explode32.png'), _('Polygon Explode')) + self.geo_union_btn = self.geo_edit_toolbar.addAction( + QtGui.QIcon(self.app.resource_location + '/union32.png'), _('Polygon Union')) + self.geo_explode_btn = self.geo_edit_toolbar.addAction( + QtGui.QIcon(self.app.resource_location + '/explode32.png'), _('Polygon Explode')) - self.geo_intersection_btn = self.geo_edit_toolbar.addAction(QtGui.QIcon('share/intersection32.png'), - _('Polygon Intersection')) - self.geo_subtract_btn = self.geo_edit_toolbar.addAction(QtGui.QIcon('share/subtract32.png'), - _('Polygon Subtraction')) + self.geo_intersection_btn = self.geo_edit_toolbar.addAction( + QtGui.QIcon(self.app.resource_location + '/intersection32.png'), _('Polygon Intersection')) + self.geo_subtract_btn = self.geo_edit_toolbar.addAction( + QtGui.QIcon(self.app.resource_location + '/subtract32.png'), _('Polygon Subtraction')) self.geo_edit_toolbar.addSeparator() - self.geo_cutpath_btn = self.geo_edit_toolbar.addAction(QtGui.QIcon('share/cutpath32.png'), _('Cut Path')) - self.geo_copy_btn = self.geo_edit_toolbar.addAction(QtGui.QIcon('share/copy32.png'), _("Copy Objects")) - self.geo_delete_btn = self.geo_edit_toolbar.addAction(QtGui.QIcon('share/trash32.png'), - _("Delete Shape")) - self.geo_transform_btn = self.geo_edit_toolbar.addAction(QtGui.QIcon('share/transform.png'), - _("Transformations")) + self.geo_cutpath_btn = self.geo_edit_toolbar.addAction( + QtGui.QIcon(self.app.resource_location + '/cutpath32.png'), _('Cut Path')) + self.geo_copy_btn = self.geo_edit_toolbar.addAction( + QtGui.QIcon(self.app.resource_location + '/copy32.png'), _("Copy Objects")) + self.geo_delete_btn = self.geo_edit_toolbar.addAction( + QtGui.QIcon(self.app.resource_location + '/trash32.png'), _("Delete Shape")) + self.geo_transform_btn = self.geo_edit_toolbar.addAction( + QtGui.QIcon(self.app.resource_location + '/transform.png'), _("Transformations")) self.geo_edit_toolbar.addSeparator() - self.geo_move_btn = self.geo_edit_toolbar.addAction(QtGui.QIcon('share/move32.png'), _("Move Objects")) + self.geo_move_btn = self.geo_edit_toolbar.addAction( + QtGui.QIcon(self.app.resource_location + '/move32.png'), _("Move Objects")) # ## Gerber Editor Toolbar # ## - self.grb_select_btn = self.grb_edit_toolbar.addAction(QtGui.QIcon('share/pointer32.png'), _("Select")) - self.grb_add_pad_btn = self.grb_edit_toolbar.addAction(QtGui.QIcon('share/aperture32.png'), _("Add Pad")) - self.add_pad_ar_btn = self.grb_edit_toolbar.addAction(QtGui.QIcon('share/padarray32.png'), _('Add Pad Array')) - self.grb_add_track_btn = self.grb_edit_toolbar.addAction(QtGui.QIcon('share/track32.png'), _("Add Track")) - self.grb_add_region_btn = self.grb_edit_toolbar.addAction(QtGui.QIcon('share/polygon32.png'), _("Add Region")) - self.grb_convert_poly_btn = self.grb_edit_toolbar.addAction(QtGui.QIcon('share/poligonize32.png'), - _("Poligonize")) + self.grb_select_btn = self.grb_edit_toolbar.addAction( + QtGui.QIcon(self.app.resource_location + '/pointer32.png'), _("Select")) + self.grb_add_pad_btn = self.grb_edit_toolbar.addAction( + QtGui.QIcon(self.app.resource_location + '/aperture32.png'), _("Add Pad")) + self.add_pad_ar_btn = self.grb_edit_toolbar.addAction( + QtGui.QIcon(self.app.resource_location + '/padarray32.png'), _('Add Pad Array')) + self.grb_add_track_btn = self.grb_edit_toolbar.addAction( + QtGui.QIcon(self.app.resource_location + '/track32.png'), _("Add Track")) + self.grb_add_region_btn = self.grb_edit_toolbar.addAction( + QtGui.QIcon(self.app.resource_location + '/polygon32.png'), _("Add Region")) + self.grb_convert_poly_btn = self.grb_edit_toolbar.addAction( + QtGui.QIcon(self.app.resource_location + '/poligonize32.png'), _("Poligonize")) - self.grb_add_semidisc_btn = self.grb_edit_toolbar.addAction(QtGui.QIcon('share/semidisc32.png'), _("SemiDisc")) - self.grb_add_disc_btn = self.grb_edit_toolbar.addAction(QtGui.QIcon('share/disc32.png'), _("Disc")) + self.grb_add_semidisc_btn = self.grb_edit_toolbar.addAction( + QtGui.QIcon(self.app.resource_location + '/semidisc32.png'), _("SemiDisc")) + self.grb_add_disc_btn = self.grb_edit_toolbar.addAction( + QtGui.QIcon(self.app.resource_location + '/disc32.png'), _("Disc")) self.grb_edit_toolbar.addSeparator() - self.aperture_buffer_btn = self.grb_edit_toolbar.addAction(QtGui.QIcon('share/buffer16-2.png'), _('Buffer')) - self.aperture_scale_btn = self.grb_edit_toolbar.addAction(QtGui.QIcon('share/scale32.png'), _('Scale')) - self.aperture_markarea_btn = self.grb_edit_toolbar.addAction(QtGui.QIcon('share/markarea32.png'), - _('Mark Area')) - self.aperture_eraser_btn = self.grb_edit_toolbar.addAction(QtGui.QIcon('share/eraser26.png'), _('Eraser')) + self.aperture_buffer_btn = self.grb_edit_toolbar.addAction( + QtGui.QIcon(self.app.resource_location + '/buffer16-2.png'), _('Buffer')) + self.aperture_scale_btn = self.grb_edit_toolbar.addAction( + QtGui.QIcon(self.app.resource_location + '/scale32.png'), _('Scale')) + self.aperture_markarea_btn = self.grb_edit_toolbar.addAction( + QtGui.QIcon(self.app.resource_location + '/markarea32.png'), _('Mark Area')) + self.aperture_eraser_btn = self.grb_edit_toolbar.addAction( + QtGui.QIcon(self.app.resource_location + '/eraser26.png'), _('Eraser')) self.grb_edit_toolbar.addSeparator() - self.aperture_copy_btn = self.grb_edit_toolbar.addAction(QtGui.QIcon('share/copy32.png'), _("Copy")) - self.aperture_delete_btn = self.grb_edit_toolbar.addAction(QtGui.QIcon('share/trash32.png'), - _("Delete")) - self.grb_transform_btn = self.grb_edit_toolbar.addAction(QtGui.QIcon('share/transform.png'), - _("Transformations")) + self.aperture_copy_btn = self.grb_edit_toolbar.addAction( + QtGui.QIcon(self.app.resource_location + '/copy32.png'), _("Copy")) + self.aperture_delete_btn = self.grb_edit_toolbar.addAction( + QtGui.QIcon(self.app.resource_location + '/trash32.png'), _("Delete")) + self.grb_transform_btn = self.grb_edit_toolbar.addAction( + QtGui.QIcon(self.app.resource_location + '/transform.png'), _("Transformations")) self.grb_edit_toolbar.addSeparator() - self.aperture_move_btn = self.grb_edit_toolbar.addAction(QtGui.QIcon('share/move32.png'), _("Move")) + self.aperture_move_btn = self.grb_edit_toolbar.addAction( + QtGui.QIcon(self.app.resource_location + '/move32.png'), _("Move")) # ## Snap Toolbar # ## # Snap GRID toolbar is always active to facilitate usage of measurements done on GRID # self.addToolBar(self.snap_toolbar) - self.grid_snap_btn = self.snap_toolbar.addAction(QtGui.QIcon('share/grid32.png'), _('Snap to grid')) + self.grid_snap_btn = self.snap_toolbar.addAction( + QtGui.QIcon(self.app.resource_location + '/grid32.png'), _('Snap to grid')) self.grid_gap_x_entry = FCEntry2() self.grid_gap_x_entry.setMaximumWidth(70) self.grid_gap_x_entry.setToolTip(_("Grid X snapping distance")) @@ -2314,13 +2547,14 @@ class FlatCAMGUI(QtWidgets.QMainWindow): self.grid_space_label = QtWidgets.QLabel(" ") self.snap_toolbar.addWidget(self.grid_space_label) self.grid_gap_link_cb = FCCheckBox() - self.grid_gap_link_cb.setToolTip(_("When active, value on Grid_X\n" - "is copied to the Grid_Y value.")) + self.grid_gap_link_cb.setToolTip(_("When active, value on Grid_X\n" + "is copied to the Grid_Y value.")) self.snap_toolbar.addWidget(self.grid_gap_link_cb) self.ois_grid = OptionalInputSection(self.grid_gap_link_cb, [self.grid_gap_y_entry], logic=False) - self.corner_snap_btn = self.snap_toolbar.addAction(QtGui.QIcon('share/corner32.png'), _('Snap to corner')) + self.corner_snap_btn = self.snap_toolbar.addAction( + QtGui.QIcon(self.app.resource_location + '/corner32.png'), _('Snap to corner')) self.snap_max_dist_entry = FCEntry() self.snap_max_dist_entry.setMaximumWidth(70) @@ -2819,7 +3053,7 @@ class FlatCAMGUI(QtWidgets.QMainWindow): messagebox = QtWidgets.QMessageBox() messagebox.setText(msg) messagebox.setWindowTitle(_("Warning")) - messagebox.setWindowIcon(QtGui.QIcon('share/warning.png')) + messagebox.setWindowIcon(QtGui.QIcon(self.app.resource_location + '/warning.png')) messagebox.setStandardButtons(QtWidgets.QMessageBox.Ok) messagebox.setDefaultButton(QtWidgets.QMessageBox.Ok) messagebox.exec_() @@ -2963,7 +3197,7 @@ class FlatCAMGUI(QtWidgets.QMainWindow): messagebox = QtWidgets.QMessageBox() messagebox.setText(msg) messagebox.setWindowTitle(_("Warning")) - messagebox.setWindowIcon(QtGui.QIcon('share/warning.png')) + messagebox.setWindowIcon(QtGui.QIcon(self.app.resource_location + '/warning.png')) messagebox.setStandardButtons(QtWidgets.QMessageBox.Ok) messagebox.setDefaultButton(QtWidgets.QMessageBox.Ok) messagebox.exec_() @@ -3022,7 +3256,7 @@ class FlatCAMGUI(QtWidgets.QMainWindow): messagebox = QtWidgets.QMessageBox() messagebox.setText(msg) messagebox.setWindowTitle(_("Warning")) - messagebox.setWindowIcon(QtGui.QIcon('share/warning.png')) + messagebox.setWindowIcon(QtGui.QIcon(self.app.resource_location + '/warning.png')) messagebox.setStandardButtons(QtWidgets.QMessageBox.Ok) messagebox.setDefaultButton(QtWidgets.QMessageBox.Ok) messagebox.exec_() @@ -3042,7 +3276,7 @@ class FlatCAMGUI(QtWidgets.QMainWindow): messagebox = QtWidgets.QMessageBox() messagebox.setText(msg) messagebox.setWindowTitle(_("Warning")) - messagebox.setWindowIcon(QtGui.QIcon('share/warning.png')) + messagebox.setWindowIcon(QtGui.QIcon(self.app.resource_location + '/warning.png')) messagebox.setStandardButtons(QtWidgets.QMessageBox.Ok) messagebox.setDefaultButton(QtWidgets.QMessageBox.Ok) messagebox.exec_() @@ -3482,7 +3716,7 @@ class FlatCAMGUI(QtWidgets.QMainWindow): tool_add_popup = FCInputDialog(title=_("New Tool ..."), text='%s:' % _('Enter a Tool Diameter'), min=0.0000, max=99.9999, decimals=4) - tool_add_popup.setWindowIcon(QtGui.QIcon('share/letter_t_32.png')) + tool_add_popup.setWindowIcon(QtGui.QIcon(self.app.resource_location + '/letter_t_32.png')) val, ok = tool_add_popup.get_value() if ok: @@ -3712,20 +3946,20 @@ class FlatCAMActivityView(QtWidgets.QWidget): self.app = app if self.app.defaults["global_activity_icon"] == "Ball green": - icon = 'share/active_2_static.png' - movie = "share/active_2.gif" + icon = self.app.resource_location + '/active_2_static.png' + movie = self.app.resource_location + "/active_2.gif" elif self.app.defaults["global_activity_icon"] == "Ball black": - icon = 'share/active_static.png' - movie = "share/active.gif" + icon = self.app.resource_location + '/active_static.png' + movie = self.app.resource_location + "/active.gif" elif self.app.defaults["global_activity_icon"] == "Arrow green": - icon = 'share/active_3_static.png' - movie = "share/active_3.gif" + icon = self.app.resource_location + '/active_3_static.png' + movie = self.app.resource_location + "/active_3.gif" elif self.app.defaults["global_activity_icon"] == "Eclipse green": - icon = 'share/active_4_static.png' - movie = "share/active_4.gif" + icon = self.app.resource_location + '/active_4_static.png' + movie = self.app.resource_location + "/active_4.gif" else: - icon = 'share/active_static.png' - movie = "share/active.gif" + icon = self.app.resource_location + '/active_static.png' + movie = self.app.resource_location + "/active.gif" self.setMinimumWidth(200) self.movie_path = movie @@ -3766,12 +4000,14 @@ class FlatCAMInfoBar(QtWidgets.QWidget): This class create a place to display the App messages in the Status Bar """ - def __init__(self, parent=None): + def __init__(self, parent=None, app=None): super(FlatCAMInfoBar, self).__init__(parent=parent) + self.app = app + self.icon = QtWidgets.QLabel(self) self.icon.setGeometry(0, 0, 12, 12) - self.pmap = QtGui.QPixmap('share/graylight12.png') + self.pmap = QtGui.QPixmap(self.app.resource_location + '/graylight12.png') self.icon.setPixmap(self.pmap) layout = QtWidgets.QHBoxLayout() @@ -3798,15 +4034,15 @@ class FlatCAMInfoBar(QtWidgets.QWidget): level = str(level) self.pmap.fill() if level == "ERROR" or level == "ERROR_NOTCL": - self.pmap = QtGui.QPixmap('share/redlight12.png') + self.pmap = QtGui.QPixmap(self.app.resource_location + '/redlight12.png') elif level == "success" or level == "SUCCESS": - self.pmap = QtGui.QPixmap('share/greenlight12.png') + self.pmap = QtGui.QPixmap(self.app.resource_location + '/greenlight12.png') elif level == "WARNING" or level == "WARNING_NOTCL": - self.pmap = QtGui.QPixmap('share/yellowlight12.png') + self.pmap = QtGui.QPixmap(self.app.resource_location + '/yellowlight12.png') elif level == "selected" or level == "SELECTED": - self.pmap = QtGui.QPixmap('share/bluelight12.png') + self.pmap = QtGui.QPixmap(self.app.resource_location + '/bluelight12.png') else: - self.pmap = QtGui.QPixmap('share/graylight12.png') + self.pmap = QtGui.QPixmap(self.app.resource_location + '/graylight12.png') self.set_text_(text) self.icon.setPixmap(self.pmap) @@ -3824,7 +4060,8 @@ class FlatCAMSystemTray(QtWidgets.QSystemTrayIcon): menu = QtWidgets.QMenu(parent) - menu_runscript = QtWidgets.QAction(QtGui.QIcon('share/script14.png'), '%s' % _('Run Script ...'), self) + menu_runscript = QtWidgets.QAction(QtGui.QIcon(self.app.resource_location + '/script14.png'), + '%s' % _('Run Script ...'), self) menu_runscript.setToolTip( _("Will run the opened Tcl Script thus\n" "enabling the automation of certain\n" @@ -3835,25 +4072,27 @@ class FlatCAMSystemTray(QtWidgets.QSystemTrayIcon): menu.addSeparator() if headless is None: - self.menu_open = menu.addMenu(QtGui.QIcon('share/folder32_bis.png'), _('Open')) + self.menu_open = menu.addMenu(QtGui.QIcon(self.app.resource_location + '/folder32_bis.png'), _('Open')) # Open Project ... - menu_openproject = QtWidgets.QAction(QtGui.QIcon('share/folder16.png'), _('Open Project ...'), self) + menu_openproject = QtWidgets.QAction(QtGui.QIcon(self.app.resource_location + '/folder16.png'), + _('Open Project ...'), self) self.menu_open.addAction(menu_openproject) self.menu_open.addSeparator() # Open Gerber ... - menu_opengerber = QtWidgets.QAction(QtGui.QIcon('share/flatcam_icon24.png'), + menu_opengerber = QtWidgets.QAction(QtGui.QIcon(self.app.resource_location + '/flatcam_icon24.png'), _('Open &Gerber ...\tCTRL+G'), self) self.menu_open.addAction(menu_opengerber) # Open Excellon ... - menu_openexcellon = QtWidgets.QAction(QtGui.QIcon('share/open_excellon32.png'), + menu_openexcellon = QtWidgets.QAction(QtGui.QIcon(self.app.resource_location + '/open_excellon32.png'), _('Open &Excellon ...\tCTRL+E'), self) self.menu_open.addAction(menu_openexcellon) # Open G-Code ... - menu_opengcode = QtWidgets.QAction(QtGui.QIcon('share/code.png'), _('Open G-&Code ...'), self) + menu_opengcode = QtWidgets.QAction(QtGui.QIcon(self.app.resource_location + '/code.png'), + _('Open G-&Code ...'), self) self.menu_open.addAction(menu_opengcode) self.menu_open.addSeparator() @@ -3864,7 +4103,7 @@ class FlatCAMSystemTray(QtWidgets.QSystemTrayIcon): menu_opengcode.triggered.connect(self.app.on_fileopengcode) exitAction = menu.addAction(_("Exit")) - exitAction.setIcon(QtGui.QIcon('share/power16.png')) + exitAction.setIcon(QtGui.QIcon(self.app.resource_location + '/power16.png')) self.setContextMenu(menu) menu_runscript.triggered.connect(lambda: self.app.on_filerunscript( diff --git a/flatcamGUI/ObjectUI.py b/flatcamGUI/ObjectUI.py index 29ed5468..edbf15a6 100644 --- a/flatcamGUI/ObjectUI.py +++ b/flatcamGUI/ObjectUI.py @@ -41,6 +41,17 @@ class ObjectUI(QtWidgets.QWidget): self.decimals = decimals + theme_settings = QtCore.QSettings("Open Source", "FlatCAM") + if theme_settings.contains("theme"): + theme = theme_settings.value('theme', type=str) + else: + theme = 'white' + + if theme == 'white': + self.resource_loc = 'share' + else: + self.resource_loc = 'share' + layout = QtWidgets.QVBoxLayout() self.setLayout(layout) @@ -49,7 +60,7 @@ class ObjectUI(QtWidgets.QWidget): layout.addLayout(self.title_box) # ## Page Title icon - pixmap = QtGui.QPixmap(icon_file) + pixmap = QtGui.QPixmap(icon_file.replace('share', self.resource_loc)) self.icon = QtWidgets.QLabel() self.icon.setPixmap(pixmap) self.title_box.addWidget(self.icon, stretch=0) @@ -436,8 +447,8 @@ class GerberObjectUI(ObjectUI): # we get rid of item1 ("Excellon") as it is not suitable self.type_obj_combo.view().setRowHidden(1, True) - self.type_obj_combo.setItemIcon(0, QtGui.QIcon("share/flatcam_icon16.png")) - self.type_obj_combo.setItemIcon(2, QtGui.QIcon("share/geometry16.png")) + self.type_obj_combo.setItemIcon(0, QtGui.QIcon(self.resource_loc + "/flatcam_icon16.png")) + self.type_obj_combo.setItemIcon(2, QtGui.QIcon(self.resource_loc + "/geometry16.png")) self.type_obj_combo_label = QtWidgets.QLabel('%s:' % _("Obj Type")) self.type_obj_combo_label.setToolTip( @@ -682,14 +693,27 @@ class GerberObjectUI(ObjectUI): separator_line2.setFrameShadow(QtWidgets.QFrame.Sunken) grid2.addWidget(separator_line2, 11, 0, 1, 2) + class ExcellonObjectUI(ObjectUI): """ User interface for Excellon objects. """ def __init__(self, decimals, parent=None): + + theme_settings = QtCore.QSettings("Open Source", "FlatCAM") + if theme_settings.contains("theme"): + theme = theme_settings.value('theme', type=str) + else: + theme = 'white' + + if theme == 'white': + self.resource_loc = 'share' + else: + self.resource_loc = 'share' + ObjectUI.__init__(self, title=_('Excellon Object'), - icon_file='share/drill32.png', + icon_file=self.resource_loc + '/drill32.png', parent=parent, decimals=decimals) @@ -1112,8 +1136,23 @@ class GeometryObjectUI(ObjectUI): """ def __init__(self, decimals, parent=None): - super(GeometryObjectUI, self).__init__(title=_('Geometry Object'), - icon_file='share/geometry32.png', parent=parent, decimals=decimals) + + theme_settings = QtCore.QSettings("Open Source", "FlatCAM") + if theme_settings.contains("theme"): + theme = theme_settings.value('theme', type=str) + else: + theme = 'white' + + if theme == 'white': + self.resource_loc = 'share' + else: + self.resource_loc = 'share' + + super(GeometryObjectUI, self).__init__( + title=_('Geometry Object'), + icon_file=self.resource_loc + '/geometry32.png', parent=parent, decimals=decimals + ) + self.decimals = decimals # Plot options @@ -1733,9 +1772,22 @@ class CNCObjectUI(ObjectUI): Creates the user interface for CNCJob objects. GUI elements should be placed in ``self.custom_box`` to preserve the layout. """ - - ObjectUI.__init__(self, title=_('CNC Job Object'), icon_file='share/cnc32.png', parent=parent, - decimals=decimals) + + theme_settings = QtCore.QSettings("Open Source", "FlatCAM") + if theme_settings.contains("theme"): + theme = theme_settings.value('theme', type=str) + else: + theme = 'white' + + if theme == 'white': + self.resource_loc = 'share' + else: + self.resource_loc = 'share' + + ObjectUI.__init__( + self, title=_('CNC Job Object'), + icon_file=self.resource_loc + '/cnc32.png', parent=parent, + decimals=decimals) self.decimals = decimals for i in range(0, self.common_grid.count()): @@ -2052,8 +2104,19 @@ class ScriptObjectUI(ObjectUI): be placed in ``self.custom_box`` to preserve the layout. """ + theme_settings = QtCore.QSettings("Open Source", "FlatCAM") + if theme_settings.contains("theme"): + theme = theme_settings.value('theme', type=str) + else: + theme = 'white' + + if theme == 'white': + self.resource_loc = 'share' + else: + self.resource_loc = 'share' + ObjectUI.__init__(self, title=_('Script Object'), - icon_file='share/script_new24.png', + icon_file=self.resource_loc + '/script_new24.png', parent=parent, common=False, decimals=decimals) @@ -2107,8 +2170,19 @@ class DocumentObjectUI(ObjectUI): be placed in ``self.custom_box`` to preserve the layout. """ + theme_settings = QtCore.QSettings("Open Source", "FlatCAM") + if theme_settings.contains("theme"): + theme = theme_settings.value('theme', type=str) + else: + theme = 'white' + + if theme == 'white': + self.resource_loc = 'share' + else: + self.resource_loc = 'share' + ObjectUI.__init__(self, title=_('Document Object'), - icon_file='share/notes16_1.png', + icon_file=self.resource_loc + '/notes16_1.png', parent=parent, common=False, decimals=decimals) @@ -2194,16 +2268,16 @@ class DocumentObjectUI(ObjectUI): self.font_bold_tb = QtWidgets.QToolButton() self.font_bold_tb.setCheckable(True) - self.font_bold_tb.setIcon(QtGui.QIcon('share/bold32.png')) + self.font_bold_tb.setIcon(QtGui.QIcon(self.resource_loc + '/bold32.png')) size_hlay.addWidget(self.font_bold_tb) self.font_italic_tb = QtWidgets.QToolButton() self.font_italic_tb.setCheckable(True) - self.font_italic_tb.setIcon(QtGui.QIcon('share/italic32.png')) + self.font_italic_tb.setIcon(QtGui.QIcon(self.resource_loc + '/italic32.png')) size_hlay.addWidget(self.font_italic_tb) self.font_under_tb = QtWidgets.QToolButton() self.font_under_tb.setCheckable(True) - self.font_under_tb.setIcon(QtGui.QIcon('share/underline32.png')) + self.font_under_tb.setIcon(QtGui.QIcon(self.resource_loc + '/underline32.png')) size_hlay.addWidget(self.font_under_tb) self.form_box.addRow(self.font_size_label, size_hlay) @@ -2215,22 +2289,22 @@ class DocumentObjectUI(ObjectUI): self.al_left_tb = QtWidgets.QToolButton() self.al_left_tb.setToolTip(_("Align Left")) - self.al_left_tb.setIcon(QtGui.QIcon('share/align_left32.png')) + self.al_left_tb.setIcon(QtGui.QIcon(self.resource_loc + '/align_left32.png')) al_hlay.addWidget(self.al_left_tb) self.al_center_tb = QtWidgets.QToolButton() self.al_center_tb.setToolTip(_("Center")) - self.al_center_tb.setIcon(QtGui.QIcon('share/align_center32.png')) + self.al_center_tb.setIcon(QtGui.QIcon(self.resource_loc + '/align_center32.png')) al_hlay.addWidget(self.al_center_tb) self.al_right_tb = QtWidgets.QToolButton() self.al_right_tb.setToolTip(_("Align Right")) - self.al_right_tb.setIcon(QtGui.QIcon('share/align_right32.png')) + self.al_right_tb.setIcon(QtGui.QIcon(self.resource_loc + '/align_right32.png')) al_hlay.addWidget(self.al_right_tb) self.al_justify_tb = QtWidgets.QToolButton() self.al_justify_tb.setToolTip(_("Justify")) - self.al_justify_tb.setIcon(QtGui.QIcon('share/align_justify32.png')) + self.al_justify_tb.setIcon(QtGui.QIcon(self.resource_loc + '/align_justify32.png')) al_hlay.addWidget(self.al_justify_tb) self.form_box.addRow(self.alignment_label, al_hlay) diff --git a/flatcamGUI/PreferencesUI.py b/flatcamGUI/PreferencesUI.py index a0325b34..3e9bf22f 100644 --- a/flatcamGUI/PreferencesUI.py +++ b/flatcamGUI/PreferencesUI.py @@ -1031,7 +1031,7 @@ class GeneralGUISetGroupUI(OptionsGroupUI): "\n") ) msgbox.setWindowTitle(_("Clear GUI Settings")) - msgbox.setWindowIcon(QtGui.QIcon('share/trash32.png')) + msgbox.setWindowIcon(QtGui.QIcon(self.app.resource_location + '/trash32.png')) bt_yes = msgbox.addButton(_('Yes'), QtWidgets.QMessageBox.YesRole) bt_no = msgbox.addButton(_('No'), QtWidgets.QMessageBox.NoRole) diff --git a/flatcamTools/ToolCalibration.py b/flatcamTools/ToolCalibration.py index ab8576ff..7e50a3c3 100644 --- a/flatcamTools/ToolCalibration.py +++ b/flatcamTools/ToolCalibration.py @@ -197,8 +197,8 @@ class ToolCalibration(FlatCAMTool): self.obj_type_combo.addItem(_("Excellon")) self.obj_type_combo.setCurrentIndex(1) - self.obj_type_combo.setItemIcon(0, QtGui.QIcon("share/flatcam_icon16.png")) - self.obj_type_combo.setItemIcon(1, QtGui.QIcon("share/drill16.png")) + self.obj_type_combo.setItemIcon(0, QtGui.QIcon(self.app.resource_location + "/flatcam_icon16.png")) + self.obj_type_combo.setItemIcon(1, QtGui.QIcon(self.app.resource_location + "/drill16.png")) grid_lay.addWidget(self.obj_type_label, 12, 0) grid_lay.addWidget(self.obj_type_combo, 12, 1, 1, 2) @@ -634,9 +634,9 @@ class ToolCalibration(FlatCAMTool): self.adj_object_type_combo.addItems([_("Gerber"), _("Excellon"), _("Geometry")]) self.adj_object_type_combo.setCurrentIndex(0) - self.adj_object_type_combo.setItemIcon(0, QtGui.QIcon("share/flatcam_icon16.png")) - self.adj_object_type_combo.setItemIcon(1, QtGui.QIcon("share/drill16.png")) - self.adj_object_type_combo.setItemIcon(2, QtGui.QIcon("share/geometry16.png")) + self.adj_object_type_combo.setItemIcon(0, QtGui.QIcon(self.app.resource_location + "/flatcam_icon16.png")) + self.adj_object_type_combo.setItemIcon(1, QtGui.QIcon(self.app.resource_location + "/drill16.png")) + self.adj_object_type_combo.setItemIcon(2, QtGui.QIcon(self.app.resource_location + "/geometry16.png")) self.adj_object_type_label = QtWidgets.QLabel("%s:" % _("Adjusted object type")) self.adj_object_type_label.setToolTip( diff --git a/flatcamTools/ToolCutOut.py b/flatcamTools/ToolCutOut.py index 0e2506f7..e5102ac5 100644 --- a/flatcamTools/ToolCutOut.py +++ b/flatcamTools/ToolCutOut.py @@ -73,9 +73,9 @@ class CutOut(FlatCAMTool): # we get rid of item1 ("Excellon") as it is not suitable for creating film self.type_obj_combo.view().setRowHidden(1, True) - self.type_obj_combo.setItemIcon(0, QtGui.QIcon("share/flatcam_icon16.png")) - # self.type_obj_combo.setItemIcon(1, QtGui.QIcon("share/drill16.png")) - self.type_obj_combo.setItemIcon(2, QtGui.QIcon("share/geometry16.png")) + self.type_obj_combo.setItemIcon(0, QtGui.QIcon(self.app.resource_location + "/flatcam_icon16.png")) + # self.type_obj_combo.setItemIcon(1, QtGui.QIcon(self.app.resource_location + "/drill16.png")) + self.type_obj_combo.setItemIcon(2, QtGui.QIcon(self.app.resource_location + "/geometry16.png")) self.type_obj_combo_label = QtWidgets.QLabel('%s:' % _("Object Type")) self.type_obj_combo_label.setToolTip( diff --git a/flatcamTools/ToolFilm.py b/flatcamTools/ToolFilm.py index 82069f3a..ead110b1 100644 --- a/flatcamTools/ToolFilm.py +++ b/flatcamTools/ToolFilm.py @@ -72,8 +72,8 @@ class Film(FlatCAMTool): # we get rid of item1 ("Excellon") as it is not suitable for creating film self.tf_type_obj_combo.view().setRowHidden(1, True) - self.tf_type_obj_combo.setItemIcon(0, QtGui.QIcon("share/flatcam_icon16.png")) - self.tf_type_obj_combo.setItemIcon(2, QtGui.QIcon("share/geometry16.png")) + self.tf_type_obj_combo.setItemIcon(0, QtGui.QIcon(self.app.resource_location + "/flatcam_icon16.png")) + self.tf_type_obj_combo.setItemIcon(2, QtGui.QIcon(self.app.resource_location + "/geometry16.png")) self.tf_type_obj_combo_label = QtWidgets.QLabel('%s:' % _("Object Type")) self.tf_type_obj_combo_label.setToolTip( @@ -107,8 +107,8 @@ class Film(FlatCAMTool): # we get rid of item1 ("Excellon") as it is not suitable for box when creating film self.tf_type_box_combo.view().setRowHidden(1, True) - self.tf_type_box_combo.setItemIcon(0, QtGui.QIcon("share/flatcam_icon16.png")) - self.tf_type_box_combo.setItemIcon(2, QtGui.QIcon("share/geometry16.png")) + self.tf_type_box_combo.setItemIcon(0, QtGui.QIcon(self.app.resource_location + "/flatcam_icon16.png")) + self.tf_type_box_combo.setItemIcon(2, QtGui.QIcon(self.app.resource_location + "/geometry16.png")) self.tf_type_box_combo_label = QtWidgets.QLabel(_("Box Type:")) self.tf_type_box_combo_label.setToolTip( diff --git a/flatcamTools/ToolImage.py b/flatcamTools/ToolImage.py index 2e203df0..a87d7d4b 100644 --- a/flatcamTools/ToolImage.py +++ b/flatcamTools/ToolImage.py @@ -49,8 +49,8 @@ class ToolImage(FlatCAMTool): self.tf_type_obj_combo.addItem("Gerber") self.tf_type_obj_combo.addItem("Geometry") - self.tf_type_obj_combo.setItemIcon(0, QtGui.QIcon("share/flatcam_icon16.png")) - self.tf_type_obj_combo.setItemIcon(1, QtGui.QIcon("share/geometry16.png")) + self.tf_type_obj_combo.setItemIcon(0, QtGui.QIcon(self.app.resource_location + "/flatcam_icon16.png")) + self.tf_type_obj_combo.setItemIcon(1, QtGui.QIcon(self.app.resource_location + "/geometry16.png")) self.tf_type_obj_combo_label = QtWidgets.QLabel('%s:' % _("Object Type")) self.tf_type_obj_combo_label.setToolTip( diff --git a/flatcamTools/ToolNonCopperClear.py b/flatcamTools/ToolNonCopperClear.py index 188d031c..f443e931 100644 --- a/flatcamTools/ToolNonCopperClear.py +++ b/flatcamTools/ToolNonCopperClear.py @@ -76,8 +76,8 @@ class NonCopperClear(FlatCAMTool, Gerber): # we get rid of item1 ("Excellon") as it is not suitable self.type_obj_combo.view().setRowHidden(1, True) - self.type_obj_combo.setItemIcon(0, QtGui.QIcon("share/flatcam_icon16.png")) - self.type_obj_combo.setItemIcon(2, QtGui.QIcon("share/geometry16.png")) + self.type_obj_combo.setItemIcon(0, QtGui.QIcon(self.app.resource_location + "/flatcam_icon16.png")) + self.type_obj_combo.setItemIcon(2, QtGui.QIcon(self.app.resource_location + "/geometry16.png")) self.type_obj_combo_label = QtWidgets.QLabel('%s:' % _("Obj Type")) self.type_obj_combo_label.setToolTip( @@ -508,10 +508,11 @@ class NonCopperClear(FlatCAMTool, Gerber): # ############################################################################# self.tools_table.setupContextMenu() self.tools_table.addContextMenu( - "Add", self.on_add_tool_by_key, icon=QtGui.QIcon("share/plus16.png")) + "Add", self.on_add_tool_by_key, icon=QtGui.QIcon(self.app.resource_location + "/plus16.png")) self.tools_table.addContextMenu( "Delete", lambda: - self.on_tool_delete(rows_to_delete=None, all_tools=None), icon=QtGui.QIcon("share/delete32.png")) + self.on_tool_delete(rows_to_delete=None, all_tools=None), + icon=QtGui.QIcon(self.app.resource_location + "/delete32.png")) # ############################################################################# # ########################## VARIABLES ######################################## @@ -587,7 +588,7 @@ class NonCopperClear(FlatCAMTool, Gerber): tool_add_popup = FCInputDialog(title='%s...' % _("New Tool"), text='%s:' % _('Enter a Tool Diameter'), min=0.0001, max=9999.9999, decimals=self.decimals) - tool_add_popup.setWindowIcon(QtGui.QIcon('share/letter_t_32.png')) + tool_add_popup.setWindowIcon(QtGui.QIcon(self.app.resource_location + '/letter_t_32.png')) val, ok = tool_add_popup.get_value() if ok: diff --git a/flatcamTools/ToolPaint.py b/flatcamTools/ToolPaint.py index 499d93b8..1d04def1 100644 --- a/flatcamTools/ToolPaint.py +++ b/flatcamTools/ToolPaint.py @@ -79,8 +79,8 @@ class ToolPaint(FlatCAMTool, Gerber): # we get rid of item1 ("Excellon") as it is not suitable self.type_obj_combo.view().setRowHidden(1, True) - self.type_obj_combo.setItemIcon(0, QtGui.QIcon("share/flatcam_icon16.png")) - self.type_obj_combo.setItemIcon(2, QtGui.QIcon("share/geometry16.png")) + self.type_obj_combo.setItemIcon(0, QtGui.QIcon(self.app.resource_location + "/flatcam_icon16.png")) + self.type_obj_combo.setItemIcon(2, QtGui.QIcon(self.app.resource_location + "/geometry16.png")) self.type_obj_combo_label = QtWidgets.QLabel('%s:' % _("Obj Type")) self.type_obj_combo_label.setToolTip( @@ -481,10 +481,11 @@ class ToolPaint(FlatCAMTool, Gerber): # ############################################################################# self.tools_table.setupContextMenu() self.tools_table.addContextMenu( - "Add", self.on_add_tool_by_key, icon=QtGui.QIcon("share/plus16.png")) + "Add", self.on_add_tool_by_key, icon=QtGui.QIcon(self.app.resource_location + "/plus16.png")) self.tools_table.addContextMenu( "Delete", lambda: - self.on_tool_delete(rows_to_delete=None, all=None), icon=QtGui.QIcon("share/delete32.png")) + self.on_tool_delete(rows_to_delete=None, all=None), + icon=QtGui.QIcon(self.app.resource_location + "/delete32.png")) def on_type_obj_index_changed(self, index): obj_type = self.type_obj_combo.currentIndex() @@ -498,7 +499,7 @@ class ToolPaint(FlatCAMTool, Gerber): tool_add_popup = FCInputDialog(title='%s...' % _("New Tool"), text='%s:' % _('Enter a Tool Diameter'), min=0.0000, max=99.9999, decimals=4) - tool_add_popup.setWindowIcon(QtGui.QIcon('share/letter_t_32.png')) + tool_add_popup.setWindowIcon(QtGui.QIcon(self.app.resource_location + '/letter_t_32.png')) val, ok = tool_add_popup.get_value() if ok: diff --git a/flatcamTools/ToolPanelize.py b/flatcamTools/ToolPanelize.py index fb8fa7fd..47891057 100644 --- a/flatcamTools/ToolPanelize.py +++ b/flatcamTools/ToolPanelize.py @@ -59,9 +59,9 @@ class Panelize(FlatCAMTool): self.type_obj_combo.addItem("Excellon") self.type_obj_combo.addItem("Geometry") - self.type_obj_combo.setItemIcon(0, QtGui.QIcon("share/flatcam_icon16.png")) - self.type_obj_combo.setItemIcon(1, QtGui.QIcon("share/drill16.png")) - self.type_obj_combo.setItemIcon(2, QtGui.QIcon("share/geometry16.png")) + self.type_obj_combo.setItemIcon(0, QtGui.QIcon(self.app.resource_location + "/flatcam_icon16.png")) + self.type_obj_combo.setItemIcon(1, QtGui.QIcon(self.app.resource_location + "/drill16.png")) + self.type_obj_combo.setItemIcon(2, QtGui.QIcon(self.app.resource_location + "/geometry16.png")) self.type_obj_combo_label = QtWidgets.QLabel('%s:' % _("Object Type")) self.type_obj_combo_label.setToolTip( @@ -115,8 +115,8 @@ class Panelize(FlatCAMTool): # we get rid of item1 ("Excellon") as it is not suitable for use as a "box" for panelizing self.type_box_combo.view().setRowHidden(1, True) - self.type_box_combo.setItemIcon(0, QtGui.QIcon("share/flatcam_icon16.png")) - self.type_box_combo.setItemIcon(2, QtGui.QIcon("share/geometry16.png")) + self.type_box_combo.setItemIcon(0, QtGui.QIcon(self.app.resource_location + "/flatcam_icon16.png")) + self.type_box_combo.setItemIcon(2, QtGui.QIcon(self.app.resource_location + "/geometry16.png")) self.type_box_combo_label = QtWidgets.QLabel('%s:' % _("Box Type")) self.type_box_combo_label.setToolTip( diff --git a/flatcamTools/ToolSolderPaste.py b/flatcamTools/ToolSolderPaste.py index 518236ca..9348fe8c 100644 --- a/flatcamTools/ToolSolderPaste.py +++ b/flatcamTools/ToolSolderPaste.py @@ -500,7 +500,7 @@ class SolderPaste(FlatCAMTool): self.flat_geometry = [] # action to be added in the combobox context menu - self.combo_context_del_action = QtWidgets.QAction(QtGui.QIcon('share/trash16.png'), _("Delete Object")) + self.combo_context_del_action = QtWidgets.QAction(QtGui.QIcon(self.app.resource_location + '/trash16.png'), _("Delete Object")) # ## Signals self.combo_context_del_action.triggered.connect(self.on_delete_object) @@ -553,7 +553,7 @@ class SolderPaste(FlatCAMTool): tool_add_popup = FCInputDialog(title='%s...' % _("New Tool"), text='%s:' % _('Enter a Tool Diameter'), min=0.0000, max=99.9999, decimals=4) - tool_add_popup.setWindowIcon(QtGui.QIcon('share/letter_t_32.png')) + tool_add_popup.setWindowIcon(QtGui.QIcon(self.app.resource_location + '/letter_t_32.png')) val, ok = tool_add_popup.get_value() if ok: @@ -588,10 +588,13 @@ class SolderPaste(FlatCAMTool): self.tools_table.setupContextMenu() self.tools_table.addContextMenu( - _("Add"), lambda: self.on_tool_add(dia=None, muted=None), icon=QtGui.QIcon("share/plus16.png")) + _("Add"), lambda: self.on_tool_add(dia=None, muted=None), + icon=QtGui.QIcon(self.app.resource_location + "/plus16.png")) self.tools_table.addContextMenu( _("Delete"), lambda: - self.on_tool_delete(rows_to_delete=None, all=None), icon=QtGui.QIcon("share/delete32.png")) + self.on_tool_delete(rows_to_delete=None, all=None), + icon=QtGui.QIcon(self.app.resource_location + "/delete32.png") + ) try: dias = [float(eval(dia)) for dia in self.app.defaults["tools_solderpaste_tools"].split(",") if dia != ''] diff --git a/locale/de/LC_MESSAGES/strings.mo b/locale/de/LC_MESSAGES/strings.mo index ac7ed0ac..de9b8312 100644 Binary files a/locale/de/LC_MESSAGES/strings.mo and b/locale/de/LC_MESSAGES/strings.mo differ diff --git a/locale/de/LC_MESSAGES/strings.po b/locale/de/LC_MESSAGES/strings.po index 61f3102b..36d79bcb 100644 --- a/locale/de/LC_MESSAGES/strings.po +++ b/locale/de/LC_MESSAGES/strings.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"POT-Creation-Date: 2019-12-14 19:56+0200\n" -"PO-Revision-Date: 2019-12-14 20:04+0200\n" +"POT-Creation-Date: 2019-12-15 16:26+0200\n" +"PO-Revision-Date: 2019-12-15 16:26+0200\n" "Last-Translator: \n" "Language-Team: \n" "Language: de\n" @@ -17,17 +17,17 @@ msgstr "" "X-Poedit-SearchPathExcluded-1: doc\n" "X-Poedit-SearchPathExcluded-2: tests\n" -#: FlatCAMApp.py:999 +#: FlatCAMApp.py:1004 msgid "FlatCAM is initializing ..." msgstr "FlatCAM wird initialisiert ..." -#: FlatCAMApp.py:1580 +#: FlatCAMApp.py:1585 msgid "Could not find the Language files. The App strings are missing." msgstr "" "Die Sprachdateien konnten nicht gefunden werden. Die App-Zeichenfolgen " "fehlen." -#: FlatCAMApp.py:1673 +#: FlatCAMApp.py:1678 msgid "" "FlatCAM is initializing ...\n" "Canvas initialization started." @@ -35,7 +35,7 @@ msgstr "" "FlatCAM wird initialisiert ...\n" "Die Canvas-Initialisierung wurde gestartet." -#: FlatCAMApp.py:1691 +#: FlatCAMApp.py:1696 msgid "" "FlatCAM is initializing ...\n" "Canvas initialization started.\n" @@ -45,7 +45,7 @@ msgstr "" "Die Canvas-Initialisierung wurde gestartet.\n" "Canvas-Initialisierung abgeschlossen in" -#: FlatCAMApp.py:2388 +#: FlatCAMApp.py:2395 msgid "" "Type >help< to get started\n" "\n" @@ -53,13 +53,13 @@ msgstr "" "Geben Sie> help
Icons made " -#| "by Freepik from www.flaticon.com
Icons by Icons8" +#: FlatCAMApp.py:4527 msgid "" "Some of the icons used are from the following sources:
Icons by FreepikoNline Web Fonts" msgstr "" "Einige der verwendeten Symbole stammen aus folgenden Quellen:
" -"Symbole, die von Freepik erstellt wurden von www.flaticon.com
Icons durch Icons8 " +"com/\" title=\"Flaticon\"> www.flaticon.com
Icons durch Icons8
Icons durch " +"oNline Web FontsoNline Web Fonts" -#: FlatCAMApp.py:4537 +#: FlatCAMApp.py:4559 msgid "Splash" msgstr "Begrüßungsbildschirm" -#: FlatCAMApp.py:4543 +#: FlatCAMApp.py:4565 msgid "Programmers" msgstr "Programmierer" -#: FlatCAMApp.py:4549 +#: FlatCAMApp.py:4571 msgid "Translators" msgstr "Übersetzer" -#: FlatCAMApp.py:4555 +#: FlatCAMApp.py:4577 msgid "License" msgstr "Lizenz" -#: FlatCAMApp.py:4561 +#: FlatCAMApp.py:4583 msgid "Attributions" msgstr "Zuschreibungen" -#: FlatCAMApp.py:4584 +#: FlatCAMApp.py:4606 msgid "Programmer" msgstr "Programmierer" -#: FlatCAMApp.py:4585 +#: FlatCAMApp.py:4607 msgid "Status" msgstr "Status" -#: FlatCAMApp.py:4586 FlatCAMApp.py:4657 +#: FlatCAMApp.py:4608 FlatCAMApp.py:4686 msgid "E-mail" msgstr "Email" -#: FlatCAMApp.py:4594 +#: FlatCAMApp.py:4616 msgid "BETA Maintainer >= 2019" msgstr "Betreuer >= 2019" -#: FlatCAMApp.py:4654 +#: FlatCAMApp.py:4683 msgid "Language" msgstr "Sprache" -#: FlatCAMApp.py:4655 +#: FlatCAMApp.py:4684 msgid "Translator" msgstr "Übersetzer" -#: FlatCAMApp.py:4656 +#: FlatCAMApp.py:4685 msgid "Corrections" msgstr "Korrekturen" -#: FlatCAMApp.py:4765 FlatCAMApp.py:4773 FlatCAMApp.py:7906 -#: flatcamGUI/FlatCAMGUI.py:451 +#: FlatCAMApp.py:4794 FlatCAMApp.py:4802 FlatCAMApp.py:7934 +#: flatcamGUI/FlatCAMGUI.py:475 msgid "Bookmarks Manager" msgstr "Lesezeichen verwalten" -#: FlatCAMApp.py:4785 +#: FlatCAMApp.py:4813 msgid "" "This entry will resolve to another website if:\n" "\n" @@ -450,35 +442,35 @@ msgstr "" "Wenn Sie keine Informationen zu FlatCAM beta erhalten können\n" "Verwenden Sie den Link zum YouTube-Kanal im Menü Hilfe." -#: FlatCAMApp.py:4792 +#: FlatCAMApp.py:4820 msgid "Alternative website" msgstr "Alternative Website" -#: FlatCAMApp.py:4923 FlatCAMApp.py:7870 +#: FlatCAMApp.py:4951 FlatCAMApp.py:7898 msgid "Preferences saved." msgstr "Einstellungen gespeichert." -#: FlatCAMApp.py:4951 +#: FlatCAMApp.py:4979 msgid "Could not load factory defaults file." msgstr "Factory-Standarddatei konnte nicht geladen werden." -#: FlatCAMApp.py:4961 +#: FlatCAMApp.py:4989 msgid "Failed to parse factory defaults file." msgstr "Fehler beim Parsen der Werksvorgaben-Datei." -#: FlatCAMApp.py:4977 +#: FlatCAMApp.py:5005 msgid "Failed to write factory defaults to file." msgstr "Fehler beim Schreiben der Werkseinstellungen in die Datei." -#: FlatCAMApp.py:4981 +#: FlatCAMApp.py:5009 msgid "Factory defaults saved." msgstr "Werkseinstellungen gespeichert." -#: FlatCAMApp.py:4991 flatcamGUI/FlatCAMGUI.py:3691 +#: FlatCAMApp.py:5019 flatcamGUI/FlatCAMGUI.py:3926 msgid "Application is saving the project. Please wait ..." msgstr "Anwendung speichert das Projekt. Warten Sie mal ..." -#: FlatCAMApp.py:4996 FlatCAMTranslation.py:166 +#: FlatCAMApp.py:5024 FlatCAMTranslation.py:188 msgid "" "There are files/objects modified in FlatCAM. \n" "Do you want to Save the project?" @@ -486,32 +478,32 @@ msgstr "" "In FlatCAM wurden Dateien / Objekte geändert.\n" "Möchten Sie das Projekt speichern?" -#: FlatCAMApp.py:4999 FlatCAMApp.py:9043 FlatCAMTranslation.py:169 +#: FlatCAMApp.py:5027 FlatCAMApp.py:9075 FlatCAMTranslation.py:191 msgid "Save changes" msgstr "Änderungen speichern" -#: FlatCAMApp.py:5240 +#: FlatCAMApp.py:5268 msgid "Selected Excellon file extensions registered with FlatCAM." msgstr "" "Ausgewählte Excellon-Dateierweiterungen, die bei FlatCAM registriert sind." -#: FlatCAMApp.py:5262 +#: FlatCAMApp.py:5290 msgid "Selected GCode file extensions registered with FlatCAM." msgstr "" "Ausgewählte GCode-Dateierweiterungen, die bei FlatCAM registriert sind." -#: FlatCAMApp.py:5284 +#: FlatCAMApp.py:5312 msgid "Selected Gerber file extensions registered with FlatCAM." msgstr "" "Ausgewählte Gerber-Dateierweiterungen, die bei FlatCAM registriert sind." -#: FlatCAMApp.py:5472 FlatCAMApp.py:5529 FlatCAMApp.py:5557 +#: FlatCAMApp.py:5500 FlatCAMApp.py:5557 FlatCAMApp.py:5585 msgid "At least two objects are required for join. Objects currently selected" msgstr "" "Zum Verbinden sind mindestens zwei Objekte erforderlich. Derzeit ausgewählte " "Objekte" -#: FlatCAMApp.py:5481 +#: FlatCAMApp.py:5509 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 " @@ -529,128 +521,110 @@ msgstr "" "und das Ergebnis entspricht möglicherweise nicht dem, was erwartet wurde.\n" "Überprüfen Sie den generierten GCODE." -#: FlatCAMApp.py:5493 -#, fuzzy -#| msgid "Done. Gerber editing finished." +#: FlatCAMApp.py:5521 msgid "Multigeo. Geometry merging finished" -msgstr "Erledigt. Gerber-Bearbeitung beendet." +msgstr "Erledigt. Gerber-Bearbeitung beendet" -#: FlatCAMApp.py:5502 -#, fuzzy -#| msgid "G-Code parsing finished..." +#: FlatCAMApp.py:5530 msgid "Geometry merging finished" -msgstr "G-Code-Analyse beendet ..." +msgstr "Zusammenführung der Geometrien beendet" -#: FlatCAMApp.py:5524 +#: FlatCAMApp.py:5552 msgid "Failed. Excellon joining works only on Excellon objects." msgstr "" "Gescheitert. Die Zusammenfügung von Excellon funktioniert nur bei Excellon-" "Objekten." -#: FlatCAMApp.py:5534 -#, fuzzy -#| msgid "Excellon editing finished." +#: FlatCAMApp.py:5562 msgid "Excellon merging finished" -msgstr "Excellon-Bearbeitung abgeschlossen." +msgstr "Excellon-Bearbeitung abgeschlossen" -#: FlatCAMApp.py:5552 +#: FlatCAMApp.py:5580 msgid "Failed. Gerber joining works only on Gerber objects." msgstr "" "Gescheitert. Das Zusammenfügen für Gerber-Objekte funktioniert nur bei " "Gerber-Objekten." -#: FlatCAMApp.py:5562 -#, fuzzy -#| msgid "Done. Gerber editing finished." +#: FlatCAMApp.py:5590 msgid "Gerber merging finished" -msgstr "Erledigt. Gerber-Bearbeitung beendet." +msgstr "Erledigt. Gerber-Bearbeitung beendet" -#: FlatCAMApp.py:5582 FlatCAMApp.py:5617 +#: FlatCAMApp.py:5610 FlatCAMApp.py:5645 msgid "Failed. Select a Geometry Object and try again." msgstr "" "Gescheitert. Wählen Sie ein Geometrieobjekt aus und versuchen Sie es erneut." -#: FlatCAMApp.py:5586 FlatCAMApp.py:5622 +#: FlatCAMApp.py:5614 FlatCAMApp.py:5650 msgid "Expected a FlatCAMGeometry, got" msgstr "Erwartete eine FlatCAMGeometry, fand" -#: FlatCAMApp.py:5599 +#: FlatCAMApp.py:5627 msgid "A Geometry object was converted to MultiGeo type." msgstr "Ein Geometrieobjekt wurde in den MultiGeo-Typ konvertiert." -#: FlatCAMApp.py:5637 +#: FlatCAMApp.py:5665 msgid "A Geometry object was converted to SingleGeo type." msgstr "Ein Geometrieobjekt wurde in den SingleGeo-Typ konvertiert." -#: FlatCAMApp.py:5833 +#: FlatCAMApp.py:5861 msgid "Toggle Units" msgstr "Einheiten wechseln" -#: FlatCAMApp.py:5835 -#, fuzzy -#| msgid "" -#| "Changing the units of the project causes all geometrical properties of " -#| "all objects to be scaled accordingly.\n" -#| "Continue?" +#: FlatCAMApp.py:5863 msgid "" "Changing the units of the project\n" "will scale all objects.\n" "\n" "Do you want to continue?" msgstr "" -"Durch Ändern der Einheiten des Projekts werden alle geometrischen " -"Eigenschaften aller Objekte entsprechend skaliert.\n" -"Fortsetzen?" +"Durch Ändern der Einheiten des Projekts\n" +"werden alle geometrischen Eigenschaften \n" +"aller Objekte entsprechend skaliert.\n" +"Wollen Sie Fortsetzen?" -#: FlatCAMApp.py:5838 FlatCAMApp.py:7080 FlatCAMApp.py:7156 FlatCAMApp.py:9408 -#: FlatCAMApp.py:9422 FlatCAMApp.py:9776 FlatCAMApp.py:9787 +#: FlatCAMApp.py:5866 FlatCAMApp.py:7108 FlatCAMApp.py:7184 FlatCAMApp.py:9440 +#: FlatCAMApp.py:9454 FlatCAMApp.py:9808 FlatCAMApp.py:9819 msgid "Ok" msgstr "Ok" -#: FlatCAMApp.py:5887 +#: FlatCAMApp.py:5915 msgid "Converted units to" msgstr "Einheiten wurden umgerechnet in" -#: FlatCAMApp.py:5901 -#, fuzzy -#| msgid " Units conversion cancelled." +#: FlatCAMApp.py:5929 msgid "Units conversion cancelled." msgstr " Einheitenumrechnung abgebrochen." -#: FlatCAMApp.py:6774 +#: FlatCAMApp.py:6802 msgid "Detachable Tabs" msgstr "Abnehmbare Laschen" -#: FlatCAMApp.py:6993 FlatCAMApp.py:7040 FlatCAMApp.py:7696 FlatCAMApp.py:7759 -#: FlatCAMApp.py:7825 +#: FlatCAMApp.py:7021 FlatCAMApp.py:7068 FlatCAMApp.py:7724 FlatCAMApp.py:7787 +#: FlatCAMApp.py:7853 msgid "Preferences" msgstr "Einstellungen" -#: FlatCAMApp.py:6996 -#, fuzzy -#| msgid "Preferences saved." +#: FlatCAMApp.py:7024 msgid "Preferences applied." -msgstr "Einstellungen gespeichert." +msgstr "Einstellungen werden angewendet." -#: FlatCAMApp.py:7045 -#, fuzzy -#| msgid "Preferences edited but not saved." +#: FlatCAMApp.py:7073 msgid "Preferences closed without saving." -msgstr "Einstellungen bearbeitet, aber nicht gespeichert." +msgstr "Einstellungen geschlossen ohne zu speichern." -#: FlatCAMApp.py:7068 flatcamTools/ToolNonCopperClear.py:596 -#: flatcamTools/ToolNonCopperClear.py:992 flatcamTools/ToolPaint.py:507 -#: flatcamTools/ToolSolderPaste.py:562 flatcamTools/ToolSolderPaste.py:889 +#: FlatCAMApp.py:7096 flatcamTools/ToolNonCopperClear.py:597 +#: flatcamTools/ToolNonCopperClear.py:993 flatcamTools/ToolPaint.py:508 +#: flatcamTools/ToolSolderPaste.py:562 flatcamTools/ToolSolderPaste.py:892 msgid "Please enter a tool diameter with non-zero value, in Float format." msgstr "" "Bitte geben Sie einen Werkzeugdurchmesser ungleich Null im Float-Format ein." -#: FlatCAMApp.py:7073 flatcamTools/ToolNonCopperClear.py:600 -#: flatcamTools/ToolPaint.py:511 flatcamTools/ToolSolderPaste.py:566 +#: FlatCAMApp.py:7101 flatcamTools/ToolNonCopperClear.py:601 +#: flatcamTools/ToolPaint.py:512 flatcamTools/ToolSolderPaste.py:566 msgid "Adding Tool cancelled" msgstr "Addierwerkzeug abgebrochen" -#: FlatCAMApp.py:7076 +#: FlatCAMApp.py:7104 msgid "" "Adding Tool works only when Advanced is checked.\n" "Go to Preferences -> General - Show Advanced Options." @@ -659,11 +633,11 @@ msgstr "" "ist.\n" "Gehen Sie zu Einstellungen -> Allgemein - Erweiterte Optionen anzeigen." -#: FlatCAMApp.py:7151 +#: FlatCAMApp.py:7179 msgid "Delete objects" msgstr "Objekte löschen" -#: FlatCAMApp.py:7154 +#: FlatCAMApp.py:7182 msgid "" "Are you sure you want to permanently delete\n" "the selected objects?" @@ -671,51 +645,51 @@ msgstr "" "Möchten Sie die ausgewählten Objekte\n" "wirklich dauerhaft löschen?" -#: FlatCAMApp.py:7185 +#: FlatCAMApp.py:7213 msgid "Object(s) deleted" msgstr "Objekt (e) gelöscht" -#: FlatCAMApp.py:7189 +#: FlatCAMApp.py:7217 msgid "Failed. No object(s) selected..." msgstr "Gescheitert. Kein Objekt ausgewählt ..." -#: FlatCAMApp.py:7191 +#: FlatCAMApp.py:7219 msgid "Save the work in Editor and try again ..." msgstr "Speichern Sie den Editor und versuchen Sie es erneut ..." -#: FlatCAMApp.py:7221 +#: FlatCAMApp.py:7249 msgid "Object deleted" msgstr "Objekt (e) gelöscht" -#: FlatCAMApp.py:7248 +#: FlatCAMApp.py:7276 msgid "Click to set the origin ..." msgstr "Klicken Sie hier, um den Ursprung festzulegen ..." -#: FlatCAMApp.py:7270 +#: FlatCAMApp.py:7298 msgid "Setting Origin..." msgstr "Ursprung setzten ..." -#: FlatCAMApp.py:7282 +#: FlatCAMApp.py:7310 msgid "Origin set" msgstr "Ursprung gesetzt" -#: FlatCAMApp.py:7289 +#: FlatCAMApp.py:7317 msgid "Origin coordinates specified but incomplete." msgstr "Ursprungskoordinaten angegeben, aber unvollständig." -#: FlatCAMApp.py:7347 +#: FlatCAMApp.py:7375 msgid "Jump to ..." msgstr "Springen zu ..." -#: FlatCAMApp.py:7348 +#: FlatCAMApp.py:7376 msgid "Enter the coordinates in format X,Y:" msgstr "Geben Sie die Koordinaten im Format X, Y ein:" -#: FlatCAMApp.py:7356 +#: FlatCAMApp.py:7384 msgid "Wrong coordinates. Enter coordinates in format: X,Y" msgstr "Falsche Koordinaten. Koordinaten im Format eingeben: X, Y" -#: FlatCAMApp.py:7424 flatcamEditors/FlatCAMExcEditor.py:3518 +#: FlatCAMApp.py:7452 flatcamEditors/FlatCAMExcEditor.py:3518 #: flatcamEditors/FlatCAMExcEditor.py:3526 #: flatcamEditors/FlatCAMGeoEditor.py:3885 #: flatcamEditors/FlatCAMGeoEditor.py:3900 @@ -724,59 +698,55 @@ msgstr "Falsche Koordinaten. Koordinaten im Format eingeben: X, Y" #: flatcamEditors/FlatCAMGrbEditor.py:1446 #: flatcamEditors/FlatCAMGrbEditor.py:1704 #: flatcamEditors/FlatCAMGrbEditor.py:4368 -#: flatcamEditors/FlatCAMGrbEditor.py:4383 flatcamGUI/FlatCAMGUI.py:2871 -#: flatcamGUI/FlatCAMGUI.py:2883 +#: flatcamEditors/FlatCAMGrbEditor.py:4383 flatcamGUI/FlatCAMGUI.py:3106 +#: flatcamGUI/FlatCAMGUI.py:3118 msgid "Done." msgstr "Fertig." -#: FlatCAMApp.py:7576 FlatCAMApp.py:7647 +#: FlatCAMApp.py:7604 FlatCAMApp.py:7675 msgid "No object is selected. Select an object and try again." msgstr "" "Es ist kein Objekt ausgewählt. Wählen Sie ein Objekt und versuchen Sie es " "erneut." -#: FlatCAMApp.py:7667 +#: FlatCAMApp.py:7695 msgid "" "Aborting. The current task will be gracefully closed as soon as possible..." msgstr "" "Abbrechen. Die aktuelle Aufgabe wird so schnell wie möglich ordnungsgemäß " "abgeschlossen ..." -#: FlatCAMApp.py:7673 +#: FlatCAMApp.py:7701 msgid "The current task was gracefully closed on user request..." msgstr "" "Die aktuelle Aufgabe wurde auf Benutzeranforderung ordnungsgemäß " "geschlossen ..." -#: FlatCAMApp.py:7756 +#: FlatCAMApp.py:7784 msgid "Preferences edited but not saved." msgstr "Einstellungen bearbeitet, aber nicht gespeichert." -#: FlatCAMApp.py:7770 FlatCAMApp.py:7782 FlatCAMApp.py:7799 FlatCAMApp.py:7816 -#: FlatCAMApp.py:7876 FlatCAMCommon.py:1161 FlatCAMCommon.py:1336 -#: FlatCAMObj.py:4213 -#, fuzzy -#| msgid "Tool Data" +#: FlatCAMApp.py:7798 FlatCAMApp.py:7810 FlatCAMApp.py:7827 FlatCAMApp.py:7844 +#: FlatCAMApp.py:7904 FlatCAMCommon.py:1161 FlatCAMCommon.py:1336 +#: FlatCAMObj.py:4216 msgid "Tools Database" -msgstr "Werkzeugdaten" +msgstr "Werkzeugdatenbank" -#: FlatCAMApp.py:7796 -#, fuzzy -#| msgid "Preferences edited but not saved." +#: FlatCAMApp.py:7824 msgid "Tools in Tools Database edited but not saved." -msgstr "Einstellungen bearbeitet, aber nicht gespeichert." +msgstr "Werkzeugdatenbank geschlossen ohne zu speichern." -#: FlatCAMApp.py:7820 -#, fuzzy -#| msgid "Tool added in Tool Table." +#: FlatCAMApp.py:7848 msgid "Tool from DB added in Tool Table." -msgstr "Werkzeug in der Werkzeugtabelle hinzugefügt." +msgstr "Werkzeug aus Werkzeugdatenbank zur Werkzeugtabelle hinzugefügt." -#: FlatCAMApp.py:7822 +#: FlatCAMApp.py:7850 msgid "Adding tool from DB is not allowed for this object." msgstr "" +"Das Hinzufügen von Werkzeugen aus der Datenbank ist für dieses Objekt nicht " +"zulässig." -#: FlatCAMApp.py:7856 +#: FlatCAMApp.py:7884 msgid "" "One or more values are changed.\n" "Do you want to save the Preferences?" @@ -784,113 +754,107 @@ msgstr "" "Ein oder mehrere Werte werden geändert.\n" "Möchten Sie die Einstellungen speichern?" -#: FlatCAMApp.py:7858 flatcamGUI/FlatCAMGUI.py:220 +#: FlatCAMApp.py:7886 flatcamGUI/FlatCAMGUI.py:222 msgid "Save Preferences" msgstr "Einstellungen speichern" -#: FlatCAMApp.py:7882 -#, fuzzy -#| msgid "" -#| "One or more values are changed.\n" -#| "Do you want to save the Preferences?" +#: FlatCAMApp.py:7910 msgid "" "One or more Tools are edited.\n" "Do you want to update the Tools Database?" msgstr "" -"Ein oder mehrere Werte werden geändert.\n" -"Möchten Sie die Einstellungen speichern?" +"Ein oder mehrere Werkzeuge wurden geändert.\n" +"Möchten Sie die Werkzeugdatenbank aktualisieren?" -#: FlatCAMApp.py:7884 -#, fuzzy -#| msgid "Tool Data" +#: FlatCAMApp.py:7912 msgid "Save Tools Database" -msgstr "Werkzeugdaten" +msgstr "Werkzeugdatenbank speichern" -#: FlatCAMApp.py:7903 FlatCAMApp.py:10015 FlatCAMObj.py:6456 +#: FlatCAMApp.py:7931 FlatCAMApp.py:10047 FlatCAMObj.py:6459 msgid "Code Editor" msgstr "Code-Editor" -#: FlatCAMApp.py:7921 +#: FlatCAMApp.py:7949 msgid "No object selected to Flip on Y axis." -msgstr "Kein Objekt ausgewählt, um auf der Y-Achse zu kippen." +msgstr "Kein Objekt ausgewählt, um auf der Y-Achse zu spiegeln." -#: FlatCAMApp.py:7947 +#: FlatCAMApp.py:7975 msgid "Flip on Y axis done." msgstr "Y-Achse spiegeln fertig." -#: FlatCAMApp.py:7949 FlatCAMApp.py:7991 +#: FlatCAMApp.py:7977 FlatCAMApp.py:8019 #: flatcamEditors/FlatCAMGrbEditor.py:5773 msgid "Flip action was not executed." msgstr "Flip-Aktion wurde nicht ausgeführt." -#: FlatCAMApp.py:7963 +#: FlatCAMApp.py:7991 msgid "No object selected to Flip on X axis." msgstr "Es wurde kein Objekt zum Spiegeln auf der X-Achse ausgewählt." -#: FlatCAMApp.py:7989 +#: FlatCAMApp.py:8017 msgid "Flip on X axis done." msgstr "Flip on X axis done." -#: FlatCAMApp.py:8005 +#: FlatCAMApp.py:8033 msgid "No object selected to Rotate." msgstr "Es wurde kein Objekt zum Drehen ausgewählt." -#: FlatCAMApp.py:8008 FlatCAMApp.py:8055 FlatCAMApp.py:8088 +#: FlatCAMApp.py:8036 FlatCAMApp.py:8083 FlatCAMApp.py:8116 msgid "Transform" msgstr "Verwandeln" -#: FlatCAMApp.py:8008 FlatCAMApp.py:8055 FlatCAMApp.py:8088 +#: FlatCAMApp.py:8036 FlatCAMApp.py:8083 FlatCAMApp.py:8116 msgid "Enter the Angle value:" msgstr "Geben Sie den Winkelwert ein:" -#: FlatCAMApp.py:8039 +#: FlatCAMApp.py:8067 msgid "Rotation done." msgstr "Rotation abgeschlossen." -#: FlatCAMApp.py:8041 +#: FlatCAMApp.py:8069 msgid "Rotation movement was not executed." msgstr "Drehbewegung wurde nicht ausgeführt." -#: FlatCAMApp.py:8053 +#: FlatCAMApp.py:8081 msgid "No object selected to Skew/Shear on X axis." msgstr "Auf der X-Achse wurde kein Objekt zum Neigen / Schneiden ausgewählt." -#: FlatCAMApp.py:8075 +#: FlatCAMApp.py:8103 msgid "Skew on X axis done." msgstr "Neigung auf der X-Achse." -#: FlatCAMApp.py:8086 +#: FlatCAMApp.py:8114 msgid "No object selected to Skew/Shear on Y axis." msgstr "Kein Objekt für Neigung / Schneiden auf der Y-Achse ausgewählt." -#: FlatCAMApp.py:8108 +#: FlatCAMApp.py:8136 msgid "Skew on Y axis done." msgstr "Neigung auf der Y-Achse." -#: FlatCAMApp.py:8256 FlatCAMApp.py:8303 flatcamGUI/FlatCAMGUI.py:429 -#: flatcamGUI/FlatCAMGUI.py:1465 +#: FlatCAMApp.py:8284 FlatCAMApp.py:8331 flatcamGUI/FlatCAMGUI.py:451 +#: flatcamGUI/FlatCAMGUI.py:1581 msgid "Select All" msgstr "Select All" -#: FlatCAMApp.py:8260 FlatCAMApp.py:8307 flatcamGUI/FlatCAMGUI.py:432 +#: FlatCAMApp.py:8288 FlatCAMApp.py:8335 flatcamGUI/FlatCAMGUI.py:453 msgid "Deselect All" msgstr "Alle abwählen" -#: FlatCAMApp.py:8323 +#: FlatCAMApp.py:8351 msgid "All objects are selected." msgstr "Alle Objekte werden ausgewählt." -#: FlatCAMApp.py:8333 +#: FlatCAMApp.py:8361 msgid "Objects selection is cleared." msgstr "Die Objektauswahl wird gelöscht." -#: FlatCAMApp.py:8349 flatcamGUI/FlatCAMGUI.py:1458 +#: FlatCAMApp.py:8378 flatcamGUI/FlatCAMGUI.py:1574 msgid "Grid On/Off" msgstr "Raster ein/aus" -#: FlatCAMApp.py:8362 flatcamEditors/FlatCAMGeoEditor.py:940 +#: FlatCAMApp.py:8393 flatcamEditors/FlatCAMGeoEditor.py:940 #: flatcamEditors/FlatCAMGrbEditor.py:2503 -#: flatcamEditors/FlatCAMGrbEditor.py:5346 flatcamGUI/ObjectUI.py:1265 +#: flatcamEditors/FlatCAMGrbEditor.py:5346 flatcamGUI/ObjectUI.py:1304 #: flatcamTools/ToolDblSided.py:185 flatcamTools/ToolDblSided.py:238 #: flatcamTools/ToolNonCopperClear.py:286 flatcamTools/ToolPaint.py:188 #: flatcamTools/ToolSolderPaste.py:121 flatcamTools/ToolSolderPaste.py:591 @@ -898,80 +862,78 @@ msgstr "Raster ein/aus" msgid "Add" msgstr "Hinzufügen" -#: FlatCAMApp.py:8363 FlatCAMObj.py:3900 +#: FlatCAMApp.py:8395 FlatCAMObj.py:3902 #: flatcamEditors/FlatCAMGrbEditor.py:2508 -#: 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 +#: flatcamEditors/FlatCAMGrbEditor.py:2656 flatcamGUI/FlatCAMGUI.py:654 +#: flatcamGUI/FlatCAMGUI.py:965 flatcamGUI/FlatCAMGUI.py:1987 +#: flatcamGUI/FlatCAMGUI.py:2130 flatcamGUI/FlatCAMGUI.py:2524 +#: flatcamGUI/ObjectUI.py:1330 flatcamTools/ToolNonCopperClear.py:298 #: flatcamTools/ToolPaint.py:200 flatcamTools/ToolSolderPaste.py:127 -#: flatcamTools/ToolSolderPaste.py:593 +#: flatcamTools/ToolSolderPaste.py:594 msgid "Delete" msgstr "Löschen" -#: FlatCAMApp.py:8376 +#: FlatCAMApp.py:8408 msgid "New Grid ..." msgstr "Neues Raster ..." -#: FlatCAMApp.py:8377 +#: FlatCAMApp.py:8409 msgid "Enter a Grid Value:" msgstr "Geben Sie einen Rasterwert ein:" -#: FlatCAMApp.py:8385 FlatCAMApp.py:8412 +#: FlatCAMApp.py:8417 FlatCAMApp.py:8444 msgid "Please enter a grid value with non-zero value, in Float format." msgstr "" "Bitte geben Sie im Float-Format einen Rasterwert mit einem Wert ungleich " "Null ein." -#: FlatCAMApp.py:8391 +#: FlatCAMApp.py:8423 msgid "New Grid added" msgstr "Neues Raster" -#: FlatCAMApp.py:8394 +#: FlatCAMApp.py:8426 msgid "Grid already exists" msgstr "Netz existiert bereits" -#: FlatCAMApp.py:8397 +#: FlatCAMApp.py:8429 msgid "Adding New Grid cancelled" msgstr "Neues Netz wurde abgebrochen" -#: FlatCAMApp.py:8419 +#: FlatCAMApp.py:8451 msgid " Grid Value does not exist" msgstr " Rasterwert existiert nicht" -#: FlatCAMApp.py:8422 +#: FlatCAMApp.py:8454 msgid "Grid Value deleted" msgstr "Rasterwert gelöscht" -#: FlatCAMApp.py:8425 +#: FlatCAMApp.py:8457 msgid "Delete Grid value cancelled" msgstr "Rasterwert löschen abgebrochen" -#: FlatCAMApp.py:8431 +#: FlatCAMApp.py:8463 msgid "Key Shortcut List" msgstr "Tastenkürzel Liste" -#: FlatCAMApp.py:8465 +#: FlatCAMApp.py:8497 msgid " No object selected to copy it's name" msgstr " Kein Objekt zum Kopieren des Namens ausgewählt" -#: FlatCAMApp.py:8469 +#: FlatCAMApp.py:8501 msgid "Name copied on clipboard ..." msgstr "Name in Zwischenablage kopiert ..." -#: FlatCAMApp.py:8666 flatcamEditors/FlatCAMGrbEditor.py:4300 +#: FlatCAMApp.py:8698 flatcamEditors/FlatCAMGrbEditor.py:4300 msgid "Coordinates copied to clipboard." msgstr "Koordinaten in die Zwischenablage kopiert." -#: 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 -#, fuzzy -#| msgid "Selected" +#: FlatCAMApp.py:8912 FlatCAMApp.py:8918 FlatCAMApp.py:8924 FlatCAMApp.py:8930 +#: ObjectCollection.py:792 ObjectCollection.py:798 ObjectCollection.py:804 +#: ObjectCollection.py:810 ObjectCollection.py:816 ObjectCollection.py:822 msgid "selected" -msgstr "Ausgewählt" +msgstr "ausgewählt" -#: FlatCAMApp.py:9040 +#: FlatCAMApp.py:9072 msgid "" "There are files/objects opened in FlatCAM.\n" "Creating a New project will delete them.\n" @@ -981,384 +943,376 @@ msgstr "" "Wenn Sie ein neues Projekt erstellen, werden diese gelöscht.\n" "Möchten Sie das Projekt speichern?" -#: FlatCAMApp.py:9062 +#: FlatCAMApp.py:9094 msgid "New Project created" msgstr "Neues Projekt erstellt" -#: FlatCAMApp.py:9197 FlatCAMApp.py:9201 flatcamGUI/FlatCAMGUI.py:696 -#: flatcamGUI/FlatCAMGUI.py:2149 +#: FlatCAMApp.py:9229 FlatCAMApp.py:9233 flatcamGUI/FlatCAMGUI.py:741 +#: flatcamGUI/FlatCAMGUI.py:2317 msgid "Open Gerber" msgstr "Gerber öffnen" -#: FlatCAMApp.py:9208 +#: FlatCAMApp.py:9240 msgid "Opening Gerber file." msgstr "Gerber-Datei öffnen." -#: FlatCAMApp.py:9214 +#: FlatCAMApp.py:9246 msgid "Open Gerber cancelled." msgstr "Öffnen der Gerberdatei abgebrochen." -#: FlatCAMApp.py:9235 FlatCAMApp.py:9239 flatcamGUI/FlatCAMGUI.py:697 -#: flatcamGUI/FlatCAMGUI.py:2150 +#: FlatCAMApp.py:9267 FlatCAMApp.py:9271 flatcamGUI/FlatCAMGUI.py:743 +#: flatcamGUI/FlatCAMGUI.py:2319 msgid "Open Excellon" msgstr "Excellon öffnen" -#: FlatCAMApp.py:9245 +#: FlatCAMApp.py:9277 msgid "Opening Excellon file." msgstr "Excellon-Datei öffnen." -#: FlatCAMApp.py:9251 +#: FlatCAMApp.py:9283 msgid " Open Excellon cancelled." msgstr " Öffnen der Excellon-Datei abgebrochen." -#: FlatCAMApp.py:9275 FlatCAMApp.py:9279 +#: FlatCAMApp.py:9307 FlatCAMApp.py:9311 msgid "Open G-Code" msgstr "G-Code öffnen" -#: FlatCAMApp.py:9286 +#: FlatCAMApp.py:9318 msgid "Opening G-Code file." msgstr "Öffnen der G-Code-Datei." -#: FlatCAMApp.py:9292 +#: FlatCAMApp.py:9324 msgid "Open G-Code cancelled." msgstr "Öffnen der G-Code-Datei abgebrochen." -#: FlatCAMApp.py:9310 FlatCAMApp.py:9313 flatcamGUI/FlatCAMGUI.py:1467 +#: FlatCAMApp.py:9342 FlatCAMApp.py:9345 flatcamGUI/FlatCAMGUI.py:1583 msgid "Open Project" msgstr "Projekt öffnen" -#: FlatCAMApp.py:9322 +#: FlatCAMApp.py:9354 msgid "Open Project cancelled." msgstr "Projektdatei öffnen abgebrochen." -#: FlatCAMApp.py:9346 FlatCAMApp.py:9350 -#, fuzzy -#| msgid "Open PDF" +#: FlatCAMApp.py:9378 FlatCAMApp.py:9382 msgid "Open HPGL2" -msgstr "PDF öffnen" +msgstr "HPGL2 öffnen" -#: FlatCAMApp.py:9357 -#, fuzzy -#| msgid "Opening Gerber file." +#: FlatCAMApp.py:9389 msgid "Opening HPGL2 file." -msgstr "Gerber-Datei öffnen." +msgstr "HPGL2-Datei öffnen." -#: FlatCAMApp.py:9362 -#, fuzzy -#| msgid "Open SVG cancelled." +#: FlatCAMApp.py:9394 msgid "Open HPGL2 file cancelled." -msgstr "Öffnen der SVG-Datei abgebrochen." +msgstr "Öffnen der HPGL2-Datei abgebrochen." -#: FlatCAMApp.py:9380 FlatCAMApp.py:9383 +#: FlatCAMApp.py:9412 FlatCAMApp.py:9415 msgid "Open Configuration File" msgstr "Einstellungsdatei öffne" -#: FlatCAMApp.py:9388 +#: FlatCAMApp.py:9420 msgid "Open Config cancelled." msgstr "Öffnen der Konfigurationsdatei abgebrochen." -#: FlatCAMApp.py:9404 FlatCAMApp.py:9772 FlatCAMApp.py:10246 +#: FlatCAMApp.py:9436 FlatCAMApp.py:9804 FlatCAMApp.py:10278 msgid "No object selected." msgstr "Kein Objekt ausgewählt." -#: FlatCAMApp.py:9405 FlatCAMApp.py:9773 +#: FlatCAMApp.py:9437 FlatCAMApp.py:9805 msgid "Please Select a Geometry object to export" msgstr "Bitte wählen Sie ein Geometrieobjekt zum Exportieren aus" -#: FlatCAMApp.py:9419 +#: FlatCAMApp.py:9451 msgid "Only Geometry, Gerber and CNCJob objects can be used." msgstr "Es können nur Geometrie-, Gerber- und CNCJob-Objekte verwendet werden." -#: FlatCAMApp.py:9432 FlatCAMApp.py:9436 flatcamTools/ToolQRCode.py:827 +#: FlatCAMApp.py:9464 FlatCAMApp.py:9468 flatcamTools/ToolQRCode.py:827 #: flatcamTools/ToolQRCode.py:831 msgid "Export SVG" msgstr "SVG exportieren" -#: FlatCAMApp.py:9442 flatcamTools/ToolQRCode.py:836 +#: FlatCAMApp.py:9474 flatcamTools/ToolQRCode.py:836 msgid " Export SVG cancelled." msgstr " Export von SVG abgebrochen." -#: FlatCAMApp.py:9463 +#: FlatCAMApp.py:9495 msgid "Data must be a 3D array with last dimension 3 or 4" msgstr "Daten müssen ein 3D-Array mit der letzten Dimension 3 oder 4 sein" -#: FlatCAMApp.py:9469 FlatCAMApp.py:9473 +#: FlatCAMApp.py:9501 FlatCAMApp.py:9505 msgid "Export PNG Image" msgstr "PNG-Bild exportieren" -#: FlatCAMApp.py:9478 +#: FlatCAMApp.py:9510 msgid "Export PNG cancelled." msgstr "Export PNG abgebrochen." -#: FlatCAMApp.py:9502 +#: FlatCAMApp.py:9534 msgid "No object selected. Please select an Gerber object to export." msgstr "" "Kein Objekt ausgewählt. Bitte wählen Sie ein Gerber-Objekt aus, das Sie " "exportieren möchten." -#: FlatCAMApp.py:9508 FlatCAMApp.py:9731 +#: FlatCAMApp.py:9540 FlatCAMApp.py:9763 msgid "Failed. Only Gerber objects can be saved as Gerber files..." msgstr "" "Fehlgeschlagen. Nur Gerber-Objekte können als Gerber-Dateien gespeichert " "werden ..." -#: FlatCAMApp.py:9520 +#: FlatCAMApp.py:9552 msgid "Save Gerber source file" msgstr "Gerber-Quelldatei speichern" -#: FlatCAMApp.py:9526 +#: FlatCAMApp.py:9558 msgid "Save Gerber source file cancelled." msgstr "Gerber Quelldatei speichern abgebrochen." -#: FlatCAMApp.py:9546 +#: FlatCAMApp.py:9578 msgid "No object selected. Please select an Script object to export." msgstr "" "Kein Objekt ausgewählt. Bitte wählen Sie ein zu exportierendes Script-Objekt." -#: FlatCAMApp.py:9552 +#: FlatCAMApp.py:9584 msgid "Failed. Only Script objects can be saved as TCL Script files..." msgstr "" "Gescheitert. Nur Skriptobjekte können als TCL-Skriptdateien gespeichert " "werden ..." -#: FlatCAMApp.py:9564 +#: FlatCAMApp.py:9596 msgid "Save Script source file" msgstr "Speichern Sie die Quelldatei des Skripts" -#: FlatCAMApp.py:9570 +#: FlatCAMApp.py:9602 msgid "Save Script source file cancelled." msgstr "Speichern der Skript-Quelldatei abgebrochen." -#: FlatCAMApp.py:9590 +#: FlatCAMApp.py:9622 msgid "No object selected. Please select an Document object to export." msgstr "" "Kein Objekt ausgewählt. Bitte wählen Sie ein zu exportierendes " "Dokumentobjekt aus." -#: FlatCAMApp.py:9596 +#: FlatCAMApp.py:9628 msgid "Failed. Only Document objects can be saved as Document files..." msgstr "" "Gescheitert. Nur Dokumentobjekte können als Dokumentdateien gespeichert " "werden ..." -#: FlatCAMApp.py:9608 +#: FlatCAMApp.py:9640 msgid "Save Document source file" msgstr "Speichern Sie die Quelldatei des Dokuments" -#: FlatCAMApp.py:9614 +#: FlatCAMApp.py:9646 msgid "Save Document source file cancelled." msgstr "Quelldatei des Dokuments speichern abgebrochen." -#: FlatCAMApp.py:9634 +#: FlatCAMApp.py:9666 msgid "No object selected. Please select an Excellon object to export." msgstr "" "Kein Objekt ausgewählt Bitte wählen Sie ein Excellon-Objekt zum Exportieren " "aus." -#: FlatCAMApp.py:9640 FlatCAMApp.py:9684 FlatCAMApp.py:10422 +#: FlatCAMApp.py:9672 FlatCAMApp.py:9716 FlatCAMApp.py:10454 msgid "Failed. Only Excellon objects can be saved as Excellon files..." msgstr "" "Fehlgeschlagen. Nur Excellon-Objekte können als Excellon-Dateien gespeichert " "werden ..." -#: FlatCAMApp.py:9648 FlatCAMApp.py:9652 +#: FlatCAMApp.py:9680 FlatCAMApp.py:9684 msgid "Save Excellon source file" msgstr "Speichern Sie die Excellon-Quelldatei" -#: FlatCAMApp.py:9658 +#: FlatCAMApp.py:9690 msgid "Saving Excellon source file cancelled." msgstr "Speichern der Excellon-Quelldatei abgebrochen." -#: FlatCAMApp.py:9678 +#: FlatCAMApp.py:9710 msgid "No object selected. Please Select an Excellon object to export." msgstr "" "Kein Objekt ausgewählt. Bitte wählen Sie ein Excellon-Objekt aus, das Sie " "exportieren möchten." -#: FlatCAMApp.py:9692 FlatCAMApp.py:9696 +#: FlatCAMApp.py:9724 FlatCAMApp.py:9728 msgid "Export Excellon" msgstr "Excellon exportieren" -#: FlatCAMApp.py:9702 +#: FlatCAMApp.py:9734 msgid "Export Excellon cancelled." msgstr "Export der Excellon-Datei abgebrochen." -#: FlatCAMApp.py:9725 +#: FlatCAMApp.py:9757 msgid "No object selected. Please Select an Gerber object to export." msgstr "" "Kein Objekt ausgewählt. Bitte wählen Sie ein Gerber-Objekt aus, das Sie " "exportieren möchten." -#: FlatCAMApp.py:9739 FlatCAMApp.py:9743 +#: FlatCAMApp.py:9771 FlatCAMApp.py:9775 msgid "Export Gerber" msgstr "Gerber exportieren" -#: FlatCAMApp.py:9749 +#: FlatCAMApp.py:9781 msgid "Export Gerber cancelled." msgstr "Export der Gerberdatei abgebrochen." -#: FlatCAMApp.py:9784 +#: FlatCAMApp.py:9816 msgid "Only Geometry objects can be used." msgstr "Es können nur Geometrieobjekte verwendet werden." -#: FlatCAMApp.py:9798 FlatCAMApp.py:9802 +#: FlatCAMApp.py:9830 FlatCAMApp.py:9834 msgid "Export DXF" msgstr "DXF exportieren" -#: FlatCAMApp.py:9809 +#: FlatCAMApp.py:9841 msgid "Export DXF cancelled." msgstr "Export der DXF-Datei abgebrochen." -#: FlatCAMApp.py:9829 FlatCAMApp.py:9832 +#: FlatCAMApp.py:9861 FlatCAMApp.py:9864 msgid "Import SVG" msgstr "SVG importieren" -#: FlatCAMApp.py:9842 +#: FlatCAMApp.py:9874 msgid "Open SVG cancelled." msgstr "Öffnen der SVG-Datei abgebrochen." -#: FlatCAMApp.py:9861 FlatCAMApp.py:9865 +#: FlatCAMApp.py:9893 FlatCAMApp.py:9897 msgid "Import DXF" msgstr "Importieren Sie DXF" -#: FlatCAMApp.py:9875 +#: FlatCAMApp.py:9907 msgid "Open DXF cancelled." msgstr "Öffnen der DXF-Datei abgebrochen." -#: FlatCAMApp.py:9917 +#: FlatCAMApp.py:9949 msgid "Viewing the source code of the selected object." msgstr "Anzeigen des Quellcodes des ausgewählten Objekts." -#: FlatCAMApp.py:9918 FlatCAMObj.py:6442 FlatCAMObj.py:7043 +#: FlatCAMApp.py:9950 FlatCAMObj.py:6445 FlatCAMObj.py:7046 msgid "Loading..." msgstr "Wird geladen..." -#: FlatCAMApp.py:9924 FlatCAMApp.py:9928 +#: FlatCAMApp.py:9956 FlatCAMApp.py:9960 msgid "Select an Gerber or Excellon file to view it's source file." msgstr "" "Wählen Sie eine Gerber- oder Excellon-Datei aus, um die Quelldatei " "anzuzeigen." -#: FlatCAMApp.py:9942 +#: FlatCAMApp.py:9974 msgid "Source Editor" msgstr "Quelleditor" -#: FlatCAMApp.py:9982 FlatCAMApp.py:9989 +#: FlatCAMApp.py:10014 FlatCAMApp.py:10021 msgid "There is no selected object for which to see it's source file code." msgstr "" "Es gibt kein ausgewähltes Objekt, für das man seinen Quelldateien sehen kann." -#: FlatCAMApp.py:10001 +#: FlatCAMApp.py:10033 msgid "Failed to load the source code for the selected object" msgstr "Fehler beim Laden des Quellcodes für das ausgewählte Objekt" -#: FlatCAMApp.py:10043 +#: FlatCAMApp.py:10075 msgid "New TCL script file created in Code Editor." msgstr "Neue TCL-Skriptdatei, die im Code-Editor erstellt wurde." -#: FlatCAMApp.py:10081 FlatCAMApp.py:10083 +#: FlatCAMApp.py:10113 FlatCAMApp.py:10115 msgid "Open TCL script" msgstr "Öffnen Sie das TCL-Skript" -#: FlatCAMApp.py:10087 +#: FlatCAMApp.py:10119 msgid "Open TCL script cancelled." msgstr "Öffnen der TCL-Skriptdatei abgebrochen." -#: FlatCAMApp.py:10111 +#: FlatCAMApp.py:10143 msgid "Executing FlatCAMScript file." msgstr "FlatCAMScript-Datei wird ausgeführt." -#: FlatCAMApp.py:10118 FlatCAMApp.py:10121 +#: FlatCAMApp.py:10150 FlatCAMApp.py:10153 msgid "Run TCL script" msgstr "Führen Sie das TCL-Skript aus" -#: FlatCAMApp.py:10131 +#: FlatCAMApp.py:10163 msgid "Run TCL script cancelled." msgstr "Ausführen der TCL-Skriptdatei abgebrochen." -#: FlatCAMApp.py:10147 +#: FlatCAMApp.py:10179 msgid "TCL script file opened in Code Editor and executed." msgstr "TCL-Skriptdatei im Code-Editor geöffnet und ausgeführt." -#: FlatCAMApp.py:10198 FlatCAMApp.py:10204 +#: FlatCAMApp.py:10230 FlatCAMApp.py:10236 msgid "Save Project As ..." msgstr "Projekt speichern als ..." -#: FlatCAMApp.py:10200 flatcamGUI/FlatCAMGUI.py:909 -#: flatcamGUI/FlatCAMGUI.py:1899 +#: FlatCAMApp.py:10232 flatcamGUI/FlatCAMGUI.py:1025 +#: flatcamGUI/FlatCAMGUI.py:2022 msgid "Project" msgstr "Projekt" -#: FlatCAMApp.py:10209 +#: FlatCAMApp.py:10241 msgid "Save Project cancelled." msgstr "Projekt speichern abgebrochen." -#: FlatCAMApp.py:10216 +#: FlatCAMApp.py:10248 msgid "The object is used by another application." -msgstr "" +msgstr "Das Objekt wird von einer anderen Anwendung verwendet." -#: FlatCAMApp.py:10252 FlatCAMApp.py:10259 flatcamGUI/FlatCAMGUI.py:261 -#, fuzzy -#| msgid "Save Project As ..." +#: FlatCAMApp.py:10284 FlatCAMApp.py:10291 flatcamGUI/FlatCAMGUI.py:265 msgid "Save Object as PDF ..." -msgstr "Projekt speichern als ..." +msgstr "Objekt als PDF speichern ..." -#: FlatCAMApp.py:10264 -#, fuzzy -#| msgid "Save Project cancelled." +#: FlatCAMApp.py:10296 msgid "Save Object PDF cancelled." -msgstr "Projekt speichern abgebrochen." +msgstr "Objekt speichern PDF abgebrochen." -#: FlatCAMApp.py:10302 +#: FlatCAMApp.py:10334 msgid "Exporting SVG" msgstr "SVG exportieren" -#: FlatCAMApp.py:10346 +#: FlatCAMApp.py:10378 msgid "SVG file exported to" msgstr "SVG-Datei exportiert nach" -#: FlatCAMApp.py:10371 +#: FlatCAMApp.py:10403 msgid "" "Save cancelled because source file is empty. Try to export the Gerber file." msgstr "" +"Speichern abgebrochen, da die Quelldatei leer ist. Versuchen Sie einen " +"Export der Gerber Datei." -#: FlatCAMApp.py:10517 +#: FlatCAMApp.py:10549 msgid "Excellon file exported to" msgstr "Excellon-Datei exportiert nach" -#: FlatCAMApp.py:10526 +#: FlatCAMApp.py:10558 msgid "Exporting Excellon" msgstr "Excellon exportieren" -#: FlatCAMApp.py:10532 FlatCAMApp.py:10540 +#: FlatCAMApp.py:10564 FlatCAMApp.py:10572 msgid "Could not export Excellon file." msgstr "Excellon-Datei konnte nicht exportiert werden." -#: FlatCAMApp.py:10656 +#: FlatCAMApp.py:10688 msgid "Gerber file exported to" msgstr "Gerberdatei exportiert nach" -#: FlatCAMApp.py:10664 +#: FlatCAMApp.py:10696 msgid "Exporting Gerber" msgstr "Gerber exportieren" -#: FlatCAMApp.py:10670 FlatCAMApp.py:10678 +#: FlatCAMApp.py:10702 FlatCAMApp.py:10710 msgid "Could not export Gerber file." msgstr "Gerber-Datei konnte nicht exportiert werden." -#: FlatCAMApp.py:10712 +#: FlatCAMApp.py:10744 msgid "DXF file exported to" msgstr "DXF-Datei exportiert nach" -#: FlatCAMApp.py:10718 +#: FlatCAMApp.py:10750 msgid "Exporting DXF" msgstr "DXF exportieren" -#: FlatCAMApp.py:10723 FlatCAMApp.py:10730 +#: FlatCAMApp.py:10755 FlatCAMApp.py:10762 msgid "Could not export DXF file." msgstr "DXF-Datei konnte nicht exportiert werden." -#: FlatCAMApp.py:10753 FlatCAMApp.py:10796 flatcamTools/ToolImage.py:278 +#: FlatCAMApp.py:10785 FlatCAMApp.py:10828 flatcamTools/ToolImage.py:278 msgid "" "Not supported type is picked as parameter. Only Geometry and Gerber are " "supported" @@ -1366,88 +1320,88 @@ msgstr "" "Nicht unterstützte Art wird als Parameter ausgewählt. Nur Geometrie und " "Gerber werden unterstützt" -#: FlatCAMApp.py:10763 +#: FlatCAMApp.py:10795 msgid "Importing SVG" msgstr "SVG importieren" -#: 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 +#: FlatCAMApp.py:10806 FlatCAMApp.py:10848 FlatCAMApp.py:10907 +#: FlatCAMApp.py:10974 FlatCAMApp.py:11037 FlatCAMApp.py:11104 +#: FlatCAMApp.py:11142 flatcamTools/ToolImage.py:298 #: flatcamTools/ToolPDF.py:225 msgid "Opened" msgstr "Geöffnet" -#: FlatCAMApp.py:10805 +#: FlatCAMApp.py:10837 msgid "Importing DXF" msgstr "DXF importieren" -#: FlatCAMApp.py:10841 FlatCAMApp.py:11031 +#: FlatCAMApp.py:10873 FlatCAMApp.py:11063 msgid "Failed to open file" msgstr "Datei konnte nicht geöffnet werden" -#: FlatCAMApp.py:10844 FlatCAMApp.py:11034 +#: FlatCAMApp.py:10876 FlatCAMApp.py:11066 msgid "Failed to parse file" msgstr "Datei konnte nicht analysiert werden" -#: FlatCAMApp.py:10849 FlatCAMApp.py:10910 FlatCAMApp.py:11039 -#: FlatCAMObj.py:5004 flatcamEditors/FlatCAMGrbEditor.py:4110 +#: FlatCAMApp.py:10881 FlatCAMApp.py:10942 FlatCAMApp.py:11071 +#: FlatCAMObj.py:5007 flatcamEditors/FlatCAMGrbEditor.py:4110 #: flatcamTools/ToolPcbWizard.py:437 msgid "An internal error has occurred. See shell.\n" msgstr "Ein interner Fehler ist aufgetreten. Siehe Shell.\n" -#: FlatCAMApp.py:10856 +#: FlatCAMApp.py:10888 msgid "Object is not Gerber file or empty. Aborting object creation." msgstr "" "Objekt ist keine Gerberdatei oder leer. Objekterstellung wird abgebrochen." -#: FlatCAMApp.py:10861 +#: FlatCAMApp.py:10893 msgid "Opening Gerber" msgstr "Gerber öffnen" -#: FlatCAMApp.py:10868 +#: FlatCAMApp.py:10900 msgid " Open Gerber failed. Probable not a Gerber file." msgstr " Gerber öffnen ist fehlgeschlagen. Wahrscheinlich keine Gerber-Datei." -#: FlatCAMApp.py:10900 flatcamTools/ToolPcbWizard.py:427 +#: FlatCAMApp.py:10932 flatcamTools/ToolPcbWizard.py:427 msgid "This is not Excellon file." msgstr "Dies ist keine Excellon-Datei." -#: FlatCAMApp.py:10904 +#: FlatCAMApp.py:10936 msgid "Cannot open file" msgstr "Kann Datei nicht öffnen" -#: FlatCAMApp.py:10924 flatcamTools/ToolPDF.py:275 +#: FlatCAMApp.py:10956 flatcamTools/ToolPDF.py:275 #: flatcamTools/ToolPcbWizard.py:451 msgid "No geometry found in file" msgstr "Keine Geometrie in der Datei gefunden" -#: FlatCAMApp.py:10927 +#: FlatCAMApp.py:10959 msgid "Opening Excellon." msgstr "Eröffnung Excellon." -#: FlatCAMApp.py:10934 +#: FlatCAMApp.py:10966 msgid "Open Excellon file failed. Probable not an Excellon file." msgstr "" "Die Excellon-Datei konnte nicht geöffnet werden. Wahrscheinlich keine " "Excellon-Datei." -#: FlatCAMApp.py:10965 +#: FlatCAMApp.py:10997 msgid "Reading GCode file" msgstr "GCode-Datei wird gelesen" -#: FlatCAMApp.py:10972 +#: FlatCAMApp.py:11004 msgid "Failed to open" msgstr "Gescheitert zu öffnen" -#: FlatCAMApp.py:10980 +#: FlatCAMApp.py:11012 msgid "This is not GCODE" msgstr "Dies ist kein GCODE" -#: FlatCAMApp.py:10985 +#: FlatCAMApp.py:11017 msgid "Opening G-Code." msgstr "G-Code öffnen." -#: FlatCAMApp.py:10994 +#: FlatCAMApp.py:11026 msgid "" "Failed to create CNCJob Object. Probable not a GCode file. Try to load it " "from File menu.\n" @@ -1459,74 +1413,68 @@ msgstr "" "Der Versuch, ein FlatCAM CNCJob-Objekt aus einer G-Code-Datei zu erstellen, " "ist während der Verarbeitung fehlgeschlagen" -#: FlatCAMApp.py:11053 -#, fuzzy -#| msgid "Object is not Gerber file or empty. Aborting object creation." +#: FlatCAMApp.py:11085 msgid "Object is not HPGL2 file or empty. Aborting object creation." msgstr "" -"Objekt ist keine Gerberdatei oder leer. Objekterstellung wird abgebrochen." +"Objekt ist keine HPGL2-Datei oder leer. Objekterstellung wird abgebrochen." -#: FlatCAMApp.py:11058 -#, fuzzy -#| msgid "Opening Gerber" +#: FlatCAMApp.py:11090 msgid "Opening HPGL2" -msgstr "Gerber öffnen" +msgstr "HPGL2 öffnen" -#: FlatCAMApp.py:11065 -#, fuzzy -#| msgid " Open Gerber failed. Probable not a Gerber file." +#: FlatCAMApp.py:11097 msgid " Open HPGL2 failed. Probable not a HPGL2 file." -msgstr " Gerber öffnen ist fehlgeschlagen. Wahrscheinlich keine Gerber-Datei." +msgstr " HPGL2 öffnen ist fehlgeschlagen. Wahrscheinlich keine HPGL2-Datei." -#: FlatCAMApp.py:11086 +#: FlatCAMApp.py:11118 msgid "Opening TCL Script..." msgstr "TCL-Skript wird geöffnet ..." -#: FlatCAMApp.py:11094 +#: FlatCAMApp.py:11126 msgid "TCL script file opened in Code Editor." msgstr "TCL-Skriptdatei im Code-Editor geöffnet." -#: FlatCAMApp.py:11097 +#: FlatCAMApp.py:11129 msgid "Failed to open TCL Script." msgstr "TCL-Skript konnte nicht geöffnet werden." -#: FlatCAMApp.py:11125 +#: FlatCAMApp.py:11157 msgid "Opening FlatCAM Config file." msgstr "Öffnen der FlatCAM Config-Datei." -#: FlatCAMApp.py:11153 +#: FlatCAMApp.py:11185 msgid "Failed to open config file" msgstr "Fehler beim Öffnen der Konfigurationsdatei" -#: FlatCAMApp.py:11179 +#: FlatCAMApp.py:11211 msgid "Loading Project ... Please Wait ..." msgstr "Projekt wird geladen ... Bitte warten ..." -#: FlatCAMApp.py:11184 +#: FlatCAMApp.py:11216 msgid "Opening FlatCAM Project file." msgstr "Öffnen der FlatCAM-Projektdatei." -#: FlatCAMApp.py:11194 FlatCAMApp.py:11212 +#: FlatCAMApp.py:11226 FlatCAMApp.py:11244 msgid "Failed to open project file" msgstr "Projektdatei konnte nicht geöffnet werden" -#: FlatCAMApp.py:11246 +#: FlatCAMApp.py:11278 msgid "Loading Project ... restoring" msgstr "Projekt wird geladen ... wird wiederhergestellt" -#: FlatCAMApp.py:11255 +#: FlatCAMApp.py:11287 msgid "Project loaded from" msgstr "Projekt geladen von" -#: FlatCAMApp.py:11318 +#: FlatCAMApp.py:11350 msgid "Redrawing all objects" msgstr "Alle Objekte neu zeichnen" -#: FlatCAMApp.py:11350 +#: FlatCAMApp.py:11382 msgid "Available commands:\n" msgstr "Verfügbare Befehle:\n" -#: FlatCAMApp.py:11352 +#: FlatCAMApp.py:11384 msgid "" "\n" "\n" @@ -1538,54 +1486,54 @@ msgstr "" "Geben Sie help für die Verwendung ein.\n" "Beispiel: help open_gerber" -#: FlatCAMApp.py:11502 +#: FlatCAMApp.py:11534 msgid "Shows list of commands." msgstr "Zeigt eine Liste von Befehlen an." -#: FlatCAMApp.py:11564 +#: FlatCAMApp.py:11596 msgid "Failed to load recent item list." msgstr "Fehler beim Laden der letzten Elementliste." -#: FlatCAMApp.py:11572 +#: FlatCAMApp.py:11604 msgid "Failed to parse recent item list." msgstr "Liste der letzten Artikel konnte nicht analysiert werden." -#: FlatCAMApp.py:11583 +#: FlatCAMApp.py:11615 msgid "Failed to load recent projects item list." msgstr "Fehler beim Laden der Artikelliste der letzten Projekte." -#: FlatCAMApp.py:11591 +#: FlatCAMApp.py:11623 msgid "Failed to parse recent project item list." msgstr "" "Fehler beim Analysieren der Liste der zuletzt verwendeten Projektelemente." -#: FlatCAMApp.py:11650 +#: FlatCAMApp.py:11683 msgid "Clear Recent projects" msgstr "Letzte Projekte löschen" -#: FlatCAMApp.py:11673 +#: FlatCAMApp.py:11707 msgid "Clear Recent files" msgstr "Letzte Dateien löschen" -#: FlatCAMApp.py:11690 flatcamGUI/FlatCAMGUI.py:1133 +#: FlatCAMApp.py:11724 flatcamGUI/FlatCAMGUI.py:1249 msgid "Shortcut Key List" msgstr " Liste der Tastenkombinationen " -#: FlatCAMApp.py:11764 +#: FlatCAMApp.py:11798 msgid "Selected Tab - Choose an Item from Project Tab" msgstr "" "Ausgewählte Registerkarte - Wählen Sie ein Element auf der Registerkarte " "\"Projekt\" aus" -#: FlatCAMApp.py:11765 +#: FlatCAMApp.py:11799 msgid "Details" msgstr "Einzelheiten" -#: FlatCAMApp.py:11767 +#: FlatCAMApp.py:11801 msgid "The normal flow when working in FlatCAM is the following:" msgstr "Der normale Ablauf beim Arbeiten in FlatCAM ist der folgende:" -#: FlatCAMApp.py:11768 +#: FlatCAMApp.py:11802 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 " @@ -1595,7 +1543,7 @@ msgstr "" "oder SVG-Datei mithilfe der Symbolleisten, Tastenkombinationen oder durch " "Ziehen und Ablegen der Dateien auf der GUI in FlatCAM." -#: FlatCAMApp.py:11771 +#: FlatCAMApp.py:11805 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 " @@ -1605,7 +1553,7 @@ msgstr "" "doppelklicken, sie per Drag & Drop in die FLATCAM-Benutzeroberfläche ziehen " "oder über die in der App angebotenen Menü- (oder Symbolleisten-) Aktionen." -#: FlatCAMApp.py:11774 +#: FlatCAMApp.py:11808 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 " @@ -1618,7 +1566,7 @@ msgstr "" "AUSGEWÄHLTES TAB mit den Objekteigenschaften entsprechend der Art " "aktualisiert: Gerber, Excellon-, Geometrie- oder CNCJob-Objekt." -#: FlatCAMApp.py:11778 +#: FlatCAMApp.py:11812 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 " @@ -1633,7 +1581,7 @@ msgstr "" "doppelklicken, um das Ausgewählte Registerkarte zu öffnen und es zu füllen, " "selbst wenn es unscharf war." -#: FlatCAMApp.py:11782 +#: FlatCAMApp.py:11816 msgid "" "You can change the parameters in this screen and the flow direction is like " "this:" @@ -1641,7 +1589,7 @@ msgstr "" "Sie können die Parameter in diesem Bildschirm ändern und die Flussrichtung " "ist wie folgt:" -#: FlatCAMApp.py:11783 +#: FlatCAMApp.py:11817 msgid "" "Gerber/Excellon Object --> Change Parameter --> Generate Geometry --> " "Geometry Object --> Add tools (change param in Selected Tab) --> Generate " @@ -1654,7 +1602,7 @@ msgstr "" "überprüfen (über CNC bearbeiten) Code) und / oder GCode anhängen / " "voranstellen (ebenfalls in Ausgewählte Registerkarte) -> GCode speichern." -#: FlatCAMApp.py:11787 +#: FlatCAMApp.py:11821 msgid "" "A list of key shortcuts is available through an menu entry in Help --> " "Shortcuts List or through its own key shortcut: F3." @@ -1663,25 +1611,25 @@ msgstr "" "der Hilfe -> Liste der Tastenkombinationen oder über eine eigene " "Tastenkombination: F3." -#: FlatCAMApp.py:11848 +#: FlatCAMApp.py:11882 msgid "Failed checking for latest version. Could not connect." msgstr "" "Fehler bei der Suche nach der neuesten Version. Konnte keine Verbindung " "herstellen." -#: FlatCAMApp.py:11856 +#: FlatCAMApp.py:11890 msgid "Could not parse information about latest version." msgstr "Informationen zur neuesten Version konnten nicht analysiert werden." -#: FlatCAMApp.py:11867 +#: FlatCAMApp.py:11901 msgid "FlatCAM is up to date!" msgstr "FlatCAM ist auf dem neuesten Version!" -#: FlatCAMApp.py:11872 +#: FlatCAMApp.py:11906 msgid "Newer Version Available" msgstr "Neuere Version verfügbar" -#: FlatCAMApp.py:11873 +#: FlatCAMApp.py:11907 msgid "" "There is a newer version of FlatCAM available for download:\n" "\n" @@ -1689,63 +1637,63 @@ msgstr "" "Es gibt eine neuere Version von FlatCAM zum Download:\n" "\n" -#: FlatCAMApp.py:11875 +#: FlatCAMApp.py:11909 msgid "info" msgstr "Info" -#: FlatCAMApp.py:11954 +#: FlatCAMApp.py:11988 msgid "All plots disabled." msgstr "Alle Diagramme sind deaktiviert." -#: FlatCAMApp.py:11961 +#: FlatCAMApp.py:11995 msgid "All non selected plots disabled." msgstr "Alle nicht ausgewählten Diagramme sind deaktiviert." -#: FlatCAMApp.py:11968 +#: FlatCAMApp.py:12002 msgid "All plots enabled." msgstr "Alle Diagramme aktiviert." -#: FlatCAMApp.py:11975 +#: FlatCAMApp.py:12009 msgid "Selected plots enabled..." msgstr "Ausgewählte Diagramme aktiviert ..." -#: FlatCAMApp.py:11984 +#: FlatCAMApp.py:12018 msgid "Selected plots disabled..." msgstr "Ausgewählte Diagramme deaktiviert ..." -#: FlatCAMApp.py:12003 +#: FlatCAMApp.py:12037 msgid "Enabling plots ..." msgstr "Diagramm aktivieren..." -#: FlatCAMApp.py:12043 +#: FlatCAMApp.py:12077 msgid "Disabling plots ..." msgstr "Diagramm deaktivieren..." -#: FlatCAMApp.py:12065 +#: FlatCAMApp.py:12099 msgid "Working ..." msgstr "Arbeiten ..." -#: FlatCAMApp.py:12104 +#: FlatCAMApp.py:12138 msgid "Saving FlatCAM Project" msgstr "FlatCAM-Projekt speichern" -#: FlatCAMApp.py:12124 FlatCAMApp.py:12162 +#: FlatCAMApp.py:12158 FlatCAMApp.py:12196 msgid "Project saved to" msgstr "Projekt gespeichert in" -#: FlatCAMApp.py:12144 +#: FlatCAMApp.py:12178 msgid "Failed to verify project file" msgstr "Fehler beim Überprüfen der Projektdatei" -#: FlatCAMApp.py:12144 FlatCAMApp.py:12153 FlatCAMApp.py:12165 +#: FlatCAMApp.py:12178 FlatCAMApp.py:12187 FlatCAMApp.py:12199 msgid "Retry to save it." msgstr "Versuchen Sie erneut, es zu speichern." -#: FlatCAMApp.py:12153 FlatCAMApp.py:12165 +#: FlatCAMApp.py:12187 FlatCAMApp.py:12199 msgid "Failed to parse saved project file" msgstr "Fehler beim Parsen der Projektdatei" -#: FlatCAMApp.py:12281 +#: FlatCAMApp.py:12315 msgid "The user requested a graceful exit of the current task." msgstr "" "Der Benutzer hat einen ordnungsgemäßen Abschluss der aktuellen Aufgabe " @@ -1803,43 +1751,34 @@ msgstr "Liste importieren" #: FlatCAMCommon.py:260 msgid "Title entry is empty." -msgstr "" +msgstr "Kein Titel eingegeben." #: FlatCAMCommon.py:269 msgid "Web link entry is empty." -msgstr "" +msgstr "Keine Internetadresse angegeben." #: 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 "" -"Bearbeitung abgebrochen. Neuer Durchmesserwert befindet sich bereits in der " -"Werkzeugtabelle." +"Entweder Titel oder Internetadresse sind bereits in der Tabelle vorhanden." #: FlatCAMCommon.py:297 -#, fuzzy -#| msgid "Bookmarks Manager" msgid "Bookmark added." -msgstr "Lesezeichen verwalten" +msgstr "Lesezeichen verwalten." #: FlatCAMCommon.py:314 msgid "This bookmark can not be removed" msgstr "Dieses Lesezeichen kann nicht entfernt werden" #: FlatCAMCommon.py:345 -#, fuzzy -#| msgid "Bookmarks limit" msgid "Bookmark removed." -msgstr "Lesezeichenlimit" +msgstr "Lesezeichen entfernt." #: FlatCAMCommon.py:360 -#, fuzzy -#| msgid "Import FlatCAM Bookmarks" msgid "Export FlatCAM Bookmarks" -msgstr "Importieren Sie FlatCAM-Lesezeichen" +msgstr "Export der FlatCAM-Lesezeichen" -#: FlatCAMCommon.py:363 flatcamGUI/FlatCAMGUI.py:448 +#: FlatCAMCommon.py:363 flatcamGUI/FlatCAMGUI.py:472 msgid "Bookmarks" msgstr "Lesezeichen" @@ -1871,13 +1810,13 @@ msgstr "Import der FlatCAM-Lesezeichen abgebrochen." msgid "Imported Bookmarks from" msgstr "Importierte Lesezeichen von" -#: FlatCAMCommon.py:477 FlatCAMObj.py:3588 FlatCAMObj.py:4589 -#: FlatCAMObj.py:4590 FlatCAMObj.py:4599 +#: FlatCAMCommon.py:477 FlatCAMObj.py:3588 FlatCAMObj.py:4592 +#: FlatCAMObj.py:4593 FlatCAMObj.py:4602 msgid "Iso" msgstr "Iso" #: FlatCAMCommon.py:477 FlatCAMCommon.py:1012 FlatCAMObj.py:1351 -#: FlatCAMObj.py:3588 FlatCAMObj.py:3861 FlatCAMObj.py:4149 +#: FlatCAMObj.py:3588 FlatCAMObj.py:3861 FlatCAMObj.py:4152 msgid "Rough" msgstr "Rau" @@ -1886,154 +1825,131 @@ msgid "Finish" msgstr "Oberfläche" #: FlatCAMCommon.py:513 -#, fuzzy -#| msgid "Tool Number" msgid "Tool Name" -msgstr "Werkzeugnummer" +msgstr "Werkzeugname" #: FlatCAMCommon.py:514 flatcamEditors/FlatCAMExcEditor.py:1527 -#: flatcamGUI/ObjectUI.py:1256 flatcamTools/ToolNonCopperClear.py:271 +#: flatcamGUI/ObjectUI.py:1295 flatcamTools/ToolNonCopperClear.py:271 #: flatcamTools/ToolPaint.py:176 msgid "Tool Dia" msgstr "Werkzeugdurchm" -#: FlatCAMCommon.py:515 flatcamGUI/ObjectUI.py:1239 +#: FlatCAMCommon.py:515 flatcamGUI/ObjectUI.py:1278 msgid "Tool Offset" msgstr "Werkzeugversatz" #: FlatCAMCommon.py:516 -#, fuzzy -#| msgid "Tool Offset" msgid "Custom Offset" -msgstr "Werkzeugversatz" +msgstr "Selbstdefinierter Werkzeugversatz" -#: FlatCAMCommon.py:517 flatcamGUI/ObjectUI.py:293 -#: flatcamGUI/PreferencesUI.py:1626 flatcamGUI/PreferencesUI.py:3991 +#: FlatCAMCommon.py:517 flatcamGUI/ObjectUI.py:304 +#: flatcamGUI/PreferencesUI.py:1627 flatcamGUI/PreferencesUI.py:3992 #: flatcamTools/ToolNonCopperClear.py:213 msgid "Tool Type" msgstr "Werkzeugtyp" #: FlatCAMCommon.py:518 -#, fuzzy -#| msgid "Tool change" msgid "Tool Shape" -msgstr "Werkzeugwechsel" +msgstr "Werkzeugform" -#: 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 +#: FlatCAMCommon.py:519 flatcamGUI/ObjectUI.py:345 flatcamGUI/ObjectUI.py:820 +#: flatcamGUI/ObjectUI.py:1405 flatcamGUI/ObjectUI.py:1928 +#: flatcamGUI/PreferencesUI.py:1667 flatcamGUI/PreferencesUI.py:2335 +#: flatcamGUI/PreferencesUI.py:3180 flatcamGUI/PreferencesUI.py:4037 +#: flatcamGUI/PreferencesUI.py:4291 flatcamGUI/PreferencesUI.py:5115 #: flatcamTools/ToolCalculators.py:114 flatcamTools/ToolCutOut.py:132 #: flatcamTools/ToolNonCopperClear.py:254 msgid "Cut Z" msgstr "Schnitttiefe Z" #: FlatCAMCommon.py:520 -#, fuzzy -#| msgid "Multi-Depth" msgid "MultiDepth" -msgstr "Mehrfache Tiefe" +msgstr "Mehrfache Durchgänge" +# Abbrev. unclear: Depth Per Pass? +# Perhaps better not translate #: FlatCAMCommon.py:521 msgid "DPP" -msgstr "" +msgstr "DPP" #: FlatCAMCommon.py:522 msgid "V-Dia" -msgstr "" +msgstr "V-Durchm." #: FlatCAMCommon.py:523 -#, fuzzy -#| msgid "Angle" msgid "V-Angle" -msgstr "Winkel" +msgstr "Winkel der V-Form" -#: 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 +#: FlatCAMCommon.py:524 flatcamGUI/ObjectUI.py:839 flatcamGUI/ObjectUI.py:1452 +#: flatcamGUI/PreferencesUI.py:2353 flatcamGUI/PreferencesUI.py:3233 +#: flatcamGUI/PreferencesUI.py:6467 flatcamTools/ToolCalibration.py:74 msgid "Travel Z" msgstr "Bewegungshöhe Z (Travel)" +# I think this is FeedRate XY #: FlatCAMCommon.py:525 msgid "FR" -msgstr "" +msgstr "Vorschub (XY)" #: FlatCAMCommon.py:526 msgid "FR Z" -msgstr "" +msgstr "Vorschub (Z)" #: FlatCAMCommon.py:527 -#, fuzzy -#| msgid "Feed Rate Rapids" msgid "FR Rapids" -msgstr "Vorschubgeschwindigkeit" +msgstr "Vorschub ohne Last" -#: FlatCAMCommon.py:528 flatcamGUI/PreferencesUI.py:2427 +#: FlatCAMCommon.py:528 flatcamGUI/PreferencesUI.py:2428 msgid "Spindle Speed" -msgstr "Spulengeschwindigkeit" +msgstr "Drehgeschwindigkeit" -#: FlatCAMCommon.py:529 flatcamGUI/ObjectUI.py:939 flatcamGUI/ObjectUI.py:1582 -#: flatcamGUI/PreferencesUI.py:2439 flatcamGUI/PreferencesUI.py:3353 +#: FlatCAMCommon.py:529 flatcamGUI/ObjectUI.py:963 flatcamGUI/ObjectUI.py:1621 +#: flatcamGUI/PreferencesUI.py:2440 flatcamGUI/PreferencesUI.py:3354 msgid "Dwell" -msgstr "Verweilen" +msgstr "Warten zum Beschleunigen" #: FlatCAMCommon.py:530 -#, fuzzy -#| msgid "Dwell" msgid "Dwelltime" -msgstr "Verweilen" +msgstr "Wartezeit zum Beschleunigen" -#: FlatCAMCommon.py:531 flatcamGUI/ObjectUI.py:958 -#: flatcamGUI/PreferencesUI.py:2461 flatcamGUI/PreferencesUI.py:3375 +#: FlatCAMCommon.py:531 flatcamGUI/ObjectUI.py:982 +#: flatcamGUI/PreferencesUI.py:2462 flatcamGUI/PreferencesUI.py:3376 msgid "Preprocessor" msgstr "Postprozessor" #: FlatCAMCommon.py:532 msgid "ExtraCut" -msgstr "" +msgstr "Zusätzlicher Schnitt" #: FlatCAMCommon.py:533 -#, fuzzy -#| msgid "Length" msgid "E-Cut Length" -msgstr "Länge" +msgstr "Extra Schnittlänge" #: FlatCAMCommon.py:534 -#, fuzzy -#| msgid "Tool change" msgid "Toolchange" msgstr "Werkzeugwechsel" #: FlatCAMCommon.py:535 -#, fuzzy -#| msgid "Toolchange X,Y" msgid "Toolchange XY" -msgstr "Werkzeugwechsel X, Y" +msgstr "Werkzeugwechsel XY" -#: FlatCAMCommon.py:536 flatcamGUI/PreferencesUI.py:2378 -#: flatcamGUI/PreferencesUI.py:3264 flatcamGUI/PreferencesUI.py:6503 +#: FlatCAMCommon.py:536 flatcamGUI/PreferencesUI.py:2379 +#: flatcamGUI/PreferencesUI.py:3265 flatcamGUI/PreferencesUI.py:6504 #: flatcamTools/ToolCalibration.py:111 msgid "Toolchange Z" msgstr "Werkzeugwechsel Z" #: FlatCAMCommon.py:537 -#, fuzzy -#| msgid "Start" msgid "Start Z" -msgstr "Start" +msgstr "Start Z" #: FlatCAMCommon.py:538 -#, fuzzy -#| msgid "End move Z" msgid "End Z" -msgstr "Bewegung beenden Z" +msgstr "Ende Z" #: FlatCAMCommon.py:542 -#, fuzzy -#| msgid "Tool order" msgid "Tool Index." -msgstr "Werkzeugbestellung" +msgstr "Werkzeugverzeichnis." #: FlatCAMCommon.py:544 msgid "" @@ -2041,12 +1957,13 @@ msgid "" "This is not used in the app, it's function\n" "is to serve as a note for the user." msgstr "" +"Werkzeugname\n" +"Wird in der App nicht verwendet,\n" +"sondern dient als Kommentar für den Nutzer." #: FlatCAMCommon.py:548 -#, fuzzy -#| msgid "Tool Diameter" msgid "Tool Diameter." -msgstr "Werkzeugdurchm" +msgstr "Werkzeugdurchmesser." #: FlatCAMCommon.py:550 msgid "" @@ -2057,12 +1974,20 @@ msgid "" "Out = offset outside by half of tool diameter\n" "Custom = custom offset using the Custom Offset value" msgstr "" +"Werkzeug Offest.\n" +"Folgende Typen sind erlaubt:\n" +"Path: kein Offset\n" +"In: Offset einen halben Werkzeugdurchmesser innerhalb.\n" +"Out: Offset einen halben Werkzeugdurchmesser ausserhalb\n" +"Custom: selbstdefinierter Wert im Feld \"Selbstdefinierter Offset\"" #: FlatCAMCommon.py:557 msgid "" "Custom Offset.\n" "A value to be used as offset from the current path." msgstr "" +"Selbstdefinierter Offset.\n" +"Ein Wert der als Offset zum aktellen Pfad hinzugefügt wird." #: FlatCAMCommon.py:560 msgid "" @@ -2072,6 +1997,12 @@ msgid "" "Rough = rough cut, low feedrate, multiple passes\n" "Finish = finishing cut, high feedrate" msgstr "" +"Werkzeugart.\n" +"Erlaubt sind:\n" +"Iso: Isolationsschnitte\n" +"Rough: Roughen, um viel Material abzutragen, geringer Vorschub, viele " +"Durchgänge\n" +"Finish: Finishing, hoher Vorschub" #: FlatCAMCommon.py:566 msgid "" @@ -2081,39 +2012,55 @@ msgid "" "B = ball tip milling tool\n" "V = v-shape milling tool" msgstr "" +"Werkzeugform.\n" +"Erlaubt sind:\n" +"C1 … C4: Runde Form mit x Schneiden\n" +"B: Kugelförmig\n" +"V: V-Förmig" #: FlatCAMCommon.py:572 msgid "" "Cutting Depth.\n" "The depth at which to cut into material." msgstr "" +"Schneidtiefe.\n" +"Eindringtiefe in das Material." +# MultiDepth is hard to translate, cause it is somewhat artificial. If you need to abbreviate perhaps "MehrfDurchg" could suffice, but stays ugly. #: FlatCAMCommon.py:575 msgid "" "Multi Depth.\n" "Selecting this will allow cutting in multiple passes,\n" "each pass adding a DPP parameter depth." msgstr "" +"Mehrfache Durchgänge.\n" +"Wenn ausgewählt wird der Schnitt in mehreren Stufen\n" +"durchgeführt. Die Schnitttiefe jedes Schnittes ist in DPP angegeben." #: FlatCAMCommon.py:579 msgid "" "DPP. Depth per Pass.\n" "The value used to cut into material on each pass." msgstr "" +"DPP: Tiefe pro Schnitt. Definiert die einzelne Schnitttiefe in mehrfachen " +"Durchgängen." #: FlatCAMCommon.py:582 -#, fuzzy -#| msgid "Diameter of the drill for the alignment holes." msgid "" "V-Dia.\n" "Diameter of the tip for V-Shape Tools." -msgstr "Durchmesser des Bohrers für die Ausrichtungslöcher." +msgstr "" +"V-Durchmesser.\n" +"Durchmesser der Spitze eines V-Förmigen Werkzeugs." +# Typo in english? V-Angle, missing n? #: FlatCAMCommon.py:585 msgid "" "V-Agle.\n" "Angle at the tip for the V-Shape Tools." msgstr "" +"V-Winkel.\n" +"Öffnungswinkel an der Spitze eine V-Förmigen Werkzeugs." #: FlatCAMCommon.py:588 msgid "" @@ -2121,18 +2068,25 @@ msgid "" "Height at which the milling bit will travel between cuts,\n" "above the surface of the material, avoiding all fixtures." msgstr "" +"Freilauf Höhe.\n" +"Die Höhe in der das Fräswerkzeug sich zwischen den Schnitten \n" +"frei bewegen kann ohne auf Hindernisse zu stossen." #: FlatCAMCommon.py:592 msgid "" "FR. Feedrate\n" "The speed on XY plane used while cutting into material." msgstr "" +"FR: Feedrate\n" +"Geschwindkeit beim fräsen. Angegeben in cm pro Minute." #: FlatCAMCommon.py:595 msgid "" "FR Z. Feedrate Z\n" "The speed on Z plane." msgstr "" +"FR Z: Feedrate Z:\n" +"Geschwindigkeit beim Fräsen in Z-Richtung." #: FlatCAMCommon.py:598 msgid "" @@ -2141,6 +2095,10 @@ msgid "" "This is used only by some devices that can't use\n" "the G0 g-code command. Mostly 3D printers." msgstr "" +"FR Rapids: Feedrate ohne Last\n" +"Geschwindigkeit die ohne Last gefahren werden kann.\n" +"Wird benutzt bei Geräten die das G0 Kommando nicht \n" +"unterstützen (oft 3D Drucker)." #: FlatCAMCommon.py:603 msgid "" @@ -2148,27 +2106,24 @@ msgid "" "If it's left empty it will not be used.\n" "The speed of the spindle in RPM." msgstr "" +"Drehzahl.\n" +"Drehzahl des Fräsmotors in U/min.\n" +"Wird nicht benutzt, wenn leer." #: FlatCAMCommon.py:607 -#, fuzzy -#| msgid "dwelltime = time to dwell to allow the spindle to reach it's set RPM" msgid "" "Dwell.\n" "Check this if a delay is needed to allow\n" "the spindle motor to reach it's set speed." msgstr "" -"dwelltime = Zeit zum Verweilen, damit die Spindel ihre eingestellte Drehzahl " -"erreicht" +"dwelltime = Pausezeit, damit die Spindel ihre eingestellte Drehzahl erreicht." #: FlatCAMCommon.py:611 -#, fuzzy -#| msgid "dwelltime = time to dwell to allow the spindle to reach it's set RPM" msgid "" "Dwell Time.\n" "A delay used to allow the motor spindle reach it's set speed." msgstr "" -"dwelltime = Zeit zum Verweilen, damit die Spindel ihre eingestellte Drehzahl " -"erreicht" +"dwelltime = Pausezeit, damit die Spindel ihre eingestellte Drehzahl erreicht." #: FlatCAMCommon.py:614 msgid "" @@ -2176,6 +2131,9 @@ msgid "" "A selection of files that will alter the generated G-code\n" "to fit for a number of use cases." msgstr "" +"Präprozessor.\n" +"Diese Dateien werden den erzeugten G-Code modifizieren\n" +"um eine große Anzahl Anwendungsmöglichkeiten zu unterstützen." #: FlatCAMCommon.py:618 msgid "" @@ -2185,6 +2143,10 @@ msgid "" "such as that this point is covered by this extra cut to\n" "ensure a complete isolation." msgstr "" +"Zusatzschnitt.\n" +"Wenn gewählt, wird nach dem Isolationsschnitt ein Zusatzschnitt\n" +"durchgeführt, um Start und Endpunkt definitiv zu verbinden und \n" +"so eine vollständige Isolation zu gewährleisten." #: FlatCAMCommon.py:624 msgid "" @@ -2195,6 +2157,10 @@ msgid "" "ensure a complete isolation. This is the length of\n" "the extra cut." msgstr "" +"Zusatzschnitt.\n" +"Wenn gewählt, wird nach dem Isolationsschnitt ein Zusatzschnitt\n" +"durchgeführt, um Start und Endpunkt definitiv zu verbinden und \n" +"so eine vollständige Isolation zu gewährleisten." #: FlatCAMCommon.py:631 msgid "" @@ -2203,6 +2169,10 @@ msgid "" "The kind of toolchange is determined by\n" "the preprocessor file." msgstr "" +"Werkzeugwechsel.\n" +"Löst ein Werkzeugwechselereignis aus.\n" +"Die Art wie der Werkzeugwechsel durchgeführt wird\n" +"hängt vom gewählten Präprozessor ab." #: FlatCAMCommon.py:636 msgid "" @@ -2211,12 +2181,20 @@ msgid "" "Will determine the cartesian position of the point\n" "where the tool change event take place." msgstr "" +"Werkzeugwechsel XY\n" +"Ein Satz von Koordinaten im Format (x,y).\n" +"An der Position dieses Punktes wird ein \n" +"Werkzeugwechselereignis ausgelöst." +# Is this really the height of where a toolchange event takes place or is it the position of where to go to for being able to change the tool? #: FlatCAMCommon.py:641 msgid "" "Toolchange Z.\n" "The position on Z plane where the tool change event take place." msgstr "" +"Werkzeugwechsel Z.\n" +"Die Position in der Z Ebene an der ein Werkzeugwechselereignis ausgelöst " +"wird." #: FlatCAMCommon.py:644 msgid "" @@ -2224,185 +2202,144 @@ msgid "" "If it's left empty it will not be used.\n" "A position on Z plane to move immediately after job start." msgstr "" +"Start Z.\n" +"Nicht benutzt wenn leer.\n" +"Die Z-Position die zum Start angefahren wird." #: FlatCAMCommon.py:648 msgid "" "End Z.\n" "A position on Z plane to move immediately after job stop." msgstr "" +"End Z.\n" +"Die Z-Position die bei Beendigung des Jobs angefahren wird." #: FlatCAMCommon.py:669 -#, fuzzy -#| msgid "Add Text Tool" msgid "Add Tool to Tools DB" -msgstr "Textwerkzeug hinzufügen" +msgstr "Werkzeug zur Werkzeugdatenbank hinzufügen" #: FlatCAMCommon.py:671 -#, fuzzy -#| msgid "" -#| "Add a new tool to the Tool Table\n" -#| "with the diameter specified above." msgid "" "Add a new tool in the Tools Database.\n" "You can edit it after it is added." msgstr "" -"Fügen Sie der Werkzeugtabelle ein neues Werkzeug hinzu\n" -"mit dem oben angegebenen Durchmesser." +"Fügen Sie der Werkzeugdatenbank ein neues Werkzeug hinzu\n" +"Danach können Sie es modifizieren." #: FlatCAMCommon.py:674 msgid "Remove Tool from Tools DB" -msgstr "" +msgstr "Werkzeug aus der Werkzeugdatenbank entfernen" #: FlatCAMCommon.py:676 -#, fuzzy -#| msgid "No selected tools in Tool Table." msgid "Remove a selection of tools in the Tools Database." -msgstr "Keine ausgewählten Werkzeuge in der Werkzeugtabelle." +msgstr "Eine Auswahl von Werkzeugen aus der Werkzeugdatenbank entfernen." #: FlatCAMCommon.py:678 -#, fuzzy -#| msgid "Export DXF" msgid "Export Tool DB" -msgstr "DXF exportieren" +msgstr "Werkzeugdatenbank exportieren" #: FlatCAMCommon.py:680 msgid "Save the Tools Database to a custom text file." -msgstr "" +msgstr "Werkzeugdatenbank als Textdatei speichern." #: FlatCAMCommon.py:682 -#, fuzzy -#| msgid "PDF Import Tool" msgid "Import Tool DB" -msgstr "PDF-Importwerkzeug" +msgstr "Werkzeugdatenbank importieren" #: FlatCAMCommon.py:684 msgid "Load the Tools Database information's from a custom text file." -msgstr "" +msgstr "Werkzeugdatenbank aus einer Textdatei importieren." #: FlatCAMCommon.py:694 msgid "Add Tool from Tools DB" -msgstr "" +msgstr "Werkzeug aus Werkzeugdatenbank hinzufügen" #: FlatCAMCommon.py:696 -#, fuzzy -#| msgid "" -#| "Copy a selection of tools in the Tool Table\n" -#| "by first selecting a row in the Tool Table." 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 "" -"Kopieren Sie eine Auswahl von Werkzeugen in die Werkzeugtabelle\n" -"indem Sie zuerst eine Zeile in der Werkzeugtabelle auswählen." +"Fügen Sie ein neues Werkzeug in die Werkzeugtabelle der\n" +"aktiven Geometrie hinzu, nachdem Sie das Werkzeug in\n" +"der Werkzeugdatenbank ausgewählt haben." #: FlatCAMCommon.py:735 FlatCAMCommon.py:1105 FlatCAMCommon.py:1139 -#, fuzzy -#| msgid "Could not load bookmarks file." msgid "Could not load Tools DB file." -msgstr "Die Lesezeichen-Datei konnte nicht geladen werden." +msgstr "Werkzeugdatenbank konnte nicht geladen werden." #: FlatCAMCommon.py:743 FlatCAMCommon.py:1147 -#, fuzzy -#| msgid "Failed to parse defaults file." msgid "Failed to parse Tools DB file." -msgstr "Fehler beim Einlesen der Voreinstellungen." +msgstr "Formatfehler beim Einlesen der Werkzeugdatenbank." #: FlatCAMCommon.py:746 FlatCAMCommon.py:1150 msgid "Loaded FlatCAM Tools DB from" -msgstr "" +msgstr "FlatCAM Werkzeugdatenbank wurde gelesen aus:" #: FlatCAMCommon.py:752 msgid "Add to DB" -msgstr "" +msgstr "Hinzufügen" #: FlatCAMCommon.py:754 -#, fuzzy -#| msgid "Copy Geom\tC" msgid "Copy from DB" -msgstr "Geometrie kopieren\tC" +msgstr "Von Datenbank kopieren" #: FlatCAMCommon.py:756 -#, fuzzy -#| msgid "Delete Tool" msgid "Delete from DB" -msgstr "Werkzeug löschen" +msgstr "Aus Datenbank löschen" #: FlatCAMCommon.py:1026 -#, fuzzy -#| msgid "Tool added in Tool Table." msgid "Tool added to DB." -msgstr "Werkzeug in der Werkzeugtabelle hinzugefügt." +msgstr "Werkzeug wurde zur Werkzeugdatenbank hinzugefügt." #: FlatCAMCommon.py:1047 -#, fuzzy -#| msgid "Tool was copied in Tool Table." msgid "Tool copied from Tools DB." -msgstr "Das Werkzeug wurde in die Werkzeugtabelle kopiert." +msgstr "Das Werkzeug wurde aus der Werkzeugdatenbank kopiert." #: FlatCAMCommon.py:1065 -#, fuzzy -#| msgid "Tool(s) deleted from Tool Table." msgid "Tool removed from Tools DB." -msgstr "Werkzeug(e) aus der Werkzeugtabelle gelöscht." +msgstr "Werkzeug wurde aus der Werkzeugdatenbank gelöscht." #: FlatCAMCommon.py:1076 -#, fuzzy -#| msgid "Tool Data" msgid "Export Tools Database" -msgstr "Werkzeugdaten" +msgstr "Werkzeugdatenbank exportieren" #: FlatCAMCommon.py:1079 -#, fuzzy -#| msgid "Tool Data" msgid "Tools_Database" -msgstr "Werkzeugdaten" +msgstr "Werkzeugdatenbank" #: FlatCAMCommon.py:1086 -#, fuzzy -#| msgid "FlatCAM bookmarks export cancelled." msgid "FlatCAM Tools DB export cancelled." -msgstr "FlatCAM-Lesezeichen-Export abgebrochen." +msgstr "Export der FlatCAM Werkzeugdatenbank abgebrochen." #: FlatCAMCommon.py:1116 FlatCAMCommon.py:1119 FlatCAMCommon.py:1171 -#, fuzzy -#| msgid "Failed to write bookmarks to file." msgid "Failed to write Tools DB to file." -msgstr "Fehler beim Schreiben der Lesezeichen in die Datei." +msgstr "Fehler beim Schreiben der Werkzeugdatenbank in eine Datei." #: FlatCAMCommon.py:1122 -#, fuzzy -#| msgid "Exported bookmarks to" msgid "Exported Tools DB to" -msgstr "Exportierte Lesezeichen nach" +msgstr "Werkzeugdatenbank wurde exportiert nach" #: FlatCAMCommon.py:1129 -#, fuzzy -#| msgid "Import FlatCAM Bookmarks" msgid "Import FlatCAM Tools DB" -msgstr "Importieren Sie FlatCAM-Lesezeichen" +msgstr "Import der FlatCAM-Werkzeugdatenbank" #: FlatCAMCommon.py:1132 -#, fuzzy -#| msgid "FlatCAM bookmarks import cancelled." msgid "FlatCAM Tools DB import cancelled." -msgstr "Import der FlatCAM-Lesezeichen abgebrochen." +msgstr "Import der FlatCAM-Werkzeugdatenbank abgebrochen." #: FlatCAMCommon.py:1175 -#, fuzzy -#| msgid "Scale Tool" msgid "Saved Tools DB." -msgstr "Skalierungswerk" +msgstr "Datenbank der gespeicherten Werkzeuge." #: FlatCAMCommon.py:1322 -#, fuzzy -#| msgid "Failed. No tool selected in the tool table ..." msgid "No Tool/row selected in the Tools Database table" -msgstr "Gescheitert. Kein Werkzeug in der Werkzeugtabelle ausgewählt ..." +msgstr "" +"Gescheitert. Kein Werkzeug (keine Spalte) in der Werkzeugtabelle ausgewählt" #: FlatCAMCommon.py:1340 msgid "Cancelled adding tool from DB." -msgstr "" +msgstr "Hinzufügen aus der Datenbank wurde abgebrochen." #: FlatCAMObj.py:249 msgid "Name changed from" @@ -2414,19 +2351,15 @@ msgstr "zu" #: FlatCAMObj.py:260 msgid "Offsetting..." -msgstr "Aufrechnung ..." +msgstr "Offset hinzufügen ..." #: FlatCAMObj.py:274 FlatCAMObj.py:279 -#, fuzzy -#| msgid "Scale action was not executed." msgid "Scaling could not be executed." msgstr "Skalierungsaktion wurde nicht ausgeführt." #: FlatCAMObj.py:283 FlatCAMObj.py:291 -#, fuzzy -#| msgid "Scale on the" msgid "Scale done." -msgstr "Skalieren Sie auf der" +msgstr "Skalieren Sie fertig." #: FlatCAMObj.py:289 msgid "Scaling..." @@ -2436,13 +2369,13 @@ msgstr "Skalierung ..." msgid "Skewing..." msgstr "Verziehen..." -#: FlatCAMObj.py:723 FlatCAMObj.py:2710 FlatCAMObj.py:3904 -#: flatcamGUI/PreferencesUI.py:1123 flatcamGUI/PreferencesUI.py:2257 +#: FlatCAMObj.py:723 FlatCAMObj.py:2710 FlatCAMObj.py:3907 +#: flatcamGUI/PreferencesUI.py:1124 flatcamGUI/PreferencesUI.py:2258 msgid "Basic" -msgstr "Basic" +msgstr "Basis" -#: FlatCAMObj.py:745 FlatCAMObj.py:2722 FlatCAMObj.py:3925 -#: flatcamGUI/PreferencesUI.py:1124 +#: FlatCAMObj.py:745 FlatCAMObj.py:2722 FlatCAMObj.py:3928 +#: flatcamGUI/PreferencesUI.py:1125 msgid "Advanced" msgstr "Erweitert" @@ -2450,16 +2383,16 @@ msgstr "Erweitert" msgid "Buffering solid geometry" msgstr "Festkörpergeometrie puffern" -#: FlatCAMObj.py:965 camlib.py:965 flatcamGUI/PreferencesUI.py:1700 +#: FlatCAMObj.py:965 camlib.py:965 flatcamGUI/PreferencesUI.py:1701 #: flatcamTools/ToolCopperThieving.py:1010 #: flatcamTools/ToolCopperThieving.py:1199 #: flatcamTools/ToolCopperThieving.py:1211 -#: flatcamTools/ToolNonCopperClear.py:1628 -#: flatcamTools/ToolNonCopperClear.py:1726 -#: flatcamTools/ToolNonCopperClear.py:1738 -#: flatcamTools/ToolNonCopperClear.py:1987 -#: flatcamTools/ToolNonCopperClear.py:2083 -#: flatcamTools/ToolNonCopperClear.py:2095 +#: flatcamTools/ToolNonCopperClear.py:1629 +#: flatcamTools/ToolNonCopperClear.py:1727 +#: flatcamTools/ToolNonCopperClear.py:1739 +#: flatcamTools/ToolNonCopperClear.py:1988 +#: flatcamTools/ToolNonCopperClear.py:2084 +#: flatcamTools/ToolNonCopperClear.py:2096 msgid "Buffering" msgstr "Pufferung" @@ -2472,58 +2405,45 @@ msgid "Isolating..." msgstr "Isolieren ..." #: FlatCAMObj.py:1078 -#, fuzzy -#| msgid "Click on Stop point to complete ..." msgid "Click on a polygon to isolate it." -msgstr "Klicken Sie auf Stopp, um den Vorgang abzuschließen." +msgstr "Klicken Sie auf ein Plozgon um es zu isolieren." -#: FlatCAMObj.py:1117 FlatCAMObj.py:1222 flatcamTools/ToolPaint.py:1125 -#, fuzzy -#| msgid "Add Polygon" +#: FlatCAMObj.py:1117 FlatCAMObj.py:1222 flatcamTools/ToolPaint.py:1126 msgid "Added polygon" -msgstr "Polygon hinzufügen" +msgstr "Polygon hinzugefügt" #: FlatCAMObj.py:1119 FlatCAMObj.py:1224 -#, fuzzy -#| msgid "" -#| "Zone added. Click to start adding next zone or right click to finish." msgid "Click to add next polygon or right click to start isolation." msgstr "" -"Zone hinzugefügt. Klicken Sie, um die nächste Zone hinzuzufügen, oder " -"klicken Sie mit der rechten Maustaste, um den Vorgang abzuschließen." +"Klicken Sie, um das nächste Polygon hinzuzufügen, oder klicken Sie mit der " +"rechten Maustaste, um den Isolationsvorgang zu beginnen." -#: FlatCAMObj.py:1131 flatcamTools/ToolPaint.py:1139 -#, fuzzy -#| msgid "Add Polygon" +#: FlatCAMObj.py:1131 flatcamTools/ToolPaint.py:1140 msgid "Removed polygon" -msgstr "Polygon hinzufügen" +msgstr "Polygon entfernt" +# nearly the same as before? What good is this? #: FlatCAMObj.py:1132 -#, fuzzy -#| msgid "" -#| "Zone added. Click to start adding next zone or right click to finish." msgid "Click to add/remove next polygon or right click to start isolation." msgstr "" -"Zone hinzugefügt. Klicken Sie, um die nächste Zone hinzuzufügen, oder " -"klicken Sie mit der rechten Maustaste, um den Vorgang abzuschließen." +"Klicken Sie, um das nächste Polygon hinzuzufügen oder zu entfernen, oder " +"klicken Sie mit der rechten Maustaste, um den Isolationsvorgang zu beginnen." -#: FlatCAMObj.py:1137 flatcamTools/ToolPaint.py:1145 +#: FlatCAMObj.py:1137 flatcamTools/ToolPaint.py:1146 msgid "No polygon detected under click position." -msgstr "" +msgstr "Kein Polygon an der Stelle an die geklickt wurde." -#: FlatCAMObj.py:1158 flatcamTools/ToolPaint.py:1174 +#: FlatCAMObj.py:1158 flatcamTools/ToolPaint.py:1175 msgid "List of single polygons is empty. Aborting." -msgstr "" +msgstr "Liste der Einzelpolygone ist leer. Vorgang wird abgebrochen." #: FlatCAMObj.py:1227 -#, fuzzy -#| msgid "Polygon Intersection" msgid "No polygon in selection." -msgstr "Polygonschnitt" +msgstr "Kein Polygon in der Auswahl." #: FlatCAMObj.py:1301 FlatCAMObj.py:1430 -#: flatcamTools/ToolNonCopperClear.py:1657 -#: flatcamTools/ToolNonCopperClear.py:2011 +#: flatcamTools/ToolNonCopperClear.py:1658 +#: flatcamTools/ToolNonCopperClear.py:2012 msgid "Isolation geometry could not be generated." msgstr "Isolationsgeometrie konnte nicht generiert werden." @@ -2557,9 +2477,9 @@ msgstr "" msgid "Milling tool for DRILLS is larger than hole size. Cancelled." msgstr "Das Fräswerkzeug für BOHRER ist größer als die Lochgröße. Abgebrochen." -#: FlatCAMObj.py:3032 FlatCAMObj.py:4490 flatcamEditors/FlatCAMGeoEditor.py:408 -#: flatcamGUI/FlatCAMGUI.py:438 flatcamGUI/FlatCAMGUI.py:930 -#: flatcamGUI/ObjectUI.py:1314 +#: FlatCAMObj.py:3032 FlatCAMObj.py:4493 flatcamEditors/FlatCAMGeoEditor.py:408 +#: flatcamGUI/FlatCAMGUI.py:459 flatcamGUI/FlatCAMGUI.py:1046 +#: flatcamGUI/ObjectUI.py:1353 msgid "Tool" msgstr "Werkzeug" @@ -2569,7 +2489,7 @@ msgstr "Werkzeugnummer" #: FlatCAMObj.py:3048 FlatCAMObj.py:3141 FlatCAMObj.py:3259 #: flatcamEditors/FlatCAMExcEditor.py:1507 -#: flatcamEditors/FlatCAMExcEditor.py:2967 flatcamGUI/ObjectUI.py:753 +#: flatcamEditors/FlatCAMExcEditor.py:2967 flatcamGUI/ObjectUI.py:777 #: flatcamTools/ToolNonCopperClear.py:120 flatcamTools/ToolPaint.py:123 #: flatcamTools/ToolPcbWizard.py:76 flatcamTools/ToolProperties.py:396 #: flatcamTools/ToolProperties.py:449 flatcamTools/ToolSolderPaste.py:84 @@ -2605,27 +2525,25 @@ msgstr "" "Falsches Wertformat für self.defaults [\"feedrate_probe\"] oder self.options " "[\"feedrate_probe\"]" -#: FlatCAMObj.py:3341 FlatCAMObj.py:5311 FlatCAMObj.py:5315 FlatCAMObj.py:5450 +#: FlatCAMObj.py:3341 FlatCAMObj.py:5314 FlatCAMObj.py:5318 FlatCAMObj.py:5453 msgid "Generating CNC Code" msgstr "CNC-Code generieren" #: FlatCAMObj.py:3896 -#, fuzzy -#| msgid "Add Tool" msgid "Add from Tool DB" -msgstr "Werkzeug hinzufügen" +msgstr "Werkzeug aus Werkzeugdatenbank hinzufügen" -#: 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 +#: FlatCAMObj.py:3899 flatcamGUI/FlatCAMGUI.py:652 flatcamGUI/FlatCAMGUI.py:768 +#: flatcamGUI/FlatCAMGUI.py:963 flatcamGUI/FlatCAMGUI.py:1984 +#: flatcamGUI/FlatCAMGUI.py:2128 flatcamGUI/FlatCAMGUI.py:2343 +#: flatcamGUI/FlatCAMGUI.py:2522 flatcamGUI/ObjectUI.py:1324 #: flatcamTools/ToolPanelize.py:534 flatcamTools/ToolPanelize.py:561 #: flatcamTools/ToolPanelize.py:660 flatcamTools/ToolPanelize.py:694 #: flatcamTools/ToolPanelize.py:759 msgid "Copy" msgstr "Kopieren" -#: FlatCAMObj.py:3985 FlatCAMObj.py:4354 FlatCAMObj.py:5061 FlatCAMObj.py:5701 +#: FlatCAMObj.py:3988 FlatCAMObj.py:4357 FlatCAMObj.py:5064 FlatCAMObj.py:5704 #: flatcamEditors/FlatCAMExcEditor.py:2459 #: flatcamEditors/FlatCAMGeoEditor.py:1078 #: flatcamEditors/FlatCAMGeoEditor.py:1112 @@ -2634,65 +2552,63 @@ msgstr "Kopieren" #: 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 +#: flatcamTools/ToolNonCopperClear.py:1058 +#: flatcamTools/ToolNonCopperClear.py:1466 flatcamTools/ToolPaint.py:841 +#: flatcamTools/ToolPaint.py:1025 flatcamTools/ToolPaint.py:2097 +#: flatcamTools/ToolSolderPaste.py:882 flatcamTools/ToolSolderPaste.py:957 msgid "Wrong value format entered, use a number." msgstr "Falsches Wertformat eingegeben, eine Zahl verwenden." -#: FlatCAMObj.py:4123 +#: FlatCAMObj.py:4126 msgid "Please enter the desired tool diameter in Float format." msgstr "" "Bitte geben Sie den gewünschten Werkzeugdurchmesser im Real-Format ein." -#: FlatCAMObj.py:4193 +#: FlatCAMObj.py:4196 msgid "Tool added in Tool Table." msgstr "Werkzeug in der Werkzeugtabelle hinzugefügt." -#: FlatCAMObj.py:4197 +#: FlatCAMObj.py:4200 msgid "Default Tool added. Wrong value format entered." msgstr "Standardwerkzeug hinzugefügt Falsches Wertformat eingegeben." -#: FlatCAMObj.py:4304 FlatCAMObj.py:4313 +#: FlatCAMObj.py:4307 FlatCAMObj.py:4316 msgid "Failed. Select a tool to copy." msgstr "Fehlgeschlagen. Wählen Sie ein Werkzeug zum Kopieren aus." -#: FlatCAMObj.py:4340 +#: FlatCAMObj.py:4343 msgid "Tool was copied in Tool Table." msgstr "Das Werkzeug wurde in die Werkzeugtabelle kopiert." -#: FlatCAMObj.py:4368 +#: FlatCAMObj.py:4371 msgid "Tool was edited in Tool Table." msgstr "Das Werkzeug wurde in der Werkzeugtabelle bearbeitet." -#: FlatCAMObj.py:4397 FlatCAMObj.py:4406 +#: FlatCAMObj.py:4400 FlatCAMObj.py:4409 msgid "Failed. Select a tool to delete." msgstr "Gescheitert. Wählen Sie ein Werkzeug zum Löschen aus." -#: FlatCAMObj.py:4429 +#: FlatCAMObj.py:4432 msgid "Tool was deleted in Tool Table." msgstr "Werkzeug wurde in der Werkzeugtabelle gelöscht." -#: FlatCAMObj.py:4490 flatcamGUI/ObjectUI.py:1314 -#, fuzzy -#| msgid "Parameters" +#: FlatCAMObj.py:4493 flatcamGUI/ObjectUI.py:1353 msgid "Parameters for" -msgstr "Parameters" +msgstr "Parameter für" -#: FlatCAMObj.py:4921 +#: FlatCAMObj.py:4924 msgid "This Geometry can't be processed because it is" msgstr "Diese Geometrie kann nicht verarbeitet werden, da dies der Fall ist" -#: FlatCAMObj.py:4923 +#: FlatCAMObj.py:4926 msgid "geometry" msgstr "geometrie" -#: FlatCAMObj.py:4966 +#: FlatCAMObj.py:4969 msgid "Failed. No tool selected in the tool table ..." msgstr "Gescheitert. Kein Werkzeug in der Werkzeugtabelle ausgewählt ..." -#: FlatCAMObj.py:5066 FlatCAMObj.py:5219 +#: FlatCAMObj.py:5069 FlatCAMObj.py:5222 msgid "" "Tool Offset is selected in Tool Table but no value is provided.\n" "Add a Tool Offset or change the Offset Type." @@ -2701,45 +2617,45 @@ msgstr "" "Wert angegeben.\n" "Fügen Sie einen Werkzeugversatz hinzu oder ändern Sie den Versatztyp." -#: FlatCAMObj.py:5131 FlatCAMObj.py:5280 +#: FlatCAMObj.py:5134 FlatCAMObj.py:5283 msgid "G-Code parsing in progress..." msgstr "G-Code-Analyse läuft ..." -#: FlatCAMObj.py:5133 FlatCAMObj.py:5282 +#: FlatCAMObj.py:5136 FlatCAMObj.py:5285 msgid "G-Code parsing finished..." msgstr "G-Code-Analyse beendet ..." -#: FlatCAMObj.py:5141 +#: FlatCAMObj.py:5144 msgid "Finished G-Code processing" msgstr "G-Code-Verarbeitung abgeschlossen" -#: FlatCAMObj.py:5143 FlatCAMObj.py:5294 +#: FlatCAMObj.py:5146 FlatCAMObj.py:5297 msgid "G-Code processing failed with error" msgstr "G-Code-Verarbeitung fehlgeschlagen mit Fehler" -#: FlatCAMObj.py:5189 flatcamTools/ToolSolderPaste.py:1300 +#: FlatCAMObj.py:5192 flatcamTools/ToolSolderPaste.py:1303 msgid "Cancelled. Empty file, it has no geometry" msgstr "Abgebrochen. Leere Datei hat keine Geometrie" -#: FlatCAMObj.py:5292 FlatCAMObj.py:5443 +#: FlatCAMObj.py:5295 FlatCAMObj.py:5446 msgid "Finished G-Code processing..." msgstr "Fertige G-Code Verarbeitung ..." -#: FlatCAMObj.py:5313 FlatCAMObj.py:5317 FlatCAMObj.py:5453 +#: FlatCAMObj.py:5316 FlatCAMObj.py:5320 FlatCAMObj.py:5456 msgid "CNCjob created" msgstr "CNCjob erstellt" -#: FlatCAMObj.py:5484 FlatCAMObj.py:5493 flatcamParsers/ParseGerber.py:1750 +#: FlatCAMObj.py:5487 FlatCAMObj.py:5496 flatcamParsers/ParseGerber.py:1750 #: flatcamParsers/ParseGerber.py:1760 msgid "Scale factor has to be a number: integer or float." msgstr "" "Der Skalierungsfaktor muss eine Zahl sein: Ganzzahl oder Fließkommazahl." -#: FlatCAMObj.py:5557 +#: FlatCAMObj.py:5560 msgid "Geometry Scale done." msgstr "Geometrie Skalierung fertig." -#: FlatCAMObj.py:5574 flatcamParsers/ParseGerber.py:1876 +#: FlatCAMObj.py:5577 flatcamParsers/ParseGerber.py:1876 msgid "" "An (x,y) pair of values are needed. Probable you entered only one value in " "the Offset field." @@ -2747,11 +2663,11 @@ msgstr "" "Ein (x, y) Wertepaar wird benötigt. Wahrscheinlich haben Sie im Feld Offset " "nur einen Wert eingegeben." -#: FlatCAMObj.py:5631 +#: FlatCAMObj.py:5634 msgid "Geometry Offset done." msgstr "Geometrie Offset fertig." -#: FlatCAMObj.py:5660 +#: FlatCAMObj.py:5663 msgid "" "The Toolchange X,Y field in Edit -> Preferences has to be in the format (x, " "y)\n" @@ -2761,83 +2677,83 @@ msgstr "" "(x, y) sein\n" "Aber jetzt gibt es nur einen Wert, nicht zwei." -#: FlatCAMObj.py:6335 FlatCAMObj.py:6993 FlatCAMObj.py:7189 +#: FlatCAMObj.py:6338 FlatCAMObj.py:6996 FlatCAMObj.py:7192 msgid "Basic" msgstr "Basic" -#: FlatCAMObj.py:6341 FlatCAMObj.py:6997 FlatCAMObj.py:7193 +#: FlatCAMObj.py:6344 FlatCAMObj.py:7000 FlatCAMObj.py:7196 msgid "Advanced" msgstr "Erweitert" -#: FlatCAMObj.py:6384 +#: FlatCAMObj.py:6387 msgid "Plotting..." msgstr "Zeichnung..." -#: FlatCAMObj.py:6407 FlatCAMObj.py:6412 flatcamTools/ToolSolderPaste.py:1506 +#: FlatCAMObj.py:6410 FlatCAMObj.py:6415 flatcamTools/ToolSolderPaste.py:1509 msgid "Export Machine Code ..." msgstr "Maschinencode exportieren ..." -#: FlatCAMObj.py:6417 flatcamTools/ToolSolderPaste.py:1510 +#: FlatCAMObj.py:6420 flatcamTools/ToolSolderPaste.py:1513 msgid "Export Machine Code cancelled ..." msgstr "Maschinencode exportieren abgebrochen ..." -#: FlatCAMObj.py:6439 +#: FlatCAMObj.py:6442 msgid "Machine Code file saved to" msgstr "Maschinencode-Datei gespeichert in" -#: FlatCAMObj.py:6493 flatcamTools/ToolCalibration.py:1083 +#: FlatCAMObj.py:6496 flatcamTools/ToolCalibration.py:1083 msgid "Loaded Machine Code into Code Editor" msgstr "Maschinencode in den Code-Editor geladen" -#: FlatCAMObj.py:6628 +#: FlatCAMObj.py:6631 msgid "This CNCJob object can't be processed because it is a" msgstr "Dieses CNCJob-Objekt kann nicht verarbeitet werden, da es sich um ein" -#: FlatCAMObj.py:6630 +#: FlatCAMObj.py:6633 msgid "CNCJob object" msgstr "CNCJob-Objekt" -#: FlatCAMObj.py:6681 +#: FlatCAMObj.py:6684 msgid "G-code does not have a units code: either G20 or G21" msgstr "G-Code hat keinen Einheitencode: entweder G20 oder G21" -#: FlatCAMObj.py:6695 +#: FlatCAMObj.py:6698 msgid "Cancelled. The Toolchange Custom code is enabled but it's empty." msgstr "" "Abgebrochen. Der benutzerdefinierte Code zum Ändern des Werkzeugs ist " "aktiviert, aber er ist leer." -#: FlatCAMObj.py:6700 +#: FlatCAMObj.py:6703 msgid "Toolchange G-code was replaced by a custom code." msgstr "" "Der Werkzeugwechsel-G-Code wurde durch einen benutzerdefinierten Code " "ersetzt." -#: FlatCAMObj.py:6717 flatcamEditors/FlatCAMTextEditor.py:224 -#: flatcamTools/ToolSolderPaste.py:1537 +#: FlatCAMObj.py:6720 flatcamEditors/FlatCAMTextEditor.py:224 +#: flatcamTools/ToolSolderPaste.py:1540 msgid "No such file or directory" msgstr "Keine solche Datei oder Ordner" -#: FlatCAMObj.py:6731 flatcamEditors/FlatCAMTextEditor.py:236 +#: FlatCAMObj.py:6734 flatcamEditors/FlatCAMTextEditor.py:236 msgid "Saved to" msgstr "Gespeichert in" -#: FlatCAMObj.py:6741 FlatCAMObj.py:6751 +#: FlatCAMObj.py:6744 FlatCAMObj.py:6754 msgid "" "The used preprocessor file has to have in it's name: 'toolchange_custom'" msgstr "" "Die verwendete Postprozessor-Datei muss im Namen enthalten sein: " "'toolchange_custom'" -#: FlatCAMObj.py:6755 +#: FlatCAMObj.py:6758 msgid "There is no preprocessor file." msgstr "Es gibt keine Postprozessor-Datei." -#: FlatCAMObj.py:7012 +#: FlatCAMObj.py:7015 msgid "Script Editor" msgstr "Script Editor" -#: FlatCAMObj.py:7293 +#: FlatCAMObj.py:7296 msgid "Document Editor" msgstr "Dokumenteditor" @@ -2845,24 +2761,24 @@ msgstr "Dokumenteditor" msgid "processes running." msgstr "laufende Prozesse." -#: FlatCAMTranslation.py:92 +#: FlatCAMTranslation.py:103 msgid "The application will restart." msgstr "Die Anwendung wird neu gestartet." -#: FlatCAMTranslation.py:94 +#: FlatCAMTranslation.py:105 msgid "Are you sure do you want to change the current language to" msgstr "Möchten Sie die aktuelle Sprache wirklich in ändern" -#: FlatCAMTranslation.py:95 +#: FlatCAMTranslation.py:106 msgid "Apply Language ..." msgstr "Sprache anwenden ..." -#: ObjectCollection.py:453 +#: ObjectCollection.py:454 #, python-brace-format msgid "Object renamed from {old} to {new}" msgstr "Objekt umbenannt von {old} zu {new}" -#: ObjectCollection.py:852 +#: ObjectCollection.py:853 msgid "Cause of error" msgstr "Fehlerursache" @@ -3198,8 +3114,8 @@ msgstr "" "für die Größenänderung ein." #: flatcamEditors/FlatCAMExcEditor.py:983 -#: flatcamEditors/FlatCAMExcEditor.py:1052 flatcamGUI/FlatCAMGUI.py:2892 -#: flatcamGUI/FlatCAMGUI.py:3105 flatcamGUI/FlatCAMGUI.py:3322 +#: flatcamEditors/FlatCAMExcEditor.py:1052 flatcamGUI/FlatCAMGUI.py:3127 +#: flatcamGUI/FlatCAMGUI.py:3340 flatcamGUI/FlatCAMGUI.py:3557 msgid "Cancelled." msgstr "Abgebrochen." @@ -3224,7 +3140,7 @@ msgstr "Erledigt. Bohrer Bewegen abgeschlossen." msgid "Done. Drill(s) copied." msgstr "Erledigt. Bohrer kopiert." -#: flatcamEditors/FlatCAMExcEditor.py:1480 flatcamGUI/PreferencesUI.py:2820 +#: flatcamEditors/FlatCAMExcEditor.py:1480 flatcamGUI/PreferencesUI.py:2821 msgid "Excellon Editor" msgstr "Excellon Editor" @@ -3233,13 +3149,13 @@ msgstr "Excellon Editor" msgid "Name:" msgstr "Name:" -#: flatcamEditors/FlatCAMExcEditor.py:1493 flatcamGUI/ObjectUI.py:733 -#: flatcamGUI/ObjectUI.py:1145 flatcamTools/ToolNonCopperClear.py:109 +#: flatcamEditors/FlatCAMExcEditor.py:1493 flatcamGUI/ObjectUI.py:757 +#: flatcamGUI/ObjectUI.py:1184 flatcamTools/ToolNonCopperClear.py:109 #: flatcamTools/ToolPaint.py:112 flatcamTools/ToolSolderPaste.py:73 msgid "Tools Table" msgstr "Werkzeugtabelle" -#: flatcamEditors/FlatCAMExcEditor.py:1495 flatcamGUI/ObjectUI.py:735 +#: flatcamEditors/FlatCAMExcEditor.py:1495 flatcamGUI/ObjectUI.py:759 msgid "" "Tools in this Excellon object\n" "when are used for drilling." @@ -3259,8 +3175,8 @@ msgstr "" "Werkzeug zur Werkzeugliste hinzufügen / löschen\n" "für dieses Excellon-Objekt." -#: flatcamEditors/FlatCAMExcEditor.py:1529 flatcamGUI/ObjectUI.py:1258 -#: flatcamGUI/PreferencesUI.py:2851 +#: flatcamEditors/FlatCAMExcEditor.py:1529 flatcamGUI/ObjectUI.py:1297 +#: flatcamGUI/PreferencesUI.py:2852 msgid "Diameter for the new tool" msgstr "Durchmesser für das neue Werkzeug" @@ -3288,7 +3204,7 @@ msgstr "" "Löschen Sie ein Werkzeug in der Werkzeugliste\n" "indem Sie eine Zeile in der Werkzeugtabelle auswählen." -#: flatcamEditors/FlatCAMExcEditor.py:1573 flatcamGUI/FlatCAMGUI.py:1749 +#: flatcamEditors/FlatCAMExcEditor.py:1573 flatcamGUI/FlatCAMGUI.py:1865 msgid "Resize Drill(s)" msgstr "Größe der Bohrer ändern" @@ -3312,8 +3228,8 @@ msgstr "Größe ändern" msgid "Resize drill(s)" msgstr "Bohrer verkleinern" -#: flatcamEditors/FlatCAMExcEditor.py:1622 flatcamGUI/FlatCAMGUI.py:1748 -#: flatcamGUI/FlatCAMGUI.py:1958 +#: flatcamEditors/FlatCAMExcEditor.py:1622 flatcamGUI/FlatCAMGUI.py:1864 +#: flatcamGUI/FlatCAMGUI.py:2116 msgid "Add Drill Array" msgstr "Bohrer-Array hinzufügen" @@ -3338,17 +3254,17 @@ msgstr "Linear" #: flatcamEditors/FlatCAMExcEditor.py:1634 #: flatcamEditors/FlatCAMExcEditor.py:1848 -#: flatcamEditors/FlatCAMGrbEditor.py:2696 flatcamGUI/ObjectUI.py:300 -#: flatcamGUI/PreferencesUI.py:3999 flatcamGUI/PreferencesUI.py:6396 +#: flatcamEditors/FlatCAMGrbEditor.py:2696 flatcamGUI/ObjectUI.py:311 +#: flatcamGUI/PreferencesUI.py:4000 flatcamGUI/PreferencesUI.py:6397 #: flatcamTools/ToolFiducials.py:220 flatcamTools/ToolNonCopperClear.py:221 msgid "Circular" msgstr "Kreisförmig" -#: flatcamEditors/FlatCAMExcEditor.py:1642 flatcamGUI/PreferencesUI.py:2862 +#: flatcamEditors/FlatCAMExcEditor.py:1642 flatcamGUI/PreferencesUI.py:2863 msgid "Nr of drills" msgstr "Anzahl der Bohrer" -#: flatcamEditors/FlatCAMExcEditor.py:1643 flatcamGUI/PreferencesUI.py:2864 +#: flatcamEditors/FlatCAMExcEditor.py:1643 flatcamGUI/PreferencesUI.py:2865 msgid "Specify how many drills to be in the array." msgstr "Geben Sie an, wie viele Drills im Array enthalten sein sollen." @@ -3359,14 +3275,14 @@ msgstr "Geben Sie an, wie viele Drills im Array enthalten sein sollen." #: flatcamEditors/FlatCAMExcEditor.py:1927 #: flatcamEditors/FlatCAMGrbEditor.py:1524 #: flatcamEditors/FlatCAMGrbEditor.py:2724 -#: flatcamEditors/FlatCAMGrbEditor.py:2773 flatcamGUI/PreferencesUI.py:2972 +#: flatcamEditors/FlatCAMGrbEditor.py:2773 flatcamGUI/PreferencesUI.py:2973 msgid "Direction" msgstr "Richtung" #: flatcamEditors/FlatCAMExcEditor.py:1663 #: flatcamEditors/FlatCAMExcEditor.py:1878 -#: flatcamEditors/FlatCAMGrbEditor.py:2726 flatcamGUI/PreferencesUI.py:1940 -#: flatcamGUI/PreferencesUI.py:2880 flatcamGUI/PreferencesUI.py:3028 +#: flatcamEditors/FlatCAMGrbEditor.py:2726 flatcamGUI/PreferencesUI.py:1941 +#: flatcamGUI/PreferencesUI.py:2881 flatcamGUI/PreferencesUI.py:3029 msgid "" "Direction on which the linear array is oriented:\n" "- 'X' - horizontal axis \n" @@ -3381,9 +3297,9 @@ msgstr "" #: flatcamEditors/FlatCAMExcEditor.py:1670 #: flatcamEditors/FlatCAMExcEditor.py:1792 #: flatcamEditors/FlatCAMExcEditor.py:1885 -#: flatcamEditors/FlatCAMGrbEditor.py:2733 flatcamGUI/PreferencesUI.py:1946 -#: flatcamGUI/PreferencesUI.py:2886 flatcamGUI/PreferencesUI.py:2981 -#: flatcamGUI/PreferencesUI.py:3034 flatcamGUI/PreferencesUI.py:4822 +#: flatcamEditors/FlatCAMGrbEditor.py:2733 flatcamGUI/PreferencesUI.py:1947 +#: flatcamGUI/PreferencesUI.py:2887 flatcamGUI/PreferencesUI.py:2982 +#: flatcamGUI/PreferencesUI.py:3035 flatcamGUI/PreferencesUI.py:4823 #: flatcamTools/ToolFilm.py:256 msgid "X" msgstr "X" @@ -3391,9 +3307,9 @@ msgstr "X" #: flatcamEditors/FlatCAMExcEditor.py:1671 #: flatcamEditors/FlatCAMExcEditor.py:1793 #: flatcamEditors/FlatCAMExcEditor.py:1886 -#: flatcamEditors/FlatCAMGrbEditor.py:2734 flatcamGUI/PreferencesUI.py:1947 -#: flatcamGUI/PreferencesUI.py:2887 flatcamGUI/PreferencesUI.py:2982 -#: flatcamGUI/PreferencesUI.py:3035 flatcamGUI/PreferencesUI.py:4823 +#: flatcamEditors/FlatCAMGrbEditor.py:2734 flatcamGUI/PreferencesUI.py:1948 +#: flatcamGUI/PreferencesUI.py:2888 flatcamGUI/PreferencesUI.py:2983 +#: flatcamGUI/PreferencesUI.py:3036 flatcamGUI/PreferencesUI.py:4824 #: flatcamTools/ToolFilm.py:257 msgid "Y" msgstr "Y" @@ -3408,11 +3324,11 @@ msgstr "Y" #: flatcamEditors/FlatCAMExcEditor.py:1939 #: flatcamEditors/FlatCAMGrbEditor.py:2735 #: flatcamEditors/FlatCAMGrbEditor.py:2752 -#: flatcamEditors/FlatCAMGrbEditor.py:2788 flatcamGUI/PreferencesUI.py:1948 -#: 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 +#: flatcamEditors/FlatCAMGrbEditor.py:2788 flatcamGUI/PreferencesUI.py:1949 +#: flatcamGUI/PreferencesUI.py:1967 flatcamGUI/PreferencesUI.py:2889 +#: flatcamGUI/PreferencesUI.py:2908 flatcamGUI/PreferencesUI.py:2984 +#: flatcamGUI/PreferencesUI.py:2989 flatcamGUI/PreferencesUI.py:3037 +#: flatcamGUI/PreferencesUI.py:3058 flatcamGUI/PreferencesUI.py:5216 #: flatcamTools/ToolDistance.py:66 flatcamTools/ToolDistanceMin.py:68 #: flatcamTools/ToolTransform.py:62 msgid "Angle" @@ -3420,35 +3336,29 @@ msgstr "Winkel" #: flatcamEditors/FlatCAMExcEditor.py:1676 #: flatcamEditors/FlatCAMExcEditor.py:1891 -#: flatcamEditors/FlatCAMGrbEditor.py:2739 flatcamGUI/PreferencesUI.py:1954 -#: flatcamGUI/PreferencesUI.py:2894 flatcamGUI/PreferencesUI.py:3042 +#: flatcamEditors/FlatCAMGrbEditor.py:2739 flatcamGUI/PreferencesUI.py:1955 +#: flatcamGUI/PreferencesUI.py:2895 flatcamGUI/PreferencesUI.py:3043 msgid "Pitch" msgstr "Abstand" #: flatcamEditors/FlatCAMExcEditor.py:1678 #: flatcamEditors/FlatCAMExcEditor.py:1893 -#: flatcamEditors/FlatCAMGrbEditor.py:2741 flatcamGUI/PreferencesUI.py:1956 -#: flatcamGUI/PreferencesUI.py:2896 flatcamGUI/PreferencesUI.py:3044 +#: flatcamEditors/FlatCAMGrbEditor.py:2741 flatcamGUI/PreferencesUI.py:1957 +#: flatcamGUI/PreferencesUI.py:2897 flatcamGUI/PreferencesUI.py:3045 msgid "Pitch = Distance between elements of the array." msgstr "Abstand = Abstand zwischen Elementen des Arrays." #: 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" "Min value is: -360 degrees.\n" "Max value is: 360.00 degrees." msgstr "" -"Winkel, bei dem das lineare Array platziert wird.\n" +"Winkel, bei dem das lineare Feld platziert wird.\n" "Die Genauigkeit beträgt maximal 2 Dezimalstellen.\n" -"Der Mindestwert beträgt -359,99 Grad.\n" +"Der Mindestwert beträgt -360 Grad.\n" "Maximalwert ist: 360.00 Grad." #: flatcamEditors/FlatCAMExcEditor.py:1712 @@ -3463,26 +3373,26 @@ msgstr "" #: flatcamEditors/FlatCAMExcEditor.py:1719 #: flatcamEditors/FlatCAMExcEditor.py:1935 -#: flatcamEditors/FlatCAMGrbEditor.py:2783 flatcamGUI/PreferencesUI.py:1988 -#: flatcamGUI/PreferencesUI.py:2634 flatcamGUI/PreferencesUI.py:2930 -#: flatcamGUI/PreferencesUI.py:3080 flatcamGUI/PreferencesUI.py:3508 +#: flatcamEditors/FlatCAMGrbEditor.py:2783 flatcamGUI/PreferencesUI.py:1989 +#: flatcamGUI/PreferencesUI.py:2635 flatcamGUI/PreferencesUI.py:2931 +#: flatcamGUI/PreferencesUI.py:3081 flatcamGUI/PreferencesUI.py:3509 msgid "CW" msgstr "CW" #: flatcamEditors/FlatCAMExcEditor.py:1720 #: flatcamEditors/FlatCAMExcEditor.py:1936 -#: flatcamEditors/FlatCAMGrbEditor.py:2784 flatcamGUI/PreferencesUI.py:1989 -#: flatcamGUI/PreferencesUI.py:2635 flatcamGUI/PreferencesUI.py:2931 -#: flatcamGUI/PreferencesUI.py:3081 flatcamGUI/PreferencesUI.py:3509 +#: flatcamEditors/FlatCAMGrbEditor.py:2784 flatcamGUI/PreferencesUI.py:1990 +#: flatcamGUI/PreferencesUI.py:2636 flatcamGUI/PreferencesUI.py:2932 +#: flatcamGUI/PreferencesUI.py:3082 flatcamGUI/PreferencesUI.py:3510 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:2909 -#: flatcamGUI/PreferencesUI.py:2939 flatcamGUI/PreferencesUI.py:3059 -#: flatcamGUI/PreferencesUI.py:3089 +#: flatcamEditors/FlatCAMGrbEditor.py:2790 flatcamGUI/PreferencesUI.py:1969 +#: flatcamGUI/PreferencesUI.py:1998 flatcamGUI/PreferencesUI.py:2910 +#: flatcamGUI/PreferencesUI.py:2940 flatcamGUI/PreferencesUI.py:3060 +#: flatcamGUI/PreferencesUI.py:3090 msgid "Angle at which each element in circular array is placed." msgstr "" "Winkel, um den jedes Element in einer kreisförmigen Anordnung platziert wird." @@ -3499,16 +3409,16 @@ msgstr "" "Parameter zum Hinzufügen eines Schlitzes (Loch mit ovaler Form)\n" "entweder einzeln oder als Teil eines Arrays." -#: flatcamEditors/FlatCAMExcEditor.py:1769 flatcamGUI/PreferencesUI.py:2956 +#: flatcamEditors/FlatCAMExcEditor.py:1769 flatcamGUI/PreferencesUI.py:2957 #: flatcamTools/ToolProperties.py:555 msgid "Length" msgstr "Länge" -#: flatcamEditors/FlatCAMExcEditor.py:1771 flatcamGUI/PreferencesUI.py:2958 +#: flatcamEditors/FlatCAMExcEditor.py:1771 flatcamGUI/PreferencesUI.py:2959 msgid "Length = The length of the slot." msgstr "Länge = Die Länge des Schlitzes." -#: flatcamEditors/FlatCAMExcEditor.py:1785 flatcamGUI/PreferencesUI.py:2974 +#: flatcamEditors/FlatCAMExcEditor.py:1785 flatcamGUI/PreferencesUI.py:2975 msgid "" "Direction on which the slot is oriented:\n" "- 'X' - horizontal axis \n" @@ -3521,12 +3431,6 @@ msgstr "" "- 'Winkel' - Ein benutzerdefinierter Winkel für die Schlitzneigung" #: 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" @@ -3535,7 +3439,7 @@ msgid "" msgstr "" "Winkel, in dem der Schlitz platziert ist.\n" "Die Genauigkeit beträgt maximal 2 Dezimalstellen.\n" -"Der Mindestwert beträgt: -359,99 Grad.\n" +"Der Mindestwert beträgt: -360 Grad.\n" "Maximaler Wert ist: 360.00 Grad." #: flatcamEditors/FlatCAMExcEditor.py:1833 @@ -3555,11 +3459,11 @@ msgstr "" "Wählen Sie den Typ des zu erstellenden Slot-Arrays.\n" "Es kann ein lineares X (Y) oder ein kreisförmiges sein" -#: flatcamEditors/FlatCAMExcEditor.py:1856 flatcamGUI/PreferencesUI.py:3013 +#: flatcamEditors/FlatCAMExcEditor.py:1856 flatcamGUI/PreferencesUI.py:3014 msgid "Nr of slots" msgstr "Anzahl der Slots" -#: flatcamEditors/FlatCAMExcEditor.py:1857 flatcamGUI/PreferencesUI.py:3015 +#: flatcamEditors/FlatCAMExcEditor.py:1857 flatcamGUI/PreferencesUI.py:3016 msgid "Specify how many slots to be in the array." msgstr "Geben Sie an, wie viele Steckplätze sich im Array befinden sollen." @@ -3572,7 +3476,7 @@ msgstr "" "Speichern Sie Excellon und bearbeiten Sie es erneut, wenn Sie dieses Tool " "hinzufügen müssen. " -#: flatcamEditors/FlatCAMExcEditor.py:2480 flatcamGUI/FlatCAMGUI.py:3491 +#: flatcamEditors/FlatCAMExcEditor.py:2480 flatcamGUI/FlatCAMGUI.py:3726 msgid "Added new tool with dia" msgstr "Neues Werkzeug mit Durchmesser hinzugefügt" @@ -3651,7 +3555,7 @@ msgid "Round" msgstr "Runden" #: flatcamEditors/FlatCAMGeoEditor.py:96 -#: flatcamEditors/FlatCAMGrbEditor.py:2552 flatcamGUI/PreferencesUI.py:5989 +#: flatcamEditors/FlatCAMGrbEditor.py:2552 flatcamGUI/PreferencesUI.py:5990 #: flatcamTools/ToolQRCode.py:198 msgid "Square" msgstr "Quadrat" @@ -3674,8 +3578,8 @@ msgid "Full Buffer" msgstr "Voller Puffer" #: flatcamEditors/FlatCAMGeoEditor.py:133 -#: flatcamEditors/FlatCAMGeoEditor.py:2758 flatcamGUI/FlatCAMGUI.py:1658 -#: flatcamGUI/PreferencesUI.py:2008 +#: flatcamEditors/FlatCAMGeoEditor.py:2758 flatcamGUI/FlatCAMGUI.py:1774 +#: flatcamGUI/PreferencesUI.py:2009 msgid "Buffer Tool" msgstr "Pufferwerkzeug" @@ -3695,7 +3599,7 @@ msgstr "" msgid "Font" msgstr "Schrift" -#: flatcamEditors/FlatCAMGeoEditor.py:324 flatcamGUI/FlatCAMGUI.py:1919 +#: flatcamEditors/FlatCAMGeoEditor.py:324 flatcamGUI/FlatCAMGUI.py:2054 msgid "Text" msgstr "Text" @@ -3703,13 +3607,13 @@ msgstr "Text" msgid "Text Tool" msgstr "Textwerkzeug" -#: flatcamEditors/FlatCAMGeoEditor.py:442 flatcamGUI/ObjectUI.py:348 -#: flatcamGUI/PreferencesUI.py:1449 flatcamGUI/PreferencesUI.py:3144 -#: flatcamGUI/PreferencesUI.py:4500 +#: flatcamEditors/FlatCAMGeoEditor.py:442 flatcamGUI/ObjectUI.py:359 +#: flatcamGUI/PreferencesUI.py:1450 flatcamGUI/PreferencesUI.py:3145 +#: flatcamGUI/PreferencesUI.py:4501 msgid "Tool dia" msgstr "Werkzeugdurchmesser" -#: flatcamEditors/FlatCAMGeoEditor.py:444 flatcamGUI/PreferencesUI.py:4502 +#: flatcamEditors/FlatCAMGeoEditor.py:444 flatcamGUI/PreferencesUI.py:4503 msgid "" "Diameter of the tool to\n" "be used in the operation." @@ -3717,26 +3621,15 @@ msgstr "" "Durchmesser des Werkzeugs bis\n" "in der Operation verwendet werden." -#: flatcamEditors/FlatCAMGeoEditor.py:455 flatcamGUI/PreferencesUI.py:4107 -#: flatcamGUI/PreferencesUI.py:4532 flatcamTools/ToolNonCopperClear.py:319 +#: flatcamEditors/FlatCAMGeoEditor.py:455 flatcamGUI/PreferencesUI.py:4108 +#: flatcamGUI/PreferencesUI.py:4533 flatcamTools/ToolNonCopperClear.py:319 #: flatcamTools/ToolPaint.py:219 msgid "Overlap Rate" msgstr "Überlappungsrate" -#: flatcamEditors/FlatCAMGeoEditor.py:457 flatcamGUI/PreferencesUI.py:4534 +# 3rd Time +#: flatcamEditors/FlatCAMGeoEditor.py:457 flatcamGUI/PreferencesUI.py:4535 #: 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" @@ -3746,30 +3639,29 @@ msgid "" "Higher values = slow processing and slow execution on CNC\n" "due of too many paths." msgstr "" -"Wie viel (Bruchteil) der Werkzeugbreite überlappt jeden Werkzeugdurchgang.\n" +"Wie viel (Prozent) der Werkzeugbreite überlappt jeden Werkzeugdurchgang.\n" "Beispiel:\n" "Ein Wert von 0,25 bedeutet hier 25%% vom oben gefundenen " "Werkzeugdurchmesser.\n" "\n" "Passen Sie den Wert beginnend mit niedrigeren Werten an\n" -"und erhöhen Sie es, wenn Bereiche, die gemalt werden sollen, noch sind\n" -"nicht gemalt.\n" +"und erhöhen Sie es, wenn nicht alle Bereiche ausgemalt sind.\n" "Niedrigere Werte = schnellere Verarbeitung, schnellere Ausführung auf der " "Leiterplatte.\n" "Höhere Werte = langsame Bearbeitung und langsame Ausführung auf CNC\n" "wegen zu vieler Pfade." -#: 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 +#: flatcamEditors/FlatCAMGeoEditor.py:475 flatcamGUI/PreferencesUI.py:4127 +#: flatcamGUI/PreferencesUI.py:4348 flatcamGUI/PreferencesUI.py:4553 +#: flatcamGUI/PreferencesUI.py:6107 flatcamGUI/PreferencesUI.py:6264 +#: flatcamGUI/PreferencesUI.py:6349 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 "Marge" -#: flatcamEditors/FlatCAMGeoEditor.py:477 flatcamGUI/PreferencesUI.py:4554 +#: flatcamEditors/FlatCAMGeoEditor.py:477 flatcamGUI/PreferencesUI.py:4555 #: flatcamTools/ToolPaint.py:240 msgid "" "Distance by which to avoid\n" @@ -3780,8 +3672,8 @@ msgstr "" "die Kanten des Polygons bis\n" "gemalt werden." -#: flatcamEditors/FlatCAMGeoEditor.py:489 flatcamGUI/PreferencesUI.py:4139 -#: flatcamGUI/PreferencesUI.py:4567 flatcamTools/ToolNonCopperClear.py:348 +#: flatcamEditors/FlatCAMGeoEditor.py:489 flatcamGUI/PreferencesUI.py:4140 +#: flatcamGUI/PreferencesUI.py:4568 flatcamTools/ToolNonCopperClear.py:348 #: flatcamTools/ToolPaint.py:251 msgid "Method" msgstr "Methode" @@ -3794,20 +3686,20 @@ msgstr "" "Algorithmus zum Malen des Polygons:
Standard: Feststehender " "Schritt nach innen.
Samenbasiert: Aus dem Samen heraus." -#: flatcamEditors/FlatCAMGeoEditor.py:496 flatcamGUI/PreferencesUI.py:4148 -#: flatcamGUI/PreferencesUI.py:4576 flatcamTools/ToolNonCopperClear.py:357 +#: flatcamEditors/FlatCAMGeoEditor.py:496 flatcamGUI/PreferencesUI.py:4149 +#: flatcamGUI/PreferencesUI.py:4577 flatcamTools/ToolNonCopperClear.py:357 #: flatcamTools/ToolPaint.py:260 msgid "Standard" msgstr "Standard" -#: flatcamEditors/FlatCAMGeoEditor.py:497 flatcamGUI/PreferencesUI.py:4149 -#: flatcamGUI/PreferencesUI.py:4577 flatcamTools/ToolNonCopperClear.py:358 +#: flatcamEditors/FlatCAMGeoEditor.py:497 flatcamGUI/PreferencesUI.py:4150 +#: flatcamGUI/PreferencesUI.py:4578 flatcamTools/ToolNonCopperClear.py:358 #: flatcamTools/ToolPaint.py:261 msgid "Seed-based" msgstr "Samenbasiert" -#: flatcamEditors/FlatCAMGeoEditor.py:498 flatcamGUI/PreferencesUI.py:4150 -#: flatcamGUI/PreferencesUI.py:4578 flatcamTools/ToolNonCopperClear.py:359 +#: flatcamEditors/FlatCAMGeoEditor.py:498 flatcamGUI/PreferencesUI.py:4151 +#: flatcamGUI/PreferencesUI.py:4579 flatcamTools/ToolNonCopperClear.py:359 #: flatcamTools/ToolPaint.py:262 msgid "Straight lines" msgstr "Gerade Linien" @@ -3816,8 +3708,8 @@ msgstr "Gerade Linien" msgid "Connect:" msgstr "Verbinden:" -#: flatcamEditors/FlatCAMGeoEditor.py:507 flatcamGUI/PreferencesUI.py:4159 -#: flatcamGUI/PreferencesUI.py:4585 flatcamTools/ToolNonCopperClear.py:366 +#: flatcamEditors/FlatCAMGeoEditor.py:507 flatcamGUI/PreferencesUI.py:4160 +#: flatcamGUI/PreferencesUI.py:4586 flatcamTools/ToolNonCopperClear.py:366 #: flatcamTools/ToolPaint.py:269 msgid "" "Draw lines between resulting\n" @@ -3830,8 +3722,8 @@ msgstr "" msgid "Contour:" msgstr "Kontur:" -#: flatcamEditors/FlatCAMGeoEditor.py:517 flatcamGUI/PreferencesUI.py:4170 -#: flatcamGUI/PreferencesUI.py:4595 flatcamTools/ToolNonCopperClear.py:375 +#: flatcamEditors/FlatCAMGeoEditor.py:517 flatcamGUI/PreferencesUI.py:4171 +#: flatcamGUI/PreferencesUI.py:4596 flatcamTools/ToolNonCopperClear.py:375 #: flatcamTools/ToolPaint.py:278 msgid "" "Cut around the perimeter of the polygon\n" @@ -3840,13 +3732,13 @@ msgstr "" "Schneiden Sie um den Umfang des Polygons herum\n" "Ecken und Kanten schneiden." -#: flatcamEditors/FlatCAMGeoEditor.py:529 flatcamGUI/FlatCAMGUI.py:1921 +#: flatcamEditors/FlatCAMGeoEditor.py:529 flatcamGUI/FlatCAMGUI.py:2058 msgid "Paint" msgstr "Malen" -#: flatcamEditors/FlatCAMGeoEditor.py:547 flatcamGUI/FlatCAMGUI.py:749 -#: flatcamGUI/FlatCAMGUI.py:2194 flatcamGUI/ObjectUI.py:1694 -#: flatcamTools/ToolPaint.py:41 flatcamTools/ToolPaint.py:538 +#: flatcamEditors/FlatCAMGeoEditor.py:547 flatcamGUI/FlatCAMGUI.py:819 +#: flatcamGUI/FlatCAMGUI.py:2388 flatcamGUI/ObjectUI.py:1733 +#: flatcamTools/ToolPaint.py:41 flatcamTools/ToolPaint.py:539 msgid "Paint Tool" msgstr "Werkzeug Malen" @@ -3857,7 +3749,7 @@ msgstr "Malwerkzeug abgebrochen. Keine Form ausgewählt." #: flatcamEditors/FlatCAMGeoEditor.py:597 #: flatcamEditors/FlatCAMGeoEditor.py:2784 #: flatcamEditors/FlatCAMGeoEditor.py:2814 -#: flatcamEditors/FlatCAMGeoEditor.py:2844 flatcamGUI/PreferencesUI.py:3140 +#: flatcamEditors/FlatCAMGeoEditor.py:2844 flatcamGUI/PreferencesUI.py:3141 #: flatcamTools/ToolProperties.py:120 flatcamTools/ToolProperties.py:158 msgid "Tools" msgstr "Werkzeuge" @@ -3865,15 +3757,15 @@ msgstr "Werkzeuge" #: flatcamEditors/FlatCAMGeoEditor.py:608 #: flatcamEditors/FlatCAMGeoEditor.py:992 #: flatcamEditors/FlatCAMGrbEditor.py:5011 -#: flatcamEditors/FlatCAMGrbEditor.py:5408 flatcamGUI/FlatCAMGUI.py:762 -#: flatcamGUI/FlatCAMGUI.py:2207 flatcamTools/ToolTransform.py:371 +#: flatcamEditors/FlatCAMGrbEditor.py:5408 flatcamGUI/FlatCAMGUI.py:840 +#: flatcamGUI/FlatCAMGUI.py:2406 flatcamTools/ToolTransform.py:371 msgid "Transform Tool" msgstr "Werkzeug Umwandeln" #: flatcamEditors/FlatCAMGeoEditor.py:609 #: flatcamEditors/FlatCAMGeoEditor.py:674 #: flatcamEditors/FlatCAMGrbEditor.py:5012 -#: flatcamEditors/FlatCAMGrbEditor.py:5077 flatcamGUI/PreferencesUI.py:5207 +#: flatcamEditors/FlatCAMGrbEditor.py:5077 flatcamGUI/PreferencesUI.py:5208 #: flatcamTools/ToolTransform.py:25 flatcamTools/ToolTransform.py:79 msgid "Rotate" msgstr "Drehen" @@ -3885,10 +3777,10 @@ msgstr "Neigung/Schere" #: flatcamEditors/FlatCAMGeoEditor.py:611 #: flatcamEditors/FlatCAMGrbEditor.py:2600 -#: 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 +#: flatcamEditors/FlatCAMGrbEditor.py:5014 flatcamGUI/FlatCAMGUI.py:954 +#: flatcamGUI/FlatCAMGUI.py:1986 flatcamGUI/FlatCAMGUI.py:2101 +#: flatcamGUI/FlatCAMGUI.py:2514 flatcamGUI/ObjectUI.py:103 +#: flatcamGUI/ObjectUI.py:121 flatcamGUI/PreferencesUI.py:5258 #: flatcamTools/ToolTransform.py:27 msgid "Scale" msgstr "Skalieren" @@ -3899,17 +3791,17 @@ msgid "Mirror (Flip)" msgstr "Spiegeln (Flip)" #: 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 +#: flatcamEditors/FlatCAMGrbEditor.py:5016 flatcamGUI/ObjectUI.py:132 +#: flatcamGUI/ObjectUI.py:148 flatcamGUI/ObjectUI.py:1217 +#: flatcamGUI/ObjectUI.py:1918 flatcamGUI/PreferencesUI.py:4196 +#: flatcamGUI/PreferencesUI.py:5305 flatcamTools/ToolNonCopperClear.py:397 #: flatcamTools/ToolTransform.py:29 msgid "Offset" msgstr "Versatz" #: flatcamEditors/FlatCAMGeoEditor.py:626 -#: flatcamEditors/FlatCAMGrbEditor.py:5029 flatcamGUI/FlatCAMGUI.py:709 -#: flatcamGUI/FlatCAMGUI.py:2160 +#: flatcamEditors/FlatCAMGrbEditor.py:5029 flatcamGUI/FlatCAMGUI.py:761 +#: flatcamGUI/FlatCAMGUI.py:2335 msgid "Editor" msgstr "Editor" @@ -3919,7 +3811,7 @@ msgid "Angle:" msgstr "Winkel:" #: flatcamEditors/FlatCAMGeoEditor.py:660 -#: flatcamEditors/FlatCAMGrbEditor.py:5063 flatcamGUI/PreferencesUI.py:5217 +#: flatcamEditors/FlatCAMGrbEditor.py:5063 flatcamGUI/PreferencesUI.py:5218 #: flatcamTools/ToolTransform.py:64 msgid "" "Angle for Rotation action, in degrees.\n" @@ -3951,8 +3843,8 @@ msgstr "Winkel X:" #: flatcamEditors/FlatCAMGeoEditor.py:701 #: flatcamEditors/FlatCAMGeoEditor.py:721 #: flatcamEditors/FlatCAMGrbEditor.py:5104 -#: flatcamEditors/FlatCAMGrbEditor.py:5124 flatcamGUI/PreferencesUI.py:5236 -#: flatcamGUI/PreferencesUI.py:5250 flatcamTools/ToolCalibration.py:508 +#: flatcamEditors/FlatCAMGrbEditor.py:5124 flatcamGUI/PreferencesUI.py:5237 +#: flatcamGUI/PreferencesUI.py:5251 flatcamTools/ToolCalibration.py:508 #: flatcamTools/ToolCalibration.py:521 msgid "" "Angle for Skew action, in degrees.\n" @@ -4033,7 +3925,7 @@ msgid "Scale Y" msgstr "Maßstab Y" #: flatcamEditors/FlatCAMGeoEditor.py:800 -#: flatcamEditors/FlatCAMGrbEditor.py:5203 flatcamGUI/PreferencesUI.py:5286 +#: flatcamEditors/FlatCAMGrbEditor.py:5203 flatcamGUI/PreferencesUI.py:5287 #: flatcamTools/ToolTransform.py:191 msgid "Link" msgstr "Verknüpfung" @@ -4048,7 +3940,7 @@ msgstr "" "Verwenden des Skalierungsfaktors X für beide Achsen." #: flatcamEditors/FlatCAMGeoEditor.py:808 -#: flatcamEditors/FlatCAMGrbEditor.py:5211 flatcamGUI/PreferencesUI.py:5294 +#: flatcamEditors/FlatCAMGrbEditor.py:5211 flatcamGUI/PreferencesUI.py:5295 #: flatcamTools/ToolTransform.py:199 msgid "Scale Reference" msgstr "Skalenreferenz" @@ -4615,10 +4507,10 @@ msgstr "mit Durchmesser" msgid "Copy cancelled. No shape selected." msgstr "Kopieren abgebrochen. Keine Form ausgewählt." -#: 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 +#: flatcamEditors/FlatCAMGeoEditor.py:4025 flatcamGUI/FlatCAMGUI.py:3435 +#: flatcamGUI/FlatCAMGUI.py:3482 flatcamGUI/FlatCAMGUI.py:3501 +#: flatcamGUI/FlatCAMGUI.py:3636 flatcamGUI/FlatCAMGUI.py:3649 +#: flatcamGUI/FlatCAMGUI.py:3683 flatcamGUI/FlatCAMGUI.py:3741 msgid "Click on target point." msgstr "Klicken Sie auf den Zielpunkt." @@ -4850,62 +4742,62 @@ msgstr "Erledigt. Öffnungsbewegung abgeschlossen." msgid "Done. Apertures copied." msgstr "Erledigt. Blende kopiert." -#: flatcamEditors/FlatCAMGrbEditor.py:2376 flatcamGUI/FlatCAMGUI.py:1934 -#: flatcamGUI/PreferencesUI.py:1847 +#: flatcamEditors/FlatCAMGrbEditor.py:2376 flatcamGUI/FlatCAMGUI.py:2079 +#: flatcamGUI/PreferencesUI.py:1848 msgid "Gerber Editor" msgstr "Gerber-Editor" -#: flatcamEditors/FlatCAMGrbEditor.py:2396 flatcamGUI/ObjectUI.py:212 +#: flatcamEditors/FlatCAMGrbEditor.py:2396 flatcamGUI/ObjectUI.py:223 #: flatcamTools/ToolProperties.py:156 msgid "Apertures" msgstr "Öffnungen" -#: flatcamEditors/FlatCAMGrbEditor.py:2398 flatcamGUI/ObjectUI.py:214 +#: flatcamEditors/FlatCAMGrbEditor.py:2398 flatcamGUI/ObjectUI.py:225 msgid "Apertures Table for the Gerber Object." msgstr "Blendentabelle für das Gerberobjekt." #: flatcamEditors/FlatCAMGrbEditor.py:2409 -#: flatcamEditors/FlatCAMGrbEditor.py:3755 flatcamGUI/ObjectUI.py:247 +#: flatcamEditors/FlatCAMGrbEditor.py:3755 flatcamGUI/ObjectUI.py:258 msgid "Code" msgstr "Code" #: flatcamEditors/FlatCAMGrbEditor.py:2409 -#: flatcamEditors/FlatCAMGrbEditor.py:3755 flatcamGUI/ObjectUI.py:247 -#: flatcamGUI/ObjectUI.py:1178 flatcamGUI/ObjectUI.py:1866 +#: flatcamEditors/FlatCAMGrbEditor.py:3755 flatcamGUI/ObjectUI.py:258 +#: flatcamGUI/ObjectUI.py:1217 flatcamGUI/ObjectUI.py:1918 msgid "Type" msgstr "Typ" #: flatcamEditors/FlatCAMGrbEditor.py:2409 -#: flatcamEditors/FlatCAMGrbEditor.py:3755 flatcamGUI/ObjectUI.py:247 -#: flatcamGUI/PreferencesUI.py:6201 flatcamGUI/PreferencesUI.py:6230 -#: flatcamGUI/PreferencesUI.py:6332 flatcamTools/ToolCopperThieving.py:260 +#: flatcamEditors/FlatCAMGrbEditor.py:3755 flatcamGUI/ObjectUI.py:258 +#: flatcamGUI/PreferencesUI.py:6202 flatcamGUI/PreferencesUI.py:6231 +#: flatcamGUI/PreferencesUI.py:6333 flatcamTools/ToolCopperThieving.py:260 #: flatcamTools/ToolCopperThieving.py:300 flatcamTools/ToolFiducials.py:156 msgid "Size" msgstr "Größe" #: flatcamEditors/FlatCAMGrbEditor.py:2409 -#: flatcamEditors/FlatCAMGrbEditor.py:3755 flatcamGUI/ObjectUI.py:247 +#: flatcamEditors/FlatCAMGrbEditor.py:3755 flatcamGUI/ObjectUI.py:258 msgid "Dim" msgstr "Maße" -#: flatcamEditors/FlatCAMGrbEditor.py:2413 flatcamGUI/ObjectUI.py:251 +#: flatcamEditors/FlatCAMGrbEditor.py:2413 flatcamGUI/ObjectUI.py:262 msgid "Index" msgstr "Index" #: flatcamEditors/FlatCAMGrbEditor.py:2415 -#: flatcamEditors/FlatCAMGrbEditor.py:2444 flatcamGUI/ObjectUI.py:253 +#: flatcamEditors/FlatCAMGrbEditor.py:2444 flatcamGUI/ObjectUI.py:264 msgid "Aperture Code" msgstr "Öffnungscode" -#: flatcamEditors/FlatCAMGrbEditor.py:2417 flatcamGUI/ObjectUI.py:255 +#: flatcamEditors/FlatCAMGrbEditor.py:2417 flatcamGUI/ObjectUI.py:266 msgid "Type of aperture: circular, rectangle, macros etc" msgstr "Öffnungsart: kreisförmig, rechteckig, Makros usw" -#: flatcamEditors/FlatCAMGrbEditor.py:2419 flatcamGUI/ObjectUI.py:257 +#: flatcamEditors/FlatCAMGrbEditor.py:2419 flatcamGUI/ObjectUI.py:268 msgid "Aperture Size:" msgstr "Öffnungsgröße:" -#: flatcamEditors/FlatCAMGrbEditor.py:2421 flatcamGUI/ObjectUI.py:259 +#: flatcamEditors/FlatCAMGrbEditor.py:2421 flatcamGUI/ObjectUI.py:270 msgid "" "Aperture Dimensions:\n" " - (width, height) for R, O type.\n" @@ -4915,7 +4807,7 @@ msgstr "" "  - (Breite, Höhe) für R, O-Typ.\n" "  - (dia, nVertices) für P-Typ" -#: flatcamEditors/FlatCAMGrbEditor.py:2445 flatcamGUI/PreferencesUI.py:1878 +#: flatcamEditors/FlatCAMGrbEditor.py:2445 flatcamGUI/PreferencesUI.py:1879 msgid "Code for the new aperture" msgstr "Code für die neue Blende" @@ -4991,7 +4883,7 @@ msgstr "Pufferblende" msgid "Buffer a aperture in the aperture list" msgstr "Puffern Sie eine Blende in der Blendenliste" -#: flatcamEditors/FlatCAMGrbEditor.py:2542 flatcamGUI/PreferencesUI.py:2012 +#: flatcamEditors/FlatCAMGrbEditor.py:2542 flatcamGUI/PreferencesUI.py:2013 msgid "Buffer distance" msgstr "Pufferabstand" @@ -5013,9 +4905,9 @@ msgstr "" "  - 'Abgeschrägt:' Die Ecke ist eine Linie, die die Features, die sich in " "der Ecke treffen, direkt verbindet" -#: flatcamEditors/FlatCAMGrbEditor.py:2560 flatcamGUI/FlatCAMGUI.py:842 -#: flatcamGUI/FlatCAMGUI.py:1868 flatcamGUI/FlatCAMGUI.py:1920 -#: flatcamGUI/FlatCAMGUI.py:1947 flatcamGUI/FlatCAMGUI.py:2283 +#: flatcamEditors/FlatCAMGrbEditor.py:2560 flatcamGUI/FlatCAMGUI.py:952 +#: flatcamGUI/FlatCAMGUI.py:1984 flatcamGUI/FlatCAMGUI.py:2056 +#: flatcamGUI/FlatCAMGUI.py:2099 flatcamGUI/FlatCAMGUI.py:2512 msgid "Buffer" msgstr "Puffer" @@ -5027,7 +4919,7 @@ msgstr "Skalenöffnung" msgid "Scale a aperture in the aperture list" msgstr "Skalieren Sie eine Blende in der Blendenliste" -#: flatcamEditors/FlatCAMGrbEditor.py:2585 flatcamGUI/PreferencesUI.py:2027 +#: flatcamEditors/FlatCAMGrbEditor.py:2585 flatcamGUI/PreferencesUI.py:2028 msgid "Scale factor" msgstr "Skalierungsfaktor" @@ -5092,8 +4984,8 @@ msgstr "Klären" msgid "Clear all the markings." msgstr "Alle Markierungen entfernen." -#: flatcamEditors/FlatCAMGrbEditor.py:2684 flatcamGUI/FlatCAMGUI.py:832 -#: flatcamGUI/FlatCAMGUI.py:1868 flatcamGUI/FlatCAMGUI.py:2273 +#: flatcamEditors/FlatCAMGrbEditor.py:2684 flatcamGUI/FlatCAMGUI.py:937 +#: flatcamGUI/FlatCAMGUI.py:1984 flatcamGUI/FlatCAMGUI.py:2497 msgid "Add Pad Array" msgstr "Pad-Array hinzufügen" @@ -5109,11 +5001,11 @@ msgstr "" "Wählen Sie den zu erstellenden Pad-Array-Typ aus.\n" "Es kann lineares X (Y) oder rund sein" -#: flatcamEditors/FlatCAMGrbEditor.py:2703 flatcamGUI/PreferencesUI.py:1915 +#: flatcamEditors/FlatCAMGrbEditor.py:2703 flatcamGUI/PreferencesUI.py:1916 msgid "Nr of pads" msgstr "Anzahl der Pads" -#: flatcamEditors/FlatCAMGrbEditor.py:2705 flatcamGUI/PreferencesUI.py:1917 +#: flatcamEditors/FlatCAMGrbEditor.py:2705 flatcamGUI/PreferencesUI.py:1918 msgid "Specify how many pads to be in the array." msgstr "Geben Sie an, wie viele Pads sich im Array befinden sollen." @@ -5171,26 +5063,20 @@ msgid "Deleted aperture with code" msgstr "Blende mit Code gelöscht" #: flatcamEditors/FlatCAMGrbEditor.py:3847 -#, fuzzy -#| msgid "Gerber Editor" msgid "Loading Gerber into Editor" -msgstr "Gerber-Editor" +msgstr "Gerber File wird in den Editor geladen" #: flatcamEditors/FlatCAMGrbEditor.py:3957 msgid "Setting up the UI" -msgstr "" +msgstr "UI wird initialisiert" #: flatcamEditors/FlatCAMGrbEditor.py:3958 -#, fuzzy -#| msgid "Adding geometry for aperture" msgid "Adding geometry finished. Preparing the GUI" -msgstr "Geometrie für Blende hinzufügen" +msgstr "Geometrie wurde hinzugefügt. User Interface wird vorbereitet" #: 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 "Eines oder mehrere der Gerber-Objekte sind ungültig." +msgstr "Gerber-Objekte wurde in den Editor geladen." #: flatcamEditors/FlatCAMGrbEditor.py:4107 msgid "" @@ -5328,9 +5214,9 @@ msgid "String to replace the one in the Find box throughout the text." msgstr "" "Zeichenfolge, die die Zeichenfolge im Feld Suchen im gesamten Text ersetzt." -#: flatcamEditors/FlatCAMTextEditor.py:87 flatcamGUI/ObjectUI.py:471 -#: flatcamGUI/ObjectUI.py:1759 flatcamGUI/PreferencesUI.py:1494 -#: flatcamGUI/PreferencesUI.py:3641 flatcamGUI/PreferencesUI.py:4616 +#: flatcamEditors/FlatCAMTextEditor.py:87 flatcamGUI/ObjectUI.py:482 +#: flatcamGUI/ObjectUI.py:1811 flatcamGUI/PreferencesUI.py:1495 +#: flatcamGUI/PreferencesUI.py:3642 flatcamGUI/PreferencesUI.py:4617 msgid "All" msgstr "Alles" @@ -5381,10 +5267,8 @@ msgstr "Datei öffnen" #: flatcamEditors/FlatCAMTextEditor.py:207 #: flatcamEditors/FlatCAMTextEditor.py:212 -#, fuzzy -#| msgid "Export GCode ..." msgid "Export Code ..." -msgstr "GCode exportieren ..." +msgstr "Code exportieren ..." #: flatcamEditors/FlatCAMTextEditor.py:215 msgid "Export Code cancelled." @@ -5395,7 +5279,7 @@ msgid "Code Editor content copied to clipboard ..." msgstr "Code Editor Inhalt in die Zwischenablage kopiert ..." #: flatcamGUI/FlatCAMGUI.py:52 flatcamGUI/FlatCAMGUI.py:54 -#: flatcamGUI/FlatCAMGUI.py:1891 +#: flatcamGUI/FlatCAMGUI.py:2009 msgid "Toggle Panel" msgstr "Panel umschalten" @@ -5415,91 +5299,91 @@ msgstr "Erzeugt ein neues leeres Projekt" msgid "&New" msgstr "&Neu" -#: flatcamGUI/FlatCAMGUI.py:79 +#: flatcamGUI/FlatCAMGUI.py:80 msgid "Geometry\tN" msgstr "Geometrie\tN" -#: flatcamGUI/FlatCAMGUI.py:81 +#: flatcamGUI/FlatCAMGUI.py:82 msgid "Will create a new, empty Geometry Object." msgstr "Erzeugt ein neues, leeres Geometrieobjekt." -#: flatcamGUI/FlatCAMGUI.py:83 +#: flatcamGUI/FlatCAMGUI.py:84 msgid "Gerber\tB" msgstr "Gerber\tB" -#: flatcamGUI/FlatCAMGUI.py:85 +#: flatcamGUI/FlatCAMGUI.py:86 msgid "Will create a new, empty Gerber Object." msgstr "Erzeugt ein neues, leeres Gerber-Objekt." -#: flatcamGUI/FlatCAMGUI.py:87 +#: flatcamGUI/FlatCAMGUI.py:88 msgid "Excellon\tL" msgstr "Excellon\tL" -#: flatcamGUI/FlatCAMGUI.py:89 +#: flatcamGUI/FlatCAMGUI.py:90 msgid "Will create a new, empty Excellon Object." msgstr "Erzeugt ein neues, leeres Excellon-Objekt." -#: flatcamGUI/FlatCAMGUI.py:93 +#: flatcamGUI/FlatCAMGUI.py:94 msgid "Document\tD" msgstr "Dokumentieren\tD" -#: flatcamGUI/FlatCAMGUI.py:95 +#: flatcamGUI/FlatCAMGUI.py:96 msgid "Will create a new, empty Document Object." msgstr "Erstellt ein neues, leeres Dokumentobjekt." -#: flatcamGUI/FlatCAMGUI.py:98 flatcamGUI/FlatCAMGUI.py:3837 +#: flatcamGUI/FlatCAMGUI.py:99 flatcamGUI/FlatCAMGUI.py:4075 #: flatcamTools/ToolPcbWizard.py:62 flatcamTools/ToolPcbWizard.py:69 msgid "Open" msgstr "Öffnen" -#: flatcamGUI/FlatCAMGUI.py:102 +#: flatcamGUI/FlatCAMGUI.py:103 msgid "Open &Project ..." msgstr "&Projekt öffnen..." -#: flatcamGUI/FlatCAMGUI.py:108 flatcamGUI/FlatCAMGUI.py:3846 +#: flatcamGUI/FlatCAMGUI.py:109 flatcamGUI/FlatCAMGUI.py:4085 msgid "Open &Gerber ...\tCTRL+G" msgstr "&Gerber öffnen...\\STRG+G" -#: flatcamGUI/FlatCAMGUI.py:113 flatcamGUI/FlatCAMGUI.py:3851 +#: flatcamGUI/FlatCAMGUI.py:114 flatcamGUI/FlatCAMGUI.py:4090 msgid "Open &Excellon ...\tCTRL+E" msgstr "&Excellon öffnen...\\STRG+E" -#: flatcamGUI/FlatCAMGUI.py:117 flatcamGUI/FlatCAMGUI.py:3855 +#: flatcamGUI/FlatCAMGUI.py:118 flatcamGUI/FlatCAMGUI.py:4095 msgid "Open G-&Code ..." msgstr "G-&Code öffnen..." -#: flatcamGUI/FlatCAMGUI.py:123 +#: flatcamGUI/FlatCAMGUI.py:124 msgid "Open Config ..." msgstr "Config öffnen..." -#: flatcamGUI/FlatCAMGUI.py:127 +#: flatcamGUI/FlatCAMGUI.py:128 msgid "Recent projects" msgstr "Letzte Projekte" -#: flatcamGUI/FlatCAMGUI.py:128 +#: flatcamGUI/FlatCAMGUI.py:129 msgid "Recent files" msgstr "Neueste Dateien" -#: flatcamGUI/FlatCAMGUI.py:134 +#: flatcamGUI/FlatCAMGUI.py:135 msgid "Scripting" msgstr "Scripting" -#: flatcamGUI/FlatCAMGUI.py:137 flatcamGUI/FlatCAMGUI.py:739 -#: flatcamGUI/FlatCAMGUI.py:2186 +#: flatcamGUI/FlatCAMGUI.py:138 flatcamGUI/FlatCAMGUI.py:803 +#: flatcamGUI/FlatCAMGUI.py:2374 msgid "New Script ..." msgstr "Neues Skript ..." -#: flatcamGUI/FlatCAMGUI.py:138 flatcamGUI/FlatCAMGUI.py:740 -#: flatcamGUI/FlatCAMGUI.py:2187 +#: flatcamGUI/FlatCAMGUI.py:139 flatcamGUI/FlatCAMGUI.py:805 +#: flatcamGUI/FlatCAMGUI.py:2376 msgid "Open Script ..." msgstr "Skript öffnen ..." -#: flatcamGUI/FlatCAMGUI.py:140 flatcamGUI/FlatCAMGUI.py:741 -#: flatcamGUI/FlatCAMGUI.py:2188 flatcamGUI/FlatCAMGUI.py:3826 +#: flatcamGUI/FlatCAMGUI.py:141 flatcamGUI/FlatCAMGUI.py:807 +#: flatcamGUI/FlatCAMGUI.py:2378 flatcamGUI/FlatCAMGUI.py:4064 msgid "Run Script ..." msgstr "Skript ausführen ..." -#: flatcamGUI/FlatCAMGUI.py:142 flatcamGUI/FlatCAMGUI.py:3828 +#: flatcamGUI/FlatCAMGUI.py:143 flatcamGUI/FlatCAMGUI.py:4066 msgid "" "Will run the opened Tcl Script thus\n" "enabling the automation of certain\n" @@ -5509,49 +5393,47 @@ msgstr "" "Ermöglichung der Automatisierung bestimmter\n" "Funktionen von FlatCAM." -#: flatcamGUI/FlatCAMGUI.py:155 +#: flatcamGUI/FlatCAMGUI.py:156 msgid "Import" msgstr "Importieren" -#: flatcamGUI/FlatCAMGUI.py:157 +#: flatcamGUI/FlatCAMGUI.py:158 msgid "&SVG as Geometry Object ..." msgstr "&SVG als Geometrieobjekt ..." -#: flatcamGUI/FlatCAMGUI.py:160 +#: flatcamGUI/FlatCAMGUI.py:161 msgid "&SVG as Gerber Object ..." msgstr "&SVG als Gerberobjekt ..." -#: flatcamGUI/FlatCAMGUI.py:165 +#: flatcamGUI/FlatCAMGUI.py:166 msgid "&DXF as Geometry Object ..." msgstr "&DXF als Geometrieobjekt ..." -#: flatcamGUI/FlatCAMGUI.py:168 +#: flatcamGUI/FlatCAMGUI.py:169 msgid "&DXF as Gerber Object ..." msgstr "&DXF als Gerberobjekt ..." -#: flatcamGUI/FlatCAMGUI.py:172 -#, fuzzy -#| msgid "&SVG as Geometry Object ..." +#: flatcamGUI/FlatCAMGUI.py:173 msgid "HPGL2 as Geometry Object ..." -msgstr "&SVG als Geometrieobjekt ..." +msgstr "HPGL2 als Geometrieobjekt ..." -#: flatcamGUI/FlatCAMGUI.py:177 +#: flatcamGUI/FlatCAMGUI.py:178 msgid "Export" msgstr "Exportieren" -#: flatcamGUI/FlatCAMGUI.py:180 +#: flatcamGUI/FlatCAMGUI.py:181 msgid "Export &SVG ..." msgstr "SVG exportieren ..." -#: flatcamGUI/FlatCAMGUI.py:183 +#: flatcamGUI/FlatCAMGUI.py:184 msgid "Export DXF ..." msgstr "DXF exportieren ..." -#: flatcamGUI/FlatCAMGUI.py:188 +#: flatcamGUI/FlatCAMGUI.py:189 msgid "Export &PNG ..." msgstr "PNG exportieren ..." -#: flatcamGUI/FlatCAMGUI.py:190 +#: flatcamGUI/FlatCAMGUI.py:191 msgid "" "Will export an image in PNG format,\n" "the saved image will contain the visual \n" @@ -5561,11 +5443,11 @@ msgstr "" "Das gespeicherte Bild enthält die\n" "Bildinformationen des FlatCAM-Plotbereiches." -#: flatcamGUI/FlatCAMGUI.py:199 +#: flatcamGUI/FlatCAMGUI.py:200 msgid "Export &Excellon ..." msgstr "Excellon exportieren ..." -#: flatcamGUI/FlatCAMGUI.py:201 +#: flatcamGUI/FlatCAMGUI.py:202 msgid "" "Will export an Excellon Object as Excellon file,\n" "the coordinates format, the file units and zeros\n" @@ -5575,11 +5457,11 @@ msgstr "" "Das Koordinatenformat, die Dateieinheiten und Nullen\n" "werden in den Einstellungen -> Excellon Export.Excellon eingestellt ..." -#: flatcamGUI/FlatCAMGUI.py:208 +#: flatcamGUI/FlatCAMGUI.py:209 msgid "Export &Gerber ..." msgstr "Gerber exportieren ..." -#: flatcamGUI/FlatCAMGUI.py:210 +#: flatcamGUI/FlatCAMGUI.py:211 msgid "" "Will export an Gerber Object as Gerber file,\n" "the coordinates format, the file units and zeros\n" @@ -5589,61 +5471,61 @@ msgstr "" "das Koordinatenformat, die Dateieinheiten und Nullen\n" "werden in den Einstellungen -> Gerber Export eingestellt." -#: flatcamGUI/FlatCAMGUI.py:226 +#: flatcamGUI/FlatCAMGUI.py:229 msgid "Backup" msgstr "Sicherungskopie" -#: flatcamGUI/FlatCAMGUI.py:230 +#: flatcamGUI/FlatCAMGUI.py:233 msgid "Import Preferences from file ..." msgstr "Einstellungen aus Datei importieren ..." -#: flatcamGUI/FlatCAMGUI.py:235 +#: flatcamGUI/FlatCAMGUI.py:238 msgid "Export Preferences to file ..." msgstr "Einstellungen in Datei exportieren ..." -#: flatcamGUI/FlatCAMGUI.py:241 flatcamGUI/FlatCAMGUI.py:612 -#: flatcamGUI/FlatCAMGUI.py:1109 +#: flatcamGUI/FlatCAMGUI.py:244 flatcamGUI/FlatCAMGUI.py:656 +#: flatcamGUI/FlatCAMGUI.py:1225 msgid "Save" msgstr "Speichern" -#: flatcamGUI/FlatCAMGUI.py:244 +#: flatcamGUI/FlatCAMGUI.py:248 msgid "&Save Project ..." msgstr "Projekt speichern ..." -#: flatcamGUI/FlatCAMGUI.py:249 +#: flatcamGUI/FlatCAMGUI.py:253 msgid "Save Project &As ...\tCTRL+S" msgstr "Projekt speichern als ...\\STRG+S" -#: flatcamGUI/FlatCAMGUI.py:254 +#: flatcamGUI/FlatCAMGUI.py:258 msgid "Save Project C&opy ..." msgstr "Projektkopie speichern ..." -#: flatcamGUI/FlatCAMGUI.py:268 +#: flatcamGUI/FlatCAMGUI.py:273 msgid "E&xit" msgstr "Ausgang" -#: flatcamGUI/FlatCAMGUI.py:276 flatcamGUI/FlatCAMGUI.py:609 -#: flatcamGUI/FlatCAMGUI.py:1968 +#: flatcamGUI/FlatCAMGUI.py:281 flatcamGUI/FlatCAMGUI.py:650 +#: flatcamGUI/FlatCAMGUI.py:2132 msgid "Edit" msgstr "Bearbeiten" -#: flatcamGUI/FlatCAMGUI.py:279 +#: flatcamGUI/FlatCAMGUI.py:285 msgid "Edit Object\tE" msgstr "Objekt bearbeiten\tE" -#: flatcamGUI/FlatCAMGUI.py:280 +#: flatcamGUI/FlatCAMGUI.py:287 msgid "Close Editor\tCTRL+S" msgstr "Schließen Sie Editor\tSTRG+S" -#: flatcamGUI/FlatCAMGUI.py:288 +#: flatcamGUI/FlatCAMGUI.py:296 msgid "Conversion" msgstr "Umwandlung" -#: flatcamGUI/FlatCAMGUI.py:290 +#: flatcamGUI/FlatCAMGUI.py:298 msgid "&Join Geo/Gerber/Exc -> Geo" msgstr "Geo/Gerber/Exc -> Geo zusammenfassen" -#: flatcamGUI/FlatCAMGUI.py:292 +#: flatcamGUI/FlatCAMGUI.py:300 msgid "" "Merge a selection of objects, which can be of type:\n" "- Gerber\n" @@ -5657,31 +5539,31 @@ msgstr "" "- Geometrie\n" "in ein neues Geometrieobjekt kombinieren." -#: flatcamGUI/FlatCAMGUI.py:299 +#: flatcamGUI/FlatCAMGUI.py:307 msgid "Join Excellon(s) -> Excellon" msgstr "Excellon(s) -> Excellon zusammenfassen" -#: flatcamGUI/FlatCAMGUI.py:301 +#: flatcamGUI/FlatCAMGUI.py:309 msgid "Merge a selection of Excellon objects into a new combo Excellon object." msgstr "" "Fassen Sie eine Auswahl von Excellon-Objekten in einem neuen Excellon-Objekt " "zusammen." -#: flatcamGUI/FlatCAMGUI.py:304 +#: flatcamGUI/FlatCAMGUI.py:312 msgid "Join Gerber(s) -> Gerber" msgstr "Gerber(s) -> Gerber zusammenfassen" -#: flatcamGUI/FlatCAMGUI.py:306 +#: flatcamGUI/FlatCAMGUI.py:314 msgid "Merge a selection of Gerber objects into a new combo Gerber object." msgstr "" "Mischen Sie eine Auswahl von Gerber-Objekten in ein neues Gerber-" "Kombinationsobjekt." -#: flatcamGUI/FlatCAMGUI.py:311 +#: flatcamGUI/FlatCAMGUI.py:319 msgid "Convert Single to MultiGeo" msgstr "Konvertieren Sie Single in MultiGeo" -#: flatcamGUI/FlatCAMGUI.py:313 +#: flatcamGUI/FlatCAMGUI.py:321 msgid "" "Will convert a Geometry object from single_geometry type\n" "to a multi_geometry type." @@ -5689,11 +5571,11 @@ msgstr "" "Konvertiert ein Geometrieobjekt vom Typ single_geometry\n" "zu einem multi_geometry-Typ." -#: flatcamGUI/FlatCAMGUI.py:317 +#: flatcamGUI/FlatCAMGUI.py:325 msgid "Convert Multi to SingleGeo" msgstr "Konvertieren Sie Multi in SingleGeo" -#: flatcamGUI/FlatCAMGUI.py:319 +#: flatcamGUI/FlatCAMGUI.py:327 msgid "" "Will convert a Geometry object from multi_geometry type\n" "to a single_geometry type." @@ -5701,712 +5583,704 @@ msgstr "" "Konvertiert ein Geometrieobjekt vom Typ multi_geometry\n" "zu einem single_geometry-Typ." -#: flatcamGUI/FlatCAMGUI.py:325 +#: flatcamGUI/FlatCAMGUI.py:334 msgid "Convert Any to Geo" msgstr "Konvertieren Sie Any zu Geo" -#: flatcamGUI/FlatCAMGUI.py:327 +#: flatcamGUI/FlatCAMGUI.py:337 msgid "Convert Any to Gerber" msgstr "Konvertieren Sie Any zu Gerber" -#: flatcamGUI/FlatCAMGUI.py:332 +#: flatcamGUI/FlatCAMGUI.py:343 msgid "&Copy\tCTRL+C" msgstr "Kopieren\tSTRG+C" -#: flatcamGUI/FlatCAMGUI.py:336 +#: flatcamGUI/FlatCAMGUI.py:348 msgid "&Delete\tDEL" msgstr "Löschen\tDEL" -#: flatcamGUI/FlatCAMGUI.py:340 +#: flatcamGUI/FlatCAMGUI.py:353 msgid "Se&t Origin\tO" msgstr "Ursprung festlegen\tO" -#: flatcamGUI/FlatCAMGUI.py:341 +#: flatcamGUI/FlatCAMGUI.py:355 msgid "Jump to Location\tJ" msgstr "Zum Ort springen\tJ" -#: flatcamGUI/FlatCAMGUI.py:346 +#: flatcamGUI/FlatCAMGUI.py:360 msgid "Toggle Units\tQ" msgstr "Einheiten umschalten\tQ" -#: flatcamGUI/FlatCAMGUI.py:347 +#: flatcamGUI/FlatCAMGUI.py:362 msgid "&Select All\tCTRL+A" msgstr "Alles auswählen\tSTRG+A" -#: flatcamGUI/FlatCAMGUI.py:351 +#: flatcamGUI/FlatCAMGUI.py:367 msgid "&Preferences\tSHIFT+P" msgstr "Einstellungen\tSHIFT+P" -#: flatcamGUI/FlatCAMGUI.py:357 flatcamTools/ToolProperties.py:153 +#: flatcamGUI/FlatCAMGUI.py:373 flatcamTools/ToolProperties.py:153 msgid "Options" msgstr "Optionen" -#: flatcamGUI/FlatCAMGUI.py:359 +#: flatcamGUI/FlatCAMGUI.py:375 msgid "&Rotate Selection\tSHIFT+(R)" msgstr "Auswahl drehen\tSHIFT+(R)" -#: flatcamGUI/FlatCAMGUI.py:364 +#: flatcamGUI/FlatCAMGUI.py:380 msgid "&Skew on X axis\tSHIFT+X" msgstr "Neigung auf der X-Achse\tSHIFT+X" -#: flatcamGUI/FlatCAMGUI.py:366 +#: flatcamGUI/FlatCAMGUI.py:382 msgid "S&kew on Y axis\tSHIFT+Y" msgstr "Neigung auf der Y-Achse\tSHIFT+Y" -#: flatcamGUI/FlatCAMGUI.py:371 +#: flatcamGUI/FlatCAMGUI.py:387 msgid "Flip on &X axis\tX" msgstr "X-Achse kippen\tX" -#: flatcamGUI/FlatCAMGUI.py:373 +#: flatcamGUI/FlatCAMGUI.py:389 msgid "Flip on &Y axis\tY" msgstr "Y-Achse kippen\tY" -#: flatcamGUI/FlatCAMGUI.py:378 +#: flatcamGUI/FlatCAMGUI.py:394 msgid "View source\tALT+S" msgstr "Quelltext anzeigen\tALT+S" -#: flatcamGUI/FlatCAMGUI.py:380 -#, fuzzy -#| msgid "Tool Data" +#: flatcamGUI/FlatCAMGUI.py:396 msgid "Tools DataBase\tCTRL+D" -msgstr "Werkzeugdaten" +msgstr "Werkzeugdatenbank\tSTRG+D" -#: flatcamGUI/FlatCAMGUI.py:387 flatcamGUI/FlatCAMGUI.py:1904 +#: flatcamGUI/FlatCAMGUI.py:403 flatcamGUI/FlatCAMGUI.py:2029 msgid "View" msgstr "Aussicht" -#: flatcamGUI/FlatCAMGUI.py:388 +#: flatcamGUI/FlatCAMGUI.py:405 msgid "Enable all plots\tALT+1" msgstr "Alle Diagramme aktivieren\tALT+1" -#: flatcamGUI/FlatCAMGUI.py:390 +#: flatcamGUI/FlatCAMGUI.py:407 msgid "Disable all plots\tALT+2" msgstr "Alle Diagramme deaktivieren\tALT+2" -#: flatcamGUI/FlatCAMGUI.py:392 +#: flatcamGUI/FlatCAMGUI.py:409 msgid "Disable non-selected\tALT+3" msgstr "Nicht ausgewählte Diagramme deaktivieren\tALT+3" -#: flatcamGUI/FlatCAMGUI.py:395 +#: flatcamGUI/FlatCAMGUI.py:413 msgid "&Zoom Fit\tV" msgstr "Passed zoomen\tV" -#: flatcamGUI/FlatCAMGUI.py:396 +#: flatcamGUI/FlatCAMGUI.py:415 msgid "&Zoom In\t=" msgstr "Hineinzoomen\t=" -#: flatcamGUI/FlatCAMGUI.py:397 +#: flatcamGUI/FlatCAMGUI.py:417 msgid "&Zoom Out\t-" msgstr "Rauszoomen\t-" -#: flatcamGUI/FlatCAMGUI.py:401 +#: flatcamGUI/FlatCAMGUI.py:422 msgid "Redraw All\tF5" msgstr "Alles neu zeichnen\tF5" -#: flatcamGUI/FlatCAMGUI.py:405 +#: flatcamGUI/FlatCAMGUI.py:426 msgid "Toggle Code Editor\tSHIFT+E" msgstr "Code-Editor umschalten\tSHIFT+E" -#: flatcamGUI/FlatCAMGUI.py:408 +#: flatcamGUI/FlatCAMGUI.py:429 msgid "&Toggle FullScreen\tALT+F10" msgstr "FullScreen umschalten\tALT+F10" -#: flatcamGUI/FlatCAMGUI.py:410 +#: flatcamGUI/FlatCAMGUI.py:431 msgid "&Toggle Plot Area\tCTRL+F10" msgstr "Plotbereich umschalten\tSTRG+F10" -#: flatcamGUI/FlatCAMGUI.py:412 +#: flatcamGUI/FlatCAMGUI.py:433 msgid "&Toggle Project/Sel/Tool\t`" msgstr "Projekt/Auswahl/Werkzeug umschalten\t`" -#: flatcamGUI/FlatCAMGUI.py:416 +#: flatcamGUI/FlatCAMGUI.py:437 msgid "&Toggle Grid Snap\tG" msgstr "Schaltet den Rasterfang ein\tG" -#: flatcamGUI/FlatCAMGUI.py:418 +#: flatcamGUI/FlatCAMGUI.py:439 msgid "&Toggle Grid Lines\tALT+G" msgstr "Gitterlinien umschalten\tALT+G" -#: flatcamGUI/FlatCAMGUI.py:419 +#: flatcamGUI/FlatCAMGUI.py:441 msgid "&Toggle Axis\tSHIFT+G" msgstr "Achse umschalten\tSHIFT+G" -#: flatcamGUI/FlatCAMGUI.py:422 +#: flatcamGUI/FlatCAMGUI.py:443 msgid "Toggle Workspace\tSHIFT+W" msgstr "Arbeitsbereich umschalten\tSHIFT+W" -#: flatcamGUI/FlatCAMGUI.py:427 +#: flatcamGUI/FlatCAMGUI.py:448 msgid "Objects" msgstr "Objekte" -#: flatcamGUI/FlatCAMGUI.py:440 +#: flatcamGUI/FlatCAMGUI.py:462 msgid "&Command Line\tS" msgstr "Befehlszeile\tS" -#: flatcamGUI/FlatCAMGUI.py:445 +#: flatcamGUI/FlatCAMGUI.py:467 msgid "Help" msgstr "Hilfe" -#: flatcamGUI/FlatCAMGUI.py:446 +#: flatcamGUI/FlatCAMGUI.py:469 msgid "Online Help\tF1" msgstr "Onlinehilfe\tF1" -#: flatcamGUI/FlatCAMGUI.py:454 +#: flatcamGUI/FlatCAMGUI.py:479 msgid "Report a bug" msgstr "Einen Fehler melden" -#: flatcamGUI/FlatCAMGUI.py:457 +#: flatcamGUI/FlatCAMGUI.py:482 msgid "Excellon Specification" msgstr "Excellon-Spezifikation" -#: flatcamGUI/FlatCAMGUI.py:459 +#: flatcamGUI/FlatCAMGUI.py:484 msgid "Gerber Specification" msgstr "Gerber-Spezifikation" -#: flatcamGUI/FlatCAMGUI.py:464 +#: flatcamGUI/FlatCAMGUI.py:489 msgid "Shortcuts List\tF3" msgstr "Tastenkürzel Liste\tF3" -#: flatcamGUI/FlatCAMGUI.py:465 +#: flatcamGUI/FlatCAMGUI.py:491 msgid "YouTube Channel\tF4" msgstr "Youtube Kanal\tF4" -#: flatcamGUI/FlatCAMGUI.py:476 +#: flatcamGUI/FlatCAMGUI.py:502 msgid "Add Circle\tO" msgstr "Kreis hinzufügen\tO" -#: flatcamGUI/FlatCAMGUI.py:478 +#: flatcamGUI/FlatCAMGUI.py:505 msgid "Add Arc\tA" msgstr "Bogen hinzufügen\tA" -#: flatcamGUI/FlatCAMGUI.py:481 +#: flatcamGUI/FlatCAMGUI.py:508 msgid "Add Rectangle\tR" msgstr "Rechteck hinzufügen\tR" -#: flatcamGUI/FlatCAMGUI.py:484 +#: flatcamGUI/FlatCAMGUI.py:511 msgid "Add Polygon\tN" msgstr "Polygon hinzufügen\tN" -#: flatcamGUI/FlatCAMGUI.py:486 +#: flatcamGUI/FlatCAMGUI.py:514 msgid "Add Path\tP" msgstr "Pfad hinzufügen\tP" -#: flatcamGUI/FlatCAMGUI.py:488 +#: flatcamGUI/FlatCAMGUI.py:517 msgid "Add Text\tT" msgstr "Text hinzufügen\tT" -#: flatcamGUI/FlatCAMGUI.py:491 +#: flatcamGUI/FlatCAMGUI.py:520 msgid "Polygon Union\tU" msgstr "Polygon-Vereinigung\tU" -#: flatcamGUI/FlatCAMGUI.py:493 +#: flatcamGUI/FlatCAMGUI.py:522 msgid "Polygon Intersection\tE" msgstr "Polygonschnitt\tE" -#: flatcamGUI/FlatCAMGUI.py:495 +#: flatcamGUI/FlatCAMGUI.py:524 msgid "Polygon Subtraction\tS" msgstr "Polygon-Subtraktion\tS" -#: flatcamGUI/FlatCAMGUI.py:499 +#: flatcamGUI/FlatCAMGUI.py:528 msgid "Cut Path\tX" msgstr "Pfad ausschneiden\tX" -#: flatcamGUI/FlatCAMGUI.py:501 +#: flatcamGUI/FlatCAMGUI.py:531 msgid "Copy Geom\tC" msgstr "Geometrie kopieren\tC" -#: flatcamGUI/FlatCAMGUI.py:503 +#: flatcamGUI/FlatCAMGUI.py:533 msgid "Delete Shape\tDEL" msgstr "Form löschen\tDEL" -#: flatcamGUI/FlatCAMGUI.py:506 flatcamGUI/FlatCAMGUI.py:588 +#: flatcamGUI/FlatCAMGUI.py:537 flatcamGUI/FlatCAMGUI.py:624 msgid "Move\tM" msgstr "Bewegung\tM" -#: flatcamGUI/FlatCAMGUI.py:508 +#: flatcamGUI/FlatCAMGUI.py:539 msgid "Buffer Tool\tB" msgstr "Pufferwerkzeug\tB" -#: flatcamGUI/FlatCAMGUI.py:511 +#: flatcamGUI/FlatCAMGUI.py:542 msgid "Paint Tool\tI" msgstr "Malenwerkzeug\tI" -#: flatcamGUI/FlatCAMGUI.py:514 +#: flatcamGUI/FlatCAMGUI.py:545 msgid "Transform Tool\tALT+R" msgstr "Transformationswerkzeug\tALT+R" -#: flatcamGUI/FlatCAMGUI.py:518 +#: flatcamGUI/FlatCAMGUI.py:549 msgid "Toggle Corner Snap\tK" msgstr "Eckfang umschalten\tK" -#: flatcamGUI/FlatCAMGUI.py:524 +#: flatcamGUI/FlatCAMGUI.py:555 msgid ">Excellon Editor<" msgstr ">Excellon Editor<" -#: flatcamGUI/FlatCAMGUI.py:528 +#: flatcamGUI/FlatCAMGUI.py:559 msgid "Add Drill Array\tA" msgstr "Bohrfeld hinzufügen\tA" -#: flatcamGUI/FlatCAMGUI.py:530 +#: flatcamGUI/FlatCAMGUI.py:561 msgid "Add Drill\tD" msgstr "Bohrer hinzufügen\tD" -#: flatcamGUI/FlatCAMGUI.py:534 +#: flatcamGUI/FlatCAMGUI.py:565 msgid "Add Slot Array\tQ" msgstr "Steckplatz-Array hinzufügen\tQ" -#: flatcamGUI/FlatCAMGUI.py:536 +#: flatcamGUI/FlatCAMGUI.py:567 msgid "Add Slot\tW" msgstr "Slot hinzufügen\tW" -#: flatcamGUI/FlatCAMGUI.py:540 +#: flatcamGUI/FlatCAMGUI.py:571 msgid "Resize Drill(S)\tR" msgstr "Bohrer verkleinern\tR" -#: flatcamGUI/FlatCAMGUI.py:542 flatcamGUI/FlatCAMGUI.py:583 +#: flatcamGUI/FlatCAMGUI.py:574 flatcamGUI/FlatCAMGUI.py:618 msgid "Copy\tC" msgstr "Kopieren\tC" -#: flatcamGUI/FlatCAMGUI.py:544 flatcamGUI/FlatCAMGUI.py:585 +#: flatcamGUI/FlatCAMGUI.py:576 flatcamGUI/FlatCAMGUI.py:620 msgid "Delete\tDEL" msgstr "Löschen\tDEL" -#: flatcamGUI/FlatCAMGUI.py:549 +#: flatcamGUI/FlatCAMGUI.py:581 msgid "Move Drill(s)\tM" msgstr "Bohrer verschieben\tM" -#: flatcamGUI/FlatCAMGUI.py:554 +#: flatcamGUI/FlatCAMGUI.py:586 msgid ">Gerber Editor<" msgstr ">Gerber-Editor<" -#: flatcamGUI/FlatCAMGUI.py:558 +#: flatcamGUI/FlatCAMGUI.py:590 msgid "Add Pad\tP" msgstr "Pad hinzufügen\tP" -#: flatcamGUI/FlatCAMGUI.py:560 +#: flatcamGUI/FlatCAMGUI.py:592 msgid "Add Pad Array\tA" msgstr "Pad-Array hinzufügen\tA" -#: flatcamGUI/FlatCAMGUI.py:562 +#: flatcamGUI/FlatCAMGUI.py:594 msgid "Add Track\tT" msgstr "Track hinzufügen\tA" -#: flatcamGUI/FlatCAMGUI.py:564 +#: flatcamGUI/FlatCAMGUI.py:596 msgid "Add Region\tN" msgstr "Region hinzufügen\tN" -#: flatcamGUI/FlatCAMGUI.py:568 +#: flatcamGUI/FlatCAMGUI.py:600 msgid "Poligonize\tALT+N" msgstr "Polygonisieren\tALT+N" -#: flatcamGUI/FlatCAMGUI.py:570 +#: flatcamGUI/FlatCAMGUI.py:602 msgid "Add SemiDisc\tE" msgstr "Halbschibe hinzufügen\tE" -#: flatcamGUI/FlatCAMGUI.py:571 +#: flatcamGUI/FlatCAMGUI.py:604 msgid "Add Disc\tD" msgstr "Schibe hinzufügen\tD" -#: flatcamGUI/FlatCAMGUI.py:573 +#: flatcamGUI/FlatCAMGUI.py:606 msgid "Buffer\tB" msgstr "Puffer\tB" -#: flatcamGUI/FlatCAMGUI.py:574 +#: flatcamGUI/FlatCAMGUI.py:608 msgid "Scale\tS" msgstr "Skalieren\tS" -#: flatcamGUI/FlatCAMGUI.py:576 +#: flatcamGUI/FlatCAMGUI.py:610 msgid "Mark Area\tALT+A" msgstr "Bereich markieren\tALT+A" -#: flatcamGUI/FlatCAMGUI.py:578 +#: flatcamGUI/FlatCAMGUI.py:612 msgid "Eraser\tCTRL+E" msgstr "Radiergummi\tSTRG+E" -#: flatcamGUI/FlatCAMGUI.py:580 +#: flatcamGUI/FlatCAMGUI.py:614 msgid "Transform\tALT+R" msgstr "Transformationswerkzeug\tSTRG+R" -#: flatcamGUI/FlatCAMGUI.py:603 +#: flatcamGUI/FlatCAMGUI.py:640 msgid "Enable Plot" msgstr "Diagramm aktivieren" -#: flatcamGUI/FlatCAMGUI.py:604 +#: flatcamGUI/FlatCAMGUI.py:642 msgid "Disable Plot" msgstr "Diagramm deaktivieren" -#: flatcamGUI/FlatCAMGUI.py:606 +#: flatcamGUI/FlatCAMGUI.py:645 msgid "Generate CNC" msgstr "CNC generieren" -#: flatcamGUI/FlatCAMGUI.py:607 +#: flatcamGUI/FlatCAMGUI.py:647 msgid "View Source" msgstr "Quelltext anzeigen" -#: flatcamGUI/FlatCAMGUI.py:615 flatcamGUI/FlatCAMGUI.py:1974 +#: flatcamGUI/FlatCAMGUI.py:660 flatcamGUI/FlatCAMGUI.py:2141 #: flatcamTools/ToolProperties.py:30 msgid "Properties" msgstr "Eigenschaften" -#: flatcamGUI/FlatCAMGUI.py:644 +#: flatcamGUI/FlatCAMGUI.py:689 msgid "File Toolbar" msgstr "Dateisymbolleiste" -#: flatcamGUI/FlatCAMGUI.py:648 +#: flatcamGUI/FlatCAMGUI.py:693 msgid "Edit Toolbar" msgstr "Symbolleiste bearbeiten" -#: flatcamGUI/FlatCAMGUI.py:652 +#: flatcamGUI/FlatCAMGUI.py:697 msgid "View Toolbar" msgstr "Symbolleiste anzeigen" -#: flatcamGUI/FlatCAMGUI.py:656 +#: flatcamGUI/FlatCAMGUI.py:701 msgid "Shell Toolbar" msgstr "Shell-Symbolleiste" -#: flatcamGUI/FlatCAMGUI.py:660 +#: flatcamGUI/FlatCAMGUI.py:705 msgid "Tools Toolbar" msgstr "Werkzeugleiste" -#: flatcamGUI/FlatCAMGUI.py:664 +#: flatcamGUI/FlatCAMGUI.py:709 msgid "Excellon Editor Toolbar" msgstr "Excellon Editor-Symbolleiste" -#: flatcamGUI/FlatCAMGUI.py:670 +#: flatcamGUI/FlatCAMGUI.py:715 msgid "Geometry Editor Toolbar" msgstr "Geometrie Editor-Symbolleiste" -#: flatcamGUI/FlatCAMGUI.py:674 +#: flatcamGUI/FlatCAMGUI.py:719 msgid "Gerber Editor Toolbar" msgstr "Gerber Editor-Symbolleiste" -#: flatcamGUI/FlatCAMGUI.py:678 +#: flatcamGUI/FlatCAMGUI.py:723 msgid "Grid Toolbar" msgstr "Raster-Symbolleiste" -#: flatcamGUI/FlatCAMGUI.py:699 flatcamGUI/FlatCAMGUI.py:2152 +#: flatcamGUI/FlatCAMGUI.py:746 flatcamGUI/FlatCAMGUI.py:2322 msgid "Open project" msgstr "Projekt öffnen" -#: flatcamGUI/FlatCAMGUI.py:700 flatcamGUI/FlatCAMGUI.py:2153 +#: flatcamGUI/FlatCAMGUI.py:748 flatcamGUI/FlatCAMGUI.py:2324 msgid "Save project" msgstr "Projekt speichern" -#: flatcamGUI/FlatCAMGUI.py:705 flatcamGUI/FlatCAMGUI.py:2156 +#: flatcamGUI/FlatCAMGUI.py:754 flatcamGUI/FlatCAMGUI.py:2328 msgid "New Blank Geometry" msgstr "Neue Geometrie erstellen" -#: flatcamGUI/FlatCAMGUI.py:706 flatcamGUI/FlatCAMGUI.py:2157 +#: flatcamGUI/FlatCAMGUI.py:756 flatcamGUI/FlatCAMGUI.py:2330 msgid "New Blank Gerber" msgstr "Neues Gerber erstellen" -#: flatcamGUI/FlatCAMGUI.py:707 flatcamGUI/FlatCAMGUI.py:2158 +#: flatcamGUI/FlatCAMGUI.py:758 flatcamGUI/FlatCAMGUI.py:2332 msgid "New Blank Excellon" msgstr "Neuen Excellon erstellen" -#: flatcamGUI/FlatCAMGUI.py:711 flatcamGUI/FlatCAMGUI.py:2162 +#: flatcamGUI/FlatCAMGUI.py:763 flatcamGUI/FlatCAMGUI.py:2338 msgid "Save Object and close the Editor" msgstr "Speichern Sie das Objekt und schließen Sie den Editor" -#: flatcamGUI/FlatCAMGUI.py:716 flatcamGUI/FlatCAMGUI.py:2167 +#: flatcamGUI/FlatCAMGUI.py:770 flatcamGUI/FlatCAMGUI.py:2345 msgid "&Delete" msgstr "&Löschen" -#: flatcamGUI/FlatCAMGUI.py:718 flatcamGUI/FlatCAMGUI.py:1466 -#: flatcamGUI/FlatCAMGUI.py:1665 flatcamGUI/FlatCAMGUI.py:2169 +#: flatcamGUI/FlatCAMGUI.py:773 flatcamGUI/FlatCAMGUI.py:1582 +#: flatcamGUI/FlatCAMGUI.py:1781 flatcamGUI/FlatCAMGUI.py:2348 #: flatcamTools/ToolDistance.py:30 flatcamTools/ToolDistance.py:160 msgid "Distance Tool" msgstr "Entfernungswerkzeug" -#: flatcamGUI/FlatCAMGUI.py:720 flatcamGUI/FlatCAMGUI.py:2171 +#: flatcamGUI/FlatCAMGUI.py:775 flatcamGUI/FlatCAMGUI.py:2350 msgid "Distance Min Tool" msgstr "Werkzeug für Mindestabstand" -#: flatcamGUI/FlatCAMGUI.py:721 flatcamGUI/FlatCAMGUI.py:1459 -#: flatcamGUI/FlatCAMGUI.py:2172 +#: flatcamGUI/FlatCAMGUI.py:777 flatcamGUI/FlatCAMGUI.py:1575 +#: flatcamGUI/FlatCAMGUI.py:2352 msgid "Set Origin" msgstr "Nullpunkt festlegen" -#: flatcamGUI/FlatCAMGUI.py:722 flatcamGUI/FlatCAMGUI.py:2173 +#: flatcamGUI/FlatCAMGUI.py:779 flatcamGUI/FlatCAMGUI.py:2354 msgid "Jump to Location" msgstr "Zur Position springen\tJ" -#: flatcamGUI/FlatCAMGUI.py:727 flatcamGUI/FlatCAMGUI.py:2176 +#: flatcamGUI/FlatCAMGUI.py:785 flatcamGUI/FlatCAMGUI.py:2358 msgid "&Replot" msgstr "Neuzeichnen &R" -#: flatcamGUI/FlatCAMGUI.py:728 flatcamGUI/FlatCAMGUI.py:2177 +#: flatcamGUI/FlatCAMGUI.py:787 flatcamGUI/FlatCAMGUI.py:2360 msgid "&Clear plot" msgstr "Darstellung löschen &C" -#: flatcamGUI/FlatCAMGUI.py:729 flatcamGUI/FlatCAMGUI.py:1462 -#: flatcamGUI/FlatCAMGUI.py:2178 +#: flatcamGUI/FlatCAMGUI.py:789 flatcamGUI/FlatCAMGUI.py:1578 +#: flatcamGUI/FlatCAMGUI.py:2362 msgid "Zoom In" msgstr "Hineinzoomen" -#: flatcamGUI/FlatCAMGUI.py:730 flatcamGUI/FlatCAMGUI.py:1462 -#: flatcamGUI/FlatCAMGUI.py:2179 +#: flatcamGUI/FlatCAMGUI.py:791 flatcamGUI/FlatCAMGUI.py:1578 +#: flatcamGUI/FlatCAMGUI.py:2364 msgid "Zoom Out" msgstr "Rauszoomen" -#: flatcamGUI/FlatCAMGUI.py:731 flatcamGUI/FlatCAMGUI.py:1461 -#: flatcamGUI/FlatCAMGUI.py:1905 flatcamGUI/FlatCAMGUI.py:2180 +#: flatcamGUI/FlatCAMGUI.py:793 flatcamGUI/FlatCAMGUI.py:1577 +#: flatcamGUI/FlatCAMGUI.py:2031 flatcamGUI/FlatCAMGUI.py:2366 msgid "Zoom Fit" msgstr "Passend zoomen" -#: flatcamGUI/FlatCAMGUI.py:738 flatcamGUI/FlatCAMGUI.py:2185 +#: flatcamGUI/FlatCAMGUI.py:801 flatcamGUI/FlatCAMGUI.py:2372 msgid "&Command Line" msgstr "Befehlszeile" -#: flatcamGUI/FlatCAMGUI.py:746 flatcamGUI/FlatCAMGUI.py:2191 +#: flatcamGUI/FlatCAMGUI.py:813 flatcamGUI/FlatCAMGUI.py:2382 msgid "2Sided Tool" msgstr "2Seitiges Werkzeug" -#: flatcamGUI/FlatCAMGUI.py:747 flatcamGUI/ObjectUI.py:577 +#: flatcamGUI/FlatCAMGUI.py:815 flatcamGUI/ObjectUI.py:588 #: flatcamTools/ToolCutOut.py:434 msgid "Cutout Tool" msgstr "Ausschnittwerkzeug" -#: flatcamGUI/FlatCAMGUI.py:748 flatcamGUI/FlatCAMGUI.py:2193 -#: flatcamGUI/ObjectUI.py:555 flatcamGUI/ObjectUI.py:1712 -#: flatcamTools/ToolNonCopperClear.py:637 +#: flatcamGUI/FlatCAMGUI.py:817 flatcamGUI/FlatCAMGUI.py:2386 +#: flatcamGUI/ObjectUI.py:566 flatcamGUI/ObjectUI.py:1751 +#: flatcamTools/ToolNonCopperClear.py:638 msgid "NCC Tool" msgstr "NCC Werkzeug" -#: flatcamGUI/FlatCAMGUI.py:752 flatcamGUI/FlatCAMGUI.py:2197 +#: flatcamGUI/FlatCAMGUI.py:823 flatcamGUI/FlatCAMGUI.py:2392 msgid "Panel Tool" msgstr "Platte Werkzeug" -#: flatcamGUI/FlatCAMGUI.py:753 flatcamGUI/FlatCAMGUI.py:2198 +#: flatcamGUI/FlatCAMGUI.py:825 flatcamGUI/FlatCAMGUI.py:2394 #: flatcamTools/ToolFilm.py:578 msgid "Film Tool" msgstr "Filmwerkzeug" -#: flatcamGUI/FlatCAMGUI.py:754 flatcamGUI/FlatCAMGUI.py:2200 +#: flatcamGUI/FlatCAMGUI.py:827 flatcamGUI/FlatCAMGUI.py:2397 #: flatcamTools/ToolSolderPaste.py:547 msgid "SolderPaste Tool" msgstr "Lötpaste-Werkzeug" -#: flatcamGUI/FlatCAMGUI.py:755 flatcamGUI/FlatCAMGUI.py:2201 +#: flatcamGUI/FlatCAMGUI.py:829 flatcamGUI/FlatCAMGUI.py:2399 #: flatcamTools/ToolSub.py:35 msgid "Subtract Tool" msgstr "Subtraktionswerkzeug" -#: flatcamGUI/FlatCAMGUI.py:756 flatcamTools/ToolRulesCheck.py:607 +#: flatcamGUI/FlatCAMGUI.py:831 flatcamTools/ToolRulesCheck.py:607 msgid "Rules Tool" msgstr "Regelwerkzeug" -#: flatcamGUI/FlatCAMGUI.py:757 flatcamGUI/FlatCAMGUI.py:1477 +#: flatcamGUI/FlatCAMGUI.py:833 flatcamGUI/FlatCAMGUI.py:1593 #: flatcamTools/ToolOptimal.py:34 flatcamTools/ToolOptimal.py:310 msgid "Optimal Tool" -msgstr "Optimales Werkzeug" +msgstr "Optimierungswerkzeug" -#: flatcamGUI/FlatCAMGUI.py:761 flatcamGUI/FlatCAMGUI.py:1475 -#: flatcamGUI/FlatCAMGUI.py:2206 +#: flatcamGUI/FlatCAMGUI.py:838 flatcamGUI/FlatCAMGUI.py:1591 +#: flatcamGUI/FlatCAMGUI.py:2404 msgid "Calculators Tool" msgstr "Rechnerwerkzeug" -#: flatcamGUI/FlatCAMGUI.py:763 flatcamGUI/FlatCAMGUI.py:1478 -#: flatcamGUI/FlatCAMGUI.py:2208 flatcamTools/ToolQRCode.py:43 +#: flatcamGUI/FlatCAMGUI.py:842 flatcamGUI/FlatCAMGUI.py:1594 +#: flatcamGUI/FlatCAMGUI.py:2408 flatcamTools/ToolQRCode.py:43 #: flatcamTools/ToolQRCode.py:382 -#, fuzzy -#| msgid "Rules Tool" msgid "QRCode Tool" -msgstr "Regelwerkzeug" +msgstr "QRCode Werkzeug" -#: flatcamGUI/FlatCAMGUI.py:765 flatcamGUI/FlatCAMGUI.py:2210 +# Really don't know +#: flatcamGUI/FlatCAMGUI.py:844 flatcamGUI/FlatCAMGUI.py:2410 #: flatcamTools/ToolCopperThieving.py:40 flatcamTools/ToolCopperThieving.py:566 -#, fuzzy -#| msgid "Non-Copper Clearing Tool" msgid "Copper Thieving Tool" -msgstr "Nicht-Kupfer-Räumwerkzeug" +msgstr "Copper Thieving Werkzeug" -#: flatcamGUI/FlatCAMGUI.py:767 flatcamGUI/FlatCAMGUI.py:1475 -#: flatcamGUI/FlatCAMGUI.py:2212 flatcamTools/ToolFiducials.py:33 +# Really don't know +#: flatcamGUI/FlatCAMGUI.py:847 flatcamGUI/FlatCAMGUI.py:1591 +#: flatcamGUI/FlatCAMGUI.py:2413 flatcamTools/ToolFiducials.py:33 #: flatcamTools/ToolFiducials.py:393 -#, fuzzy -#| msgid "Film Tool" msgid "Fiducials Tool" -msgstr "Filmwerkzeug" +msgstr "Passermarken-Tool" -#: flatcamGUI/FlatCAMGUI.py:768 flatcamGUI/FlatCAMGUI.py:2213 +#: flatcamGUI/FlatCAMGUI.py:849 flatcamGUI/FlatCAMGUI.py:2415 #: flatcamTools/ToolCalibration.py:37 flatcamTools/ToolCalibration.py:762 -#, fuzzy -#| msgid "Calculators Tool" msgid "Calibration Tool" -msgstr "Rechnerwerkzeug" +msgstr "Kalibierungswerkzeug" -#: flatcamGUI/FlatCAMGUI.py:773 flatcamGUI/FlatCAMGUI.py:792 -#: flatcamGUI/FlatCAMGUI.py:830 flatcamGUI/FlatCAMGUI.py:2216 -#: flatcamGUI/FlatCAMGUI.py:2271 +#: flatcamGUI/FlatCAMGUI.py:855 flatcamGUI/FlatCAMGUI.py:881 +#: flatcamGUI/FlatCAMGUI.py:933 flatcamGUI/FlatCAMGUI.py:2419 +#: flatcamGUI/FlatCAMGUI.py:2493 msgid "Select" msgstr "Wählen" -#: flatcamGUI/FlatCAMGUI.py:774 flatcamGUI/FlatCAMGUI.py:2217 +#: flatcamGUI/FlatCAMGUI.py:857 flatcamGUI/FlatCAMGUI.py:2421 msgid "Add Drill Hole" msgstr "Bohrloch hinzufügen" -#: flatcamGUI/FlatCAMGUI.py:776 flatcamGUI/FlatCAMGUI.py:2219 +#: flatcamGUI/FlatCAMGUI.py:859 flatcamGUI/FlatCAMGUI.py:2423 msgid "Add Drill Hole Array" msgstr "Bohrlochfeld hinzufügen" -#: flatcamGUI/FlatCAMGUI.py:777 flatcamGUI/FlatCAMGUI.py:1750 -#: flatcamGUI/FlatCAMGUI.py:1960 flatcamGUI/FlatCAMGUI.py:2221 +#: flatcamGUI/FlatCAMGUI.py:861 flatcamGUI/FlatCAMGUI.py:1866 +#: flatcamGUI/FlatCAMGUI.py:2119 flatcamGUI/FlatCAMGUI.py:2427 msgid "Add Slot" msgstr "Steckplatz hinzufügen" -#: flatcamGUI/FlatCAMGUI.py:779 flatcamGUI/FlatCAMGUI.py:1749 -#: flatcamGUI/FlatCAMGUI.py:1961 flatcamGUI/FlatCAMGUI.py:2223 +#: flatcamGUI/FlatCAMGUI.py:863 flatcamGUI/FlatCAMGUI.py:1865 +#: flatcamGUI/FlatCAMGUI.py:2121 flatcamGUI/FlatCAMGUI.py:2429 msgid "Add Slot Array" msgstr "Steckplatz-Array hinzufügen" -#: flatcamGUI/FlatCAMGUI.py:780 flatcamGUI/FlatCAMGUI.py:1963 -#: flatcamGUI/FlatCAMGUI.py:2220 +#: flatcamGUI/FlatCAMGUI.py:865 flatcamGUI/FlatCAMGUI.py:2124 +#: flatcamGUI/FlatCAMGUI.py:2425 msgid "Resize Drill" msgstr "Bohrergröße ändern" -#: flatcamGUI/FlatCAMGUI.py:783 flatcamGUI/FlatCAMGUI.py:2226 +#: flatcamGUI/FlatCAMGUI.py:869 flatcamGUI/FlatCAMGUI.py:2433 msgid "Copy Drill" msgstr "Bohrer kopieren" -#: flatcamGUI/FlatCAMGUI.py:784 flatcamGUI/FlatCAMGUI.py:2228 +#: flatcamGUI/FlatCAMGUI.py:871 flatcamGUI/FlatCAMGUI.py:2435 msgid "Delete Drill" msgstr "Bohrer löschen" -#: flatcamGUI/FlatCAMGUI.py:787 flatcamGUI/FlatCAMGUI.py:2231 +#: flatcamGUI/FlatCAMGUI.py:875 flatcamGUI/FlatCAMGUI.py:2439 msgid "Move Drill" msgstr "Bohrer bewegen" -#: flatcamGUI/FlatCAMGUI.py:793 flatcamGUI/FlatCAMGUI.py:2235 +#: flatcamGUI/FlatCAMGUI.py:883 flatcamGUI/FlatCAMGUI.py:2445 msgid "Add Circle" msgstr "Kreis hinzufügen" -#: flatcamGUI/FlatCAMGUI.py:794 flatcamGUI/FlatCAMGUI.py:2236 +#: flatcamGUI/FlatCAMGUI.py:885 flatcamGUI/FlatCAMGUI.py:2447 msgid "Add Arc" msgstr "Bogen hinzufügen" -#: flatcamGUI/FlatCAMGUI.py:796 flatcamGUI/FlatCAMGUI.py:2238 +#: flatcamGUI/FlatCAMGUI.py:887 flatcamGUI/FlatCAMGUI.py:2449 msgid "Add Rectangle" msgstr "Rechteck hinzufügen" -#: flatcamGUI/FlatCAMGUI.py:799 flatcamGUI/FlatCAMGUI.py:2241 +#: flatcamGUI/FlatCAMGUI.py:891 flatcamGUI/FlatCAMGUI.py:2453 msgid "Add Path" msgstr "Pfad hinzufügen" -#: flatcamGUI/FlatCAMGUI.py:800 flatcamGUI/FlatCAMGUI.py:2243 +#: flatcamGUI/FlatCAMGUI.py:893 flatcamGUI/FlatCAMGUI.py:2455 msgid "Add Polygon" msgstr "Polygon hinzufügen" -#: flatcamGUI/FlatCAMGUI.py:802 flatcamGUI/FlatCAMGUI.py:2245 +#: flatcamGUI/FlatCAMGUI.py:896 flatcamGUI/FlatCAMGUI.py:2458 msgid "Add Text" msgstr "Text hinzufügen" -#: flatcamGUI/FlatCAMGUI.py:803 flatcamGUI/FlatCAMGUI.py:2246 +#: flatcamGUI/FlatCAMGUI.py:898 flatcamGUI/FlatCAMGUI.py:2460 msgid "Add Buffer" msgstr "Puffer hinzufügen" -#: flatcamGUI/FlatCAMGUI.py:804 flatcamGUI/FlatCAMGUI.py:2247 +#: flatcamGUI/FlatCAMGUI.py:900 flatcamGUI/FlatCAMGUI.py:2462 msgid "Paint Shape" msgstr "Malen Form" -#: flatcamGUI/FlatCAMGUI.py:805 flatcamGUI/FlatCAMGUI.py:847 -#: flatcamGUI/FlatCAMGUI.py:1922 flatcamGUI/FlatCAMGUI.py:1950 -#: flatcamGUI/FlatCAMGUI.py:2248 flatcamGUI/FlatCAMGUI.py:2287 +#: flatcamGUI/FlatCAMGUI.py:902 flatcamGUI/FlatCAMGUI.py:959 +#: flatcamGUI/FlatCAMGUI.py:2060 flatcamGUI/FlatCAMGUI.py:2105 +#: flatcamGUI/FlatCAMGUI.py:2464 flatcamGUI/FlatCAMGUI.py:2518 msgid "Eraser" msgstr "Radiergummi" -#: flatcamGUI/FlatCAMGUI.py:808 flatcamGUI/FlatCAMGUI.py:2251 +#: flatcamGUI/FlatCAMGUI.py:906 flatcamGUI/FlatCAMGUI.py:2468 msgid "Polygon Union" msgstr "Polygon-Vereinigung" -#: flatcamGUI/FlatCAMGUI.py:809 flatcamGUI/FlatCAMGUI.py:2252 +#: flatcamGUI/FlatCAMGUI.py:908 flatcamGUI/FlatCAMGUI.py:2470 msgid "Polygon Explode" msgstr "Polygon explodieren" -#: flatcamGUI/FlatCAMGUI.py:812 flatcamGUI/FlatCAMGUI.py:2255 +#: flatcamGUI/FlatCAMGUI.py:911 flatcamGUI/FlatCAMGUI.py:2473 msgid "Polygon Intersection" msgstr "Polygonschnitt" -#: flatcamGUI/FlatCAMGUI.py:814 flatcamGUI/FlatCAMGUI.py:2257 +#: flatcamGUI/FlatCAMGUI.py:913 flatcamGUI/FlatCAMGUI.py:2475 msgid "Polygon Subtraction" msgstr "Polygon-Subtraktion" -#: flatcamGUI/FlatCAMGUI.py:817 flatcamGUI/FlatCAMGUI.py:2260 +#: flatcamGUI/FlatCAMGUI.py:917 flatcamGUI/FlatCAMGUI.py:2479 msgid "Cut Path" msgstr "Pfad ausschneiden" -#: flatcamGUI/FlatCAMGUI.py:818 +#: flatcamGUI/FlatCAMGUI.py:919 msgid "Copy Shape(s)" msgstr "Form kopieren" -#: flatcamGUI/FlatCAMGUI.py:821 +#: flatcamGUI/FlatCAMGUI.py:922 msgid "Delete Shape '-'" msgstr "Form löschen" -#: flatcamGUI/FlatCAMGUI.py:823 flatcamGUI/FlatCAMGUI.py:854 -#: flatcamGUI/FlatCAMGUI.py:1929 flatcamGUI/FlatCAMGUI.py:1954 -#: flatcamGUI/FlatCAMGUI.py:2265 flatcamGUI/FlatCAMGUI.py:2294 +#: flatcamGUI/FlatCAMGUI.py:924 flatcamGUI/FlatCAMGUI.py:967 +#: flatcamGUI/FlatCAMGUI.py:2072 flatcamGUI/FlatCAMGUI.py:2109 +#: flatcamGUI/FlatCAMGUI.py:2485 flatcamGUI/FlatCAMGUI.py:2526 msgid "Transformations" msgstr "Transformationen" -#: flatcamGUI/FlatCAMGUI.py:825 +#: flatcamGUI/FlatCAMGUI.py:927 msgid "Move Objects " msgstr "Objekte verschieben " -#: flatcamGUI/FlatCAMGUI.py:831 flatcamGUI/FlatCAMGUI.py:1869 -#: flatcamGUI/FlatCAMGUI.py:2272 +#: flatcamGUI/FlatCAMGUI.py:935 flatcamGUI/FlatCAMGUI.py:1985 +#: flatcamGUI/FlatCAMGUI.py:2495 msgid "Add Pad" msgstr "Pad hinzufügen" -#: flatcamGUI/FlatCAMGUI.py:833 flatcamGUI/FlatCAMGUI.py:1870 -#: flatcamGUI/FlatCAMGUI.py:2274 +#: flatcamGUI/FlatCAMGUI.py:939 flatcamGUI/FlatCAMGUI.py:1986 +#: flatcamGUI/FlatCAMGUI.py:2499 msgid "Add Track" msgstr "Track hinzufügen" -#: flatcamGUI/FlatCAMGUI.py:834 flatcamGUI/FlatCAMGUI.py:1869 -#: flatcamGUI/FlatCAMGUI.py:2275 +#: flatcamGUI/FlatCAMGUI.py:941 flatcamGUI/FlatCAMGUI.py:1985 +#: flatcamGUI/FlatCAMGUI.py:2501 msgid "Add Region" msgstr "Region hinzufügen" -#: flatcamGUI/FlatCAMGUI.py:836 flatcamGUI/FlatCAMGUI.py:1942 -#: flatcamGUI/FlatCAMGUI.py:2277 +#: flatcamGUI/FlatCAMGUI.py:943 flatcamGUI/FlatCAMGUI.py:2091 +#: flatcamGUI/FlatCAMGUI.py:2503 msgid "Poligonize" msgstr "Polygonisieren" -#: flatcamGUI/FlatCAMGUI.py:838 flatcamGUI/FlatCAMGUI.py:1943 -#: flatcamGUI/FlatCAMGUI.py:2279 +#: flatcamGUI/FlatCAMGUI.py:946 flatcamGUI/FlatCAMGUI.py:2093 +#: flatcamGUI/FlatCAMGUI.py:2506 msgid "SemiDisc" msgstr "Halbscheibe" -#: flatcamGUI/FlatCAMGUI.py:839 flatcamGUI/FlatCAMGUI.py:1944 -#: flatcamGUI/FlatCAMGUI.py:2280 +#: flatcamGUI/FlatCAMGUI.py:948 flatcamGUI/FlatCAMGUI.py:2095 +#: flatcamGUI/FlatCAMGUI.py:2508 msgid "Disc" msgstr "Scheibe" -#: flatcamGUI/FlatCAMGUI.py:845 flatcamGUI/FlatCAMGUI.py:1949 -#: flatcamGUI/FlatCAMGUI.py:2286 +#: flatcamGUI/FlatCAMGUI.py:956 flatcamGUI/FlatCAMGUI.py:2103 +#: flatcamGUI/FlatCAMGUI.py:2516 msgid "Mark Area" msgstr "Bereich markieren" -#: flatcamGUI/FlatCAMGUI.py:856 flatcamGUI/FlatCAMGUI.py:1869 -#: flatcamGUI/FlatCAMGUI.py:1932 flatcamGUI/FlatCAMGUI.py:1973 -#: flatcamGUI/FlatCAMGUI.py:2296 flatcamTools/ToolMove.py:28 +#: flatcamGUI/FlatCAMGUI.py:970 flatcamGUI/FlatCAMGUI.py:1985 +#: flatcamGUI/FlatCAMGUI.py:2076 flatcamGUI/FlatCAMGUI.py:2139 +#: flatcamGUI/FlatCAMGUI.py:2529 flatcamTools/ToolMove.py:28 msgid "Move" msgstr "Bewegung" -#: flatcamGUI/FlatCAMGUI.py:863 flatcamGUI/FlatCAMGUI.py:2302 +#: flatcamGUI/FlatCAMGUI.py:978 flatcamGUI/FlatCAMGUI.py:2536 msgid "Snap to grid" msgstr "Am Raster ausrichten" -#: flatcamGUI/FlatCAMGUI.py:866 flatcamGUI/FlatCAMGUI.py:2305 +#: flatcamGUI/FlatCAMGUI.py:981 flatcamGUI/FlatCAMGUI.py:2539 msgid "Grid X snapping distance" msgstr "Raster X Fangdistanz" -#: flatcamGUI/FlatCAMGUI.py:871 flatcamGUI/FlatCAMGUI.py:2310 +#: flatcamGUI/FlatCAMGUI.py:986 flatcamGUI/FlatCAMGUI.py:2544 msgid "Grid Y snapping distance" msgstr "Raster Y Fangdistanz" -#: flatcamGUI/FlatCAMGUI.py:877 flatcamGUI/FlatCAMGUI.py:2316 +#: flatcamGUI/FlatCAMGUI.py:992 flatcamGUI/FlatCAMGUI.py:2550 msgid "" "When active, value on Grid_X\n" "is copied to the Grid_Y value." @@ -6414,63 +6288,63 @@ msgstr "" "Wenn aktiv, Wert auf Grid_X\n" "wird in den Wert von Grid_Y kopiert." -#: flatcamGUI/FlatCAMGUI.py:883 flatcamGUI/FlatCAMGUI.py:2322 +#: flatcamGUI/FlatCAMGUI.py:999 flatcamGUI/FlatCAMGUI.py:2557 msgid "Snap to corner" msgstr "In der Ecke ausrichten" -#: flatcamGUI/FlatCAMGUI.py:887 flatcamGUI/FlatCAMGUI.py:2326 +#: flatcamGUI/FlatCAMGUI.py:1003 flatcamGUI/FlatCAMGUI.py:2561 #: flatcamGUI/PreferencesUI.py:348 msgid "Max. magnet distance" msgstr "Max. Magnetabstand" -#: flatcamGUI/FlatCAMGUI.py:921 +#: flatcamGUI/FlatCAMGUI.py:1037 msgid "Selected" msgstr "Ausgewählt" -#: flatcamGUI/FlatCAMGUI.py:948 flatcamGUI/FlatCAMGUI.py:956 +#: flatcamGUI/FlatCAMGUI.py:1064 flatcamGUI/FlatCAMGUI.py:1072 msgid "Plot Area" msgstr "Grundstücksfläche" -#: flatcamGUI/FlatCAMGUI.py:983 +#: flatcamGUI/FlatCAMGUI.py:1099 msgid "General" msgstr "Allgemeines" -#: flatcamGUI/FlatCAMGUI.py:998 flatcamTools/ToolCopperThieving.py:74 +#: flatcamGUI/FlatCAMGUI.py:1114 flatcamTools/ToolCopperThieving.py:74 #: flatcamTools/ToolDblSided.py:57 flatcamTools/ToolOptimal.py:71 #: flatcamTools/ToolQRCode.py:77 msgid "GERBER" msgstr "GERBER" -#: flatcamGUI/FlatCAMGUI.py:1008 flatcamTools/ToolDblSided.py:85 +#: flatcamGUI/FlatCAMGUI.py:1124 flatcamTools/ToolDblSided.py:85 msgid "EXCELLON" msgstr "EXCELLON" -#: flatcamGUI/FlatCAMGUI.py:1018 flatcamTools/ToolDblSided.py:113 +#: flatcamGUI/FlatCAMGUI.py:1134 flatcamTools/ToolDblSided.py:113 msgid "GEOMETRY" msgstr "GEOMETRY" -#: flatcamGUI/FlatCAMGUI.py:1028 +#: flatcamGUI/FlatCAMGUI.py:1144 msgid "CNC-JOB" msgstr "CNC-Auftrag" -#: flatcamGUI/FlatCAMGUI.py:1037 flatcamGUI/ObjectUI.py:544 -#: flatcamGUI/ObjectUI.py:1687 +#: flatcamGUI/FlatCAMGUI.py:1153 flatcamGUI/ObjectUI.py:555 +#: flatcamGUI/ObjectUI.py:1726 msgid "TOOLS" msgstr "WERKZEUGE" -#: flatcamGUI/FlatCAMGUI.py:1046 +#: flatcamGUI/FlatCAMGUI.py:1162 msgid "TOOLS 2" msgstr "WERKZEUGE 2" -#: flatcamGUI/FlatCAMGUI.py:1056 +#: flatcamGUI/FlatCAMGUI.py:1172 msgid "UTILITIES" msgstr "NUTZEN" -#: flatcamGUI/FlatCAMGUI.py:1073 +#: flatcamGUI/FlatCAMGUI.py:1189 msgid "Import Preferences" msgstr "Importeinstellungen" -#: flatcamGUI/FlatCAMGUI.py:1076 +#: flatcamGUI/FlatCAMGUI.py:1192 msgid "" "Import a full set of FlatCAM settings from a file\n" "previously saved on HDD.\n" @@ -6485,11 +6359,11 @@ msgstr "" "FlatCAM speichert automatisch eine 'factory_defaults'-Datei\n" "beim ersten Start. Löschen Sie diese Datei nicht." -#: flatcamGUI/FlatCAMGUI.py:1083 +#: flatcamGUI/FlatCAMGUI.py:1199 msgid "Export Preferences" msgstr "Exporteinstellungen" -#: flatcamGUI/FlatCAMGUI.py:1086 +#: flatcamGUI/FlatCAMGUI.py:1202 msgid "" "Export a full set of FlatCAM settings in a file\n" "that is saved on HDD." @@ -6498,24 +6372,24 @@ msgstr "" "Datei\n" "das ist auf der Festplatte gespeichert." -#: flatcamGUI/FlatCAMGUI.py:1091 +#: flatcamGUI/FlatCAMGUI.py:1207 msgid "Open Pref Folder" msgstr "Öffnen Sie den Einstellungsordner" -#: flatcamGUI/FlatCAMGUI.py:1094 +#: flatcamGUI/FlatCAMGUI.py:1210 msgid "Open the folder where FlatCAM save the preferences files." msgstr "" "Öffnen Sie den Ordner, in dem FlatCAM die Voreinstellungsdateien speichert." -#: flatcamGUI/FlatCAMGUI.py:1102 +#: flatcamGUI/FlatCAMGUI.py:1218 msgid "Apply" -msgstr "" +msgstr "Anwenden" -#: flatcamGUI/FlatCAMGUI.py:1105 +#: flatcamGUI/FlatCAMGUI.py:1221 msgid "Apply the current preferences without saving to a file." -msgstr "" +msgstr "Anwenden ohne zu speichern." -#: flatcamGUI/FlatCAMGUI.py:1112 +#: flatcamGUI/FlatCAMGUI.py:1228 msgid "" "Save the current settings in the 'current_defaults' file\n" "which is the file storing the working default preferences." @@ -6523,534 +6397,532 @@ msgstr "" "Speichern Sie die aktuellen Einstellungen in der Datei 'current_defaults'\n" "Dies ist die Datei, in der die Arbeitseinstellungen gespeichert sind." -#: flatcamGUI/FlatCAMGUI.py:1120 +#: flatcamGUI/FlatCAMGUI.py:1236 msgid "Will not save the changes and will close the preferences window." -msgstr "" +msgstr "Einstellungen werden geschlossen ohne die Änderungen zu speichern." -#: flatcamGUI/FlatCAMGUI.py:1456 +#: flatcamGUI/FlatCAMGUI.py:1572 msgid "SHOW SHORTCUT LIST" msgstr "Verknüpfungsliste anzeigen" -#: flatcamGUI/FlatCAMGUI.py:1456 +#: flatcamGUI/FlatCAMGUI.py:1572 msgid "Switch to Project Tab" msgstr "Wechseln Sie zur Registerkarte Projekt" -#: flatcamGUI/FlatCAMGUI.py:1456 +#: flatcamGUI/FlatCAMGUI.py:1572 msgid "Switch to Selected Tab" msgstr "Wechseln Sie zur ausgewählten Registerkarte" -#: flatcamGUI/FlatCAMGUI.py:1457 +#: flatcamGUI/FlatCAMGUI.py:1573 msgid "Switch to Tool Tab" msgstr "Wechseln Sie zur Werkzeugregisterkarte" -#: flatcamGUI/FlatCAMGUI.py:1458 +#: flatcamGUI/FlatCAMGUI.py:1574 msgid "New Gerber" msgstr "Neuer Gerber" -#: flatcamGUI/FlatCAMGUI.py:1458 +#: flatcamGUI/FlatCAMGUI.py:1574 msgid "Edit Object (if selected)" msgstr "Objekt bearbeiten (falls ausgewählt)" -#: flatcamGUI/FlatCAMGUI.py:1458 +#: flatcamGUI/FlatCAMGUI.py:1574 msgid "Jump to Coordinates" msgstr "Springe zu den Koordinaten" -#: flatcamGUI/FlatCAMGUI.py:1459 +#: flatcamGUI/FlatCAMGUI.py:1575 msgid "New Excellon" msgstr "Neuer Excellon" -#: flatcamGUI/FlatCAMGUI.py:1459 +#: flatcamGUI/FlatCAMGUI.py:1575 msgid "Move Obj" msgstr "Objekt verschieben" -#: flatcamGUI/FlatCAMGUI.py:1459 +#: flatcamGUI/FlatCAMGUI.py:1575 msgid "New Geometry" msgstr "Neue Geometrie" -#: flatcamGUI/FlatCAMGUI.py:1459 +#: flatcamGUI/FlatCAMGUI.py:1575 msgid "Change Units" msgstr "Einheiten ändern" -#: flatcamGUI/FlatCAMGUI.py:1460 +#: flatcamGUI/FlatCAMGUI.py:1576 msgid "Open Properties Tool" msgstr "Öffnen Sie das Eigenschaften-Tool" -#: flatcamGUI/FlatCAMGUI.py:1460 +#: flatcamGUI/FlatCAMGUI.py:1576 msgid "Rotate by 90 degree CW" msgstr "Um 90 Grad im Uhrzeigersinn drehen" -#: flatcamGUI/FlatCAMGUI.py:1460 +#: flatcamGUI/FlatCAMGUI.py:1576 msgid "Shell Toggle" msgstr "Shell umschalten" -#: flatcamGUI/FlatCAMGUI.py:1461 +#: flatcamGUI/FlatCAMGUI.py:1577 msgid "" "Add a Tool (when in Geometry Selected Tab or in Tools NCC or Tools Paint)" msgstr "" "Hinzufügen eines Werkzeugs (auf der Registerkarte \"Geometrie ausgewählt\" " "oder unter \"Werkzeuge\", \"NCC\" oder \"Werkzeuge\", \"Malen\")" -#: flatcamGUI/FlatCAMGUI.py:1462 +#: flatcamGUI/FlatCAMGUI.py:1578 msgid "Flip on X_axis" msgstr "Auf X-Achse spiegeln" -#: flatcamGUI/FlatCAMGUI.py:1462 +#: flatcamGUI/FlatCAMGUI.py:1578 msgid "Flip on Y_axis" msgstr "Auf Y-Achse spiegeln" -#: flatcamGUI/FlatCAMGUI.py:1465 +#: flatcamGUI/FlatCAMGUI.py:1581 msgid "Copy Obj" msgstr "Objekt kopieren" -#: flatcamGUI/FlatCAMGUI.py:1465 -#, fuzzy -#| msgid "Tool Data" +#: flatcamGUI/FlatCAMGUI.py:1581 msgid "Open Tools Database" -msgstr "Werkzeugdaten" +msgstr "Werkzeugdatenbank öffnen" -#: flatcamGUI/FlatCAMGUI.py:1466 +#: flatcamGUI/FlatCAMGUI.py:1582 msgid "Open Excellon File" msgstr "Öffnen Sie die Excellon-Datei" -#: flatcamGUI/FlatCAMGUI.py:1466 +#: flatcamGUI/FlatCAMGUI.py:1582 msgid "Open Gerber File" msgstr "Öffnen Sie die Gerber-Datei" -#: flatcamGUI/FlatCAMGUI.py:1466 +#: flatcamGUI/FlatCAMGUI.py:1582 msgid "New Project" msgstr "Neues Projekt" -#: flatcamGUI/FlatCAMGUI.py:1467 flatcamTools/ToolPDF.py:42 +#: flatcamGUI/FlatCAMGUI.py:1583 flatcamTools/ToolPDF.py:42 msgid "PDF Import Tool" msgstr "PDF-Importwerkzeug" -#: flatcamGUI/FlatCAMGUI.py:1467 +#: flatcamGUI/FlatCAMGUI.py:1583 msgid "Save Project As" msgstr "Projekt speichern als" -#: flatcamGUI/FlatCAMGUI.py:1467 +#: flatcamGUI/FlatCAMGUI.py:1583 msgid "Toggle Plot Area" msgstr "Zeichenbereich umschalten0" -#: flatcamGUI/FlatCAMGUI.py:1470 +#: flatcamGUI/FlatCAMGUI.py:1586 msgid "Copy Obj_Name" msgstr "Kopieren Sie den Namen des Objekts" -#: flatcamGUI/FlatCAMGUI.py:1471 +#: flatcamGUI/FlatCAMGUI.py:1587 msgid "Toggle Code Editor" msgstr "Code-Editor umschalten" -#: flatcamGUI/FlatCAMGUI.py:1471 +#: flatcamGUI/FlatCAMGUI.py:1587 msgid "Toggle the axis" msgstr "Achse umschalten" -#: flatcamGUI/FlatCAMGUI.py:1471 flatcamGUI/FlatCAMGUI.py:1663 -#: flatcamGUI/FlatCAMGUI.py:1750 flatcamGUI/FlatCAMGUI.py:1872 +#: flatcamGUI/FlatCAMGUI.py:1587 flatcamGUI/FlatCAMGUI.py:1779 +#: flatcamGUI/FlatCAMGUI.py:1866 flatcamGUI/FlatCAMGUI.py:1988 msgid "Distance Minimum Tool" msgstr "Mindestabstand Werkzeug" -#: flatcamGUI/FlatCAMGUI.py:1471 +#: flatcamGUI/FlatCAMGUI.py:1587 msgid "Open Preferences Window" msgstr "Öffnen Sie das Einstellungsfenster" -#: flatcamGUI/FlatCAMGUI.py:1472 +#: flatcamGUI/FlatCAMGUI.py:1588 msgid "Rotate by 90 degree CCW" msgstr "Um 90 Grad gegen den Uhrzeigersinn drehen" -#: flatcamGUI/FlatCAMGUI.py:1472 +#: flatcamGUI/FlatCAMGUI.py:1588 msgid "Run a Script" msgstr "Führen Sie ein Skript aus" -#: flatcamGUI/FlatCAMGUI.py:1472 +#: flatcamGUI/FlatCAMGUI.py:1588 msgid "Toggle the workspace" msgstr "Arbeitsbereich umschalten" -#: flatcamGUI/FlatCAMGUI.py:1472 +#: flatcamGUI/FlatCAMGUI.py:1588 msgid "Skew on X axis" msgstr "Neigung auf der X-Achse" -#: flatcamGUI/FlatCAMGUI.py:1473 +#: flatcamGUI/FlatCAMGUI.py:1589 msgid "Skew on Y axis" msgstr "Neigung auf der Y-Achse" -#: flatcamGUI/FlatCAMGUI.py:1475 +#: flatcamGUI/FlatCAMGUI.py:1591 msgid "2-Sided PCB Tool" msgstr "2-seitiges PCB Werkzeug" -#: flatcamGUI/FlatCAMGUI.py:1475 +#: flatcamGUI/FlatCAMGUI.py:1591 msgid "Transformations Tool" msgstr "Transformations-Tool" -#: flatcamGUI/FlatCAMGUI.py:1476 +#: flatcamGUI/FlatCAMGUI.py:1592 msgid "Solder Paste Dispensing Tool" msgstr "Lotpasten-Dosierwerkzeug" -#: flatcamGUI/FlatCAMGUI.py:1477 +#: flatcamGUI/FlatCAMGUI.py:1593 msgid "Film PCB Tool" msgstr "Film PCB Werkzeug" -#: flatcamGUI/FlatCAMGUI.py:1477 +#: flatcamGUI/FlatCAMGUI.py:1593 msgid "Non-Copper Clearing Tool" msgstr "Nicht-Kupfer-Räumwerkzeug" -#: flatcamGUI/FlatCAMGUI.py:1478 +#: flatcamGUI/FlatCAMGUI.py:1594 msgid "Paint Area Tool" msgstr "Malbereichswerkzeug" -#: flatcamGUI/FlatCAMGUI.py:1478 +#: flatcamGUI/FlatCAMGUI.py:1594 msgid "Rules Check Tool" msgstr "Regelprüfwerkzeug" -#: flatcamGUI/FlatCAMGUI.py:1479 +#: flatcamGUI/FlatCAMGUI.py:1595 msgid "View File Source" msgstr "Dateiquelle anzeigen" -#: flatcamGUI/FlatCAMGUI.py:1480 +#: flatcamGUI/FlatCAMGUI.py:1596 msgid "Cutout PCB Tool" msgstr "Ausschnitt PCB Tool" -#: flatcamGUI/FlatCAMGUI.py:1480 +#: flatcamGUI/FlatCAMGUI.py:1596 msgid "Enable all Plots" msgstr "Alle Zeichnungen aktivieren" -#: flatcamGUI/FlatCAMGUI.py:1480 +#: flatcamGUI/FlatCAMGUI.py:1596 msgid "Disable all Plots" msgstr "Alle Zeichnungen deaktivieren" -#: flatcamGUI/FlatCAMGUI.py:1480 +#: flatcamGUI/FlatCAMGUI.py:1596 msgid "Disable Non-selected Plots" msgstr "Nicht ausgewählte Zeichnungen deaktiv" -#: flatcamGUI/FlatCAMGUI.py:1481 +#: flatcamGUI/FlatCAMGUI.py:1597 msgid "Toggle Full Screen" msgstr "Vollbild umschalten" -#: flatcamGUI/FlatCAMGUI.py:1484 +#: flatcamGUI/FlatCAMGUI.py:1600 msgid "Abort current task (gracefully)" msgstr "Aktuelle Aufgabe abbrechen (ordnungsgemäß)" -#: flatcamGUI/FlatCAMGUI.py:1487 +#: flatcamGUI/FlatCAMGUI.py:1603 msgid "Open Online Manual" msgstr "Online-Handbuch öffnen" -#: flatcamGUI/FlatCAMGUI.py:1488 +#: flatcamGUI/FlatCAMGUI.py:1604 msgid "Open Online Tutorials" msgstr "Öffnen Sie Online-Tutorials" -#: flatcamGUI/FlatCAMGUI.py:1488 +#: flatcamGUI/FlatCAMGUI.py:1604 msgid "Refresh Plots" msgstr "Zeichnungen aktualisieren" -#: flatcamGUI/FlatCAMGUI.py:1488 flatcamTools/ToolSolderPaste.py:503 +#: flatcamGUI/FlatCAMGUI.py:1604 flatcamTools/ToolSolderPaste.py:503 msgid "Delete Object" msgstr "Objekt löschen" -#: flatcamGUI/FlatCAMGUI.py:1488 +#: flatcamGUI/FlatCAMGUI.py:1604 msgid "Alternate: Delete Tool" msgstr "Alternative: Werkzeug löschen" -#: flatcamGUI/FlatCAMGUI.py:1489 +#: flatcamGUI/FlatCAMGUI.py:1605 msgid "(left to Key_1)Toogle Notebook Area (Left Side)" msgstr "(links neben Taste_1) Notebook-Bereich umschalten (linke Seite)" -#: flatcamGUI/FlatCAMGUI.py:1489 +#: flatcamGUI/FlatCAMGUI.py:1605 msgid "En(Dis)able Obj Plot" msgstr "Objektzeichnung (de)aktivieren" -#: flatcamGUI/FlatCAMGUI.py:1490 +#: flatcamGUI/FlatCAMGUI.py:1606 msgid "Deselects all objects" msgstr "Hebt die Auswahl aller Objekte auf" -#: flatcamGUI/FlatCAMGUI.py:1504 +#: flatcamGUI/FlatCAMGUI.py:1620 msgid "Editor Shortcut list" msgstr "Editor-Verknüpfungsliste" -#: flatcamGUI/FlatCAMGUI.py:1658 +#: flatcamGUI/FlatCAMGUI.py:1774 msgid "GEOMETRY EDITOR" msgstr "GEOMETRIE-EDITOR" -#: flatcamGUI/FlatCAMGUI.py:1658 +#: flatcamGUI/FlatCAMGUI.py:1774 msgid "Draw an Arc" msgstr "Zeichnen Sie einen Bogen" -#: flatcamGUI/FlatCAMGUI.py:1658 +#: flatcamGUI/FlatCAMGUI.py:1774 msgid "Copy Geo Item" msgstr "Geo-Objekt kopieren" -#: flatcamGUI/FlatCAMGUI.py:1659 +#: flatcamGUI/FlatCAMGUI.py:1775 msgid "Within Add Arc will toogle the ARC direction: CW or CCW" msgstr "" "Innerhalb von Bogen hinzufügen wird die ARC-Richtung getippt: CW oder CCW" -#: flatcamGUI/FlatCAMGUI.py:1659 +#: flatcamGUI/FlatCAMGUI.py:1775 msgid "Polygon Intersection Tool" msgstr "Werkzeug Polygonschnitt" -#: flatcamGUI/FlatCAMGUI.py:1660 +#: flatcamGUI/FlatCAMGUI.py:1776 msgid "Geo Paint Tool" msgstr "Geo-Malwerkzeug" -#: flatcamGUI/FlatCAMGUI.py:1660 flatcamGUI/FlatCAMGUI.py:1749 -#: flatcamGUI/FlatCAMGUI.py:1869 +#: flatcamGUI/FlatCAMGUI.py:1776 flatcamGUI/FlatCAMGUI.py:1865 +#: flatcamGUI/FlatCAMGUI.py:1985 msgid "Jump to Location (x, y)" msgstr "Zum Standort springen (x, y)" -#: flatcamGUI/FlatCAMGUI.py:1660 +#: flatcamGUI/FlatCAMGUI.py:1776 msgid "Toggle Corner Snap" msgstr "Eckfang umschalten" -#: flatcamGUI/FlatCAMGUI.py:1660 +#: flatcamGUI/FlatCAMGUI.py:1776 msgid "Move Geo Item" msgstr "Geo-Objekt verschieben" -#: flatcamGUI/FlatCAMGUI.py:1661 +#: flatcamGUI/FlatCAMGUI.py:1777 msgid "Within Add Arc will cycle through the ARC modes" msgstr "Innerhalb von Bogen hinzufügen werden die ARC-Modi durchlaufen" -#: flatcamGUI/FlatCAMGUI.py:1661 +#: flatcamGUI/FlatCAMGUI.py:1777 msgid "Draw a Polygon" msgstr "Zeichnen Sie ein Polygon" -#: flatcamGUI/FlatCAMGUI.py:1661 +#: flatcamGUI/FlatCAMGUI.py:1777 msgid "Draw a Circle" msgstr "Zeichne einen Kreis" -#: flatcamGUI/FlatCAMGUI.py:1662 +#: flatcamGUI/FlatCAMGUI.py:1778 msgid "Draw a Path" msgstr "Zeichne einen Pfad" -#: flatcamGUI/FlatCAMGUI.py:1662 +#: flatcamGUI/FlatCAMGUI.py:1778 msgid "Draw Rectangle" msgstr "Rechteck zeichnen" -#: flatcamGUI/FlatCAMGUI.py:1662 +#: flatcamGUI/FlatCAMGUI.py:1778 msgid "Polygon Subtraction Tool" msgstr "Polygon-Subtraktionswerkzeug" -#: flatcamGUI/FlatCAMGUI.py:1662 +#: flatcamGUI/FlatCAMGUI.py:1778 msgid "Add Text Tool" msgstr "Textwerkzeug hinzufügen" -#: flatcamGUI/FlatCAMGUI.py:1663 +#: flatcamGUI/FlatCAMGUI.py:1779 msgid "Polygon Union Tool" msgstr "Polygonverbindungswerkzeug" -#: flatcamGUI/FlatCAMGUI.py:1663 +#: flatcamGUI/FlatCAMGUI.py:1779 msgid "Flip shape on X axis" msgstr "Form auf der X-Achse spiegeln" -#: flatcamGUI/FlatCAMGUI.py:1663 +#: flatcamGUI/FlatCAMGUI.py:1779 msgid "Flip shape on Y axis" msgstr "Form auf der Y-Achse spiegeln" -#: flatcamGUI/FlatCAMGUI.py:1664 +#: flatcamGUI/FlatCAMGUI.py:1780 msgid "Skew shape on X axis" msgstr "Neigung auf der X-Achse" -#: flatcamGUI/FlatCAMGUI.py:1664 +#: flatcamGUI/FlatCAMGUI.py:1780 msgid "Skew shape on Y axis" msgstr "Neigung auf der Y-Achse" -#: flatcamGUI/FlatCAMGUI.py:1664 +#: flatcamGUI/FlatCAMGUI.py:1780 msgid "Editor Transformation Tool" msgstr "Editor-Transformationstool" -#: flatcamGUI/FlatCAMGUI.py:1665 +#: flatcamGUI/FlatCAMGUI.py:1781 msgid "Offset shape on X axis" msgstr "Versetzte Form auf der X-Achse" -#: flatcamGUI/FlatCAMGUI.py:1665 +#: flatcamGUI/FlatCAMGUI.py:1781 msgid "Offset shape on Y axis" msgstr "Versetzte Form auf der Y-Achse" -#: flatcamGUI/FlatCAMGUI.py:1666 flatcamGUI/FlatCAMGUI.py:1752 -#: flatcamGUI/FlatCAMGUI.py:1874 +#: flatcamGUI/FlatCAMGUI.py:1782 flatcamGUI/FlatCAMGUI.py:1868 +#: flatcamGUI/FlatCAMGUI.py:1990 msgid "Save Object and Exit Editor" msgstr "Objekt speichern und Editor beenden" -#: flatcamGUI/FlatCAMGUI.py:1666 +#: flatcamGUI/FlatCAMGUI.py:1782 msgid "Polygon Cut Tool" msgstr "Polygon-Schneidewerkzeug" -#: flatcamGUI/FlatCAMGUI.py:1667 +#: flatcamGUI/FlatCAMGUI.py:1783 msgid "Rotate Geometry" msgstr "Geometrie drehen" -#: flatcamGUI/FlatCAMGUI.py:1667 +#: flatcamGUI/FlatCAMGUI.py:1783 msgid "Finish drawing for certain tools" msgstr "Beenden Sie das Zeichnen für bestimmte Werkzeuge" -#: flatcamGUI/FlatCAMGUI.py:1667 flatcamGUI/FlatCAMGUI.py:1752 -#: flatcamGUI/FlatCAMGUI.py:1872 +#: flatcamGUI/FlatCAMGUI.py:1783 flatcamGUI/FlatCAMGUI.py:1868 +#: flatcamGUI/FlatCAMGUI.py:1988 msgid "Abort and return to Select" msgstr "Abbrechen und zurück zu Auswählen" -#: flatcamGUI/FlatCAMGUI.py:1668 flatcamGUI/FlatCAMGUI.py:2263 +#: flatcamGUI/FlatCAMGUI.py:1784 flatcamGUI/FlatCAMGUI.py:2483 msgid "Delete Shape" msgstr "Form löschen" -#: flatcamGUI/FlatCAMGUI.py:1748 +#: flatcamGUI/FlatCAMGUI.py:1864 msgid "EXCELLON EDITOR" msgstr "EXCELLON EDITOR" -#: flatcamGUI/FlatCAMGUI.py:1748 +#: flatcamGUI/FlatCAMGUI.py:1864 msgid "Copy Drill(s)" msgstr "Bohrer kopieren" -#: flatcamGUI/FlatCAMGUI.py:1748 flatcamGUI/FlatCAMGUI.py:1957 +#: flatcamGUI/FlatCAMGUI.py:1864 flatcamGUI/FlatCAMGUI.py:2114 msgid "Add Drill" msgstr "Bohrer hinzufügen" -#: flatcamGUI/FlatCAMGUI.py:1749 +#: flatcamGUI/FlatCAMGUI.py:1865 msgid "Move Drill(s)" msgstr "Bohrer verschieben" -#: flatcamGUI/FlatCAMGUI.py:1750 +#: flatcamGUI/FlatCAMGUI.py:1866 msgid "Add a new Tool" msgstr "Fügen Sie ein neues Werkzeug hinzu" -#: flatcamGUI/FlatCAMGUI.py:1751 +#: flatcamGUI/FlatCAMGUI.py:1867 msgid "Delete Drill(s)" msgstr "Bohrer löschen" -#: flatcamGUI/FlatCAMGUI.py:1751 +#: flatcamGUI/FlatCAMGUI.py:1867 msgid "Alternate: Delete Tool(s)" msgstr "Alternative: Werkzeug (e) löschen" -#: flatcamGUI/FlatCAMGUI.py:1868 +#: flatcamGUI/FlatCAMGUI.py:1984 msgid "GERBER EDITOR" msgstr "GERBER EDITOR" -#: flatcamGUI/FlatCAMGUI.py:1868 +#: flatcamGUI/FlatCAMGUI.py:1984 msgid "Add Disc" msgstr "Fügen Sie eine Scheiben hinzu" -#: flatcamGUI/FlatCAMGUI.py:1868 +#: flatcamGUI/FlatCAMGUI.py:1984 msgid "Add SemiDisc" msgstr "Halbschibe hinzufügen" -#: flatcamGUI/FlatCAMGUI.py:1870 +#: flatcamGUI/FlatCAMGUI.py:1986 msgid "Within Track & Region Tools will cycle in REVERSE the bend modes" msgstr "" "Innerhalb von Track- und Region-Werkzeugen werden die Biegemodi umgekehrt" -#: flatcamGUI/FlatCAMGUI.py:1871 +#: flatcamGUI/FlatCAMGUI.py:1987 msgid "Within Track & Region Tools will cycle FORWARD the bend modes" msgstr "" "Innerhalb von Track und Region werden mit Tools die Biegemodi vorwärts " "durchlaufen" -#: flatcamGUI/FlatCAMGUI.py:1872 +#: flatcamGUI/FlatCAMGUI.py:1988 msgid "Alternate: Delete Apertures" msgstr "Alternative: Löschen Sie die Blenden" -#: flatcamGUI/FlatCAMGUI.py:1873 +#: flatcamGUI/FlatCAMGUI.py:1989 msgid "Eraser Tool" msgstr "Radiergummi" -#: flatcamGUI/FlatCAMGUI.py:1874 flatcamGUI/PreferencesUI.py:2038 +#: flatcamGUI/FlatCAMGUI.py:1990 flatcamGUI/PreferencesUI.py:2039 msgid "Mark Area Tool" msgstr "Bereich markieren Werkzeug" -#: flatcamGUI/FlatCAMGUI.py:1874 +#: flatcamGUI/FlatCAMGUI.py:1990 msgid "Poligonize Tool" msgstr "Werkzeug Polygonisieren" -#: flatcamGUI/FlatCAMGUI.py:1874 +#: flatcamGUI/FlatCAMGUI.py:1990 msgid "Transformation Tool" msgstr "Transformationswerkzeug" -#: flatcamGUI/FlatCAMGUI.py:1890 +#: flatcamGUI/FlatCAMGUI.py:2007 msgid "Toggle Visibility" msgstr "Sichtbarkeit umschalten" -#: flatcamGUI/FlatCAMGUI.py:1894 +#: flatcamGUI/FlatCAMGUI.py:2013 msgid "New" msgstr "Neu" -#: flatcamGUI/FlatCAMGUI.py:1895 flatcamTools/ToolCalibration.py:634 +#: flatcamGUI/FlatCAMGUI.py:2015 flatcamTools/ToolCalibration.py:634 msgid "Geometry" msgstr "Geometrie" -#: flatcamGUI/FlatCAMGUI.py:1897 flatcamTools/ToolCalibration.py:197 +#: flatcamGUI/FlatCAMGUI.py:2019 flatcamTools/ToolCalibration.py:197 #: flatcamTools/ToolCalibration.py:634 flatcamTools/ToolFilm.py:359 msgid "Excellon" msgstr "Excellon" -#: flatcamGUI/FlatCAMGUI.py:1902 +#: flatcamGUI/FlatCAMGUI.py:2026 msgid "Grids" msgstr "Raster" -#: flatcamGUI/FlatCAMGUI.py:1906 +#: flatcamGUI/FlatCAMGUI.py:2033 msgid "Clear Plot" msgstr "Plot klar löschen" -#: flatcamGUI/FlatCAMGUI.py:1907 +#: flatcamGUI/FlatCAMGUI.py:2035 msgid "Replot" msgstr "Replotieren" -#: flatcamGUI/FlatCAMGUI.py:1910 +#: flatcamGUI/FlatCAMGUI.py:2039 msgid "Geo Editor" msgstr "Geo-Editor" -#: flatcamGUI/FlatCAMGUI.py:1911 +#: flatcamGUI/FlatCAMGUI.py:2041 msgid "Path" msgstr "Pfad" -#: flatcamGUI/FlatCAMGUI.py:1912 +#: flatcamGUI/FlatCAMGUI.py:2043 msgid "Rectangle" msgstr "Rechteck" -#: flatcamGUI/FlatCAMGUI.py:1914 +#: flatcamGUI/FlatCAMGUI.py:2046 msgid "Circle" msgstr "Kreis" -#: flatcamGUI/FlatCAMGUI.py:1915 +#: flatcamGUI/FlatCAMGUI.py:2048 msgid "Polygon" msgstr "Polygon" -#: flatcamGUI/FlatCAMGUI.py:1916 +#: flatcamGUI/FlatCAMGUI.py:2050 msgid "Arc" msgstr "Bogen" -#: flatcamGUI/FlatCAMGUI.py:1925 +#: flatcamGUI/FlatCAMGUI.py:2064 msgid "Union" msgstr "Vereinigung" -#: flatcamGUI/FlatCAMGUI.py:1926 +#: flatcamGUI/FlatCAMGUI.py:2066 msgid "Intersection" msgstr "Überschneidung" -#: flatcamGUI/FlatCAMGUI.py:1927 +#: flatcamGUI/FlatCAMGUI.py:2068 msgid "Subtraction" msgstr "Subtraktion" -#: flatcamGUI/FlatCAMGUI.py:1928 flatcamGUI/ObjectUI.py:1761 -#: flatcamGUI/PreferencesUI.py:3643 +#: flatcamGUI/FlatCAMGUI.py:2070 flatcamGUI/ObjectUI.py:1813 +#: flatcamGUI/PreferencesUI.py:3644 msgid "Cut" msgstr "Schnitt" -#: flatcamGUI/FlatCAMGUI.py:1935 +#: flatcamGUI/FlatCAMGUI.py:2081 msgid "Pad" msgstr "Pad" -#: flatcamGUI/FlatCAMGUI.py:1936 +#: flatcamGUI/FlatCAMGUI.py:2083 msgid "Pad Array" msgstr "Pad-Array" -#: flatcamGUI/FlatCAMGUI.py:1939 +#: flatcamGUI/FlatCAMGUI.py:2087 msgid "Track" msgstr "Track" -#: flatcamGUI/FlatCAMGUI.py:1940 +#: flatcamGUI/FlatCAMGUI.py:2089 msgid "Region" msgstr "Region" -#: flatcamGUI/FlatCAMGUI.py:1956 +#: flatcamGUI/FlatCAMGUI.py:2112 msgid "Exc Editor" msgstr "Exc-Editor" -#: flatcamGUI/FlatCAMGUI.py:1986 +#: flatcamGUI/FlatCAMGUI.py:2153 msgid "" "Relative neasurement.\n" "Reference is last click position" @@ -7058,7 +6930,7 @@ msgstr "" "Relative Messung\n" "Referenz ist Position des letzten Klicks" -#: flatcamGUI/FlatCAMGUI.py:1992 +#: flatcamGUI/FlatCAMGUI.py:2159 msgid "" "Absolute neasurement.\n" "Reference is (X=0, Y= 0) position" @@ -7066,27 +6938,27 @@ msgstr "" "Absolute Messung.\n" "Referenz ist (X = 0, Y = 0)" -#: flatcamGUI/FlatCAMGUI.py:2099 +#: flatcamGUI/FlatCAMGUI.py:2266 msgid "Lock Toolbars" msgstr "Symbolleisten sperren" -#: flatcamGUI/FlatCAMGUI.py:2192 +#: flatcamGUI/FlatCAMGUI.py:2384 msgid "&Cutout Tool" msgstr "Ausschnittwerkzeug" -#: flatcamGUI/FlatCAMGUI.py:2234 +#: flatcamGUI/FlatCAMGUI.py:2443 msgid "Select 'Esc'" msgstr "Wählen" -#: flatcamGUI/FlatCAMGUI.py:2261 +#: flatcamGUI/FlatCAMGUI.py:2481 msgid "Copy Objects" msgstr "Objekte kopieren" -#: flatcamGUI/FlatCAMGUI.py:2268 +#: flatcamGUI/FlatCAMGUI.py:2489 msgid "Move Objects" msgstr "Objekte verschieben" -#: flatcamGUI/FlatCAMGUI.py:2813 +#: flatcamGUI/FlatCAMGUI.py:3048 msgid "" "Please first select a geometry item to be cutted\n" "then select the geometry item that will be cutted\n" @@ -7098,12 +6970,12 @@ msgstr "" "aus dem ersten Artikel. Zum Schluss drücken Sie die Taste ~ X ~ oder\n" "die Symbolleisten-Schaltfläche." -#: flatcamGUI/FlatCAMGUI.py:2820 flatcamGUI/FlatCAMGUI.py:2964 -#: flatcamGUI/FlatCAMGUI.py:3023 flatcamGUI/FlatCAMGUI.py:3043 +#: flatcamGUI/FlatCAMGUI.py:3055 flatcamGUI/FlatCAMGUI.py:3199 +#: flatcamGUI/FlatCAMGUI.py:3258 flatcamGUI/FlatCAMGUI.py:3278 msgid "Warning" msgstr "Warnung" -#: flatcamGUI/FlatCAMGUI.py:2959 +#: flatcamGUI/FlatCAMGUI.py:3194 msgid "" "Please select geometry items \n" "on which to perform Intersection Tool." @@ -7111,7 +6983,7 @@ msgstr "" "Bitte wählen Sie Geometrieelemente aus\n" "auf dem das Verschneidungswerkzeug ausgeführt werden soll." -#: flatcamGUI/FlatCAMGUI.py:3018 +#: flatcamGUI/FlatCAMGUI.py:3253 msgid "" "Please select geometry items \n" "on which to perform Substraction Tool." @@ -7119,7 +6991,7 @@ msgstr "" "Bitte wählen Sie Geometrieelemente aus\n" "auf dem das Subtraktionswerkzeug ausgeführt werden soll." -#: flatcamGUI/FlatCAMGUI.py:3038 +#: flatcamGUI/FlatCAMGUI.py:3273 msgid "" "Please select geometry items \n" "on which to perform union." @@ -7127,52 +6999,52 @@ msgstr "" "Bitte wählen Sie Geometrieelemente aus\n" "auf dem die Polygonverbindung ausgeführt werden soll." -#: flatcamGUI/FlatCAMGUI.py:3122 flatcamGUI/FlatCAMGUI.py:3340 +#: flatcamGUI/FlatCAMGUI.py:3357 flatcamGUI/FlatCAMGUI.py:3575 msgid "Cancelled. Nothing selected to delete." msgstr "Abgebrochen. Nichts zum Löschen ausgewählt." -#: flatcamGUI/FlatCAMGUI.py:3207 flatcamGUI/FlatCAMGUI.py:3408 +#: flatcamGUI/FlatCAMGUI.py:3442 flatcamGUI/FlatCAMGUI.py:3643 msgid "Cancelled. Nothing selected to copy." msgstr "Abgebrochen. Nichts zum Kopieren ausgewählt." -#: flatcamGUI/FlatCAMGUI.py:3254 flatcamGUI/FlatCAMGUI.py:3455 +#: flatcamGUI/FlatCAMGUI.py:3489 flatcamGUI/FlatCAMGUI.py:3690 msgid "Cancelled. Nothing selected to move." msgstr "Abgebrochen. Nichts ausgewählt, um sich zu bewegen." -#: flatcamGUI/FlatCAMGUI.py:3481 +#: flatcamGUI/FlatCAMGUI.py:3716 msgid "New Tool ..." msgstr "Neues Werkzeug ..." -#: flatcamGUI/FlatCAMGUI.py:3482 flatcamTools/ToolNonCopperClear.py:588 -#: flatcamTools/ToolPaint.py:499 flatcamTools/ToolSolderPaste.py:554 +#: flatcamGUI/FlatCAMGUI.py:3717 flatcamTools/ToolNonCopperClear.py:589 +#: flatcamTools/ToolPaint.py:500 flatcamTools/ToolSolderPaste.py:554 msgid "Enter a Tool Diameter" msgstr "Geben Sie einen Werkzeugdurchmesser ein" -#: flatcamGUI/FlatCAMGUI.py:3494 +#: flatcamGUI/FlatCAMGUI.py:3729 msgid "Adding Tool cancelled ..." msgstr "Tool wird hinzugefügt abgebrochen ..." -#: flatcamGUI/FlatCAMGUI.py:3537 +#: flatcamGUI/FlatCAMGUI.py:3772 msgid "Distance Tool exit..." msgstr "Entfernungstool beenden ..." -#: flatcamGUI/FlatCAMGUI.py:3747 flatcamGUI/FlatCAMGUI.py:3754 +#: flatcamGUI/FlatCAMGUI.py:3982 flatcamGUI/FlatCAMGUI.py:3989 msgid "Idle." msgstr "Untätig." -#: flatcamGUI/FlatCAMGUI.py:3783 +#: flatcamGUI/FlatCAMGUI.py:4020 msgid "Application started ..." msgstr "Bewerbung gestartet ..." -#: flatcamGUI/FlatCAMGUI.py:3784 +#: flatcamGUI/FlatCAMGUI.py:4021 msgid "Hello!" msgstr "Hello!" -#: flatcamGUI/FlatCAMGUI.py:3840 +#: flatcamGUI/FlatCAMGUI.py:4079 msgid "Open Project ..." msgstr "Offenes Projekt ..." -#: flatcamGUI/FlatCAMGUI.py:3865 +#: flatcamGUI/FlatCAMGUI.py:4105 msgid "Exit" msgstr "Ausgang" @@ -7180,7 +7052,7 @@ msgstr "Ausgang" msgid "FlatCAM Object" msgstr "FlatCAM-Objekt" -#: flatcamGUI/ObjectUI.py:66 +#: flatcamGUI/ObjectUI.py:77 msgid "" "BASIC is suitable for a beginner. Many parameters\n" "are hidden from the user in this mode.\n" @@ -7198,108 +7070,100 @@ msgstr "" "Bearbeiten -> Einstellungen -> Allgemein und überprüfen Sie:\n" "Optionsfeld \"Anwendungsebene\"." -#: flatcamGUI/ObjectUI.py:94 +#: flatcamGUI/ObjectUI.py:105 msgid "Change the size of the object." msgstr "Ändern Sie die Größe des Objekts." -#: flatcamGUI/ObjectUI.py:100 +#: flatcamGUI/ObjectUI.py:111 msgid "Factor" msgstr "Faktor" -#: flatcamGUI/ObjectUI.py:102 -#, fuzzy -#| msgid "" -#| "Factor by which to multiply\n" -#| "geometric features of this object." +#: flatcamGUI/ObjectUI.py:113 msgid "" "Factor by which to multiply\n" "geometric features of this object.\n" "Expressions are allowed. E.g: 1/25.4" msgstr "" "Faktor, mit dem sich multiplizieren soll\n" -"geometrische Merkmale dieses Objekts." +"geometrische Merkmale dieses Objekts.\n" +"Ausdrücke sind erlaubt. Zum Beispiel: 1 / 25.4" -#: flatcamGUI/ObjectUI.py:112 +#: flatcamGUI/ObjectUI.py:123 msgid "Perform scaling operation." msgstr "Führen Sie die Skalierung durch." -#: flatcamGUI/ObjectUI.py:123 +#: flatcamGUI/ObjectUI.py:134 msgid "Change the position of this object." msgstr "Ändern Sie die Position dieses Objekts." -#: flatcamGUI/ObjectUI.py:128 +#: flatcamGUI/ObjectUI.py:139 msgid "Vector" msgstr "Vektor" -#: flatcamGUI/ObjectUI.py:130 -#, fuzzy -#| msgid "" -#| "Amount by which to move the object\n" -#| "in the x and y axes in (x, y) format." +#: flatcamGUI/ObjectUI.py:141 msgid "" "Amount by which to move the object\n" "in the x and y axes in (x, y) format.\n" "Expressions are allowed. E.g: (1/3.2, 0.5*3)" msgstr "" "Betrag, um den das Objekt verschoben werden soll\n" -"in der x- und y-Achse im (x, y) -Format." +"in der x- und y-Achse im (x, y) -Format.\n" +"Ausdrücke sind erlaubt. Zum Beispiel: (1/3.2, 0.5*3)" -#: flatcamGUI/ObjectUI.py:139 +#: flatcamGUI/ObjectUI.py:150 msgid "Perform the offset operation." msgstr "Führen Sie den Versatzvorgang aus." -#: flatcamGUI/ObjectUI.py:156 +#: flatcamGUI/ObjectUI.py:167 msgid "Gerber Object" msgstr "Gerber-Objekt" -#: 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 +#: flatcamGUI/ObjectUI.py:182 flatcamGUI/ObjectUI.py:767 +#: flatcamGUI/ObjectUI.py:1205 flatcamGUI/ObjectUI.py:1907 +#: flatcamGUI/PreferencesUI.py:1361 flatcamGUI/PreferencesUI.py:3119 +#: flatcamGUI/PreferencesUI.py:3629 msgid "Plot (show) this object." msgstr "Plotten (zeigen) dieses Objekt." -#: flatcamGUI/ObjectUI.py:173 flatcamGUI/ObjectUI.py:741 -#: flatcamGUI/PreferencesUI.py:1358 flatcamGUI/PreferencesUI.py:2084 -#: flatcamGUI/PreferencesUI.py:3116 +#: flatcamGUI/ObjectUI.py:184 flatcamGUI/ObjectUI.py:765 +#: flatcamGUI/PreferencesUI.py:1359 flatcamGUI/PreferencesUI.py:2085 +#: flatcamGUI/PreferencesUI.py:3117 msgid "Plot" msgstr "Zeichn" -#: 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 +#: flatcamGUI/ObjectUI.py:189 flatcamGUI/ObjectUI.py:726 +#: flatcamGUI/ObjectUI.py:1159 flatcamGUI/ObjectUI.py:1797 +#: flatcamGUI/PreferencesUI.py:1338 flatcamGUI/PreferencesUI.py:2079 +#: flatcamGUI/PreferencesUI.py:3113 flatcamGUI/PreferencesUI.py:3618 msgid "Plot Options" msgstr "Diagrammoptionen" -#: flatcamGUI/ObjectUI.py:184 flatcamGUI/ObjectUI.py:703 -#: flatcamGUI/PreferencesUI.py:1344 flatcamGUI/PreferencesUI.py:2090 -#: flatcamGUI/PreferencesUI.py:6153 flatcamTools/ToolCopperThieving.py:190 +#: flatcamGUI/ObjectUI.py:195 flatcamGUI/ObjectUI.py:727 +#: flatcamGUI/PreferencesUI.py:1345 flatcamGUI/PreferencesUI.py:2091 +#: flatcamGUI/PreferencesUI.py:6154 flatcamTools/ToolCopperThieving.py:190 msgid "Solid" msgstr "Solide" -#: flatcamGUI/ObjectUI.py:186 flatcamGUI/PreferencesUI.py:1346 +#: flatcamGUI/ObjectUI.py:197 flatcamGUI/PreferencesUI.py:1347 msgid "Solid color polygons." msgstr "Einfarbige Polygone." -#: flatcamGUI/ObjectUI.py:192 -#, fuzzy -#| msgid "M-Color" +#: flatcamGUI/ObjectUI.py:203 msgid "Multi-Color" msgstr "M-farbig" -#: flatcamGUI/ObjectUI.py:194 flatcamGUI/PreferencesUI.py:1353 +#: flatcamGUI/ObjectUI.py:205 flatcamGUI/PreferencesUI.py:1354 msgid "Draw polygons in different colors." msgstr "Zeichnen Sie Polygone in verschiedenen Farben." -#: flatcamGUI/ObjectUI.py:202 flatcamGUI/ObjectUI.py:714 -#: flatcamGUI/ObjectUI.py:1126 flatcamGUI/ObjectUI.py:1775 -#: flatcamGUI/ObjectUI.py:2067 flatcamGUI/ObjectUI.py:2122 +#: flatcamGUI/ObjectUI.py:213 flatcamGUI/ObjectUI.py:738 +#: flatcamGUI/ObjectUI.py:1165 flatcamGUI/ObjectUI.py:1827 +#: flatcamGUI/ObjectUI.py:2130 flatcamGUI/ObjectUI.py:2196 #: flatcamTools/ToolCalibration.py:235 flatcamTools/ToolFiducials.py:73 msgid "Name" msgstr "Name" -#: flatcamGUI/ObjectUI.py:223 +#: flatcamGUI/ObjectUI.py:234 msgid "" "Toggle the display of the Gerber Apertures Table.\n" "When unchecked, it will delete all mark shapes\n" @@ -7310,11 +7174,11 @@ msgstr "" "gelöscht\n" "das sind auf leinwand gezeichnet." -#: flatcamGUI/ObjectUI.py:233 +#: flatcamGUI/ObjectUI.py:244 msgid "Mark All" msgstr "Alles mark" -#: flatcamGUI/ObjectUI.py:235 +#: flatcamGUI/ObjectUI.py:246 msgid "" "When checked it will display all the apertures.\n" "When unchecked, it will delete all mark shapes\n" @@ -7325,15 +7189,15 @@ msgstr "" "gelöscht\n" "das sind auf leinwand gezeichnet." -#: flatcamGUI/ObjectUI.py:263 +#: flatcamGUI/ObjectUI.py:274 msgid "Mark the aperture instances on canvas." msgstr "Markieren Sie die Blendeninstanzen auf der Leinwand." -#: flatcamGUI/ObjectUI.py:275 flatcamGUI/PreferencesUI.py:1438 +#: flatcamGUI/ObjectUI.py:286 flatcamGUI/PreferencesUI.py:1439 msgid "Isolation Routing" msgstr "Isolierungsrouting" -#: flatcamGUI/ObjectUI.py:277 flatcamGUI/PreferencesUI.py:1440 +#: flatcamGUI/ObjectUI.py:288 flatcamGUI/PreferencesUI.py:1441 msgid "" "Create a Geometry object with\n" "toolpaths to cut outside polygons." @@ -7342,7 +7206,7 @@ msgstr "" "Werkzeugwege zum Schneiden von \n" "äußeren Polygonen." -#: flatcamGUI/ObjectUI.py:295 flatcamGUI/PreferencesUI.py:1628 +#: flatcamGUI/ObjectUI.py:306 flatcamGUI/PreferencesUI.py:1629 msgid "" "Choose what tool to use for Gerber isolation:\n" "'Circular' or 'V-shape'.\n" @@ -7355,32 +7219,30 @@ msgstr "" "Wenn die 'V-Form' ausgewählt ist, dann das Werkzeug\n" "Durchmesser hängt von der gewählten Schnitttiefe ab." -#: flatcamGUI/ObjectUI.py:301 -#, fuzzy -#| msgid "V-shape" +#: flatcamGUI/ObjectUI.py:312 msgid "V-Shape" msgstr "V-Form" -#: flatcamGUI/ObjectUI.py:307 flatcamGUI/ObjectUI.py:1335 -#: flatcamGUI/PreferencesUI.py:1640 flatcamGUI/PreferencesUI.py:4010 +#: flatcamGUI/ObjectUI.py:318 flatcamGUI/ObjectUI.py:1374 +#: flatcamGUI/PreferencesUI.py:1641 flatcamGUI/PreferencesUI.py:4011 #: flatcamTools/ToolNonCopperClear.py:231 msgid "V-Tip Dia" msgstr "Stichelspitzen-Durchm" -#: flatcamGUI/ObjectUI.py:309 flatcamGUI/ObjectUI.py:1338 -#: flatcamGUI/PreferencesUI.py:1642 flatcamGUI/PreferencesUI.py:4012 +#: flatcamGUI/ObjectUI.py:320 flatcamGUI/ObjectUI.py:1377 +#: flatcamGUI/PreferencesUI.py:1643 flatcamGUI/PreferencesUI.py:4013 #: flatcamTools/ToolNonCopperClear.py:233 msgid "The tip diameter for V-Shape Tool" msgstr "Der Spitzendurchmesser für das V-Shape-Werkzeug" -#: flatcamGUI/ObjectUI.py:320 flatcamGUI/ObjectUI.py:1350 -#: flatcamGUI/PreferencesUI.py:1653 flatcamGUI/PreferencesUI.py:4022 +#: flatcamGUI/ObjectUI.py:331 flatcamGUI/ObjectUI.py:1389 +#: flatcamGUI/PreferencesUI.py:1654 flatcamGUI/PreferencesUI.py:4023 #: flatcamTools/ToolNonCopperClear.py:242 msgid "V-Tip Angle" msgstr "Stichel-Winkel" -#: flatcamGUI/ObjectUI.py:322 flatcamGUI/ObjectUI.py:1353 -#: flatcamGUI/PreferencesUI.py:1655 flatcamGUI/PreferencesUI.py:4024 +#: flatcamGUI/ObjectUI.py:333 flatcamGUI/ObjectUI.py:1392 +#: flatcamGUI/PreferencesUI.py:1656 flatcamGUI/PreferencesUI.py:4025 #: flatcamTools/ToolNonCopperClear.py:244 msgid "" "The tip angle for V-Shape Tool.\n" @@ -7389,9 +7251,9 @@ msgstr "" "Der Spitzenwinkel für das Stichel-Werkzeug.\n" "In grad." -#: flatcamGUI/ObjectUI.py:336 flatcamGUI/ObjectUI.py:1369 -#: flatcamGUI/PreferencesUI.py:1668 flatcamGUI/PreferencesUI.py:3181 -#: flatcamGUI/PreferencesUI.py:4293 flatcamTools/ToolCutOut.py:135 +#: flatcamGUI/ObjectUI.py:347 flatcamGUI/ObjectUI.py:1408 +#: flatcamGUI/PreferencesUI.py:1669 flatcamGUI/PreferencesUI.py:3182 +#: flatcamGUI/PreferencesUI.py:4294 flatcamTools/ToolCutOut.py:135 msgid "" "Cutting depth (negative)\n" "below the copper surface." @@ -7399,7 +7261,7 @@ msgstr "" "Schnitttiefe (negativ)\n" "unter der Kupferoberfläche." -#: flatcamGUI/ObjectUI.py:350 +#: flatcamGUI/ObjectUI.py:361 msgid "" "Diameter of the cutting tool.\n" "If you want to have an isolation path\n" @@ -7413,11 +7275,11 @@ msgstr "" "verwenden Sie einen negativen Wert für\n" "dieser Parameter." -#: flatcamGUI/ObjectUI.py:366 flatcamGUI/PreferencesUI.py:1462 +#: flatcamGUI/ObjectUI.py:377 flatcamGUI/PreferencesUI.py:1463 msgid "# Passes" msgstr "Durchgang" -#: flatcamGUI/ObjectUI.py:368 flatcamGUI/PreferencesUI.py:1464 +#: flatcamGUI/ObjectUI.py:379 flatcamGUI/PreferencesUI.py:1465 msgid "" "Width of the isolation gap in\n" "number (integer) of tool widths." @@ -7425,28 +7287,24 @@ msgstr "" "Breite der Isolationslücke in\n" "Anzahl (Ganzzahl) der Werkzeugbreiten." -#: flatcamGUI/ObjectUI.py:378 flatcamGUI/PreferencesUI.py:1474 +#: flatcamGUI/ObjectUI.py:389 flatcamGUI/PreferencesUI.py:1475 msgid "Pass overlap" msgstr "Passüberlappung" -#: flatcamGUI/ObjectUI.py:380 flatcamGUI/PreferencesUI.py:1476 -#, fuzzy -#| msgid "" -#| "How much (fraction) of the tool\n" -#| "width to overlap each tool pass." +#: flatcamGUI/ObjectUI.py:391 flatcamGUI/PreferencesUI.py:1477 msgid "How much (fraction) of the tool width to overlap each tool pass." msgstr "" -"Wie viel (Bruchteil) des Werkzeugs\n" -"Breite, um jeden Werkzeugdurchgang zu überlappen." +"Wie viel (Prozent) der Breite des Werkzeugs\n" +"soll in jeden Werkzeugdurchgang überlappen." -#: flatcamGUI/ObjectUI.py:392 flatcamGUI/PreferencesUI.py:1501 -#: flatcamGUI/PreferencesUI.py:3594 flatcamGUI/PreferencesUI.py:4067 +#: flatcamGUI/ObjectUI.py:403 flatcamGUI/PreferencesUI.py:1502 +#: flatcamGUI/PreferencesUI.py:3595 flatcamGUI/PreferencesUI.py:4068 #: flatcamTools/ToolNonCopperClear.py:162 msgid "Milling Type" msgstr "Fräsart" -#: flatcamGUI/ObjectUI.py:394 flatcamGUI/PreferencesUI.py:1503 -#: flatcamGUI/PreferencesUI.py:3596 +#: flatcamGUI/ObjectUI.py:405 flatcamGUI/PreferencesUI.py:1504 +#: flatcamGUI/PreferencesUI.py:3597 msgid "" "Milling type:\n" "- climb / best for precision milling and to reduce tool usage\n" @@ -7457,31 +7315,30 @@ msgstr "" "Werkzeugverbrauchs\n" "- konventionell / nützlich, wenn kein Spielausgleich vorliegt" -#: flatcamGUI/ObjectUI.py:398 flatcamGUI/PreferencesUI.py:1508 -#: flatcamGUI/PreferencesUI.py:3600 flatcamGUI/PreferencesUI.py:4074 +#: flatcamGUI/ObjectUI.py:409 flatcamGUI/PreferencesUI.py:1509 +#: flatcamGUI/PreferencesUI.py:3601 flatcamGUI/PreferencesUI.py:4075 #: flatcamTools/ToolNonCopperClear.py:169 msgid "Climb" msgstr "Steigen" -#: flatcamGUI/ObjectUI.py:399 -#, fuzzy -#| msgid "Conversion" +# Cannot translate without context. +#: flatcamGUI/ObjectUI.py:410 msgid "Conventional" -msgstr "Umwandlung" +msgstr "Konventionell" -#: flatcamGUI/ObjectUI.py:404 +#: flatcamGUI/ObjectUI.py:415 msgid "Combine" msgstr "Kombinieren" -#: flatcamGUI/ObjectUI.py:406 flatcamGUI/PreferencesUI.py:1515 +#: flatcamGUI/ObjectUI.py:417 flatcamGUI/PreferencesUI.py:1516 msgid "Combine all passes into one object" msgstr "Kombinieren Sie alle Durchgänge in einem Objekt" -#: flatcamGUI/ObjectUI.py:410 flatcamGUI/PreferencesUI.py:1607 +#: flatcamGUI/ObjectUI.py:421 flatcamGUI/PreferencesUI.py:1608 msgid "\"Follow\"" msgstr "\"Folgen\"" -#: flatcamGUI/ObjectUI.py:411 flatcamGUI/PreferencesUI.py:1609 +#: flatcamGUI/ObjectUI.py:422 flatcamGUI/PreferencesUI.py:1610 msgid "" "Generate a 'Follow' geometry.\n" "This means that it will cut through\n" @@ -7491,11 +7348,11 @@ msgstr "" "Dies bedeutet, dass es durchschneiden wird\n" "die Mitte der Spur." -#: flatcamGUI/ObjectUI.py:417 +#: flatcamGUI/ObjectUI.py:428 msgid "Except" msgstr "Außer" -#: flatcamGUI/ObjectUI.py:420 +#: flatcamGUI/ObjectUI.py:431 msgid "" "When the isolation geometry is generated,\n" "by checking this, the area of the object bellow\n" @@ -7505,12 +7362,12 @@ msgstr "" "indem Sie dies markieren, wird der Bereich des Objekts darunter angezeigt\n" "wird von der Isolationsgeometrie abgezogen." -#: flatcamGUI/ObjectUI.py:442 flatcamTools/ToolNonCopperClear.py:82 +#: flatcamGUI/ObjectUI.py:453 flatcamTools/ToolNonCopperClear.py:82 #: flatcamTools/ToolPaint.py:85 msgid "Obj Type" msgstr "Obj-Typ" -#: flatcamGUI/ObjectUI.py:444 +#: flatcamGUI/ObjectUI.py:455 msgid "" "Specify the type of object to be excepted from isolation.\n" "It can be of type: Gerber or Geometry.\n" @@ -7522,40 +7379,41 @@ msgstr "" "Was hier ausgewählt wird, bestimmt die Art\n" "von Objekten, die das Kombinationsfeld \"Objekt\" füllen." -#: flatcamGUI/ObjectUI.py:457 flatcamGUI/PreferencesUI.py:6453 +#: flatcamGUI/ObjectUI.py:468 flatcamGUI/PreferencesUI.py:6454 #: flatcamTools/ToolCalibration.py:186 flatcamTools/ToolNonCopperClear.py:100 #: flatcamTools/ToolPaint.py:103 flatcamTools/ToolPanelize.py:81 #: flatcamTools/ToolPanelize.py:94 msgid "Object" msgstr "Objekt" -#: flatcamGUI/ObjectUI.py:458 +#: flatcamGUI/ObjectUI.py:469 msgid "Object whose area will be removed from isolation geometry." msgstr "Objekt, dessen Bereich aus der Isolationsgeometrie entfernt wird." -#: flatcamGUI/ObjectUI.py:465 flatcamGUI/PreferencesUI.py:1488 +#: flatcamGUI/ObjectUI.py:476 flatcamGUI/PreferencesUI.py:1489 msgid "Scope" -msgstr "" +msgstr "Wertebereich" -#: flatcamGUI/ObjectUI.py:467 flatcamGUI/PreferencesUI.py:1490 +#: flatcamGUI/ObjectUI.py:478 flatcamGUI/PreferencesUI.py:1491 msgid "" "Isolation scope. Choose what to isolate:\n" "- 'All' -> Isolate all the polygons in the object\n" "- 'Selection' -> Isolate a selection of polygons." msgstr "" +"Isolationsmenge. Was soll isoliert werden:\n" +"- 'Alles' -> Alle Polygone im Objekt isolieren\n" +"- ' Auswahl' -> Eine Auswahl der polygone isolieren." -#: flatcamGUI/ObjectUI.py:472 flatcamGUI/PreferencesUI.py:1495 -#: flatcamGUI/PreferencesUI.py:4603 flatcamTools/ToolPaint.py:300 +#: flatcamGUI/ObjectUI.py:483 flatcamGUI/PreferencesUI.py:1496 +#: flatcamGUI/PreferencesUI.py:4604 flatcamTools/ToolPaint.py:300 msgid "Selection" msgstr "Auswahl" -#: flatcamGUI/ObjectUI.py:480 flatcamGUI/PreferencesUI.py:1681 -#, fuzzy -#| msgid "Isolation Routing" +#: flatcamGUI/ObjectUI.py:491 flatcamGUI/PreferencesUI.py:1682 msgid "Isolation Type" -msgstr "Isolierungsrouting" +msgstr "Isolierungsart" -#: flatcamGUI/ObjectUI.py:482 flatcamGUI/PreferencesUI.py:1683 +#: flatcamGUI/ObjectUI.py:493 flatcamGUI/PreferencesUI.py:1684 msgid "" "Choose how the isolation will be executed:\n" "- 'Full' -> complete isolation of polygons\n" @@ -7566,29 +7424,32 @@ msgid "" "isolation can be done only when there is an opening\n" "inside of the polygon (e.g polygon is a 'doughnut' shape)." msgstr "" +"Wählen Sie, wie die Isolation ausgeführt wird:\n" +"- Vollständig: Es werden alle Polygone isoliert\n" +"- Ext: Die ausserhalb liegenden Polygone werden isoliert\n" +"- Int: Die innerhalb liegenden Polygone werden isoliert\n" +"Achtung Ext ist fast immer möglich (mit dem richtigen Werkzeug)\n" +"wohingegen \"Int\" Isolation nur möglich ist, wenn es ein Loch \n" +"innerhalb des Polygons gibt (also z.B. ein Torus)" -#: flatcamGUI/ObjectUI.py:491 flatcamGUI/PreferencesUI.py:1692 -#: flatcamGUI/PreferencesUI.py:1708 +#: flatcamGUI/ObjectUI.py:502 flatcamGUI/PreferencesUI.py:1693 +#: flatcamGUI/PreferencesUI.py:1709 msgid "Full" msgstr "Voll" -#: flatcamGUI/ObjectUI.py:492 -#, fuzzy -#| msgid "Exit" +#: flatcamGUI/ObjectUI.py:503 msgid "Ext" -msgstr "Ausgang" +msgstr "Ausserhalb" -#: flatcamGUI/ObjectUI.py:493 -#, fuzzy -#| msgid "In" +#: flatcamGUI/ObjectUI.py:504 msgid "Int" -msgstr "Im" +msgstr "Innerhalb" -#: flatcamGUI/ObjectUI.py:498 +#: flatcamGUI/ObjectUI.py:509 msgid "Generate Isolation Geometry" msgstr "Isolationsgeometrie erzeugen" -#: flatcamGUI/ObjectUI.py:506 +#: flatcamGUI/ObjectUI.py:517 msgid "" "Create a Geometry object with toolpaths to cut \n" "isolation outside, inside or on both sides of the\n" @@ -7610,11 +7471,11 @@ msgstr "" "Verwenden Sie in der Gerber-Funktion ein negatives Werkzeug\n" "Durchmesser oben." -#: flatcamGUI/ObjectUI.py:518 +#: flatcamGUI/ObjectUI.py:529 msgid "Buffer Solid Geometry" msgstr "Festkörpergeometrie puffern" -#: flatcamGUI/ObjectUI.py:520 +#: flatcamGUI/ObjectUI.py:531 msgid "" "This button is shown only when the Gerber file\n" "is loaded without buffering.\n" @@ -7626,11 +7487,11 @@ msgstr "" "Durch Klicken auf diese Schaltfläche wird die gepufferte Geometrie erstellt\n" "für die Isolierung erforderlich." -#: flatcamGUI/ObjectUI.py:548 +#: flatcamGUI/ObjectUI.py:559 msgid "Clear N-copper" msgstr "N-Kupfer löschen" -#: flatcamGUI/ObjectUI.py:550 flatcamGUI/PreferencesUI.py:3974 +#: flatcamGUI/ObjectUI.py:561 flatcamGUI/PreferencesUI.py:3975 msgid "" "Create a Geometry object with\n" "toolpaths to cut all non-copper regions." @@ -7638,7 +7499,7 @@ msgstr "" "Erstellen Sie ein Geometrieobjekt mit\n" "Werkzeugwege, um alle Nicht-Kupfer-Bereiche zu schneiden." -#: flatcamGUI/ObjectUI.py:557 flatcamGUI/ObjectUI.py:1714 +#: flatcamGUI/ObjectUI.py:568 flatcamGUI/ObjectUI.py:1753 #: flatcamTools/ToolNonCopperClear.py:479 msgid "" "Create the Geometry Object\n" @@ -7647,11 +7508,11 @@ msgstr "" "Erstellen Sie das Geometrieobjekt\n" "für kupferfreies Routing." -#: flatcamGUI/ObjectUI.py:570 +#: flatcamGUI/ObjectUI.py:581 msgid "Board cutout" msgstr "Kartenausschnitt" -#: flatcamGUI/ObjectUI.py:572 flatcamGUI/PreferencesUI.py:4266 +#: flatcamGUI/ObjectUI.py:583 flatcamGUI/PreferencesUI.py:4267 msgid "" "Create toolpaths to cut around\n" "the PCB and separate it from\n" @@ -7661,7 +7522,7 @@ msgstr "" "die PCB und trennen Sie es von\n" "das ursprüngliche Brett." -#: flatcamGUI/ObjectUI.py:579 +#: flatcamGUI/ObjectUI.py:590 msgid "" "Generate the geometry for\n" "the board cutout." @@ -7669,11 +7530,11 @@ msgstr "" "Generieren Sie die Geometrie für\n" "der Brettausschnitt." -#: flatcamGUI/ObjectUI.py:597 flatcamGUI/PreferencesUI.py:1520 +#: flatcamGUI/ObjectUI.py:608 flatcamGUI/PreferencesUI.py:1521 msgid "Non-copper regions" msgstr "Regionen ohne Kupfer" -#: flatcamGUI/ObjectUI.py:599 flatcamGUI/PreferencesUI.py:1522 +#: flatcamGUI/ObjectUI.py:610 flatcamGUI/PreferencesUI.py:1523 msgid "" "Create polygons covering the\n" "areas without copper on the PCB.\n" @@ -7687,12 +7548,12 @@ msgstr "" "Objekt. Kann verwendet werden, um alle zu entfernen\n" "Kupfer aus einer bestimmten Region." -#: flatcamGUI/ObjectUI.py:609 flatcamGUI/ObjectUI.py:650 -#: flatcamGUI/PreferencesUI.py:1534 flatcamGUI/PreferencesUI.py:1562 +#: flatcamGUI/ObjectUI.py:620 flatcamGUI/ObjectUI.py:661 +#: flatcamGUI/PreferencesUI.py:1535 flatcamGUI/PreferencesUI.py:1563 msgid "Boundary Margin" msgstr "Grenzmarge" -#: flatcamGUI/ObjectUI.py:611 flatcamGUI/PreferencesUI.py:1536 +#: flatcamGUI/ObjectUI.py:622 flatcamGUI/PreferencesUI.py:1537 msgid "" "Specify the edge of the PCB\n" "by drawing a box around all\n" @@ -7704,27 +7565,27 @@ msgstr "" "Objekte mit diesem Minimum\n" "Entfernung." -#: flatcamGUI/ObjectUI.py:626 flatcamGUI/ObjectUI.py:664 -#: flatcamGUI/PreferencesUI.py:1549 flatcamGUI/PreferencesUI.py:1575 +#: flatcamGUI/ObjectUI.py:637 flatcamGUI/ObjectUI.py:675 +#: flatcamGUI/PreferencesUI.py:1550 flatcamGUI/PreferencesUI.py:1576 msgid "Rounded Geo" msgstr "Abgerundete Geo" -#: flatcamGUI/ObjectUI.py:628 flatcamGUI/PreferencesUI.py:1551 +#: flatcamGUI/ObjectUI.py:639 flatcamGUI/PreferencesUI.py:1552 msgid "Resulting geometry will have rounded corners." msgstr "Die resultierende Geometrie hat abgerundete Ecken." -#: flatcamGUI/ObjectUI.py:632 flatcamGUI/ObjectUI.py:673 +#: flatcamGUI/ObjectUI.py:643 flatcamGUI/ObjectUI.py:684 #: flatcamTools/ToolSolderPaste.py:133 msgid "Generate Geo" msgstr "Geo erzeugen" -#: flatcamGUI/ObjectUI.py:642 flatcamGUI/PreferencesUI.py:1556 -#: flatcamGUI/PreferencesUI.py:5983 flatcamTools/ToolPanelize.py:95 +#: flatcamGUI/ObjectUI.py:653 flatcamGUI/PreferencesUI.py:1557 +#: flatcamGUI/PreferencesUI.py:5984 flatcamTools/ToolPanelize.py:95 #: flatcamTools/ToolQRCode.py:192 msgid "Bounding Box" msgstr "Begrenzungsrahmen" -#: flatcamGUI/ObjectUI.py:644 +#: flatcamGUI/ObjectUI.py:655 msgid "" "Create a geometry surrounding the Gerber object.\n" "Square shape." @@ -7732,7 +7593,7 @@ msgstr "" "Erstellen Sie eine Geometrie, die das Gerber-Objekt umgibt.\n" "Quadratische Form." -#: flatcamGUI/ObjectUI.py:652 flatcamGUI/PreferencesUI.py:1564 +#: flatcamGUI/ObjectUI.py:663 flatcamGUI/PreferencesUI.py:1565 msgid "" "Distance of the edges of the box\n" "to the nearest polygon." @@ -7740,7 +7601,7 @@ msgstr "" "Abstand der Kanten der Box\n" "zum nächsten Polygon." -#: flatcamGUI/ObjectUI.py:666 flatcamGUI/PreferencesUI.py:1577 +#: flatcamGUI/ObjectUI.py:677 flatcamGUI/PreferencesUI.py:1578 msgid "" "If the bounding box is \n" "to have rounded corners\n" @@ -7752,33 +7613,33 @@ msgstr "" "ihr Radius ist gleich\n" "der Abstand." -#: flatcamGUI/ObjectUI.py:675 +#: flatcamGUI/ObjectUI.py:686 msgid "Generate the Geometry object." msgstr "Generieren Sie das Geometrieobjekt." -#: flatcamGUI/ObjectUI.py:691 +#: flatcamGUI/ObjectUI.py:715 msgid "Excellon Object" msgstr "Excellon-Objekt" -#: flatcamGUI/ObjectUI.py:705 +#: flatcamGUI/ObjectUI.py:729 msgid "Solid circles." msgstr "Feste Kreise." -#: flatcamGUI/ObjectUI.py:753 flatcamGUI/ObjectUI.py:1876 +#: flatcamGUI/ObjectUI.py:777 flatcamGUI/ObjectUI.py:1928 #: flatcamTools/ToolProperties.py:161 msgid "Drills" msgstr "Bohrer" -#: flatcamGUI/ObjectUI.py:753 flatcamGUI/ObjectUI.py:1876 -#: flatcamGUI/PreferencesUI.py:2952 flatcamTools/ToolProperties.py:162 +#: flatcamGUI/ObjectUI.py:777 flatcamGUI/ObjectUI.py:1928 +#: flatcamGUI/PreferencesUI.py:2953 flatcamTools/ToolProperties.py:162 msgid "Slots" msgstr "Schlüssel" -#: flatcamGUI/ObjectUI.py:754 flatcamGUI/PreferencesUI.py:2555 +#: flatcamGUI/ObjectUI.py:778 flatcamGUI/PreferencesUI.py:2556 msgid "Offset Z" msgstr "Versatz Z" -#: flatcamGUI/ObjectUI.py:758 +#: flatcamGUI/ObjectUI.py:782 msgid "" "This is the Tool Number.\n" "When ToolChange is checked, on toolchange event this value\n" @@ -7793,7 +7654,7 @@ msgstr "" "\n" "Hier werden die Werkzeuge zur G-Code-Generierung ausgewählt." -#: flatcamGUI/ObjectUI.py:763 flatcamGUI/ObjectUI.py:1191 +#: flatcamGUI/ObjectUI.py:787 flatcamGUI/ObjectUI.py:1230 #: flatcamTools/ToolPaint.py:137 msgid "" "Tool Diameter. It's value (in current FlatCAM units) \n" @@ -7802,7 +7663,7 @@ msgstr "" "Werkzeugdurchmesser Der Wert (in aktuellen FlatCAM-Einheiten)\n" "ist die Schnittbreite in das Material." -#: flatcamGUI/ObjectUI.py:766 +#: flatcamGUI/ObjectUI.py:790 msgid "" "The number of Drill holes. Holes that are drilled with\n" "a drill bit." @@ -7810,7 +7671,7 @@ msgstr "" "Die Anzahl der Bohrlöcher. Löcher, mit denen gebohrt wird\n" "ein Bohrer." -#: flatcamGUI/ObjectUI.py:769 +#: flatcamGUI/ObjectUI.py:793 msgid "" "The number of Slot holes. Holes that are created by\n" "milling them with an endmill bit." @@ -7818,7 +7679,7 @@ msgstr "" "Die Anzahl der Langlöcher. Löcher, die von erstellt werden\n" "Fräsen mit einem Schaftfräser." -#: flatcamGUI/ObjectUI.py:772 flatcamGUI/PreferencesUI.py:2557 +#: flatcamGUI/ObjectUI.py:796 flatcamGUI/PreferencesUI.py:2558 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" @@ -7829,7 +7690,7 @@ msgstr "" "erzeugen.\n" "Der Wert hier kann den Parameter Cut Z ausgleichen." -#: flatcamGUI/ObjectUI.py:776 +#: flatcamGUI/ObjectUI.py:800 msgid "" "Toggle display of the drills for the current tool.\n" "This does not select the tools for G-code generation." @@ -7837,12 +7698,12 @@ msgstr "" "Anzeige der Bohrer für das aktuelle Werkzeug umschalten.\n" "Hiermit werden die Tools für die G-Code-Generierung nicht ausgewählt." -#: flatcamGUI/ObjectUI.py:783 flatcamGUI/PreferencesUI.py:2323 -#: flatcamGUI/PreferencesUI.py:3167 +#: flatcamGUI/ObjectUI.py:807 flatcamGUI/PreferencesUI.py:2324 +#: flatcamGUI/PreferencesUI.py:3168 msgid "Create CNC Job" msgstr "CNC-Job erstellen" -#: flatcamGUI/ObjectUI.py:785 +#: flatcamGUI/ObjectUI.py:809 msgid "" "Create a CNC Job object\n" "for this drill object." @@ -7850,7 +7711,7 @@ msgstr "" "Erstellen Sie ein CNC-Auftragsobjekt\n" "für dieses Bohrobjekt." -#: flatcamGUI/ObjectUI.py:798 flatcamGUI/PreferencesUI.py:2336 +#: flatcamGUI/ObjectUI.py:822 flatcamGUI/PreferencesUI.py:2337 msgid "" "Drill depth (negative)\n" "below the copper surface." @@ -7858,7 +7719,7 @@ msgstr "" "Bohrtiefe (negativ)\n" "unter der Kupferoberfläche." -#: flatcamGUI/ObjectUI.py:817 flatcamGUI/PreferencesUI.py:2354 +#: flatcamGUI/ObjectUI.py:841 flatcamGUI/PreferencesUI.py:2355 msgid "" "Tool height when travelling\n" "across the XY plane." @@ -7866,12 +7727,12 @@ msgstr "" "Werkzeughöhe auf Reisen\n" "über die XY-Ebene." -#: flatcamGUI/ObjectUI.py:834 flatcamGUI/ObjectUI.py:1439 -#: flatcamGUI/PreferencesUI.py:2369 flatcamGUI/PreferencesUI.py:3252 +#: flatcamGUI/ObjectUI.py:858 flatcamGUI/ObjectUI.py:1478 +#: flatcamGUI/PreferencesUI.py:2370 flatcamGUI/PreferencesUI.py:3253 msgid "Tool change" msgstr "Werkzeugwechsel" -#: flatcamGUI/ObjectUI.py:836 flatcamGUI/PreferencesUI.py:2371 +#: flatcamGUI/ObjectUI.py:860 flatcamGUI/PreferencesUI.py:2372 msgid "" "Include tool-change sequence\n" "in G-Code (Pause for tool change)." @@ -7879,12 +7740,12 @@ msgstr "" "Werkzeugwechselfolge einbeziehen\n" "im G-Code (Pause für Werkzeugwechsel)." -#: flatcamGUI/ObjectUI.py:842 flatcamGUI/ObjectUI.py:1432 +#: flatcamGUI/ObjectUI.py:866 flatcamGUI/ObjectUI.py:1471 msgid "Tool change Z" msgstr "Werkzeugwechsel Z" -#: flatcamGUI/ObjectUI.py:844 flatcamGUI/ObjectUI.py:1435 -#: flatcamGUI/PreferencesUI.py:2380 flatcamGUI/PreferencesUI.py:3267 +#: flatcamGUI/ObjectUI.py:868 flatcamGUI/ObjectUI.py:1474 +#: flatcamGUI/PreferencesUI.py:2381 flatcamGUI/PreferencesUI.py:3268 msgid "" "Z-axis position (height) for\n" "tool change." @@ -7892,12 +7753,12 @@ msgstr "" "Z-Achsenposition (Höhe) für\n" "Werkzeugwechsel." -#: flatcamGUI/ObjectUI.py:862 flatcamGUI/PreferencesUI.py:2575 -#: flatcamGUI/PreferencesUI.py:3420 +#: flatcamGUI/ObjectUI.py:886 flatcamGUI/PreferencesUI.py:2576 +#: flatcamGUI/PreferencesUI.py:3421 msgid "Start move Z" msgstr "Startbewegung Z" -#: flatcamGUI/ObjectUI.py:864 flatcamGUI/PreferencesUI.py:2577 +#: flatcamGUI/ObjectUI.py:888 flatcamGUI/PreferencesUI.py:2578 msgid "" "Height of the tool just after start.\n" "Delete the value if you don't need this feature." @@ -7905,13 +7766,13 @@ msgstr "" "Höhe des Werkzeugs gleich nach dem Start.\n" "Löschen Sie den Wert, wenn Sie diese Funktion nicht benötigen." -#: flatcamGUI/ObjectUI.py:872 flatcamGUI/ObjectUI.py:1473 -#: flatcamGUI/PreferencesUI.py:2395 flatcamGUI/PreferencesUI.py:3286 +#: flatcamGUI/ObjectUI.py:896 flatcamGUI/ObjectUI.py:1512 +#: flatcamGUI/PreferencesUI.py:2396 flatcamGUI/PreferencesUI.py:3287 msgid "End move Z" msgstr "Bewegung beenden Z" -#: flatcamGUI/ObjectUI.py:874 flatcamGUI/ObjectUI.py:1475 -#: flatcamGUI/PreferencesUI.py:2397 flatcamGUI/PreferencesUI.py:3288 +#: flatcamGUI/ObjectUI.py:898 flatcamGUI/ObjectUI.py:1514 +#: flatcamGUI/PreferencesUI.py:2398 flatcamGUI/PreferencesUI.py:3289 msgid "" "Height of the tool after\n" "the last move at the end of the job." @@ -7919,13 +7780,13 @@ msgstr "" "Höhe des Werkzeugs nach\n" "die letzte Bewegung am Ende des Jobs." -#: flatcamGUI/ObjectUI.py:891 flatcamGUI/ObjectUI.py:1506 -#: flatcamGUI/PreferencesUI.py:2412 flatcamGUI/PreferencesUI.py:3321 -#: flatcamGUI/PreferencesUI.py:5497 flatcamTools/ToolSolderPaste.py:264 +#: flatcamGUI/ObjectUI.py:915 flatcamGUI/ObjectUI.py:1545 +#: flatcamGUI/PreferencesUI.py:2413 flatcamGUI/PreferencesUI.py:3322 +#: flatcamGUI/PreferencesUI.py:5498 flatcamTools/ToolSolderPaste.py:264 msgid "Feedrate Z" msgstr "Vorschub Z" -#: flatcamGUI/ObjectUI.py:893 flatcamGUI/PreferencesUI.py:2414 +#: flatcamGUI/ObjectUI.py:917 flatcamGUI/PreferencesUI.py:2415 msgid "" "Tool speed while drilling\n" "(in units per minute).\n" @@ -7937,12 +7798,12 @@ msgstr "" "Sogenannter Eintauchvorschub.\n" "Dies ist für die lineare Bewegung G01." -#: flatcamGUI/ObjectUI.py:907 flatcamGUI/ObjectUI.py:1521 -#: flatcamGUI/PreferencesUI.py:2585 flatcamGUI/PreferencesUI.py:3430 +#: flatcamGUI/ObjectUI.py:931 flatcamGUI/ObjectUI.py:1560 +#: flatcamGUI/PreferencesUI.py:2586 flatcamGUI/PreferencesUI.py:3431 msgid "Feedrate Rapids" msgstr "Vorschubgeschwindigkeit" -#: flatcamGUI/ObjectUI.py:909 flatcamGUI/PreferencesUI.py:2587 +#: flatcamGUI/ObjectUI.py:933 flatcamGUI/PreferencesUI.py:2588 msgid "" "Tool speed while drilling\n" "(in units per minute).\n" @@ -7956,12 +7817,12 @@ msgstr "" "Es ist nur für Marlin nützlich,\n" "für andere Fälle ignorieren." -#: flatcamGUI/ObjectUI.py:927 flatcamGUI/ObjectUI.py:1566 -#: flatcamGUI/PreferencesUI.py:3337 +#: flatcamGUI/ObjectUI.py:951 flatcamGUI/ObjectUI.py:1605 +#: flatcamGUI/PreferencesUI.py:3338 msgid "Spindle speed" msgstr "Spulengeschwindigkeit" -#: flatcamGUI/ObjectUI.py:929 flatcamGUI/PreferencesUI.py:2429 +#: flatcamGUI/ObjectUI.py:953 flatcamGUI/PreferencesUI.py:2430 msgid "" "Speed of the spindle\n" "in RPM (optional)" @@ -7969,8 +7830,8 @@ msgstr "" "Geschwindigkeit der Spindel\n" "in RPM (optional)" -#: flatcamGUI/ObjectUI.py:941 flatcamGUI/ObjectUI.py:1585 -#: flatcamGUI/PreferencesUI.py:2441 flatcamGUI/PreferencesUI.py:3355 +#: flatcamGUI/ObjectUI.py:965 flatcamGUI/ObjectUI.py:1624 +#: flatcamGUI/PreferencesUI.py:2442 flatcamGUI/PreferencesUI.py:3356 msgid "" "Pause to allow the spindle to reach its\n" "speed before cutting." @@ -7978,12 +7839,12 @@ msgstr "" "Pause, damit die Spindel ihre erreichen kann\n" "Geschwindigkeit vor dem Schneiden." -#: flatcamGUI/ObjectUI.py:950 flatcamGUI/ObjectUI.py:1595 -#: flatcamGUI/PreferencesUI.py:2446 flatcamGUI/PreferencesUI.py:3360 +#: flatcamGUI/ObjectUI.py:974 flatcamGUI/ObjectUI.py:1634 +#: flatcamGUI/PreferencesUI.py:2447 flatcamGUI/PreferencesUI.py:3361 msgid "Number of time units for spindle to dwell." msgstr "Anzahl der Zeiteinheiten, in denen die Spindel verweilen soll." -#: flatcamGUI/ObjectUI.py:960 flatcamGUI/PreferencesUI.py:2463 +#: flatcamGUI/ObjectUI.py:984 flatcamGUI/PreferencesUI.py:2464 msgid "" "The preprocessor JSON file that dictates\n" "Gcode output." @@ -7991,13 +7852,13 @@ msgstr "" "Die Postprozessor-JSON-Datei, die diktiert\n" "Gcode-Ausgabe." -#: flatcamGUI/ObjectUI.py:969 flatcamGUI/ObjectUI.py:1615 -#: flatcamGUI/PreferencesUI.py:2601 flatcamGUI/PreferencesUI.py:3471 +#: flatcamGUI/ObjectUI.py:993 flatcamGUI/ObjectUI.py:1654 +#: flatcamGUI/PreferencesUI.py:2602 flatcamGUI/PreferencesUI.py:3472 msgid "Probe Z depth" msgstr "Sonde Z Tiefe" -#: flatcamGUI/ObjectUI.py:971 flatcamGUI/ObjectUI.py:1617 -#: flatcamGUI/PreferencesUI.py:2603 flatcamGUI/PreferencesUI.py:3473 +#: flatcamGUI/ObjectUI.py:995 flatcamGUI/ObjectUI.py:1656 +#: flatcamGUI/PreferencesUI.py:2604 flatcamGUI/PreferencesUI.py:3474 msgid "" "The maximum depth that the probe is allowed\n" "to probe. Negative value, in current units." @@ -8005,21 +7866,21 @@ msgstr "" "Die maximale Tiefe, in der die Sonde zulässig ist\n" "zu untersuchen. Negativer Wert in aktuellen Einheiten." -#: flatcamGUI/ObjectUI.py:985 flatcamGUI/ObjectUI.py:1632 -#: flatcamGUI/PreferencesUI.py:2614 flatcamGUI/PreferencesUI.py:3486 +#: flatcamGUI/ObjectUI.py:1009 flatcamGUI/ObjectUI.py:1671 +#: flatcamGUI/PreferencesUI.py:2615 flatcamGUI/PreferencesUI.py:3487 msgid "Feedrate Probe" msgstr "Vorschubsonde" -#: flatcamGUI/ObjectUI.py:987 flatcamGUI/ObjectUI.py:1634 -#: flatcamGUI/PreferencesUI.py:2616 flatcamGUI/PreferencesUI.py:3488 +#: flatcamGUI/ObjectUI.py:1011 flatcamGUI/ObjectUI.py:1673 +#: flatcamGUI/PreferencesUI.py:2617 flatcamGUI/PreferencesUI.py:3489 msgid "The feedrate used while the probe is probing." msgstr "Der Vorschub während der Sondenmessung." -#: flatcamGUI/ObjectUI.py:1013 flatcamGUI/PreferencesUI.py:2472 +#: flatcamGUI/ObjectUI.py:1037 flatcamGUI/PreferencesUI.py:2473 msgid "Gcode" msgstr "Gcode" -#: flatcamGUI/ObjectUI.py:1015 +#: flatcamGUI/ObjectUI.py:1039 msgid "" "Choose what to use for GCode generation:\n" "'Drills', 'Slots' or 'Both'.\n" @@ -8031,47 +7892,43 @@ msgstr "" "Wenn Sie \"Slots\" oder \"Both\" wählen, werden die Slots angezeigt\n" "in eine Reihe von Bohrern umgewandelt." -#: flatcamGUI/ObjectUI.py:1029 +#: flatcamGUI/ObjectUI.py:1053 msgid "Create Drills GCode" msgstr "Erstellen Sie einen Drill-GCode" -#: flatcamGUI/ObjectUI.py:1031 +#: flatcamGUI/ObjectUI.py:1055 msgid "Generate the CNC Job." msgstr "Generieren Sie den CNC-Job." -#: flatcamGUI/ObjectUI.py:1042 flatcamGUI/PreferencesUI.py:2490 +#: flatcamGUI/ObjectUI.py:1066 flatcamGUI/PreferencesUI.py:2491 msgid "Mill Holes" msgstr "Löcher bohren" -#: flatcamGUI/ObjectUI.py:1044 -#, 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:1068 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 "" -"Wählen Sie aus der obigen Tools-Tabelle\n" -"das loch dias das gefräst werden soll.\n" -"Verwenden Sie die Spalte #, um die Auswahl zu treffen." +"Erzeugen Sie eine Geometrie um Löcher zu bohren.\n" +"Wählen Sie aus der Werkzeugtabelle oben die Durchmesser\n" +"die gefräst werden sollen. Verwenden Sie die Spalte #, um die Auswahl zu " +"treffen." -#: flatcamGUI/ObjectUI.py:1050 flatcamGUI/PreferencesUI.py:2496 +#: flatcamGUI/ObjectUI.py:1074 flatcamGUI/PreferencesUI.py:2497 msgid "Drill Tool dia" msgstr "Bohrwerkzeugs Durchm" -#: flatcamGUI/ObjectUI.py:1052 flatcamGUI/PreferencesUI.py:1451 -#: flatcamGUI/PreferencesUI.py:2498 +#: flatcamGUI/ObjectUI.py:1076 flatcamGUI/PreferencesUI.py:1452 +#: flatcamGUI/PreferencesUI.py:2499 msgid "Diameter of the cutting tool." msgstr "Durchmesser des Schneidewerkzeugs." -#: flatcamGUI/ObjectUI.py:1059 +#: flatcamGUI/ObjectUI.py:1083 msgid "Mill Drills Geo" msgstr "Mühle bohrt Geo" -#: flatcamGUI/ObjectUI.py:1061 +#: flatcamGUI/ObjectUI.py:1085 msgid "" "Create the Geometry Object\n" "for milling DRILLS toolpaths." @@ -8079,11 +7936,11 @@ msgstr "" "Erstellen Sie das Geometrieobjekt\n" "zum Fräsen von BOHRER-Werkzeugwegen." -#: flatcamGUI/ObjectUI.py:1075 flatcamGUI/PreferencesUI.py:2507 +#: flatcamGUI/ObjectUI.py:1099 flatcamGUI/PreferencesUI.py:2508 msgid "Slot Tool dia" msgstr "Schlitzwerkzeug Durchmesser" -#: flatcamGUI/ObjectUI.py:1077 flatcamGUI/PreferencesUI.py:2509 +#: flatcamGUI/ObjectUI.py:1101 flatcamGUI/PreferencesUI.py:2510 msgid "" "Diameter of the cutting tool\n" "when milling slots." @@ -8091,11 +7948,11 @@ msgstr "" "Durchmesser des Schneidewerkzeugs\n" "beim Fräsen von Schlitzen." -#: flatcamGUI/ObjectUI.py:1086 +#: flatcamGUI/ObjectUI.py:1110 msgid "Mill Slots Geo" msgstr "Fräsen der Schlitze" -#: flatcamGUI/ObjectUI.py:1088 +#: flatcamGUI/ObjectUI.py:1112 msgid "" "Create the Geometry Object\n" "for milling SLOTS toolpaths." @@ -8103,11 +7960,11 @@ msgstr "" "Erstellen Sie das Geometrieobjekt\n" "zum Fräsen von Werkzeugwegen." -#: flatcamGUI/ObjectUI.py:1115 flatcamTools/ToolCutOut.py:315 +#: flatcamGUI/ObjectUI.py:1152 flatcamTools/ToolCutOut.py:315 msgid "Geometry Object" msgstr "Geometrieobjekt" -#: flatcamGUI/ObjectUI.py:1147 +#: flatcamGUI/ObjectUI.py:1186 msgid "" "Tools in this Geometry object used for cutting.\n" "The 'Offset' entry will set an offset for the cut.\n" @@ -8136,23 +7993,23 @@ msgstr "" "ausgegraut und Cut Z wird automatisch aus dem neuen berechnet\n" "Zeigt UI-Formulareinträge mit den Namen V-Tip Dia und V-Tip Angle an." -#: flatcamGUI/ObjectUI.py:1164 flatcamGUI/ObjectUI.py:1853 -#: flatcamGUI/PreferencesUI.py:3627 +#: flatcamGUI/ObjectUI.py:1203 flatcamGUI/ObjectUI.py:1905 +#: flatcamGUI/PreferencesUI.py:3628 msgid "Plot Object" msgstr "Plotobjekt" -#: flatcamGUI/ObjectUI.py:1178 flatcamGUI/ObjectUI.py:1866 -#: flatcamGUI/ObjectUI.py:1876 flatcamGUI/PreferencesUI.py:6172 +#: flatcamGUI/ObjectUI.py:1217 flatcamGUI/ObjectUI.py:1918 +#: flatcamGUI/ObjectUI.py:1928 flatcamGUI/PreferencesUI.py:6173 #: flatcamTools/ToolCopperThieving.py:220 msgid "Dia" msgstr "Durchm" -#: flatcamGUI/ObjectUI.py:1178 flatcamGUI/ObjectUI.py:1866 +#: flatcamGUI/ObjectUI.py:1217 flatcamGUI/ObjectUI.py:1918 #: flatcamTools/ToolNonCopperClear.py:120 flatcamTools/ToolPaint.py:123 msgid "TT" msgstr "TT" -#: flatcamGUI/ObjectUI.py:1185 +#: flatcamGUI/ObjectUI.py:1224 msgid "" "This is the Tool Number.\n" "When ToolChange is checked, on toolchange event this value\n" @@ -8163,7 +8020,7 @@ msgstr "" "Werkzeugwechselereignis angezeigt\n" "wird als T1, T2 ... Tn angezeigt" -#: flatcamGUI/ObjectUI.py:1196 +#: flatcamGUI/ObjectUI.py:1235 msgid "" "The value for the Offset can be:\n" "- Path -> There is no offset, the tool cut will be done through the geometry " @@ -8180,7 +8037,7 @@ msgstr "" "- Out (Seite) -> Der Werkzeugschnitt folgt der Geometrielinie an der " "Außenseite." -#: flatcamGUI/ObjectUI.py:1203 +#: flatcamGUI/ObjectUI.py:1242 msgid "" "The (Operation) Type has only informative value. Usually the UI form " "values \n" @@ -8203,7 +8060,7 @@ msgstr "" "Für die Isolierung benötigen wir einen niedrigeren Vorschub, da ein Fräser " "mit einer feinen Spitze verwendet wird." -#: flatcamGUI/ObjectUI.py:1212 +#: flatcamGUI/ObjectUI.py:1251 msgid "" "The Tool Type (TT) can be:\n" "- Circular with 1 ... 4 teeth -> it is informative only. Being circular the " @@ -8234,7 +8091,7 @@ msgstr "" "Durch die Auswahl des V-Shape-Werkzeugtyps wird der Operationstyp " "automatisch als Isolation ausgewählt." -#: flatcamGUI/ObjectUI.py:1224 +#: flatcamGUI/ObjectUI.py:1263 msgid "" "Plot column. It is visible only for MultiGeo geometries, meaning geometries " "that holds the geometry\n" @@ -8252,7 +8109,7 @@ msgstr "" "der Leinwand aktiviert / deaktiviert werden\n" "für das entsprechende Werkzeug." -#: flatcamGUI/ObjectUI.py:1242 +#: flatcamGUI/ObjectUI.py:1281 msgid "" "The value to offset the cut when \n" "the Offset type selected is 'Offset'.\n" @@ -8264,35 +8121,27 @@ msgstr "" "Der Wert kann für \"außerhalb\" positiv sein\n" "Cut und Negativ für \"Inside\" Cut." -#: flatcamGUI/ObjectUI.py:1267 -#, fuzzy -#| msgid "" -#| "Add a new tool to the Tool Table\n" -#| "with the diameter specified above." +#: flatcamGUI/ObjectUI.py:1306 msgid "" "Add a new tool to the Tool Table\n" "with the specified diameter." msgstr "" -"Fügen Sie der Werkzeugtabelle ein neues Werkzeug hinzu\n" -"mit dem oben angegebenen Durchmesser." +"Fügen Sie der Werkzeugtabelle ein neues Werkzeug\n" +"mit dem oben angegebenen Durchmesser hinzu." -#: flatcamGUI/ObjectUI.py:1275 +#: flatcamGUI/ObjectUI.py:1314 msgid "Add Tool from DataBase" -msgstr "" +msgstr "Werkzeug aus Werkzeugdatenbank hinzufügen" -#: flatcamGUI/ObjectUI.py:1277 -#, fuzzy -#| msgid "" -#| "Add a new tool to the Tool Table\n" -#| "with the diameter specified above." +#: flatcamGUI/ObjectUI.py:1316 msgid "" "Add a new tool to the Tool Table\n" "from the Tool DataBase." msgstr "" -"Fügen Sie der Werkzeugtabelle ein neues Werkzeug hinzu\n" -"mit dem oben angegebenen Durchmesser." +"Fügen Sie der Werkzeugtabelle ein neues Werkzeug aus der\n" +"aus der Werkzeugdatenbank hinzu." -#: flatcamGUI/ObjectUI.py:1287 +#: flatcamGUI/ObjectUI.py:1326 msgid "" "Copy a selection of tools in the Tool Table\n" "by first selecting a row in the Tool Table." @@ -8300,7 +8149,7 @@ msgstr "" "Kopieren Sie eine Auswahl von Werkzeugen in die Werkzeugtabelle\n" "indem Sie zuerst eine Zeile in der Werkzeugtabelle auswählen." -#: flatcamGUI/ObjectUI.py:1293 +#: flatcamGUI/ObjectUI.py:1332 msgid "" "Delete a selection of tools in the Tool Table\n" "by first selecting a row in the Tool Table." @@ -8308,7 +8157,7 @@ msgstr "" "Löschen Sie eine Auswahl von Werkzeugen in der Werkzeugtabelle\n" "indem Sie zuerst eine Zeile in der Werkzeugtabelle auswählen." -#: flatcamGUI/ObjectUI.py:1317 +#: flatcamGUI/ObjectUI.py:1356 msgid "" "The data used for creating GCode.\n" "Each tool store it's own set of such data." @@ -8316,13 +8165,13 @@ msgstr "" "Die Daten, die zum Erstellen von GCode verwendet werden.\n" "Jedes Werkzeug speichert seinen eigenen Satz solcher Daten." -#: flatcamGUI/ObjectUI.py:1387 flatcamGUI/PreferencesUI.py:3199 -#: flatcamGUI/PreferencesUI.py:4311 flatcamTools/ToolCutOut.py:153 +#: flatcamGUI/ObjectUI.py:1426 flatcamGUI/PreferencesUI.py:3200 +#: flatcamGUI/PreferencesUI.py:4312 flatcamTools/ToolCutOut.py:153 msgid "Multi-Depth" msgstr "Mehrfache Tiefe" -#: flatcamGUI/ObjectUI.py:1390 flatcamGUI/PreferencesUI.py:3202 -#: flatcamGUI/PreferencesUI.py:4314 flatcamTools/ToolCutOut.py:156 +#: flatcamGUI/ObjectUI.py:1429 flatcamGUI/PreferencesUI.py:3203 +#: flatcamGUI/PreferencesUI.py:4315 flatcamTools/ToolCutOut.py:156 msgid "" "Use multiple passes to limit\n" "the cut depth in each pass. Will\n" @@ -8334,12 +8183,12 @@ msgstr "" "mehrmals schneiden, bis Schnitttiefe Z\n" "erreicht ist." -#: flatcamGUI/ObjectUI.py:1404 flatcamGUI/PreferencesUI.py:4326 +#: flatcamGUI/ObjectUI.py:1443 flatcamGUI/PreferencesUI.py:4327 #: flatcamTools/ToolCutOut.py:170 msgid "Depth of each pass (positive)." msgstr "Tiefe jedes Durchgangs (positiv)." -#: flatcamGUI/ObjectUI.py:1415 flatcamGUI/PreferencesUI.py:3234 +#: flatcamGUI/ObjectUI.py:1454 flatcamGUI/PreferencesUI.py:3235 msgid "" "Height of the tool when\n" "moving without cutting." @@ -8347,7 +8196,7 @@ msgstr "" "Höhe des Werkzeugs bei\n" "Bewegen ohne zu schneiden." -#: flatcamGUI/ObjectUI.py:1442 flatcamGUI/PreferencesUI.py:3255 +#: flatcamGUI/ObjectUI.py:1481 flatcamGUI/PreferencesUI.py:3256 msgid "" "Include tool-change sequence\n" "in the Machine Code (Pause for tool change)." @@ -8355,12 +8204,12 @@ msgstr "" "Werkzeugwechselfolge einbeziehen\n" "im Maschinencode (Pause für Werkzeugwechsel)." -#: flatcamGUI/ObjectUI.py:1492 flatcamGUI/PreferencesUI.py:3306 -#: flatcamGUI/PreferencesUI.py:5484 flatcamTools/ToolSolderPaste.py:252 +#: flatcamGUI/ObjectUI.py:1531 flatcamGUI/PreferencesUI.py:3307 +#: flatcamGUI/PreferencesUI.py:5485 flatcamTools/ToolSolderPaste.py:252 msgid "Feedrate X-Y" msgstr "Vorschub X-Y" -#: flatcamGUI/ObjectUI.py:1494 flatcamGUI/PreferencesUI.py:3308 +#: flatcamGUI/ObjectUI.py:1533 flatcamGUI/PreferencesUI.py:3309 msgid "" "Cutting speed in the XY\n" "plane in units per minute" @@ -8368,7 +8217,7 @@ msgstr "" "Schnittgeschwindigkeit im XY\n" "Flugzeug in Einheiten pro Minute" -#: flatcamGUI/ObjectUI.py:1508 flatcamGUI/PreferencesUI.py:3323 +#: flatcamGUI/ObjectUI.py:1547 flatcamGUI/PreferencesUI.py:3324 msgid "" "Cutting speed in the XY\n" "plane in units per minute.\n" @@ -8378,7 +8227,7 @@ msgstr "" "Flugzeug in Einheiten pro Minute.\n" "Es heißt auch Sturz." -#: flatcamGUI/ObjectUI.py:1523 flatcamGUI/PreferencesUI.py:3432 +#: flatcamGUI/ObjectUI.py:1562 flatcamGUI/PreferencesUI.py:3433 msgid "" "Cutting speed in the XY plane\n" "(in units per minute).\n" @@ -8392,14 +8241,12 @@ msgstr "" "Es ist nur für Marlin nützlich,\n" "für andere Fälle ignorieren." -#: flatcamGUI/ObjectUI.py:1541 flatcamGUI/PreferencesUI.py:3448 -#, fuzzy -#| msgid "Re-cut 1st pt." +#: flatcamGUI/ObjectUI.py:1580 flatcamGUI/PreferencesUI.py:3449 msgid "Re-cut" -msgstr "1. Punkt erneut schneiden." +msgstr "Nachschneiden" -#: flatcamGUI/ObjectUI.py:1543 flatcamGUI/ObjectUI.py:1555 -#: flatcamGUI/PreferencesUI.py:3450 flatcamGUI/PreferencesUI.py:3462 +#: flatcamGUI/ObjectUI.py:1582 flatcamGUI/ObjectUI.py:1594 +#: flatcamGUI/PreferencesUI.py:3451 flatcamGUI/PreferencesUI.py:3463 msgid "" "In order to remove possible\n" "copper leftovers where first cut\n" @@ -8411,7 +8258,7 @@ msgstr "" "Beim letzten Schnitt treffen wir einen\n" "verlängerter Schnitt über dem ersten Schnittabschnitt." -#: flatcamGUI/ObjectUI.py:1569 flatcamGUI/PreferencesUI.py:3340 +#: flatcamGUI/ObjectUI.py:1608 flatcamGUI/PreferencesUI.py:3341 msgid "" "Speed of the spindle in RPM (optional).\n" "If LASER preprocessor is used,\n" @@ -8421,12 +8268,12 @@ msgstr "" "Wenn LASER-Postprozessor verwendet wird,\n" "Dieser Wert ist die Leistung des Lasers." -#: flatcamGUI/ObjectUI.py:1603 flatcamGUI/PreferencesUI.py:5573 +#: flatcamGUI/ObjectUI.py:1642 flatcamGUI/PreferencesUI.py:5574 #: flatcamTools/ToolSolderPaste.py:334 msgid "PostProcessor" msgstr "Postprozessor" -#: flatcamGUI/ObjectUI.py:1605 flatcamGUI/PreferencesUI.py:3377 +#: flatcamGUI/ObjectUI.py:1644 flatcamGUI/PreferencesUI.py:3378 msgid "" "The Preprocessor file that dictates\n" "the Machine Code (like GCode, RML, HPGL) output." @@ -8434,17 +8281,19 @@ msgstr "" "Die Postprozessor-Datei, die diktiert\n" "den Maschinencode (wie GCode, RML, HPGL)." -#: flatcamGUI/ObjectUI.py:1652 +#: flatcamGUI/ObjectUI.py:1691 msgid "Apply parameters to all tools" -msgstr "" +msgstr "Parameter auf alle Werkzeuge anwenden" -#: flatcamGUI/ObjectUI.py:1654 +#: flatcamGUI/ObjectUI.py:1693 msgid "" "The parameters in the current form will be applied\n" "on all the tools from the Tool Table." msgstr "" +"Die aktuell angegebenen Parameter werden allen Werkzeugen der " +"Werkzeugtabelle zugeordnet." -#: flatcamGUI/ObjectUI.py:1663 +#: flatcamGUI/ObjectUI.py:1702 msgid "" "Add at least one tool in the tool-table.\n" "Click the header to select all, or Ctrl + LMB\n" @@ -8456,21 +8305,19 @@ msgstr "" "oder drücken Sie Strg + LMB\n" "zur benutzerdefinierten Auswahl von Werkzeugen." -#: flatcamGUI/ObjectUI.py:1670 -#, fuzzy -#| msgid "Generate the CNC Job object." +#: flatcamGUI/ObjectUI.py:1709 msgid "Generate CNCJob object" -msgstr "Generieren Sie das CNC-Job-Objekt." +msgstr "Generieren des CNC-Job-Objekts" -#: flatcamGUI/ObjectUI.py:1672 +#: flatcamGUI/ObjectUI.py:1711 msgid "Generate the CNC Job object." msgstr "Generieren Sie das CNC-Job-Objekt." -#: flatcamGUI/ObjectUI.py:1689 +#: flatcamGUI/ObjectUI.py:1728 msgid "Launch Paint Tool in Tools Tab." msgstr "Starten Sie das Paint Werkzeug in der Registerkarte \"Tools\"." -#: flatcamGUI/ObjectUI.py:1697 flatcamGUI/PreferencesUI.py:4489 +#: flatcamGUI/ObjectUI.py:1736 flatcamGUI/PreferencesUI.py:4490 msgid "" "Creates tool paths to cover the\n" "whole area of a polygon (remove\n" @@ -8482,15 +8329,15 @@ msgstr "" "alles Kupfer). Du wirst gefragt\n" "Klicken Sie auf das gewünschte Polygon." -#: flatcamGUI/ObjectUI.py:1737 +#: flatcamGUI/ObjectUI.py:1788 msgid "CNC Job Object" msgstr "CNC-Auftragsobjekt" -#: flatcamGUI/ObjectUI.py:1748 flatcamGUI/PreferencesUI.py:3632 +#: flatcamGUI/ObjectUI.py:1800 flatcamGUI/PreferencesUI.py:3633 msgid "Plot kind" msgstr "Darstellungsart" -#: flatcamGUI/ObjectUI.py:1751 flatcamGUI/PreferencesUI.py:3634 +#: flatcamGUI/ObjectUI.py:1803 flatcamGUI/PreferencesUI.py:3635 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" @@ -8503,15 +8350,15 @@ msgstr "" "über dem Werkstück oder es kann vom Typ 'Ausschneiden' sein,\n" "was bedeutet, dass die Bewegungen, die in das Material geschnitten werden." -#: flatcamGUI/ObjectUI.py:1760 flatcamGUI/PreferencesUI.py:3642 +#: flatcamGUI/ObjectUI.py:1812 flatcamGUI/PreferencesUI.py:3643 msgid "Travel" msgstr "Reise" -#: flatcamGUI/ObjectUI.py:1764 flatcamGUI/PreferencesUI.py:3651 +#: flatcamGUI/ObjectUI.py:1816 flatcamGUI/PreferencesUI.py:3652 msgid "Display Annotation" msgstr "Anmerkung anzeigen" -#: flatcamGUI/ObjectUI.py:1766 flatcamGUI/PreferencesUI.py:3653 +#: flatcamGUI/ObjectUI.py:1818 flatcamGUI/PreferencesUI.py:3654 msgid "" "This selects if to display text annotation on the plot.\n" "When checked it will display numbers in order for each end\n" @@ -8523,11 +8370,11 @@ msgstr "" "richtigen Reihenfolge angezeigt\n" "einer Reiseleitung." -#: flatcamGUI/ObjectUI.py:1781 +#: flatcamGUI/ObjectUI.py:1833 msgid "Travelled dist." -msgstr "Zurückgelegte Strecke" +msgstr "Zurückgelegte Strecke." -#: flatcamGUI/ObjectUI.py:1783 flatcamGUI/ObjectUI.py:1788 +#: flatcamGUI/ObjectUI.py:1835 flatcamGUI/ObjectUI.py:1840 msgid "" "This is the total travelled distance on X-Y plane.\n" "In current units." @@ -8535,11 +8382,11 @@ msgstr "" "Dies ist die Gesamtstrecke auf der X-Y-Ebene.\n" "In aktuellen Einheiten." -#: flatcamGUI/ObjectUI.py:1793 +#: flatcamGUI/ObjectUI.py:1845 msgid "Estimated time" msgstr "Geschätzte Zeit" -#: flatcamGUI/ObjectUI.py:1795 flatcamGUI/ObjectUI.py:1800 +#: flatcamGUI/ObjectUI.py:1847 flatcamGUI/ObjectUI.py:1852 msgid "" "This is the estimated time to do the routing/drilling,\n" "without the time spent in ToolChange events." @@ -8547,11 +8394,11 @@ msgstr "" "Dies ist die geschätzte Zeit für das Fräsen / Bohren.\n" "ohne die Zeit, die in Werkzeugwechselereignissen verbracht wird." -#: flatcamGUI/ObjectUI.py:1835 +#: flatcamGUI/ObjectUI.py:1887 msgid "CNC Tools Table" msgstr "CNC Werkzeugtabelle" -#: flatcamGUI/ObjectUI.py:1838 +#: flatcamGUI/ObjectUI.py:1890 msgid "" "Tools in this CNCJob object used for cutting.\n" "The tool diameter is used for plotting on canvas.\n" @@ -8573,24 +8420,24 @@ msgstr "" "Der 'Werkzeugtyp' (TT) kann kreisförmig mit 1 bis 4 Zähnen (C1..C4) sein.\n" "Kugel (B) oder V-Form (V)." -#: flatcamGUI/ObjectUI.py:1866 flatcamGUI/ObjectUI.py:1877 +#: flatcamGUI/ObjectUI.py:1918 flatcamGUI/ObjectUI.py:1929 msgid "P" msgstr "P" -#: flatcamGUI/ObjectUI.py:1887 +#: flatcamGUI/ObjectUI.py:1939 msgid "Update Plot" msgstr "Plot aktualisieren" -#: flatcamGUI/ObjectUI.py:1889 +#: flatcamGUI/ObjectUI.py:1941 msgid "Update the plot." msgstr "Aktualisieren Sie die Darstellung." -#: flatcamGUI/ObjectUI.py:1896 flatcamGUI/PreferencesUI.py:3819 +#: flatcamGUI/ObjectUI.py:1948 flatcamGUI/PreferencesUI.py:3820 msgid "Export CNC Code" msgstr "CNC-Code exportieren" -#: flatcamGUI/ObjectUI.py:1898 flatcamGUI/PreferencesUI.py:3760 -#: flatcamGUI/PreferencesUI.py:3821 +#: flatcamGUI/ObjectUI.py:1950 flatcamGUI/PreferencesUI.py:3761 +#: flatcamGUI/PreferencesUI.py:3822 msgid "" "Export and save G-Code to\n" "make this object to a file." @@ -8598,39 +8445,39 @@ msgstr "" "Exportieren und speichern Sie den G-Code nach\n" "Machen Sie dieses Objekt in eine Datei." -#: flatcamGUI/ObjectUI.py:1904 +#: flatcamGUI/ObjectUI.py:1956 msgid "Prepend to CNC Code" msgstr "CNC-Code voranstellen" -#: flatcamGUI/ObjectUI.py:1906 flatcamGUI/ObjectUI.py:1913 -#: flatcamGUI/PreferencesUI.py:3776 flatcamGUI/PreferencesUI.py:3783 +#: flatcamGUI/ObjectUI.py:1958 flatcamGUI/ObjectUI.py:1965 +#: flatcamGUI/PreferencesUI.py:3777 flatcamGUI/PreferencesUI.py:3784 msgid "" "Type here any G-Code commands you would\n" "like to add at the beginning of the G-Code file." msgstr "" "Geben Sie hier alle G-Code-Befehle ein\n" -"gerne am Anfang der G-Code-Datei hinzufügen." +"die Sie am Anfang der G-Code-Datei hinzufügen möchten." -#: flatcamGUI/ObjectUI.py:1919 +#: flatcamGUI/ObjectUI.py:1971 msgid "Append to CNC Code" msgstr "An CNC Code anhängen" -#: flatcamGUI/ObjectUI.py:1921 flatcamGUI/ObjectUI.py:1929 -#: flatcamGUI/PreferencesUI.py:3792 flatcamGUI/PreferencesUI.py:3800 +#: flatcamGUI/ObjectUI.py:1973 flatcamGUI/ObjectUI.py:1981 +#: flatcamGUI/PreferencesUI.py:3793 flatcamGUI/PreferencesUI.py:3801 msgid "" "Type here any G-Code commands you would\n" "like to append to the generated file.\n" "I.e.: M2 (End of program)" msgstr "" "Geben Sie hier alle G-Code-Befehle ein\n" -"gerne an die generierte Datei anhängen.\n" -"I.e .: M2 (Programmende)" +"die Sie an die generierte Datei anhängen möchten.\n" +"z.B.: M2 (Programmende)" -#: flatcamGUI/ObjectUI.py:1943 flatcamGUI/PreferencesUI.py:3827 +#: flatcamGUI/ObjectUI.py:1995 flatcamGUI/PreferencesUI.py:3828 msgid "Toolchange G-Code" msgstr "Werkzeugwechsel G-Code" -#: flatcamGUI/ObjectUI.py:1946 flatcamGUI/PreferencesUI.py:3830 +#: flatcamGUI/ObjectUI.py:1998 flatcamGUI/PreferencesUI.py:3831 msgid "" "Type here any G-Code commands you would\n" "like to be executed when Toolchange event is encountered.\n" @@ -8652,18 +8499,7 @@ msgstr "" "das hat \"toolchange_custom\" im Namen und das ist gebaut\n" "mit der \"Toolchange Custom\" -Prozessordatei als Vorlage." -#: flatcamGUI/ObjectUI.py:1961 flatcamGUI/PreferencesUI.py:3853 -#, 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:2013 flatcamGUI/PreferencesUI.py:3854 msgid "" "Type here any G-Code commands you would\n" "like to be executed when Toolchange event is encountered.\n" @@ -8673,21 +8509,22 @@ msgid "" "WARNING: it can be used only with a preprocessor file\n" "that has 'toolchange_custom' in it's name." msgstr "" -"Geben Sie hier alle G-Code-Befehle ein\n" -"Wird ausgeführt, wenn ein Werkzeugwechselereignis auftritt.\n" -"Dies stellt einen benutzerdefinierten Werkzeugwechsel-GCode dar.\n" -"oder ein Werkzeugwechsel-Makro.\n" +"Geben Sie hier G-Code-Befehle ein\n" +"die ausgeführt werden, wenn ein Werkzeugwechselereignis auftritt.\n" +"So kann ein benutzerdefinierter Werkzeugwechsel in GCode definiert werden.\n" "Die FlatCAM-Variablen sind vom '%'-Symbol umgeben.\n" "\n" -"WARNUNG: Es kann nur mit einer Postprozessor-Datei verwendet werden\n" -"das hat \"toolchange_custom\" im Namen und das ist gebaut\n" -"mit der \"Toolchange Custom\" -Prozessordatei als Vorlage." +"WARNUNG: Ein Werkzeugwechselereignis kann nur mit einer Präprozessor-Datei " +"verwendet werden\n" +"die das Präfix \"toolchange_custom\" im Namen hat und nach Vorlage der \n" +" \n" +"\"Toolchange Custom\" -Prozessordatei erzeugt wurde." -#: flatcamGUI/ObjectUI.py:1976 flatcamGUI/PreferencesUI.py:3869 +#: flatcamGUI/ObjectUI.py:2028 flatcamGUI/PreferencesUI.py:3870 msgid "Use Toolchange Macro" msgstr "Benutze das Werkzeugwechselmakro" -#: flatcamGUI/ObjectUI.py:1978 flatcamGUI/PreferencesUI.py:3871 +#: flatcamGUI/ObjectUI.py:2030 flatcamGUI/PreferencesUI.py:3872 msgid "" "Check this box if you want to use\n" "a Custom Toolchange GCode (macro)." @@ -8695,7 +8532,7 @@ msgstr "" "Aktivieren Sie dieses Kontrollkästchen, wenn Sie verwenden möchten\n" "ein benutzerdefiniertes Werkzeug ändert GCode (Makro)." -#: flatcamGUI/ObjectUI.py:1986 flatcamGUI/PreferencesUI.py:3883 +#: flatcamGUI/ObjectUI.py:2038 flatcamGUI/PreferencesUI.py:3884 msgid "" "A list of the FlatCAM variables that can be used\n" "in the Toolchange event.\n" @@ -8705,74 +8542,74 @@ msgstr "" "im Werkzeugwechselereignis.\n" "Sie müssen mit dem \"%\" -Symbol umgeben sein" -#: 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 +#: flatcamGUI/ObjectUI.py:2045 flatcamGUI/PreferencesUI.py:1852 +#: flatcamGUI/PreferencesUI.py:2825 flatcamGUI/PreferencesUI.py:3570 +#: flatcamGUI/PreferencesUI.py:3891 flatcamGUI/PreferencesUI.py:3973 +#: flatcamGUI/PreferencesUI.py:4265 flatcamGUI/PreferencesUI.py:4424 +#: flatcamGUI/PreferencesUI.py:4646 flatcamGUI/PreferencesUI.py:4943 +#: flatcamGUI/PreferencesUI.py:5194 flatcamGUI/PreferencesUI.py:5370 +#: flatcamGUI/PreferencesUI.py:5595 flatcamGUI/PreferencesUI.py:5617 +#: flatcamGUI/PreferencesUI.py:5841 flatcamGUI/PreferencesUI.py:5878 +#: flatcamGUI/PreferencesUI.py:6072 flatcamGUI/PreferencesUI.py:6326 +#: flatcamGUI/PreferencesUI.py:6442 flatcamTools/ToolCopperThieving.py:89 #: flatcamTools/ToolFiducials.py:149 flatcamTools/ToolNonCopperClear.py:315 msgid "Parameters" msgstr "Parameters" -#: flatcamGUI/ObjectUI.py:1996 flatcamGUI/PreferencesUI.py:3893 +#: flatcamGUI/ObjectUI.py:2048 flatcamGUI/PreferencesUI.py:3894 msgid "FlatCAM CNC parameters" msgstr "FlatCAM CNC-Parameter" -#: flatcamGUI/ObjectUI.py:1997 flatcamGUI/PreferencesUI.py:3894 +#: flatcamGUI/ObjectUI.py:2049 flatcamGUI/PreferencesUI.py:3895 msgid "tool number" msgstr "Werkzeugnummer" -#: flatcamGUI/ObjectUI.py:1998 flatcamGUI/PreferencesUI.py:3895 +#: flatcamGUI/ObjectUI.py:2050 flatcamGUI/PreferencesUI.py:3896 msgid "tool diameter" msgstr "Werkzeugdurchmesser" -#: flatcamGUI/ObjectUI.py:1999 flatcamGUI/PreferencesUI.py:3896 +#: flatcamGUI/ObjectUI.py:2051 flatcamGUI/PreferencesUI.py:3897 msgid "for Excellon, total number of drills" msgstr "für Excellon die Gesamtzahl der Bohrer" -#: flatcamGUI/ObjectUI.py:2001 flatcamGUI/PreferencesUI.py:3898 +#: flatcamGUI/ObjectUI.py:2053 flatcamGUI/PreferencesUI.py:3899 msgid "X coord for Toolchange" msgstr "X-Koordinate für Werkzeugwechsel" -#: flatcamGUI/ObjectUI.py:2002 flatcamGUI/PreferencesUI.py:3899 +#: flatcamGUI/ObjectUI.py:2054 flatcamGUI/PreferencesUI.py:3900 msgid "Y coord for Toolchange" msgstr "Y-Koordinate für Werkzeugwechsel" -#: flatcamGUI/ObjectUI.py:2003 flatcamGUI/PreferencesUI.py:3901 +#: flatcamGUI/ObjectUI.py:2055 flatcamGUI/PreferencesUI.py:3902 msgid "Z coord for Toolchange" msgstr "Z-Koordinate für Werkzeugwechsel" -#: flatcamGUI/ObjectUI.py:2004 +#: flatcamGUI/ObjectUI.py:2056 msgid "depth where to cut" msgstr "tiefe wo zu schneiden" -#: flatcamGUI/ObjectUI.py:2005 +#: flatcamGUI/ObjectUI.py:2057 msgid "height where to travel" msgstr "Höhe, wohin man reist" -#: flatcamGUI/ObjectUI.py:2006 flatcamGUI/PreferencesUI.py:3904 +#: flatcamGUI/ObjectUI.py:2058 flatcamGUI/PreferencesUI.py:3905 msgid "the step value for multidepth cut" msgstr "der Schrittwert für den mehrstufigen Schnitt" -#: flatcamGUI/ObjectUI.py:2008 flatcamGUI/PreferencesUI.py:3906 +#: flatcamGUI/ObjectUI.py:2060 flatcamGUI/PreferencesUI.py:3907 msgid "the value for the spindle speed" msgstr "der Wert für die Spindeldrehzahl" -#: flatcamGUI/ObjectUI.py:2010 +#: flatcamGUI/ObjectUI.py:2062 msgid "time to dwell to allow the spindle to reach it's set RPM" msgstr "" "Zeit zum Verweilen, damit die Spindel die eingestellte Drehzahl erreicht" -#: flatcamGUI/ObjectUI.py:2026 +#: flatcamGUI/ObjectUI.py:2078 msgid "View CNC Code" msgstr "CNC-Code anzeigen" -#: flatcamGUI/ObjectUI.py:2028 +#: flatcamGUI/ObjectUI.py:2080 msgid "" "Opens TAB to view/modify/print G-Code\n" "file." @@ -8780,11 +8617,11 @@ msgstr "" "Öffnet die Registerkarte zum Anzeigen / Ändern / Drucken von G-Code\n" "Datei." -#: flatcamGUI/ObjectUI.py:2033 +#: flatcamGUI/ObjectUI.py:2085 msgid "Save CNC Code" msgstr "CNC-Code speichern" -#: flatcamGUI/ObjectUI.py:2035 +#: flatcamGUI/ObjectUI.py:2087 msgid "" "Opens dialog to save G-Code\n" "file." @@ -8792,79 +8629,79 @@ msgstr "" "Öffnet den Dialog zum Speichern des G-Codes\n" "Datei." -#: flatcamGUI/ObjectUI.py:2055 +#: flatcamGUI/ObjectUI.py:2118 msgid "Script Object" msgstr "Skriptobjekt" -#: flatcamGUI/ObjectUI.py:2077 flatcamGUI/ObjectUI.py:2139 +#: flatcamGUI/ObjectUI.py:2140 flatcamGUI/ObjectUI.py:2213 msgid "Auto Completer" msgstr "Auto-Vervollständiger" -#: flatcamGUI/ObjectUI.py:2079 +#: flatcamGUI/ObjectUI.py:2142 msgid "This selects if the auto completer is enabled in the Script Editor." msgstr "" "Hiermit wird ausgewählt, ob der automatische Vervollständiger im Skript-" "Editor aktiviert ist." -#: flatcamGUI/ObjectUI.py:2110 +#: flatcamGUI/ObjectUI.py:2184 msgid "Document Object" msgstr "Dokumentobjekt" -#: flatcamGUI/ObjectUI.py:2141 +#: flatcamGUI/ObjectUI.py:2215 msgid "This selects if the auto completer is enabled in the Document Editor." msgstr "" "Hiermit wird ausgewählt, ob der automatische Vervollständiger im " "Dokumenteditor aktiviert ist." -#: flatcamGUI/ObjectUI.py:2159 +#: flatcamGUI/ObjectUI.py:2233 msgid "Font Type" msgstr "Schriftart" -#: flatcamGUI/ObjectUI.py:2176 +#: flatcamGUI/ObjectUI.py:2250 msgid "Font Size" msgstr "Schriftgröße" -#: flatcamGUI/ObjectUI.py:2212 +#: flatcamGUI/ObjectUI.py:2286 msgid "Alignment" msgstr "Ausrichtung" -#: flatcamGUI/ObjectUI.py:2217 +#: flatcamGUI/ObjectUI.py:2291 msgid "Align Left" msgstr "Linksbündig" -#: flatcamGUI/ObjectUI.py:2222 +#: flatcamGUI/ObjectUI.py:2296 msgid "Center" msgstr "Center" -#: flatcamGUI/ObjectUI.py:2227 +#: flatcamGUI/ObjectUI.py:2301 msgid "Align Right" msgstr "Rechts ausrichten" -#: flatcamGUI/ObjectUI.py:2232 +#: flatcamGUI/ObjectUI.py:2306 msgid "Justify" msgstr "Rechtfertigen" -#: flatcamGUI/ObjectUI.py:2239 +#: flatcamGUI/ObjectUI.py:2313 msgid "Font Color" msgstr "Schriftfarbe" -#: flatcamGUI/ObjectUI.py:2241 +#: flatcamGUI/ObjectUI.py:2315 msgid "Set the font color for the selected text" msgstr "Stellen Sie die Schriftfarbe für den ausgewählten Text ein" -#: flatcamGUI/ObjectUI.py:2255 +#: flatcamGUI/ObjectUI.py:2329 msgid "Selection Color" msgstr "Auswahlfarbe" -#: flatcamGUI/ObjectUI.py:2257 +#: flatcamGUI/ObjectUI.py:2331 msgid "Set the selection color when doing text selection." msgstr "Stellen Sie die Auswahlfarbe bei der Textauswahl ein." -#: flatcamGUI/ObjectUI.py:2271 +#: flatcamGUI/ObjectUI.py:2345 msgid "Tab Size" msgstr "Tab-Größe" -#: flatcamGUI/ObjectUI.py:2273 +#: flatcamGUI/ObjectUI.py:2347 msgid "Set the tab size. In pixels. Default value is 80 pixels." msgstr "" "Stellen Sie die Größe der Registerkarte ein. In Pixeln. Der Standardwert " @@ -8915,10 +8752,8 @@ msgstr "" "Ziel ist es, die Grenzen unserer Arbeit aufzuzeigen." #: flatcamGUI/PreferencesUI.py:359 -#, fuzzy -#| msgid "Seg. X size" msgid "Wk. size" -msgstr "Seg. X Größe" +msgstr "Arbeitsgröße" #: flatcamGUI/PreferencesUI.py:361 msgid "" @@ -8930,25 +8765,28 @@ msgstr "" #: flatcamGUI/PreferencesUI.py:429 msgid "Wk. Orientation" -msgstr "" +msgstr "Ausrichtung des Arbeitsbereiches" -#: flatcamGUI/PreferencesUI.py:430 flatcamGUI/PreferencesUI.py:4853 +#: flatcamGUI/PreferencesUI.py:430 flatcamGUI/PreferencesUI.py:4854 #: flatcamTools/ToolFilm.py:420 msgid "" "Can be:\n" "- Portrait\n" "- Landscape" msgstr "" +"Eines von\n" +"- Hochformat\n" +"- Querformat" -#: flatcamGUI/PreferencesUI.py:434 flatcamGUI/PreferencesUI.py:4857 +#: flatcamGUI/PreferencesUI.py:434 flatcamGUI/PreferencesUI.py:4858 #: flatcamTools/ToolFilm.py:424 msgid "Portrait" -msgstr "" +msgstr "Hochformat" -#: flatcamGUI/PreferencesUI.py:435 flatcamGUI/PreferencesUI.py:4858 +#: flatcamGUI/PreferencesUI.py:435 flatcamGUI/PreferencesUI.py:4859 #: flatcamTools/ToolFilm.py:425 msgid "Landscape" -msgstr "" +msgstr "Querformat" #: flatcamGUI/PreferencesUI.py:447 msgid "Plot Fill" @@ -9147,7 +8985,7 @@ msgstr "" "Aktivieren Sie die High DPI-Unterstützung für FlatCAM.\n" "Es wird beim nächsten Start der App angewendet." -#: flatcamGUI/PreferencesUI.py:782 flatcamGUI/PreferencesUI.py:1032 +#: flatcamGUI/PreferencesUI.py:782 flatcamGUI/PreferencesUI.py:1033 msgid "Clear GUI Settings" msgstr "Löschen Sie die GUI-Einstellungen" @@ -9161,7 +8999,7 @@ msgstr "" #: flatcamGUI/PreferencesUI.py:794 msgid "Hover Shape" -msgstr "schwebende Form" +msgstr "Schwebende Form" #: flatcamGUI/PreferencesUI.py:796 msgid "" @@ -9235,19 +9073,19 @@ msgstr "" "Aktivieren Sie die Anzeige des Begrüßungsbildschirms beim Start der " "Anwendung." -#: flatcamGUI/PreferencesUI.py:899 +#: flatcamGUI/PreferencesUI.py:900 msgid "Sys Tray Icon" msgstr "Systray-Symbol" -#: flatcamGUI/PreferencesUI.py:901 +#: flatcamGUI/PreferencesUI.py:902 msgid "Enable display of FlatCAM icon in Sys Tray." msgstr "Anzeige des FlatCAM-Symbols in Systray aktivieren." -#: flatcamGUI/PreferencesUI.py:909 +#: flatcamGUI/PreferencesUI.py:910 msgid "Shell at StartUp" msgstr "Shell beim Start" -#: flatcamGUI/PreferencesUI.py:911 flatcamGUI/PreferencesUI.py:916 +#: flatcamGUI/PreferencesUI.py:912 flatcamGUI/PreferencesUI.py:917 msgid "" "Check this box if you want the shell to\n" "start automatically at startup." @@ -9256,11 +9094,11 @@ msgstr "" "möchten\n" "Beim Start automatisch starten." -#: flatcamGUI/PreferencesUI.py:924 +#: flatcamGUI/PreferencesUI.py:925 msgid "Project at StartUp" msgstr "Projekt beim Start" -#: flatcamGUI/PreferencesUI.py:926 flatcamGUI/PreferencesUI.py:931 +#: flatcamGUI/PreferencesUI.py:927 flatcamGUI/PreferencesUI.py:932 msgid "" "Check this box if you want the project/selected/tool tab area to\n" "to be shown automatically at startup." @@ -9270,11 +9108,11 @@ msgstr "" "angezeigt werden soll\n" "beim Start automatisch angezeigt werden." -#: flatcamGUI/PreferencesUI.py:939 +#: flatcamGUI/PreferencesUI.py:940 msgid "Project AutoHide" msgstr "Projekt autoausblenden" -#: flatcamGUI/PreferencesUI.py:941 flatcamGUI/PreferencesUI.py:947 +#: flatcamGUI/PreferencesUI.py:942 flatcamGUI/PreferencesUI.py:948 msgid "" "Check this box if you want the project/selected/tool tab area to\n" "hide automatically when there are no objects loaded and\n" @@ -9286,11 +9124,11 @@ msgstr "" "keine Objekte geladen sind und anzeigen, wenn ein \n" "neues Objekt erstellt wird." -#: flatcamGUI/PreferencesUI.py:958 +#: flatcamGUI/PreferencesUI.py:959 msgid "Enable ToolTips" msgstr "QuickInfos aktivieren" -#: flatcamGUI/PreferencesUI.py:960 flatcamGUI/PreferencesUI.py:965 +#: flatcamGUI/PreferencesUI.py:961 flatcamGUI/PreferencesUI.py:966 msgid "" "Check this box if you want to have toolTips displayed\n" "when hovering with mouse over items throughout the App." @@ -9299,11 +9137,11 @@ msgstr "" "sollen\n" "wenn Sie mit der Maus über Elemente in der App fahren." -#: flatcamGUI/PreferencesUI.py:973 +#: flatcamGUI/PreferencesUI.py:974 msgid "Mouse Cursor" msgstr "Mauszeiger" -#: flatcamGUI/PreferencesUI.py:975 +#: flatcamGUI/PreferencesUI.py:976 msgid "" "Choose a mouse cursor shape.\n" "- Small -> with a customizable size.\n" @@ -9313,27 +9151,27 @@ msgstr "" "- Klein -> mit einer anpassbaren Größe.\n" "- Groß -> Unendliche Linien" -#: flatcamGUI/PreferencesUI.py:981 +#: flatcamGUI/PreferencesUI.py:982 msgid "Small" msgstr "Klein" -#: flatcamGUI/PreferencesUI.py:982 +#: flatcamGUI/PreferencesUI.py:983 msgid "Big" msgstr "Groß" -#: flatcamGUI/PreferencesUI.py:988 +#: flatcamGUI/PreferencesUI.py:989 msgid "Mouse Cursor Size" msgstr "Mauszeigergröße" -#: flatcamGUI/PreferencesUI.py:990 +#: flatcamGUI/PreferencesUI.py:991 msgid "Set the size of the mouse cursor, in pixels." msgstr "Stellen Sie die Größe des Mauszeigers in Pixel ein." -#: flatcamGUI/PreferencesUI.py:1001 +#: flatcamGUI/PreferencesUI.py:1002 msgid "Delete object confirmation" msgstr "Objektbestätigung löschen" -#: flatcamGUI/PreferencesUI.py:1003 +#: flatcamGUI/PreferencesUI.py:1004 msgid "" "When checked the application will ask for user confirmation\n" "whenever the Delete object(s) event is triggered, either by\n" @@ -9344,22 +9182,22 @@ msgstr "" "löschen ausgelöst wird, entweder durch\n" "Menüverknüpfung oder Tastenkombination." -#: flatcamGUI/PreferencesUI.py:1029 +#: flatcamGUI/PreferencesUI.py:1030 msgid "Are you sure you want to delete the GUI Settings? \n" msgstr "Möchten Sie die GUI-Einstellungen wirklich löschen?\n" -#: flatcamGUI/PreferencesUI.py:1053 +#: flatcamGUI/PreferencesUI.py:1054 msgid "App Preferences" msgstr "App-Einstellungen" -#: flatcamGUI/PreferencesUI.py:1063 flatcamGUI/PreferencesUI.py:1388 -#: flatcamGUI/PreferencesUI.py:1763 flatcamGUI/PreferencesUI.py:2686 +#: flatcamGUI/PreferencesUI.py:1064 flatcamGUI/PreferencesUI.py:1389 +#: flatcamGUI/PreferencesUI.py:1764 flatcamGUI/PreferencesUI.py:2687 #: flatcamTools/ToolDistance.py:49 flatcamTools/ToolDistanceMin.py:49 #: flatcamTools/ToolPcbWizard.py:127 flatcamTools/ToolProperties.py:152 msgid "Units" msgstr "Einheiten" -#: flatcamGUI/PreferencesUI.py:1064 +#: flatcamGUI/PreferencesUI.py:1065 msgid "" "The default value for FlatCAM units.\n" "Whatever is selected here is set every time\n" @@ -9369,48 +9207,52 @@ msgstr "" "Was hier ausgewählt wird, wird jedes Mal eingestellt\n" "FLatCAM wird gestartet." -#: flatcamGUI/PreferencesUI.py:1067 flatcamGUI/PreferencesUI.py:1394 -#: flatcamGUI/PreferencesUI.py:1769 flatcamGUI/PreferencesUI.py:2223 -#: flatcamGUI/PreferencesUI.py:2692 flatcamTools/ToolCalculators.py:62 +#: flatcamGUI/PreferencesUI.py:1068 flatcamGUI/PreferencesUI.py:1395 +#: flatcamGUI/PreferencesUI.py:1770 flatcamGUI/PreferencesUI.py:2224 +#: flatcamGUI/PreferencesUI.py:2693 flatcamTools/ToolCalculators.py:62 #: flatcamTools/ToolPcbWizard.py:126 msgid "MM" msgstr "MM" -#: flatcamGUI/PreferencesUI.py:1068 +#: flatcamGUI/PreferencesUI.py:1069 msgid "IN" msgstr "ZOLL" -#: flatcamGUI/PreferencesUI.py:1074 -#, fuzzy -#| msgid "Precision" +#: flatcamGUI/PreferencesUI.py:1075 msgid "Precision MM" -msgstr "Präzision" +msgstr "Präzision in mm" -#: flatcamGUI/PreferencesUI.py:1076 +#: flatcamGUI/PreferencesUI.py:1077 msgid "" "The number of decimals used throughout the application\n" "when the set units are in METRIC system.\n" "Any change here require an application restart." msgstr "" +"Die Anzahl der Nachkommastellen die in der gesamten Applikation verwendet " +"werden\n" +"wenn das Metrische Einheitensystem verwendet wird.\n" +"Jede Änderung erfordert einen Neustart der Applikation." -#: flatcamGUI/PreferencesUI.py:1088 -#, fuzzy -#| msgid "Precision" +#: flatcamGUI/PreferencesUI.py:1089 msgid "Precision INCH" -msgstr "Präzision" +msgstr "Präzision (Zoll)" -#: flatcamGUI/PreferencesUI.py:1090 +#: flatcamGUI/PreferencesUI.py:1091 msgid "" "The number of decimals used throughout the application\n" "when the set units are in INCH system.\n" "Any change here require an application restart." msgstr "" +"Die Anzahl der Nachkommastellen die in der gesamten Applikation verwendet " +"werden\n" +"wenn das Imperiale (Inches) Einheitensystem verwendet wird.\n" +"Jede Änderung erfordert einen Neustart der Applikation." -#: flatcamGUI/PreferencesUI.py:1102 +#: flatcamGUI/PreferencesUI.py:1103 msgid "Graphic Engine" msgstr "Grafik-Engine" -#: flatcamGUI/PreferencesUI.py:1103 +#: flatcamGUI/PreferencesUI.py:1104 msgid "" "Choose what graphic engine to use in FlatCAM.\n" "Legacy(2D) -> reduced functionality, slow performance but enhanced " @@ -9429,19 +9271,19 @@ msgstr "" "Intel HD3000 oder älter. In diesem Fall ist der Plotbereich daher schwarz\n" "Verwenden Sie den Legacy (2D) -Modus." -#: flatcamGUI/PreferencesUI.py:1109 +#: flatcamGUI/PreferencesUI.py:1110 msgid "Legacy(2D)" msgstr "Legacy (2D)" -#: flatcamGUI/PreferencesUI.py:1110 +#: flatcamGUI/PreferencesUI.py:1111 msgid "OpenGL(3D)" msgstr "OpenGL (3D)" -#: flatcamGUI/PreferencesUI.py:1117 +#: flatcamGUI/PreferencesUI.py:1118 msgid "APP. LEVEL" msgstr "Darstellung" -#: flatcamGUI/PreferencesUI.py:1118 +#: flatcamGUI/PreferencesUI.py:1119 msgid "" "Choose the default level of usage for FlatCAM.\n" "BASIC level -> reduced functionality, best for beginner's.\n" @@ -9457,11 +9299,11 @@ msgstr "" "Die Auswahl hier beeinflusst die Parameter in\n" "Die Registerkarte Ausgewählt für alle Arten von FlatCAM-Objekten." -#: flatcamGUI/PreferencesUI.py:1130 +#: flatcamGUI/PreferencesUI.py:1131 msgid "Portable app" msgstr "Portable Anwendung" -#: flatcamGUI/PreferencesUI.py:1131 +#: flatcamGUI/PreferencesUI.py:1132 msgid "" "Choose if the application should run as portable.\n" "\n" @@ -9475,19 +9317,19 @@ msgstr "" "Dies bedeutet, dass die Voreinstellungsdateien gespeichert werden\n" "Im Anwendungsordner, im Unterordner lib \\ config." -#: flatcamGUI/PreferencesUI.py:1141 +#: flatcamGUI/PreferencesUI.py:1142 msgid "Languages" msgstr "Sprachen" -#: flatcamGUI/PreferencesUI.py:1142 +#: flatcamGUI/PreferencesUI.py:1143 msgid "Set the language used throughout FlatCAM." msgstr "Stellen Sie die Sprache ein, die in FlatCAM verwendet wird." -#: flatcamGUI/PreferencesUI.py:1148 +#: flatcamGUI/PreferencesUI.py:1149 msgid "Apply Language" msgstr "Sprache anwend" -#: flatcamGUI/PreferencesUI.py:1149 +#: flatcamGUI/PreferencesUI.py:1150 msgid "" "Set the language used throughout FlatCAM.\n" "The app will restart after click.Windows: When FlatCAM is installed in " @@ -9506,11 +9348,11 @@ msgstr "" "Sicherheitsfunktionen. In diesem Fall wird die Sprache sein\n" "Beim nächsten Start der App angewendet." -#: flatcamGUI/PreferencesUI.py:1161 +#: flatcamGUI/PreferencesUI.py:1162 msgid "Version Check" msgstr "Versionsprüfung" -#: flatcamGUI/PreferencesUI.py:1163 flatcamGUI/PreferencesUI.py:1168 +#: flatcamGUI/PreferencesUI.py:1164 flatcamGUI/PreferencesUI.py:1169 msgid "" "Check this box if you want to check\n" "for a new version automatically at startup." @@ -9519,11 +9361,11 @@ msgstr "" "wenn Sie das Kontrollkästchen aktivieren möchten\n" "für eine neue Version automatisch beim Start." -#: flatcamGUI/PreferencesUI.py:1176 +#: flatcamGUI/PreferencesUI.py:1177 msgid "Send Stats" msgstr "Statistiken senden" -#: flatcamGUI/PreferencesUI.py:1178 flatcamGUI/PreferencesUI.py:1183 +#: flatcamGUI/PreferencesUI.py:1179 flatcamGUI/PreferencesUI.py:1184 msgid "" "Check this box if you agree to send anonymous\n" "stats automatically at startup, to help improve FlatCAM." @@ -9532,11 +9374,11 @@ msgstr "" "zustimmen\n" "wird beim Start automatisch aktualisiert, um FlatCAM zu verbessern." -#: flatcamGUI/PreferencesUI.py:1193 +#: flatcamGUI/PreferencesUI.py:1194 msgid "Pan Button" msgstr "Pan-Taste" -#: flatcamGUI/PreferencesUI.py:1194 +#: flatcamGUI/PreferencesUI.py:1195 msgid "" "Select the mouse button to use for panning:\n" "- MMB --> Middle Mouse Button\n" @@ -9546,35 +9388,35 @@ msgstr "" "- MMB -> Mittlere Maustaste\n" "- RMB -> Rechte Maustaste" -#: flatcamGUI/PreferencesUI.py:1197 +#: flatcamGUI/PreferencesUI.py:1198 msgid "MMB" msgstr "MMB" -#: flatcamGUI/PreferencesUI.py:1198 +#: flatcamGUI/PreferencesUI.py:1199 msgid "RMB" msgstr "RMB" -#: flatcamGUI/PreferencesUI.py:1204 +#: flatcamGUI/PreferencesUI.py:1205 msgid "Multiple Sel" msgstr "Mehrfachauswahl" -#: flatcamGUI/PreferencesUI.py:1205 +#: flatcamGUI/PreferencesUI.py:1206 msgid "Select the key used for multiple selection." msgstr "Wählen Sie den Schlüssel für die Mehrfachauswahl aus." -#: flatcamGUI/PreferencesUI.py:1206 +#: flatcamGUI/PreferencesUI.py:1207 msgid "CTRL" msgstr "STRG" -#: flatcamGUI/PreferencesUI.py:1207 +#: flatcamGUI/PreferencesUI.py:1208 msgid "SHIFT" msgstr "SHIFT" -#: flatcamGUI/PreferencesUI.py:1213 +#: flatcamGUI/PreferencesUI.py:1214 msgid "Workers number" msgstr "Thread Anzahl" -#: flatcamGUI/PreferencesUI.py:1215 flatcamGUI/PreferencesUI.py:1224 +#: flatcamGUI/PreferencesUI.py:1216 flatcamGUI/PreferencesUI.py:1225 msgid "" "The number of Qthreads made available to the App.\n" "A bigger number may finish the jobs more quickly but\n" @@ -9590,11 +9432,11 @@ msgstr "" "Der Standardwert ist 2.\n" "Nach dem Ändern wird es beim nächsten Start der App angewendet." -#: flatcamGUI/PreferencesUI.py:1237 +#: flatcamGUI/PreferencesUI.py:1238 msgid "Geo Tolerance" msgstr "Geo-Toleranz" -#: flatcamGUI/PreferencesUI.py:1239 flatcamGUI/PreferencesUI.py:1248 +#: flatcamGUI/PreferencesUI.py:1240 flatcamGUI/PreferencesUI.py:1249 msgid "" "This value can counter the effect of the Circle Steps\n" "parameter. Default value is 0.01.\n" @@ -9610,11 +9452,11 @@ msgstr "" "Performance. Ein höherer Wert bietet mehr\n" "Leistung auf Kosten des Detaillierungsgrades." -#: flatcamGUI/PreferencesUI.py:1263 +#: flatcamGUI/PreferencesUI.py:1264 msgid "\"Open\" behavior" msgstr "\"Offen\" -Verhalten" -#: flatcamGUI/PreferencesUI.py:1265 +#: flatcamGUI/PreferencesUI.py:1266 msgid "" "When checked the path for the last saved file is used when saving files,\n" "and the path for the last opened file is used when opening files.\n" @@ -9631,11 +9473,11 @@ msgstr "" "Dateien zuletzt verwendet: entweder der Pfad\n" "Pfad zum Speichern von Dateien oder Pfad zum Öffnen von Dateien." -#: flatcamGUI/PreferencesUI.py:1274 +#: flatcamGUI/PreferencesUI.py:1275 msgid "Save Compressed Project" msgstr "Speichern Sie das komprimierte Projekt" -#: flatcamGUI/PreferencesUI.py:1276 +#: flatcamGUI/PreferencesUI.py:1277 msgid "" "Whether to save a compressed or uncompressed project.\n" "When checked it will save a compressed FlatCAM project." @@ -9645,11 +9487,11 @@ msgstr "" "Wenn diese Option aktiviert ist, wird ein komprimiertes FlatCAM-Projekt " "gespeichert." -#: flatcamGUI/PreferencesUI.py:1285 +#: flatcamGUI/PreferencesUI.py:1286 msgid "Compression" msgstr "Kompression" -#: flatcamGUI/PreferencesUI.py:1287 +#: flatcamGUI/PreferencesUI.py:1288 msgid "" "The level of compression used when saving\n" "a FlatCAM project. Higher value means better compression\n" @@ -9659,11 +9501,11 @@ msgstr "" "ein FlatCAM-Projekt. Ein höherer Wert bedeutet eine bessere Komprimierung\n" "erfordern jedoch mehr RAM-Auslastung und mehr Verarbeitungszeit." -#: flatcamGUI/PreferencesUI.py:1299 +#: flatcamGUI/PreferencesUI.py:1300 msgid "Bookmarks limit" msgstr "Lesezeichenlimit" -#: flatcamGUI/PreferencesUI.py:1301 +#: flatcamGUI/PreferencesUI.py:1302 msgid "" "The maximum number of bookmarks that may be installed in the menu.\n" "The number of bookmarks in the bookmark manager may be greater\n" @@ -9673,11 +9515,11 @@ msgstr "" "Die Anzahl der Lesezeichen im Lesezeichen-Manager ist möglicherweise größer\n" "Aber das Menü wird nur so viel enthalten." -#: flatcamGUI/PreferencesUI.py:1310 +#: flatcamGUI/PreferencesUI.py:1311 msgid "Allow Machinist Unsafe Settings" -msgstr "" +msgstr "Unsichere Maschineneinstellungen erlauben" -#: flatcamGUI/PreferencesUI.py:1312 +#: flatcamGUI/PreferencesUI.py:1313 msgid "" "If checked, some of the application settings will be allowed\n" "to have values that are usually unsafe to use.\n" @@ -9685,21 +9527,27 @@ msgid "" "It will applied at the next application start.\n" "<>: Don't change this unless you know what you are doing !!!" msgstr "" +"Wenn gewählt werden Applikationseinstellungen erlaubt,\n" +"die im normalen Betrieb als unsicher gelten.\n" +"Zum Beispiel negative Werte für schnelle Z Bewegungen, oder \n" +"Positive Z-Werte bei schneidvorgängen.\n" +"Wird beim Nächsten Programmstart wirksam\n" +" << ACHTUNG>>: Ändern Sie das nicht, wenn Sie nicht wissen was Sie tun!" -#: flatcamGUI/PreferencesUI.py:1333 +#: flatcamGUI/PreferencesUI.py:1334 msgid "Gerber General" msgstr "Geometrie Allgemein" -#: flatcamGUI/PreferencesUI.py:1351 +#: flatcamGUI/PreferencesUI.py:1352 msgid "M-Color" msgstr "M-farbig" -#: flatcamGUI/PreferencesUI.py:1365 flatcamGUI/PreferencesUI.py:3128 -#: flatcamGUI/PreferencesUI.py:3664 flatcamGUI/PreferencesUI.py:6079 +#: flatcamGUI/PreferencesUI.py:1366 flatcamGUI/PreferencesUI.py:3129 +#: flatcamGUI/PreferencesUI.py:3665 flatcamGUI/PreferencesUI.py:6080 msgid "Circle Steps" msgstr "Kreisschritte" -#: flatcamGUI/PreferencesUI.py:1367 +#: flatcamGUI/PreferencesUI.py:1368 msgid "" "The number of circle steps for Gerber \n" "circular aperture linear approximation." @@ -9707,11 +9555,11 @@ msgstr "" "Die Anzahl der Kreisschritte für Gerber\n" "lineare Approximation mit kreisförmiger Apertur." -#: flatcamGUI/PreferencesUI.py:1379 +#: flatcamGUI/PreferencesUI.py:1380 msgid "Default Values" msgstr "Standardwerte" -#: flatcamGUI/PreferencesUI.py:1381 +#: flatcamGUI/PreferencesUI.py:1382 msgid "" "Those values will be used as fallback values\n" "in case that they are not found in the Gerber file." @@ -9719,25 +9567,25 @@ msgstr "" "Diese Werte werden als Ersatzwerte verwendet\n" "für den Fall, dass sie nicht in der Gerber-Datei gefunden werden." -#: flatcamGUI/PreferencesUI.py:1390 flatcamGUI/PreferencesUI.py:1396 -#: flatcamGUI/PreferencesUI.py:1765 flatcamGUI/PreferencesUI.py:1771 +#: flatcamGUI/PreferencesUI.py:1391 flatcamGUI/PreferencesUI.py:1397 +#: flatcamGUI/PreferencesUI.py:1766 flatcamGUI/PreferencesUI.py:1772 msgid "The units used in the Gerber file." msgstr "Die in der Gerber-Datei verwendeten Einheiten." -#: flatcamGUI/PreferencesUI.py:1393 flatcamGUI/PreferencesUI.py:1768 -#: flatcamGUI/PreferencesUI.py:2124 flatcamGUI/PreferencesUI.py:2222 -#: flatcamGUI/PreferencesUI.py:2691 flatcamTools/ToolCalculators.py:61 +#: flatcamGUI/PreferencesUI.py:1394 flatcamGUI/PreferencesUI.py:1769 +#: flatcamGUI/PreferencesUI.py:2125 flatcamGUI/PreferencesUI.py:2223 +#: flatcamGUI/PreferencesUI.py:2692 flatcamTools/ToolCalculators.py:61 #: flatcamTools/ToolPcbWizard.py:125 msgid "INCH" msgstr "ZOLL" -#: flatcamGUI/PreferencesUI.py:1403 flatcamGUI/PreferencesUI.py:1817 -#: flatcamGUI/PreferencesUI.py:2759 +#: flatcamGUI/PreferencesUI.py:1404 flatcamGUI/PreferencesUI.py:1818 +#: flatcamGUI/PreferencesUI.py:2760 msgid "Zeros" msgstr "Nullen" -#: flatcamGUI/PreferencesUI.py:1406 flatcamGUI/PreferencesUI.py:1416 -#: flatcamGUI/PreferencesUI.py:1820 flatcamGUI/PreferencesUI.py:1830 +#: flatcamGUI/PreferencesUI.py:1407 flatcamGUI/PreferencesUI.py:1417 +#: flatcamGUI/PreferencesUI.py:1821 flatcamGUI/PreferencesUI.py:1831 msgid "" "This sets the type of Gerber zeros.\n" "If LZ then Leading Zeros are removed and\n" @@ -9751,41 +9599,41 @@ msgstr "" "Wenn TZ aktiviert ist, werden nachfolgende Nullen entfernt\n" "und führende Nullen werden beibehalten." -#: flatcamGUI/PreferencesUI.py:1413 flatcamGUI/PreferencesUI.py:1827 -#: flatcamGUI/PreferencesUI.py:2198 flatcamGUI/PreferencesUI.py:2769 +#: flatcamGUI/PreferencesUI.py:1414 flatcamGUI/PreferencesUI.py:1828 +#: flatcamGUI/PreferencesUI.py:2199 flatcamGUI/PreferencesUI.py:2770 #: flatcamTools/ToolPcbWizard.py:111 msgid "LZ" msgstr "LZ" -#: flatcamGUI/PreferencesUI.py:1414 flatcamGUI/PreferencesUI.py:1828 -#: flatcamGUI/PreferencesUI.py:2199 flatcamGUI/PreferencesUI.py:2770 +#: flatcamGUI/PreferencesUI.py:1415 flatcamGUI/PreferencesUI.py:1829 +#: flatcamGUI/PreferencesUI.py:2200 flatcamGUI/PreferencesUI.py:2771 #: flatcamTools/ToolPcbWizard.py:112 msgid "TZ" msgstr "TZ" -#: flatcamGUI/PreferencesUI.py:1435 +#: flatcamGUI/PreferencesUI.py:1436 msgid "Gerber Options" msgstr "Gerber-Optionen" -#: flatcamGUI/PreferencesUI.py:1509 flatcamGUI/PreferencesUI.py:3601 -#: flatcamGUI/PreferencesUI.py:4075 flatcamTools/ToolNonCopperClear.py:170 +#: flatcamGUI/PreferencesUI.py:1510 flatcamGUI/PreferencesUI.py:3602 +#: flatcamGUI/PreferencesUI.py:4076 flatcamTools/ToolNonCopperClear.py:170 msgid "Conv." msgstr "Konv." -#: flatcamGUI/PreferencesUI.py:1513 +#: flatcamGUI/PreferencesUI.py:1514 msgid "Combine Passes" msgstr "Kombinieren Sie Pässe" -#: flatcamGUI/PreferencesUI.py:1591 +#: flatcamGUI/PreferencesUI.py:1592 msgid "Gerber Adv. Options" msgstr "Erweiterte Optionen von Gerber" -#: flatcamGUI/PreferencesUI.py:1595 flatcamGUI/PreferencesUI.py:2544 -#: flatcamGUI/PreferencesUI.py:3399 +#: flatcamGUI/PreferencesUI.py:1596 flatcamGUI/PreferencesUI.py:2545 +#: flatcamGUI/PreferencesUI.py:3400 msgid "Advanced Options" msgstr "Erweiterte Optionen" -#: flatcamGUI/PreferencesUI.py:1597 +#: flatcamGUI/PreferencesUI.py:1598 msgid "" "A list of Gerber advanced parameters.\n" "Those parameters are available only for\n" @@ -9795,11 +9643,11 @@ msgstr "" "Diese Parameter sind nur für verfügbar\n" "Fortgeschrittene Anwendungsebene." -#: flatcamGUI/PreferencesUI.py:1616 +#: flatcamGUI/PreferencesUI.py:1617 msgid "Table Show/Hide" msgstr "Tabelle anzeigen / ausblenden" -#: flatcamGUI/PreferencesUI.py:1618 +#: flatcamGUI/PreferencesUI.py:1619 msgid "" "Toggle the display of the Gerber Apertures Table.\n" "Also, on hide, it will delete all mark shapes\n" @@ -9809,19 +9657,15 @@ msgstr "" "Beim Ausblenden werden auch alle Markierungsformen gelöscht\n" "das sind auf leinwand gezeichnet." -#: flatcamGUI/PreferencesUI.py:1693 -#, fuzzy -#| msgid "Get Exteriors" -msgid "Exterior" -msgstr "Holen Sie sich das Äußere" - #: flatcamGUI/PreferencesUI.py:1694 -#, fuzzy -#| msgid "Get Interiors" -msgid "Interior" -msgstr "Holen Sie sich Innenräume" +msgid "Exterior" +msgstr "Äußeres" -#: flatcamGUI/PreferencesUI.py:1702 +#: flatcamGUI/PreferencesUI.py:1695 +msgid "Interior" +msgstr "Inneres" + +#: flatcamGUI/PreferencesUI.py:1703 msgid "" "Buffering type:\n" "- None --> best performance, fast file loading but no so good display\n" @@ -9835,19 +9679,19 @@ msgstr "" "Standardeinstellung.\n" "<< WARNUNG >>: Ändern Sie dies nur, wenn Sie wissen, was Sie tun !!!" -#: flatcamGUI/PreferencesUI.py:1707 flatcamGUI/PreferencesUI.py:4821 -#: flatcamGUI/PreferencesUI.py:6377 flatcamTools/ToolFiducials.py:201 +#: flatcamGUI/PreferencesUI.py:1708 flatcamGUI/PreferencesUI.py:4822 +#: flatcamGUI/PreferencesUI.py:6378 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 msgid "None" msgstr "Keiner" -#: flatcamGUI/PreferencesUI.py:1713 +#: flatcamGUI/PreferencesUI.py:1714 msgid "Simplify" msgstr "Vereinfachen" -#: flatcamGUI/PreferencesUI.py:1715 +#: flatcamGUI/PreferencesUI.py:1716 msgid "" "When checked all the Gerber polygons will be\n" "loaded with simplification having a set tolerance.\n" @@ -9857,23 +9701,23 @@ msgstr "" "geladen mit Vereinfachung mit einer festgelegten Toleranz.\n" "<< WARNUNG >>: Ändern Sie dies nur, wenn Sie wissen, was Sie tun !!!" -#: flatcamGUI/PreferencesUI.py:1722 +#: flatcamGUI/PreferencesUI.py:1723 msgid "Tolerance" msgstr "Toleranz" -#: flatcamGUI/PreferencesUI.py:1723 +#: flatcamGUI/PreferencesUI.py:1724 msgid "Tolerance for polygon simplification." msgstr "Toleranz für Polygonvereinfachung." -#: flatcamGUI/PreferencesUI.py:1748 +#: flatcamGUI/PreferencesUI.py:1749 msgid "Gerber Export" msgstr "Gerber Export" -#: flatcamGUI/PreferencesUI.py:1752 flatcamGUI/PreferencesUI.py:2675 +#: flatcamGUI/PreferencesUI.py:1753 flatcamGUI/PreferencesUI.py:2676 msgid "Export Options" msgstr "Exportoptionen" -#: flatcamGUI/PreferencesUI.py:1754 +#: flatcamGUI/PreferencesUI.py:1755 msgid "" "The parameters set here are used in the file exported\n" "when using the File -> Export -> Export Gerber menu entry." @@ -9881,11 +9725,11 @@ msgstr "" "Die hier eingestellten Parameter werden in der exportierten Datei verwendet\n" "bei Verwendung des Menüeintrags Datei -> Exportieren -> Gerber exportieren." -#: flatcamGUI/PreferencesUI.py:1777 flatcamGUI/PreferencesUI.py:2700 +#: flatcamGUI/PreferencesUI.py:1778 flatcamGUI/PreferencesUI.py:2701 msgid "Int/Decimals" msgstr "Ganzzahl / Dezimalzahl" -#: flatcamGUI/PreferencesUI.py:1779 +#: flatcamGUI/PreferencesUI.py:1780 msgid "" "The number of digits in the whole part of the number\n" "and in the fractional part of the number." @@ -9893,7 +9737,7 @@ msgstr "" "Die Anzahl der Ziffern im gesamten Teil der Nummer\n" "und im Bruchteil der Zahl." -#: flatcamGUI/PreferencesUI.py:1792 +#: flatcamGUI/PreferencesUI.py:1793 msgid "" "This numbers signify the number of digits in\n" "the whole part of Gerber coordinates." @@ -9901,7 +9745,7 @@ msgstr "" "Diese Zahlen geben die Anzahl der Ziffern in an\n" "der ganze Teil von Gerber koordiniert." -#: flatcamGUI/PreferencesUI.py:1808 +#: flatcamGUI/PreferencesUI.py:1809 msgid "" "This numbers signify the number of digits in\n" "the decimal part of Gerber coordinates." @@ -9909,16 +9753,16 @@ msgstr "" "Diese Zahlen geben die Anzahl der Ziffern in an\n" "Der Dezimalteil der Gerber-Koordinaten." -#: flatcamGUI/PreferencesUI.py:1853 +#: flatcamGUI/PreferencesUI.py:1854 msgid "A list of Gerber Editor parameters." msgstr "Eine Liste der Gerber-Editor-Parameter." -#: flatcamGUI/PreferencesUI.py:1861 flatcamGUI/PreferencesUI.py:2834 -#: flatcamGUI/PreferencesUI.py:3579 flatcamGUI/PreferencesUI.py:6040 +#: flatcamGUI/PreferencesUI.py:1862 flatcamGUI/PreferencesUI.py:2835 +#: flatcamGUI/PreferencesUI.py:3580 flatcamGUI/PreferencesUI.py:6041 msgid "Selection limit" msgstr "Auswahllimit" -#: flatcamGUI/PreferencesUI.py:1863 +#: flatcamGUI/PreferencesUI.py:1864 msgid "" "Set the number of selected Gerber geometry\n" "items above which the utility geometry\n" @@ -9932,23 +9776,23 @@ msgstr "" "Erhöht die Leistung beim Bewegen von a\n" "große Anzahl von geometrischen Elementen." -#: flatcamGUI/PreferencesUI.py:1876 +#: flatcamGUI/PreferencesUI.py:1877 msgid "New Aperture code" msgstr "Neuer Blendencode" -#: flatcamGUI/PreferencesUI.py:1889 +#: flatcamGUI/PreferencesUI.py:1890 msgid "New Aperture size" msgstr "Standard Blendenöffnung" -#: flatcamGUI/PreferencesUI.py:1891 +#: flatcamGUI/PreferencesUI.py:1892 msgid "Size for the new aperture" msgstr "Wert für die neue Blende" -#: flatcamGUI/PreferencesUI.py:1902 +#: flatcamGUI/PreferencesUI.py:1903 msgid "New Aperture type" msgstr "Neuer Blendentyp" -#: flatcamGUI/PreferencesUI.py:1904 +#: flatcamGUI/PreferencesUI.py:1905 msgid "" "Type for the new aperture.\n" "Can be 'C', 'R' or 'O'." @@ -9956,35 +9800,35 @@ msgstr "" "Geben Sie für die neue Blende ein.\n" "Kann \"C\", \"R\" oder \"O\" sein." -#: flatcamGUI/PreferencesUI.py:1926 +#: flatcamGUI/PreferencesUI.py:1927 msgid "Aperture Dimensions" msgstr "Öffnungsmaße" -#: flatcamGUI/PreferencesUI.py:1928 flatcamGUI/PreferencesUI.py:3146 -#: flatcamGUI/PreferencesUI.py:3984 +#: flatcamGUI/PreferencesUI.py:1929 flatcamGUI/PreferencesUI.py:3147 +#: flatcamGUI/PreferencesUI.py:3985 msgid "Diameters of the cutting tools, separated by ','" msgstr "Durchmesser der Schneidwerkzeuge, getrennt durch ','" -#: flatcamGUI/PreferencesUI.py:1934 +#: flatcamGUI/PreferencesUI.py:1935 msgid "Linear Pad Array" msgstr "Lineares Pad-Array" -#: flatcamGUI/PreferencesUI.py:1938 flatcamGUI/PreferencesUI.py:2878 -#: flatcamGUI/PreferencesUI.py:3026 +#: flatcamGUI/PreferencesUI.py:1939 flatcamGUI/PreferencesUI.py:2879 +#: flatcamGUI/PreferencesUI.py:3027 msgid "Linear Direction" msgstr "Lineare Richtung" -#: flatcamGUI/PreferencesUI.py:1978 +#: flatcamGUI/PreferencesUI.py:1979 msgid "Circular Pad Array" msgstr "Kreisschlitz-Array" -#: flatcamGUI/PreferencesUI.py:1982 flatcamGUI/PreferencesUI.py:2924 -#: flatcamGUI/PreferencesUI.py:3074 +#: flatcamGUI/PreferencesUI.py:1983 flatcamGUI/PreferencesUI.py:2925 +#: flatcamGUI/PreferencesUI.py:3075 msgid "Circular Direction" msgstr "Kreisrichtung" -#: flatcamGUI/PreferencesUI.py:1984 flatcamGUI/PreferencesUI.py:2926 -#: flatcamGUI/PreferencesUI.py:3076 +#: flatcamGUI/PreferencesUI.py:1985 flatcamGUI/PreferencesUI.py:2927 +#: flatcamGUI/PreferencesUI.py:3077 msgid "" "Direction for circular array.\n" "Can be CW = clockwise or CCW = counter clockwise." @@ -9992,48 +9836,48 @@ msgstr "" "Richtung für kreisförmige Anordnung. \n" "Kann CW = Uhrzeigersinn oder CCW = Gegenuhrzeigersinn sein." -#: flatcamGUI/PreferencesUI.py:1995 flatcamGUI/PreferencesUI.py:2937 -#: flatcamGUI/PreferencesUI.py:3087 +#: flatcamGUI/PreferencesUI.py:1996 flatcamGUI/PreferencesUI.py:2938 +#: flatcamGUI/PreferencesUI.py:3088 msgid "Circular Angle" msgstr "Kreiswinkel" -#: flatcamGUI/PreferencesUI.py:2014 +#: flatcamGUI/PreferencesUI.py:2015 msgid "Distance at which to buffer the Gerber element." msgstr "Abstand, in dem das Gerber-Element gepuffert werden soll." -#: flatcamGUI/PreferencesUI.py:2023 +#: flatcamGUI/PreferencesUI.py:2024 msgid "Scale Tool" msgstr "Skalierungswerk" -#: flatcamGUI/PreferencesUI.py:2029 +#: flatcamGUI/PreferencesUI.py:2030 msgid "Factor to scale the Gerber element." msgstr "Faktor zum Skalieren des Gerber-Elements." -#: flatcamGUI/PreferencesUI.py:2042 +#: flatcamGUI/PreferencesUI.py:2043 msgid "Threshold low" msgstr "Schwelle niedrig" -#: flatcamGUI/PreferencesUI.py:2044 +#: flatcamGUI/PreferencesUI.py:2045 msgid "Threshold value under which the apertures are not marked." msgstr "Schwellenwert, unter dem die Blenden nicht markiert sind." -#: flatcamGUI/PreferencesUI.py:2054 +#: flatcamGUI/PreferencesUI.py:2055 msgid "Threshold high" msgstr "Schwelle hoch" -#: flatcamGUI/PreferencesUI.py:2056 +#: flatcamGUI/PreferencesUI.py:2057 msgid "Threshold value over which the apertures are not marked." msgstr "Schwellenwert, über dem die Blenden nicht markiert sind." -#: flatcamGUI/PreferencesUI.py:2074 +#: flatcamGUI/PreferencesUI.py:2075 msgid "Excellon General" msgstr "Excellon Allgemeines" -#: flatcamGUI/PreferencesUI.py:2097 +#: flatcamGUI/PreferencesUI.py:2098 msgid "Excellon Format" msgstr "Excellon Format" -#: flatcamGUI/PreferencesUI.py:2099 +#: flatcamGUI/PreferencesUI.py:2100 msgid "" "The NC drill files, usually named Excellon files\n" "are files that can be found in different formats.\n" @@ -10075,12 +9919,12 @@ msgstr "" "Sprint-Layout 2: 4 ZOLL LZ\n" "KiCAD 3: 5 ZOLL TZ" -#: flatcamGUI/PreferencesUI.py:2127 +#: flatcamGUI/PreferencesUI.py:2128 msgid "Default values for INCH are 2:4" msgstr "Die Standardwerte für ZOLL sind 2: 4" -#: flatcamGUI/PreferencesUI.py:2134 flatcamGUI/PreferencesUI.py:2165 -#: flatcamGUI/PreferencesUI.py:2714 +#: flatcamGUI/PreferencesUI.py:2135 flatcamGUI/PreferencesUI.py:2166 +#: flatcamGUI/PreferencesUI.py:2715 msgid "" "This numbers signify the number of digits in\n" "the whole part of Excellon coordinates." @@ -10088,8 +9932,8 @@ msgstr "" "Diese Zahlen geben die Anzahl der Ziffern in an\n" "der gesamte Teil der Excellon-Koordinaten." -#: flatcamGUI/PreferencesUI.py:2147 flatcamGUI/PreferencesUI.py:2178 -#: flatcamGUI/PreferencesUI.py:2727 +#: flatcamGUI/PreferencesUI.py:2148 flatcamGUI/PreferencesUI.py:2179 +#: flatcamGUI/PreferencesUI.py:2728 msgid "" "This numbers signify the number of digits in\n" "the decimal part of Excellon coordinates." @@ -10097,19 +9941,19 @@ msgstr "" "Diese Zahlen geben die Anzahl der Ziffern in an\n" "der Dezimalteil der Excellon-Koordinaten." -#: flatcamGUI/PreferencesUI.py:2155 +#: flatcamGUI/PreferencesUI.py:2156 msgid "METRIC" msgstr "METRISCH" -#: flatcamGUI/PreferencesUI.py:2158 +#: flatcamGUI/PreferencesUI.py:2159 msgid "Default values for METRIC are 3:3" msgstr "Die Standardwerte für METRISCH sind 3: 3" -#: flatcamGUI/PreferencesUI.py:2187 +#: flatcamGUI/PreferencesUI.py:2188 msgid "Default Zeros" msgstr "Standard Nullen" -#: flatcamGUI/PreferencesUI.py:2190 flatcamGUI/PreferencesUI.py:2762 +#: flatcamGUI/PreferencesUI.py:2191 flatcamGUI/PreferencesUI.py:2763 msgid "" "This sets the type of Excellon zeros.\n" "If LZ then Leading Zeros are kept and\n" @@ -10123,7 +9967,7 @@ msgstr "" "Wenn TZ aktiviert ist, werden nachfolgende Nullen beibehalten\n" "und führende Nullen werden entfernt." -#: flatcamGUI/PreferencesUI.py:2201 +#: flatcamGUI/PreferencesUI.py:2202 msgid "" "This sets the default type of Excellon zeros.\n" "If it is not detected in the parsed file the value here\n" @@ -10139,11 +9983,11 @@ msgstr "" "Wenn TZ aktiviert ist, werden nachfolgende Nullen beibehalten\n" "und führende Nullen werden entfernt." -#: flatcamGUI/PreferencesUI.py:2211 +#: flatcamGUI/PreferencesUI.py:2212 msgid "Default Units" msgstr "Standard Einheiten" -#: flatcamGUI/PreferencesUI.py:2214 +#: flatcamGUI/PreferencesUI.py:2215 msgid "" "This sets the default units of Excellon files.\n" "If it is not detected in the parsed file the value here\n" @@ -10155,7 +9999,7 @@ msgstr "" "wird verwendet. Einige Excellon-Dateien haben keinen Header\n" "Daher wird dieser Parameter verwendet." -#: flatcamGUI/PreferencesUI.py:2225 +#: flatcamGUI/PreferencesUI.py:2226 msgid "" "This sets the units of Excellon files.\n" "Some Excellon files don't have an header\n" @@ -10165,19 +10009,19 @@ msgstr "" "Einige Excellon-Dateien haben keinen Header\n" "Daher wird dieser Parameter verwendet." -#: flatcamGUI/PreferencesUI.py:2231 +#: flatcamGUI/PreferencesUI.py:2232 msgid "Update Export settings" msgstr "Exporteinstellungen aktual" -#: flatcamGUI/PreferencesUI.py:2239 +#: flatcamGUI/PreferencesUI.py:2240 msgid "Excellon Optimization" msgstr "Optimierung der Excellons" -#: flatcamGUI/PreferencesUI.py:2242 +#: flatcamGUI/PreferencesUI.py:2243 msgid "Algorithm:" msgstr "Algorithmus:" -#: flatcamGUI/PreferencesUI.py:2244 flatcamGUI/PreferencesUI.py:2261 +#: flatcamGUI/PreferencesUI.py:2245 flatcamGUI/PreferencesUI.py:2262 msgid "" "This sets the optimization type for the Excellon drill path.\n" "If <> is checked then Google OR-Tools algorithm with\n" @@ -10204,19 +10048,19 @@ msgstr "" "und verwendet\n" "Travelling Salesman-Algorithmus zur Pfadoptimierung." -#: flatcamGUI/PreferencesUI.py:2256 +#: flatcamGUI/PreferencesUI.py:2257 msgid "MetaHeuristic" msgstr "MetaHeuristic" -#: flatcamGUI/PreferencesUI.py:2258 +#: flatcamGUI/PreferencesUI.py:2259 msgid "TSA" msgstr "TSA" -#: flatcamGUI/PreferencesUI.py:2273 +#: flatcamGUI/PreferencesUI.py:2274 msgid "Optimization Time" msgstr "Optimierungszeit" -#: flatcamGUI/PreferencesUI.py:2276 +#: flatcamGUI/PreferencesUI.py:2277 msgid "" "When OR-Tools Metaheuristic (MH) is enabled there is a\n" "maximum threshold for how much time is spent doing the\n" @@ -10228,11 +10072,11 @@ msgstr "" "Pfadoptimierung. Diese maximale Dauer wird hier eingestellt.\n" "In Sekunden." -#: flatcamGUI/PreferencesUI.py:2319 +#: flatcamGUI/PreferencesUI.py:2320 msgid "Excellon Options" msgstr "Excellon-Optionen" -#: flatcamGUI/PreferencesUI.py:2325 +#: flatcamGUI/PreferencesUI.py:2326 msgid "" "Parameters used to create a CNC Job object\n" "for this drill object." @@ -10240,11 +10084,11 @@ msgstr "" "Parameter, die zum Erstellen eines CNC-Auftragsobjekts verwendet werden\n" "für dieses Bohrobjekt." -#: flatcamGUI/PreferencesUI.py:2444 flatcamGUI/PreferencesUI.py:3358 +#: flatcamGUI/PreferencesUI.py:2445 flatcamGUI/PreferencesUI.py:3359 msgid "Duration" msgstr "Dauer" -#: flatcamGUI/PreferencesUI.py:2474 +#: flatcamGUI/PreferencesUI.py:2475 msgid "" "Choose what to use for GCode generation:\n" "'Drills', 'Slots' or 'Both'.\n" @@ -10257,19 +10101,19 @@ msgstr "" "angezeigt\n" "in Bohrer umgewandelt." -#: flatcamGUI/PreferencesUI.py:2492 +#: flatcamGUI/PreferencesUI.py:2493 msgid "Create Geometry for milling holes." msgstr "Erstellen Sie Geometrie zum Fräsen von Löchern." -#: flatcamGUI/PreferencesUI.py:2524 +#: flatcamGUI/PreferencesUI.py:2525 msgid "Defaults" msgstr "Standardwerte" -#: flatcamGUI/PreferencesUI.py:2537 +#: flatcamGUI/PreferencesUI.py:2538 msgid "Excellon Adv. Options" msgstr "Excellon erweiterte Optionen" -#: flatcamGUI/PreferencesUI.py:2546 +#: flatcamGUI/PreferencesUI.py:2547 msgid "" "A list of Excellon advanced parameters.\n" "Those parameters are available only for\n" @@ -10279,21 +10123,19 @@ msgstr "" "Diese Parameter sind nur für verfügbar\n" "Erweiterte App. Niveau." -#: flatcamGUI/PreferencesUI.py:2567 +#: flatcamGUI/PreferencesUI.py:2568 msgid "Toolchange X,Y" msgstr "Werkzeugwechsel X, Y" -#: flatcamGUI/PreferencesUI.py:2569 flatcamGUI/PreferencesUI.py:3413 +#: flatcamGUI/PreferencesUI.py:2570 flatcamGUI/PreferencesUI.py:3414 msgid "Toolchange X,Y position." msgstr "Werkzeugwechsel X, Y Position." -#: flatcamGUI/PreferencesUI.py:2626 flatcamGUI/PreferencesUI.py:3500 -#, fuzzy -#| msgid "Spindle dir." +#: flatcamGUI/PreferencesUI.py:2627 flatcamGUI/PreferencesUI.py:3501 msgid "Spindle direction" -msgstr "Spindelrichtung" +msgstr "Drehrichtung" -#: flatcamGUI/PreferencesUI.py:2628 flatcamGUI/PreferencesUI.py:3502 +#: flatcamGUI/PreferencesUI.py:2629 flatcamGUI/PreferencesUI.py:3503 msgid "" "This sets the direction that the spindle is rotating.\n" "It can be either:\n" @@ -10305,11 +10147,11 @@ msgstr "" "- CW = im Uhrzeigersinn oder\n" "- CCW = gegen den Uhrzeigersinn" -#: flatcamGUI/PreferencesUI.py:2639 flatcamGUI/PreferencesUI.py:3514 +#: flatcamGUI/PreferencesUI.py:2640 flatcamGUI/PreferencesUI.py:3515 msgid "Fast Plunge" msgstr "Schneller Sprung" -#: flatcamGUI/PreferencesUI.py:2641 flatcamGUI/PreferencesUI.py:3516 +#: flatcamGUI/PreferencesUI.py:2642 flatcamGUI/PreferencesUI.py:3517 msgid "" "By checking this, the vertical move from\n" "Z_Toolchange to Z_move is done with G0,\n" @@ -10321,11 +10163,11 @@ msgstr "" "Das bedeutet die schnellste verfügbare Geschwindigkeit.\n" "WARNUNG: Die Verschiebung erfolgt bei Toolchange X, Y-Koordinaten." -#: flatcamGUI/PreferencesUI.py:2650 +#: flatcamGUI/PreferencesUI.py:2651 msgid "Fast Retract" msgstr "Schneller Rückzug" -#: flatcamGUI/PreferencesUI.py:2652 +#: flatcamGUI/PreferencesUI.py:2653 msgid "" "Exit hole strategy.\n" " - When uncheked, while exiting the drilled hole the drill bit\n" @@ -10341,11 +10183,11 @@ msgstr "" "  - Wenn Sie den Weg von Z-Schnitt (Schnitttiefe) nach Z_Move prüfen\n" "(Fahrhöhe) erfolgt so schnell wie möglich (G0) in einem Zug." -#: flatcamGUI/PreferencesUI.py:2671 +#: flatcamGUI/PreferencesUI.py:2672 msgid "Excellon Export" msgstr "Excellon Export" -#: flatcamGUI/PreferencesUI.py:2677 +#: flatcamGUI/PreferencesUI.py:2678 msgid "" "The parameters set here are used in the file exported\n" "when using the File -> Export -> Export Excellon menu entry." @@ -10354,11 +10196,11 @@ msgstr "" "bei Verwendung des Menüeintrags Datei -> Exportieren -> Exportieren von " "Excellon." -#: flatcamGUI/PreferencesUI.py:2688 flatcamGUI/PreferencesUI.py:2694 +#: flatcamGUI/PreferencesUI.py:2689 flatcamGUI/PreferencesUI.py:2695 msgid "The units used in the Excellon file." msgstr "Die in der Excellon-Datei verwendeten Einheiten." -#: flatcamGUI/PreferencesUI.py:2702 +#: flatcamGUI/PreferencesUI.py:2703 msgid "" "The NC drill files, usually named Excellon files\n" "are files that can be found in different formats.\n" @@ -10370,11 +10212,11 @@ msgstr "" "Hier legen wir das verwendete Format fest\n" "Koordinaten verwenden keine Periode." -#: flatcamGUI/PreferencesUI.py:2736 +#: flatcamGUI/PreferencesUI.py:2737 msgid "Format" msgstr "Format" -#: flatcamGUI/PreferencesUI.py:2738 flatcamGUI/PreferencesUI.py:2748 +#: flatcamGUI/PreferencesUI.py:2739 flatcamGUI/PreferencesUI.py:2749 msgid "" "Select the kind of coordinates format used.\n" "Coordinates can be saved with decimal point or without.\n" @@ -10391,15 +10233,15 @@ msgstr "" "Es muss auch angegeben werden, wenn LZ = führende Nullen beibehalten werden\n" "oder TZ = nachfolgende Nullen bleiben erhalten." -#: flatcamGUI/PreferencesUI.py:2745 +#: flatcamGUI/PreferencesUI.py:2746 msgid "Decimal" msgstr "Dezimal" -#: flatcamGUI/PreferencesUI.py:2746 +#: flatcamGUI/PreferencesUI.py:2747 msgid "No-Decimal" msgstr "Keine Dezimalzahl" -#: flatcamGUI/PreferencesUI.py:2772 +#: flatcamGUI/PreferencesUI.py:2773 msgid "" "This sets the default type of Excellon zeros.\n" "If LZ then Leading Zeros are kept and\n" @@ -10413,11 +10255,11 @@ msgstr "" "Wenn TZ aktiviert ist, werden nachfolgende Nullen beibehalten\n" "und führende Nullen werden entfernt." -#: flatcamGUI/PreferencesUI.py:2782 +#: flatcamGUI/PreferencesUI.py:2783 msgid "Slot type" msgstr "Schlitze-Typ" -#: flatcamGUI/PreferencesUI.py:2785 flatcamGUI/PreferencesUI.py:2795 +#: flatcamGUI/PreferencesUI.py:2786 flatcamGUI/PreferencesUI.py:2796 msgid "" "This sets how the slots will be exported.\n" "If ROUTED then the slots will be routed\n" @@ -10431,19 +10273,19 @@ msgstr "" "Beim Bohren (G85) werden die Steckplätze exportiert\n" "Verwenden Sie den Befehl Bohrschlitz (G85)." -#: flatcamGUI/PreferencesUI.py:2792 +#: flatcamGUI/PreferencesUI.py:2793 msgid "Routed" msgstr "Geroutet" -#: flatcamGUI/PreferencesUI.py:2793 +#: flatcamGUI/PreferencesUI.py:2794 msgid "Drilled(G85)" msgstr "Gebohrt (G85)" -#: flatcamGUI/PreferencesUI.py:2826 +#: flatcamGUI/PreferencesUI.py:2827 msgid "A list of Excellon Editor parameters." msgstr "Eine Liste der Excellon Editor-Parameter." -#: flatcamGUI/PreferencesUI.py:2836 +#: flatcamGUI/PreferencesUI.py:2837 msgid "" "Set the number of selected Excellon geometry\n" "items above which the utility geometry\n" @@ -10457,19 +10299,19 @@ msgstr "" "Erhöht die Leistung beim Bewegen von a\n" "große Anzahl von geometrischen Elementen." -#: flatcamGUI/PreferencesUI.py:2849 flatcamGUI/PreferencesUI.py:4055 +#: flatcamGUI/PreferencesUI.py:2850 flatcamGUI/PreferencesUI.py:4056 msgid "New Tool Dia" msgstr "Neuer Werkzeugdurchm" -#: flatcamGUI/PreferencesUI.py:2874 +#: flatcamGUI/PreferencesUI.py:2875 msgid "Linear Drill Array" msgstr "Linearbohrer-Array" -#: flatcamGUI/PreferencesUI.py:2920 +#: flatcamGUI/PreferencesUI.py:2921 msgid "Circular Drill Array" msgstr "Rundbohrer-Array" -#: flatcamGUI/PreferencesUI.py:2990 +#: flatcamGUI/PreferencesUI.py:2991 msgid "" "Angle at which the slot is placed.\n" "The precision is of max 2 decimals.\n" @@ -10481,19 +10323,19 @@ msgstr "" "Der Mindestwert beträgt: -359,99 Grad.\n" "Maximaler Wert ist: 360.00 Grad." -#: flatcamGUI/PreferencesUI.py:3009 +#: flatcamGUI/PreferencesUI.py:3010 msgid "Linear Slot Array" msgstr "Lineare Schlitzanordnung" -#: flatcamGUI/PreferencesUI.py:3070 +#: flatcamGUI/PreferencesUI.py:3071 msgid "Circular Slot Array" msgstr "Kreisschlitz-Array" -#: flatcamGUI/PreferencesUI.py:3108 +#: flatcamGUI/PreferencesUI.py:3109 msgid "Geometry General" msgstr "Geometrie Allgemein" -#: flatcamGUI/PreferencesUI.py:3130 +#: flatcamGUI/PreferencesUI.py:3131 msgid "" "The number of circle steps for Geometry \n" "circle and arc shapes linear approximation." @@ -10501,11 +10343,11 @@ msgstr "" "Die Anzahl der Kreisschritte für die Geometrie\n" "Kreis- und Bogenformen lineare Annäherung." -#: flatcamGUI/PreferencesUI.py:3161 +#: flatcamGUI/PreferencesUI.py:3162 msgid "Geometry Options" msgstr "Geometrieoptionen" -#: flatcamGUI/PreferencesUI.py:3169 +#: flatcamGUI/PreferencesUI.py:3170 msgid "" "Create a CNC Job object\n" "tracing the contours of this\n" @@ -10515,11 +10357,11 @@ msgstr "" "die Konturen davon nachzeichnen\n" "Geometrieobjekt." -#: flatcamGUI/PreferencesUI.py:3211 +#: flatcamGUI/PreferencesUI.py:3212 msgid "Depth/Pass" msgstr "Tiefe / Pass" -#: flatcamGUI/PreferencesUI.py:3213 +#: flatcamGUI/PreferencesUI.py:3214 msgid "" "The depth to cut on each pass,\n" "when multidepth is enabled.\n" @@ -10533,11 +10375,11 @@ msgstr "" "es ist ein Bruch aus der Tiefe\n" "was einen negativen Wert hat." -#: flatcamGUI/PreferencesUI.py:3393 +#: flatcamGUI/PreferencesUI.py:3394 msgid "Geometry Adv. Options" msgstr "Geometrie Erw. Optionen" -#: flatcamGUI/PreferencesUI.py:3401 +#: flatcamGUI/PreferencesUI.py:3402 msgid "" "A list of Geometry advanced parameters.\n" "Those parameters are available only for\n" @@ -10547,13 +10389,13 @@ msgstr "" "Diese Parameter sind nur für verfügbar\n" "Erweiterte App. Niveau." -#: flatcamGUI/PreferencesUI.py:3411 flatcamGUI/PreferencesUI.py:5470 -#: flatcamGUI/PreferencesUI.py:6517 flatcamTools/ToolCalibration.py:125 +#: flatcamGUI/PreferencesUI.py:3412 flatcamGUI/PreferencesUI.py:5471 +#: flatcamGUI/PreferencesUI.py:6518 flatcamTools/ToolCalibration.py:125 #: flatcamTools/ToolSolderPaste.py:239 msgid "Toolchange X-Y" msgstr "Werkzeugwechsel X, Y" -#: flatcamGUI/PreferencesUI.py:3422 +#: flatcamGUI/PreferencesUI.py:3423 msgid "" "Height of the tool just after starting the work.\n" "Delete the value if you don't need this feature." @@ -10561,13 +10403,11 @@ msgstr "" "Höhe des Werkzeugs unmittelbar nach Beginn der Arbeit.\n" "Löschen Sie den Wert, wenn Sie diese Funktion nicht benötigen." -#: flatcamGUI/PreferencesUI.py:3526 -#, fuzzy -#| msgid "Seg. X size" +#: flatcamGUI/PreferencesUI.py:3527 msgid "Segment X size" -msgstr "Seg. X Größe" +msgstr "Segment X Größe" -#: flatcamGUI/PreferencesUI.py:3528 +#: flatcamGUI/PreferencesUI.py:3529 msgid "" "The size of the trace segment on the X axis.\n" "Useful for auto-leveling.\n" @@ -10577,13 +10417,11 @@ msgstr "" "Nützlich für die automatische Nivellierung.\n" "Ein Wert von 0 bedeutet keine Segmentierung auf der X-Achse." -#: flatcamGUI/PreferencesUI.py:3542 -#, fuzzy -#| msgid "Seg. Y size" +#: flatcamGUI/PreferencesUI.py:3543 msgid "Segment Y size" -msgstr "Seg. Y Größe" +msgstr "Segment Y Größe" -#: flatcamGUI/PreferencesUI.py:3544 +#: flatcamGUI/PreferencesUI.py:3545 msgid "" "The size of the trace segment on the Y axis.\n" "Useful for auto-leveling.\n" @@ -10593,15 +10431,15 @@ msgstr "" "Nützlich für die automatische Nivellierung.\n" "Ein Wert von 0 bedeutet keine Segmentierung auf der Y-Achse." -#: flatcamGUI/PreferencesUI.py:3565 +#: flatcamGUI/PreferencesUI.py:3566 msgid "Geometry Editor" msgstr "Geo-Editor" -#: flatcamGUI/PreferencesUI.py:3571 +#: flatcamGUI/PreferencesUI.py:3572 msgid "A list of Geometry Editor parameters." msgstr "Eine Liste der Geometry Editor-Parameter." -#: flatcamGUI/PreferencesUI.py:3581 flatcamGUI/PreferencesUI.py:6042 +#: flatcamGUI/PreferencesUI.py:3582 flatcamGUI/PreferencesUI.py:6043 msgid "" "Set the number of selected geometry\n" "items above which the utility geometry\n" @@ -10615,11 +10453,11 @@ msgstr "" "Erhöht die Leistung beim Bewegen von a\n" "große Anzahl von geometrischen Elementen." -#: flatcamGUI/PreferencesUI.py:3613 +#: flatcamGUI/PreferencesUI.py:3614 msgid "CNC Job General" msgstr "CNC-Job Allgemein" -#: flatcamGUI/PreferencesUI.py:3666 +#: flatcamGUI/PreferencesUI.py:3667 msgid "" "The number of circle steps for GCode \n" "circle and arc shapes linear approximation." @@ -10627,11 +10465,11 @@ msgstr "" "Die Anzahl der Kreisschritte für GCode\n" "Kreis- und Bogenformen lineare Annäherung." -#: flatcamGUI/PreferencesUI.py:3675 +#: flatcamGUI/PreferencesUI.py:3676 msgid "Travel dia" msgstr "Verfahrdurchm" -#: flatcamGUI/PreferencesUI.py:3677 +#: flatcamGUI/PreferencesUI.py:3678 msgid "" "The width of the travel lines to be\n" "rendered in the plot." @@ -10639,11 +10477,11 @@ msgstr "" "Die Breite der Fahrlinien soll sein\n" "in der Handlung gerendert." -#: flatcamGUI/PreferencesUI.py:3693 +#: flatcamGUI/PreferencesUI.py:3694 msgid "Coordinates decimals" msgstr "Koordinate Dezimalzahlen" -#: flatcamGUI/PreferencesUI.py:3695 +#: flatcamGUI/PreferencesUI.py:3696 msgid "" "The number of decimals to be used for \n" "the X, Y, Z coordinates in CNC code (GCODE, etc.)" @@ -10651,11 +10489,11 @@ msgstr "" "Die Anzahl der Dezimalstellen, für die verwendet werden soll\n" "die X-, Y-, Z-Koordinaten im CNC-Code (GCODE usw.)" -#: flatcamGUI/PreferencesUI.py:3706 +#: flatcamGUI/PreferencesUI.py:3707 msgid "Feedrate decimals" msgstr "Vorschub-Dezimalstellen" -#: flatcamGUI/PreferencesUI.py:3708 +#: flatcamGUI/PreferencesUI.py:3709 msgid "" "The number of decimals to be used for \n" "the Feedrate parameter in CNC code (GCODE, etc.)" @@ -10663,11 +10501,11 @@ msgstr "" "Die Anzahl der Dezimalstellen, für die verwendet werden soll\n" "der Vorschubparameter im CNC-Code (GCODE usw.)" -#: flatcamGUI/PreferencesUI.py:3719 +#: flatcamGUI/PreferencesUI.py:3720 msgid "Coordinates type" msgstr "Koordinaten eingeben" -#: flatcamGUI/PreferencesUI.py:3721 +#: flatcamGUI/PreferencesUI.py:3722 msgid "" "The type of coordinates to be used in Gcode.\n" "Can be:\n" @@ -10679,83 +10517,85 @@ msgstr "" "- Absolut G90 -> die Referenz ist der Ursprung x = 0, y = 0\n" "- Inkrementell G91 -> Die Referenz ist die vorherige Position" -#: flatcamGUI/PreferencesUI.py:3727 +#: flatcamGUI/PreferencesUI.py:3728 msgid "Absolute G90" msgstr "Absolut G90" -#: flatcamGUI/PreferencesUI.py:3728 +#: flatcamGUI/PreferencesUI.py:3729 msgid "Incremental G91" msgstr "Inkrementelles G91" -#: flatcamGUI/PreferencesUI.py:3738 +#: flatcamGUI/PreferencesUI.py:3739 msgid "Force Windows style line-ending" -msgstr "" +msgstr "Windows Zeilenendemarkierung erzwingen" -#: flatcamGUI/PreferencesUI.py:3740 +#: flatcamGUI/PreferencesUI.py:3741 msgid "" "When checked will force a Windows style line-ending\n" "(\\r\\n) on non-Windows OS's." msgstr "" +"Wenn ausgewählt werden Zeilenendungsmarkierungen von Windows (CRLF) auch auf " +"anderen Betriebssystemen geschrieben." -#: flatcamGUI/PreferencesUI.py:3754 +#: flatcamGUI/PreferencesUI.py:3755 msgid "CNC Job Options" msgstr "CNC-Auftragsoptionen" -#: flatcamGUI/PreferencesUI.py:3758 +#: flatcamGUI/PreferencesUI.py:3759 msgid "Export G-Code" msgstr "G-Code exportieren" -#: flatcamGUI/PreferencesUI.py:3774 +#: flatcamGUI/PreferencesUI.py:3775 msgid "Prepend to G-Code" msgstr "Voranstellen an G-Code" -#: flatcamGUI/PreferencesUI.py:3790 +#: flatcamGUI/PreferencesUI.py:3791 msgid "Append to G-Code" msgstr "An G-Code anhängen" -#: flatcamGUI/PreferencesUI.py:3816 +#: flatcamGUI/PreferencesUI.py:3817 msgid "CNC Job Adv. Options" msgstr "Erw. CNC-Joboptionen" -#: flatcamGUI/PreferencesUI.py:3902 +#: flatcamGUI/PreferencesUI.py:3903 msgid "Z depth for the cut" msgstr "Z Tiefe für den Schnitt" -#: flatcamGUI/PreferencesUI.py:3903 +#: flatcamGUI/PreferencesUI.py:3904 msgid "Z height for travel" msgstr "Z Höhe für die Reise" -#: flatcamGUI/PreferencesUI.py:3909 +#: flatcamGUI/PreferencesUI.py:3910 msgid "dwelltime = time to dwell to allow the spindle to reach it's set RPM" msgstr "" "dwelltime = Zeit zum Verweilen, damit die Spindel ihre eingestellte Drehzahl " "erreicht" -#: flatcamGUI/PreferencesUI.py:3928 +#: flatcamGUI/PreferencesUI.py:3929 msgid "Annotation Size" msgstr "Anmerkungsgröße" -#: flatcamGUI/PreferencesUI.py:3930 +#: flatcamGUI/PreferencesUI.py:3931 msgid "The font size of the annotation text. In pixels." msgstr "Die Schriftgröße des Anmerkungstextes. In Pixeln." -#: flatcamGUI/PreferencesUI.py:3940 +#: flatcamGUI/PreferencesUI.py:3941 msgid "Annotation Color" msgstr "Anmerkungsfarbe" -#: flatcamGUI/PreferencesUI.py:3942 +#: flatcamGUI/PreferencesUI.py:3943 msgid "Set the font color for the annotation texts." msgstr "Legen Sie die Schriftfarbe für die Anmerkungstexte fest." -#: flatcamGUI/PreferencesUI.py:3968 +#: flatcamGUI/PreferencesUI.py:3969 msgid "NCC Tool Options" msgstr "NCC-Tooloptionen" -#: flatcamGUI/PreferencesUI.py:3982 flatcamGUI/PreferencesUI.py:5380 +#: flatcamGUI/PreferencesUI.py:3983 flatcamGUI/PreferencesUI.py:5381 msgid "Tools dia" msgstr "Werkzeug durchmesser" -#: flatcamGUI/PreferencesUI.py:3993 flatcamGUI/PreferencesUI.py:4001 +#: flatcamGUI/PreferencesUI.py:3994 flatcamGUI/PreferencesUI.py:4002 #: flatcamTools/ToolNonCopperClear.py:215 #: flatcamTools/ToolNonCopperClear.py:223 msgid "" @@ -10767,11 +10607,11 @@ msgstr "" "- \"V-Form\"\n" "- Rundschreiben" -#: flatcamGUI/PreferencesUI.py:3998 flatcamTools/ToolNonCopperClear.py:220 +#: flatcamGUI/PreferencesUI.py:3999 flatcamTools/ToolNonCopperClear.py:220 msgid "V-shape" msgstr "V-Form" -#: flatcamGUI/PreferencesUI.py:4038 flatcamGUI/PreferencesUI.py:4047 +#: flatcamGUI/PreferencesUI.py:4039 flatcamGUI/PreferencesUI.py:4048 #: flatcamTools/ToolNonCopperClear.py:256 #: flatcamTools/ToolNonCopperClear.py:264 msgid "" @@ -10781,15 +10621,13 @@ msgstr "" "Schnitttiefe in Material. Negativer Wert.\n" "In FlatCAM-Einheiten." -#: flatcamGUI/PreferencesUI.py:4057 -#, fuzzy -#| msgid "Diameter for the new tool to add in the Tool Table" +#: flatcamGUI/PreferencesUI.py:4058 msgid "The new tool diameter (cut width) to add in the tool table." msgstr "" -"Durchmesser für das neue Werkzeug, das in der Werkzeugtabelle hinzugefügt " -"werden soll" +"Durchmesser (Eindringtiefe) für das neue Werkzeug, das in der " +"Werkzeugtabelle hinzugefügt werden soll." -#: flatcamGUI/PreferencesUI.py:4069 flatcamGUI/PreferencesUI.py:4077 +#: flatcamGUI/PreferencesUI.py:4070 flatcamGUI/PreferencesUI.py:4078 #: flatcamTools/ToolNonCopperClear.py:164 #: flatcamTools/ToolNonCopperClear.py:172 msgid "" @@ -10802,13 +10640,13 @@ msgstr "" "Werkzeugverbrauchs\n" "- konventionell / nützlich, wenn kein Spielausgleich vorhanden ist" -#: flatcamGUI/PreferencesUI.py:4086 flatcamGUI/PreferencesUI.py:4511 +#: flatcamGUI/PreferencesUI.py:4087 flatcamGUI/PreferencesUI.py:4512 #: flatcamTools/ToolNonCopperClear.py:181 flatcamTools/ToolPaint.py:153 msgid "Tool order" msgstr "Werkzeugbestellung" -#: flatcamGUI/PreferencesUI.py:4087 flatcamGUI/PreferencesUI.py:4097 -#: flatcamGUI/PreferencesUI.py:4512 flatcamGUI/PreferencesUI.py:4522 +#: flatcamGUI/PreferencesUI.py:4088 flatcamGUI/PreferencesUI.py:4098 +#: flatcamGUI/PreferencesUI.py:4513 flatcamGUI/PreferencesUI.py:4523 #: flatcamTools/ToolNonCopperClear.py:182 #: flatcamTools/ToolNonCopperClear.py:192 flatcamTools/ToolPaint.py:154 #: flatcamTools/ToolPaint.py:164 @@ -10833,29 +10671,18 @@ msgstr "" "festgelegt\n" "in umgekehrter Richtung und deaktivieren Sie diese Steuerung." -#: flatcamGUI/PreferencesUI.py:4095 flatcamGUI/PreferencesUI.py:4520 +#: flatcamGUI/PreferencesUI.py:4096 flatcamGUI/PreferencesUI.py:4521 #: flatcamTools/ToolNonCopperClear.py:190 flatcamTools/ToolPaint.py:162 msgid "Forward" msgstr "Vorwärts" -#: flatcamGUI/PreferencesUI.py:4096 flatcamGUI/PreferencesUI.py:4521 +#: flatcamGUI/PreferencesUI.py:4097 flatcamGUI/PreferencesUI.py:4522 #: flatcamTools/ToolNonCopperClear.py:191 flatcamTools/ToolPaint.py:163 msgid "Reverse" msgstr "Rückwärts" -#: flatcamGUI/PreferencesUI.py:4109 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." +# Double +#: flatcamGUI/PreferencesUI.py:4110 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" @@ -10865,27 +10692,26 @@ msgid "" "Higher values = slow processing and slow execution on CNC\n" "due of too many paths." msgstr "" -"Wie viel (Bruchteil) der Werkzeugbreite überlappt jeden Werkzeugdurchgang.\n" +"Wie viel (Prozent) der Werkzeugbreite überlappt jeden Werkzeugdurchgang.\n" "Beispiel:\n" "Ein Wert von 0,25 bedeutet hier 25%% vom oben gefundenen " "Werkzeugdurchmesser.\n" "\n" "Passen Sie den Wert beginnend mit niedrigeren Werten an\n" -"und erhöhen Sie es, wenn Bereiche, die geräumt werden sollten, noch sind\n" -"ungeklärt.\n" +"und erhöhen Sie es, wenn nicht alle Bereiche ausgemalt sind.\n" "Niedrigere Werte = schnellere Verarbeitung, schnellere Ausführung auf der " "Leiterplatte.\n" "Höhere Werte = langsame Bearbeitung und langsame Ausführung auf CNC\n" "wegen zu vieler Pfade." -#: flatcamGUI/PreferencesUI.py:4128 flatcamGUI/PreferencesUI.py:6108 -#: flatcamGUI/PreferencesUI.py:6350 flatcamGUI/PreferencesUI.py:6414 +#: flatcamGUI/PreferencesUI.py:4129 flatcamGUI/PreferencesUI.py:6109 +#: flatcamGUI/PreferencesUI.py:6351 flatcamGUI/PreferencesUI.py:6415 #: flatcamTools/ToolCopperThieving.py:113 flatcamTools/ToolFiducials.py:174 #: flatcamTools/ToolFiducials.py:237 flatcamTools/ToolNonCopperClear.py:339 msgid "Bounding box margin." msgstr "Begrenzungsrahmenrand." -#: flatcamGUI/PreferencesUI.py:4141 flatcamGUI/PreferencesUI.py:4569 +#: flatcamGUI/PreferencesUI.py:4142 flatcamGUI/PreferencesUI.py:4570 #: flatcamTools/ToolNonCopperClear.py:350 msgid "" "Algorithm for non-copper clearing:
Standard: Fixed step inwards." @@ -10896,22 +10722,22 @@ msgstr "" "Schritt nach innen. Seed-based : Ausgehend vom Saatgut.
" "Line-based: Parallele Linien." -#: flatcamGUI/PreferencesUI.py:4157 flatcamGUI/PreferencesUI.py:4583 +#: flatcamGUI/PreferencesUI.py:4158 flatcamGUI/PreferencesUI.py:4584 #: flatcamTools/ToolNonCopperClear.py:364 flatcamTools/ToolPaint.py:267 msgid "Connect" msgstr "Verbinden" -#: flatcamGUI/PreferencesUI.py:4168 flatcamGUI/PreferencesUI.py:4593 +#: flatcamGUI/PreferencesUI.py:4169 flatcamGUI/PreferencesUI.py:4594 #: flatcamTools/ToolNonCopperClear.py:373 flatcamTools/ToolPaint.py:276 msgid "Contour" msgstr "Kontur" -#: flatcamGUI/PreferencesUI.py:4179 flatcamTools/ToolNonCopperClear.py:382 +#: flatcamGUI/PreferencesUI.py:4180 flatcamTools/ToolNonCopperClear.py:382 #: flatcamTools/ToolPaint.py:285 msgid "Rest M." msgstr "Rest M." -#: flatcamGUI/PreferencesUI.py:4181 flatcamTools/ToolNonCopperClear.py:384 +#: flatcamGUI/PreferencesUI.py:4182 flatcamTools/ToolNonCopperClear.py:384 msgid "" "If checked, use 'rest machining'.\n" "Basically it will clear copper outside PCB features,\n" @@ -10929,7 +10755,7 @@ msgstr "" "kein kupfer mehr zum löschen oder es gibt keine werkzeuge mehr.\n" "Wenn nicht aktiviert, verwenden Sie den Standardalgorithmus." -#: flatcamGUI/PreferencesUI.py:4197 flatcamTools/ToolNonCopperClear.py:399 +#: flatcamGUI/PreferencesUI.py:4198 flatcamTools/ToolNonCopperClear.py:399 #: flatcamTools/ToolNonCopperClear.py:411 msgid "" "If used, it will add an offset to the copper features.\n" @@ -10942,17 +10768,12 @@ msgstr "" "von den Kupfermerkmalen.\n" "Der Wert kann zwischen 0 und 10 FlatCAM-Einheiten liegen." -#: flatcamGUI/PreferencesUI.py:4208 flatcamTools/ToolNonCopperClear.py:409 +#: flatcamGUI/PreferencesUI.py:4209 flatcamTools/ToolNonCopperClear.py:409 msgid "Offset value" msgstr "Offsetwert" -#: flatcamGUI/PreferencesUI.py:4210 -#, 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." +# What the hack is a FlatCAM unit?? +#: flatcamGUI/PreferencesUI.py:4211 msgid "" "If used, it will add an offset to the copper features.\n" "The copper clearing will finish to a distance\n" @@ -10960,30 +10781,30 @@ msgid "" "The value can be between 0.0 and 9999.9 FlatCAM units." msgstr "" "Bei Verwendung wird den Kupferelementen ein Offset hinzugefügt.\n" -"Die Kupferreinigung wird bis zu einer gewissen Entfernung enden\n" -"von den Kupfermerkmalen.\n" +"Die Kupferreinigung wird bei einer gewissen Entfernung\n" +"zu den Kupferflächen enden.\n" "Der Wert kann zwischen 0 und 10 FlatCAM-Einheiten liegen." -#: flatcamGUI/PreferencesUI.py:4225 flatcamGUI/PreferencesUI.py:6120 +#: flatcamGUI/PreferencesUI.py:4226 flatcamGUI/PreferencesUI.py:6121 #: flatcamTools/ToolCopperThieving.py:125 #: flatcamTools/ToolNonCopperClear.py:435 msgid "Itself" msgstr "Selbst" -#: flatcamGUI/PreferencesUI.py:4226 flatcamGUI/PreferencesUI.py:4615 +#: flatcamGUI/PreferencesUI.py:4227 flatcamGUI/PreferencesUI.py:4616 msgid "Area" msgstr "Bereich" -#: flatcamGUI/PreferencesUI.py:4227 flatcamGUI/PreferencesUI.py:4617 +#: flatcamGUI/PreferencesUI.py:4228 flatcamGUI/PreferencesUI.py:4618 msgid "Ref" msgstr "Ref" -#: flatcamGUI/PreferencesUI.py:4228 flatcamGUI/PreferencesUI.py:4794 +#: flatcamGUI/PreferencesUI.py:4229 flatcamGUI/PreferencesUI.py:4795 #: flatcamTools/ToolFilm.py:219 msgid "Reference" msgstr "Referenz" -#: flatcamGUI/PreferencesUI.py:4230 +#: flatcamGUI/PreferencesUI.py:4231 msgid "" "- 'Itself' - the non copper clearing extent\n" "is based on the object that is copper cleared.\n" @@ -11003,19 +10824,19 @@ msgstr "" "- 'Referenzobjekt' - löscht nicht kupferne Objekte innerhalb des Bereichs\n" "von einem anderen Objekt angegeben." -#: flatcamGUI/PreferencesUI.py:4242 flatcamGUI/PreferencesUI.py:4623 +#: flatcamGUI/PreferencesUI.py:4243 flatcamGUI/PreferencesUI.py:4624 msgid "Normal" msgstr "NormalFormat" -#: flatcamGUI/PreferencesUI.py:4243 flatcamGUI/PreferencesUI.py:4624 +#: flatcamGUI/PreferencesUI.py:4244 flatcamGUI/PreferencesUI.py:4625 msgid "Progressive" msgstr "Progressiv" -#: flatcamGUI/PreferencesUI.py:4244 +#: flatcamGUI/PreferencesUI.py:4245 msgid "NCC Plotting" msgstr "NCC-Plotten" -#: flatcamGUI/PreferencesUI.py:4246 +#: flatcamGUI/PreferencesUI.py:4247 msgid "" "- 'Normal' - normal plotting, done at the end of the NCC job\n" "- 'Progressive' - after each shape is generated it will be plotted." @@ -11023,16 +10844,16 @@ msgstr "" "- 'Normal' - normales Plotten am Ende des NCC-Jobs\n" "- 'Progressiv' - Nachdem jede Form generiert wurde, wird sie geplottet." -#: flatcamGUI/PreferencesUI.py:4260 +#: flatcamGUI/PreferencesUI.py:4261 msgid "Cutout Tool Options" msgstr "Ausschnittwerkzeug-Optionen" -#: flatcamGUI/PreferencesUI.py:4275 flatcamTools/ToolCalculators.py:123 +#: flatcamGUI/PreferencesUI.py:4276 flatcamTools/ToolCalculators.py:123 #: flatcamTools/ToolCutOut.py:123 msgid "Tool Diameter" msgstr "Werkzeugdurchm" -#: flatcamGUI/PreferencesUI.py:4277 flatcamTools/ToolCutOut.py:125 +#: flatcamGUI/PreferencesUI.py:4278 flatcamTools/ToolCutOut.py:125 msgid "" "Diameter of the tool used to cutout\n" "the PCB shape out of the surrounding material." @@ -11040,13 +10861,11 @@ msgstr "" "Durchmesser des zum Ausschneiden verwendeten Werkzeugs\n" "die PCB-Form aus dem umgebenden Material." -#: flatcamGUI/PreferencesUI.py:4332 flatcamTools/ToolCutOut.py:104 -#, fuzzy -#| msgid "Obj kind" +#: flatcamGUI/PreferencesUI.py:4333 flatcamTools/ToolCutOut.py:104 msgid "Object kind" -msgstr "Obj Art" +msgstr "Objektart" -#: flatcamGUI/PreferencesUI.py:4334 flatcamTools/ToolCutOut.py:106 +#: flatcamGUI/PreferencesUI.py:4335 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 " @@ -11058,15 +10877,15 @@ msgstr "" "Ein Panel-PCB-Gerber Objekt, dass\n" "aus vielen einzelnen PCB-Konturen zusammengesetzt ist." -#: flatcamGUI/PreferencesUI.py:4341 flatcamTools/ToolCutOut.py:112 +#: flatcamGUI/PreferencesUI.py:4342 flatcamTools/ToolCutOut.py:112 msgid "Single" msgstr "Einzeln" -#: flatcamGUI/PreferencesUI.py:4342 flatcamTools/ToolCutOut.py:113 +#: flatcamGUI/PreferencesUI.py:4343 flatcamTools/ToolCutOut.py:113 msgid "Panel" msgstr "Platte" -#: flatcamGUI/PreferencesUI.py:4349 flatcamTools/ToolCutOut.py:184 +#: flatcamGUI/PreferencesUI.py:4350 flatcamTools/ToolCutOut.py:184 msgid "" "Margin over bounds. A positive value here\n" "will make the cutout of the PCB further from\n" @@ -11076,11 +10895,11 @@ msgstr "" "macht den Ausschnitt der Leiterplatte weiter aus\n" "die tatsächliche PCB-Grenze" -#: flatcamGUI/PreferencesUI.py:4362 flatcamTools/ToolCutOut.py:195 +#: flatcamGUI/PreferencesUI.py:4363 flatcamTools/ToolCutOut.py:195 msgid "Gap size" msgstr "Spaltgröße" -#: flatcamGUI/PreferencesUI.py:4364 flatcamTools/ToolCutOut.py:197 +#: flatcamGUI/PreferencesUI.py:4365 flatcamTools/ToolCutOut.py:197 msgid "" "The size of the bridge gaps in the cutout\n" "used to keep the board connected to\n" @@ -11092,11 +10911,11 @@ msgstr "" "das umgebende Material (das eine\n" "von denen die Leiterplatte ausgeschnitten ist)." -#: flatcamGUI/PreferencesUI.py:4378 flatcamTools/ToolCutOut.py:239 +#: flatcamGUI/PreferencesUI.py:4379 flatcamTools/ToolCutOut.py:239 msgid "Gaps" msgstr "Spalt" -#: flatcamGUI/PreferencesUI.py:4380 +#: flatcamGUI/PreferencesUI.py:4381 msgid "" "Number of gaps used for the cutout.\n" "There can be maximum 8 bridges/gaps.\n" @@ -11120,11 +10939,11 @@ msgstr "" "- 2 tb \t- 2 * oben + 2 * unten\n" "- 8 \t- 2 * links + 2 * rechts + 2 * oben + 2 * unten" -#: flatcamGUI/PreferencesUI.py:4403 +#: flatcamGUI/PreferencesUI.py:4404 msgid "Convex Sh." -msgstr "Konvexe Form" +msgstr "Konvexe Form." -#: flatcamGUI/PreferencesUI.py:4405 flatcamTools/ToolCutOut.py:217 +#: flatcamGUI/PreferencesUI.py:4406 flatcamTools/ToolCutOut.py:217 msgid "" "Create a convex shape surrounding the entire PCB.\n" "Used only if the source object type is Gerber." @@ -11132,11 +10951,11 @@ msgstr "" "Erstellen Sie eine konvexe Form, die die gesamte Leiterplatte umgibt.\n" "Wird nur verwendet, wenn der Quellobjekttyp Gerber ist." -#: flatcamGUI/PreferencesUI.py:4419 +#: flatcamGUI/PreferencesUI.py:4420 msgid "2Sided Tool Options" msgstr "2Seitige Werkzeugoptionen" -#: flatcamGUI/PreferencesUI.py:4425 +#: flatcamGUI/PreferencesUI.py:4426 msgid "" "A tool to help in creating a double sided\n" "PCB using alignment holes." @@ -11144,36 +10963,36 @@ msgstr "" "Ein Werkzeug, das beim Erstellen eines doppelseitigen Dokuments hilft\n" "PCB mit Ausrichtungslöchern." -#: flatcamGUI/PreferencesUI.py:4439 flatcamTools/ToolDblSided.py:276 +#: flatcamGUI/PreferencesUI.py:4440 flatcamTools/ToolDblSided.py:276 msgid "Drill dia" msgstr "Bohrdurchmesser" -#: flatcamGUI/PreferencesUI.py:4441 flatcamTools/ToolDblSided.py:267 +#: flatcamGUI/PreferencesUI.py:4442 flatcamTools/ToolDblSided.py:267 #: flatcamTools/ToolDblSided.py:278 msgid "Diameter of the drill for the alignment holes." msgstr "Durchmesser des Bohrers für die Ausrichtungslöcher." -#: flatcamGUI/PreferencesUI.py:4450 flatcamTools/ToolDblSided.py:144 +#: flatcamGUI/PreferencesUI.py:4451 flatcamTools/ToolDblSided.py:144 msgid "Mirror Axis:" msgstr "Spiegelachse:" -#: flatcamGUI/PreferencesUI.py:4452 flatcamTools/ToolDblSided.py:145 +#: flatcamGUI/PreferencesUI.py:4453 flatcamTools/ToolDblSided.py:145 msgid "Mirror vertically (X) or horizontally (Y)." msgstr "Vertikal spiegeln (X) oder horizontal (Y)." -#: flatcamGUI/PreferencesUI.py:4461 flatcamTools/ToolDblSided.py:154 +#: flatcamGUI/PreferencesUI.py:4462 flatcamTools/ToolDblSided.py:154 msgid "Point" msgstr "Punkt" -#: flatcamGUI/PreferencesUI.py:4462 flatcamTools/ToolDblSided.py:155 +#: flatcamGUI/PreferencesUI.py:4463 flatcamTools/ToolDblSided.py:155 msgid "Box" msgstr "Box" -#: flatcamGUI/PreferencesUI.py:4463 flatcamTools/ToolDblSided.py:156 +#: flatcamGUI/PreferencesUI.py:4464 flatcamTools/ToolDblSided.py:156 msgid "Axis Ref" msgstr "Achsenreferenz" -#: flatcamGUI/PreferencesUI.py:4465 flatcamTools/ToolDblSided.py:158 +#: flatcamGUI/PreferencesUI.py:4466 flatcamTools/ToolDblSided.py:158 msgid "" "The axis should pass through a point or cut\n" " a specified box (in a FlatCAM object) through \n" @@ -11183,27 +11002,16 @@ msgstr "" "eine angegebene Box (in einem FlatCAM-Objekt) durch\n" "das Zentrum." -#: flatcamGUI/PreferencesUI.py:4481 +#: flatcamGUI/PreferencesUI.py:4482 msgid "Paint Tool Options" msgstr "Paint werkzeug-Optionen" -#: flatcamGUI/PreferencesUI.py:4487 +#: flatcamGUI/PreferencesUI.py:4488 msgid "Parameters:" msgstr "Parameter:" -#: flatcamGUI/PreferencesUI.py:4605 flatcamTools/ToolPaint.py:302 +#: flatcamGUI/PreferencesUI.py:4606 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 " @@ -11218,25 +11026,25 @@ msgid "" msgstr "" "So wählen Sie zu malende Polygone aus.\n" "\n" +"- 'Polygonauswahl' - Linker Mausklick um das Polygon das ausgemalt werden " +"soll hinzuzufügen oder zu löschen.\n" "- 'Bereichsauswahl' - Klicken Sie mit der linken Maustaste, um den Bereich " -"auszuwählen, der gemalt werden soll.\n" +"auszuwählen, der ausgemalt werden soll.\n" "Wenn Sie eine Änderungstaste gedrückt halten (STRG oder UMSCHALTTASTE), " "können Sie mehrere Bereiche hinzufügen.\n" "- 'Alle Polygone' - Der Malvorgang wird nach dem Klicken gestartet.\n" "- 'Referenzobjekt' - löscht nicht kupferne Objekte innerhalb des Bereichs\n" "von einem anderen Objekt angegeben." -#: flatcamGUI/PreferencesUI.py:4614 -#, fuzzy -#| msgid "Select" +#: flatcamGUI/PreferencesUI.py:4615 msgid "Sel" msgstr "Wählen" -#: flatcamGUI/PreferencesUI.py:4625 +#: flatcamGUI/PreferencesUI.py:4626 msgid "Paint Plotting" msgstr "Malen Sie Plotten" -#: flatcamGUI/PreferencesUI.py:4627 +#: flatcamGUI/PreferencesUI.py:4628 msgid "" "- 'Normal' - normal plotting, done at the end of the Paint job\n" "- 'Progressive' - after each shape is generated it will be plotted." @@ -11244,11 +11052,11 @@ msgstr "" "- 'Normal' - normales Plotten am Ende des Malvorgangs\n" "- 'Progressiv' - Nachdem jede Form generiert wurde, wird sie geplottet." -#: flatcamGUI/PreferencesUI.py:4641 +#: flatcamGUI/PreferencesUI.py:4642 msgid "Film Tool Options" msgstr "Filmwerkzeugoptionen" -#: flatcamGUI/PreferencesUI.py:4647 +#: flatcamGUI/PreferencesUI.py:4648 msgid "" "Create a PCB film from a Gerber or Geometry\n" "FlatCAM object.\n" @@ -11258,11 +11066,11 @@ msgstr "" "FlatCAM-Objekt\n" "Die Datei wird im SVG-Format gespeichert." -#: flatcamGUI/PreferencesUI.py:4658 +#: flatcamGUI/PreferencesUI.py:4659 msgid "Film Type" msgstr "Filmtyp" -#: flatcamGUI/PreferencesUI.py:4660 flatcamTools/ToolFilm.py:300 +#: flatcamGUI/PreferencesUI.py:4661 flatcamTools/ToolFilm.py:300 msgid "" "Generate a Positive black film or a Negative film.\n" "Positive means that it will print the features\n" @@ -11278,19 +11086,19 @@ msgstr "" "mit weiß auf einer schwarzen leinwand.\n" "Das Filmformat ist SVG." -#: flatcamGUI/PreferencesUI.py:4671 +#: flatcamGUI/PreferencesUI.py:4672 msgid "Film Color" msgstr "Filmfarbe" -#: flatcamGUI/PreferencesUI.py:4673 +#: flatcamGUI/PreferencesUI.py:4674 msgid "Set the film color when positive film is selected." msgstr "Stellen Sie die Filmfarbe ein, wenn Positivfilm ausgewählt ist." -#: flatcamGUI/PreferencesUI.py:4696 flatcamTools/ToolFilm.py:316 +#: flatcamGUI/PreferencesUI.py:4697 flatcamTools/ToolFilm.py:316 msgid "Border" msgstr "Rand" -#: flatcamGUI/PreferencesUI.py:4698 flatcamTools/ToolFilm.py:318 +#: flatcamGUI/PreferencesUI.py:4699 flatcamTools/ToolFilm.py:318 msgid "" "Specify a border around the object.\n" "Only for negative film.\n" @@ -11310,11 +11118,11 @@ msgstr "" "weiße Farbe wie der Rest und die mit der verwechseln kann\n" "Umgebung, wenn nicht für diese Grenze." -#: flatcamGUI/PreferencesUI.py:4715 flatcamTools/ToolFilm.py:283 +#: flatcamGUI/PreferencesUI.py:4716 flatcamTools/ToolFilm.py:283 msgid "Scale Stroke" msgstr "Skalierungshub" -#: flatcamGUI/PreferencesUI.py:4717 flatcamTools/ToolFilm.py:285 +#: flatcamGUI/PreferencesUI.py:4718 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 " @@ -11326,11 +11134,11 @@ msgstr "" "dünner ist.\n" "Daher können die Feinheiten von diesem Parameter stärker beeinflusst werden." -#: flatcamGUI/PreferencesUI.py:4724 flatcamTools/ToolFilm.py:141 +#: flatcamGUI/PreferencesUI.py:4725 flatcamTools/ToolFilm.py:141 msgid "Film Adjustments" msgstr "Filmeinstellungen" -#: flatcamGUI/PreferencesUI.py:4726 flatcamTools/ToolFilm.py:143 +#: flatcamGUI/PreferencesUI.py:4727 flatcamTools/ToolFilm.py:143 msgid "" "Sometime the printers will distort the print shape, especially the Laser " "types.\n" @@ -11340,11 +11148,11 @@ msgstr "" "In diesem Abschnitt finden Sie die Tools zum Ausgleichen der " "Druckverzerrungen." -#: flatcamGUI/PreferencesUI.py:4733 flatcamTools/ToolFilm.py:150 +#: flatcamGUI/PreferencesUI.py:4734 flatcamTools/ToolFilm.py:150 msgid "Scale Film geometry" msgstr "Filmgeometrie skalieren" -#: flatcamGUI/PreferencesUI.py:4735 flatcamTools/ToolFilm.py:152 +#: flatcamGUI/PreferencesUI.py:4736 flatcamTools/ToolFilm.py:152 msgid "" "A value greater than 1 will stretch the film\n" "while a value less than 1 will jolt it." @@ -11352,21 +11160,21 @@ msgstr "" "Ein Wert größer als 1 streckt den Film\n" "Ein Wert unter 1 ruckelt." -#: flatcamGUI/PreferencesUI.py:4745 flatcamGUI/PreferencesUI.py:5265 +#: flatcamGUI/PreferencesUI.py:4746 flatcamGUI/PreferencesUI.py:5266 #: flatcamTools/ToolFilm.py:162 flatcamTools/ToolTransform.py:147 msgid "X factor" msgstr "X Faktor" -#: flatcamGUI/PreferencesUI.py:4754 flatcamGUI/PreferencesUI.py:5278 +#: flatcamGUI/PreferencesUI.py:4755 flatcamGUI/PreferencesUI.py:5279 #: flatcamTools/ToolFilm.py:171 flatcamTools/ToolTransform.py:168 msgid "Y factor" msgstr "Y Faktor" -#: flatcamGUI/PreferencesUI.py:4764 flatcamTools/ToolFilm.py:189 +#: flatcamGUI/PreferencesUI.py:4765 flatcamTools/ToolFilm.py:189 msgid "Skew Film geometry" msgstr "Verzerren Sie die Filmgeometrie" -#: flatcamGUI/PreferencesUI.py:4766 flatcamTools/ToolFilm.py:191 +#: flatcamGUI/PreferencesUI.py:4767 flatcamTools/ToolFilm.py:191 msgid "" "Positive values will skew to the right\n" "while negative values will skew to the left." @@ -11374,17 +11182,17 @@ msgstr "" "Positive Werte werden nach rechts verschoben\n" "negative Werte werden nach links verschoben." -#: flatcamGUI/PreferencesUI.py:4776 flatcamGUI/PreferencesUI.py:5234 +#: flatcamGUI/PreferencesUI.py:4777 flatcamGUI/PreferencesUI.py:5235 #: flatcamTools/ToolFilm.py:201 flatcamTools/ToolTransform.py:97 msgid "X angle" msgstr "X Winkel" -#: flatcamGUI/PreferencesUI.py:4785 flatcamGUI/PreferencesUI.py:5248 +#: flatcamGUI/PreferencesUI.py:4786 flatcamGUI/PreferencesUI.py:5249 #: flatcamTools/ToolFilm.py:210 flatcamTools/ToolTransform.py:119 msgid "Y angle" msgstr "Y Winkel" -#: flatcamGUI/PreferencesUI.py:4796 flatcamTools/ToolFilm.py:221 +#: flatcamGUI/PreferencesUI.py:4797 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." @@ -11392,84 +11200,86 @@ msgstr "" "Der Referenzpunkt, der als Ursprung für den Versatz verwendet werden soll.\n" "Dies kann einer der vier Punkte des Geometrie-Begrenzungsrahmens sein." -#: flatcamGUI/PreferencesUI.py:4799 flatcamTools/ToolFiducials.py:87 +#: flatcamGUI/PreferencesUI.py:4800 flatcamTools/ToolFiducials.py:87 #: flatcamTools/ToolFilm.py:224 msgid "Bottom Left" msgstr "Unten links" -#: flatcamGUI/PreferencesUI.py:4800 flatcamTools/ToolFilm.py:225 +#: flatcamGUI/PreferencesUI.py:4801 flatcamTools/ToolFilm.py:225 msgid "Top Left" msgstr "Oben links" -#: flatcamGUI/PreferencesUI.py:4801 flatcamTools/ToolFilm.py:226 +#: flatcamGUI/PreferencesUI.py:4802 flatcamTools/ToolFilm.py:226 msgid "Bottom Right" msgstr "Unten rechts" -#: flatcamGUI/PreferencesUI.py:4802 flatcamTools/ToolFilm.py:227 +#: flatcamGUI/PreferencesUI.py:4803 flatcamTools/ToolFilm.py:227 msgid "Top right" msgstr "Oben rechts" -#: flatcamGUI/PreferencesUI.py:4810 flatcamTools/ToolFilm.py:244 +#: flatcamGUI/PreferencesUI.py:4811 flatcamTools/ToolFilm.py:244 msgid "Mirror Film geometry" msgstr "Spiegeln Sie die Filmgeometrie" -#: flatcamGUI/PreferencesUI.py:4812 flatcamTools/ToolFilm.py:246 +#: flatcamGUI/PreferencesUI.py:4813 flatcamTools/ToolFilm.py:246 msgid "Mirror the film geometry on the selected axis or on both." msgstr "" "Spiegeln Sie die Filmgeometrie auf der ausgewählten Achse oder auf beiden." -#: flatcamGUI/PreferencesUI.py:4824 flatcamTools/ToolFilm.py:258 +#: flatcamGUI/PreferencesUI.py:4825 flatcamTools/ToolFilm.py:258 msgid "Both" msgstr "Both" -#: flatcamGUI/PreferencesUI.py:4826 flatcamTools/ToolFilm.py:260 +#: flatcamGUI/PreferencesUI.py:4827 flatcamTools/ToolFilm.py:260 msgid "Mirror axis" msgstr "Achse spiegeln" -#: flatcamGUI/PreferencesUI.py:4836 flatcamTools/ToolFilm.py:403 +#: flatcamGUI/PreferencesUI.py:4837 flatcamTools/ToolFilm.py:403 msgid "SVG" -msgstr "" +msgstr "SVG" -#: flatcamGUI/PreferencesUI.py:4837 flatcamTools/ToolFilm.py:404 +#: flatcamGUI/PreferencesUI.py:4838 flatcamTools/ToolFilm.py:404 msgid "PNG" -msgstr "" +msgstr "PNG" -#: flatcamGUI/PreferencesUI.py:4838 flatcamTools/ToolFilm.py:405 +#: flatcamGUI/PreferencesUI.py:4839 flatcamTools/ToolFilm.py:405 msgid "PDF" -msgstr "" +msgstr "PDF" -#: flatcamGUI/PreferencesUI.py:4841 flatcamTools/ToolFilm.py:298 +#: flatcamGUI/PreferencesUI.py:4842 flatcamTools/ToolFilm.py:298 #: flatcamTools/ToolFilm.py:408 msgid "Film Type:" msgstr "Filmtyp:" -#: flatcamGUI/PreferencesUI.py:4843 flatcamTools/ToolFilm.py:410 +#: flatcamGUI/PreferencesUI.py:4844 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 "" +"Der Dateityp in dem gespeichert werden soll:\n" +"- 'SVG' -> open-source vectorial format\n" +"- 'PNG' -> raster image\n" +"- 'PDF' -> portable document format" -#: flatcamGUI/PreferencesUI.py:4852 flatcamTools/ToolFilm.py:419 +#: flatcamGUI/PreferencesUI.py:4853 flatcamTools/ToolFilm.py:419 msgid "Page Orientation" -msgstr "" +msgstr "Seitenausrichtung" -#: flatcamGUI/PreferencesUI.py:4865 flatcamTools/ToolFilm.py:432 -#, fuzzy -#| msgid "Trace Size" +#: flatcamGUI/PreferencesUI.py:4866 flatcamTools/ToolFilm.py:432 msgid "Page Size" -msgstr "Spurengröße" +msgstr "Seitengröße" -#: flatcamGUI/PreferencesUI.py:4866 flatcamTools/ToolFilm.py:433 +#: flatcamGUI/PreferencesUI.py:4867 flatcamTools/ToolFilm.py:433 msgid "A selection of standard ISO 216 page sizes." -msgstr "" +msgstr "Eine Auswahl von Standard ISO 216 Seitengrößen." -#: flatcamGUI/PreferencesUI.py:4938 +#: flatcamGUI/PreferencesUI.py:4939 msgid "Panelize Tool Options" msgstr "Panelize Werkzeugoptionen" -#: flatcamGUI/PreferencesUI.py:4944 +#: flatcamGUI/PreferencesUI.py:4945 msgid "" "Create an object that contains an array of (x, y) elements,\n" "each element is a copy of the source object spaced\n" @@ -11479,11 +11289,11 @@ msgstr "" "Jedes Element ist eine Kopie des Quellobjekts\n" "in einem X-Abstand, Y-Abstand voneinander." -#: flatcamGUI/PreferencesUI.py:4961 flatcamTools/ToolPanelize.py:160 +#: flatcamGUI/PreferencesUI.py:4962 flatcamTools/ToolPanelize.py:160 msgid "Spacing cols" msgstr "Abstandspalten" -#: flatcamGUI/PreferencesUI.py:4963 flatcamTools/ToolPanelize.py:162 +#: flatcamGUI/PreferencesUI.py:4964 flatcamTools/ToolPanelize.py:162 msgid "" "Spacing between columns of the desired panel.\n" "In current units." @@ -11491,11 +11301,11 @@ msgstr "" "Abstand zwischen den Spalten des gewünschten Bereichs.\n" "In aktuellen Einheiten." -#: flatcamGUI/PreferencesUI.py:4975 flatcamTools/ToolPanelize.py:172 +#: flatcamGUI/PreferencesUI.py:4976 flatcamTools/ToolPanelize.py:172 msgid "Spacing rows" msgstr "Abstand Reihen" -#: flatcamGUI/PreferencesUI.py:4977 flatcamTools/ToolPanelize.py:174 +#: flatcamGUI/PreferencesUI.py:4978 flatcamTools/ToolPanelize.py:174 msgid "" "Spacing between rows of the desired panel.\n" "In current units." @@ -11503,36 +11313,36 @@ msgstr "" "Abstand zwischen den Reihen des gewünschten Feldes.\n" "In aktuellen Einheiten." -#: flatcamGUI/PreferencesUI.py:4988 flatcamTools/ToolPanelize.py:183 +#: flatcamGUI/PreferencesUI.py:4989 flatcamTools/ToolPanelize.py:183 msgid "Columns" msgstr "Säulen" -#: flatcamGUI/PreferencesUI.py:4990 flatcamTools/ToolPanelize.py:185 +#: flatcamGUI/PreferencesUI.py:4991 flatcamTools/ToolPanelize.py:185 msgid "Number of columns of the desired panel" msgstr "Anzahl der Spalten des gewünschten Bereichs" -#: flatcamGUI/PreferencesUI.py:5000 flatcamTools/ToolPanelize.py:193 +#: flatcamGUI/PreferencesUI.py:5001 flatcamTools/ToolPanelize.py:193 msgid "Rows" msgstr "Reihen" -#: flatcamGUI/PreferencesUI.py:5002 flatcamTools/ToolPanelize.py:195 +#: flatcamGUI/PreferencesUI.py:5003 flatcamTools/ToolPanelize.py:195 msgid "Number of rows of the desired panel" msgstr "Anzahl der Zeilen des gewünschten Panels" -#: flatcamGUI/PreferencesUI.py:5008 flatcamTools/ToolCalibration.py:196 +#: flatcamGUI/PreferencesUI.py:5009 flatcamTools/ToolCalibration.py:196 #: flatcamTools/ToolCalibration.py:634 flatcamTools/ToolPanelize.py:201 msgid "Gerber" msgstr "Gerber" -#: flatcamGUI/PreferencesUI.py:5009 flatcamTools/ToolPanelize.py:202 +#: flatcamGUI/PreferencesUI.py:5010 flatcamTools/ToolPanelize.py:202 msgid "Geo" msgstr "Geo" -#: flatcamGUI/PreferencesUI.py:5010 flatcamTools/ToolPanelize.py:203 +#: flatcamGUI/PreferencesUI.py:5011 flatcamTools/ToolPanelize.py:203 msgid "Panel Type" msgstr "Panel-Typ" -#: flatcamGUI/PreferencesUI.py:5012 +#: flatcamGUI/PreferencesUI.py:5013 msgid "" "Choose the type of object for the panel object:\n" "- Gerber\n" @@ -11542,11 +11352,11 @@ msgstr "" "- Gerber\n" "- Geometrie" -#: flatcamGUI/PreferencesUI.py:5021 +#: flatcamGUI/PreferencesUI.py:5022 msgid "Constrain within" msgstr "Beschränkung innerhalb" -#: flatcamGUI/PreferencesUI.py:5023 flatcamTools/ToolPanelize.py:215 +#: flatcamGUI/PreferencesUI.py:5024 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" @@ -11560,11 +11370,11 @@ msgstr "" "Das letzte Panel enthält so viele Spalten und Zeilen wie\n" "Sie passen vollständig in den ausgewählten Bereich." -#: flatcamGUI/PreferencesUI.py:5036 flatcamTools/ToolPanelize.py:227 +#: flatcamGUI/PreferencesUI.py:5037 flatcamTools/ToolPanelize.py:227 msgid "Width (DX)" msgstr "Breite (DX)" -#: flatcamGUI/PreferencesUI.py:5038 flatcamTools/ToolPanelize.py:229 +#: flatcamGUI/PreferencesUI.py:5039 flatcamTools/ToolPanelize.py:229 msgid "" "The width (DX) within which the panel must fit.\n" "In current units." @@ -11572,11 +11382,11 @@ msgstr "" "Die Breite (DX), in die das Panel passen muss.\n" "In aktuellen Einheiten." -#: flatcamGUI/PreferencesUI.py:5049 flatcamTools/ToolPanelize.py:238 +#: flatcamGUI/PreferencesUI.py:5050 flatcamTools/ToolPanelize.py:238 msgid "Height (DY)" msgstr "Höhe (DY)" -#: flatcamGUI/PreferencesUI.py:5051 flatcamTools/ToolPanelize.py:240 +#: flatcamGUI/PreferencesUI.py:5052 flatcamTools/ToolPanelize.py:240 msgid "" "The height (DY)within which the panel must fit.\n" "In current units." @@ -11584,15 +11394,15 @@ msgstr "" "Die Höhe (DY), in die die Platte passen muss.\n" "In aktuellen Einheiten." -#: flatcamGUI/PreferencesUI.py:5065 +#: flatcamGUI/PreferencesUI.py:5066 msgid "Calculators Tool Options" msgstr "Rechner-Tool-Optionen" -#: flatcamGUI/PreferencesUI.py:5069 flatcamTools/ToolCalculators.py:25 +#: flatcamGUI/PreferencesUI.py:5070 flatcamTools/ToolCalculators.py:25 msgid "V-Shape Tool Calculator" msgstr "V-Shape-Werkzeugrechner" -#: flatcamGUI/PreferencesUI.py:5071 +#: flatcamGUI/PreferencesUI.py:5072 msgid "" "Calculate the tool diameter for a given V-shape tool,\n" "having the tip diameter, tip angle and\n" @@ -11603,11 +11413,11 @@ msgstr "" "mit dem Spitzendurchmesser, Spitzenwinkel und\n" "Schnitttiefe als Parameter." -#: flatcamGUI/PreferencesUI.py:5086 flatcamTools/ToolCalculators.py:94 +#: flatcamGUI/PreferencesUI.py:5087 flatcamTools/ToolCalculators.py:94 msgid "Tip Diameter" msgstr "Spitzendurchmesser" -#: flatcamGUI/PreferencesUI.py:5088 flatcamTools/ToolCalculators.py:102 +#: flatcamGUI/PreferencesUI.py:5089 flatcamTools/ToolCalculators.py:102 msgid "" "This is the tool tip diameter.\n" "It is specified by manufacturer." @@ -11615,11 +11425,11 @@ msgstr "" "Dies ist der Werkzeugspitzendurchmesser.\n" "Es wird vom Hersteller angegeben." -#: flatcamGUI/PreferencesUI.py:5100 flatcamTools/ToolCalculators.py:105 +#: flatcamGUI/PreferencesUI.py:5101 flatcamTools/ToolCalculators.py:105 msgid "Tip Angle" msgstr "Spitzenwinkel" -#: flatcamGUI/PreferencesUI.py:5102 +#: flatcamGUI/PreferencesUI.py:5103 msgid "" "This is the angle on the tip of the tool.\n" "It is specified by manufacturer." @@ -11627,7 +11437,7 @@ msgstr "" "Dies ist der Winkel an der Spitze des Werkzeugs.\n" "Es wird vom Hersteller angegeben." -#: flatcamGUI/PreferencesUI.py:5116 +#: flatcamGUI/PreferencesUI.py:5117 msgid "" "This is depth to cut into material.\n" "In the CNCJob object it is the CutZ parameter." @@ -11635,11 +11445,11 @@ msgstr "" "Dies ist die Tiefe zum Schneiden in Material.\n" "Im CNCJob-Objekt ist dies der Parameter CutZ." -#: flatcamGUI/PreferencesUI.py:5123 flatcamTools/ToolCalculators.py:27 +#: flatcamGUI/PreferencesUI.py:5124 flatcamTools/ToolCalculators.py:27 msgid "ElectroPlating Calculator" msgstr "Galvanikrechner" -#: flatcamGUI/PreferencesUI.py:5125 flatcamTools/ToolCalculators.py:158 +#: flatcamGUI/PreferencesUI.py:5126 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 " @@ -11650,27 +11460,27 @@ msgstr "" "unter Verwendung einer Methode wie Grahit-Tinte oder Calcium-Hypophosphit-" "Tinte oder Palladiumchlorid." -#: flatcamGUI/PreferencesUI.py:5139 flatcamTools/ToolCalculators.py:167 +#: flatcamGUI/PreferencesUI.py:5140 flatcamTools/ToolCalculators.py:167 msgid "Board Length" msgstr "PCB Länge" -#: flatcamGUI/PreferencesUI.py:5141 flatcamTools/ToolCalculators.py:173 +#: flatcamGUI/PreferencesUI.py:5142 flatcamTools/ToolCalculators.py:173 msgid "This is the board length. In centimeters." msgstr "Dies ist die Boardlänge. In Zentimeter." -#: flatcamGUI/PreferencesUI.py:5151 flatcamTools/ToolCalculators.py:175 +#: flatcamGUI/PreferencesUI.py:5152 flatcamTools/ToolCalculators.py:175 msgid "Board Width" msgstr "PCB Breite" -#: flatcamGUI/PreferencesUI.py:5153 flatcamTools/ToolCalculators.py:181 +#: flatcamGUI/PreferencesUI.py:5154 flatcamTools/ToolCalculators.py:181 msgid "This is the board width.In centimeters." msgstr "Dies ist die Breite der Platte in Zentimetern." -#: flatcamGUI/PreferencesUI.py:5158 flatcamTools/ToolCalculators.py:183 +#: flatcamGUI/PreferencesUI.py:5159 flatcamTools/ToolCalculators.py:183 msgid "Current Density" msgstr "Stromdichte" -#: flatcamGUI/PreferencesUI.py:5164 flatcamTools/ToolCalculators.py:190 +#: flatcamGUI/PreferencesUI.py:5165 flatcamTools/ToolCalculators.py:190 msgid "" "Current density to pass through the board. \n" "In Amps per Square Feet ASF." @@ -11678,11 +11488,11 @@ msgstr "" "Stromdichte durch die Platine.\n" "In Ampere pro Quadratfuß ASF." -#: flatcamGUI/PreferencesUI.py:5170 flatcamTools/ToolCalculators.py:193 +#: flatcamGUI/PreferencesUI.py:5171 flatcamTools/ToolCalculators.py:193 msgid "Copper Growth" msgstr "Kupferwachstum" -#: flatcamGUI/PreferencesUI.py:5176 flatcamTools/ToolCalculators.py:200 +#: flatcamGUI/PreferencesUI.py:5177 flatcamTools/ToolCalculators.py:200 msgid "" "How thick the copper growth is intended to be.\n" "In microns." @@ -11690,11 +11500,11 @@ msgstr "" "Wie dick soll das Kupferwachstum sein.\n" "In Mikrometern." -#: flatcamGUI/PreferencesUI.py:5189 +#: flatcamGUI/PreferencesUI.py:5190 msgid "Transform Tool Options" msgstr "Umwandlungswerkzeug-Optionen" -#: flatcamGUI/PreferencesUI.py:5195 +#: flatcamGUI/PreferencesUI.py:5196 msgid "" "Various transformations that can be applied\n" "on a FlatCAM object." @@ -11702,19 +11512,19 @@ msgstr "" "Verschiedene Transformationen, die angewendet werden können\n" "auf einem FlatCAM-Objekt." -#: flatcamGUI/PreferencesUI.py:5226 +#: flatcamGUI/PreferencesUI.py:5227 msgid "Skew" msgstr "Neigung" -#: flatcamGUI/PreferencesUI.py:5267 flatcamTools/ToolTransform.py:149 +#: flatcamGUI/PreferencesUI.py:5268 flatcamTools/ToolTransform.py:149 msgid "Factor for scaling on X axis." msgstr "Faktor für die Skalierung auf der X-Achse." -#: flatcamGUI/PreferencesUI.py:5280 flatcamTools/ToolTransform.py:170 +#: flatcamGUI/PreferencesUI.py:5281 flatcamTools/ToolTransform.py:170 msgid "Factor for scaling on Y axis." msgstr "Faktor für die Skalierung auf der Y-Achse." -#: flatcamGUI/PreferencesUI.py:5288 flatcamTools/ToolTransform.py:193 +#: flatcamGUI/PreferencesUI.py:5289 flatcamTools/ToolTransform.py:193 msgid "" "Scale the selected object(s)\n" "using the Scale_X factor for both axis." @@ -11722,7 +11532,7 @@ msgstr "" "Skalieren Sie die ausgewählten Objekte\n" "Verwenden des Skalierungsfaktors X für beide Achsen." -#: flatcamGUI/PreferencesUI.py:5296 flatcamTools/ToolTransform.py:201 +#: flatcamGUI/PreferencesUI.py:5297 flatcamTools/ToolTransform.py:201 msgid "" "Scale the selected object(s)\n" "using the origin reference when checked,\n" @@ -11734,27 +11544,27 @@ msgstr "" "und die Mitte der größten Begrenzungsbox\n" "der ausgewählten Objekte, wenn sie nicht markiert sind." -#: flatcamGUI/PreferencesUI.py:5312 flatcamTools/ToolTransform.py:216 +#: flatcamGUI/PreferencesUI.py:5313 flatcamTools/ToolTransform.py:216 msgid "X val" msgstr "X-Wert" -#: flatcamGUI/PreferencesUI.py:5314 flatcamTools/ToolTransform.py:218 +#: flatcamGUI/PreferencesUI.py:5315 flatcamTools/ToolTransform.py:218 msgid "Distance to offset on X axis. In current units." msgstr "Abstand zum Offset auf der X-Achse. In aktuellen Einheiten." -#: flatcamGUI/PreferencesUI.py:5325 flatcamTools/ToolTransform.py:237 +#: flatcamGUI/PreferencesUI.py:5326 flatcamTools/ToolTransform.py:237 msgid "Y val" msgstr "Y-Wert" -#: flatcamGUI/PreferencesUI.py:5327 flatcamTools/ToolTransform.py:239 +#: flatcamGUI/PreferencesUI.py:5328 flatcamTools/ToolTransform.py:239 msgid "Distance to offset on Y axis. In current units." msgstr "Abstand zum Offset auf der Y-Achse. In aktuellen Einheiten." -#: flatcamGUI/PreferencesUI.py:5333 flatcamTools/ToolTransform.py:284 +#: flatcamGUI/PreferencesUI.py:5334 flatcamTools/ToolTransform.py:284 msgid "Mirror Reference" msgstr "Spiegelreferenz" -#: flatcamGUI/PreferencesUI.py:5335 flatcamTools/ToolTransform.py:286 +#: flatcamGUI/PreferencesUI.py:5336 flatcamTools/ToolTransform.py:286 msgid "" "Flip the selected object(s)\n" "around the point in Point Entry Field.\n" @@ -11777,11 +11587,11 @@ msgstr "" "Oder geben Sie die Koordinaten im Format (x, y) in ein\n" "Punkt-Eingabefeld und klicken Sie auf X (Y) drehen" -#: flatcamGUI/PreferencesUI.py:5346 +#: flatcamGUI/PreferencesUI.py:5347 msgid "Mirror Reference point" msgstr "Referenzpunkt spiegeln" -#: flatcamGUI/PreferencesUI.py:5348 +#: flatcamGUI/PreferencesUI.py:5349 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" @@ -11792,11 +11602,11 @@ msgstr "" "Das 'x' in (x, y) wird verwendet, wenn Sie bei X und\n" "Das 'y' in (x, y) wird verwendet, wenn Flip auf Y und verwendet wird" -#: flatcamGUI/PreferencesUI.py:5365 +#: flatcamGUI/PreferencesUI.py:5366 msgid "SolderPaste Tool Options" msgstr "Lötpaste-Werkzeug-Optionen" -#: flatcamGUI/PreferencesUI.py:5371 +#: flatcamGUI/PreferencesUI.py:5372 msgid "" "A tool to create GCode for dispensing\n" "solder paste onto a PCB." @@ -11804,49 +11614,49 @@ msgstr "" "Ein Werkzeug zum Erstellen von GCode für die Ausgabe\n" "Lotpaste auf eine Leiterplatte." -#: flatcamGUI/PreferencesUI.py:5382 +#: flatcamGUI/PreferencesUI.py:5383 msgid "Diameters of nozzle tools, separated by ','" msgstr "Durchmesser der Düsenwerkzeuge, getrennt durch ','" -#: flatcamGUI/PreferencesUI.py:5390 +#: flatcamGUI/PreferencesUI.py:5391 msgid "New Nozzle Dia" msgstr "Neuer Düsendurchmesser" -#: flatcamGUI/PreferencesUI.py:5392 flatcamTools/ToolSolderPaste.py:106 +#: flatcamGUI/PreferencesUI.py:5393 flatcamTools/ToolSolderPaste.py:106 msgid "Diameter for the new Nozzle tool to add in the Tool Table" msgstr "" "Durchmesser für das neue Düsenwerkzeug, das in die Werkzeugtabelle eingefügt " "werden soll" -#: flatcamGUI/PreferencesUI.py:5408 flatcamTools/ToolSolderPaste.py:182 +#: flatcamGUI/PreferencesUI.py:5409 flatcamTools/ToolSolderPaste.py:182 msgid "Z Dispense Start" msgstr "Z Dosierbeginn" -#: flatcamGUI/PreferencesUI.py:5410 flatcamTools/ToolSolderPaste.py:184 +#: flatcamGUI/PreferencesUI.py:5411 flatcamTools/ToolSolderPaste.py:184 msgid "The height (Z) when solder paste dispensing starts." msgstr "Die Höhe (Z) bei der Lotpastendosierung." -#: flatcamGUI/PreferencesUI.py:5421 flatcamTools/ToolSolderPaste.py:194 +#: flatcamGUI/PreferencesUI.py:5422 flatcamTools/ToolSolderPaste.py:194 msgid "Z Dispense" msgstr "Z-Abgabe" -#: flatcamGUI/PreferencesUI.py:5423 flatcamTools/ToolSolderPaste.py:196 +#: flatcamGUI/PreferencesUI.py:5424 flatcamTools/ToolSolderPaste.py:196 msgid "The height (Z) when doing solder paste dispensing." msgstr "Die Höhe (Z) bei der Lotpastendosierung." -#: flatcamGUI/PreferencesUI.py:5434 flatcamTools/ToolSolderPaste.py:206 +#: flatcamGUI/PreferencesUI.py:5435 flatcamTools/ToolSolderPaste.py:206 msgid "Z Dispense Stop" msgstr "Z Abgabestopp" -#: flatcamGUI/PreferencesUI.py:5436 flatcamTools/ToolSolderPaste.py:208 +#: flatcamGUI/PreferencesUI.py:5437 flatcamTools/ToolSolderPaste.py:208 msgid "The height (Z) when solder paste dispensing stops." msgstr "Die Höhe (Z) bei der Lotpastendosierung stoppt." -#: flatcamGUI/PreferencesUI.py:5447 flatcamTools/ToolSolderPaste.py:218 +#: flatcamGUI/PreferencesUI.py:5448 flatcamTools/ToolSolderPaste.py:218 msgid "Z Travel" msgstr "Z Reise" -#: flatcamGUI/PreferencesUI.py:5449 flatcamTools/ToolSolderPaste.py:220 +#: flatcamGUI/PreferencesUI.py:5450 flatcamTools/ToolSolderPaste.py:220 msgid "" "The height (Z) for travel between pads\n" "(without dispensing solder paste)." @@ -11854,15 +11664,15 @@ msgstr "" "Die Höhe (Z) für den Weg zwischen Pads\n" "(ohne Lotpaste zu dosieren)." -#: flatcamGUI/PreferencesUI.py:5461 flatcamTools/ToolSolderPaste.py:231 +#: flatcamGUI/PreferencesUI.py:5462 flatcamTools/ToolSolderPaste.py:231 msgid "Z Toolchange" msgstr "Z Werkzeugwechsel" -#: flatcamGUI/PreferencesUI.py:5463 flatcamTools/ToolSolderPaste.py:233 +#: flatcamGUI/PreferencesUI.py:5464 flatcamTools/ToolSolderPaste.py:233 msgid "The height (Z) for tool (nozzle) change." msgstr "Die Höhe (Z) für Werkzeug (Düse) ändert sich." -#: flatcamGUI/PreferencesUI.py:5472 flatcamTools/ToolSolderPaste.py:241 +#: flatcamGUI/PreferencesUI.py:5473 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." @@ -11870,11 +11680,11 @@ msgstr "" "Die X, Y-Position für Werkzeug (Düse) ändert sich.\n" "Das Format ist (x, y), wobei x und y reelle Zahlen sind." -#: flatcamGUI/PreferencesUI.py:5486 flatcamTools/ToolSolderPaste.py:254 +#: flatcamGUI/PreferencesUI.py:5487 flatcamTools/ToolSolderPaste.py:254 msgid "Feedrate (speed) while moving on the X-Y plane." msgstr "Vorschub (Geschwindigkeit) während der Bewegung auf der X-Y-Ebene." -#: flatcamGUI/PreferencesUI.py:5499 flatcamTools/ToolSolderPaste.py:266 +#: flatcamGUI/PreferencesUI.py:5500 flatcamTools/ToolSolderPaste.py:266 msgid "" "Feedrate (speed) while moving vertically\n" "(on Z plane)." @@ -11882,11 +11692,11 @@ msgstr "" "Vorschub (Geschwindigkeit) bei vertikaler Bewegung\n" "(auf der Z-Ebene)." -#: flatcamGUI/PreferencesUI.py:5511 flatcamTools/ToolSolderPaste.py:277 +#: flatcamGUI/PreferencesUI.py:5512 flatcamTools/ToolSolderPaste.py:277 msgid "Feedrate Z Dispense" msgstr "Vorschub Z Dosierung" -#: flatcamGUI/PreferencesUI.py:5513 +#: flatcamGUI/PreferencesUI.py:5514 msgid "" "Feedrate (speed) while moving up vertically\n" "to Dispense position (on Z plane)." @@ -11894,11 +11704,11 @@ msgstr "" "Vorschub (Geschwindigkeit) bei vertikaler Aufwärtsbewegung\n" "in Ausgabeposition (in der Z-Ebene)." -#: flatcamGUI/PreferencesUI.py:5524 flatcamTools/ToolSolderPaste.py:289 +#: flatcamGUI/PreferencesUI.py:5525 flatcamTools/ToolSolderPaste.py:289 msgid "Spindle Speed FWD" msgstr "Spindeldrehzahl FWD" -#: flatcamGUI/PreferencesUI.py:5526 flatcamTools/ToolSolderPaste.py:291 +#: flatcamGUI/PreferencesUI.py:5527 flatcamTools/ToolSolderPaste.py:291 msgid "" "The dispenser speed while pushing solder paste\n" "through the dispenser nozzle." @@ -11906,19 +11716,19 @@ msgstr "" "Die Spendergeschwindigkeit beim Schieben der Lötpaste\n" "durch die Spenderdüse." -#: flatcamGUI/PreferencesUI.py:5538 flatcamTools/ToolSolderPaste.py:302 +#: flatcamGUI/PreferencesUI.py:5539 flatcamTools/ToolSolderPaste.py:302 msgid "Dwell FWD" msgstr "Verweilzeit FWD" -#: flatcamGUI/PreferencesUI.py:5540 flatcamTools/ToolSolderPaste.py:304 +#: flatcamGUI/PreferencesUI.py:5541 flatcamTools/ToolSolderPaste.py:304 msgid "Pause after solder dispensing." msgstr "Pause nach dem Löten." -#: flatcamGUI/PreferencesUI.py:5550 flatcamTools/ToolSolderPaste.py:313 +#: flatcamGUI/PreferencesUI.py:5551 flatcamTools/ToolSolderPaste.py:313 msgid "Spindle Speed REV" msgstr "Spindeldrehzahl REV" -#: flatcamGUI/PreferencesUI.py:5552 flatcamTools/ToolSolderPaste.py:315 +#: flatcamGUI/PreferencesUI.py:5553 flatcamTools/ToolSolderPaste.py:315 msgid "" "The dispenser speed while retracting solder paste\n" "through the dispenser nozzle." @@ -11926,11 +11736,11 @@ msgstr "" "Die Spendergeschwindigkeit beim Einfahren der Lötpaste\n" "durch die Spenderdüse." -#: flatcamGUI/PreferencesUI.py:5564 flatcamTools/ToolSolderPaste.py:326 +#: flatcamGUI/PreferencesUI.py:5565 flatcamTools/ToolSolderPaste.py:326 msgid "Dwell REV" msgstr "Verweilen REV" -#: flatcamGUI/PreferencesUI.py:5566 flatcamTools/ToolSolderPaste.py:328 +#: flatcamGUI/PreferencesUI.py:5567 flatcamTools/ToolSolderPaste.py:328 msgid "" "Pause after solder paste dispenser retracted,\n" "to allow pressure equilibrium." @@ -11938,15 +11748,15 @@ msgstr "" "Pause nachdem Lotpastendispenser eingefahren wurde,\n" "das Druckgleichgewicht zu ermöglichen." -#: flatcamGUI/PreferencesUI.py:5575 flatcamTools/ToolSolderPaste.py:336 +#: flatcamGUI/PreferencesUI.py:5576 flatcamTools/ToolSolderPaste.py:336 msgid "Files that control the GCode generation." msgstr "Dateien, die die GCode-Generierung steuern." -#: flatcamGUI/PreferencesUI.py:5590 +#: flatcamGUI/PreferencesUI.py:5591 msgid "Substractor Tool Options" msgstr "Substractor-Werkzeug-Optionen" -#: flatcamGUI/PreferencesUI.py:5596 +#: flatcamGUI/PreferencesUI.py:5597 msgid "" "A tool to substract one Gerber or Geometry object\n" "from another of the same type." @@ -11954,22 +11764,22 @@ msgstr "" "Ein Werkzeug zum Subtrahieren eines Gerber- oder Geometrieobjekts\n" "von einem anderen des gleichen Typs." -#: flatcamGUI/PreferencesUI.py:5601 flatcamTools/ToolSub.py:149 +#: flatcamGUI/PreferencesUI.py:5602 flatcamTools/ToolSub.py:149 msgid "Close paths" msgstr "Wege schließen" -#: flatcamGUI/PreferencesUI.py:5602 +#: flatcamGUI/PreferencesUI.py:5603 msgid "" "Checking this will close the paths cut by the Geometry substractor object." msgstr "" "Wenn Sie dies aktivieren, werden die vom Geometry-Substractor-Objekt " "geschnittenen Pfade geschlossen." -#: flatcamGUI/PreferencesUI.py:5613 +#: flatcamGUI/PreferencesUI.py:5614 msgid "Check Rules Tool Options" msgstr "Optionen des Werkzeugs 'Regeln prüfen'" -#: flatcamGUI/PreferencesUI.py:5618 +#: flatcamGUI/PreferencesUI.py:5619 msgid "" "A tool to check if Gerber files are within a set\n" "of Manufacturing Rules." @@ -11978,20 +11788,20 @@ msgstr "" "befinden\n" "von Herstellungsregeln." -#: flatcamGUI/PreferencesUI.py:5628 flatcamTools/ToolRulesCheck.py:256 +#: flatcamGUI/PreferencesUI.py:5629 flatcamTools/ToolRulesCheck.py:256 #: flatcamTools/ToolRulesCheck.py:920 msgid "Trace Size" msgstr "Spurengröße" -#: flatcamGUI/PreferencesUI.py:5630 flatcamTools/ToolRulesCheck.py:258 +#: flatcamGUI/PreferencesUI.py:5631 flatcamTools/ToolRulesCheck.py:258 msgid "This checks if the minimum size for traces is met." msgstr "Hiermit wird überprüft, ob die Mindestgröße für Traces erfüllt ist." -#: 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 +#: flatcamGUI/PreferencesUI.py:5641 flatcamGUI/PreferencesUI.py:5661 +#: flatcamGUI/PreferencesUI.py:5681 flatcamGUI/PreferencesUI.py:5701 +#: flatcamGUI/PreferencesUI.py:5721 flatcamGUI/PreferencesUI.py:5741 +#: flatcamGUI/PreferencesUI.py:5761 flatcamGUI/PreferencesUI.py:5781 +#: flatcamGUI/PreferencesUI.py:5803 flatcamGUI/PreferencesUI.py:5823 #: flatcamTools/ToolRulesCheck.py:268 flatcamTools/ToolRulesCheck.py:290 #: flatcamTools/ToolRulesCheck.py:313 flatcamTools/ToolRulesCheck.py:336 #: flatcamTools/ToolRulesCheck.py:359 flatcamTools/ToolRulesCheck.py:382 @@ -12000,16 +11810,16 @@ msgstr "Hiermit wird überprüft, ob die Mindestgröße für Traces erfüllt ist msgid "Min value" msgstr "Min. Wert" -#: flatcamGUI/PreferencesUI.py:5642 flatcamTools/ToolRulesCheck.py:270 +#: flatcamGUI/PreferencesUI.py:5643 flatcamTools/ToolRulesCheck.py:270 msgid "Minimum acceptable trace size." msgstr "Minimale akzeptable Trace-Größe." -#: flatcamGUI/PreferencesUI.py:5647 flatcamTools/ToolRulesCheck.py:277 +#: flatcamGUI/PreferencesUI.py:5648 flatcamTools/ToolRulesCheck.py:277 #: flatcamTools/ToolRulesCheck.py:1148 flatcamTools/ToolRulesCheck.py:1178 msgid "Copper to Copper clearance" msgstr "Mininalabstand Kupfer zu Kupfer" -#: flatcamGUI/PreferencesUI.py:5649 flatcamTools/ToolRulesCheck.py:279 +#: flatcamGUI/PreferencesUI.py:5650 flatcamTools/ToolRulesCheck.py:279 msgid "" "This checks if the minimum clearance between copper\n" "features is met." @@ -12017,33 +11827,33 @@ msgstr "" "Dies überprüft, ob der Mindestabstand zwischen Kupfer\n" "Spuren ist erfüllt." -#: 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 +#: flatcamGUI/PreferencesUI.py:5663 flatcamGUI/PreferencesUI.py:5683 +#: flatcamGUI/PreferencesUI.py:5703 flatcamGUI/PreferencesUI.py:5723 +#: flatcamGUI/PreferencesUI.py:5743 flatcamGUI/PreferencesUI.py:5763 +#: flatcamGUI/PreferencesUI.py:5825 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 "Minimaler akzeptabler Abstandswert." -#: flatcamGUI/PreferencesUI.py:5667 flatcamTools/ToolRulesCheck.py:300 +#: flatcamGUI/PreferencesUI.py:5668 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 "Mininalabstand Kupfer zum Rahmen" -#: flatcamGUI/PreferencesUI.py:5669 flatcamTools/ToolRulesCheck.py:302 +#: flatcamGUI/PreferencesUI.py:5670 flatcamTools/ToolRulesCheck.py:302 msgid "" "This checks if the minimum clearance between copper\n" "features and the outline is met." -msgstr "Überprüft den Minimalabstand zwischen Kupfer und Rand" +msgstr "Überprüft den Minimalabstand zwischen Kupfer und Rand." -#: flatcamGUI/PreferencesUI.py:5687 flatcamTools/ToolRulesCheck.py:323 +#: flatcamGUI/PreferencesUI.py:5688 flatcamTools/ToolRulesCheck.py:323 msgid "Silk to Silk Clearance" msgstr "Siebdruck zu siebdruck Abstand" -#: flatcamGUI/PreferencesUI.py:5689 flatcamTools/ToolRulesCheck.py:325 +#: flatcamGUI/PreferencesUI.py:5690 flatcamTools/ToolRulesCheck.py:325 msgid "" "This checks if the minimum clearance between silkscreen\n" "features and silkscreen features is met." @@ -12051,13 +11861,13 @@ msgstr "" "Dies prüft, ob der Mindestabstand zwischen Siebdruck\n" "Objekte und Silkscreen-Objekte erfüllt ist." -#: flatcamGUI/PreferencesUI.py:5707 flatcamTools/ToolRulesCheck.py:346 +#: flatcamGUI/PreferencesUI.py:5708 flatcamTools/ToolRulesCheck.py:346 #: flatcamTools/ToolRulesCheck.py:1317 flatcamTools/ToolRulesCheck.py:1323 #: flatcamTools/ToolRulesCheck.py:1341 msgid "Silk to Solder Mask Clearance" msgstr "Siebdruck auf Lötmaske Clearance" -#: flatcamGUI/PreferencesUI.py:5709 flatcamTools/ToolRulesCheck.py:348 +#: flatcamGUI/PreferencesUI.py:5710 flatcamTools/ToolRulesCheck.py:348 msgid "" "This checks if the minimum clearance between silkscreen\n" "features and soldermask features is met." @@ -12065,13 +11875,13 @@ msgstr "" "Dies prüft, ob der Mindestabstand zwischen Siebdruck\n" "Spuren und Lötmaskenspuren werden eingehalten." -#: flatcamGUI/PreferencesUI.py:5727 flatcamTools/ToolRulesCheck.py:369 +#: flatcamGUI/PreferencesUI.py:5728 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 "Siebdruck zur Gliederung Clearance" -#: flatcamGUI/PreferencesUI.py:5729 flatcamTools/ToolRulesCheck.py:371 +#: flatcamGUI/PreferencesUI.py:5730 flatcamTools/ToolRulesCheck.py:371 msgid "" "This checks if the minimum clearance between silk\n" "features and the outline is met." @@ -12079,12 +11889,12 @@ msgstr "" "Dies prüft, ob der Mindestabstand zwischen Siebdruck\n" "Spuren und der Umriss ist erfüllt." -#: flatcamGUI/PreferencesUI.py:5747 flatcamTools/ToolRulesCheck.py:392 +#: flatcamGUI/PreferencesUI.py:5748 flatcamTools/ToolRulesCheck.py:392 #: flatcamTools/ToolRulesCheck.py:1409 flatcamTools/ToolRulesCheck.py:1436 msgid "Minimum Solder Mask Sliver" msgstr "Minimum Lötmaskenband" -#: flatcamGUI/PreferencesUI.py:5749 flatcamTools/ToolRulesCheck.py:394 +#: flatcamGUI/PreferencesUI.py:5750 flatcamTools/ToolRulesCheck.py:394 msgid "" "This checks if the minimum clearance between soldermask\n" "features and soldermask features is met." @@ -12093,13 +11903,13 @@ msgstr "" "eingehalten wird\n" "Spuren und Soldermask-Merkmale sind erfüllt." -#: flatcamGUI/PreferencesUI.py:5767 flatcamTools/ToolRulesCheck.py:415 +#: flatcamGUI/PreferencesUI.py:5768 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 "Minimaler Ring" -#: flatcamGUI/PreferencesUI.py:5769 flatcamTools/ToolRulesCheck.py:417 +#: flatcamGUI/PreferencesUI.py:5770 flatcamTools/ToolRulesCheck.py:417 msgid "" "This checks if the minimum copper ring left by drilling\n" "a hole into a pad is met." @@ -12107,16 +11917,16 @@ msgstr "" "Dies überprüft, ob der minimale Kupferring durch Bohren übrig bleibt\n" "Ein Loch in einem Pad ist getroffen." -#: flatcamGUI/PreferencesUI.py:5782 flatcamTools/ToolRulesCheck.py:430 +#: flatcamGUI/PreferencesUI.py:5783 flatcamTools/ToolRulesCheck.py:430 msgid "Minimum acceptable ring value." msgstr "Minimaler akzeptabler Ringwert." -#: flatcamGUI/PreferencesUI.py:5789 flatcamTools/ToolRulesCheck.py:440 +#: flatcamGUI/PreferencesUI.py:5790 flatcamTools/ToolRulesCheck.py:440 #: flatcamTools/ToolRulesCheck.py:864 msgid "Hole to Hole Clearance" msgstr "Loch zu Loch Abstand" -#: flatcamGUI/PreferencesUI.py:5791 flatcamTools/ToolRulesCheck.py:442 +#: flatcamGUI/PreferencesUI.py:5792 flatcamTools/ToolRulesCheck.py:442 msgid "" "This checks if the minimum clearance between a drill hole\n" "and another drill hole is met." @@ -12124,16 +11934,16 @@ msgstr "" "Dies überprüft, ob der Mindestabstand zwischen einem Bohrloch ist\n" "und ein weiteres Bohrloch ist getroffen." -#: flatcamGUI/PreferencesUI.py:5804 flatcamTools/ToolRulesCheck.py:478 +#: flatcamGUI/PreferencesUI.py:5805 flatcamTools/ToolRulesCheck.py:478 msgid "Minimum acceptable drill size." msgstr "Minimale zulässige Bohrergröße." -#: flatcamGUI/PreferencesUI.py:5809 flatcamTools/ToolRulesCheck.py:463 +#: flatcamGUI/PreferencesUI.py:5810 flatcamTools/ToolRulesCheck.py:463 #: flatcamTools/ToolRulesCheck.py:838 msgid "Hole Size" msgstr "Lochgröße" -#: flatcamGUI/PreferencesUI.py:5811 flatcamTools/ToolRulesCheck.py:465 +#: flatcamGUI/PreferencesUI.py:5812 flatcamTools/ToolRulesCheck.py:465 msgid "" "This checks if the drill holes\n" "sizes are above the threshold." @@ -12141,11 +11951,11 @@ msgstr "" "Dadurch wird geprüft, ob die Bohrlöcher vorhanden sind\n" "Größen liegen über der Schwelle." -#: flatcamGUI/PreferencesUI.py:5836 +#: flatcamGUI/PreferencesUI.py:5837 msgid "Optimal Tool Options" msgstr "\"Optimale\" Werkzeugoptionen" -#: flatcamGUI/PreferencesUI.py:5842 +#: flatcamGUI/PreferencesUI.py:5843 msgid "" "A tool to find the minimum distance between\n" "every two Gerber geometric elements" @@ -12153,47 +11963,45 @@ msgstr "" "Ein Werkzeug, um den Mindestabstand zwischen zu finden\n" "jeweils zwei Gerber geometrische Elemente" -#: flatcamGUI/PreferencesUI.py:5857 flatcamTools/ToolOptimal.py:78 +#: flatcamGUI/PreferencesUI.py:5858 flatcamTools/ToolOptimal.py:78 msgid "Precision" msgstr "Präzision" -#: flatcamGUI/PreferencesUI.py:5859 +#: flatcamGUI/PreferencesUI.py:5860 msgid "Number of decimals for the distances and coordinates in this tool." msgstr "" "Anzahl der Dezimalstellen für die Abstände und Koordinaten in diesem " "Werkzeug." -#: flatcamGUI/PreferencesUI.py:5873 -#, fuzzy -#| msgid "NCC Tool Options" +#: flatcamGUI/PreferencesUI.py:5874 msgid "QRCode Tool Options" -msgstr "NCC-Tooloptionen" +msgstr "QR Code-Tooloptionen" -#: flatcamGUI/PreferencesUI.py:5879 +#: flatcamGUI/PreferencesUI.py:5880 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 "" +"Ein Werkzeug um QR Codes zu erzeugen, um diese\n" +"in Gerber Dateien einzufügen oder als Datei zu exportieren." -#: flatcamGUI/PreferencesUI.py:5891 flatcamTools/ToolQRCode.py:99 -#, fuzzy -#| msgid "Conversion" +#: flatcamGUI/PreferencesUI.py:5892 flatcamTools/ToolQRCode.py:99 msgid "Version" -msgstr "Umwandlung" +msgstr "Version" -#: flatcamGUI/PreferencesUI.py:5893 flatcamTools/ToolQRCode.py:101 +#: flatcamGUI/PreferencesUI.py:5894 flatcamTools/ToolQRCode.py:101 msgid "" "QRCode version can have values from 1 (21x21 boxes)\n" "to 40 (177x177 boxes)." msgstr "" +"Je nach QRCode Version kann 1 (21x21 Quadrate)\n" +" bis 40 (177x177 Quadrate) angegeben werden." -#: flatcamGUI/PreferencesUI.py:5904 flatcamTools/ToolQRCode.py:112 -#, fuzzy -#| msgid "Corrections" +#: flatcamGUI/PreferencesUI.py:5905 flatcamTools/ToolQRCode.py:112 msgid "Error correction" -msgstr "Korrekturen" +msgstr "Fehlerausgleich" -#: flatcamGUI/PreferencesUI.py:5906 flatcamGUI/PreferencesUI.py:5917 +#: flatcamGUI/PreferencesUI.py:5907 flatcamGUI/PreferencesUI.py:5918 #: flatcamTools/ToolQRCode.py:114 flatcamTools/ToolQRCode.py:125 #, python-format msgid "" @@ -12203,163 +12011,165 @@ msgid "" "Q = maximum 25%% errors can be corrected\n" "H = maximum 30%% errors can be corrected." msgstr "" +"Dieser Parameter kontrolliert die Fehlertoleranz:\n" +"L : max. 7%% Fehler können ausgeglichen werden\n" +"M : max. 15%% Fehler können ausgeglichen werden\n" +"Q: max. 25%% Fehler können ausgeglichen werden\n" +"H : max. 30%% Fehler können ausgeglichen warden." -#: flatcamGUI/PreferencesUI.py:5927 flatcamTools/ToolQRCode.py:135 -#, fuzzy -#| msgid "Font Size" +#: flatcamGUI/PreferencesUI.py:5928 flatcamTools/ToolQRCode.py:135 msgid "Box Size" -msgstr "Schriftgröße" +msgstr "Quadratgröße" -#: flatcamGUI/PreferencesUI.py:5929 flatcamTools/ToolQRCode.py:137 +#: flatcamGUI/PreferencesUI.py:5930 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 "" +"Über die Quadratgröße wird die Geamtgröße\n" +"des QRCodes beeinflusst, da sie die Größe jedes einzelnen Quadrats " +"spezifiziert." -#: flatcamGUI/PreferencesUI.py:5940 flatcamTools/ToolQRCode.py:148 -#, fuzzy -#| msgid "Border" +#: flatcamGUI/PreferencesUI.py:5941 flatcamTools/ToolQRCode.py:148 msgid "Border Size" -msgstr "Rand" +msgstr "Randdicke" -#: flatcamGUI/PreferencesUI.py:5942 flatcamTools/ToolQRCode.py:150 +#: flatcamGUI/PreferencesUI.py:5943 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 "" +"Dicke des Rands des QRCodes in Anzahl von Boxen.\n" +"Standardwert is 4. Die Breite gibt den Raum der Freistellung um den QRCode " +"an." -#: flatcamGUI/PreferencesUI.py:5953 flatcamTools/ToolQRCode.py:162 -#, fuzzy -#| msgid "Tool Data" +#: flatcamGUI/PreferencesUI.py:5954 flatcamTools/ToolQRCode.py:162 msgid "QRCode Data" -msgstr "Werkzeugdaten" +msgstr "QRCode Daten" -#: flatcamGUI/PreferencesUI.py:5955 flatcamTools/ToolQRCode.py:164 +#: flatcamGUI/PreferencesUI.py:5956 flatcamTools/ToolQRCode.py:164 msgid "QRCode Data. Alphanumeric text to be encoded in the QRCode." -msgstr "" +msgstr "Beliebiger Text der in den QRCode umgerechnet werden soll." -#: flatcamGUI/PreferencesUI.py:5959 flatcamTools/ToolQRCode.py:168 +#: flatcamGUI/PreferencesUI.py:5960 flatcamTools/ToolQRCode.py:168 msgid "Add here the text to be included in the QRCode..." -msgstr "" +msgstr "Geben Sie hier den Text in Ihrem QRCode an." -#: flatcamGUI/PreferencesUI.py:5965 flatcamTools/ToolQRCode.py:174 +#: flatcamGUI/PreferencesUI.py:5966 flatcamTools/ToolQRCode.py:174 msgid "Polarity" -msgstr "" +msgstr "Polarität" -#: flatcamGUI/PreferencesUI.py:5967 flatcamTools/ToolQRCode.py:176 +#: flatcamGUI/PreferencesUI.py:5968 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 "" +"Geben Sie die Polarität des QRCodes an\n" +"Es kann entweder Negativ sein (die Boxen sind durchsichtig)\n" +"oder Positiv (die Boxen sind undurchsichtig)." -#: flatcamGUI/PreferencesUI.py:5971 flatcamTools/ToolFilm.py:296 +#: flatcamGUI/PreferencesUI.py:5972 flatcamTools/ToolFilm.py:296 #: flatcamTools/ToolQRCode.py:180 msgid "Negative" msgstr "Negativ" -#: flatcamGUI/PreferencesUI.py:5972 flatcamTools/ToolFilm.py:295 +#: flatcamGUI/PreferencesUI.py:5973 flatcamTools/ToolFilm.py:295 #: flatcamTools/ToolQRCode.py:181 msgid "Positive" msgstr "Positiv" -#: flatcamGUI/PreferencesUI.py:5974 flatcamTools/ToolQRCode.py:183 +#: flatcamGUI/PreferencesUI.py:5975 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 "" +"Wählen Sie die Art des zu erzeugenden QRCodes.\n" +"Wenn er zu ein Silkscreen Gerber file hinzugefügt werden soll\n" +"sollte er \"Positiv\" sein, wenn sie ihn zum Copper File hinzufügen\n" +"wollen sollte er möglichst \"Negativ\" sein." -#: flatcamGUI/PreferencesUI.py:5985 flatcamGUI/PreferencesUI.py:5991 +#: flatcamGUI/PreferencesUI.py:5986 flatcamGUI/PreferencesUI.py:5992 #: 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 "" +"Der Umriss um den QRCode, der die Freistellungsfläche definiert\n" +"kann abgerundete oder scharfe Ecken haben." -#: flatcamGUI/PreferencesUI.py:5988 flatcamTools/ToolQRCode.py:197 -#, fuzzy -#| msgid "Round" +#: flatcamGUI/PreferencesUI.py:5989 flatcamTools/ToolQRCode.py:197 msgid "Rounded" -msgstr "Runden" +msgstr "Agberundet" -#: flatcamGUI/PreferencesUI.py:5998 flatcamTools/ToolQRCode.py:228 -#, fuzzy -#| msgid "Film Color" +#: flatcamGUI/PreferencesUI.py:5999 flatcamTools/ToolQRCode.py:228 msgid "Fill Color" -msgstr "Filmfarbe" +msgstr "Boxfarbe" -#: flatcamGUI/PreferencesUI.py:6000 flatcamTools/ToolQRCode.py:230 +#: flatcamGUI/PreferencesUI.py:6001 flatcamTools/ToolQRCode.py:230 msgid "Set the QRCode fill color (squares color)." -msgstr "" +msgstr "Wählen Sie die Farbe der Boxen." -#: flatcamGUI/PreferencesUI.py:6019 flatcamTools/ToolQRCode.py:252 -#, fuzzy -#| msgid "Font Color" +#: flatcamGUI/PreferencesUI.py:6020 flatcamTools/ToolQRCode.py:252 msgid "Back Color" -msgstr "Schriftfarbe" +msgstr "Hintergrundfarbe" -#: flatcamGUI/PreferencesUI.py:6021 flatcamTools/ToolQRCode.py:254 +#: flatcamGUI/PreferencesUI.py:6022 flatcamTools/ToolQRCode.py:254 msgid "Set the QRCode background color." -msgstr "" +msgstr "Wählen Sie die Farbe im QRCode, die nicht von einer Box bedeckt ist." -#: flatcamGUI/PreferencesUI.py:6061 -#, fuzzy -#| msgid "SolderPaste Tool Options" +# Don´t know Copper Thieving +#: flatcamGUI/PreferencesUI.py:6062 msgid "Copper Thieving Tool Options" -msgstr "Lötpaste-Werkzeug-Optionen" +msgstr "Copper Thieving Tool Optionen" -#: flatcamGUI/PreferencesUI.py:6073 +#: flatcamGUI/PreferencesUI.py:6074 msgid "" "A tool to generate a Copper Thieving that can be added\n" "to a selected Gerber file." msgstr "" +"Ein Werkzeug um Copper Thieving durchzuführen, das auf\n" +"ein ausgewähltes Gerber File angewendet werden kann." -#: flatcamGUI/PreferencesUI.py:6081 +#: flatcamGUI/PreferencesUI.py:6082 msgid "Number of steps (lines) used to interpolate circles." -msgstr "" +msgstr "Anzahl der Schritte (Linien) um Kreise zu interpolieren." -#: flatcamGUI/PreferencesUI.py:6091 flatcamGUI/PreferencesUI.py:6295 +#: flatcamGUI/PreferencesUI.py:6092 flatcamGUI/PreferencesUI.py:6296 #: flatcamTools/ToolCopperThieving.py:96 flatcamTools/ToolCopperThieving.py:429 -#, fuzzy -#| msgid "Tolerance" msgid "Clearance" -msgstr "Toleranz" +msgstr "Freistellung" -#: flatcamGUI/PreferencesUI.py:6093 +#: flatcamGUI/PreferencesUI.py:6094 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 "" +"Diese Auswahl definiert den Abstand zwischen den \"Copper Thieving\" " +"Komponenten.\n" +"und den Kupferverbindungen im Gerber File (möglicherweise wird hierbei ein " +"Polygon\n" +"in mehrere aufgeteilt." -#: flatcamGUI/PreferencesUI.py:6121 flatcamTools/ToolCopperThieving.py:126 +#: flatcamGUI/PreferencesUI.py:6122 flatcamTools/ToolCopperThieving.py:126 #: flatcamTools/ToolNonCopperClear.py:436 flatcamTools/ToolPaint.py:314 msgid "Area Selection" msgstr "Bereichsauswahl" -#: flatcamGUI/PreferencesUI.py:6122 flatcamTools/ToolCopperThieving.py:127 +#: flatcamGUI/PreferencesUI.py:6123 flatcamTools/ToolCopperThieving.py:127 #: flatcamTools/ToolNonCopperClear.py:437 flatcamTools/ToolPaint.py:316 msgid "Reference Object" msgstr "Ref. Objekt" -#: flatcamGUI/PreferencesUI.py:6124 flatcamTools/ToolCopperThieving.py:129 +#: flatcamGUI/PreferencesUI.py:6125 flatcamTools/ToolCopperThieving.py:129 #: flatcamTools/ToolNonCopperClear.py:439 msgid "Reference:" msgstr "Referenz:" -#: flatcamGUI/PreferencesUI.py:6126 -#, 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:6127 msgid "" "- 'Itself' - the copper Thieving extent is based on the object extent.\n" "- 'Area Selection' - left mouse click to start selection of the area to be " @@ -12367,367 +12177,360 @@ msgid "" "- 'Reference Object' - will do copper thieving within the area specified by " "another object." msgstr "" -"- \"Selbst\" - das nicht kupferhaltige Clearing-Ausmaß\n" -"basiert auf dem Objekt, das kupferfrei ist.\n" -"- 'Bereichsauswahl' - Klicken Sie mit der linken Maustaste, um den Bereich " -"auszuwählen, der gemalt werden soll.\n" -"Wenn Sie eine Änderungstaste gedrückt halten (STRG oder UMSCHALTTASTE), " -"können Sie mehrere Bereiche hinzufügen.\n" -"- 'Referenzobjekt' - löscht nicht kupferne Objekte innerhalb des Bereichs\n" -"von einem anderen Objekt angegeben." +"- 'Selbst' - die 'Copper Thieving' basiert auf der Objektausdehnung.\n" +"- 'Bereichsauswahl' - Klicken Sie mit der linken Maustaste, um den zu " +"füllenden Bereich auszuwählen.\n" +"- 'Referenzobjekt' - 'Copper Thieving' innerhalb des von einem anderen " +"Objekt angegebenen Bereichs." -#: flatcamGUI/PreferencesUI.py:6135 flatcamTools/ToolCopperThieving.py:170 +#: flatcamGUI/PreferencesUI.py:6136 flatcamTools/ToolCopperThieving.py:170 msgid "Rectangular" msgstr "Rechteckig" -#: flatcamGUI/PreferencesUI.py:6136 flatcamTools/ToolCopperThieving.py:171 +#: flatcamGUI/PreferencesUI.py:6137 flatcamTools/ToolCopperThieving.py:171 msgid "Minimal" -msgstr "" +msgstr "Minimal" -#: flatcamGUI/PreferencesUI.py:6138 flatcamTools/ToolCopperThieving.py:173 +#: flatcamGUI/PreferencesUI.py:6139 flatcamTools/ToolCopperThieving.py:173 #: flatcamTools/ToolFilm.py:113 msgid "Box Type:" msgstr "Box-Typ:" -#: flatcamGUI/PreferencesUI.py:6140 flatcamTools/ToolCopperThieving.py:175 +# Double +#: flatcamGUI/PreferencesUI.py:6141 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 "" +"- 'Rechteckig' - Der Begrenzungsrahmen hat eine rechteckige Form.\n" +"- 'Minimal' - Der Begrenzungsrahmen ist die konvexe Rumpfform." -#: flatcamGUI/PreferencesUI.py:6154 flatcamTools/ToolCopperThieving.py:191 +#: flatcamGUI/PreferencesUI.py:6155 flatcamTools/ToolCopperThieving.py:191 msgid "Dots Grid" -msgstr "" +msgstr "Punktmuster" -#: flatcamGUI/PreferencesUI.py:6155 flatcamTools/ToolCopperThieving.py:192 -#, fuzzy -#| msgid "Square" +#: flatcamGUI/PreferencesUI.py:6156 flatcamTools/ToolCopperThieving.py:192 msgid "Squares Grid" -msgstr "Quadrat" +msgstr "Quadratraster" -#: flatcamGUI/PreferencesUI.py:6156 flatcamTools/ToolCopperThieving.py:193 -#, fuzzy -#| msgid "Linear" +#: flatcamGUI/PreferencesUI.py:6157 flatcamTools/ToolCopperThieving.py:193 msgid "Lines Grid" -msgstr "Linear" +msgstr "Linienraster" -#: flatcamGUI/PreferencesUI.py:6158 flatcamTools/ToolCopperThieving.py:195 -#, fuzzy -#| msgid "Film Type:" +#: flatcamGUI/PreferencesUI.py:6159 flatcamTools/ToolCopperThieving.py:195 msgid "Fill Type:" -msgstr "Filmtyp:" +msgstr "Füllart:" -#: flatcamGUI/PreferencesUI.py:6160 flatcamTools/ToolCopperThieving.py:197 +# Double +#: flatcamGUI/PreferencesUI.py:6161 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 "" +"- 'Solide' - 'Copper Thieving' wird ein solides Polygon sein.\n" +"- 'Punktraster' - Der leere Bereich wird mit einem Punktmuster gefüllt.\n" +"- 'Quadratraster ' - Der leere Bereich wird mit einem Quadratmuster " +"gefüllt.\n" +"- 'Linienraster' - Der leere Bereich wird mit einem Linienmuster gefüllt." -#: flatcamGUI/PreferencesUI.py:6168 flatcamTools/ToolCopperThieving.py:216 -#, fuzzy -#| msgid "Slot Parameters" +#: flatcamGUI/PreferencesUI.py:6169 flatcamTools/ToolCopperThieving.py:216 msgid "Dots Grid Parameters" -msgstr "Schlitze-Parameter" +msgstr "Punktmuster Parameter" -#: flatcamGUI/PreferencesUI.py:6174 flatcamTools/ToolCopperThieving.py:222 -#, fuzzy -#| msgid "Tool diameter in file units." +#: flatcamGUI/PreferencesUI.py:6175 flatcamTools/ToolCopperThieving.py:222 msgid "Dot diameter in Dots Grid." -msgstr "Werkzeugdurchmesser in Feileneinheiten." +msgstr "Punktdurchmesser im Punktmuster." -#: flatcamGUI/PreferencesUI.py:6185 flatcamGUI/PreferencesUI.py:6214 -#: flatcamGUI/PreferencesUI.py:6243 flatcamTools/ToolCopperThieving.py:233 +#: flatcamGUI/PreferencesUI.py:6186 flatcamGUI/PreferencesUI.py:6215 +#: flatcamGUI/PreferencesUI.py:6244 flatcamTools/ToolCopperThieving.py:233 #: flatcamTools/ToolCopperThieving.py:273 #: flatcamTools/ToolCopperThieving.py:313 -#, fuzzy -#| msgid "Spacing cols" msgid "Spacing" -msgstr "Abstandspalten" +msgstr "Abstand" -#: flatcamGUI/PreferencesUI.py:6187 flatcamTools/ToolCopperThieving.py:235 +#: flatcamGUI/PreferencesUI.py:6188 flatcamTools/ToolCopperThieving.py:235 msgid "Distance between each two dots in Dots Grid." -msgstr "" +msgstr "Abstand zwischen zwei Punkten im Punktmuster." -#: flatcamGUI/PreferencesUI.py:6197 flatcamTools/ToolCopperThieving.py:256 -#, fuzzy -#| msgid "Slot Array Parameters" +#: flatcamGUI/PreferencesUI.py:6198 flatcamTools/ToolCopperThieving.py:256 msgid "Squares Grid Parameters" -msgstr "Schlitzes Array-Parameter" +msgstr "Quadratraster Parameter" -#: flatcamGUI/PreferencesUI.py:6203 flatcamTools/ToolCopperThieving.py:262 +#: flatcamGUI/PreferencesUI.py:6204 flatcamTools/ToolCopperThieving.py:262 msgid "Square side size in Squares Grid." -msgstr "" +msgstr "Quadratlängen im Quadratraster." -#: flatcamGUI/PreferencesUI.py:6216 flatcamTools/ToolCopperThieving.py:275 +#: flatcamGUI/PreferencesUI.py:6217 flatcamTools/ToolCopperThieving.py:275 msgid "Distance between each two squares in Squares Grid." -msgstr "" +msgstr "Abstand zwischen zwei Quadraten im Quadratraster." -#: flatcamGUI/PreferencesUI.py:6226 flatcamTools/ToolCopperThieving.py:296 -#, fuzzy -#| msgid "Parameters" +#: flatcamGUI/PreferencesUI.py:6227 flatcamTools/ToolCopperThieving.py:296 msgid "Lines Grid Parameters" -msgstr "Parameters" +msgstr "Schraffurparameter" -#: flatcamGUI/PreferencesUI.py:6232 flatcamTools/ToolCopperThieving.py:302 +#: flatcamGUI/PreferencesUI.py:6233 flatcamTools/ToolCopperThieving.py:302 msgid "Line thickness size in Lines Grid." -msgstr "" +msgstr "Liniendicke." -#: flatcamGUI/PreferencesUI.py:6245 flatcamTools/ToolCopperThieving.py:315 +#: flatcamGUI/PreferencesUI.py:6246 flatcamTools/ToolCopperThieving.py:315 msgid "Distance between each two lines in Lines Grid." -msgstr "" +msgstr "Linienabstand." -#: flatcamGUI/PreferencesUI.py:6255 flatcamTools/ToolCopperThieving.py:353 -#, fuzzy -#| msgid "Slot Parameters" +# What is a Robber Bar? +#: flatcamGUI/PreferencesUI.py:6256 flatcamTools/ToolCopperThieving.py:353 msgid "Robber Bar Parameters" -msgstr "Schlitze-Parameter" +msgstr "Robber Bar-Parameter" -#: flatcamGUI/PreferencesUI.py:6257 flatcamTools/ToolCopperThieving.py:355 +#: flatcamGUI/PreferencesUI.py:6258 flatcamTools/ToolCopperThieving.py:355 msgid "" "Parameters used for the robber bar.\n" "Robber bar = copper border to help in pattern hole plating." msgstr "" +"Parameter für die Robber Bar\n" +"Eine Robber Bar ist ein Kupferrand bei Lochmustern." -#: flatcamGUI/PreferencesUI.py:6265 flatcamTools/ToolCopperThieving.py:363 -#, fuzzy -#| msgid "Bounding box margin." +#: flatcamGUI/PreferencesUI.py:6266 flatcamTools/ToolCopperThieving.py:363 msgid "Bounding box margin for robber bar." -msgstr "Begrenzungsrahmenrand." +msgstr "Begrenzungsrahmenrand der Robber Bar." -#: flatcamGUI/PreferencesUI.py:6276 flatcamTools/ToolCopperThieving.py:374 +#: flatcamGUI/PreferencesUI.py:6277 flatcamTools/ToolCopperThieving.py:374 msgid "Thickness" -msgstr "" +msgstr "Dicke" -#: flatcamGUI/PreferencesUI.py:6278 flatcamTools/ToolCopperThieving.py:376 +#: flatcamGUI/PreferencesUI.py:6279 flatcamTools/ToolCopperThieving.py:376 msgid "The robber bar thickness." -msgstr "" +msgstr "Dicke der Robber Bar." -#: flatcamGUI/PreferencesUI.py:6288 flatcamTools/ToolCopperThieving.py:407 +# What is pattern plating? +#: flatcamGUI/PreferencesUI.py:6289 flatcamTools/ToolCopperThieving.py:407 msgid "Pattern Plating Mask" -msgstr "" +msgstr "Musterbeschichtungsmaske" -#: flatcamGUI/PreferencesUI.py:6290 flatcamTools/ToolCopperThieving.py:409 +#: flatcamGUI/PreferencesUI.py:6291 flatcamTools/ToolCopperThieving.py:409 msgid "Generate a mask for pattern plating." -msgstr "" +msgstr "Erzeugen Sie eine Maske für die Musterbeschichtung." -#: flatcamGUI/PreferencesUI.py:6297 flatcamTools/ToolCopperThieving.py:431 +#: flatcamGUI/PreferencesUI.py:6298 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 "" +"Der Abstand zwischen den Copper Thieving Elementen \n" +"und/oder der Robber Bar und den tatsächlichen Öffnungen in der Maske." -#: flatcamGUI/PreferencesUI.py:6316 -#, fuzzy -#| msgid "Film Tool Options" +# I have no clue +#: flatcamGUI/PreferencesUI.py:6317 msgid "Fiducials Tool Options" -msgstr "Filmwerkzeugoptionen" +msgstr "Passermarken-Werkzeugoptionen" -#: flatcamGUI/PreferencesUI.py:6327 flatcamGUI/PreferencesUI.py:6443 +#: flatcamGUI/PreferencesUI.py:6328 flatcamGUI/PreferencesUI.py:6444 #: flatcamTools/ToolCopperThieving.py:91 flatcamTools/ToolFiducials.py:151 -#, fuzzy -#| msgid "Diameter for the new tool." msgid "Parameters used for this tool." -msgstr "Durchmesser für das neue Werkzeug." +msgstr "Parameter für dieses Werkzeug." -#: flatcamGUI/PreferencesUI.py:6334 flatcamTools/ToolFiducials.py:158 +#: flatcamGUI/PreferencesUI.py:6335 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 "" +"Dies setzt den Durchmesser der Bezugsmarke wenn die Art \n" +"des Bezugspunktes kreisförmig ist, ansonsten die Größe des Bezugspunktes.\n" +"Der Ausschnitt der Lötmaske ist doppelt so groß." -#: flatcamGUI/PreferencesUI.py:6362 flatcamTools/ToolFiducials.py:186 +#: flatcamGUI/PreferencesUI.py:6363 flatcamTools/ToolFiducials.py:186 msgid "Auto" -msgstr "" +msgstr "Auto" -#: flatcamGUI/PreferencesUI.py:6363 flatcamTools/ToolFiducials.py:187 -#, fuzzy -#| msgid "Manual Geo" +#: flatcamGUI/PreferencesUI.py:6364 flatcamTools/ToolFiducials.py:187 msgid "Manual" -msgstr "Manuelle Geo" +msgstr "Manuell" -#: flatcamGUI/PreferencesUI.py:6365 flatcamTools/ToolFiducials.py:189 +#: flatcamGUI/PreferencesUI.py:6366 flatcamTools/ToolFiducials.py:189 msgid "Mode:" -msgstr "" +msgstr "Modus:" -#: flatcamGUI/PreferencesUI.py:6367 +#: flatcamGUI/PreferencesUI.py:6368 msgid "" "- 'Auto' - automatic placement of fiducials in the corners of the bounding " "box.\n" "- 'Manual' - manual placement of fiducials." msgstr "" +"- \"Auto\" Die Bezugspunkte werden automatisch in den Ecken des Umrisses " +"platziert.\n" +"- \"Manuell\" Die Bezugspunkte werden manuell platziert." -#: flatcamGUI/PreferencesUI.py:6375 flatcamTools/ToolFiducials.py:199 +#: flatcamGUI/PreferencesUI.py:6376 flatcamTools/ToolFiducials.py:199 msgid "Up" -msgstr "" +msgstr "Hoch" -#: flatcamGUI/PreferencesUI.py:6376 flatcamTools/ToolFiducials.py:200 +#: flatcamGUI/PreferencesUI.py:6377 flatcamTools/ToolFiducials.py:200 msgid "Down" -msgstr "" +msgstr "Runter" -#: flatcamGUI/PreferencesUI.py:6379 flatcamTools/ToolFiducials.py:203 +#: flatcamGUI/PreferencesUI.py:6380 flatcamTools/ToolFiducials.py:203 msgid "Second fiducial" -msgstr "" +msgstr "Zweiter Bezugspunkt" -#: flatcamGUI/PreferencesUI.py:6381 flatcamTools/ToolFiducials.py:205 +#: flatcamGUI/PreferencesUI.py:6382 flatcamTools/ToolFiducials.py:205 msgid "" "The position for the second fiducial.\n" "- 'Up' - the order is: bottom-left, top-left, top-right.\n" "- 'Down' - the order is: bottom-left, bottom-right, top-right.\n" "- 'None' - there is no second fiducial. The order is: bottom-left, top-right." msgstr "" +"Die Position des zweiten Bezugspunktes\n" +"- \"Hoch\" Die Reihenfolge ist Unten-Links, Oben-Links, Oben-Rechts\n" +"- \"Runter\" Die Reihenfolge ist Untern-Links, Unten-Rechts, Oben-Rechts\n" +"- \"Keine\" Es gibt keinen zweiten Bezugspunkt, die Reihenfolge ist: Unten-" +"Links, Oben-Rechts." -#: flatcamGUI/PreferencesUI.py:6397 flatcamTools/ToolFiducials.py:221 +#: flatcamGUI/PreferencesUI.py:6398 flatcamTools/ToolFiducials.py:221 msgid "Cross" -msgstr "" +msgstr "Kreuzförmig" -#: flatcamGUI/PreferencesUI.py:6398 flatcamTools/ToolFiducials.py:222 +#: flatcamGUI/PreferencesUI.py:6399 flatcamTools/ToolFiducials.py:222 msgid "Chess" -msgstr "" +msgstr "Schachbrett" -#: flatcamGUI/PreferencesUI.py:6401 flatcamTools/ToolFiducials.py:224 -#, fuzzy -#| msgid "Film Type" +#: flatcamGUI/PreferencesUI.py:6402 flatcamTools/ToolFiducials.py:224 msgid "Fiducial Type" -msgstr "Filmtyp" +msgstr "Bezugspunktart" -#: flatcamGUI/PreferencesUI.py:6403 flatcamTools/ToolFiducials.py:226 +#: flatcamGUI/PreferencesUI.py:6404 flatcamTools/ToolFiducials.py:226 msgid "" "The type of fiducial.\n" "- 'Circular' - this is the regular fiducial.\n" "- 'Cross' - cross lines fiducial.\n" "- 'Chess' - chess pattern fiducial." msgstr "" +"Die Art der Bezugspunkte\n" +"\"Kreisförmig\" Der normale Bezugspunkt\n" +"\"Kreuzförmig\" Kreuzlinienbezugspunkte\n" +"\"Schachbrett\" Schachbrettförmige Bezugspunkte." -#: flatcamGUI/PreferencesUI.py:6412 flatcamTools/ToolFiducials.py:235 +#: flatcamGUI/PreferencesUI.py:6413 flatcamTools/ToolFiducials.py:235 msgid "Line thickness" -msgstr "" +msgstr "Liniendicke" -#: flatcamGUI/PreferencesUI.py:6432 -#, fuzzy -#| msgid "Calculators Tool Options" +#: flatcamGUI/PreferencesUI.py:6433 msgid "Calibration Tool Options" -msgstr "Rechner-Tool-Optionen" +msgstr "Kalibirierungs-Tool-Optionen" -#: flatcamGUI/PreferencesUI.py:6448 flatcamTools/ToolCalibration.py:181 -#, fuzzy -#| msgid "Source" +#: flatcamGUI/PreferencesUI.py:6449 flatcamTools/ToolCalibration.py:181 msgid "Source Type" -msgstr "Quelle" +msgstr "Quellenart" -#: flatcamGUI/PreferencesUI.py:6449 flatcamTools/ToolCalibration.py:182 +#: flatcamGUI/PreferencesUI.py:6450 flatcamTools/ToolCalibration.py:182 msgid "" "The source of calibration points.\n" "It can be:\n" "- Object -> click a hole geo for Excellon or a pad for Gerber\n" "- Free -> click freely on canvas to acquire the calibration points" msgstr "" +"Die Quelle für Kalibrierungspunkte\n" +"Das können sein:\n" +"- \"Objekt\" klicken Sie auf eine Lochgeometrie oder ein Pad im Gerber\n" +"- \"Frei\" klicken Sie frei auf der Leinwand um einen Kalibierungspunkt zu " +"setzen" -#: flatcamGUI/PreferencesUI.py:6454 flatcamTools/ToolCalibration.py:187 -#, fuzzy -#| msgid "FreeForm" +#: flatcamGUI/PreferencesUI.py:6455 flatcamTools/ToolCalibration.py:187 msgid "Free" -msgstr "Freie Form" +msgstr "Frei" -#: flatcamGUI/PreferencesUI.py:6468 flatcamTools/ToolCalibration.py:76 -#, fuzzy -#| msgid "" -#| "The height (Z) for travel between pads\n" -#| "(without dispensing solder paste)." +#: flatcamGUI/PreferencesUI.py:6469 flatcamTools/ToolCalibration.py:76 msgid "Height (Z) for travelling between the points." -msgstr "" -"Die Höhe (Z) für den Weg zwischen Pads\n" -"(ohne Lotpaste zu dosieren)." +msgstr "Die Höhe (Z) für den Weg zwischen Pads." -#: flatcamGUI/PreferencesUI.py:6480 flatcamTools/ToolCalibration.py:88 -#, fuzzy -#| msgid "Gerber Specification" +#: flatcamGUI/PreferencesUI.py:6481 flatcamTools/ToolCalibration.py:88 msgid "Verification Z" -msgstr "Gerber-Spezifikation" +msgstr "Z Überprüfung" -#: flatcamGUI/PreferencesUI.py:6482 flatcamTools/ToolCalibration.py:90 +#: flatcamGUI/PreferencesUI.py:6483 flatcamTools/ToolCalibration.py:90 msgid "Height (Z) for checking the point." -msgstr "" +msgstr "Höhe (Z) um den Punkt zu prüfen." -#: flatcamGUI/PreferencesUI.py:6494 flatcamTools/ToolCalibration.py:102 +#: flatcamGUI/PreferencesUI.py:6495 flatcamTools/ToolCalibration.py:102 msgid "Zero Z tool" -msgstr "" +msgstr "Z Höhen Werkzeug" -#: flatcamGUI/PreferencesUI.py:6496 flatcamTools/ToolCalibration.py:104 +#: flatcamGUI/PreferencesUI.py:6497 flatcamTools/ToolCalibration.py:104 msgid "" "Include a sequence to zero the height (Z)\n" "of the verification tool." msgstr "" +"Fügen sie eine Sequenz ein um die Höhe (Z)\n" +"des Überprüfungswerkzeugs zu nullen." -#: flatcamGUI/PreferencesUI.py:6505 flatcamTools/ToolCalibration.py:113 +#: flatcamGUI/PreferencesUI.py:6506 flatcamTools/ToolCalibration.py:113 msgid "Height (Z) for mounting the verification probe." -msgstr "" +msgstr "Höhe (Z) zur Installation der Überprüfungssonde." -#: flatcamGUI/PreferencesUI.py:6519 flatcamTools/ToolCalibration.py:127 +#: flatcamGUI/PreferencesUI.py:6520 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 "" +"Werkzeugwechsel X, Y Position.\n" +"Wenn kein Wert eingegeben wird, wird der Strom angezeigt\n" +"(x, y) Punkt wird verwendet," -#: flatcamGUI/PreferencesUI.py:6530 flatcamTools/ToolCalibration.py:153 -#, fuzzy -#| msgid "Second object point" +#: flatcamGUI/PreferencesUI.py:6531 flatcamTools/ToolCalibration.py:153 msgid "Second point" -msgstr "Zweiter Objektpunkt" +msgstr "Zweiter Punkt" -#: flatcamGUI/PreferencesUI.py:6532 flatcamTools/ToolCalibration.py:155 +#: flatcamGUI/PreferencesUI.py:6533 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 "" +"Der zweite Punkt bei der Gcode-Überprüfung kann sein:\n" +"- oben links -> Der Benutzer richtet die Leiterplatte vertikal aus\n" +"- rechts unten -> Der Benutzer richtet die Leiterplatte horizontal aus" -#: flatcamGUI/PreferencesUI.py:6536 flatcamTools/ToolCalibration.py:159 -#, fuzzy -#| msgid "Top Left" +#: flatcamGUI/PreferencesUI.py:6537 flatcamTools/ToolCalibration.py:159 msgid "Top-Left" msgstr "Oben links" -#: flatcamGUI/PreferencesUI.py:6537 flatcamTools/ToolCalibration.py:160 -#, fuzzy -#| msgid "Bottom Right" +#: flatcamGUI/PreferencesUI.py:6538 flatcamTools/ToolCalibration.py:160 msgid "Bottom-Right" msgstr "Unten rechts" -#: flatcamGUI/PreferencesUI.py:6551 +#: flatcamGUI/PreferencesUI.py:6552 msgid "Excellon File associations" msgstr "Excellon-Dateizuordnungen" -#: flatcamGUI/PreferencesUI.py:6564 flatcamGUI/PreferencesUI.py:6637 -#: flatcamGUI/PreferencesUI.py:6707 flatcamGUI/PreferencesUI.py:6777 +#: flatcamGUI/PreferencesUI.py:6565 flatcamGUI/PreferencesUI.py:6638 +#: flatcamGUI/PreferencesUI.py:6708 flatcamGUI/PreferencesUI.py:6778 msgid "Restore" msgstr "Wiederherstellen" -#: flatcamGUI/PreferencesUI.py:6565 flatcamGUI/PreferencesUI.py:6638 -#: flatcamGUI/PreferencesUI.py:6708 +#: flatcamGUI/PreferencesUI.py:6566 flatcamGUI/PreferencesUI.py:6639 +#: flatcamGUI/PreferencesUI.py:6709 msgid "Restore the extension list to the default state." msgstr "Stellen Sie den Standardzustand der Erweiterungsliste wieder her." -#: flatcamGUI/PreferencesUI.py:6566 flatcamGUI/PreferencesUI.py:6639 -#: flatcamGUI/PreferencesUI.py:6709 flatcamGUI/PreferencesUI.py:6779 +#: flatcamGUI/PreferencesUI.py:6567 flatcamGUI/PreferencesUI.py:6640 +#: flatcamGUI/PreferencesUI.py:6710 flatcamGUI/PreferencesUI.py:6780 msgid "Delete All" msgstr "Alles löschen" -#: flatcamGUI/PreferencesUI.py:6567 flatcamGUI/PreferencesUI.py:6640 -#: flatcamGUI/PreferencesUI.py:6710 +#: flatcamGUI/PreferencesUI.py:6568 flatcamGUI/PreferencesUI.py:6641 +#: flatcamGUI/PreferencesUI.py:6711 msgid "Delete all extensions from the list." msgstr "Löschen Sie alle Erweiterungen aus der Liste." -#: flatcamGUI/PreferencesUI.py:6575 flatcamGUI/PreferencesUI.py:6648 -#: flatcamGUI/PreferencesUI.py:6718 +#: flatcamGUI/PreferencesUI.py:6576 flatcamGUI/PreferencesUI.py:6649 +#: flatcamGUI/PreferencesUI.py:6719 msgid "Extensions list" msgstr "Erweiterungsliste" -#: flatcamGUI/PreferencesUI.py:6577 flatcamGUI/PreferencesUI.py:6650 -#: flatcamGUI/PreferencesUI.py:6720 +#: flatcamGUI/PreferencesUI.py:6578 flatcamGUI/PreferencesUI.py:6651 +#: flatcamGUI/PreferencesUI.py:6721 msgid "" "List of file extensions to be\n" "associated with FlatCAM." @@ -12735,43 +12538,43 @@ msgstr "" "Liste der zu verwendenden Dateierweiterungen\n" "im Zusammenhang mit FlatCAM." -#: flatcamGUI/PreferencesUI.py:6597 flatcamGUI/PreferencesUI.py:6670 -#: flatcamGUI/PreferencesUI.py:6739 flatcamGUI/PreferencesUI.py:6811 +#: flatcamGUI/PreferencesUI.py:6598 flatcamGUI/PreferencesUI.py:6671 +#: flatcamGUI/PreferencesUI.py:6740 flatcamGUI/PreferencesUI.py:6812 msgid "Extension" msgstr "Erweiterung" -#: flatcamGUI/PreferencesUI.py:6598 flatcamGUI/PreferencesUI.py:6671 -#: flatcamGUI/PreferencesUI.py:6740 +#: flatcamGUI/PreferencesUI.py:6599 flatcamGUI/PreferencesUI.py:6672 +#: flatcamGUI/PreferencesUI.py:6741 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:6606 flatcamGUI/PreferencesUI.py:6679 -#: flatcamGUI/PreferencesUI.py:6748 +#: flatcamGUI/PreferencesUI.py:6607 flatcamGUI/PreferencesUI.py:6680 +#: flatcamGUI/PreferencesUI.py:6749 msgid "Add Extension" msgstr "Erweiterung hinzufügen" -#: flatcamGUI/PreferencesUI.py:6607 flatcamGUI/PreferencesUI.py:6680 -#: flatcamGUI/PreferencesUI.py:6749 +#: flatcamGUI/PreferencesUI.py:6608 flatcamGUI/PreferencesUI.py:6681 +#: flatcamGUI/PreferencesUI.py:6750 msgid "Add a file extension to the list" msgstr "Fügen Sie der Liste eine Dateierweiterung hinzu" -#: flatcamGUI/PreferencesUI.py:6608 flatcamGUI/PreferencesUI.py:6681 -#: flatcamGUI/PreferencesUI.py:6750 +#: flatcamGUI/PreferencesUI.py:6609 flatcamGUI/PreferencesUI.py:6682 +#: flatcamGUI/PreferencesUI.py:6751 msgid "Delete Extension" msgstr "Erweiterung löschen" -#: flatcamGUI/PreferencesUI.py:6609 flatcamGUI/PreferencesUI.py:6682 -#: flatcamGUI/PreferencesUI.py:6751 +#: flatcamGUI/PreferencesUI.py:6610 flatcamGUI/PreferencesUI.py:6683 +#: flatcamGUI/PreferencesUI.py:6752 msgid "Delete a file extension from the list" msgstr "Löschen Sie eine Dateierweiterung aus der Liste" -#: flatcamGUI/PreferencesUI.py:6616 flatcamGUI/PreferencesUI.py:6689 -#: flatcamGUI/PreferencesUI.py:6758 +#: flatcamGUI/PreferencesUI.py:6617 flatcamGUI/PreferencesUI.py:6690 +#: flatcamGUI/PreferencesUI.py:6759 msgid "Apply Association" msgstr "Assoziation anwenden" -#: flatcamGUI/PreferencesUI.py:6617 flatcamGUI/PreferencesUI.py:6690 -#: flatcamGUI/PreferencesUI.py:6759 +#: flatcamGUI/PreferencesUI.py:6618 flatcamGUI/PreferencesUI.py:6691 +#: flatcamGUI/PreferencesUI.py:6760 msgid "" "Apply the file associations between\n" "FlatCAM and the files with above extensions.\n" @@ -12783,33 +12586,33 @@ msgstr "" "Sie sind nach der nächsten Anmeldung aktiv.\n" "Dies funktioniert nur unter Windows." -#: flatcamGUI/PreferencesUI.py:6634 +#: flatcamGUI/PreferencesUI.py:6635 msgid "GCode File associations" msgstr "GCode-Dateizuordnungen" -#: flatcamGUI/PreferencesUI.py:6704 +#: flatcamGUI/PreferencesUI.py:6705 msgid "Gerber File associations" msgstr "Gerber Dateizuordnungen" -#: flatcamGUI/PreferencesUI.py:6774 +#: flatcamGUI/PreferencesUI.py:6775 msgid "Autocompleter Keywords" msgstr "Autocompleter-Schlüsselwörter" -#: flatcamGUI/PreferencesUI.py:6778 +#: flatcamGUI/PreferencesUI.py:6779 msgid "Restore the autocompleter keywords list to the default state." msgstr "" "Stellen Sie den Standardzustand der Autocompleter-Schlüsselwortliste wieder " "her." -#: flatcamGUI/PreferencesUI.py:6780 +#: flatcamGUI/PreferencesUI.py:6781 msgid "Delete all autocompleter keywords from the list." msgstr "Löschen Sie alle Autocompleter-Schlüsselwörter aus der Liste." -#: flatcamGUI/PreferencesUI.py:6788 +#: flatcamGUI/PreferencesUI.py:6789 msgid "Keywords list" msgstr "Liste der Stichwörter" -#: flatcamGUI/PreferencesUI.py:6790 +#: flatcamGUI/PreferencesUI.py:6791 msgid "" "List of keywords used by\n" "the autocompleter in FlatCAM.\n" @@ -12821,24 +12624,24 @@ msgstr "" "Der Autocompleter ist installiert\n" "im Code-Editor und für die Tcl-Shell." -#: flatcamGUI/PreferencesUI.py:6812 +#: flatcamGUI/PreferencesUI.py:6813 msgid "A keyword to be added or deleted to the list." msgstr "" "Ein Schlüsselwort, das der Liste hinzugefügt oder gelöscht werden soll." -#: flatcamGUI/PreferencesUI.py:6820 +#: flatcamGUI/PreferencesUI.py:6821 msgid "Add keyword" msgstr "Keyword hinzufügen" -#: flatcamGUI/PreferencesUI.py:6821 +#: flatcamGUI/PreferencesUI.py:6822 msgid "Add a keyword to the list" msgstr "Fügen Sie der Liste ein Schlüsselwort hinzu" -#: flatcamGUI/PreferencesUI.py:6822 +#: flatcamGUI/PreferencesUI.py:6823 msgid "Delete keyword" msgstr "Stichwort löschen" -#: flatcamGUI/PreferencesUI.py:6823 +#: flatcamGUI/PreferencesUI.py:6824 msgid "Delete a keyword from the list" msgstr "Löschen Sie ein Schlüsselwort aus der Liste" @@ -12869,16 +12672,12 @@ msgstr "" "Durchmesser so ändern, dass sie den tatsächlichen Durchmessern entsprechen." #: flatcamParsers/ParseExcellon.py:889 -#, fuzzy -#| msgid "" -#| "{e_code} Excellon Parser error.\n" -#| "Parsing Failed. Line {l_nr}: {line}\n" msgid "" "Excellon Parser error.\n" "Parsing Failed. Line" msgstr "" -"{e_code} Excellon-Parser-Fehler.\n" -"Analyse fehlgeschlagen. Linie {l_nr}: {line}\n" +"Excellon-Parser-Fehler.\n" +"Analyse fehlgeschlagen. Linie" #: flatcamParsers/ParseExcellon.py:973 msgid "" @@ -12962,28 +12761,20 @@ msgid "Gerber Rotate done." msgstr "Gerber drehen fertig." #: flatcamParsers/ParseHPGL2.py:176 -#, fuzzy -#| msgid "Gerber processing. Parsing" msgid "HPGL2 processing. Parsing" -msgstr "Gerber-Verarbeitung. Parsing" +msgstr "HPGL2 -Verarbeitung. Parsing" #: flatcamParsers/ParseHPGL2.py:408 -#, fuzzy -#| msgid "Plot Line" msgid "HPGL2 Line" -msgstr "Handlungsstrang" +msgstr "HPGL2-Linie" #: flatcamParsers/ParseHPGL2.py:408 -#, fuzzy -#| msgid "Gerber Line Content" msgid "HPGL2 Line Content" -msgstr "Gerber-Zeileninhalt" +msgstr "HPGL2-Zeileninhalt" #: flatcamParsers/ParseHPGL2.py:409 -#, fuzzy -#| msgid "Gerber Parser ERROR" msgid "HPGL2 Parser ERROR" -msgstr "Gerber-Parser FEHLER" +msgstr "HPGL2 -Parser FEHLER" #: flatcamTools/ToolCalculators.py:24 msgid "Calculators" @@ -13079,18 +12870,16 @@ msgid "Calc. Tool" msgstr "Rechner-Tool" #: flatcamTools/ToolCalibration.py:67 -#, fuzzy -#| msgid "Slot Parameters" msgid "GCode Parameters" -msgstr "Schlitze-Parameter" +msgstr "GCode-Parameter" #: flatcamTools/ToolCalibration.py:69 msgid "Parameters used when creating the GCode in this tool." -msgstr "" +msgstr "Verwendete Parameter zum Erzeugen des GCodes mit diesem Wwerkzeug." #: flatcamTools/ToolCalibration.py:173 msgid "STEP 1: Acquire Calibration Points" -msgstr "" +msgstr "Schritt 1: Kalibrierungspunkte erzeugen" #: flatcamTools/ToolCalibration.py:175 msgid "" @@ -13098,6 +12887,9 @@ msgid "" "Those four points should be in the four\n" "(as much as possible) corners of the object." msgstr "" +"Wählen Sie vier Punkte aus, indem Sie auf die Leinwand klicken.\n" +"Diese vier Punkte sollten in den vier sein\n" +"(so viel wie möglich) Ecken des Objekts." #: flatcamTools/ToolCalibration.py:193 flatcamTools/ToolCutOut.py:80 #: flatcamTools/ToolFilm.py:78 flatcamTools/ToolImage.py:55 @@ -13106,97 +12898,73 @@ msgid "Object Type" msgstr "Objekttyp" #: flatcamTools/ToolCalibration.py:211 -#, fuzzy -#| msgid "No object selected." msgid "Source object selection" -msgstr "Kein Objekt ausgewählt." +msgstr "Auswahl des Quellobjektes." #: 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 "" -"Das FlatCAM-Objekt, das als Nicht-Kupfer-Clearing-Referenz verwendet werden " -"soll." +msgstr "Das FlatCAM-Objekt, das als Referenzpunkt verwendet werden soll." #: flatcamTools/ToolCalibration.py:219 msgid "Calibration Points" -msgstr "" +msgstr "Kalibrierungspunkte" #: flatcamTools/ToolCalibration.py:221 msgid "" "Contain the expected calibration points and the\n" "ones measured." msgstr "" +"Enthalten die erwarteten Kalibrierungspunkte sowie\n" +"die gemessenen." #: flatcamTools/ToolCalibration.py:236 flatcamTools/ToolSub.py:74 #: flatcamTools/ToolSub.py:126 msgid "Target" -msgstr "Zielscheibe" +msgstr "Ziel" #: flatcamTools/ToolCalibration.py:237 msgid "Found Delta" -msgstr "" +msgstr "Gefundener Unterschied" #: flatcamTools/ToolCalibration.py:249 -#, fuzzy -#| msgid "Bottom Left" msgid "Bot Left X" -msgstr "Unten links" +msgstr "Unten links X" #: flatcamTools/ToolCalibration.py:258 -#, fuzzy -#| msgid "Bottom Left" msgid "Bot Left Y" -msgstr "Unten links" +msgstr "Unten links Y" #: flatcamTools/ToolCalibration.py:266 flatcamTools/ToolCalibration.py:267 -#, fuzzy -#| msgid "Origin set" msgid "Origin" -msgstr "Ursprung gesetzt" +msgstr "Ursprung" #: flatcamTools/ToolCalibration.py:278 -#, fuzzy -#| msgid "Bottom Right" msgid "Bot Right X" -msgstr "Unten rechts" +msgstr "Unten rechts X" #: flatcamTools/ToolCalibration.py:288 -#, fuzzy -#| msgid "Bottom Right" msgid "Bot Right Y" -msgstr "Unten rechts" +msgstr "Unten rechts Y" #: flatcamTools/ToolCalibration.py:303 -#, fuzzy -#| msgid "Top Left" msgid "Top Left X" -msgstr "Oben links" +msgstr "Oben links X" #: flatcamTools/ToolCalibration.py:312 -#, fuzzy -#| msgid "Top Left" msgid "Top Left Y" -msgstr "Oben links" +msgstr "Oben links Y" #: flatcamTools/ToolCalibration.py:327 -#, fuzzy -#| msgid "Top right" msgid "Top Right X" -msgstr "Oben rechts" +msgstr "Oben rechts X" #: flatcamTools/ToolCalibration.py:337 -#, fuzzy -#| msgid "Top right" msgid "Top Right Y" -msgstr "Oben rechts" +msgstr "Oben rechts Y" #: flatcamTools/ToolCalibration.py:370 -#, fuzzy -#| msgid "Ref. Point" msgid "Get Points" -msgstr "Anhaltspunkt" +msgstr "Punkte einholen" #: flatcamTools/ToolCalibration.py:372 msgid "" @@ -13205,10 +12973,14 @@ msgid "" "Those four points should be in the four squares of\n" "the object." msgstr "" +"Wählen Sie vier Punkte indem Sie auf die Leinwand klicken (Freier Modus).\n" +"Oder wählen Sie ein Objekt (Objekt Modus)\n" +"Diese vier Punkte sollten in vier unterschiedlichen Quadranten des Objektes " +"sein." #: flatcamTools/ToolCalibration.py:393 msgid "STEP 2: Verification GCode" -msgstr "" +msgstr "Schritt 2: Überprüfung des GCodes" #: flatcamTools/ToolCalibration.py:395 flatcamTools/ToolCalibration.py:408 msgid "" @@ -13220,16 +12992,23 @@ msgid "" "- third point -> check point. Can be: top-left or bottom-right.\n" "- forth point -> final verification point. Just for evaluation." msgstr "" +"Erstellen Sie eine GCode-Datei, um die Leiterplatte mithilfe von zu " +"lokalisieren und auszurichten\n" +"die vier oben erworbenen Punkte.\n" +"Die Punktesequenz ist:\n" +"- erster Punkt -> Ursprung einstellen\n" +"- zweiter Punkt -> Ausrichtungspunkt. Kann sein: oben links oder unten " +"rechts.\n" +"- dritter Punkt -> Kontrollpunkt. Kann sein: oben links oder unten rechts.\n" +"- vierter Punkt -> letzter Verifizierungspunkt. Nur zur Bewertung." #: flatcamTools/ToolCalibration.py:406 flatcamTools/ToolSolderPaste.py:347 msgid "Generate GCode" msgstr "GCode generieren" #: flatcamTools/ToolCalibration.py:432 -#, fuzzy -#| msgid "Film Adjustments" msgid "STEP 3: Adjustments" -msgstr "Filmeinstellungen" +msgstr "Schritt 3: Anpassungen" #: flatcamTools/ToolCalibration.py:434 flatcamTools/ToolCalibration.py:443 msgid "" @@ -13237,72 +13016,62 @@ msgid "" "found when checking the PCB pattern. The differences must be filled\n" "in the fields Found (Delta)." msgstr "" +"Berechne die Skalierungs und Verzerrungsfaktoren basierend auf dem Delta\n" +"das bei der Platinenüberprüfung gefunden wurde. Dieses Delta muss den " +"Feldern\n" +"eingetragen warden." #: flatcamTools/ToolCalibration.py:441 -#, fuzzy -#| msgid "Calculators" msgid "Calculate Factors" -msgstr "Rechner" +msgstr "Berechne Faktoren" #: flatcamTools/ToolCalibration.py:463 msgid "STEP 4: Adjusted GCode" -msgstr "" +msgstr "Schritt 4 Angepasster GCode" #: flatcamTools/ToolCalibration.py:465 msgid "" "Generate verification GCode file adjusted with\n" "the factors above." msgstr "" +"Erzeuge den GCode mit den zuvor gefundenen\n" +"Faktoren." #: flatcamTools/ToolCalibration.py:470 -#, fuzzy -#| msgid "Scale Factor:" msgid "Scale Factor X:" -msgstr "Scale Factor:" +msgstr "Skalierungsfaktor X:" #: flatcamTools/ToolCalibration.py:482 -#, fuzzy -#| msgid "Scale Factor:" msgid "Scale Factor Y:" -msgstr "Scale Factor:" +msgstr "Skalierungsfaktor Y:" #: flatcamTools/ToolCalibration.py:494 -#, fuzzy -#| msgid "Ap. Scale Factor:" msgid "Apply Scale Factors" -msgstr "Öffnungsmaßstab:" +msgstr "Skalierungen anwenden" #: flatcamTools/ToolCalibration.py:496 msgid "Apply Scale factors on the calibration points." -msgstr "" +msgstr "Anwenden der Skalierungsfaktoren auf die Kalibrierungspunkte." #: flatcamTools/ToolCalibration.py:506 -#, fuzzy -#| msgid "Angle X:" msgid "Skew Angle X:" -msgstr "Winkel X:" +msgstr "Verzerrungs-Winkel X:" #: flatcamTools/ToolCalibration.py:519 -#, fuzzy -#| msgid "Angle Y:" msgid "Skew Angle Y:" -msgstr "Winkel Y:" +msgstr "Verzerrungs-Winkel Y:" #: flatcamTools/ToolCalibration.py:532 -#, fuzzy -#| msgid "Ap. Scale Factor:" msgid "Apply Skew Factors" -msgstr "Öffnungsmaßstab:" +msgstr "Schrägstellung anwenden" #: flatcamTools/ToolCalibration.py:534 msgid "Apply Skew factors on the calibration points." -msgstr "" +msgstr "Anwenden der Verzerrungswinkel auf die Bezugspunkte." #: flatcamTools/ToolCalibration.py:603 -#, fuzzy -#| msgid "Generate GCode" msgid "Generate Adjusted GCode" -msgstr "GCode generieren" +msgstr "Angepassten Überprüfungs-GCode generieren" #: flatcamTools/ToolCalibration.py:605 msgid "" @@ -13311,46 +13080,50 @@ msgid "" "The GCode parameters can be readjusted\n" "before clicking this button." msgstr "" +"Bestätigungs-GCode-Datei erstellen angepasst mit\n" +"die oben genannten Faktoren.\n" +"Die GCode-Parameter können neu eingestellt werden\n" +"bevor Sie auf diese Schaltfläche klicken." #: flatcamTools/ToolCalibration.py:626 msgid "STEP 5: Calibrate FlatCAM Objects" -msgstr "" +msgstr "Schritt 5: Kalibrieren der FlatCAM Objekte" #: flatcamTools/ToolCalibration.py:628 msgid "" "Adjust the FlatCAM objects\n" "with the factors determined and verified above." msgstr "" +"Anpassen der FlatCAM Objekte\n" +"mit den zuvor bestimmten und überprüften Faktoren." #: flatcamTools/ToolCalibration.py:641 msgid "Adjusted object type" -msgstr "" +msgstr "Angepasster Objekttyp" #: flatcamTools/ToolCalibration.py:643 msgid "Type of the FlatCAM Object to be adjusted." -msgstr "" +msgstr "Art des FlatCAM Objektes das angepasst wird." #: flatcamTools/ToolCalibration.py:654 -#, fuzzy -#| msgid "No object selected." msgid "Adjusted object selection" -msgstr "Kein Objekt ausgewählt." +msgstr "Objektauswahl angepasst" #: flatcamTools/ToolCalibration.py:656 -#, fuzzy -#| msgid "Object to be painted." msgid "The FlatCAM Object to be adjusted." -msgstr "Gegenstand gemalt werden." +msgstr "Das FlatCAM Objekt das angepasst werden muss." #: flatcamTools/ToolCalibration.py:663 msgid "Calibrate" -msgstr "" +msgstr "Kalibrieren" #: flatcamTools/ToolCalibration.py:665 msgid "" "Adjust (scale and/or skew) the objects\n" "with the factors determined above." msgstr "" +"Anpassen (Skalieren und/oder Verzerren) der Objekte\n" +"anhand der zuvor gefundenen Faktoren." #: flatcamTools/ToolCalibration.py:686 flatcamTools/ToolCopperThieving.py:482 #: flatcamTools/ToolCutOut.py:360 flatcamTools/ToolDblSided.py:302 @@ -13359,10 +13132,8 @@ msgstr "" #: flatcamTools/ToolPaint.py:378 flatcamTools/ToolPanelize.py:266 #: flatcamTools/ToolQRCode.py:314 flatcamTools/ToolRulesCheck.py:507 #: flatcamTools/ToolSolderPaste.py:470 flatcamTools/ToolSub.py:170 -#, fuzzy -#| msgid "Rules Tool" msgid "Reset Tool" -msgstr "Regelwerkzeug" +msgstr "Reset Werkzeug" #: flatcamTools/ToolCalibration.py:688 flatcamTools/ToolCopperThieving.py:484 #: flatcamTools/ToolCutOut.py:362 flatcamTools/ToolDblSided.py:304 @@ -13371,91 +13142,77 @@ msgstr "Regelwerkzeug" #: flatcamTools/ToolPaint.py:380 flatcamTools/ToolPanelize.py:268 #: flatcamTools/ToolQRCode.py:316 flatcamTools/ToolRulesCheck.py:509 #: flatcamTools/ToolSolderPaste.py:472 flatcamTools/ToolSub.py:172 -#, fuzzy -#| msgid "" -#| "Select tools.\n" -#| "Modify parameters." msgid "Will reset the tool parameters." -msgstr "" -"Werkzeuge auswählen.\n" -"Parameter ändern." +msgstr "Wird die Werkzeugeinstellungen zurücksetzen." #: flatcamTools/ToolCalibration.py:792 msgid "Tool initialized" -msgstr "" +msgstr "Werkzeug eingerichtet" #: flatcamTools/ToolCalibration.py:824 -#, fuzzy -#| msgid "There is no Excellon object loaded ..." msgid "There is no source FlatCAM object selected..." -msgstr "Es ist kein Excellon-Objekt geladen ..." +msgstr "Es is kein FlatCAM Objekt ausgewählt." #: flatcamTools/ToolCalibration.py:845 msgid "Get First calibration point. Bottom Left..." -msgstr "" +msgstr "Lese ersten Kalibrierungspunkt (Unten Links)" #: flatcamTools/ToolCalibration.py:906 -#, fuzzy -#| msgid "Copy cancelled. No shape selected." msgid "Cancelled by user request." -msgstr "Kopieren abgebrochen. Keine Form ausgewählt." +msgstr "Auf Benutzerwunsch storniert." #: flatcamTools/ToolCalibration.py:912 msgid "Get Second calibration point. Bottom Right (Top Left)..." -msgstr "" +msgstr "Zweiter Kalibrierungspunkt abrufen. Unten rechts (oben links) ..." #: flatcamTools/ToolCalibration.py:916 msgid "Get Third calibration point. Top Left (Bottom Right)..." msgstr "" +"Holen Sie sich den dritten Kalibrierungspunkt. Oben links unten rechts)..." #: flatcamTools/ToolCalibration.py:920 msgid "Get Forth calibration point. Top Right..." -msgstr "" +msgstr "Lese vierten Kalibrierungspunkt (Oben Rechts)" #: flatcamTools/ToolCalibration.py:924 msgid "Done. All four points have been acquired." -msgstr "" +msgstr "Erledigt, alle vier Punkte wurden gelesen." #: flatcamTools/ToolCalibration.py:955 msgid "Verification GCode for FlatCAM Calibration Tool" -msgstr "" +msgstr "Überprüfungs GCode des FlatCAM Kalibrierungstools" #: flatcamTools/ToolCalibration.py:967 flatcamTools/ToolCalibration.py:1053 msgid "Gcode Viewer" -msgstr "" +msgstr "GCode Anzeige" #: flatcamTools/ToolCalibration.py:983 msgid "Cancelled. Four points are needed for GCode generation." -msgstr "" +msgstr "Abgebrochen. Es werden vier Punkte zur GCode Erzeugung benötigt." #: flatcamTools/ToolCalibration.py:1239 flatcamTools/ToolCalibration.py:1335 -#, fuzzy -#| msgid "There is no Box object loaded ..." msgid "There is no FlatCAM object selected..." -msgstr "Es ist kein Box-Objekt geladen ..." +msgstr "Es ist kein FlatCAM Objekt ausgewählt." #: flatcamTools/ToolCopperThieving.py:76 flatcamTools/ToolFiducials.py:260 msgid "Gerber Object to which will be added a copper thieving." -msgstr "" +msgstr "Dem Gerber Objekt wird ein Copper Thieving hinzugefügt." +# Double #: flatcamTools/ToolCopperThieving.py:98 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 "" +"Diese Auswahl definiert den Abstand zwischen den \"Copper Thieving\" " +"Komponenten.\n" +"und den Kupferverbindungen im Gerber File (möglicherweise wird hierbei ein " +"Polygon\n" +"in mehrere aufgeteilt." +# Double #: flatcamTools/ToolCopperThieving.py:131 -#, 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." msgid "" "- 'Itself' - the copper thieving extent is based on the object extent.\n" "- 'Area Selection' - left mouse click to start selection of the area to be " @@ -13463,14 +13220,12 @@ msgid "" "- 'Reference Object' - will do copper thieving within the area specified by " "another object." msgstr "" -"- \"Selbst\" - das nicht kupferhaltige Clearing-Ausmaß\n" -"basiert auf dem Objekt, das kupferfrei ist.\n" -"- 'Bereichsauswahl' - Klicken Sie mit der linken Maustaste, um den Bereich " -"auszuwählen, der gemalt werden soll.\n" -"Wenn Sie eine Änderungstaste gedrückt halten (STRG oder UMSCHALTTASTE), " -"können Sie mehrere Bereiche hinzufügen.\n" -"- 'Referenzobjekt' - löscht nicht kupferne Objekte innerhalb des Bereichs\n" -"von einem anderen Objekt angegeben." +"- 'Selbst' - die 'Copper Thieving' Ausdehnung basiert auf der " +"Objektausdehnung.\n" +"- 'Bereichsauswahl' - Klicken Sie mit der linken Maustaste, um den zu " +"füllenden Bereich auszuwählen.\n" +"- 'Referenzobjekt' - 'Copper Thieving' innerhalb des von einem anderen " +"Objekt angegebenen Bereichs." #: flatcamTools/ToolCopperThieving.py:138 #: flatcamTools/ToolNonCopperClear.py:451 flatcamTools/ToolPaint.py:332 @@ -13478,38 +13233,28 @@ msgid "Ref. Type" msgstr "Ref. Typ" #: flatcamTools/ToolCopperThieving.py:140 -#, fuzzy -#| msgid "" -#| "The type of FlatCAM object to be used as non copper clearing reference.\n" -#| "It can be Gerber, Excellon or Geometry." msgid "" "The type of FlatCAM object to be used as copper thieving reference.\n" "It can be Gerber, Excellon or Geometry." msgstr "" -"Der Typ des FlatCAM-Objekts, das als nicht aus Kupfer stammende Clearing-" -"Referenz verwendet werden soll.\n" +"Der Typ des FlatCAM-Objekts, das Copper Thieving-Referenz verwendet werden " +"soll.\n" "Es kann Gerber, Excellon oder Geometry sein." #: flatcamTools/ToolCopperThieving.py:144 flatcamTools/ToolDblSided.py:213 #: flatcamTools/ToolNonCopperClear.py:457 flatcamTools/ToolPaint.py:338 -#, fuzzy -#| msgid "Reference Object" msgid "Reference Gerber" -msgstr "Ref. Objekt" +msgstr "Gerber Referenz" #: flatcamTools/ToolCopperThieving.py:145 flatcamTools/ToolDblSided.py:214 #: flatcamTools/ToolNonCopperClear.py:458 flatcamTools/ToolPaint.py:339 -#, fuzzy -#| msgid "Open Excellon" msgid "Reference Excellon" -msgstr "Excellon öffnen" +msgstr "Excellon Referenz" #: flatcamTools/ToolCopperThieving.py:146 flatcamTools/ToolDblSided.py:215 #: flatcamTools/ToolNonCopperClear.py:459 flatcamTools/ToolPaint.py:340 -#, fuzzy -#| msgid "Generate Geometry" msgid "Reference Geometry" -msgstr "Geometrie erzeugen" +msgstr "Geometrie Referenz" #: flatcamTools/ToolCopperThieving.py:151 #: flatcamTools/ToolNonCopperClear.py:462 flatcamTools/ToolPaint.py:343 @@ -13523,20 +13268,26 @@ msgstr "" "Das FlatCAM-Objekt, das als Nicht-Kupfer-Clearing-Referenz verwendet werden " "soll." +# Double #: flatcamTools/ToolCopperThieving.py:326 msgid "Insert Copper thieving" -msgstr "" +msgstr "'Coper Thieving' einsetzen" +# Double #: flatcamTools/ToolCopperThieving.py:328 msgid "" "Will add a polygon (may be split in multiple parts)\n" "that will surround the actual Gerber traces at a certain distance." msgstr "" +"Fügt ein Polygon hinzu (kann in mehrere Teile geteilt werden)\n" +"das wird die eigentlichen Gerber-Spuren in einem gewissen Abstand umgeben." +# Double #: flatcamTools/ToolCopperThieving.py:387 msgid "Insert Robber Bar" -msgstr "" +msgstr "'Robber Bar' einsetzen" +# Double #: flatcamTools/ToolCopperThieving.py:389 msgid "" "Will add a polygon with a defined thickness\n" @@ -13544,12 +13295,14 @@ msgid "" "at a certain distance.\n" "Required when doing holes pattern plating." msgstr "" +"Fügt ein Polygon mit einer definierten Dicke hinzu\n" +"das wird das eigentliche Gerber-Objekt umgeben\n" +"in einem bestimmten Abstand.\n" +"Erforderlich für die Lochmusterbeschichtung." #: flatcamTools/ToolCopperThieving.py:413 -#, fuzzy -#| msgid "Delete objects" msgid "Select Soldermask object" -msgstr "Objekte löschen" +msgstr "Lötmaskenobjekt auswählen" #: flatcamTools/ToolCopperThieving.py:415 msgid "" @@ -13557,10 +13310,12 @@ msgid "" "It will be used as a base for\n" "the pattern plating mask." msgstr "" +"Das Gerber Objekt mit der Lötmaske\n" +"Wird als Basis verwendet." #: flatcamTools/ToolCopperThieving.py:443 msgid "Plated area" -msgstr "" +msgstr "Beschichtetes Areal" #: flatcamTools/ToolCopperThieving.py:445 msgid "" @@ -13572,18 +13327,24 @@ msgid "" "a bit larger than the copper pads, and this area is\n" "calculated from the soldermask openings." msgstr "" +"Das zu beschichtende Areal.\n" +"Generell wird es durch die Öffnungen in der Beschichtungsmaske erzeugt.\n" +"\n" +"ACHTUNG: das berechnete Areal ist etwas größer da die Lötmaskenöffnungen\n" +"etwas größer als die Pads sind, und dieses Areal aus der Lötmaske berechnet " +"wird." #: flatcamTools/ToolCopperThieving.py:456 msgid "mm" -msgstr "" +msgstr "mm" #: flatcamTools/ToolCopperThieving.py:458 msgid "in" -msgstr "Im" +msgstr "in" #: flatcamTools/ToolCopperThieving.py:465 msgid "Generate pattern plating mask" -msgstr "" +msgstr "Generieren der Beschichtungsmaske" #: flatcamTools/ToolCopperThieving.py:467 msgid "" @@ -13591,27 +13352,26 @@ msgid "" "the geometries of the copper thieving and/or\n" "the robber bar if those were generated." msgstr "" +"Wird die Lötmaske des Copper Thivings und/oder der \n" +"Robber Bar zu der Gerber Geometrie hinzufügen, sofern\n" +"diese erzeugt worden sind." #: flatcamTools/ToolCopperThieving.py:620 #: flatcamTools/ToolCopperThieving.py:645 msgid "Lines Grid works only for 'itself' reference ..." -msgstr "" +msgstr "Schraffur geht nur bei \"Selbst\" Referenz ..." #: flatcamTools/ToolCopperThieving.py:631 -#, fuzzy -#| msgid "Failed. Nothing selected." msgid "Solid fill selected." -msgstr "Gescheitert. Nichts ausgewählt." +msgstr "Vollständige Füllung gewählt." #: flatcamTools/ToolCopperThieving.py:636 -#, fuzzy -#| msgid "Done. Drill(s) deleted." msgid "Dots grid fill selected." -msgstr "Erledigt. Bohrer gelöscht." +msgstr "Punktmusterfüllung gewählt." #: flatcamTools/ToolCopperThieving.py:641 msgid "Squares grid fill selected." -msgstr "" +msgstr "Quadratfüllung gewählt." #: flatcamTools/ToolCopperThieving.py:662 #: flatcamTools/ToolCopperThieving.py:744 @@ -13623,31 +13383,26 @@ msgstr "Es ist kein Gerber-Objekt geladen ..." #: flatcamTools/ToolCopperThieving.py:675 #: flatcamTools/ToolCopperThieving.py:1267 -#, fuzzy -#| msgid "geometry" msgid "Append geometry" -msgstr "geometrie" +msgstr "Geometrie angehängt" #: flatcamTools/ToolCopperThieving.py:719 #: flatcamTools/ToolCopperThieving.py:1300 #: flatcamTools/ToolCopperThieving.py:1453 -#, fuzzy -#| msgid "Save Document source file" msgid "Append source file" -msgstr "Speichern Sie die Quelldatei des Dokuments" +msgstr "Fügen Sie die Quelldatei an" +# Don`t know what a Copper Thieving Tool would do hence hard to translate #: flatcamTools/ToolCopperThieving.py:727 #: flatcamTools/ToolCopperThieving.py:1308 -#, fuzzy -#| msgid "Non-Copper Clearing Tool" msgid "Copper Thieving Tool done." -msgstr "Nicht-Kupfer-Räumwerkzeug" +msgstr "'Copper Thieving' Werkzeug fertig." #: flatcamTools/ToolCopperThieving.py:754 #: flatcamTools/ToolCopperThieving.py:787 flatcamTools/ToolCutOut.py:466 -#: flatcamTools/ToolCutOut.py:640 flatcamTools/ToolNonCopperClear.py:1156 -#: flatcamTools/ToolNonCopperClear.py:1197 -#: flatcamTools/ToolNonCopperClear.py:1229 flatcamTools/ToolPaint.py:1079 +#: flatcamTools/ToolCutOut.py:640 flatcamTools/ToolNonCopperClear.py:1157 +#: flatcamTools/ToolNonCopperClear.py:1198 +#: flatcamTools/ToolNonCopperClear.py:1230 flatcamTools/ToolPaint.py:1080 #: flatcamTools/ToolPanelize.py:401 flatcamTools/ToolPanelize.py:416 #: flatcamTools/ToolSub.py:288 flatcamTools/ToolSub.py:301 #: flatcamTools/ToolSub.py:492 flatcamTools/ToolSub.py:507 @@ -13657,18 +13412,16 @@ msgid "Could not retrieve object" msgstr "Objekt konnte nicht abgerufen werden" #: flatcamTools/ToolCopperThieving.py:764 -#: flatcamTools/ToolNonCopperClear.py:1210 +#: flatcamTools/ToolNonCopperClear.py:1211 msgid "Click the start point of the area." msgstr "Klicken Sie auf den Startpunkt des Bereichs." #: flatcamTools/ToolCopperThieving.py:815 -#, fuzzy -#| msgid "Click the end point of the paint area." msgid "Click the end point of the filling area." -msgstr "Klicken Sie auf den Endpunkt des Malbereichs." +msgstr "Klicken Sie auf den Endpunkt des Ausfüllbereichs." #: flatcamTools/ToolCopperThieving.py:821 -#: flatcamTools/ToolNonCopperClear.py:1266 flatcamTools/ToolPaint.py:1206 +#: flatcamTools/ToolNonCopperClear.py:1267 flatcamTools/ToolPaint.py:1207 msgid "Zone added. Click to start adding next zone or right click to finish." msgstr "" "Zone hinzugefügt. Klicken Sie, um die nächste Zone hinzuzufügen, oder " @@ -13678,23 +13431,19 @@ msgstr "" #: flatcamTools/ToolCopperThieving.py:940 #: flatcamTools/ToolCopperThieving.py:1001 msgid "Thieving" -msgstr "" +msgstr "Diebstahl" #: flatcamTools/ToolCopperThieving.py:947 -#, fuzzy -#| msgid "NCC Tool started. Reading parameters." msgid "Copper Thieving Tool started. Reading parameters." -msgstr "NCC Tool gestartet. Parameter lesen." +msgstr "Copper Thieving Tool gestartet. Parameter lesen." #: flatcamTools/ToolCopperThieving.py:972 -#, fuzzy -#| msgid "NCC Tool. Preparing non-copper polygons." msgid "Copper Thieving Tool. Preparing isolation polygons." -msgstr "NCC-Tool. Vorbereitung von kupferfreien Polygonen." +msgstr "Copper Thieving-Tool. Vorbereitung von isolierenden Polygonen." #: flatcamTools/ToolCopperThieving.py:1017 msgid "Copper Thieving Tool. Preparing areas to fill with copper." -msgstr "" +msgstr "Copper Thieving Tool: Areale zur Kupferfüllung vorbereiten." #: flatcamTools/ToolCopperThieving.py:1028 flatcamTools/ToolOptimal.py:349 #: flatcamTools/ToolPanelize.py:798 flatcamTools/ToolRulesCheck.py:1118 @@ -13702,49 +13451,43 @@ msgid "Working..." msgstr "Arbeiten..." #: flatcamTools/ToolCopperThieving.py:1055 -#, fuzzy -#| msgid "Geometry not supported for cutout" msgid "Geometry not supported for bounding box" -msgstr "Geometrie für Ausschnitt nicht unterstützt" +msgstr "Geometrie für Umriss nicht unterstützt" #: flatcamTools/ToolCopperThieving.py:1061 -#: flatcamTools/ToolNonCopperClear.py:1517 flatcamTools/ToolPaint.py:2571 +#: flatcamTools/ToolNonCopperClear.py:1518 flatcamTools/ToolPaint.py:2572 msgid "No object available." msgstr "Kein Objekt vorhanden." #: flatcamTools/ToolCopperThieving.py:1098 -#: flatcamTools/ToolNonCopperClear.py:1559 +#: flatcamTools/ToolNonCopperClear.py:1560 msgid "The reference object type is not supported." msgstr "Der Referenzobjekttyp wird nicht unterstützt." #: flatcamTools/ToolCopperThieving.py:1103 msgid "Copper Thieving Tool. Appending new geometry and buffering." -msgstr "" +msgstr "Copper Thieving Tool. Füge neue Geometrie an und puffere sie." #: flatcamTools/ToolCopperThieving.py:1119 -#, fuzzy -#| msgid "Create Paint Geometry" msgid "Create geometry" -msgstr "Farbgeometrie erstellen" +msgstr "Geometrie erstellen" #: flatcamTools/ToolCopperThieving.py:1319 #: flatcamTools/ToolCopperThieving.py:1323 msgid "P-Plating Mask" -msgstr "" +msgstr "P-Beschichtungsmaske" #: flatcamTools/ToolCopperThieving.py:1345 msgid "Append PP-M geometry" -msgstr "" +msgstr "PPM Geometrie hinzufügen" #: flatcamTools/ToolCopperThieving.py:1471 msgid "Generating Pattern Plating Mask done." -msgstr "" +msgstr "Erzeugen der PPM abgeschlossen." #: flatcamTools/ToolCopperThieving.py:1543 -#, fuzzy -#| msgid "Non-Copper Clearing Tool" msgid "Copper Thieving Tool exit." -msgstr "Nicht-Kupfer-Räumwerkzeug" +msgstr "Copper Thieving Tool verlassen." #: flatcamTools/ToolCutOut.py:42 msgid "Cutout PCB" @@ -13763,14 +13506,10 @@ msgstr "" "von Objekten, die die Combobox 'Object' füllen." #: flatcamTools/ToolCutOut.py:91 flatcamTools/ToolCutOut.py:92 -#, fuzzy -#| msgid "Object to be painted." msgid "Object to be cutout" -msgstr "Gegenstand gemalt werden." +msgstr "Auszuschneidendes Objekt" #: flatcamTools/ToolCutOut.py:214 -#, fuzzy -#| msgid "Convex Sh." msgid "Convex Shape" msgstr "Konvexe Form" @@ -13807,10 +13546,8 @@ msgstr "" "- 8 \t- 2 * links + 2 * rechts + 2 * oben + 2 * unten" #: flatcamTools/ToolCutOut.py:262 -#, fuzzy -#| msgid "Generate Geometry" msgid "Generate Freeform Geometry" -msgstr "Geometrie erzeugen" +msgstr "Freiform Geometrie erzeugen" #: flatcamTools/ToolCutOut.py:264 msgid "" @@ -13823,10 +13560,8 @@ msgstr "" "Nützlich, wenn die Leiterplatte eine nicht rechteckige Form hat." #: flatcamTools/ToolCutOut.py:276 -#, fuzzy -#| msgid "Generate Geometry" msgid "Generate Rectangular Geometry" -msgstr "Geometrie erzeugen" +msgstr "Rechteck Geometrie erzeugen" #: flatcamTools/ToolCutOut.py:278 msgid "" @@ -13859,10 +13594,8 @@ msgid "Geometry object used to create the manual cutout." msgstr "Geometrieobjekt zum Erstellen des manuellen Ausschnitts." #: flatcamTools/ToolCutOut.py:326 -#, fuzzy -#| msgid "Generate Geometry" msgid "Generate Manual Geometry" -msgstr "Geometrie erzeugen" +msgstr "Manuelle Geometrie erzeugen" #: flatcamTools/ToolCutOut.py:328 msgid "" @@ -13939,8 +13672,8 @@ msgstr "" msgid "Any form CutOut operation finished." msgstr "Jede Form CutOut-Operation ist abgeschlossen." -#: flatcamTools/ToolCutOut.py:644 flatcamTools/ToolNonCopperClear.py:1160 -#: flatcamTools/ToolPaint.py:999 flatcamTools/ToolPanelize.py:406 +#: flatcamTools/ToolCutOut.py:644 flatcamTools/ToolNonCopperClear.py:1161 +#: flatcamTools/ToolPaint.py:1000 flatcamTools/ToolPanelize.py:406 #: tclCommands/TclCommandBbox.py:70 tclCommands/TclCommandNregions.py:70 msgid "Object not found" msgstr "Objekt nicht gefunden" @@ -13997,10 +13730,8 @@ msgid "2-Sided PCB" msgstr "2-seitige PCB" #: flatcamTools/ToolDblSided.py:58 -#, fuzzy -#| msgid "Geometry Obj to be mirrored." msgid "Gerber to be mirrored" -msgstr "Geometrie-Objekt, das gespiegelt werden soll." +msgstr "Zu spiegelndes Gerber" #: flatcamTools/ToolDblSided.py:60 flatcamTools/ToolDblSided.py:88 #: flatcamTools/ToolDblSided.py:118 @@ -14270,19 +14001,15 @@ msgstr "MESSEN: Klicken Sie auf den Zielpunkt ..." #: flatcamTools/ToolDistance.py:353 flatcamTools/ToolDistanceMin.py:282 msgid "MEASURING" -msgstr "" +msgstr "MESSUNG" #: flatcamTools/ToolDistance.py:354 flatcamTools/ToolDistanceMin.py:283 -#, fuzzy -#| msgid "Geo Result" msgid "Result" -msgstr "Geo-Ergebnis" +msgstr "Ergebnis" #: flatcamTools/ToolDistance.py:355 flatcamTools/ToolDistanceMin.py:284 -#, fuzzy -#| msgid "Distance Tool" msgid "Distance" -msgstr "Entfernungswerkzeug" +msgstr "Entfernung" #: flatcamTools/ToolDistanceMin.py:31 flatcamTools/ToolDistanceMin.py:152 msgid "Minimum Distance Tool" @@ -14350,34 +14077,28 @@ msgid "Jumped to the half point between the two selected objects" msgstr "Sprang zum halben Punkt zwischen den beiden ausgewählten Objekten" #: flatcamTools/ToolFiducials.py:56 -#, fuzzy -#| msgid "Points coordinates" msgid "Fiducials Coordinates" -msgstr "Punktkoordinaten" +msgstr "Bezugspunktkoordinaten" #: flatcamTools/ToolFiducials.py:58 msgid "" "A table with the fiducial points coordinates,\n" "in the format (x, y)." msgstr "" +"Eine Tabelle der Bezugspunkte mit Koordinaten \n" +"im Format (x,z)" #: flatcamTools/ToolFiducials.py:74 -#, fuzzy -#| msgid "Coordinates type" msgid "Coordinates" -msgstr "Koordinaten eingeben" +msgstr "Koordinaten" #: flatcamTools/ToolFiducials.py:99 -#, fuzzy -#| msgid "Top right" msgid "Top Right" msgstr "Oben rechts" #: flatcamTools/ToolFiducials.py:111 -#, fuzzy -#| msgid "Second object point" msgid "Second Point" -msgstr "Zweiter Objektpunkt" +msgstr "Zweiter Punkt" #: flatcamTools/ToolFiducials.py:191 msgid "" @@ -14385,40 +14106,33 @@ msgid "" "box.\n" " - 'Manual' - manual placement of fiducials." msgstr "" +"\"Auto\" Die Bezugspunkte werden automatisch in den Ecken des Umrisses " +"platziert.\n" +"\"Manuell\" Die Bezugspunkte werden manuell platziert." #: flatcamTools/ToolFiducials.py:258 -#, fuzzy -#| msgid "Open Gerber" msgid "Copper Gerber" -msgstr "Gerber öffnen" +msgstr "Gerber (Kupfer) öffnen" #: flatcamTools/ToolFiducials.py:267 -#, fuzzy -#| msgid "Add Circle" msgid "Add Fiducial" -msgstr "Kreis hinzufügen" +msgstr "Bezugspunkt hinzufügen" #: flatcamTools/ToolFiducials.py:269 msgid "Will add a polygon on the copper layer to serve as fiducial." -msgstr "" +msgstr "Fügt ein Polygon auf die Kupferschicht als Bezugspunkt hinzu." #: flatcamTools/ToolFiducials.py:285 -#, fuzzy -#| msgid "New Blank Gerber" msgid "Soldermask Gerber" -msgstr "Neues Gerber erstellen" +msgstr "Lötpastenmaske Gerber" #: flatcamTools/ToolFiducials.py:287 -#, fuzzy -#| msgid "No SolderPaste mask Gerber object loaded." msgid "The Soldermask Gerber object." -msgstr "Keine Lötpastenmaske Gerber-Objekt geladen." +msgstr "Lötpastenmaske Gerber-Objekt." #: flatcamTools/ToolFiducials.py:298 -#, fuzzy -#| msgid "Solder Paste Dispensing Tool" msgid "Add Soldermask Opening" -msgstr "Lotpasten-Dosierwerkzeug" +msgstr "Lotpastenmaske Öffnung hinzufügen" #: flatcamTools/ToolFiducials.py:300 msgid "" @@ -14427,28 +14141,32 @@ msgid "" "The diameter is always double of the diameter\n" "for the copper fiducial." msgstr "" +"Fügt ein Polygon zur Lötpastenschicht hinzu, \n" +"welches als Öffnungs-Bezugspunkt dient.\n" +"Der Durchmesser ist immer doppelt so groß\n" +"wie der Kupfer Bezugspunkt." #: flatcamTools/ToolFiducials.py:514 msgid "Click to add first Fiducial. Bottom Left..." -msgstr "" +msgstr "Klicken um den ersten Bezugspunkt unten links hinzuzufügen..." #: flatcamTools/ToolFiducials.py:778 msgid "Click to add the last fiducial. Top Right..." -msgstr "" +msgstr "Klicken um den letzten Bezugspunkt oben rechts hinzuzufügen..." #: flatcamTools/ToolFiducials.py:783 msgid "Click to add the second fiducial. Top Left or Bottom Right..." msgstr "" +"Klicken um den zweiten Bezugspunkt oben links oder unten rechts " +"hinzuzufügen..." #: flatcamTools/ToolFiducials.py:786 flatcamTools/ToolFiducials.py:795 msgid "Done. All fiducials have been added." -msgstr "" +msgstr "Fertig. Alle Bezugspunkte hinzugefügt." #: flatcamTools/ToolFiducials.py:872 -#, fuzzy -#| msgid "Distance Tool exit..." msgid "Fiducials Tool exit." -msgstr "Entfernungstool beenden ..." +msgstr "Bezugspunkttool beenden." #: flatcamTools/ToolFilm.py:42 msgid "Film PCB" @@ -14503,10 +14221,8 @@ msgstr "" "das gleiche Objekt, für das der Film erstellt wurde." #: flatcamTools/ToolFilm.py:273 -#, fuzzy -#| msgid "Slot Parameters" msgid "Film Parameters" -msgstr "Schlitze-Parameter" +msgstr "Film-Parameter" #: flatcamTools/ToolFilm.py:334 msgid "Punch drill holes" @@ -14566,12 +14282,6 @@ msgid "Save Film" msgstr "Film speichern" #: flatcamTools/ToolFilm.py:502 -#, fuzzy -#| msgid "" -#| "Create a Film for the selected object, within\n" -#| "the specified box. Does not create a new \n" -#| " FlatCAM object, but directly save it in SVG format\n" -#| "which can be opened with Inkscape." msgid "" "Create a Film for the selected object, within\n" "the specified box. Does not create a new \n" @@ -14580,8 +14290,8 @@ msgid "" msgstr "" "Erstellen Sie einen Film für das ausgewählte Objekt\n" "die angegebene Box Erstellt kein neues\n" -"  FlatCAM-Objekt, speichern Sie es jedoch direkt im SVG-Format\n" -"die mit Inkscape geöffnet werden kann." +"  FlatCAM-Objekt, speichern Sie es jedoch direkt im \n" +"gewähltem Format." #: flatcamTools/ToolFilm.py:652 msgid "" @@ -14604,26 +14314,20 @@ msgstr "" "Sie es erneut." #: flatcamTools/ToolFilm.py:673 -#, fuzzy -#| msgid "No object selected." msgid "No FlatCAM object selected." -msgstr "Kein Objekt ausgewählt." +msgstr "Kein FlatCAM-Objekt ausgewählt." #: flatcamTools/ToolFilm.py:684 msgid "Generating Film ..." msgstr "Film wird erstellt ..." #: flatcamTools/ToolFilm.py:733 flatcamTools/ToolFilm.py:737 -#, fuzzy -#| msgid "Export SVG positive" msgid "Export positive film" -msgstr "SVG positiv exportieren" +msgstr "Film positiv exportieren" #: flatcamTools/ToolFilm.py:742 -#, fuzzy -#| msgid "Export SVG positive cancelled." msgid "Export positive film cancelled." -msgstr "Export des SVG-Positivs wurde abgebrochen." +msgstr "Export des Positivs wurde abgebrochen." #: flatcamTools/ToolFilm.py:770 msgid "" @@ -14657,16 +14361,12 @@ msgstr "" "Objektgeometrie mit der in der Quellobjektgeometrie übereinstimmt ..." #: flatcamTools/ToolFilm.py:879 flatcamTools/ToolFilm.py:883 -#, fuzzy -#| msgid "Export SVG negative" msgid "Export negative film" -msgstr "Exportieren Sie SVG negativ" +msgstr "Exportieren negativ Film" #: flatcamTools/ToolFilm.py:888 -#, fuzzy -#| msgid "Export SVG negative cancelled." msgid "Export negative film cancelled." -msgstr "Export des SVG-Negativs wurde abgebrochen." +msgstr "Export des Negativs wurde abgebrochen." #: flatcamTools/ToolFilm.py:944 flatcamTools/ToolFilm.py:1122 #: flatcamTools/ToolPanelize.py:421 @@ -14674,10 +14374,8 @@ msgid "No object Box. Using instead" msgstr "Keine Objektbox. Verwenden Sie stattdessen" #: flatcamTools/ToolFilm.py:1060 flatcamTools/ToolFilm.py:1235 -#, fuzzy -#| msgid "DXF file exported to" msgid "Film file exported to" -msgstr "DXF-Datei exportiert nach" +msgstr "Film-Datei exportiert nach" #: flatcamTools/ToolFilm.py:1063 flatcamTools/ToolFilm.py:1238 msgid "Generating Film ... Please wait." @@ -14945,6 +14643,9 @@ msgid "" "If the tool is V-shape type then this value is automatically\n" "calculated from the other parameters." msgstr "" +"Durchmesser des neuen Werkzeugs das in die Werkzeugtabelle\n" +"aufgenommen werden soll. Wenn das Tool V-Förmig ist, wird dieser\n" +"Wert aus den anderen Parametern berechnet." #: flatcamTools/ToolNonCopperClear.py:288 flatcamTools/ToolPaint.py:190 msgid "" @@ -14964,16 +14665,6 @@ msgstr "" "indem Sie zuerst eine oder mehrere Zeilen in der Werkzeugtabelle auswählen." #: flatcamTools/ToolNonCopperClear.py:441 -#, 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." msgid "" "- 'Itself' - the non copper clearing extent is based on the object that is " "copper cleared.\n" @@ -15004,119 +14695,119 @@ msgstr "" msgid "Generate Geometry" msgstr "Geometrie erzeugen" -#: flatcamTools/ToolNonCopperClear.py:587 flatcamTools/ToolPaint.py:498 +#: flatcamTools/ToolNonCopperClear.py:588 flatcamTools/ToolPaint.py:499 #: flatcamTools/ToolSolderPaste.py:553 msgid "New Tool" msgstr "Neues Werkzeug" -#: flatcamTools/ToolNonCopperClear.py:986 flatcamTools/ToolPaint.py:771 -#: flatcamTools/ToolSolderPaste.py:884 +#: flatcamTools/ToolNonCopperClear.py:987 flatcamTools/ToolPaint.py:772 +#: flatcamTools/ToolSolderPaste.py:887 msgid "Please enter a tool diameter to add, in Float format." msgstr "" "Bitte geben Sie einen hinzuzufügenden Werkzeugdurchmesser im Float-Format " "ein." -#: flatcamTools/ToolNonCopperClear.py:1017 flatcamTools/ToolPaint.py:796 +#: flatcamTools/ToolNonCopperClear.py:1018 flatcamTools/ToolPaint.py:797 msgid "Adding tool cancelled. Tool already in Tool Table." msgstr "" "Hinzufügen des Werkzeugs abgebrochen. Werkzeug bereits in der " "Werkzeugtabelle." -#: flatcamTools/ToolNonCopperClear.py:1022 flatcamTools/ToolPaint.py:802 +#: flatcamTools/ToolNonCopperClear.py:1023 flatcamTools/ToolPaint.py:803 msgid "New tool added to Tool Table." msgstr "Neues Werkzeug zur Werkzeugtabelle hinzugefügt." -#: flatcamTools/ToolNonCopperClear.py:1066 flatcamTools/ToolPaint.py:848 +#: flatcamTools/ToolNonCopperClear.py:1067 flatcamTools/ToolPaint.py:849 msgid "Tool from Tool Table was edited." msgstr "Werkzeug aus Werkzeugtabelle wurde bearbeitet." -#: flatcamTools/ToolNonCopperClear.py:1077 flatcamTools/ToolPaint.py:860 -#: flatcamTools/ToolSolderPaste.py:975 +#: flatcamTools/ToolNonCopperClear.py:1078 flatcamTools/ToolPaint.py:861 +#: flatcamTools/ToolSolderPaste.py:978 msgid "Edit cancelled. New diameter value is already in the Tool Table." msgstr "" "Bearbeitung abgebrochen. Neuer Durchmesserwert befindet sich bereits in der " "Werkzeugtabelle." -#: flatcamTools/ToolNonCopperClear.py:1124 flatcamTools/ToolPaint.py:958 +#: flatcamTools/ToolNonCopperClear.py:1125 flatcamTools/ToolPaint.py:959 msgid "Delete failed. Select a tool to delete." msgstr "Löschen fehlgeschlagen. Wählen Sie ein Werkzeug zum Löschen aus." -#: flatcamTools/ToolNonCopperClear.py:1129 flatcamTools/ToolPaint.py:964 +#: flatcamTools/ToolNonCopperClear.py:1130 flatcamTools/ToolPaint.py:965 msgid "Tool(s) deleted from Tool Table." msgstr "Werkzeug(e) aus der Werkzeugtabelle gelöscht." -#: flatcamTools/ToolNonCopperClear.py:1176 +#: flatcamTools/ToolNonCopperClear.py:1177 msgid "Wrong Tool Dia value format entered, use a number." msgstr "Falsches Werkzeug Dia-Wertformat eingegeben, verwenden Sie eine Zahl." -#: flatcamTools/ToolNonCopperClear.py:1185 flatcamTools/ToolPaint.py:1028 +#: flatcamTools/ToolNonCopperClear.py:1186 flatcamTools/ToolPaint.py:1029 msgid "No selected tools in Tool Table." msgstr "Keine ausgewählten Werkzeuge in der Werkzeugtabelle." -#: flatcamTools/ToolNonCopperClear.py:1260 flatcamTools/ToolPaint.py:1200 +#: flatcamTools/ToolNonCopperClear.py:1261 flatcamTools/ToolPaint.py:1201 msgid "Click the end point of the paint area." msgstr "Klicken Sie auf den Endpunkt des Malbereichs." -#: flatcamTools/ToolNonCopperClear.py:1414 -#: flatcamTools/ToolNonCopperClear.py:1416 +#: flatcamTools/ToolNonCopperClear.py:1415 +#: flatcamTools/ToolNonCopperClear.py:1417 msgid "Non-Copper clearing ..." msgstr "Nicht-Kupfer-Clearing ..." -#: flatcamTools/ToolNonCopperClear.py:1426 +#: flatcamTools/ToolNonCopperClear.py:1427 msgid "NCC Tool started. Reading parameters." msgstr "NCC Tool gestartet. Parameter lesen." -#: flatcamTools/ToolNonCopperClear.py:1489 +#: flatcamTools/ToolNonCopperClear.py:1490 msgid "NCC Tool. Preparing non-copper polygons." msgstr "NCC-Tool. Vorbereitung von kupferfreien Polygonen." -#: flatcamTools/ToolNonCopperClear.py:1585 +#: flatcamTools/ToolNonCopperClear.py:1586 msgid "" "NCC Tool. Finished non-copper polygons. Normal copper clearing task started." msgstr "" "NCC-Tool. Fertige kupferfreie Polygone. Normale Kupferentfernungsaufgabe " "gestartet." -#: flatcamTools/ToolNonCopperClear.py:1617 +#: flatcamTools/ToolNonCopperClear.py:1618 msgid "NCC Tool. Calculate 'empty' area." msgstr "NCC-Tool. Berechnen Sie die \"leere\" Fläche." -#: flatcamTools/ToolNonCopperClear.py:1630 -#: flatcamTools/ToolNonCopperClear.py:1729 -#: flatcamTools/ToolNonCopperClear.py:1741 -#: flatcamTools/ToolNonCopperClear.py:1990 -#: flatcamTools/ToolNonCopperClear.py:2086 -#: flatcamTools/ToolNonCopperClear.py:2098 +#: flatcamTools/ToolNonCopperClear.py:1631 +#: flatcamTools/ToolNonCopperClear.py:1730 +#: flatcamTools/ToolNonCopperClear.py:1742 +#: flatcamTools/ToolNonCopperClear.py:1991 +#: flatcamTools/ToolNonCopperClear.py:2087 +#: flatcamTools/ToolNonCopperClear.py:2099 msgid "Buffering finished" msgstr "Pufferung beendet" -#: flatcamTools/ToolNonCopperClear.py:1748 -#: flatcamTools/ToolNonCopperClear.py:2104 +#: flatcamTools/ToolNonCopperClear.py:1749 +#: flatcamTools/ToolNonCopperClear.py:2105 msgid "The selected object is not suitable for copper clearing." msgstr "Das ausgewählte Objekt ist nicht zum Löschen von Kupfer geeignet." -#: flatcamTools/ToolNonCopperClear.py:1753 -#: flatcamTools/ToolNonCopperClear.py:2109 +#: flatcamTools/ToolNonCopperClear.py:1754 +#: flatcamTools/ToolNonCopperClear.py:2110 msgid "Could not get the extent of the area to be non copper cleared." msgstr "" "Die Ausdehnung des nicht kupferhaltigen Bereichs konnte nicht gelöscht " "werden." -#: flatcamTools/ToolNonCopperClear.py:1760 +#: flatcamTools/ToolNonCopperClear.py:1761 msgid "NCC Tool. Finished calculation of 'empty' area." msgstr "NCC-Tool. Berechnung der 'leeren' Fläche beendet." -#: flatcamTools/ToolNonCopperClear.py:1773 -#: flatcamTools/ToolNonCopperClear.py:2134 +#: flatcamTools/ToolNonCopperClear.py:1774 +#: flatcamTools/ToolNonCopperClear.py:2135 msgid "NCC Tool clearing with tool diameter = " msgstr "NCC Werkzeugreinigung mit Werkzeugdurchmesser = " -#: flatcamTools/ToolNonCopperClear.py:1776 -#: flatcamTools/ToolNonCopperClear.py:2137 +#: flatcamTools/ToolNonCopperClear.py:1777 +#: flatcamTools/ToolNonCopperClear.py:2138 msgid "started." msgstr "gestartet." -#: flatcamTools/ToolNonCopperClear.py:1919 +#: flatcamTools/ToolNonCopperClear.py:1920 msgid "" "There is no NCC Geometry in the file.\n" "Usually it means that the tool diameter is too big for the painted " @@ -15128,26 +14819,26 @@ msgstr "" "Geometrie zu groß ist.\n" "Ändern Sie die Malparameter und versuchen Sie es erneut." -#: flatcamTools/ToolNonCopperClear.py:1939 +#: flatcamTools/ToolNonCopperClear.py:1940 msgid "NCC Tool clear all done." msgstr "NCC Tool löschen alles erledigt." -#: flatcamTools/ToolNonCopperClear.py:1941 +#: flatcamTools/ToolNonCopperClear.py:1942 msgid "NCC Tool clear all done but the copper features isolation is broken for" msgstr "" "Das NCC-Tool löscht alles, aber die Isolierung der Kupfermerkmale ist " "unterbrochen" -#: flatcamTools/ToolNonCopperClear.py:1944 -#: flatcamTools/ToolNonCopperClear.py:2310 +#: flatcamTools/ToolNonCopperClear.py:1945 +#: flatcamTools/ToolNonCopperClear.py:2311 msgid "tools" msgstr "Werkzeuge" -#: flatcamTools/ToolNonCopperClear.py:2306 +#: flatcamTools/ToolNonCopperClear.py:2307 msgid "NCC Tool Rest Machining clear all done." msgstr "Die Bearbeitung der NCC-Werkzeugablagen ist abgeschlossen." -#: flatcamTools/ToolNonCopperClear.py:2309 +#: flatcamTools/ToolNonCopperClear.py:2310 msgid "" "NCC Tool Rest Machining clear all done but the copper features isolation is " "broken for" @@ -15155,7 +14846,7 @@ msgstr "" "Die Bearbeitung der NCC-Werkzeugablagen ist abgeschlossen, die Isolierung " "der Kupferelemente ist jedoch unterbrochen" -#: flatcamTools/ToolNonCopperClear.py:2756 +#: flatcamTools/ToolNonCopperClear.py:2757 msgid "" "Try to use the Buffering Type = Full in Preferences -> Gerber General. " "Reload the Gerber file after this change." @@ -15424,10 +15115,8 @@ msgstr "" "Wenn nicht aktiviert, verwenden Sie den Standardalgorithmus." #: flatcamTools/ToolPaint.py:313 -#, fuzzy -#| msgid "Polygon Intersection" msgid "Polygon Selection" -msgstr "Polygonschnitt" +msgstr "Polygon auswahl" #: flatcamTools/ToolPaint.py:315 msgid "All Polygons" @@ -15463,80 +15152,72 @@ msgstr "" "- 'Referenzobjekt' - löscht nicht kupferne Objekte innerhalb des Bereichs\n" "von einem anderen Objekt angegeben." -#: flatcamTools/ToolPaint.py:978 +#: flatcamTools/ToolPaint.py:979 msgid "Paint Tool. Reading parameters." msgstr "Malwerkzeug. Parameter lesen." -#: flatcamTools/ToolPaint.py:993 +#: flatcamTools/ToolPaint.py:994 #, python-format msgid "Could not retrieve object: %s" msgstr "Objekt konnte nicht abgerufen werden: %s" -#: flatcamTools/ToolPaint.py:1007 +#: flatcamTools/ToolPaint.py:1008 msgid "Can't do Paint on MultiGeo geometries" msgstr "Auf MultiGeo-Geometrien kann nicht gemalt werden" -#: flatcamTools/ToolPaint.py:1040 -#, fuzzy -#| msgid "Click on target point." +#: flatcamTools/ToolPaint.py:1041 msgid "Click on a polygon to paint it." -msgstr "Klicken Sie auf den Zielpunkt." +msgstr "Klicken Sie auf ein Polygon um es auszufüllen." -#: flatcamTools/ToolPaint.py:1059 +#: flatcamTools/ToolPaint.py:1060 msgid "Click the start point of the paint area." msgstr "Klicken Sie auf den Startpunkt des Malbereichs." -#: flatcamTools/ToolPaint.py:1127 -#, fuzzy -#| msgid "" -#| "Zone added. Click to start adding next zone or right click to finish." +#: flatcamTools/ToolPaint.py:1128 msgid "Click to add next polygon or right click to start painting." msgstr "" -"Zone hinzugefügt. Klicken Sie, um die nächste Zone hinzuzufügen, oder " -"klicken Sie mit der rechten Maustaste, um den Vorgang abzuschließen." +"Klicken Sie, um die nächste Zone hinzuzufügen, oder klicken Sie mit der " +"rechten Maustaste um mit dem Ausfüllen zu beginnen." -#: flatcamTools/ToolPaint.py:1140 -#, fuzzy -#| msgid "" -#| "Zone added. Click to start adding next zone or right click to finish." +#: flatcamTools/ToolPaint.py:1141 msgid "Click to add/remove next polygon or right click to start painting." msgstr "" -"Zone hinzugefügt. Klicken Sie, um die nächste Zone hinzuzufügen, oder " -"klicken Sie mit der rechten Maustaste, um den Vorgang abzuschließen." +"Klicken Sie, um die nächste Zone hinzuzufügen oder zu löschen, oder klicken " +"Sie mit der rechten Maustaste, um den Vorgang abzuschließen." -#: 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 +#: flatcamTools/ToolPaint.py:1349 flatcamTools/ToolPaint.py:1352 +#: flatcamTools/ToolPaint.py:1354 flatcamTools/ToolPaint.py:1886 +#: flatcamTools/ToolPaint.py:1890 flatcamTools/ToolPaint.py:1893 +#: flatcamTools/ToolPaint.py:2175 flatcamTools/ToolPaint.py:2180 +#: flatcamTools/ToolPaint.py:2183 flatcamTools/ToolPaint.py:2357 +#: flatcamTools/ToolPaint.py:2364 msgid "Paint Tool." msgstr "Malwerkzeug." -#: flatcamTools/ToolPaint.py:1348 flatcamTools/ToolPaint.py:1351 -#: flatcamTools/ToolPaint.py:1353 +#: flatcamTools/ToolPaint.py:1349 flatcamTools/ToolPaint.py:1352 +#: flatcamTools/ToolPaint.py:1354 msgid "Normal painting polygon task started." msgstr "Normale Zeichenpolygonaufgabe gestartet." -#: flatcamTools/ToolPaint.py:1349 flatcamTools/ToolPaint.py:1711 -#: flatcamTools/ToolPaint.py:1886 flatcamTools/ToolPaint.py:2176 -#: flatcamTools/ToolPaint.py:2358 +#: flatcamTools/ToolPaint.py:1350 flatcamTools/ToolPaint.py:1712 +#: flatcamTools/ToolPaint.py:1887 flatcamTools/ToolPaint.py:2177 +#: flatcamTools/ToolPaint.py:2359 msgid "Buffering geometry..." msgstr "Geometrie puffern..." -#: flatcamTools/ToolPaint.py:1371 +#: flatcamTools/ToolPaint.py:1372 msgid "No polygon found." msgstr "Kein Polygon gefunden." -#: flatcamTools/ToolPaint.py:1405 +#: flatcamTools/ToolPaint.py:1406 msgid "Painting polygon..." msgstr "Polygon malen ..." -#: flatcamTools/ToolPaint.py:1453 +#: flatcamTools/ToolPaint.py:1454 msgid "Geometry could not be painted completely" msgstr "Geometrie konnte nicht vollständig gemalt werden" -#: flatcamTools/ToolPaint.py:1486 +#: flatcamTools/ToolPaint.py:1487 msgid "" "Could not do Paint. Try a different combination of parameters. Or a " "different strategy of paint" @@ -15544,9 +15225,9 @@ msgstr "" "Konnte nicht malen. Probieren Sie eine andere Kombination von Parametern " "aus. Oder eine andere Strategie der Farbe" -#: flatcamTools/ToolPaint.py:1538 flatcamTools/ToolPaint.py:1865 -#: flatcamTools/ToolPaint.py:2015 flatcamTools/ToolPaint.py:2336 -#: flatcamTools/ToolPaint.py:2490 +#: flatcamTools/ToolPaint.py:1539 flatcamTools/ToolPaint.py:1866 +#: flatcamTools/ToolPaint.py:2016 flatcamTools/ToolPaint.py:2337 +#: flatcamTools/ToolPaint.py:2491 msgid "" "There is no Painting Geometry in the file.\n" "Usually it means that the tool diameter is too big for the painted " @@ -15558,36 +15239,36 @@ msgstr "" "Geometrie zu groß ist.\n" "Ändern Sie die Malparameter und versuchen Sie es erneut." -#: flatcamTools/ToolPaint.py:1544 +#: flatcamTools/ToolPaint.py:1545 msgid "Paint Single Done." msgstr "Malen Sie Single Done." -#: flatcamTools/ToolPaint.py:1576 flatcamTools/ToolPaint.py:2043 -#: flatcamTools/ToolPaint.py:2518 +#: flatcamTools/ToolPaint.py:1577 flatcamTools/ToolPaint.py:2044 +#: flatcamTools/ToolPaint.py:2519 msgid "Polygon Paint started ..." msgstr "Polygonfarbe gestartet ..." -#: flatcamTools/ToolPaint.py:1628 flatcamTools/ToolPaint.py:2105 +#: flatcamTools/ToolPaint.py:1629 flatcamTools/ToolPaint.py:2106 msgid "Painting polygons..." msgstr "Polygone malen ..." -#: flatcamTools/ToolPaint.py:1710 flatcamTools/ToolPaint.py:1713 -#: flatcamTools/ToolPaint.py:1715 +#: flatcamTools/ToolPaint.py:1711 flatcamTools/ToolPaint.py:1714 +#: flatcamTools/ToolPaint.py:1716 msgid "Paint Tool. Normal painting all task started." msgstr "Malwerkzeug. Normales Malen alle Aufgabe gestartet." -#: flatcamTools/ToolPaint.py:1749 flatcamTools/ToolPaint.py:1921 -#: flatcamTools/ToolPaint.py:2223 flatcamTools/ToolPaint.py:2399 +#: flatcamTools/ToolPaint.py:1750 flatcamTools/ToolPaint.py:1922 +#: flatcamTools/ToolPaint.py:2224 flatcamTools/ToolPaint.py:2400 msgid "Painting with tool diameter = " msgstr "Lackieren mit Werkzeugdurchmesser = " -#: flatcamTools/ToolPaint.py:1752 flatcamTools/ToolPaint.py:1924 -#: flatcamTools/ToolPaint.py:2226 flatcamTools/ToolPaint.py:2402 +#: flatcamTools/ToolPaint.py:1753 flatcamTools/ToolPaint.py:1925 +#: flatcamTools/ToolPaint.py:2227 flatcamTools/ToolPaint.py:2403 msgid "started" msgstr "gestartet" -#: flatcamTools/ToolPaint.py:1814 flatcamTools/ToolPaint.py:1970 -#: flatcamTools/ToolPaint.py:2286 flatcamTools/ToolPaint.py:2446 +#: flatcamTools/ToolPaint.py:1815 flatcamTools/ToolPaint.py:1971 +#: flatcamTools/ToolPaint.py:2287 flatcamTools/ToolPaint.py:2447 msgid "" "Could not do Paint All. Try a different combination of parameters. Or a " "different Method of paint" @@ -15595,33 +15276,33 @@ msgstr "" "Paint All konnte nicht ausgeführt werden. Probieren Sie eine andere " "Kombination von Parametern aus. Oder eine andere Farbmethode" -#: flatcamTools/ToolPaint.py:1874 +#: flatcamTools/ToolPaint.py:1875 msgid "Paint All Done." msgstr "Malen Sie alles fertig." -#: flatcamTools/ToolPaint.py:1885 flatcamTools/ToolPaint.py:1889 -#: flatcamTools/ToolPaint.py:1892 +#: flatcamTools/ToolPaint.py:1886 flatcamTools/ToolPaint.py:1890 +#: flatcamTools/ToolPaint.py:1893 msgid "Rest machining painting all task started." msgstr "Restbearbeitung Lackieren alle Aufgabe gestartet." -#: flatcamTools/ToolPaint.py:2024 flatcamTools/ToolPaint.py:2499 +#: flatcamTools/ToolPaint.py:2025 flatcamTools/ToolPaint.py:2500 msgid "Paint All with Rest-Machining done." msgstr "Malen Sie alles mit Restbearbeitung." -#: flatcamTools/ToolPaint.py:2175 flatcamTools/ToolPaint.py:2179 -#: flatcamTools/ToolPaint.py:2182 +#: flatcamTools/ToolPaint.py:2176 flatcamTools/ToolPaint.py:2180 +#: flatcamTools/ToolPaint.py:2183 msgid "Normal painting area task started." msgstr "Normale Malbereichsaufgabe gestartet." -#: flatcamTools/ToolPaint.py:2345 +#: flatcamTools/ToolPaint.py:2346 msgid "Paint Area Done." msgstr "Lackierbereich fertig." -#: flatcamTools/ToolPaint.py:2357 flatcamTools/ToolPaint.py:2363 +#: flatcamTools/ToolPaint.py:2358 flatcamTools/ToolPaint.py:2364 msgid "Rest machining painting area task started." msgstr "Restbearbeitung Lackierbereich Aufgabe gestartet." -#: flatcamTools/ToolPaint.py:2360 +#: flatcamTools/ToolPaint.py:2361 msgid "Paint Tool. Rest machining painting area task started." msgstr "Malwerkzeug. Restbearbeitung Lackierbereich Aufgabe gestartet." @@ -15971,7 +15652,7 @@ msgstr "Dimensionen" #: flatcamTools/ToolProperties.py:165 msgid "Others" -msgstr "" +msgstr "Andere" #: flatcamTools/ToolProperties.py:172 msgid "Geo Type" @@ -16000,28 +15681,20 @@ msgid "Metric" msgstr "Metrisch" #: flatcamTools/ToolProperties.py:401 flatcamTools/ToolProperties.py:459 -#, fuzzy -#| msgid "Workers number" msgid "Drills number" -msgstr "Thread Anzahl" +msgstr "Bohrernummer" #: flatcamTools/ToolProperties.py:402 flatcamTools/ToolProperties.py:461 -#, fuzzy -#| msgid "tool number" msgid "Slots number" -msgstr "Werkzeugnummer" +msgstr "Slotnummer" #: flatcamTools/ToolProperties.py:404 -#, fuzzy -#| msgid "tool number" msgid "Drills total number:" -msgstr "Werkzeugnummer" +msgstr "Gesamtzahl Bohrer:" #: flatcamTools/ToolProperties.py:405 -#, fuzzy -#| msgid "tool number" msgid "Slots total number:" -msgstr "Werkzeugnummer" +msgstr "Gesamtzahl der slots:" #: flatcamTools/ToolProperties.py:411 flatcamTools/ToolProperties.py:426 #: flatcamTools/ToolProperties.py:429 flatcamTools/ToolProperties.py:432 @@ -16030,52 +15703,38 @@ msgid "Present" msgstr "Vorhanden" #: flatcamTools/ToolProperties.py:427 flatcamTools/ToolProperties.py:457 -#, fuzzy -#| msgid "Buffer Solid Geometry" msgid "Solid Geometry" -msgstr "Festkörpergeometrie puffern" +msgstr "Festkörpergeometrie" #: flatcamTools/ToolProperties.py:430 -#, fuzzy -#| msgid "Add Text" msgid "GCode Text" -msgstr "Text hinzufügen" +msgstr "GCode Text" #: flatcamTools/ToolProperties.py:433 -#, fuzzy -#| msgid "New Geometry" msgid "GCode Geometry" -msgstr "Neue Geometrie" +msgstr "GCode Geometrie" #: flatcamTools/ToolProperties.py:435 -#, fuzzy -#| msgid "Tool Data" msgid "Data" -msgstr "Werkzeugdaten" +msgstr "Daten" #: flatcamTools/ToolProperties.py:468 -#, fuzzy -#| msgid "depth where to cut" msgid "Depth of Cut" -msgstr "tiefe wo zu schneiden" +msgstr "Tiefe des Schnitts" #: flatcamTools/ToolProperties.py:480 msgid "Clearance Height" -msgstr "" +msgstr "Freilaufhöhe" #: flatcamTools/ToolProperties.py:492 -#, fuzzy -#| msgid "Feedrate:" msgid "Feedrate" -msgstr "Vorschubgeschwindigkeit:" +msgstr "Vorschubgeschwindigkeit" #: flatcamTools/ToolProperties.py:512 msgid "Routing time" -msgstr "" +msgstr "Berechnungszeit" #: flatcamTools/ToolProperties.py:519 -#, fuzzy -#| msgid "Travelled dist." msgid "Travelled distance" msgstr "Zurückgelegte Strecke" @@ -16092,109 +15751,85 @@ msgid "Convex_Hull Area" msgstr "Konvexer Rumpfbereich" #: flatcamTools/ToolProperties.py:583 flatcamTools/ToolProperties.py:585 -#, fuzzy -#| msgid "Copper Growth" msgid "Copper Area" -msgstr "Kupferwachstum" +msgstr "Kupferareal" #: flatcamTools/ToolQRCode.py:79 -#, fuzzy -#| msgid "Gerber objects for which to check rules." msgid "Gerber Object to which the QRCode will be added." -msgstr "Gerber-Objekte, für die Regeln überprüft werden sollen." +msgstr "Gerber-Objekt zu dem der QRCode hinzugefügt wird." #: flatcamTools/ToolQRCode.py:92 -#, fuzzy -#| msgid "Slot Parameters" msgid "QRCode Parameters" -msgstr "Schlitze-Parameter" +msgstr "QRCode Parameter" #: flatcamTools/ToolQRCode.py:94 msgid "The parameters used to shape the QRCode." -msgstr "" +msgstr "Parameter zum Aussehen des QRCodes." #: flatcamTools/ToolQRCode.py:207 -#, fuzzy -#| msgid "Export G-Code" msgid "Export QRCode" -msgstr "G-Code exportieren" +msgstr "QRCode exportieren" #: flatcamTools/ToolQRCode.py:209 msgid "" "Show a set of controls allowing to export the QRCode\n" "to a SVG file or an PNG file." msgstr "" +"Zeigt einen Satz von Bedienelementen um den QRCode\n" +"in eine SVG oder ein PNG File zu exportieren." #: flatcamTools/ToolQRCode.py:248 msgid "Transparent back color" -msgstr "" +msgstr "Transparente Hintergrundfarbe" #: flatcamTools/ToolQRCode.py:273 -#, fuzzy -#| msgid "Export SVG" msgid "Export QRCode SVG" -msgstr "SVG exportieren" +msgstr "QRCode als SVG exportieren" #: flatcamTools/ToolQRCode.py:275 msgid "Export a SVG file with the QRCode content." -msgstr "" +msgstr "Export als SVG Code mit dem QRCode Inhalt." #: flatcamTools/ToolQRCode.py:286 -#, fuzzy -#| msgid "Export G-Code" msgid "Export QRCode PNG" -msgstr "G-Code exportieren" +msgstr "G-Code als PNG exportieren" #: flatcamTools/ToolQRCode.py:288 msgid "Export a PNG image file with the QRCode content." -msgstr "" +msgstr "Exportiert den QRCode als PNG Datei." #: flatcamTools/ToolQRCode.py:299 -#, fuzzy -#| msgid "Generate GCode" msgid "Insert QRCode" -msgstr "GCode generieren" +msgstr "QRCode einfügen" #: flatcamTools/ToolQRCode.py:301 -#, fuzzy -#| msgid "Generate the CNC Job object." msgid "Create the QRCode object." -msgstr "Generieren Sie das CNC-Job-Objekt." +msgstr "Erzeugen des QRCode Objektes." #: 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 "Abgebrochen. Es ist kein Werkzeug / Bohrer ausgewählt" +msgstr "Abgebrochen. Es befindet sich kein QRCode im Feld." #: flatcamTools/ToolQRCode.py:432 -#, fuzzy -#| msgid "Generate Geometry" msgid "Generating QRCode geometry" -msgstr "Geometrie erzeugen" +msgstr "QRCode Geometrie erzeugen" #: flatcamTools/ToolQRCode.py:472 -#, fuzzy -#| msgid "Click on the Destination point..." msgid "Click on the Destination point ..." msgstr "Klicken Sie auf den Zielpunkt ..." #: flatcamTools/ToolQRCode.py:587 msgid "QRCode Tool done." -msgstr "" +msgstr "QRCode Tool fertig." #: flatcamTools/ToolQRCode.py:780 flatcamTools/ToolQRCode.py:784 -#, fuzzy -#| msgid "Export SVG" msgid "Export PNG" -msgstr "SVG exportieren" +msgstr "PNG exportieren" #: flatcamTools/ToolQRCode.py:789 -#, fuzzy -#| msgid "Export PNG cancelled." msgid " Export PNG cancelled." -msgstr "Export PNG abgebrochen." +msgstr "Export zu PNG abgebrochen." #: flatcamTools/ToolRulesCheck.py:33 msgid "Check Rules" @@ -16617,95 +16252,93 @@ msgstr "" "Vierter Schritt (und letzter Schritt) ist die Auswahl eines CNCJobs aus\n" "eine Lotpastendispensiergeometrie und dann den GCode anzeigen / speichern." -#: flatcamTools/ToolSolderPaste.py:914 +#: flatcamTools/ToolSolderPaste.py:917 msgid "Adding Nozzle tool cancelled. Tool already in Tool Table." msgstr "" "Hinzufügen des Düsenwerkzeugs abgebrochen. Werkzeug bereits in der " "Werkzeugtabelle." -#: flatcamTools/ToolSolderPaste.py:920 +#: flatcamTools/ToolSolderPaste.py:923 msgid "New Nozzle tool added to Tool Table." msgstr "Neues Düsenwerkzeug zur Werkzeugtabelle hinzugefügt." -#: flatcamTools/ToolSolderPaste.py:963 +#: flatcamTools/ToolSolderPaste.py:966 msgid "Nozzle tool from Tool Table was edited." msgstr "Das Düsenwerkzeug aus der Werkzeugtabelle wurde bearbeitet." -#: flatcamTools/ToolSolderPaste.py:1021 +#: flatcamTools/ToolSolderPaste.py:1024 msgid "Delete failed. Select a Nozzle tool to delete." msgstr "Löschen fehlgeschlagen. Wählen Sie ein Düsenwerkzeug zum Löschen aus." -#: flatcamTools/ToolSolderPaste.py:1027 +#: flatcamTools/ToolSolderPaste.py:1030 msgid "Nozzle tool(s) deleted from Tool Table." msgstr "Düsenwerkzeug (e) aus der Werkzeugtabelle gelöscht." -#: flatcamTools/ToolSolderPaste.py:1083 +#: flatcamTools/ToolSolderPaste.py:1086 msgid "No SolderPaste mask Gerber object loaded." msgstr "Keine Lötpastenmaske Gerber-Objekt geladen." -#: flatcamTools/ToolSolderPaste.py:1101 +#: flatcamTools/ToolSolderPaste.py:1104 msgid "Creating Solder Paste dispensing geometry." msgstr "Erstellen einer Lotpastenspendergeometrie." -#: flatcamTools/ToolSolderPaste.py:1114 +#: flatcamTools/ToolSolderPaste.py:1117 msgid "No Nozzle tools in the tool table." msgstr "Nein Düsenwerkzeuge in der Werkzeugtabelle." -#: flatcamTools/ToolSolderPaste.py:1241 +#: flatcamTools/ToolSolderPaste.py:1244 msgid "Cancelled. Empty file, it has no geometry..." msgstr "Abgebrochen. Leere Datei hat keine Geometrie ..." -#: flatcamTools/ToolSolderPaste.py:1245 +#: flatcamTools/ToolSolderPaste.py:1248 msgid "Solder Paste geometry generated successfully" msgstr "Lotpastengeometrie erfolgreich generiert" -#: flatcamTools/ToolSolderPaste.py:1252 +#: flatcamTools/ToolSolderPaste.py:1255 msgid "Some or all pads have no solder due of inadequate nozzle diameters..." msgstr "" "Einige oder alle Pads haben wegen unzureichender Düsendurchmesser keine " "Lötstellen ..." -#: flatcamTools/ToolSolderPaste.py:1266 +#: flatcamTools/ToolSolderPaste.py:1269 msgid "Generating Solder Paste dispensing geometry..." msgstr "Lötpasten-Dosiergeometrie erzeugen ..." -#: flatcamTools/ToolSolderPaste.py:1286 +#: flatcamTools/ToolSolderPaste.py:1289 msgid "There is no Geometry object available." msgstr "Es ist kein Geometrieobjekt verfügbar." -#: flatcamTools/ToolSolderPaste.py:1291 +#: flatcamTools/ToolSolderPaste.py:1294 msgid "This Geometry can't be processed. NOT a solder_paste_tool geometry." msgstr "" "Diese Geometrie kann nicht verarbeitet werden. KEINE Geometrie " "\"Lötpaste_Tool\"." -#: flatcamTools/ToolSolderPaste.py:1398 +#: flatcamTools/ToolSolderPaste.py:1401 msgid "ToolSolderPaste CNCjob created" msgstr "Werkzeuglötpaste CNC-Auftrag erstellt" -#: flatcamTools/ToolSolderPaste.py:1419 -#, fuzzy -#| msgid "Code Editor" +#: flatcamTools/ToolSolderPaste.py:1422 msgid "SP GCode Editor" -msgstr "Code-Editor" +msgstr "SP GCode-Editor" -#: flatcamTools/ToolSolderPaste.py:1431 flatcamTools/ToolSolderPaste.py:1436 -#: flatcamTools/ToolSolderPaste.py:1491 +#: flatcamTools/ToolSolderPaste.py:1434 flatcamTools/ToolSolderPaste.py:1439 +#: flatcamTools/ToolSolderPaste.py:1494 msgid "" "This CNCJob object can't be processed. NOT a solder_paste_tool CNCJob object." msgstr "" "Dieses CNCJob-Objekt kann nicht verarbeitet werden. KEIN lot_paste_tool " "CNCJob Objekt." -#: flatcamTools/ToolSolderPaste.py:1461 +#: flatcamTools/ToolSolderPaste.py:1464 msgid "No Gcode in the object" msgstr "Kein Gcode im Objekt" -#: flatcamTools/ToolSolderPaste.py:1501 +#: flatcamTools/ToolSolderPaste.py:1504 msgid "Export GCode ..." msgstr "GCode exportieren ..." -#: flatcamTools/ToolSolderPaste.py:1549 +#: flatcamTools/ToolSolderPaste.py:1552 msgid "Solder paste dispenser GCode file saved to" msgstr "Lotpastenspender GCode-Datei gespeichert in" @@ -16797,34 +16430,26 @@ msgid "No Target object loaded." msgstr "Kein Zielobjekt geladen." #: flatcamTools/ToolSub.py:281 -#, fuzzy -#| msgid "Adding geometry for aperture" msgid "Loading geometry from Gerber objects." -msgstr "Geometrie für Blende hinzufügen" +msgstr "Lade Geometrien aus Gerber Objekten." #: flatcamTools/ToolSub.py:293 flatcamTools/ToolSub.py:498 msgid "No Subtractor object loaded." msgstr "Es wurde kein Subtrahiererobjekt geladen." +# Whatever a Subtractor Gerber is, could not translate #: flatcamTools/ToolSub.py:325 -#, fuzzy -#| msgid "" -#| "Gerber object from which to subtract\n" -#| "the subtractor Gerber object." msgid "Processing geometry from Subtractor Gerber object." -msgstr "" -"Gerber-Objekt, von dem subtrahiert werden soll\n" -"der Subtrahierer Gerber Objekt." +msgstr "Verarbeite Geomtrie des Subtractor Gerber Objekts." #: flatcamTools/ToolSub.py:346 msgid "Parsing geometry for aperture" msgstr "Analysegeometrie für Blende" +# whatever aperture means here.... #: flatcamTools/ToolSub.py:407 -#, fuzzy -#| msgid "Parsing geometry for aperture" msgid "Finished parsing geometry for aperture" -msgstr "Analysegeometrie für Blende" +msgstr "Einlesen der aperture Geometrie fertiggestellt" #: flatcamTools/ToolSub.py:452 flatcamTools/ToolSub.py:655 msgid "Generating new object ..." @@ -17088,18 +16713,7 @@ msgstr "" #~ msgid "{l_save}/Project_{date}" #~ msgstr "{l_save}/Projekt_{date}" -#, 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." +#, python-format #~ msgid "" #~ "How much (fraction) of the tool width to overlap each tool pass.\n" #~ "Example:\n" @@ -17112,15 +16726,13 @@ msgstr "" #~ "Higher values = slow processing and slow execution on CNC\n" #~ "due of too many paths." #~ msgstr "" -#~ "Wie viel (Bruchteil) der Werkzeugbreite überlappt jeden " -#~ "Werkzeugdurchgang.\n" +#~ "Wie viel (Prozent) der Werkzeugbreite überlappt jeden Werkzeugdurchgang.\n" #~ "Beispiel:\n" #~ "Ein Wert von 0,25 bedeutet hier 25%% vom oben gefundenen " #~ "Werkzeugdurchmesser.\n" #~ "\n" #~ "Passen Sie den Wert beginnend mit niedrigeren Werten an\n" -#~ "und erhöhen Sie es, wenn Bereiche, die gemalt werden sollen, noch sind\n" -#~ "nicht gemalt.\n" +#~ "und erhöhen Sie es, wenn nicht alle Bereiche ausgemalt sind.\n" #~ "Niedrigere Werte = schnellere Verarbeitung, schnellere Ausführung auf der " #~ "Leiterplatte.\n" #~ "Höhere Werte = langsame Bearbeitung und langsame Ausführung auf CNC\n" @@ -17129,34 +16741,56 @@ msgstr "" #~ msgid "Paint Area" #~ msgstr "Paint Bereich" -#, 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 "" #~ "Geben Sie hier alle G-Code-Befehle ein\n" -#~ "gerne am Anfang der G-Code-Datei hinzufügen." +#~ "die Sie zum Anfang der G-Code-Datei hinzufügen möchten." -#, 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 "" #~ "Geben Sie hier alle G-Code-Befehle ein\n" -#~ "gerne an die generierte Datei anhängen.\n" -#~ "I.e .: M2 (Programmende)" +#~ "die Sie an die generierte Datei anhängen möchten.\n" +#~ "z.B.: M2 (Programmende)" + +#~ msgid "" +#~ "Can be:\n" +#~ "- Portrait\n" +#~ "- Lanscape" +#~ msgstr "Kann Hoch- oder Querformat sein." + +#~ msgid "" +#~ "- 'Rectangular' - the bounding box will be of rectangular shape.\n" +#~ " - 'Minimal' - the bounding box will be the convex hull shape." +#~ msgstr "" +#~ "\"Rechteckig\": Der Umgebungsumriss wird rechteckig\n" +#~ "\"Minimal\": Der Umgebungsumriss folgt der Hüllenform konvex." + +#~ 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 "" +#~ "\"Voll\" - das Copper Thiving wird ein gefülltes Polygon\n" +#~ "\"Punktmuster\": Das Polygon wird mit einem Punktmuster gefüllt\n" +#~ "\"Quadratraster\": Das Polygon wird gerastert\n" +#~ "\"Linienraster\"Ö Das Ploygon wird schraffiert." + +#~ msgid "" +#~ "Generate GCode file to locate and align the PCB by using\n" +#~ "the four points acquired above." +#~ msgstr "" +#~ "Erzeugen Sie das GCode File um die Platine anhand der vier " +#~ "Referenzpunkte\n" +#~ "zu finden und auszurichten." -#, fuzzy -#~| msgid "SolderPaste Tool" #~ msgid "Calibrate Tool" -#~ msgstr "Lötpaste-Werkzeug" +#~ msgstr "Kalibrierungs-Werkzeug" #~ msgid "Axis Ref:" #~ msgstr "Achsenreferenz:" diff --git a/locale/en/LC_MESSAGES/strings.mo b/locale/en/LC_MESSAGES/strings.mo index f49c9618..d09c0bf1 100644 Binary files a/locale/en/LC_MESSAGES/strings.mo and b/locale/en/LC_MESSAGES/strings.mo differ diff --git a/locale/en/LC_MESSAGES/strings.po b/locale/en/LC_MESSAGES/strings.po index 7a49ff8b..ff0749e6 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-14 00:05+0200\n" -"PO-Revision-Date: 2019-12-14 00:05+0200\n" +"POT-Creation-Date: 2019-12-15 16:26+0200\n" +"PO-Revision-Date: 2019-12-15 16:26+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:999 +#: FlatCAMApp.py:1004 msgid "FlatCAM is initializing ..." msgstr "FlatCAM is initializing ..." -#: FlatCAMApp.py:1580 +#: FlatCAMApp.py:1585 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:1673 +#: FlatCAMApp.py:1678 msgid "" "FlatCAM is initializing ...\n" "Canvas initialization started." @@ -38,7 +38,7 @@ msgstr "" "FlatCAM is initializing ...\n" "Canvas initialization started." -#: FlatCAMApp.py:1691 +#: FlatCAMApp.py:1696 msgid "" "FlatCAM is initializing ...\n" "Canvas initialization started.\n" @@ -48,7 +48,7 @@ msgstr "" "Canvas initialization started.\n" "Canvas initialization finished in" -#: FlatCAMApp.py:2388 +#: FlatCAMApp.py:2395 msgid "" "Type >help< to get started\n" "\n" @@ -56,13 +56,13 @@ msgstr "" "Type >help< to get started\n" "\n" -#: FlatCAMApp.py:2643 FlatCAMApp.py:9138 +#: FlatCAMApp.py:2650 FlatCAMApp.py:9170 msgid "New Project - Not saved" msgstr "New Project - Not saved" -#: FlatCAMApp.py:2718 FlatCAMApp.py:9206 FlatCAMApp.py:9243 FlatCAMApp.py:9284 -#: FlatCAMApp.py:9355 FlatCAMApp.py:10109 FlatCAMApp.py:11123 -#: FlatCAMApp.py:11182 +#: FlatCAMApp.py:2725 FlatCAMApp.py:9238 FlatCAMApp.py:9275 FlatCAMApp.py:9316 +#: FlatCAMApp.py:9387 FlatCAMApp.py:10141 FlatCAMApp.py:11155 +#: FlatCAMApp.py:11214 msgid "" "Canvas initialization started.\n" "Canvas initialization finished in" @@ -70,46 +70,46 @@ msgstr "" "Canvas initialization started.\n" "Canvas initialization finished in" -#: FlatCAMApp.py:2720 +#: FlatCAMApp.py:2727 msgid "Executing Tcl Script ..." msgstr "Executing Tcl Script ..." -#: FlatCAMApp.py:2735 +#: FlatCAMApp.py:2742 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:2779 ObjectCollection.py:90 flatcamTools/ToolImage.py:248 +#: FlatCAMApp.py:2786 ObjectCollection.py:90 flatcamTools/ToolImage.py:248 #: flatcamTools/ToolPcbWizard.py:301 flatcamTools/ToolPcbWizard.py:324 msgid "Open cancelled." msgstr "Open cancelled." -#: FlatCAMApp.py:2795 +#: FlatCAMApp.py:2802 msgid "Open Config file failed." msgstr "Open Config file failed." -#: FlatCAMApp.py:2810 +#: FlatCAMApp.py:2817 msgid "Open Script file failed." msgstr "Open Script file failed." -#: FlatCAMApp.py:2836 +#: FlatCAMApp.py:2843 msgid "Open Excellon file failed." msgstr "Open Excellon file failed." -#: FlatCAMApp.py:2849 +#: FlatCAMApp.py:2856 msgid "Open GCode file failed." msgstr "Open GCode file failed." -#: FlatCAMApp.py:2862 +#: FlatCAMApp.py:2869 msgid "Open Gerber file failed." msgstr "Open Gerber file failed." -#: FlatCAMApp.py:3203 +#: FlatCAMApp.py:3223 msgid "Select a Geometry, Gerber or Excellon Object to edit." msgstr "Select a Geometry, Gerber or Excellon Object to edit." -#: FlatCAMApp.py:3218 +#: FlatCAMApp.py:3238 msgid "" "Simultaneous editing of tools geometry in a MultiGeo Geometry is not " "possible.\n" @@ -119,82 +119,82 @@ msgstr "" "possible.\n" "Edit only one geometry at a time." -#: FlatCAMApp.py:3273 +#: FlatCAMApp.py:3293 msgid "Editor is activated ..." msgstr "Editor is activated ..." -#: FlatCAMApp.py:3294 +#: FlatCAMApp.py:3314 msgid "Do you want to save the edited object?" msgstr "Do you want to save the edited object?" -#: FlatCAMApp.py:3295 flatcamGUI/FlatCAMGUI.py:1969 +#: FlatCAMApp.py:3315 flatcamGUI/FlatCAMGUI.py:2134 msgid "Close Editor" msgstr "Close Editor" -#: 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 +#: FlatCAMApp.py:3318 FlatCAMApp.py:5029 FlatCAMApp.py:7889 FlatCAMApp.py:7915 +#: FlatCAMApp.py:9077 FlatCAMTranslation.py:108 FlatCAMTranslation.py:193 +#: flatcamGUI/PreferencesUI.py:1035 msgid "Yes" msgstr "Yes" -#: 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 +#: FlatCAMApp.py:3319 FlatCAMApp.py:5030 FlatCAMApp.py:7890 FlatCAMApp.py:7916 +#: FlatCAMApp.py:9078 FlatCAMTranslation.py:109 FlatCAMTranslation.py:194 +#: flatcamGUI/PreferencesUI.py:1036 flatcamGUI/PreferencesUI.py:4095 +#: flatcamGUI/PreferencesUI.py:4520 flatcamTools/ToolNonCopperClear.py:189 #: flatcamTools/ToolPaint.py:161 msgid "No" msgstr "No" -#: FlatCAMApp.py:3300 FlatCAMApp.py:5003 FlatCAMApp.py:5839 FlatCAMApp.py:7157 -#: FlatCAMApp.py:9047 FlatCAMCommon.py:702 flatcamGUI/FlatCAMGUI.py:1117 +#: FlatCAMApp.py:3320 FlatCAMApp.py:5031 FlatCAMApp.py:5867 FlatCAMApp.py:7185 +#: FlatCAMApp.py:9079 FlatCAMCommon.py:702 flatcamGUI/FlatCAMGUI.py:1233 msgid "Cancel" msgstr "Cancel" -#: FlatCAMApp.py:3328 +#: FlatCAMApp.py:3348 msgid "Object empty after edit." msgstr "Object empty after edit." -#: FlatCAMApp.py:3377 FlatCAMApp.py:3397 FlatCAMApp.py:3412 +#: FlatCAMApp.py:3397 FlatCAMApp.py:3417 FlatCAMApp.py:3432 msgid "Select a Gerber, Geometry or Excellon Object to update." msgstr "Select a Gerber, Geometry or Excellon Object to update." -#: FlatCAMApp.py:3381 +#: FlatCAMApp.py:3401 msgid "is updated, returning to App..." msgstr "is updated, returning to App..." -#: FlatCAMApp.py:3776 FlatCAMApp.py:3850 FlatCAMApp.py:4863 +#: FlatCAMApp.py:3796 FlatCAMApp.py:3870 FlatCAMApp.py:4891 msgid "Could not load defaults file." msgstr "Could not load defaults file." -#: FlatCAMApp.py:3788 FlatCAMApp.py:3859 FlatCAMApp.py:4872 +#: FlatCAMApp.py:3808 FlatCAMApp.py:3879 FlatCAMApp.py:4900 msgid "Failed to parse defaults file." msgstr "Failed to parse defaults file." -#: FlatCAMApp.py:3830 FlatCAMApp.py:3834 +#: FlatCAMApp.py:3850 FlatCAMApp.py:3854 msgid "Import FlatCAM Preferences" msgstr "Import FlatCAM Preferences" -#: FlatCAMApp.py:3841 +#: FlatCAMApp.py:3861 msgid "FlatCAM preferences import cancelled." msgstr "FlatCAM preferences import cancelled." -#: FlatCAMApp.py:3864 +#: FlatCAMApp.py:3884 msgid "Imported Defaults from" msgstr "Imported Defaults from" -#: FlatCAMApp.py:3884 FlatCAMApp.py:3889 +#: FlatCAMApp.py:3904 FlatCAMApp.py:3909 msgid "Export FlatCAM Preferences" msgstr "Export FlatCAM Preferences" -#: FlatCAMApp.py:3897 +#: FlatCAMApp.py:3917 msgid "FlatCAM preferences export cancelled." msgstr "FlatCAM preferences export cancelled." -#: FlatCAMApp.py:3906 FlatCAMApp.py:10338 FlatCAMApp.py:10386 -#: FlatCAMApp.py:10509 FlatCAMApp.py:10648 FlatCAMCommon.py:378 -#: FlatCAMCommon.py:1094 FlatCAMObj.py:6721 +#: FlatCAMApp.py:3926 FlatCAMApp.py:10370 FlatCAMApp.py:10418 +#: FlatCAMApp.py:10541 FlatCAMApp.py:10680 FlatCAMCommon.py:378 +#: FlatCAMCommon.py:1094 FlatCAMObj.py:6724 #: flatcamEditors/FlatCAMTextEditor.py:228 flatcamTools/ToolFilm.py:1019 -#: flatcamTools/ToolFilm.py:1195 flatcamTools/ToolSolderPaste.py:1541 +#: flatcamTools/ToolFilm.py:1195 flatcamTools/ToolSolderPaste.py:1544 msgid "" "Permission denied, saving not possible.\n" "Most likely another app is holding the file open and not accessible." @@ -202,36 +202,36 @@ msgstr "" "Permission denied, saving not possible.\n" "Most likely another app is holding the file open and not accessible." -#: FlatCAMApp.py:3919 +#: FlatCAMApp.py:3939 msgid "Could not load preferences file." msgstr "Could not load preferences file." -#: FlatCAMApp.py:3939 FlatCAMApp.py:4919 +#: FlatCAMApp.py:3959 FlatCAMApp.py:4947 msgid "Failed to write defaults to file." msgstr "Failed to write defaults to file." -#: FlatCAMApp.py:3945 +#: FlatCAMApp.py:3965 msgid "Exported preferences to" msgstr "Exported preferences to" -#: FlatCAMApp.py:3962 +#: FlatCAMApp.py:3982 msgid "FlatCAM Preferences Folder opened." msgstr "FlatCAM Preferences Folder opened." -#: FlatCAMApp.py:4045 +#: FlatCAMApp.py:4065 msgid "Failed to open recent files file for writing." msgstr "Failed to open recent files file for writing." -#: FlatCAMApp.py:4056 +#: FlatCAMApp.py:4076 msgid "Failed to open recent projects file for writing." msgstr "Failed to open recent projects file for writing." -#: FlatCAMApp.py:4142 flatcamParsers/ParseExcellon.py:886 -#: flatcamTools/ToolSolderPaste.py:1327 +#: FlatCAMApp.py:4162 flatcamParsers/ParseExcellon.py:886 +#: flatcamTools/ToolSolderPaste.py:1330 msgid "An internal error has ocurred. See shell.\n" msgstr "An internal error has ocurred. See shell.\n" -#: FlatCAMApp.py:4143 +#: FlatCAMApp.py:4163 #, python-brace-format msgid "" "Object ({kind}) failed because: {error} \n" @@ -240,112 +240,112 @@ msgstr "" "Object ({kind}) failed because: {error} \n" "\n" -#: FlatCAMApp.py:4163 +#: FlatCAMApp.py:4183 msgid "Converting units to " msgstr "Converting units to " -#: FlatCAMApp.py:4266 +#: FlatCAMApp.py:4286 msgid "CREATE A NEW FLATCAM TCL SCRIPT" msgstr "CREATE A NEW FLATCAM TCL SCRIPT" -#: FlatCAMApp.py:4267 +#: FlatCAMApp.py:4287 msgid "TCL Tutorial is here" msgstr "TCL Tutorial is here" -#: FlatCAMApp.py:4269 +#: FlatCAMApp.py:4289 msgid "FlatCAM commands list" msgstr "FlatCAM commands list" -#: FlatCAMApp.py:4320 FlatCAMApp.py:4326 FlatCAMApp.py:4332 FlatCAMApp.py:4338 -#: FlatCAMApp.py:4344 FlatCAMApp.py:4350 +#: FlatCAMApp.py:4340 FlatCAMApp.py:4346 FlatCAMApp.py:4352 FlatCAMApp.py:4358 +#: FlatCAMApp.py:4364 FlatCAMApp.py:4370 msgid "created/selected" msgstr "created/selected" -#: FlatCAMApp.py:4365 FlatCAMApp.py:7237 FlatCAMObj.py:263 FlatCAMObj.py:294 +#: FlatCAMApp.py:4385 FlatCAMApp.py:7265 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:4426 flatcamGUI/FlatCAMGUI.py:467 +#: FlatCAMApp.py:4448 flatcamGUI/FlatCAMGUI.py:493 msgid "About FlatCAM" msgstr "About FlatCAM" -#: FlatCAMApp.py:4452 +#: FlatCAMApp.py:4474 msgid "2D Computer-Aided Printed Circuit Board Manufacturing" msgstr "2D Computer-Aided Printed Circuit Board Manufacturing" -#: FlatCAMApp.py:4453 +#: FlatCAMApp.py:4475 msgid "Development" msgstr "Development" -#: FlatCAMApp.py:4454 +#: FlatCAMApp.py:4476 msgid "DOWNLOAD" msgstr "DOWNLOAD" -#: FlatCAMApp.py:4455 +#: FlatCAMApp.py:4477 msgid "Issue tracker" msgstr "Issue tracker" -#: FlatCAMApp.py:4459 FlatCAMApp.py:4794 +#: FlatCAMApp.py:4481 FlatCAMApp.py:4822 msgid "Close" msgstr "Close" -#: FlatCAMApp.py:4474 +#: FlatCAMApp.py:4496 msgid "Licensed under the MIT license" msgstr "Licensed under the MIT license" -#: FlatCAMApp.py:4483 -msgid "" -"Permission is hereby granted, free of charge, to any person obtaining a " -"copy\n" -"of this software and associated documentation files (the \"Software\"), to " -"deal\n" -"in the Software without restriction, including without limitation the " -"rights\n" -"to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n" -"copies of the Software, and to permit persons to whom the Software is\n" -"furnished to do so, subject to the following conditions:\n" -"\n" -"The above copyright notice and this permission notice shall be included in\n" -"all copies or substantial portions of the Software.\n" -"\n" -"THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS " -"OR\n" -"IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n" -"FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n" -"AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n" -"LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING " -"FROM,\n" -"OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n" -"THE SOFTWARE." -msgstr "" -"Permission is hereby granted, free of charge, to any person obtaining a " -"copy\n" -"of this software and associated documentation files (the \"Software\"), to " -"deal\n" -"in the Software without restriction, including without limitation the " -"rights\n" -"to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n" -"copies of the Software, and to permit persons to whom the Software is\n" -"furnished to do so, subject to the following conditions:\n" -"\n" -"The above copyright notice and this permission notice shall be included in\n" -"all copies or substantial portions of the Software.\n" -"\n" -"THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS " -"OR\n" -"IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n" -"FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n" -"AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n" -"LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING " -"FROM,\n" -"OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n" -"THE SOFTWARE." - #: FlatCAMApp.py:4505 msgid "" +"Permission is hereby granted, free of charge, to any person obtaining a " +"copy\n" +"of this software and associated documentation files (the \"Software\"), to " +"deal\n" +"in the Software without restriction, including without limitation the " +"rights\n" +"to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n" +"copies of the Software, and to permit persons to whom the Software is\n" +"furnished to do so, subject to the following conditions:\n" +"\n" +"The above copyright notice and this permission notice shall be included in\n" +"all copies or substantial portions of the Software.\n" +"\n" +"THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS " +"OR\n" +"IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n" +"FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n" +"AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n" +"LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING " +"FROM,\n" +"OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n" +"THE SOFTWARE." +msgstr "" +"Permission is hereby granted, free of charge, to any person obtaining a " +"copy\n" +"of this software and associated documentation files (the \"Software\"), to " +"deal\n" +"in the Software without restriction, including without limitation the " +"rights\n" +"to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n" +"copies of the Software, and to permit persons to whom the Software is\n" +"furnished to do so, subject to the following conditions:\n" +"\n" +"The above copyright notice and this permission notice shall be included in\n" +"all copies or substantial portions of the Software.\n" +"\n" +"THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS " +"OR\n" +"IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n" +"FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n" +"AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n" +"LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING " +"FROM,\n" +"OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n" +"THE SOFTWARE." + +#: FlatCAMApp.py:4527 +msgid "" "Some of the icons used are from the following sources:
Icons by oNline Web Fonts" -#: FlatCAMApp.py:4537 +#: FlatCAMApp.py:4559 msgid "Splash" msgstr "Splash" -#: FlatCAMApp.py:4543 +#: FlatCAMApp.py:4565 msgid "Programmers" msgstr "Programmers" -#: FlatCAMApp.py:4549 +#: FlatCAMApp.py:4571 msgid "Translators" msgstr "Translators" -#: FlatCAMApp.py:4555 +#: FlatCAMApp.py:4577 msgid "License" msgstr "License" -#: FlatCAMApp.py:4561 +#: FlatCAMApp.py:4583 msgid "Attributions" msgstr "Attributions" -#: FlatCAMApp.py:4584 +#: FlatCAMApp.py:4606 msgid "Programmer" msgstr "Programmer" -#: FlatCAMApp.py:4585 +#: FlatCAMApp.py:4607 msgid "Status" msgstr "Status" -#: FlatCAMApp.py:4586 FlatCAMApp.py:4657 +#: FlatCAMApp.py:4608 FlatCAMApp.py:4686 msgid "E-mail" msgstr "E-mail" -#: FlatCAMApp.py:4594 +#: FlatCAMApp.py:4616 msgid "BETA Maintainer >= 2019" msgstr "BETA Maintainer >= 2019" -#: FlatCAMApp.py:4654 +#: FlatCAMApp.py:4683 msgid "Language" msgstr "Language" -#: FlatCAMApp.py:4655 +#: FlatCAMApp.py:4684 msgid "Translator" msgstr "Translator" -#: FlatCAMApp.py:4656 +#: FlatCAMApp.py:4685 msgid "Corrections" msgstr "Corrections" -#: FlatCAMApp.py:4765 FlatCAMApp.py:4773 FlatCAMApp.py:7906 -#: flatcamGUI/FlatCAMGUI.py:451 +#: FlatCAMApp.py:4794 FlatCAMApp.py:4802 FlatCAMApp.py:7934 +#: flatcamGUI/FlatCAMGUI.py:475 msgid "Bookmarks Manager" msgstr "Bookmarks Manager" -#: FlatCAMApp.py:4785 +#: FlatCAMApp.py:4813 msgid "" "This entry will resolve to another website if:\n" "\n" @@ -433,35 +433,35 @@ msgstr "" "If you can't get any informations about FlatCAM beta\n" "use the YouTube channel link from the Help menu." -#: FlatCAMApp.py:4792 +#: FlatCAMApp.py:4820 msgid "Alternative website" msgstr "Alternative website" -#: FlatCAMApp.py:4923 FlatCAMApp.py:7870 +#: FlatCAMApp.py:4951 FlatCAMApp.py:7898 msgid "Preferences saved." msgstr "Preferences saved." -#: FlatCAMApp.py:4951 +#: FlatCAMApp.py:4979 msgid "Could not load factory defaults file." msgstr "Could not load factory defaults file." -#: FlatCAMApp.py:4961 +#: FlatCAMApp.py:4989 msgid "Failed to parse factory defaults file." msgstr "Failed to parse factory defaults file." -#: FlatCAMApp.py:4977 +#: FlatCAMApp.py:5005 msgid "Failed to write factory defaults to file." msgstr "Failed to write factory defaults to file." -#: FlatCAMApp.py:4981 +#: FlatCAMApp.py:5009 msgid "Factory defaults saved." msgstr "Factory defaults saved." -#: FlatCAMApp.py:4991 flatcamGUI/FlatCAMGUI.py:3691 +#: FlatCAMApp.py:5019 flatcamGUI/FlatCAMGUI.py:3926 msgid "Application is saving the project. Please wait ..." msgstr "Application is saving the project. Please wait ..." -#: FlatCAMApp.py:4996 FlatCAMTranslation.py:166 +#: FlatCAMApp.py:5024 FlatCAMTranslation.py:188 msgid "" "There are files/objects modified in FlatCAM. \n" "Do you want to Save the project?" @@ -469,27 +469,27 @@ msgstr "" "There are files/objects modified in FlatCAM. \n" "Do you want to Save the project?" -#: FlatCAMApp.py:4999 FlatCAMApp.py:9043 FlatCAMTranslation.py:169 +#: FlatCAMApp.py:5027 FlatCAMApp.py:9075 FlatCAMTranslation.py:191 msgid "Save changes" msgstr "Save changes" -#: FlatCAMApp.py:5240 +#: FlatCAMApp.py:5268 msgid "Selected Excellon file extensions registered with FlatCAM." msgstr "Selected Excellon file extensions registered with FlatCAM." -#: FlatCAMApp.py:5262 +#: FlatCAMApp.py:5290 msgid "Selected GCode file extensions registered with FlatCAM." msgstr "Selected GCode file extensions registered with FlatCAM." -#: FlatCAMApp.py:5284 +#: FlatCAMApp.py:5312 msgid "Selected Gerber file extensions registered with FlatCAM." msgstr "Selected Gerber file extensions registered with FlatCAM." -#: FlatCAMApp.py:5472 FlatCAMApp.py:5529 FlatCAMApp.py:5557 +#: FlatCAMApp.py:5500 FlatCAMApp.py:5557 FlatCAMApp.py:5585 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:5481 +#: FlatCAMApp.py:5509 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 " @@ -505,51 +505,51 @@ msgstr "" "be lost and the result may not be what was expected. \n" "Check the generated GCODE." -#: FlatCAMApp.py:5493 +#: FlatCAMApp.py:5521 msgid "Multigeo. Geometry merging finished" msgstr "Multigeo. Geometry merging finished" -#: FlatCAMApp.py:5502 +#: FlatCAMApp.py:5530 msgid "Geometry merging finished" msgstr "Geometry merging finished" -#: FlatCAMApp.py:5524 +#: FlatCAMApp.py:5552 msgid "Failed. Excellon joining works only on Excellon objects." msgstr "Failed. Excellon joining works only on Excellon objects." -#: FlatCAMApp.py:5534 +#: FlatCAMApp.py:5562 msgid "Excellon merging finished" msgstr "Excellon merging finished" -#: FlatCAMApp.py:5552 +#: FlatCAMApp.py:5580 msgid "Failed. Gerber joining works only on Gerber objects." msgstr "Failed. Gerber joining works only on Gerber objects." -#: FlatCAMApp.py:5562 +#: FlatCAMApp.py:5590 msgid "Gerber merging finished" msgstr "Gerber merging finished" -#: FlatCAMApp.py:5582 FlatCAMApp.py:5617 +#: FlatCAMApp.py:5610 FlatCAMApp.py:5645 msgid "Failed. Select a Geometry Object and try again." msgstr "Failed. Select a Geometry Object and try again." -#: FlatCAMApp.py:5586 FlatCAMApp.py:5622 +#: FlatCAMApp.py:5614 FlatCAMApp.py:5650 msgid "Expected a FlatCAMGeometry, got" msgstr "Expected a FlatCAMGeometry, got" -#: FlatCAMApp.py:5599 +#: FlatCAMApp.py:5627 msgid "A Geometry object was converted to MultiGeo type." msgstr "A Geometry object was converted to MultiGeo type." -#: FlatCAMApp.py:5637 +#: FlatCAMApp.py:5665 msgid "A Geometry object was converted to SingleGeo type." msgstr "A Geometry object was converted to SingleGeo type." -#: FlatCAMApp.py:5833 +#: FlatCAMApp.py:5861 msgid "Toggle Units" msgstr "Toggle Units" -#: FlatCAMApp.py:5835 +#: FlatCAMApp.py:5863 msgid "" "Changing the units of the project\n" "will scale all objects.\n" @@ -561,48 +561,48 @@ msgstr "" "\n" "Do you want to continue?" -#: FlatCAMApp.py:5838 FlatCAMApp.py:7080 FlatCAMApp.py:7156 FlatCAMApp.py:9408 -#: FlatCAMApp.py:9422 FlatCAMApp.py:9776 FlatCAMApp.py:9787 +#: FlatCAMApp.py:5866 FlatCAMApp.py:7108 FlatCAMApp.py:7184 FlatCAMApp.py:9440 +#: FlatCAMApp.py:9454 FlatCAMApp.py:9808 FlatCAMApp.py:9819 msgid "Ok" msgstr "Ok" -#: FlatCAMApp.py:5887 +#: FlatCAMApp.py:5915 msgid "Converted units to" msgstr "Converted units to" -#: FlatCAMApp.py:5901 +#: FlatCAMApp.py:5929 msgid "Units conversion cancelled." msgstr "Units conversion cancelled." -#: FlatCAMApp.py:6774 +#: FlatCAMApp.py:6802 msgid "Detachable Tabs" msgstr "Detachable Tabs" -#: FlatCAMApp.py:6993 FlatCAMApp.py:7040 FlatCAMApp.py:7696 FlatCAMApp.py:7759 -#: FlatCAMApp.py:7825 +#: FlatCAMApp.py:7021 FlatCAMApp.py:7068 FlatCAMApp.py:7724 FlatCAMApp.py:7787 +#: FlatCAMApp.py:7853 msgid "Preferences" msgstr "Preferences" -#: FlatCAMApp.py:6996 +#: FlatCAMApp.py:7024 msgid "Preferences applied." msgstr "Preferences applied." -#: FlatCAMApp.py:7045 +#: FlatCAMApp.py:7073 msgid "Preferences closed without saving." msgstr "Preferences closed without saving." -#: FlatCAMApp.py:7068 flatcamTools/ToolNonCopperClear.py:596 -#: flatcamTools/ToolNonCopperClear.py:992 flatcamTools/ToolPaint.py:507 -#: flatcamTools/ToolSolderPaste.py:562 flatcamTools/ToolSolderPaste.py:889 +#: FlatCAMApp.py:7096 flatcamTools/ToolNonCopperClear.py:597 +#: flatcamTools/ToolNonCopperClear.py:993 flatcamTools/ToolPaint.py:508 +#: flatcamTools/ToolSolderPaste.py:562 flatcamTools/ToolSolderPaste.py:892 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:7073 flatcamTools/ToolNonCopperClear.py:600 -#: flatcamTools/ToolPaint.py:511 flatcamTools/ToolSolderPaste.py:566 +#: FlatCAMApp.py:7101 flatcamTools/ToolNonCopperClear.py:601 +#: flatcamTools/ToolPaint.py:512 flatcamTools/ToolSolderPaste.py:566 msgid "Adding Tool cancelled" msgstr "Adding Tool cancelled" -#: FlatCAMApp.py:7076 +#: FlatCAMApp.py:7104 msgid "" "Adding Tool works only when Advanced is checked.\n" "Go to Preferences -> General - Show Advanced Options." @@ -610,11 +610,11 @@ msgstr "" "Adding Tool works only when Advanced is checked.\n" "Go to Preferences -> General - Show Advanced Options." -#: FlatCAMApp.py:7151 +#: FlatCAMApp.py:7179 msgid "Delete objects" msgstr "Delete objects" -#: FlatCAMApp.py:7154 +#: FlatCAMApp.py:7182 msgid "" "Are you sure you want to permanently delete\n" "the selected objects?" @@ -622,51 +622,51 @@ msgstr "" "Are you sure you want to permanently delete\n" "the selected objects?" -#: FlatCAMApp.py:7185 +#: FlatCAMApp.py:7213 msgid "Object(s) deleted" msgstr "Object(s) deleted" -#: FlatCAMApp.py:7189 +#: FlatCAMApp.py:7217 msgid "Failed. No object(s) selected..." msgstr "Failed. No object(s) selected..." -#: FlatCAMApp.py:7191 +#: FlatCAMApp.py:7219 msgid "Save the work in Editor and try again ..." msgstr "Save the work in Editor and try again ..." -#: FlatCAMApp.py:7221 +#: FlatCAMApp.py:7249 msgid "Object deleted" msgstr "Object deleted" -#: FlatCAMApp.py:7248 +#: FlatCAMApp.py:7276 msgid "Click to set the origin ..." msgstr "Click to set the origin ..." -#: FlatCAMApp.py:7270 +#: FlatCAMApp.py:7298 msgid "Setting Origin..." msgstr "Setting Origin..." -#: FlatCAMApp.py:7282 +#: FlatCAMApp.py:7310 msgid "Origin set" msgstr "Origin set" -#: FlatCAMApp.py:7289 +#: FlatCAMApp.py:7317 msgid "Origin coordinates specified but incomplete." msgstr "Origin coordinates specified but incomplete." -#: FlatCAMApp.py:7347 +#: FlatCAMApp.py:7375 msgid "Jump to ..." msgstr "Jump to ..." -#: FlatCAMApp.py:7348 +#: FlatCAMApp.py:7376 msgid "Enter the coordinates in format X,Y:" msgstr "Enter the coordinates in format X,Y:" -#: FlatCAMApp.py:7356 +#: FlatCAMApp.py:7384 msgid "Wrong coordinates. Enter coordinates in format: X,Y" msgstr "Wrong coordinates. Enter coordinates in format: X,Y" -#: FlatCAMApp.py:7424 flatcamEditors/FlatCAMExcEditor.py:3518 +#: FlatCAMApp.py:7452 flatcamEditors/FlatCAMExcEditor.py:3518 #: flatcamEditors/FlatCAMExcEditor.py:3526 #: flatcamEditors/FlatCAMGeoEditor.py:3885 #: flatcamEditors/FlatCAMGeoEditor.py:3900 @@ -675,48 +675,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:2871 -#: flatcamGUI/FlatCAMGUI.py:2883 +#: flatcamEditors/FlatCAMGrbEditor.py:4383 flatcamGUI/FlatCAMGUI.py:3106 +#: flatcamGUI/FlatCAMGUI.py:3118 msgid "Done." msgstr "Done." -#: FlatCAMApp.py:7576 FlatCAMApp.py:7647 +#: FlatCAMApp.py:7604 FlatCAMApp.py:7675 msgid "No object is selected. Select an object and try again." msgstr "No object is selected. Select an object and try again." -#: FlatCAMApp.py:7667 +#: FlatCAMApp.py:7695 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:7673 +#: FlatCAMApp.py:7701 msgid "The current task was gracefully closed on user request..." msgstr "The current task was gracefully closed on user request..." -#: FlatCAMApp.py:7756 +#: FlatCAMApp.py:7784 msgid "Preferences edited but not saved." msgstr "Preferences edited but not saved." -#: FlatCAMApp.py:7770 FlatCAMApp.py:7782 FlatCAMApp.py:7799 FlatCAMApp.py:7816 -#: FlatCAMApp.py:7876 FlatCAMCommon.py:1161 FlatCAMCommon.py:1336 -#: FlatCAMObj.py:4213 +#: FlatCAMApp.py:7798 FlatCAMApp.py:7810 FlatCAMApp.py:7827 FlatCAMApp.py:7844 +#: FlatCAMApp.py:7904 FlatCAMCommon.py:1161 FlatCAMCommon.py:1336 +#: FlatCAMObj.py:4216 msgid "Tools Database" msgstr "Tools Database" -#: FlatCAMApp.py:7796 +#: FlatCAMApp.py:7824 msgid "Tools in Tools Database edited but not saved." msgstr "Tools in Tools Database edited but not saved." -#: FlatCAMApp.py:7820 +#: FlatCAMApp.py:7848 msgid "Tool from DB added in Tool Table." msgstr "Tool from DB added in Tool Table." -#: FlatCAMApp.py:7822 +#: FlatCAMApp.py:7850 msgid "Adding tool from DB is not allowed for this object." msgstr "Adding tool from DB is not allowed for this object." -#: FlatCAMApp.py:7856 +#: FlatCAMApp.py:7884 msgid "" "One or more values are changed.\n" "Do you want to save the Preferences?" @@ -724,11 +724,11 @@ msgstr "" "One or more values are changed.\n" "Do you want to save the Preferences?" -#: FlatCAMApp.py:7858 flatcamGUI/FlatCAMGUI.py:220 +#: FlatCAMApp.py:7886 flatcamGUI/FlatCAMGUI.py:222 msgid "Save Preferences" msgstr "Save Preferences" -#: FlatCAMApp.py:7882 +#: FlatCAMApp.py:7910 msgid "" "One or more Tools are edited.\n" "Do you want to update the Tools Database?" @@ -736,95 +736,95 @@ msgstr "" "One or more Tools are edited.\n" "Do you want to update the Tools Database?" -#: FlatCAMApp.py:7884 +#: FlatCAMApp.py:7912 msgid "Save Tools Database" msgstr "Save Tools Database" -#: FlatCAMApp.py:7903 FlatCAMApp.py:10015 FlatCAMObj.py:6456 +#: FlatCAMApp.py:7931 FlatCAMApp.py:10047 FlatCAMObj.py:6459 msgid "Code Editor" msgstr "Code Editor" -#: FlatCAMApp.py:7921 +#: FlatCAMApp.py:7949 msgid "No object selected to Flip on Y axis." msgstr "No object selected to Flip on Y axis." -#: FlatCAMApp.py:7947 +#: FlatCAMApp.py:7975 msgid "Flip on Y axis done." msgstr "Flip on Y axis done." -#: FlatCAMApp.py:7949 FlatCAMApp.py:7991 +#: FlatCAMApp.py:7977 FlatCAMApp.py:8019 #: flatcamEditors/FlatCAMGrbEditor.py:5773 msgid "Flip action was not executed." msgstr "Flip action was not executed." -#: FlatCAMApp.py:7963 +#: FlatCAMApp.py:7991 msgid "No object selected to Flip on X axis." msgstr "No object selected to Flip on X axis." -#: FlatCAMApp.py:7989 +#: FlatCAMApp.py:8017 msgid "Flip on X axis done." msgstr "Flip on X axis done." -#: FlatCAMApp.py:8005 +#: FlatCAMApp.py:8033 msgid "No object selected to Rotate." msgstr "No object selected to Rotate." -#: FlatCAMApp.py:8008 FlatCAMApp.py:8055 FlatCAMApp.py:8088 +#: FlatCAMApp.py:8036 FlatCAMApp.py:8083 FlatCAMApp.py:8116 msgid "Transform" msgstr "Transform" -#: FlatCAMApp.py:8008 FlatCAMApp.py:8055 FlatCAMApp.py:8088 +#: FlatCAMApp.py:8036 FlatCAMApp.py:8083 FlatCAMApp.py:8116 msgid "Enter the Angle value:" msgstr "Enter the Angle value:" -#: FlatCAMApp.py:8039 +#: FlatCAMApp.py:8067 msgid "Rotation done." msgstr "Rotation done." -#: FlatCAMApp.py:8041 +#: FlatCAMApp.py:8069 msgid "Rotation movement was not executed." msgstr "Rotation movement was not executed." -#: FlatCAMApp.py:8053 +#: FlatCAMApp.py:8081 msgid "No object selected to Skew/Shear on X axis." msgstr "No object selected to Skew/Shear on X axis." -#: FlatCAMApp.py:8075 +#: FlatCAMApp.py:8103 msgid "Skew on X axis done." msgstr "Skew on X axis done." -#: FlatCAMApp.py:8086 +#: FlatCAMApp.py:8114 msgid "No object selected to Skew/Shear on Y axis." msgstr "No object selected to Skew/Shear on Y axis." -#: FlatCAMApp.py:8108 +#: FlatCAMApp.py:8136 msgid "Skew on Y axis done." msgstr "Skew on Y axis done." -#: FlatCAMApp.py:8256 FlatCAMApp.py:8303 flatcamGUI/FlatCAMGUI.py:429 -#: flatcamGUI/FlatCAMGUI.py:1465 +#: FlatCAMApp.py:8284 FlatCAMApp.py:8331 flatcamGUI/FlatCAMGUI.py:451 +#: flatcamGUI/FlatCAMGUI.py:1581 msgid "Select All" msgstr "Select All" -#: FlatCAMApp.py:8260 FlatCAMApp.py:8307 flatcamGUI/FlatCAMGUI.py:432 +#: FlatCAMApp.py:8288 FlatCAMApp.py:8335 flatcamGUI/FlatCAMGUI.py:453 msgid "Deselect All" msgstr "Deselect All" -#: FlatCAMApp.py:8323 +#: FlatCAMApp.py:8351 msgid "All objects are selected." msgstr "All objects are selected." -#: FlatCAMApp.py:8333 +#: FlatCAMApp.py:8361 msgid "Objects selection is cleared." msgstr "Objects selection is cleared." -#: FlatCAMApp.py:8349 flatcamGUI/FlatCAMGUI.py:1458 +#: FlatCAMApp.py:8378 flatcamGUI/FlatCAMGUI.py:1574 msgid "Grid On/Off" msgstr "Grid On/Off" -#: FlatCAMApp.py:8362 flatcamEditors/FlatCAMGeoEditor.py:940 +#: FlatCAMApp.py:8393 flatcamEditors/FlatCAMGeoEditor.py:940 #: flatcamEditors/FlatCAMGrbEditor.py:2503 -#: flatcamEditors/FlatCAMGrbEditor.py:5346 flatcamGUI/ObjectUI.py:1265 +#: flatcamEditors/FlatCAMGrbEditor.py:5346 flatcamGUI/ObjectUI.py:1304 #: flatcamTools/ToolDblSided.py:185 flatcamTools/ToolDblSided.py:238 #: flatcamTools/ToolNonCopperClear.py:286 flatcamTools/ToolPaint.py:188 #: flatcamTools/ToolSolderPaste.py:121 flatcamTools/ToolSolderPaste.py:591 @@ -832,77 +832,76 @@ msgstr "Grid On/Off" msgid "Add" msgstr "Add" -#: FlatCAMApp.py:8363 FlatCAMObj.py:3900 +#: FlatCAMApp.py:8395 FlatCAMObj.py:3902 #: flatcamEditors/FlatCAMGrbEditor.py:2508 -#: 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 +#: flatcamEditors/FlatCAMGrbEditor.py:2656 flatcamGUI/FlatCAMGUI.py:654 +#: flatcamGUI/FlatCAMGUI.py:965 flatcamGUI/FlatCAMGUI.py:1987 +#: flatcamGUI/FlatCAMGUI.py:2130 flatcamGUI/FlatCAMGUI.py:2524 +#: flatcamGUI/ObjectUI.py:1330 flatcamTools/ToolNonCopperClear.py:298 #: flatcamTools/ToolPaint.py:200 flatcamTools/ToolSolderPaste.py:127 -#: flatcamTools/ToolSolderPaste.py:593 +#: flatcamTools/ToolSolderPaste.py:594 msgid "Delete" msgstr "Delete" -#: FlatCAMApp.py:8376 +#: FlatCAMApp.py:8408 msgid "New Grid ..." msgstr "New Grid ..." -#: FlatCAMApp.py:8377 +#: FlatCAMApp.py:8409 msgid "Enter a Grid Value:" msgstr "Enter a Grid Value:" -#: FlatCAMApp.py:8385 FlatCAMApp.py:8412 +#: FlatCAMApp.py:8417 FlatCAMApp.py:8444 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:8391 +#: FlatCAMApp.py:8423 msgid "New Grid added" msgstr "New Grid added" -#: FlatCAMApp.py:8394 +#: FlatCAMApp.py:8426 msgid "Grid already exists" msgstr "Grid already exists" -#: FlatCAMApp.py:8397 +#: FlatCAMApp.py:8429 msgid "Adding New Grid cancelled" msgstr "Adding New Grid cancelled" -#: FlatCAMApp.py:8419 +#: FlatCAMApp.py:8451 msgid " Grid Value does not exist" msgstr " Grid Value does not exist" -#: FlatCAMApp.py:8422 +#: FlatCAMApp.py:8454 msgid "Grid Value deleted" msgstr "Grid Value deleted" -#: FlatCAMApp.py:8425 +#: FlatCAMApp.py:8457 msgid "Delete Grid value cancelled" msgstr "Delete Grid value cancelled" -#: FlatCAMApp.py:8431 +#: FlatCAMApp.py:8463 msgid "Key Shortcut List" msgstr "Key Shortcut List" -#: FlatCAMApp.py:8465 +#: FlatCAMApp.py:8497 msgid " No object selected to copy it's name" msgstr " No object selected to copy it's name" -#: FlatCAMApp.py:8469 +#: FlatCAMApp.py:8501 msgid "Name copied on clipboard ..." msgstr "Name copied on clipboard ..." -#: FlatCAMApp.py:8666 flatcamEditors/FlatCAMGrbEditor.py:4300 +#: FlatCAMApp.py:8698 flatcamEditors/FlatCAMGrbEditor.py:4300 msgid "Coordinates copied to clipboard." msgstr "Coordinates copied to clipboard." -#: 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" +#: FlatCAMApp.py:8912 FlatCAMApp.py:8918 FlatCAMApp.py:8924 FlatCAMApp.py:8930 +#: ObjectCollection.py:792 ObjectCollection.py:798 ObjectCollection.py:804 +#: ObjectCollection.py:810 ObjectCollection.py:816 ObjectCollection.py:822 msgid "selected" msgstr "selected" -#: FlatCAMApp.py:9040 +#: FlatCAMApp.py:9072 msgid "" "There are files/objects opened in FlatCAM.\n" "Creating a New project will delete them.\n" @@ -912,353 +911,353 @@ msgstr "" "Creating a New project will delete them.\n" "Do you want to Save the project?" -#: FlatCAMApp.py:9062 +#: FlatCAMApp.py:9094 msgid "New Project created" msgstr "New Project created" -#: FlatCAMApp.py:9197 FlatCAMApp.py:9201 flatcamGUI/FlatCAMGUI.py:696 -#: flatcamGUI/FlatCAMGUI.py:2149 +#: FlatCAMApp.py:9229 FlatCAMApp.py:9233 flatcamGUI/FlatCAMGUI.py:741 +#: flatcamGUI/FlatCAMGUI.py:2317 msgid "Open Gerber" msgstr "Open Gerber" -#: FlatCAMApp.py:9208 +#: FlatCAMApp.py:9240 msgid "Opening Gerber file." msgstr "Opening Gerber file." -#: FlatCAMApp.py:9214 +#: FlatCAMApp.py:9246 msgid "Open Gerber cancelled." msgstr "Open Gerber cancelled." -#: FlatCAMApp.py:9235 FlatCAMApp.py:9239 flatcamGUI/FlatCAMGUI.py:697 -#: flatcamGUI/FlatCAMGUI.py:2150 +#: FlatCAMApp.py:9267 FlatCAMApp.py:9271 flatcamGUI/FlatCAMGUI.py:743 +#: flatcamGUI/FlatCAMGUI.py:2319 msgid "Open Excellon" msgstr "Open Excellon" -#: FlatCAMApp.py:9245 +#: FlatCAMApp.py:9277 msgid "Opening Excellon file." msgstr "Opening Excellon file." -#: FlatCAMApp.py:9251 +#: FlatCAMApp.py:9283 msgid " Open Excellon cancelled." msgstr " Open Excellon cancelled." -#: FlatCAMApp.py:9275 FlatCAMApp.py:9279 +#: FlatCAMApp.py:9307 FlatCAMApp.py:9311 msgid "Open G-Code" msgstr "Open G-Code" -#: FlatCAMApp.py:9286 +#: FlatCAMApp.py:9318 msgid "Opening G-Code file." msgstr "Opening G-Code file." -#: FlatCAMApp.py:9292 +#: FlatCAMApp.py:9324 msgid "Open G-Code cancelled." msgstr "Open G-Code cancelled." -#: FlatCAMApp.py:9310 FlatCAMApp.py:9313 flatcamGUI/FlatCAMGUI.py:1467 +#: FlatCAMApp.py:9342 FlatCAMApp.py:9345 flatcamGUI/FlatCAMGUI.py:1583 msgid "Open Project" msgstr "Open Project" -#: FlatCAMApp.py:9322 +#: FlatCAMApp.py:9354 msgid "Open Project cancelled." msgstr "Open Project cancelled." -#: FlatCAMApp.py:9346 FlatCAMApp.py:9350 +#: FlatCAMApp.py:9378 FlatCAMApp.py:9382 msgid "Open HPGL2" msgstr "Open HPGL2" -#: FlatCAMApp.py:9357 +#: FlatCAMApp.py:9389 msgid "Opening HPGL2 file." msgstr "Opening HPGL2 file." -#: FlatCAMApp.py:9362 +#: FlatCAMApp.py:9394 msgid "Open HPGL2 file cancelled." msgstr "Open HPGL2 file cancelled." -#: FlatCAMApp.py:9380 FlatCAMApp.py:9383 +#: FlatCAMApp.py:9412 FlatCAMApp.py:9415 msgid "Open Configuration File" msgstr "Open Configuration File" -#: FlatCAMApp.py:9388 +#: FlatCAMApp.py:9420 msgid "Open Config cancelled." msgstr "Open Config cancelled." -#: FlatCAMApp.py:9404 FlatCAMApp.py:9772 FlatCAMApp.py:10246 +#: FlatCAMApp.py:9436 FlatCAMApp.py:9804 FlatCAMApp.py:10278 msgid "No object selected." msgstr "No object selected." -#: FlatCAMApp.py:9405 FlatCAMApp.py:9773 +#: FlatCAMApp.py:9437 FlatCAMApp.py:9805 msgid "Please Select a Geometry object to export" msgstr "Please Select a Geometry object to export" -#: FlatCAMApp.py:9419 +#: FlatCAMApp.py:9451 msgid "Only Geometry, Gerber and CNCJob objects can be used." msgstr "Only Geometry, Gerber and CNCJob objects can be used." -#: FlatCAMApp.py:9432 FlatCAMApp.py:9436 flatcamTools/ToolQRCode.py:827 +#: FlatCAMApp.py:9464 FlatCAMApp.py:9468 flatcamTools/ToolQRCode.py:827 #: flatcamTools/ToolQRCode.py:831 msgid "Export SVG" msgstr "Export SVG" -#: FlatCAMApp.py:9442 flatcamTools/ToolQRCode.py:836 +#: FlatCAMApp.py:9474 flatcamTools/ToolQRCode.py:836 msgid " Export SVG cancelled." msgstr " Export SVG cancelled." -#: FlatCAMApp.py:9463 +#: FlatCAMApp.py:9495 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:9469 FlatCAMApp.py:9473 +#: FlatCAMApp.py:9501 FlatCAMApp.py:9505 msgid "Export PNG Image" msgstr "Export PNG Image" -#: FlatCAMApp.py:9478 +#: FlatCAMApp.py:9510 msgid "Export PNG cancelled." msgstr "Export PNG cancelled." -#: FlatCAMApp.py:9502 +#: FlatCAMApp.py:9534 msgid "No object selected. Please select an Gerber object to export." msgstr "No object selected. Please select an Gerber object to export." -#: FlatCAMApp.py:9508 FlatCAMApp.py:9731 +#: FlatCAMApp.py:9540 FlatCAMApp.py:9763 msgid "Failed. Only Gerber objects can be saved as Gerber files..." msgstr "Failed. Only Gerber objects can be saved as Gerber files..." -#: FlatCAMApp.py:9520 +#: FlatCAMApp.py:9552 msgid "Save Gerber source file" msgstr "Save Gerber source file" -#: FlatCAMApp.py:9526 +#: FlatCAMApp.py:9558 msgid "Save Gerber source file cancelled." msgstr "Save Gerber source file cancelled." -#: FlatCAMApp.py:9546 +#: FlatCAMApp.py:9578 msgid "No object selected. Please select an Script object to export." msgstr "No object selected. Please select an Script object to export." -#: FlatCAMApp.py:9552 +#: FlatCAMApp.py:9584 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:9564 +#: FlatCAMApp.py:9596 msgid "Save Script source file" msgstr "Save Script source file" -#: FlatCAMApp.py:9570 +#: FlatCAMApp.py:9602 msgid "Save Script source file cancelled." msgstr "Save Script source file cancelled." -#: FlatCAMApp.py:9590 +#: FlatCAMApp.py:9622 msgid "No object selected. Please select an Document object to export." msgstr "No object selected. Please select an Document object to export." -#: FlatCAMApp.py:9596 +#: FlatCAMApp.py:9628 msgid "Failed. Only Document objects can be saved as Document files..." msgstr "Failed. Only Document objects can be saved as Document files..." -#: FlatCAMApp.py:9608 +#: FlatCAMApp.py:9640 msgid "Save Document source file" msgstr "Save Document source file" -#: FlatCAMApp.py:9614 +#: FlatCAMApp.py:9646 msgid "Save Document source file cancelled." msgstr "Save Document source file cancelled." -#: FlatCAMApp.py:9634 +#: FlatCAMApp.py:9666 msgid "No object selected. Please select an Excellon object to export." msgstr "No object selected. Please select an Excellon object to export." -#: FlatCAMApp.py:9640 FlatCAMApp.py:9684 FlatCAMApp.py:10422 +#: FlatCAMApp.py:9672 FlatCAMApp.py:9716 FlatCAMApp.py:10454 msgid "Failed. Only Excellon objects can be saved as Excellon files..." msgstr "Failed. Only Excellon objects can be saved as Excellon files..." -#: FlatCAMApp.py:9648 FlatCAMApp.py:9652 +#: FlatCAMApp.py:9680 FlatCAMApp.py:9684 msgid "Save Excellon source file" msgstr "Save Excellon source file" -#: FlatCAMApp.py:9658 +#: FlatCAMApp.py:9690 msgid "Saving Excellon source file cancelled." msgstr "Saving Excellon source file cancelled." -#: FlatCAMApp.py:9678 +#: FlatCAMApp.py:9710 msgid "No object selected. Please Select an Excellon object to export." msgstr "No object selected. Please Select an Excellon object to export." -#: FlatCAMApp.py:9692 FlatCAMApp.py:9696 +#: FlatCAMApp.py:9724 FlatCAMApp.py:9728 msgid "Export Excellon" msgstr "Export Excellon" -#: FlatCAMApp.py:9702 +#: FlatCAMApp.py:9734 msgid "Export Excellon cancelled." msgstr "Export Excellon cancelled." -#: FlatCAMApp.py:9725 +#: FlatCAMApp.py:9757 msgid "No object selected. Please Select an Gerber object to export." msgstr "No object selected. Please Select an Gerber object to export." -#: FlatCAMApp.py:9739 FlatCAMApp.py:9743 +#: FlatCAMApp.py:9771 FlatCAMApp.py:9775 msgid "Export Gerber" msgstr "Export Gerber" -#: FlatCAMApp.py:9749 +#: FlatCAMApp.py:9781 msgid "Export Gerber cancelled." msgstr "Export Gerber cancelled." -#: FlatCAMApp.py:9784 +#: FlatCAMApp.py:9816 msgid "Only Geometry objects can be used." msgstr "Only Geometry objects can be used." -#: FlatCAMApp.py:9798 FlatCAMApp.py:9802 +#: FlatCAMApp.py:9830 FlatCAMApp.py:9834 msgid "Export DXF" msgstr "Export DXF" -#: FlatCAMApp.py:9809 +#: FlatCAMApp.py:9841 msgid "Export DXF cancelled." msgstr "Export DXF cancelled." -#: FlatCAMApp.py:9829 FlatCAMApp.py:9832 +#: FlatCAMApp.py:9861 FlatCAMApp.py:9864 msgid "Import SVG" msgstr "Import SVG" -#: FlatCAMApp.py:9842 +#: FlatCAMApp.py:9874 msgid "Open SVG cancelled." msgstr "Open SVG cancelled." -#: FlatCAMApp.py:9861 FlatCAMApp.py:9865 +#: FlatCAMApp.py:9893 FlatCAMApp.py:9897 msgid "Import DXF" msgstr "Import DXF" -#: FlatCAMApp.py:9875 +#: FlatCAMApp.py:9907 msgid "Open DXF cancelled." msgstr "Open DXF cancelled." -#: FlatCAMApp.py:9917 +#: FlatCAMApp.py:9949 msgid "Viewing the source code of the selected object." msgstr "Viewing the source code of the selected object." -#: FlatCAMApp.py:9918 FlatCAMObj.py:6442 FlatCAMObj.py:7043 +#: FlatCAMApp.py:9950 FlatCAMObj.py:6445 FlatCAMObj.py:7046 msgid "Loading..." msgstr "Loading..." -#: FlatCAMApp.py:9924 FlatCAMApp.py:9928 +#: FlatCAMApp.py:9956 FlatCAMApp.py:9960 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:9942 +#: FlatCAMApp.py:9974 msgid "Source Editor" msgstr "Source Editor" -#: FlatCAMApp.py:9982 FlatCAMApp.py:9989 +#: FlatCAMApp.py:10014 FlatCAMApp.py:10021 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:10001 +#: FlatCAMApp.py:10033 msgid "Failed to load the source code for the selected object" msgstr "Failed to load the source code for the selected object" -#: FlatCAMApp.py:10043 +#: FlatCAMApp.py:10075 msgid "New TCL script file created in Code Editor." msgstr "New TCL script file created in Code Editor." -#: FlatCAMApp.py:10081 FlatCAMApp.py:10083 +#: FlatCAMApp.py:10113 FlatCAMApp.py:10115 msgid "Open TCL script" msgstr "Open TCL script" -#: FlatCAMApp.py:10087 +#: FlatCAMApp.py:10119 msgid "Open TCL script cancelled." msgstr "Open TCL script cancelled." -#: FlatCAMApp.py:10111 +#: FlatCAMApp.py:10143 msgid "Executing FlatCAMScript file." msgstr "Executing FlatCAMScript file." -#: FlatCAMApp.py:10118 FlatCAMApp.py:10121 +#: FlatCAMApp.py:10150 FlatCAMApp.py:10153 msgid "Run TCL script" msgstr "Run TCL script" -#: FlatCAMApp.py:10131 +#: FlatCAMApp.py:10163 msgid "Run TCL script cancelled." msgstr "Run TCL script cancelled." -#: FlatCAMApp.py:10147 +#: FlatCAMApp.py:10179 msgid "TCL script file opened in Code Editor and executed." msgstr "TCL script file opened in Code Editor and executed." -#: FlatCAMApp.py:10198 FlatCAMApp.py:10204 +#: FlatCAMApp.py:10230 FlatCAMApp.py:10236 msgid "Save Project As ..." msgstr "Save Project As ..." -#: FlatCAMApp.py:10200 flatcamGUI/FlatCAMGUI.py:909 -#: flatcamGUI/FlatCAMGUI.py:1899 +#: FlatCAMApp.py:10232 flatcamGUI/FlatCAMGUI.py:1025 +#: flatcamGUI/FlatCAMGUI.py:2022 msgid "Project" msgstr "Project" -#: FlatCAMApp.py:10209 +#: FlatCAMApp.py:10241 msgid "Save Project cancelled." msgstr "Save Project cancelled." -#: FlatCAMApp.py:10216 +#: FlatCAMApp.py:10248 msgid "The object is used by another application." msgstr "The object is used by another application." -#: FlatCAMApp.py:10252 FlatCAMApp.py:10259 flatcamGUI/FlatCAMGUI.py:261 +#: FlatCAMApp.py:10284 FlatCAMApp.py:10291 flatcamGUI/FlatCAMGUI.py:265 msgid "Save Object as PDF ..." msgstr "Save Object as PDF ..." -#: FlatCAMApp.py:10264 +#: FlatCAMApp.py:10296 msgid "Save Object PDF cancelled." msgstr "Save Object PDF cancelled." -#: FlatCAMApp.py:10302 +#: FlatCAMApp.py:10334 msgid "Exporting SVG" msgstr "Exporting SVG" -#: FlatCAMApp.py:10346 +#: FlatCAMApp.py:10378 msgid "SVG file exported to" msgstr "SVG file exported to" -#: FlatCAMApp.py:10371 +#: FlatCAMApp.py:10403 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:10517 +#: FlatCAMApp.py:10549 msgid "Excellon file exported to" msgstr "Excellon file exported to" -#: FlatCAMApp.py:10526 +#: FlatCAMApp.py:10558 msgid "Exporting Excellon" msgstr "Exporting Excellon" -#: FlatCAMApp.py:10532 FlatCAMApp.py:10540 +#: FlatCAMApp.py:10564 FlatCAMApp.py:10572 msgid "Could not export Excellon file." msgstr "Could not export Excellon file." -#: FlatCAMApp.py:10656 +#: FlatCAMApp.py:10688 msgid "Gerber file exported to" msgstr "Gerber file exported to" -#: FlatCAMApp.py:10664 +#: FlatCAMApp.py:10696 msgid "Exporting Gerber" msgstr "Exporting Gerber" -#: FlatCAMApp.py:10670 FlatCAMApp.py:10678 +#: FlatCAMApp.py:10702 FlatCAMApp.py:10710 msgid "Could not export Gerber file." msgstr "Could not export Gerber file." -#: FlatCAMApp.py:10712 +#: FlatCAMApp.py:10744 msgid "DXF file exported to" msgstr "DXF file exported to" -#: FlatCAMApp.py:10718 +#: FlatCAMApp.py:10750 msgid "Exporting DXF" msgstr "Exporting DXF" -#: FlatCAMApp.py:10723 FlatCAMApp.py:10730 +#: FlatCAMApp.py:10755 FlatCAMApp.py:10762 msgid "Could not export DXF file." msgstr "Could not export DXF file." -#: FlatCAMApp.py:10753 FlatCAMApp.py:10796 flatcamTools/ToolImage.py:278 +#: FlatCAMApp.py:10785 FlatCAMApp.py:10828 flatcamTools/ToolImage.py:278 msgid "" "Not supported type is picked as parameter. Only Geometry and Gerber are " "supported" @@ -1266,85 +1265,85 @@ msgstr "" "Not supported type is picked as parameter. Only Geometry and Gerber are " "supported" -#: FlatCAMApp.py:10763 +#: FlatCAMApp.py:10795 msgid "Importing SVG" msgstr "Importing SVG" -#: 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 +#: FlatCAMApp.py:10806 FlatCAMApp.py:10848 FlatCAMApp.py:10907 +#: FlatCAMApp.py:10974 FlatCAMApp.py:11037 FlatCAMApp.py:11104 +#: FlatCAMApp.py:11142 flatcamTools/ToolImage.py:298 #: flatcamTools/ToolPDF.py:225 msgid "Opened" msgstr "Opened" -#: FlatCAMApp.py:10805 +#: FlatCAMApp.py:10837 msgid "Importing DXF" msgstr "Importing DXF" -#: FlatCAMApp.py:10841 FlatCAMApp.py:11031 +#: FlatCAMApp.py:10873 FlatCAMApp.py:11063 msgid "Failed to open file" msgstr "Failed to open file" -#: FlatCAMApp.py:10844 FlatCAMApp.py:11034 +#: FlatCAMApp.py:10876 FlatCAMApp.py:11066 msgid "Failed to parse file" msgstr "Failed to parse file" -#: FlatCAMApp.py:10849 FlatCAMApp.py:10910 FlatCAMApp.py:11039 -#: FlatCAMObj.py:5004 flatcamEditors/FlatCAMGrbEditor.py:4110 +#: FlatCAMApp.py:10881 FlatCAMApp.py:10942 FlatCAMApp.py:11071 +#: FlatCAMObj.py:5007 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:10856 +#: FlatCAMApp.py:10888 msgid "Object is not Gerber file or empty. Aborting object creation." msgstr "Object is not Gerber file or empty. Aborting object creation." -#: FlatCAMApp.py:10861 +#: FlatCAMApp.py:10893 msgid "Opening Gerber" msgstr "Opening Gerber" -#: FlatCAMApp.py:10868 +#: FlatCAMApp.py:10900 msgid " Open Gerber failed. Probable not a Gerber file." msgstr " Open Gerber failed. Probable not a Gerber file." -#: FlatCAMApp.py:10900 flatcamTools/ToolPcbWizard.py:427 +#: FlatCAMApp.py:10932 flatcamTools/ToolPcbWizard.py:427 msgid "This is not Excellon file." msgstr "This is not Excellon file." -#: FlatCAMApp.py:10904 +#: FlatCAMApp.py:10936 msgid "Cannot open file" msgstr "Cannot open file" -#: FlatCAMApp.py:10924 flatcamTools/ToolPDF.py:275 +#: FlatCAMApp.py:10956 flatcamTools/ToolPDF.py:275 #: flatcamTools/ToolPcbWizard.py:451 msgid "No geometry found in file" msgstr "No geometry found in file" -#: FlatCAMApp.py:10927 +#: FlatCAMApp.py:10959 msgid "Opening Excellon." msgstr "Opening Excellon." -#: FlatCAMApp.py:10934 +#: FlatCAMApp.py:10966 msgid "Open Excellon file failed. Probable not an Excellon file." msgstr "Open Excellon file failed. Probable not an Excellon file." -#: FlatCAMApp.py:10965 +#: FlatCAMApp.py:10997 msgid "Reading GCode file" msgstr "Reading GCode file" -#: FlatCAMApp.py:10972 +#: FlatCAMApp.py:11004 msgid "Failed to open" msgstr "Failed to open" -#: FlatCAMApp.py:10980 +#: FlatCAMApp.py:11012 msgid "This is not GCODE" msgstr "This is not GCODE" -#: FlatCAMApp.py:10985 +#: FlatCAMApp.py:11017 msgid "Opening G-Code." msgstr "Opening G-Code." -#: FlatCAMApp.py:10994 +#: FlatCAMApp.py:11026 msgid "" "Failed to create CNCJob Object. Probable not a GCode file. Try to load it " "from File menu.\n" @@ -1356,67 +1355,67 @@ msgstr "" " Attempting to create a FlatCAM CNCJob Object from G-Code file failed during " "processing" -#: FlatCAMApp.py:11053 +#: FlatCAMApp.py:11085 msgid "Object is not HPGL2 file or empty. Aborting object creation." msgstr "Object is not HPGL2 file or empty. Aborting object creation." -#: FlatCAMApp.py:11058 +#: FlatCAMApp.py:11090 msgid "Opening HPGL2" msgstr "Opening HPGL2" -#: FlatCAMApp.py:11065 +#: FlatCAMApp.py:11097 msgid " Open HPGL2 failed. Probable not a HPGL2 file." msgstr " Open HPGL2 failed. Probable not a HPGL2 file." -#: FlatCAMApp.py:11086 +#: FlatCAMApp.py:11118 msgid "Opening TCL Script..." msgstr "Opening TCL Script..." -#: FlatCAMApp.py:11094 +#: FlatCAMApp.py:11126 msgid "TCL script file opened in Code Editor." msgstr "TCL script file opened in Code Editor." -#: FlatCAMApp.py:11097 +#: FlatCAMApp.py:11129 msgid "Failed to open TCL Script." msgstr "Failed to open TCL Script." -#: FlatCAMApp.py:11125 +#: FlatCAMApp.py:11157 msgid "Opening FlatCAM Config file." msgstr "Opening FlatCAM Config file." -#: FlatCAMApp.py:11153 +#: FlatCAMApp.py:11185 msgid "Failed to open config file" msgstr "Failed to open config file" -#: FlatCAMApp.py:11179 +#: FlatCAMApp.py:11211 msgid "Loading Project ... Please Wait ..." msgstr "Loading Project ... Please Wait ..." -#: FlatCAMApp.py:11184 +#: FlatCAMApp.py:11216 msgid "Opening FlatCAM Project file." msgstr "Opening FlatCAM Project file." -#: FlatCAMApp.py:11194 FlatCAMApp.py:11212 +#: FlatCAMApp.py:11226 FlatCAMApp.py:11244 msgid "Failed to open project file" msgstr "Failed to open project file" -#: FlatCAMApp.py:11246 +#: FlatCAMApp.py:11278 msgid "Loading Project ... restoring" msgstr "Loading Project ... restoring" -#: FlatCAMApp.py:11255 +#: FlatCAMApp.py:11287 msgid "Project loaded from" msgstr "Project loaded from" -#: FlatCAMApp.py:11318 +#: FlatCAMApp.py:11350 msgid "Redrawing all objects" msgstr "Redrawing all objects" -#: FlatCAMApp.py:11350 +#: FlatCAMApp.py:11382 msgid "Available commands:\n" msgstr "Available commands:\n" -#: FlatCAMApp.py:11352 +#: FlatCAMApp.py:11384 msgid "" "\n" "\n" @@ -1428,51 +1427,51 @@ msgstr "" "Type help for usage.\n" " Example: help open_gerber" -#: FlatCAMApp.py:11502 +#: FlatCAMApp.py:11534 msgid "Shows list of commands." msgstr "Shows list of commands." -#: FlatCAMApp.py:11564 +#: FlatCAMApp.py:11596 msgid "Failed to load recent item list." msgstr "Failed to load recent item list." -#: FlatCAMApp.py:11572 +#: FlatCAMApp.py:11604 msgid "Failed to parse recent item list." msgstr "Failed to parse recent item list." -#: FlatCAMApp.py:11583 +#: FlatCAMApp.py:11615 msgid "Failed to load recent projects item list." msgstr "Failed to load recent projects item list." -#: FlatCAMApp.py:11591 +#: FlatCAMApp.py:11623 msgid "Failed to parse recent project item list." msgstr "Failed to parse recent project item list." -#: FlatCAMApp.py:11650 +#: FlatCAMApp.py:11683 msgid "Clear Recent projects" msgstr "Clear Recent projects" -#: FlatCAMApp.py:11673 +#: FlatCAMApp.py:11707 msgid "Clear Recent files" msgstr "Clear Recent files" -#: FlatCAMApp.py:11690 flatcamGUI/FlatCAMGUI.py:1133 +#: FlatCAMApp.py:11724 flatcamGUI/FlatCAMGUI.py:1249 msgid "Shortcut Key List" msgstr "Shortcut Key List" -#: FlatCAMApp.py:11764 +#: FlatCAMApp.py:11798 msgid "Selected Tab - Choose an Item from Project Tab" msgstr "Selected Tab - Choose an Item from Project Tab" -#: FlatCAMApp.py:11765 +#: FlatCAMApp.py:11799 msgid "Details" msgstr "Details" -#: FlatCAMApp.py:11767 +#: FlatCAMApp.py:11801 msgid "The normal flow when working in FlatCAM is the following:" msgstr "The normal flow when working in FlatCAM is the following:" -#: FlatCAMApp.py:11768 +#: FlatCAMApp.py:11802 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 " @@ -1482,7 +1481,7 @@ msgstr "" "FlatCAM using either the toolbars, key shortcuts or even dragging and " "dropping the files on the GUI." -#: FlatCAMApp.py:11771 +#: FlatCAMApp.py:11805 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 " @@ -1492,7 +1491,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:11774 +#: FlatCAMApp.py:11808 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 " @@ -1504,7 +1503,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:11778 +#: FlatCAMApp.py:11812 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 " @@ -1518,7 +1517,7 @@ msgstr "" "object on the canvas will bring the SELECTED TAB and populate it even if it " "was out of focus." -#: FlatCAMApp.py:11782 +#: FlatCAMApp.py:11816 msgid "" "You can change the parameters in this screen and the flow direction is like " "this:" @@ -1526,7 +1525,7 @@ msgstr "" "You can change the parameters in this screen and the flow direction is like " "this:" -#: FlatCAMApp.py:11783 +#: FlatCAMApp.py:11817 msgid "" "Gerber/Excellon Object --> Change Parameter --> Generate Geometry --> " "Geometry Object --> Add tools (change param in Selected Tab) --> Generate " @@ -1538,7 +1537,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:11787 +#: FlatCAMApp.py:11821 msgid "" "A list of key shortcuts is available through an menu entry in Help --> " "Shortcuts List or through its own key shortcut: F3." @@ -1546,23 +1545,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:11848 +#: FlatCAMApp.py:11882 msgid "Failed checking for latest version. Could not connect." msgstr "Failed checking for latest version. Could not connect." -#: FlatCAMApp.py:11856 +#: FlatCAMApp.py:11890 msgid "Could not parse information about latest version." msgstr "Could not parse information about latest version." -#: FlatCAMApp.py:11867 +#: FlatCAMApp.py:11901 msgid "FlatCAM is up to date!" msgstr "FlatCAM is up to date!" -#: FlatCAMApp.py:11872 +#: FlatCAMApp.py:11906 msgid "Newer Version Available" msgstr "Newer Version Available" -#: FlatCAMApp.py:11873 +#: FlatCAMApp.py:11907 msgid "" "There is a newer version of FlatCAM available for download:\n" "\n" @@ -1570,63 +1569,63 @@ msgstr "" "There is a newer version of FlatCAM available for download:\n" "\n" -#: FlatCAMApp.py:11875 +#: FlatCAMApp.py:11909 msgid "info" msgstr "info" -#: FlatCAMApp.py:11954 +#: FlatCAMApp.py:11988 msgid "All plots disabled." msgstr "All plots disabled." -#: FlatCAMApp.py:11961 +#: FlatCAMApp.py:11995 msgid "All non selected plots disabled." msgstr "All non selected plots disabled." -#: FlatCAMApp.py:11968 +#: FlatCAMApp.py:12002 msgid "All plots enabled." msgstr "All plots enabled." -#: FlatCAMApp.py:11975 +#: FlatCAMApp.py:12009 msgid "Selected plots enabled..." msgstr "Selected plots enabled..." -#: FlatCAMApp.py:11984 +#: FlatCAMApp.py:12018 msgid "Selected plots disabled..." msgstr "Selected plots disabled..." -#: FlatCAMApp.py:12003 +#: FlatCAMApp.py:12037 msgid "Enabling plots ..." msgstr "Enabling plots ..." -#: FlatCAMApp.py:12043 +#: FlatCAMApp.py:12077 msgid "Disabling plots ..." msgstr "Disabling plots ..." -#: FlatCAMApp.py:12065 +#: FlatCAMApp.py:12099 msgid "Working ..." msgstr "Working ..." -#: FlatCAMApp.py:12104 +#: FlatCAMApp.py:12138 msgid "Saving FlatCAM Project" msgstr "Saving FlatCAM Project" -#: FlatCAMApp.py:12124 FlatCAMApp.py:12162 +#: FlatCAMApp.py:12158 FlatCAMApp.py:12196 msgid "Project saved to" msgstr "Project saved to" -#: FlatCAMApp.py:12144 +#: FlatCAMApp.py:12178 msgid "Failed to verify project file" msgstr "Failed to verify project file" -#: FlatCAMApp.py:12144 FlatCAMApp.py:12153 FlatCAMApp.py:12165 +#: FlatCAMApp.py:12178 FlatCAMApp.py:12187 FlatCAMApp.py:12199 msgid "Retry to save it." msgstr "Retry to save it." -#: FlatCAMApp.py:12153 FlatCAMApp.py:12165 +#: FlatCAMApp.py:12187 FlatCAMApp.py:12199 msgid "Failed to parse saved project file" msgstr "Failed to parse saved project file" -#: FlatCAMApp.py:12281 +#: FlatCAMApp.py:12315 msgid "The user requested a graceful exit of the current task." msgstr "The user requested a graceful exit of the current task." @@ -1708,7 +1707,7 @@ msgstr "Bookmark removed." msgid "Export FlatCAM Bookmarks" msgstr "Export FlatCAM Bookmarks" -#: FlatCAMCommon.py:363 flatcamGUI/FlatCAMGUI.py:448 +#: FlatCAMCommon.py:363 flatcamGUI/FlatCAMGUI.py:472 msgid "Bookmarks" msgstr "Bookmarks" @@ -1740,13 +1739,13 @@ msgstr "FlatCAM bookmarks import cancelled." msgid "Imported Bookmarks from" msgstr "Imported Bookmarks from" -#: FlatCAMCommon.py:477 FlatCAMObj.py:3588 FlatCAMObj.py:4589 -#: FlatCAMObj.py:4590 FlatCAMObj.py:4599 +#: FlatCAMCommon.py:477 FlatCAMObj.py:3588 FlatCAMObj.py:4592 +#: FlatCAMObj.py:4593 FlatCAMObj.py:4602 msgid "Iso" msgstr "Iso" #: FlatCAMCommon.py:477 FlatCAMCommon.py:1012 FlatCAMObj.py:1351 -#: FlatCAMObj.py:3588 FlatCAMObj.py:3861 FlatCAMObj.py:4149 +#: FlatCAMObj.py:3588 FlatCAMObj.py:3861 FlatCAMObj.py:4152 msgid "Rough" msgstr "Rough" @@ -1759,12 +1758,12 @@ msgid "Tool Name" msgstr "Tool Name" #: FlatCAMCommon.py:514 flatcamEditors/FlatCAMExcEditor.py:1527 -#: flatcamGUI/ObjectUI.py:1256 flatcamTools/ToolNonCopperClear.py:271 +#: flatcamGUI/ObjectUI.py:1295 flatcamTools/ToolNonCopperClear.py:271 #: flatcamTools/ToolPaint.py:176 msgid "Tool Dia" msgstr "Tool Dia" -#: FlatCAMCommon.py:515 flatcamGUI/ObjectUI.py:1239 +#: FlatCAMCommon.py:515 flatcamGUI/ObjectUI.py:1278 msgid "Tool Offset" msgstr "Tool Offset" @@ -1772,8 +1771,8 @@ msgstr "Tool Offset" msgid "Custom Offset" msgstr "Custom Offset" -#: FlatCAMCommon.py:517 flatcamGUI/ObjectUI.py:293 -#: flatcamGUI/PreferencesUI.py:1626 flatcamGUI/PreferencesUI.py:3991 +#: FlatCAMCommon.py:517 flatcamGUI/ObjectUI.py:304 +#: flatcamGUI/PreferencesUI.py:1627 flatcamGUI/PreferencesUI.py:3992 #: flatcamTools/ToolNonCopperClear.py:213 msgid "Tool Type" msgstr "Tool Type" @@ -1782,11 +1781,11 @@ msgstr "Tool Type" msgid "Tool Shape" msgstr "Tool Shape" -#: 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 +#: FlatCAMCommon.py:519 flatcamGUI/ObjectUI.py:345 flatcamGUI/ObjectUI.py:820 +#: flatcamGUI/ObjectUI.py:1405 flatcamGUI/ObjectUI.py:1928 +#: flatcamGUI/PreferencesUI.py:1667 flatcamGUI/PreferencesUI.py:2335 +#: flatcamGUI/PreferencesUI.py:3180 flatcamGUI/PreferencesUI.py:4037 +#: flatcamGUI/PreferencesUI.py:4291 flatcamGUI/PreferencesUI.py:5115 #: flatcamTools/ToolCalculators.py:114 flatcamTools/ToolCutOut.py:132 #: flatcamTools/ToolNonCopperClear.py:254 msgid "Cut Z" @@ -1808,9 +1807,9 @@ msgstr "V-Dia" msgid "V-Angle" msgstr "V-Angle" -#: 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 +#: FlatCAMCommon.py:524 flatcamGUI/ObjectUI.py:839 flatcamGUI/ObjectUI.py:1452 +#: flatcamGUI/PreferencesUI.py:2353 flatcamGUI/PreferencesUI.py:3233 +#: flatcamGUI/PreferencesUI.py:6467 flatcamTools/ToolCalibration.py:74 msgid "Travel Z" msgstr "Travel Z" @@ -1826,12 +1825,12 @@ msgstr "FR Z" msgid "FR Rapids" msgstr "FR Rapids" -#: FlatCAMCommon.py:528 flatcamGUI/PreferencesUI.py:2427 +#: FlatCAMCommon.py:528 flatcamGUI/PreferencesUI.py:2428 msgid "Spindle Speed" msgstr "Spindle Speed" -#: FlatCAMCommon.py:529 flatcamGUI/ObjectUI.py:939 flatcamGUI/ObjectUI.py:1582 -#: flatcamGUI/PreferencesUI.py:2439 flatcamGUI/PreferencesUI.py:3353 +#: FlatCAMCommon.py:529 flatcamGUI/ObjectUI.py:963 flatcamGUI/ObjectUI.py:1621 +#: flatcamGUI/PreferencesUI.py:2440 flatcamGUI/PreferencesUI.py:3354 msgid "Dwell" msgstr "Dwell" @@ -1839,8 +1838,8 @@ msgstr "Dwell" msgid "Dwelltime" msgstr "Dwelltime" -#: FlatCAMCommon.py:531 flatcamGUI/ObjectUI.py:958 -#: flatcamGUI/PreferencesUI.py:2461 flatcamGUI/PreferencesUI.py:3375 +#: FlatCAMCommon.py:531 flatcamGUI/ObjectUI.py:982 +#: flatcamGUI/PreferencesUI.py:2462 flatcamGUI/PreferencesUI.py:3376 msgid "Preprocessor" msgstr "Preprocessor" @@ -1860,8 +1859,8 @@ msgstr "Toolchange" msgid "Toolchange XY" msgstr "Toolchange XY" -#: FlatCAMCommon.py:536 flatcamGUI/PreferencesUI.py:2378 -#: flatcamGUI/PreferencesUI.py:3264 flatcamGUI/PreferencesUI.py:6503 +#: FlatCAMCommon.py:536 flatcamGUI/PreferencesUI.py:2379 +#: flatcamGUI/PreferencesUI.py:3265 flatcamGUI/PreferencesUI.py:6504 #: flatcamTools/ToolCalibration.py:111 msgid "Toolchange Z" msgstr "Toolchange Z" @@ -2296,13 +2295,13 @@ msgstr "Scaling..." msgid "Skewing..." msgstr "Skewing..." -#: FlatCAMObj.py:723 FlatCAMObj.py:2710 FlatCAMObj.py:3904 -#: flatcamGUI/PreferencesUI.py:1123 flatcamGUI/PreferencesUI.py:2257 +#: FlatCAMObj.py:723 FlatCAMObj.py:2710 FlatCAMObj.py:3907 +#: flatcamGUI/PreferencesUI.py:1124 flatcamGUI/PreferencesUI.py:2258 msgid "Basic" msgstr "Basic" -#: FlatCAMObj.py:745 FlatCAMObj.py:2722 FlatCAMObj.py:3925 -#: flatcamGUI/PreferencesUI.py:1124 +#: FlatCAMObj.py:745 FlatCAMObj.py:2722 FlatCAMObj.py:3928 +#: flatcamGUI/PreferencesUI.py:1125 msgid "Advanced" msgstr "Advanced" @@ -2310,16 +2309,16 @@ msgstr "Advanced" msgid "Buffering solid geometry" msgstr "Buffering solid geometry" -#: FlatCAMObj.py:965 camlib.py:965 flatcamGUI/PreferencesUI.py:1700 +#: FlatCAMObj.py:965 camlib.py:965 flatcamGUI/PreferencesUI.py:1701 #: flatcamTools/ToolCopperThieving.py:1010 #: flatcamTools/ToolCopperThieving.py:1199 #: flatcamTools/ToolCopperThieving.py:1211 -#: flatcamTools/ToolNonCopperClear.py:1628 -#: flatcamTools/ToolNonCopperClear.py:1726 -#: flatcamTools/ToolNonCopperClear.py:1738 -#: flatcamTools/ToolNonCopperClear.py:1987 -#: flatcamTools/ToolNonCopperClear.py:2083 -#: flatcamTools/ToolNonCopperClear.py:2095 +#: flatcamTools/ToolNonCopperClear.py:1629 +#: flatcamTools/ToolNonCopperClear.py:1727 +#: flatcamTools/ToolNonCopperClear.py:1739 +#: flatcamTools/ToolNonCopperClear.py:1988 +#: flatcamTools/ToolNonCopperClear.py:2084 +#: flatcamTools/ToolNonCopperClear.py:2096 msgid "Buffering" msgstr "Buffering" @@ -2335,7 +2334,7 @@ msgstr "Isolating..." msgid "Click on a polygon to isolate it." msgstr "Click on a polygon to isolate it." -#: FlatCAMObj.py:1117 FlatCAMObj.py:1222 flatcamTools/ToolPaint.py:1125 +#: FlatCAMObj.py:1117 FlatCAMObj.py:1222 flatcamTools/ToolPaint.py:1126 msgid "Added polygon" msgstr "Added polygon" @@ -2343,7 +2342,7 @@ msgstr "Added polygon" 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:1131 flatcamTools/ToolPaint.py:1139 +#: FlatCAMObj.py:1131 flatcamTools/ToolPaint.py:1140 msgid "Removed polygon" msgstr "Removed polygon" @@ -2351,11 +2350,11 @@ msgstr "Removed polygon" 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:1137 flatcamTools/ToolPaint.py:1145 +#: FlatCAMObj.py:1137 flatcamTools/ToolPaint.py:1146 msgid "No polygon detected under click position." msgstr "No polygon detected under click position." -#: FlatCAMObj.py:1158 flatcamTools/ToolPaint.py:1174 +#: FlatCAMObj.py:1158 flatcamTools/ToolPaint.py:1175 msgid "List of single polygons is empty. Aborting." msgstr "List of single polygons is empty. Aborting." @@ -2364,8 +2363,8 @@ msgid "No polygon in selection." msgstr "No polygon in selection." #: FlatCAMObj.py:1301 FlatCAMObj.py:1430 -#: flatcamTools/ToolNonCopperClear.py:1657 -#: flatcamTools/ToolNonCopperClear.py:2011 +#: flatcamTools/ToolNonCopperClear.py:1658 +#: flatcamTools/ToolNonCopperClear.py:2012 msgid "Isolation geometry could not be generated." msgstr "Isolation geometry could not be generated." @@ -2397,9 +2396,9 @@ msgstr "Please select one or more tools from the list and try again." msgid "Milling tool for DRILLS is larger than hole size. Cancelled." msgstr "Milling tool for DRILLS is larger than hole size. Cancelled." -#: FlatCAMObj.py:3032 FlatCAMObj.py:4490 flatcamEditors/FlatCAMGeoEditor.py:408 -#: flatcamGUI/FlatCAMGUI.py:438 flatcamGUI/FlatCAMGUI.py:930 -#: flatcamGUI/ObjectUI.py:1314 +#: FlatCAMObj.py:3032 FlatCAMObj.py:4493 flatcamEditors/FlatCAMGeoEditor.py:408 +#: flatcamGUI/FlatCAMGUI.py:459 flatcamGUI/FlatCAMGUI.py:1046 +#: flatcamGUI/ObjectUI.py:1353 msgid "Tool" msgstr "Tool" @@ -2409,7 +2408,7 @@ msgstr "Tool_nr" #: FlatCAMObj.py:3048 FlatCAMObj.py:3141 FlatCAMObj.py:3259 #: flatcamEditors/FlatCAMExcEditor.py:1507 -#: flatcamEditors/FlatCAMExcEditor.py:2967 flatcamGUI/ObjectUI.py:753 +#: flatcamEditors/FlatCAMExcEditor.py:2967 flatcamGUI/ObjectUI.py:777 #: flatcamTools/ToolNonCopperClear.py:120 flatcamTools/ToolPaint.py:123 #: flatcamTools/ToolPcbWizard.py:76 flatcamTools/ToolProperties.py:396 #: flatcamTools/ToolProperties.py:449 flatcamTools/ToolSolderPaste.py:84 @@ -2444,7 +2443,7 @@ msgstr "" "Wrong value format for self.defaults[\"feedrate_probe\"] or self." "options[\"feedrate_probe\"]" -#: FlatCAMObj.py:3341 FlatCAMObj.py:5311 FlatCAMObj.py:5315 FlatCAMObj.py:5450 +#: FlatCAMObj.py:3341 FlatCAMObj.py:5314 FlatCAMObj.py:5318 FlatCAMObj.py:5453 msgid "Generating CNC Code" msgstr "Generating CNC Code" @@ -2452,17 +2451,17 @@ msgstr "Generating CNC Code" msgid "Add from Tool DB" msgstr "Add from Tool DB" -#: 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 +#: FlatCAMObj.py:3899 flatcamGUI/FlatCAMGUI.py:652 flatcamGUI/FlatCAMGUI.py:768 +#: flatcamGUI/FlatCAMGUI.py:963 flatcamGUI/FlatCAMGUI.py:1984 +#: flatcamGUI/FlatCAMGUI.py:2128 flatcamGUI/FlatCAMGUI.py:2343 +#: flatcamGUI/FlatCAMGUI.py:2522 flatcamGUI/ObjectUI.py:1324 #: 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:3985 FlatCAMObj.py:4354 FlatCAMObj.py:5061 FlatCAMObj.py:5701 +#: FlatCAMObj.py:3988 FlatCAMObj.py:4357 FlatCAMObj.py:5064 FlatCAMObj.py:5704 #: flatcamEditors/FlatCAMExcEditor.py:2459 #: flatcamEditors/FlatCAMGeoEditor.py:1078 #: flatcamEditors/FlatCAMGeoEditor.py:1112 @@ -2471,62 +2470,62 @@ msgstr "Copy" #: 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 +#: flatcamTools/ToolNonCopperClear.py:1058 +#: flatcamTools/ToolNonCopperClear.py:1466 flatcamTools/ToolPaint.py:841 +#: flatcamTools/ToolPaint.py:1025 flatcamTools/ToolPaint.py:2097 +#: flatcamTools/ToolSolderPaste.py:882 flatcamTools/ToolSolderPaste.py:957 msgid "Wrong value format entered, use a number." msgstr "Wrong value format entered, use a number." -#: FlatCAMObj.py:4123 +#: FlatCAMObj.py:4126 msgid "Please enter the desired tool diameter in Float format." msgstr "Please enter the desired tool diameter in Float format." -#: FlatCAMObj.py:4193 +#: FlatCAMObj.py:4196 msgid "Tool added in Tool Table." msgstr "Tool added in Tool Table." -#: FlatCAMObj.py:4197 +#: FlatCAMObj.py:4200 msgid "Default Tool added. Wrong value format entered." msgstr "Default Tool added. Wrong value format entered." -#: FlatCAMObj.py:4304 FlatCAMObj.py:4313 +#: FlatCAMObj.py:4307 FlatCAMObj.py:4316 msgid "Failed. Select a tool to copy." msgstr "Failed. Select a tool to copy." -#: FlatCAMObj.py:4340 +#: FlatCAMObj.py:4343 msgid "Tool was copied in Tool Table." msgstr "Tool was copied in Tool Table." -#: FlatCAMObj.py:4368 +#: FlatCAMObj.py:4371 msgid "Tool was edited in Tool Table." msgstr "Tool was edited in Tool Table." -#: FlatCAMObj.py:4397 FlatCAMObj.py:4406 +#: FlatCAMObj.py:4400 FlatCAMObj.py:4409 msgid "Failed. Select a tool to delete." msgstr "Failed. Select a tool to delete." -#: FlatCAMObj.py:4429 +#: FlatCAMObj.py:4432 msgid "Tool was deleted in Tool Table." msgstr "Tool was deleted in Tool Table." -#: FlatCAMObj.py:4490 flatcamGUI/ObjectUI.py:1314 +#: FlatCAMObj.py:4493 flatcamGUI/ObjectUI.py:1353 msgid "Parameters for" msgstr "Parameters for" -#: FlatCAMObj.py:4921 +#: FlatCAMObj.py:4924 msgid "This Geometry can't be processed because it is" msgstr "This Geometry can't be processed because it is" -#: FlatCAMObj.py:4923 +#: FlatCAMObj.py:4926 msgid "geometry" msgstr "geometry" -#: FlatCAMObj.py:4966 +#: FlatCAMObj.py:4969 msgid "Failed. No tool selected in the tool table ..." msgstr "Failed. No tool selected in the tool table ..." -#: FlatCAMObj.py:5066 FlatCAMObj.py:5219 +#: FlatCAMObj.py:5069 FlatCAMObj.py:5222 msgid "" "Tool Offset is selected in Tool Table but no value is provided.\n" "Add a Tool Offset or change the Offset Type." @@ -2534,44 +2533,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:5131 FlatCAMObj.py:5280 +#: FlatCAMObj.py:5134 FlatCAMObj.py:5283 msgid "G-Code parsing in progress..." msgstr "G-Code parsing in progress..." -#: FlatCAMObj.py:5133 FlatCAMObj.py:5282 +#: FlatCAMObj.py:5136 FlatCAMObj.py:5285 msgid "G-Code parsing finished..." msgstr "G-Code parsing finished..." -#: FlatCAMObj.py:5141 +#: FlatCAMObj.py:5144 msgid "Finished G-Code processing" msgstr "Finished G-Code processing" -#: FlatCAMObj.py:5143 FlatCAMObj.py:5294 +#: FlatCAMObj.py:5146 FlatCAMObj.py:5297 msgid "G-Code processing failed with error" msgstr "G-Code processing failed with error" -#: FlatCAMObj.py:5189 flatcamTools/ToolSolderPaste.py:1300 +#: FlatCAMObj.py:5192 flatcamTools/ToolSolderPaste.py:1303 msgid "Cancelled. Empty file, it has no geometry" msgstr "Cancelled. Empty file, it has no geometry" -#: FlatCAMObj.py:5292 FlatCAMObj.py:5443 +#: FlatCAMObj.py:5295 FlatCAMObj.py:5446 msgid "Finished G-Code processing..." msgstr "Finished G-Code processing..." -#: FlatCAMObj.py:5313 FlatCAMObj.py:5317 FlatCAMObj.py:5453 +#: FlatCAMObj.py:5316 FlatCAMObj.py:5320 FlatCAMObj.py:5456 msgid "CNCjob created" msgstr "CNCjob created" -#: FlatCAMObj.py:5484 FlatCAMObj.py:5493 flatcamParsers/ParseGerber.py:1750 +#: FlatCAMObj.py:5487 FlatCAMObj.py:5496 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:5557 +#: FlatCAMObj.py:5560 msgid "Geometry Scale done." msgstr "Geometry Scale done." -#: FlatCAMObj.py:5574 flatcamParsers/ParseGerber.py:1876 +#: FlatCAMObj.py:5577 flatcamParsers/ParseGerber.py:1876 msgid "" "An (x,y) pair of values are needed. Probable you entered only one value in " "the Offset field." @@ -2579,11 +2578,11 @@ msgstr "" "An (x,y) pair of values are needed. Probable you entered only one value in " "the Offset field." -#: FlatCAMObj.py:5631 +#: FlatCAMObj.py:5634 msgid "Geometry Offset done." msgstr "Geometry Offset done." -#: FlatCAMObj.py:5660 +#: FlatCAMObj.py:5663 msgid "" "The Toolchange X,Y field in Edit -> Preferences has to be in the format (x, " "y)\n" @@ -2593,78 +2592,78 @@ msgstr "" "y)\n" "but now there is only one value, not two." -#: FlatCAMObj.py:6335 FlatCAMObj.py:6993 FlatCAMObj.py:7189 +#: FlatCAMObj.py:6338 FlatCAMObj.py:6996 FlatCAMObj.py:7192 msgid "Basic" msgstr "Basic" -#: FlatCAMObj.py:6341 FlatCAMObj.py:6997 FlatCAMObj.py:7193 +#: FlatCAMObj.py:6344 FlatCAMObj.py:7000 FlatCAMObj.py:7196 msgid "Advanced" msgstr "Advanced" -#: FlatCAMObj.py:6384 +#: FlatCAMObj.py:6387 msgid "Plotting..." msgstr "Plotting..." -#: FlatCAMObj.py:6407 FlatCAMObj.py:6412 flatcamTools/ToolSolderPaste.py:1506 +#: FlatCAMObj.py:6410 FlatCAMObj.py:6415 flatcamTools/ToolSolderPaste.py:1509 msgid "Export Machine Code ..." msgstr "Export Machine Code ..." -#: FlatCAMObj.py:6417 flatcamTools/ToolSolderPaste.py:1510 +#: FlatCAMObj.py:6420 flatcamTools/ToolSolderPaste.py:1513 msgid "Export Machine Code cancelled ..." msgstr "Export Machine Code cancelled ..." -#: FlatCAMObj.py:6439 +#: FlatCAMObj.py:6442 msgid "Machine Code file saved to" msgstr "Machine Code file saved to" -#: FlatCAMObj.py:6493 flatcamTools/ToolCalibration.py:1083 +#: FlatCAMObj.py:6496 flatcamTools/ToolCalibration.py:1083 msgid "Loaded Machine Code into Code Editor" msgstr "Loaded Machine Code into Code Editor" -#: FlatCAMObj.py:6628 +#: FlatCAMObj.py:6631 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:6630 +#: FlatCAMObj.py:6633 msgid "CNCJob object" msgstr "CNCJob object" -#: FlatCAMObj.py:6681 +#: FlatCAMObj.py:6684 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:6695 +#: FlatCAMObj.py:6698 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:6700 +#: FlatCAMObj.py:6703 msgid "Toolchange G-code was replaced by a custom code." msgstr "Toolchange G-code was replaced by a custom code." -#: FlatCAMObj.py:6717 flatcamEditors/FlatCAMTextEditor.py:224 -#: flatcamTools/ToolSolderPaste.py:1537 +#: FlatCAMObj.py:6720 flatcamEditors/FlatCAMTextEditor.py:224 +#: flatcamTools/ToolSolderPaste.py:1540 msgid "No such file or directory" msgstr "No such file or directory" -#: FlatCAMObj.py:6731 flatcamEditors/FlatCAMTextEditor.py:236 +#: FlatCAMObj.py:6734 flatcamEditors/FlatCAMTextEditor.py:236 msgid "Saved to" msgstr "Saved to" -#: FlatCAMObj.py:6741 FlatCAMObj.py:6751 +#: FlatCAMObj.py:6744 FlatCAMObj.py:6754 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:6755 +#: FlatCAMObj.py:6758 msgid "There is no preprocessor file." msgstr "There is no preprocessor file." -#: FlatCAMObj.py:7012 +#: FlatCAMObj.py:7015 msgid "Script Editor" msgstr "Script Editor" -#: FlatCAMObj.py:7293 +#: FlatCAMObj.py:7296 msgid "Document Editor" msgstr "Document Editor" @@ -2672,24 +2671,24 @@ msgstr "Document Editor" msgid "processes running." msgstr "processes running." -#: FlatCAMTranslation.py:92 +#: FlatCAMTranslation.py:103 msgid "The application will restart." msgstr "The application will restart." -#: FlatCAMTranslation.py:94 +#: FlatCAMTranslation.py:105 msgid "Are you sure do you want to change the current language to" msgstr "Are you sure do you want to change the current language to" -#: FlatCAMTranslation.py:95 +#: FlatCAMTranslation.py:106 msgid "Apply Language ..." msgstr "Apply Language ..." -#: ObjectCollection.py:453 +#: ObjectCollection.py:454 #, python-brace-format msgid "Object renamed from {old} to {new}" msgstr "Object renamed from {old} to {new}" -#: ObjectCollection.py:852 +#: ObjectCollection.py:853 msgid "Cause of error" msgstr "Cause of error" @@ -3008,8 +3007,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:2892 -#: flatcamGUI/FlatCAMGUI.py:3105 flatcamGUI/FlatCAMGUI.py:3322 +#: flatcamEditors/FlatCAMExcEditor.py:1052 flatcamGUI/FlatCAMGUI.py:3127 +#: flatcamGUI/FlatCAMGUI.py:3340 flatcamGUI/FlatCAMGUI.py:3557 msgid "Cancelled." msgstr "Cancelled." @@ -3034,7 +3033,7 @@ msgstr "Done. Drill(s) Move completed." msgid "Done. Drill(s) copied." msgstr "Done. Drill(s) copied." -#: flatcamEditors/FlatCAMExcEditor.py:1480 flatcamGUI/PreferencesUI.py:2820 +#: flatcamEditors/FlatCAMExcEditor.py:1480 flatcamGUI/PreferencesUI.py:2821 msgid "Excellon Editor" msgstr "Excellon Editor" @@ -3043,13 +3042,13 @@ msgstr "Excellon Editor" msgid "Name:" msgstr "Name:" -#: flatcamEditors/FlatCAMExcEditor.py:1493 flatcamGUI/ObjectUI.py:733 -#: flatcamGUI/ObjectUI.py:1145 flatcamTools/ToolNonCopperClear.py:109 +#: flatcamEditors/FlatCAMExcEditor.py:1493 flatcamGUI/ObjectUI.py:757 +#: flatcamGUI/ObjectUI.py:1184 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:735 +#: flatcamEditors/FlatCAMExcEditor.py:1495 flatcamGUI/ObjectUI.py:759 msgid "" "Tools in this Excellon object\n" "when are used for drilling." @@ -3069,8 +3068,8 @@ msgstr "" "Add/Delete a tool to the tool list\n" "for this Excellon object." -#: flatcamEditors/FlatCAMExcEditor.py:1529 flatcamGUI/ObjectUI.py:1258 -#: flatcamGUI/PreferencesUI.py:2851 +#: flatcamEditors/FlatCAMExcEditor.py:1529 flatcamGUI/ObjectUI.py:1297 +#: flatcamGUI/PreferencesUI.py:2852 msgid "Diameter for the new tool" msgstr "Diameter for the new tool" @@ -3098,7 +3097,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:1749 +#: flatcamEditors/FlatCAMExcEditor.py:1573 flatcamGUI/FlatCAMGUI.py:1865 msgid "Resize Drill(s)" msgstr "Resize Drill(s)" @@ -3122,8 +3121,8 @@ msgstr "Resize" msgid "Resize drill(s)" msgstr "Resize drill(s)" -#: flatcamEditors/FlatCAMExcEditor.py:1622 flatcamGUI/FlatCAMGUI.py:1748 -#: flatcamGUI/FlatCAMGUI.py:1958 +#: flatcamEditors/FlatCAMExcEditor.py:1622 flatcamGUI/FlatCAMGUI.py:1864 +#: flatcamGUI/FlatCAMGUI.py:2116 msgid "Add Drill Array" msgstr "Add Drill Array" @@ -3147,17 +3146,17 @@ msgstr "Linear" #: flatcamEditors/FlatCAMExcEditor.py:1634 #: flatcamEditors/FlatCAMExcEditor.py:1848 -#: flatcamEditors/FlatCAMGrbEditor.py:2696 flatcamGUI/ObjectUI.py:300 -#: flatcamGUI/PreferencesUI.py:3999 flatcamGUI/PreferencesUI.py:6396 +#: flatcamEditors/FlatCAMGrbEditor.py:2696 flatcamGUI/ObjectUI.py:311 +#: flatcamGUI/PreferencesUI.py:4000 flatcamGUI/PreferencesUI.py:6397 #: flatcamTools/ToolFiducials.py:220 flatcamTools/ToolNonCopperClear.py:221 msgid "Circular" msgstr "Circular" -#: flatcamEditors/FlatCAMExcEditor.py:1642 flatcamGUI/PreferencesUI.py:2862 +#: flatcamEditors/FlatCAMExcEditor.py:1642 flatcamGUI/PreferencesUI.py:2863 msgid "Nr of drills" msgstr "Nr of drills" -#: flatcamEditors/FlatCAMExcEditor.py:1643 flatcamGUI/PreferencesUI.py:2864 +#: flatcamEditors/FlatCAMExcEditor.py:1643 flatcamGUI/PreferencesUI.py:2865 msgid "Specify how many drills to be in the array." msgstr "Specify how many drills to be in the array." @@ -3168,14 +3167,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:2972 +#: flatcamEditors/FlatCAMGrbEditor.py:2773 flatcamGUI/PreferencesUI.py:2973 msgid "Direction" msgstr "Direction" #: flatcamEditors/FlatCAMExcEditor.py:1663 #: flatcamEditors/FlatCAMExcEditor.py:1878 -#: flatcamEditors/FlatCAMGrbEditor.py:2726 flatcamGUI/PreferencesUI.py:1940 -#: flatcamGUI/PreferencesUI.py:2880 flatcamGUI/PreferencesUI.py:3028 +#: flatcamEditors/FlatCAMGrbEditor.py:2726 flatcamGUI/PreferencesUI.py:1941 +#: flatcamGUI/PreferencesUI.py:2881 flatcamGUI/PreferencesUI.py:3029 msgid "" "Direction on which the linear array is oriented:\n" "- 'X' - horizontal axis \n" @@ -3190,9 +3189,9 @@ msgstr "" #: flatcamEditors/FlatCAMExcEditor.py:1670 #: flatcamEditors/FlatCAMExcEditor.py:1792 #: flatcamEditors/FlatCAMExcEditor.py:1885 -#: flatcamEditors/FlatCAMGrbEditor.py:2733 flatcamGUI/PreferencesUI.py:1946 -#: flatcamGUI/PreferencesUI.py:2886 flatcamGUI/PreferencesUI.py:2981 -#: flatcamGUI/PreferencesUI.py:3034 flatcamGUI/PreferencesUI.py:4822 +#: flatcamEditors/FlatCAMGrbEditor.py:2733 flatcamGUI/PreferencesUI.py:1947 +#: flatcamGUI/PreferencesUI.py:2887 flatcamGUI/PreferencesUI.py:2982 +#: flatcamGUI/PreferencesUI.py:3035 flatcamGUI/PreferencesUI.py:4823 #: flatcamTools/ToolFilm.py:256 msgid "X" msgstr "X" @@ -3200,9 +3199,9 @@ msgstr "X" #: flatcamEditors/FlatCAMExcEditor.py:1671 #: flatcamEditors/FlatCAMExcEditor.py:1793 #: flatcamEditors/FlatCAMExcEditor.py:1886 -#: flatcamEditors/FlatCAMGrbEditor.py:2734 flatcamGUI/PreferencesUI.py:1947 -#: flatcamGUI/PreferencesUI.py:2887 flatcamGUI/PreferencesUI.py:2982 -#: flatcamGUI/PreferencesUI.py:3035 flatcamGUI/PreferencesUI.py:4823 +#: flatcamEditors/FlatCAMGrbEditor.py:2734 flatcamGUI/PreferencesUI.py:1948 +#: flatcamGUI/PreferencesUI.py:2888 flatcamGUI/PreferencesUI.py:2983 +#: flatcamGUI/PreferencesUI.py:3036 flatcamGUI/PreferencesUI.py:4824 #: flatcamTools/ToolFilm.py:257 msgid "Y" msgstr "Y" @@ -3217,11 +3216,11 @@ msgstr "Y" #: flatcamEditors/FlatCAMExcEditor.py:1939 #: flatcamEditors/FlatCAMGrbEditor.py:2735 #: flatcamEditors/FlatCAMGrbEditor.py:2752 -#: flatcamEditors/FlatCAMGrbEditor.py:2788 flatcamGUI/PreferencesUI.py:1948 -#: 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 +#: flatcamEditors/FlatCAMGrbEditor.py:2788 flatcamGUI/PreferencesUI.py:1949 +#: flatcamGUI/PreferencesUI.py:1967 flatcamGUI/PreferencesUI.py:2889 +#: flatcamGUI/PreferencesUI.py:2908 flatcamGUI/PreferencesUI.py:2984 +#: flatcamGUI/PreferencesUI.py:2989 flatcamGUI/PreferencesUI.py:3037 +#: flatcamGUI/PreferencesUI.py:3058 flatcamGUI/PreferencesUI.py:5216 #: flatcamTools/ToolDistance.py:66 flatcamTools/ToolDistanceMin.py:68 #: flatcamTools/ToolTransform.py:62 msgid "Angle" @@ -3229,15 +3228,15 @@ msgstr "Angle" #: flatcamEditors/FlatCAMExcEditor.py:1676 #: flatcamEditors/FlatCAMExcEditor.py:1891 -#: flatcamEditors/FlatCAMGrbEditor.py:2739 flatcamGUI/PreferencesUI.py:1954 -#: flatcamGUI/PreferencesUI.py:2894 flatcamGUI/PreferencesUI.py:3042 +#: flatcamEditors/FlatCAMGrbEditor.py:2739 flatcamGUI/PreferencesUI.py:1955 +#: flatcamGUI/PreferencesUI.py:2895 flatcamGUI/PreferencesUI.py:3043 msgid "Pitch" msgstr "Pitch" #: flatcamEditors/FlatCAMExcEditor.py:1678 #: flatcamEditors/FlatCAMExcEditor.py:1893 -#: flatcamEditors/FlatCAMGrbEditor.py:2741 flatcamGUI/PreferencesUI.py:1956 -#: flatcamGUI/PreferencesUI.py:2896 flatcamGUI/PreferencesUI.py:3044 +#: flatcamEditors/FlatCAMGrbEditor.py:2741 flatcamGUI/PreferencesUI.py:1957 +#: flatcamGUI/PreferencesUI.py:2897 flatcamGUI/PreferencesUI.py:3045 msgid "Pitch = Distance between elements of the array." msgstr "Pitch = Distance between elements of the array." @@ -3266,26 +3265,26 @@ msgstr "" #: flatcamEditors/FlatCAMExcEditor.py:1719 #: flatcamEditors/FlatCAMExcEditor.py:1935 -#: flatcamEditors/FlatCAMGrbEditor.py:2783 flatcamGUI/PreferencesUI.py:1988 -#: flatcamGUI/PreferencesUI.py:2634 flatcamGUI/PreferencesUI.py:2930 -#: flatcamGUI/PreferencesUI.py:3080 flatcamGUI/PreferencesUI.py:3508 +#: flatcamEditors/FlatCAMGrbEditor.py:2783 flatcamGUI/PreferencesUI.py:1989 +#: flatcamGUI/PreferencesUI.py:2635 flatcamGUI/PreferencesUI.py:2931 +#: flatcamGUI/PreferencesUI.py:3081 flatcamGUI/PreferencesUI.py:3509 msgid "CW" msgstr "CW" #: flatcamEditors/FlatCAMExcEditor.py:1720 #: flatcamEditors/FlatCAMExcEditor.py:1936 -#: flatcamEditors/FlatCAMGrbEditor.py:2784 flatcamGUI/PreferencesUI.py:1989 -#: flatcamGUI/PreferencesUI.py:2635 flatcamGUI/PreferencesUI.py:2931 -#: flatcamGUI/PreferencesUI.py:3081 flatcamGUI/PreferencesUI.py:3509 +#: flatcamEditors/FlatCAMGrbEditor.py:2784 flatcamGUI/PreferencesUI.py:1990 +#: flatcamGUI/PreferencesUI.py:2636 flatcamGUI/PreferencesUI.py:2932 +#: flatcamGUI/PreferencesUI.py:3082 flatcamGUI/PreferencesUI.py:3510 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:2909 -#: flatcamGUI/PreferencesUI.py:2939 flatcamGUI/PreferencesUI.py:3059 -#: flatcamGUI/PreferencesUI.py:3089 +#: flatcamEditors/FlatCAMGrbEditor.py:2790 flatcamGUI/PreferencesUI.py:1969 +#: flatcamGUI/PreferencesUI.py:1998 flatcamGUI/PreferencesUI.py:2910 +#: flatcamGUI/PreferencesUI.py:2940 flatcamGUI/PreferencesUI.py:3060 +#: flatcamGUI/PreferencesUI.py:3090 msgid "Angle at which each element in circular array is placed." msgstr "Angle at which each element in circular array is placed." @@ -3301,16 +3300,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:2956 +#: flatcamEditors/FlatCAMExcEditor.py:1769 flatcamGUI/PreferencesUI.py:2957 #: flatcamTools/ToolProperties.py:555 msgid "Length" msgstr "Length" -#: flatcamEditors/FlatCAMExcEditor.py:1771 flatcamGUI/PreferencesUI.py:2958 +#: flatcamEditors/FlatCAMExcEditor.py:1771 flatcamGUI/PreferencesUI.py:2959 msgid "Length = The length of the slot." msgstr "Length = The length of the slot." -#: flatcamEditors/FlatCAMExcEditor.py:1785 flatcamGUI/PreferencesUI.py:2974 +#: flatcamEditors/FlatCAMExcEditor.py:1785 flatcamGUI/PreferencesUI.py:2975 msgid "" "Direction on which the slot is oriented:\n" "- 'X' - horizontal axis \n" @@ -3350,11 +3349,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:3013 +#: flatcamEditors/FlatCAMExcEditor.py:1856 flatcamGUI/PreferencesUI.py:3014 msgid "Nr of slots" msgstr "Nr of slots" -#: flatcamEditors/FlatCAMExcEditor.py:1857 flatcamGUI/PreferencesUI.py:3015 +#: flatcamEditors/FlatCAMExcEditor.py:1857 flatcamGUI/PreferencesUI.py:3016 msgid "Specify how many slots to be in the array." msgstr "Specify how many slots to be in the array." @@ -3366,7 +3365,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:3491 +#: flatcamEditors/FlatCAMExcEditor.py:2480 flatcamGUI/FlatCAMGUI.py:3726 msgid "Added new tool with dia" msgstr "Added new tool with dia" @@ -3441,7 +3440,7 @@ msgid "Round" msgstr "Round" #: flatcamEditors/FlatCAMGeoEditor.py:96 -#: flatcamEditors/FlatCAMGrbEditor.py:2552 flatcamGUI/PreferencesUI.py:5989 +#: flatcamEditors/FlatCAMGrbEditor.py:2552 flatcamGUI/PreferencesUI.py:5990 #: flatcamTools/ToolQRCode.py:198 msgid "Square" msgstr "Square" @@ -3464,8 +3463,8 @@ msgid "Full Buffer" msgstr "Full Buffer" #: flatcamEditors/FlatCAMGeoEditor.py:133 -#: flatcamEditors/FlatCAMGeoEditor.py:2758 flatcamGUI/FlatCAMGUI.py:1658 -#: flatcamGUI/PreferencesUI.py:2008 +#: flatcamEditors/FlatCAMGeoEditor.py:2758 flatcamGUI/FlatCAMGUI.py:1774 +#: flatcamGUI/PreferencesUI.py:2009 msgid "Buffer Tool" msgstr "Buffer Tool" @@ -3483,7 +3482,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:1919 +#: flatcamEditors/FlatCAMGeoEditor.py:324 flatcamGUI/FlatCAMGUI.py:2054 msgid "Text" msgstr "Text" @@ -3491,13 +3490,13 @@ msgstr "Text" msgid "Text Tool" msgstr "Text Tool" -#: flatcamEditors/FlatCAMGeoEditor.py:442 flatcamGUI/ObjectUI.py:348 -#: flatcamGUI/PreferencesUI.py:1449 flatcamGUI/PreferencesUI.py:3144 -#: flatcamGUI/PreferencesUI.py:4500 +#: flatcamEditors/FlatCAMGeoEditor.py:442 flatcamGUI/ObjectUI.py:359 +#: flatcamGUI/PreferencesUI.py:1450 flatcamGUI/PreferencesUI.py:3145 +#: flatcamGUI/PreferencesUI.py:4501 msgid "Tool dia" msgstr "Tool dia" -#: flatcamEditors/FlatCAMGeoEditor.py:444 flatcamGUI/PreferencesUI.py:4502 +#: flatcamEditors/FlatCAMGeoEditor.py:444 flatcamGUI/PreferencesUI.py:4503 msgid "" "Diameter of the tool to\n" "be used in the operation." @@ -3505,13 +3504,13 @@ msgstr "" "Diameter of the tool to\n" "be used in the operation." -#: flatcamEditors/FlatCAMGeoEditor.py:455 flatcamGUI/PreferencesUI.py:4107 -#: flatcamGUI/PreferencesUI.py:4532 flatcamTools/ToolNonCopperClear.py:319 +#: flatcamEditors/FlatCAMGeoEditor.py:455 flatcamGUI/PreferencesUI.py:4108 +#: flatcamGUI/PreferencesUI.py:4533 flatcamTools/ToolNonCopperClear.py:319 #: flatcamTools/ToolPaint.py:219 msgid "Overlap Rate" msgstr "Overlap Rate" -#: flatcamEditors/FlatCAMGeoEditor.py:457 flatcamGUI/PreferencesUI.py:4534 +#: flatcamEditors/FlatCAMGeoEditor.py:457 flatcamGUI/PreferencesUI.py:4535 #: flatcamTools/ToolPaint.py:221 msgid "" "How much (fraction) of the tool width to overlap each tool pass.\n" @@ -3530,17 +3529,17 @@ msgstr "" "Higher values = slow processing and slow execution on CNC\n" "due of too many paths." -#: 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 +#: flatcamEditors/FlatCAMGeoEditor.py:475 flatcamGUI/PreferencesUI.py:4127 +#: flatcamGUI/PreferencesUI.py:4348 flatcamGUI/PreferencesUI.py:4553 +#: flatcamGUI/PreferencesUI.py:6107 flatcamGUI/PreferencesUI.py:6264 +#: flatcamGUI/PreferencesUI.py:6349 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:477 flatcamGUI/PreferencesUI.py:4554 +#: flatcamEditors/FlatCAMGeoEditor.py:477 flatcamGUI/PreferencesUI.py:4555 #: flatcamTools/ToolPaint.py:240 msgid "" "Distance by which to avoid\n" @@ -3551,8 +3550,8 @@ msgstr "" "the edges of the polygon to\n" "be painted." -#: flatcamEditors/FlatCAMGeoEditor.py:489 flatcamGUI/PreferencesUI.py:4139 -#: flatcamGUI/PreferencesUI.py:4567 flatcamTools/ToolNonCopperClear.py:348 +#: flatcamEditors/FlatCAMGeoEditor.py:489 flatcamGUI/PreferencesUI.py:4140 +#: flatcamGUI/PreferencesUI.py:4568 flatcamTools/ToolNonCopperClear.py:348 #: flatcamTools/ToolPaint.py:251 msgid "Method" msgstr "Method" @@ -3565,20 +3564,20 @@ msgstr "" "Algorithm to paint the polygon:
Standard: Fixed step inwards." "
Seed-based: Outwards from seed." -#: flatcamEditors/FlatCAMGeoEditor.py:496 flatcamGUI/PreferencesUI.py:4148 -#: flatcamGUI/PreferencesUI.py:4576 flatcamTools/ToolNonCopperClear.py:357 +#: flatcamEditors/FlatCAMGeoEditor.py:496 flatcamGUI/PreferencesUI.py:4149 +#: flatcamGUI/PreferencesUI.py:4577 flatcamTools/ToolNonCopperClear.py:357 #: flatcamTools/ToolPaint.py:260 msgid "Standard" msgstr "Standard" -#: flatcamEditors/FlatCAMGeoEditor.py:497 flatcamGUI/PreferencesUI.py:4149 -#: flatcamGUI/PreferencesUI.py:4577 flatcamTools/ToolNonCopperClear.py:358 +#: flatcamEditors/FlatCAMGeoEditor.py:497 flatcamGUI/PreferencesUI.py:4150 +#: flatcamGUI/PreferencesUI.py:4578 flatcamTools/ToolNonCopperClear.py:358 #: flatcamTools/ToolPaint.py:261 msgid "Seed-based" msgstr "Seed-based" -#: flatcamEditors/FlatCAMGeoEditor.py:498 flatcamGUI/PreferencesUI.py:4150 -#: flatcamGUI/PreferencesUI.py:4578 flatcamTools/ToolNonCopperClear.py:359 +#: flatcamEditors/FlatCAMGeoEditor.py:498 flatcamGUI/PreferencesUI.py:4151 +#: flatcamGUI/PreferencesUI.py:4579 flatcamTools/ToolNonCopperClear.py:359 #: flatcamTools/ToolPaint.py:262 msgid "Straight lines" msgstr "Straight lines" @@ -3587,8 +3586,8 @@ msgstr "Straight lines" msgid "Connect:" msgstr "Connect:" -#: flatcamEditors/FlatCAMGeoEditor.py:507 flatcamGUI/PreferencesUI.py:4159 -#: flatcamGUI/PreferencesUI.py:4585 flatcamTools/ToolNonCopperClear.py:366 +#: flatcamEditors/FlatCAMGeoEditor.py:507 flatcamGUI/PreferencesUI.py:4160 +#: flatcamGUI/PreferencesUI.py:4586 flatcamTools/ToolNonCopperClear.py:366 #: flatcamTools/ToolPaint.py:269 msgid "" "Draw lines between resulting\n" @@ -3601,8 +3600,8 @@ msgstr "" msgid "Contour:" msgstr "Contour:" -#: flatcamEditors/FlatCAMGeoEditor.py:517 flatcamGUI/PreferencesUI.py:4170 -#: flatcamGUI/PreferencesUI.py:4595 flatcamTools/ToolNonCopperClear.py:375 +#: flatcamEditors/FlatCAMGeoEditor.py:517 flatcamGUI/PreferencesUI.py:4171 +#: flatcamGUI/PreferencesUI.py:4596 flatcamTools/ToolNonCopperClear.py:375 #: flatcamTools/ToolPaint.py:278 msgid "" "Cut around the perimeter of the polygon\n" @@ -3611,13 +3610,13 @@ msgstr "" "Cut around the perimeter of the polygon\n" "to trim rough edges." -#: flatcamEditors/FlatCAMGeoEditor.py:529 flatcamGUI/FlatCAMGUI.py:1921 +#: flatcamEditors/FlatCAMGeoEditor.py:529 flatcamGUI/FlatCAMGUI.py:2058 msgid "Paint" msgstr "Paint" -#: flatcamEditors/FlatCAMGeoEditor.py:547 flatcamGUI/FlatCAMGUI.py:749 -#: flatcamGUI/FlatCAMGUI.py:2194 flatcamGUI/ObjectUI.py:1694 -#: flatcamTools/ToolPaint.py:41 flatcamTools/ToolPaint.py:538 +#: flatcamEditors/FlatCAMGeoEditor.py:547 flatcamGUI/FlatCAMGUI.py:819 +#: flatcamGUI/FlatCAMGUI.py:2388 flatcamGUI/ObjectUI.py:1733 +#: flatcamTools/ToolPaint.py:41 flatcamTools/ToolPaint.py:539 msgid "Paint Tool" msgstr "Paint Tool" @@ -3628,7 +3627,7 @@ msgstr "Paint cancelled. No shape selected." #: flatcamEditors/FlatCAMGeoEditor.py:597 #: flatcamEditors/FlatCAMGeoEditor.py:2784 #: flatcamEditors/FlatCAMGeoEditor.py:2814 -#: flatcamEditors/FlatCAMGeoEditor.py:2844 flatcamGUI/PreferencesUI.py:3140 +#: flatcamEditors/FlatCAMGeoEditor.py:2844 flatcamGUI/PreferencesUI.py:3141 #: flatcamTools/ToolProperties.py:120 flatcamTools/ToolProperties.py:158 msgid "Tools" msgstr "Tools" @@ -3636,15 +3635,15 @@ msgstr "Tools" #: flatcamEditors/FlatCAMGeoEditor.py:608 #: flatcamEditors/FlatCAMGeoEditor.py:992 #: flatcamEditors/FlatCAMGrbEditor.py:5011 -#: flatcamEditors/FlatCAMGrbEditor.py:5408 flatcamGUI/FlatCAMGUI.py:762 -#: flatcamGUI/FlatCAMGUI.py:2207 flatcamTools/ToolTransform.py:371 +#: flatcamEditors/FlatCAMGrbEditor.py:5408 flatcamGUI/FlatCAMGUI.py:840 +#: flatcamGUI/FlatCAMGUI.py:2406 flatcamTools/ToolTransform.py:371 msgid "Transform Tool" msgstr "Transform Tool" #: flatcamEditors/FlatCAMGeoEditor.py:609 #: flatcamEditors/FlatCAMGeoEditor.py:674 #: flatcamEditors/FlatCAMGrbEditor.py:5012 -#: flatcamEditors/FlatCAMGrbEditor.py:5077 flatcamGUI/PreferencesUI.py:5207 +#: flatcamEditors/FlatCAMGrbEditor.py:5077 flatcamGUI/PreferencesUI.py:5208 #: flatcamTools/ToolTransform.py:25 flatcamTools/ToolTransform.py:79 msgid "Rotate" msgstr "Rotate" @@ -3656,10 +3655,10 @@ msgstr "Skew/Shear" #: flatcamEditors/FlatCAMGeoEditor.py:611 #: flatcamEditors/FlatCAMGrbEditor.py:2600 -#: 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 +#: flatcamEditors/FlatCAMGrbEditor.py:5014 flatcamGUI/FlatCAMGUI.py:954 +#: flatcamGUI/FlatCAMGUI.py:1986 flatcamGUI/FlatCAMGUI.py:2101 +#: flatcamGUI/FlatCAMGUI.py:2514 flatcamGUI/ObjectUI.py:103 +#: flatcamGUI/ObjectUI.py:121 flatcamGUI/PreferencesUI.py:5258 #: flatcamTools/ToolTransform.py:27 msgid "Scale" msgstr "Scale" @@ -3670,17 +3669,17 @@ msgid "Mirror (Flip)" msgstr "Mirror (Flip)" #: 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 +#: flatcamEditors/FlatCAMGrbEditor.py:5016 flatcamGUI/ObjectUI.py:132 +#: flatcamGUI/ObjectUI.py:148 flatcamGUI/ObjectUI.py:1217 +#: flatcamGUI/ObjectUI.py:1918 flatcamGUI/PreferencesUI.py:4196 +#: flatcamGUI/PreferencesUI.py:5305 flatcamTools/ToolNonCopperClear.py:397 #: flatcamTools/ToolTransform.py:29 msgid "Offset" msgstr "Offset" #: flatcamEditors/FlatCAMGeoEditor.py:626 -#: flatcamEditors/FlatCAMGrbEditor.py:5029 flatcamGUI/FlatCAMGUI.py:709 -#: flatcamGUI/FlatCAMGUI.py:2160 +#: flatcamEditors/FlatCAMGrbEditor.py:5029 flatcamGUI/FlatCAMGUI.py:761 +#: flatcamGUI/FlatCAMGUI.py:2335 msgid "Editor" msgstr "Editor" @@ -3690,7 +3689,7 @@ msgid "Angle:" msgstr "Angle:" #: flatcamEditors/FlatCAMGeoEditor.py:660 -#: flatcamEditors/FlatCAMGrbEditor.py:5063 flatcamGUI/PreferencesUI.py:5217 +#: flatcamEditors/FlatCAMGrbEditor.py:5063 flatcamGUI/PreferencesUI.py:5218 #: flatcamTools/ToolTransform.py:64 msgid "" "Angle for Rotation action, in degrees.\n" @@ -3722,8 +3721,8 @@ msgstr "Angle X:" #: flatcamEditors/FlatCAMGeoEditor.py:701 #: flatcamEditors/FlatCAMGeoEditor.py:721 #: flatcamEditors/FlatCAMGrbEditor.py:5104 -#: flatcamEditors/FlatCAMGrbEditor.py:5124 flatcamGUI/PreferencesUI.py:5236 -#: flatcamGUI/PreferencesUI.py:5250 flatcamTools/ToolCalibration.py:508 +#: flatcamEditors/FlatCAMGrbEditor.py:5124 flatcamGUI/PreferencesUI.py:5237 +#: flatcamGUI/PreferencesUI.py:5251 flatcamTools/ToolCalibration.py:508 #: flatcamTools/ToolCalibration.py:521 msgid "" "Angle for Skew action, in degrees.\n" @@ -3804,7 +3803,7 @@ msgid "Scale Y" msgstr "Scale Y" #: flatcamEditors/FlatCAMGeoEditor.py:800 -#: flatcamEditors/FlatCAMGrbEditor.py:5203 flatcamGUI/PreferencesUI.py:5286 +#: flatcamEditors/FlatCAMGrbEditor.py:5203 flatcamGUI/PreferencesUI.py:5287 #: flatcamTools/ToolTransform.py:191 msgid "Link" msgstr "Link" @@ -3819,7 +3818,7 @@ msgstr "" "using the Scale Factor X for both axis." #: flatcamEditors/FlatCAMGeoEditor.py:808 -#: flatcamEditors/FlatCAMGrbEditor.py:5211 flatcamGUI/PreferencesUI.py:5294 +#: flatcamEditors/FlatCAMGrbEditor.py:5211 flatcamGUI/PreferencesUI.py:5295 #: flatcamTools/ToolTransform.py:199 msgid "Scale Reference" msgstr "Scale Reference" @@ -4378,10 +4377,10 @@ msgstr "with diameter" msgid "Copy cancelled. No shape selected." msgstr "Copy cancelled. No shape selected." -#: 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 +#: flatcamEditors/FlatCAMGeoEditor.py:4025 flatcamGUI/FlatCAMGUI.py:3435 +#: flatcamGUI/FlatCAMGUI.py:3482 flatcamGUI/FlatCAMGUI.py:3501 +#: flatcamGUI/FlatCAMGUI.py:3636 flatcamGUI/FlatCAMGUI.py:3649 +#: flatcamGUI/FlatCAMGUI.py:3683 flatcamGUI/FlatCAMGUI.py:3741 msgid "Click on target point." msgstr "Click on target point." @@ -4600,62 +4599,62 @@ msgstr "Done. Apertures Move completed." msgid "Done. Apertures copied." msgstr "Done. Apertures copied." -#: flatcamEditors/FlatCAMGrbEditor.py:2376 flatcamGUI/FlatCAMGUI.py:1934 -#: flatcamGUI/PreferencesUI.py:1847 +#: flatcamEditors/FlatCAMGrbEditor.py:2376 flatcamGUI/FlatCAMGUI.py:2079 +#: flatcamGUI/PreferencesUI.py:1848 msgid "Gerber Editor" msgstr "Gerber Editor" -#: flatcamEditors/FlatCAMGrbEditor.py:2396 flatcamGUI/ObjectUI.py:212 +#: flatcamEditors/FlatCAMGrbEditor.py:2396 flatcamGUI/ObjectUI.py:223 #: flatcamTools/ToolProperties.py:156 msgid "Apertures" msgstr "Apertures" -#: flatcamEditors/FlatCAMGrbEditor.py:2398 flatcamGUI/ObjectUI.py:214 +#: flatcamEditors/FlatCAMGrbEditor.py:2398 flatcamGUI/ObjectUI.py:225 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:247 +#: flatcamEditors/FlatCAMGrbEditor.py:3755 flatcamGUI/ObjectUI.py:258 msgid "Code" msgstr "Code" #: flatcamEditors/FlatCAMGrbEditor.py:2409 -#: flatcamEditors/FlatCAMGrbEditor.py:3755 flatcamGUI/ObjectUI.py:247 -#: flatcamGUI/ObjectUI.py:1178 flatcamGUI/ObjectUI.py:1866 +#: flatcamEditors/FlatCAMGrbEditor.py:3755 flatcamGUI/ObjectUI.py:258 +#: flatcamGUI/ObjectUI.py:1217 flatcamGUI/ObjectUI.py:1918 msgid "Type" msgstr "Type" #: flatcamEditors/FlatCAMGrbEditor.py:2409 -#: flatcamEditors/FlatCAMGrbEditor.py:3755 flatcamGUI/ObjectUI.py:247 -#: flatcamGUI/PreferencesUI.py:6201 flatcamGUI/PreferencesUI.py:6230 -#: flatcamGUI/PreferencesUI.py:6332 flatcamTools/ToolCopperThieving.py:260 +#: flatcamEditors/FlatCAMGrbEditor.py:3755 flatcamGUI/ObjectUI.py:258 +#: flatcamGUI/PreferencesUI.py:6202 flatcamGUI/PreferencesUI.py:6231 +#: flatcamGUI/PreferencesUI.py:6333 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:247 +#: flatcamEditors/FlatCAMGrbEditor.py:3755 flatcamGUI/ObjectUI.py:258 msgid "Dim" msgstr "Dim" -#: flatcamEditors/FlatCAMGrbEditor.py:2413 flatcamGUI/ObjectUI.py:251 +#: flatcamEditors/FlatCAMGrbEditor.py:2413 flatcamGUI/ObjectUI.py:262 msgid "Index" msgstr "Index" #: flatcamEditors/FlatCAMGrbEditor.py:2415 -#: flatcamEditors/FlatCAMGrbEditor.py:2444 flatcamGUI/ObjectUI.py:253 +#: flatcamEditors/FlatCAMGrbEditor.py:2444 flatcamGUI/ObjectUI.py:264 msgid "Aperture Code" msgstr "Aperture Code" -#: flatcamEditors/FlatCAMGrbEditor.py:2417 flatcamGUI/ObjectUI.py:255 +#: flatcamEditors/FlatCAMGrbEditor.py:2417 flatcamGUI/ObjectUI.py:266 msgid "Type of aperture: circular, rectangle, macros etc" msgstr "Type of aperture: circular, rectangle, macros etc" -#: flatcamEditors/FlatCAMGrbEditor.py:2419 flatcamGUI/ObjectUI.py:257 +#: flatcamEditors/FlatCAMGrbEditor.py:2419 flatcamGUI/ObjectUI.py:268 msgid "Aperture Size:" msgstr "Aperture Size:" -#: flatcamEditors/FlatCAMGrbEditor.py:2421 flatcamGUI/ObjectUI.py:259 +#: flatcamEditors/FlatCAMGrbEditor.py:2421 flatcamGUI/ObjectUI.py:270 msgid "" "Aperture Dimensions:\n" " - (width, height) for R, O type.\n" @@ -4665,7 +4664,7 @@ msgstr "" " - (width, height) for R, O type.\n" " - (dia, nVertices) for P type" -#: flatcamEditors/FlatCAMGrbEditor.py:2445 flatcamGUI/PreferencesUI.py:1878 +#: flatcamEditors/FlatCAMGrbEditor.py:2445 flatcamGUI/PreferencesUI.py:1879 msgid "Code for the new aperture" msgstr "Code for the new aperture" @@ -4741,7 +4740,7 @@ msgstr "Buffer Aperture" msgid "Buffer a aperture in the aperture list" msgstr "Buffer a aperture in the aperture list" -#: flatcamEditors/FlatCAMGrbEditor.py:2542 flatcamGUI/PreferencesUI.py:2012 +#: flatcamEditors/FlatCAMGrbEditor.py:2542 flatcamGUI/PreferencesUI.py:2013 msgid "Buffer distance" msgstr "Buffer distance" @@ -4763,9 +4762,9 @@ msgstr "" " - 'Beveled:' the corner is a line that directly connects the features " "meeting in the corner" -#: flatcamEditors/FlatCAMGrbEditor.py:2560 flatcamGUI/FlatCAMGUI.py:842 -#: flatcamGUI/FlatCAMGUI.py:1868 flatcamGUI/FlatCAMGUI.py:1920 -#: flatcamGUI/FlatCAMGUI.py:1947 flatcamGUI/FlatCAMGUI.py:2283 +#: flatcamEditors/FlatCAMGrbEditor.py:2560 flatcamGUI/FlatCAMGUI.py:952 +#: flatcamGUI/FlatCAMGUI.py:1984 flatcamGUI/FlatCAMGUI.py:2056 +#: flatcamGUI/FlatCAMGUI.py:2099 flatcamGUI/FlatCAMGUI.py:2512 msgid "Buffer" msgstr "Buffer" @@ -4777,7 +4776,7 @@ msgstr "Scale Aperture" msgid "Scale a aperture in the aperture list" msgstr "Scale a aperture in the aperture list" -#: flatcamEditors/FlatCAMGrbEditor.py:2585 flatcamGUI/PreferencesUI.py:2027 +#: flatcamEditors/FlatCAMGrbEditor.py:2585 flatcamGUI/PreferencesUI.py:2028 msgid "Scale factor" msgstr "Scale factor" @@ -4841,8 +4840,8 @@ msgstr "Clear" msgid "Clear all the markings." msgstr "Clear all the markings." -#: flatcamEditors/FlatCAMGrbEditor.py:2684 flatcamGUI/FlatCAMGUI.py:832 -#: flatcamGUI/FlatCAMGUI.py:1868 flatcamGUI/FlatCAMGUI.py:2273 +#: flatcamEditors/FlatCAMGrbEditor.py:2684 flatcamGUI/FlatCAMGUI.py:937 +#: flatcamGUI/FlatCAMGUI.py:1984 flatcamGUI/FlatCAMGUI.py:2497 msgid "Add Pad Array" msgstr "Add Pad Array" @@ -4858,11 +4857,11 @@ msgstr "" "Select the type of pads array to create.\n" "It can be Linear X(Y) or Circular" -#: flatcamEditors/FlatCAMGrbEditor.py:2703 flatcamGUI/PreferencesUI.py:1915 +#: flatcamEditors/FlatCAMGrbEditor.py:2703 flatcamGUI/PreferencesUI.py:1916 msgid "Nr of pads" msgstr "Nr of pads" -#: flatcamEditors/FlatCAMGrbEditor.py:2705 flatcamGUI/PreferencesUI.py:1917 +#: flatcamEditors/FlatCAMGrbEditor.py:2705 flatcamGUI/PreferencesUI.py:1918 msgid "Specify how many pads to be in the array." msgstr "Specify how many pads to be in the array." @@ -5056,9 +5055,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:471 -#: flatcamGUI/ObjectUI.py:1759 flatcamGUI/PreferencesUI.py:1494 -#: flatcamGUI/PreferencesUI.py:3641 flatcamGUI/PreferencesUI.py:4616 +#: flatcamEditors/FlatCAMTextEditor.py:87 flatcamGUI/ObjectUI.py:482 +#: flatcamGUI/ObjectUI.py:1811 flatcamGUI/PreferencesUI.py:1495 +#: flatcamGUI/PreferencesUI.py:3642 flatcamGUI/PreferencesUI.py:4617 msgid "All" msgstr "All" @@ -5120,7 +5119,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:1891 +#: flatcamGUI/FlatCAMGUI.py:2009 msgid "Toggle Panel" msgstr "Toggle Panel" @@ -5140,91 +5139,91 @@ msgstr "Will create a new, blank project" msgid "&New" msgstr "&New" -#: flatcamGUI/FlatCAMGUI.py:79 +#: flatcamGUI/FlatCAMGUI.py:80 msgid "Geometry\tN" msgstr "Geometry\tN" -#: flatcamGUI/FlatCAMGUI.py:81 +#: flatcamGUI/FlatCAMGUI.py:82 msgid "Will create a new, empty Geometry Object." msgstr "Will create a new, empty Geometry Object." -#: flatcamGUI/FlatCAMGUI.py:83 +#: flatcamGUI/FlatCAMGUI.py:84 msgid "Gerber\tB" msgstr "Gerber\tB" -#: flatcamGUI/FlatCAMGUI.py:85 +#: flatcamGUI/FlatCAMGUI.py:86 msgid "Will create a new, empty Gerber Object." msgstr "Will create a new, empty Gerber Object." -#: flatcamGUI/FlatCAMGUI.py:87 +#: flatcamGUI/FlatCAMGUI.py:88 msgid "Excellon\tL" msgstr "Excellon\tL" -#: flatcamGUI/FlatCAMGUI.py:89 +#: flatcamGUI/FlatCAMGUI.py:90 msgid "Will create a new, empty Excellon Object." msgstr "Will create a new, empty Excellon Object." -#: flatcamGUI/FlatCAMGUI.py:93 +#: flatcamGUI/FlatCAMGUI.py:94 msgid "Document\tD" msgstr "Document\tD" -#: flatcamGUI/FlatCAMGUI.py:95 +#: flatcamGUI/FlatCAMGUI.py:96 msgid "Will create a new, empty Document Object." msgstr "Will create a new, empty Document Object." -#: flatcamGUI/FlatCAMGUI.py:98 flatcamGUI/FlatCAMGUI.py:3837 +#: flatcamGUI/FlatCAMGUI.py:99 flatcamGUI/FlatCAMGUI.py:4075 #: flatcamTools/ToolPcbWizard.py:62 flatcamTools/ToolPcbWizard.py:69 msgid "Open" msgstr "Open" -#: flatcamGUI/FlatCAMGUI.py:102 +#: flatcamGUI/FlatCAMGUI.py:103 msgid "Open &Project ..." msgstr "Open &Project ..." -#: flatcamGUI/FlatCAMGUI.py:108 flatcamGUI/FlatCAMGUI.py:3846 +#: flatcamGUI/FlatCAMGUI.py:109 flatcamGUI/FlatCAMGUI.py:4085 msgid "Open &Gerber ...\tCTRL+G" msgstr "Open &Gerber ...\tCTRL+G" -#: flatcamGUI/FlatCAMGUI.py:113 flatcamGUI/FlatCAMGUI.py:3851 +#: flatcamGUI/FlatCAMGUI.py:114 flatcamGUI/FlatCAMGUI.py:4090 msgid "Open &Excellon ...\tCTRL+E" msgstr "Open &Excellon ...\tCTRL+E" -#: flatcamGUI/FlatCAMGUI.py:117 flatcamGUI/FlatCAMGUI.py:3855 +#: flatcamGUI/FlatCAMGUI.py:118 flatcamGUI/FlatCAMGUI.py:4095 msgid "Open G-&Code ..." msgstr "Open G-&Code ..." -#: flatcamGUI/FlatCAMGUI.py:123 +#: flatcamGUI/FlatCAMGUI.py:124 msgid "Open Config ..." msgstr "Open Config ..." -#: flatcamGUI/FlatCAMGUI.py:127 +#: flatcamGUI/FlatCAMGUI.py:128 msgid "Recent projects" msgstr "Recent projects" -#: flatcamGUI/FlatCAMGUI.py:128 +#: flatcamGUI/FlatCAMGUI.py:129 msgid "Recent files" msgstr "Recent files" -#: flatcamGUI/FlatCAMGUI.py:134 +#: flatcamGUI/FlatCAMGUI.py:135 msgid "Scripting" msgstr "Scripting" -#: flatcamGUI/FlatCAMGUI.py:137 flatcamGUI/FlatCAMGUI.py:739 -#: flatcamGUI/FlatCAMGUI.py:2186 +#: flatcamGUI/FlatCAMGUI.py:138 flatcamGUI/FlatCAMGUI.py:803 +#: flatcamGUI/FlatCAMGUI.py:2374 msgid "New Script ..." msgstr "New Script ..." -#: flatcamGUI/FlatCAMGUI.py:138 flatcamGUI/FlatCAMGUI.py:740 -#: flatcamGUI/FlatCAMGUI.py:2187 +#: flatcamGUI/FlatCAMGUI.py:139 flatcamGUI/FlatCAMGUI.py:805 +#: flatcamGUI/FlatCAMGUI.py:2376 msgid "Open Script ..." msgstr "Open Script ..." -#: flatcamGUI/FlatCAMGUI.py:140 flatcamGUI/FlatCAMGUI.py:741 -#: flatcamGUI/FlatCAMGUI.py:2188 flatcamGUI/FlatCAMGUI.py:3826 +#: flatcamGUI/FlatCAMGUI.py:141 flatcamGUI/FlatCAMGUI.py:807 +#: flatcamGUI/FlatCAMGUI.py:2378 flatcamGUI/FlatCAMGUI.py:4064 msgid "Run Script ..." msgstr "Run Script ..." -#: flatcamGUI/FlatCAMGUI.py:142 flatcamGUI/FlatCAMGUI.py:3828 +#: flatcamGUI/FlatCAMGUI.py:143 flatcamGUI/FlatCAMGUI.py:4066 msgid "" "Will run the opened Tcl Script thus\n" "enabling the automation of certain\n" @@ -5234,47 +5233,47 @@ msgstr "" "enabling the automation of certain\n" "functions of FlatCAM." -#: flatcamGUI/FlatCAMGUI.py:155 +#: flatcamGUI/FlatCAMGUI.py:156 msgid "Import" msgstr "Import" -#: flatcamGUI/FlatCAMGUI.py:157 +#: flatcamGUI/FlatCAMGUI.py:158 msgid "&SVG as Geometry Object ..." msgstr "&SVG as Geometry Object ..." -#: flatcamGUI/FlatCAMGUI.py:160 +#: flatcamGUI/FlatCAMGUI.py:161 msgid "&SVG as Gerber Object ..." msgstr "&SVG as Gerber Object ..." -#: flatcamGUI/FlatCAMGUI.py:165 +#: flatcamGUI/FlatCAMGUI.py:166 msgid "&DXF as Geometry Object ..." msgstr "&DXF as Geometry Object ..." -#: flatcamGUI/FlatCAMGUI.py:168 +#: flatcamGUI/FlatCAMGUI.py:169 msgid "&DXF as Gerber Object ..." msgstr "&DXF as Gerber Object ..." -#: flatcamGUI/FlatCAMGUI.py:172 +#: flatcamGUI/FlatCAMGUI.py:173 msgid "HPGL2 as Geometry Object ..." msgstr "HPGL2 as Geometry Object ..." -#: flatcamGUI/FlatCAMGUI.py:177 +#: flatcamGUI/FlatCAMGUI.py:178 msgid "Export" msgstr "Export" -#: flatcamGUI/FlatCAMGUI.py:180 +#: flatcamGUI/FlatCAMGUI.py:181 msgid "Export &SVG ..." msgstr "Export &SVG ..." -#: flatcamGUI/FlatCAMGUI.py:183 +#: flatcamGUI/FlatCAMGUI.py:184 msgid "Export DXF ..." msgstr "Export DXF ..." -#: flatcamGUI/FlatCAMGUI.py:188 +#: flatcamGUI/FlatCAMGUI.py:189 msgid "Export &PNG ..." msgstr "Export &PNG ..." -#: flatcamGUI/FlatCAMGUI.py:190 +#: flatcamGUI/FlatCAMGUI.py:191 msgid "" "Will export an image in PNG format,\n" "the saved image will contain the visual \n" @@ -5284,11 +5283,11 @@ msgstr "" "the saved image will contain the visual \n" "information currently in FlatCAM Plot Area." -#: flatcamGUI/FlatCAMGUI.py:199 +#: flatcamGUI/FlatCAMGUI.py:200 msgid "Export &Excellon ..." msgstr "Export &Excellon ..." -#: flatcamGUI/FlatCAMGUI.py:201 +#: flatcamGUI/FlatCAMGUI.py:202 msgid "" "Will export an Excellon Object as Excellon file,\n" "the coordinates format, the file units and zeros\n" @@ -5298,11 +5297,11 @@ msgstr "" "the coordinates format, the file units and zeros\n" "are set in Preferences -> Excellon Export." -#: flatcamGUI/FlatCAMGUI.py:208 +#: flatcamGUI/FlatCAMGUI.py:209 msgid "Export &Gerber ..." msgstr "Export &Gerber ..." -#: flatcamGUI/FlatCAMGUI.py:210 +#: flatcamGUI/FlatCAMGUI.py:211 msgid "" "Will export an Gerber Object as Gerber file,\n" "the coordinates format, the file units and zeros\n" @@ -5312,61 +5311,61 @@ msgstr "" "the coordinates format, the file units and zeros\n" "are set in Preferences -> Gerber Export." -#: flatcamGUI/FlatCAMGUI.py:226 +#: flatcamGUI/FlatCAMGUI.py:229 msgid "Backup" msgstr "Backup" -#: flatcamGUI/FlatCAMGUI.py:230 +#: flatcamGUI/FlatCAMGUI.py:233 msgid "Import Preferences from file ..." msgstr "Import Preferences from file ..." -#: flatcamGUI/FlatCAMGUI.py:235 +#: flatcamGUI/FlatCAMGUI.py:238 msgid "Export Preferences to file ..." msgstr "Export Preferences to file ..." -#: flatcamGUI/FlatCAMGUI.py:241 flatcamGUI/FlatCAMGUI.py:612 -#: flatcamGUI/FlatCAMGUI.py:1109 +#: flatcamGUI/FlatCAMGUI.py:244 flatcamGUI/FlatCAMGUI.py:656 +#: flatcamGUI/FlatCAMGUI.py:1225 msgid "Save" msgstr "Save" -#: flatcamGUI/FlatCAMGUI.py:244 +#: flatcamGUI/FlatCAMGUI.py:248 msgid "&Save Project ..." msgstr "&Save Project ..." -#: flatcamGUI/FlatCAMGUI.py:249 +#: flatcamGUI/FlatCAMGUI.py:253 msgid "Save Project &As ...\tCTRL+S" msgstr "Save Project &As ...\tCTRL+S" -#: flatcamGUI/FlatCAMGUI.py:254 +#: flatcamGUI/FlatCAMGUI.py:258 msgid "Save Project C&opy ..." msgstr "Save Project C&opy ..." -#: flatcamGUI/FlatCAMGUI.py:268 +#: flatcamGUI/FlatCAMGUI.py:273 msgid "E&xit" msgstr "E&xit" -#: flatcamGUI/FlatCAMGUI.py:276 flatcamGUI/FlatCAMGUI.py:609 -#: flatcamGUI/FlatCAMGUI.py:1968 +#: flatcamGUI/FlatCAMGUI.py:281 flatcamGUI/FlatCAMGUI.py:650 +#: flatcamGUI/FlatCAMGUI.py:2132 msgid "Edit" msgstr "Edit" -#: flatcamGUI/FlatCAMGUI.py:279 +#: flatcamGUI/FlatCAMGUI.py:285 msgid "Edit Object\tE" msgstr "Edit Object\tE" -#: flatcamGUI/FlatCAMGUI.py:280 +#: flatcamGUI/FlatCAMGUI.py:287 msgid "Close Editor\tCTRL+S" msgstr "Close Editor\tCTRL+S" -#: flatcamGUI/FlatCAMGUI.py:288 +#: flatcamGUI/FlatCAMGUI.py:296 msgid "Conversion" msgstr "Conversion" -#: flatcamGUI/FlatCAMGUI.py:290 +#: flatcamGUI/FlatCAMGUI.py:298 msgid "&Join Geo/Gerber/Exc -> Geo" msgstr "&Join Geo/Gerber/Exc -> Geo" -#: flatcamGUI/FlatCAMGUI.py:292 +#: flatcamGUI/FlatCAMGUI.py:300 msgid "" "Merge a selection of objects, which can be of type:\n" "- Gerber\n" @@ -5380,28 +5379,28 @@ msgstr "" "- Geometry\n" "into a new combo Geometry object." -#: flatcamGUI/FlatCAMGUI.py:299 +#: flatcamGUI/FlatCAMGUI.py:307 msgid "Join Excellon(s) -> Excellon" msgstr "Join Excellon(s) -> Excellon" -#: flatcamGUI/FlatCAMGUI.py:301 +#: flatcamGUI/FlatCAMGUI.py:309 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:304 +#: flatcamGUI/FlatCAMGUI.py:312 msgid "Join Gerber(s) -> Gerber" msgstr "Join Gerber(s) -> Gerber" -#: flatcamGUI/FlatCAMGUI.py:306 +#: flatcamGUI/FlatCAMGUI.py:314 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:311 +#: flatcamGUI/FlatCAMGUI.py:319 msgid "Convert Single to MultiGeo" msgstr "Convert Single to MultiGeo" -#: flatcamGUI/FlatCAMGUI.py:313 +#: flatcamGUI/FlatCAMGUI.py:321 msgid "" "Will convert a Geometry object from single_geometry type\n" "to a multi_geometry type." @@ -5409,11 +5408,11 @@ msgstr "" "Will convert a Geometry object from single_geometry type\n" "to a multi_geometry type." -#: flatcamGUI/FlatCAMGUI.py:317 +#: flatcamGUI/FlatCAMGUI.py:325 msgid "Convert Multi to SingleGeo" msgstr "Convert Multi to SingleGeo" -#: flatcamGUI/FlatCAMGUI.py:319 +#: flatcamGUI/FlatCAMGUI.py:327 msgid "" "Will convert a Geometry object from multi_geometry type\n" "to a single_geometry type." @@ -5421,702 +5420,702 @@ msgstr "" "Will convert a Geometry object from multi_geometry type\n" "to a single_geometry type." -#: flatcamGUI/FlatCAMGUI.py:325 +#: flatcamGUI/FlatCAMGUI.py:334 msgid "Convert Any to Geo" msgstr "Convert Any to Geo" -#: flatcamGUI/FlatCAMGUI.py:327 +#: flatcamGUI/FlatCAMGUI.py:337 msgid "Convert Any to Gerber" msgstr "Convert Any to Gerber" -#: flatcamGUI/FlatCAMGUI.py:332 +#: flatcamGUI/FlatCAMGUI.py:343 msgid "&Copy\tCTRL+C" msgstr "&Copy\tCTRL+C" -#: flatcamGUI/FlatCAMGUI.py:336 +#: flatcamGUI/FlatCAMGUI.py:348 msgid "&Delete\tDEL" msgstr "&Delete\tDEL" -#: flatcamGUI/FlatCAMGUI.py:340 +#: flatcamGUI/FlatCAMGUI.py:353 msgid "Se&t Origin\tO" msgstr "Se&t Origin\tO" -#: flatcamGUI/FlatCAMGUI.py:341 +#: flatcamGUI/FlatCAMGUI.py:355 msgid "Jump to Location\tJ" msgstr "Jump to Location\tJ" -#: flatcamGUI/FlatCAMGUI.py:346 +#: flatcamGUI/FlatCAMGUI.py:360 msgid "Toggle Units\tQ" msgstr "Toggle Units\tQ" -#: flatcamGUI/FlatCAMGUI.py:347 +#: flatcamGUI/FlatCAMGUI.py:362 msgid "&Select All\tCTRL+A" msgstr "&Select All\tCTRL+A" -#: flatcamGUI/FlatCAMGUI.py:351 +#: flatcamGUI/FlatCAMGUI.py:367 msgid "&Preferences\tSHIFT+P" msgstr "&Preferences\tSHIFT+P" -#: flatcamGUI/FlatCAMGUI.py:357 flatcamTools/ToolProperties.py:153 +#: flatcamGUI/FlatCAMGUI.py:373 flatcamTools/ToolProperties.py:153 msgid "Options" msgstr "Options" -#: flatcamGUI/FlatCAMGUI.py:359 +#: flatcamGUI/FlatCAMGUI.py:375 msgid "&Rotate Selection\tSHIFT+(R)" msgstr "&Rotate Selection\tSHIFT+(R)" -#: flatcamGUI/FlatCAMGUI.py:364 +#: flatcamGUI/FlatCAMGUI.py:380 msgid "&Skew on X axis\tSHIFT+X" msgstr "&Skew on X axis\tSHIFT+X" -#: flatcamGUI/FlatCAMGUI.py:366 +#: flatcamGUI/FlatCAMGUI.py:382 msgid "S&kew on Y axis\tSHIFT+Y" msgstr "S&kew on Y axis\tSHIFT+Y" -#: flatcamGUI/FlatCAMGUI.py:371 +#: flatcamGUI/FlatCAMGUI.py:387 msgid "Flip on &X axis\tX" msgstr "Flip on &X axis\tX" -#: flatcamGUI/FlatCAMGUI.py:373 +#: flatcamGUI/FlatCAMGUI.py:389 msgid "Flip on &Y axis\tY" msgstr "Flip on &Y axis\tY" -#: flatcamGUI/FlatCAMGUI.py:378 +#: flatcamGUI/FlatCAMGUI.py:394 msgid "View source\tALT+S" msgstr "View source\tALT+S" -#: flatcamGUI/FlatCAMGUI.py:380 +#: flatcamGUI/FlatCAMGUI.py:396 msgid "Tools DataBase\tCTRL+D" msgstr "Tools DataBase\tCTRL+D" -#: flatcamGUI/FlatCAMGUI.py:387 flatcamGUI/FlatCAMGUI.py:1904 +#: flatcamGUI/FlatCAMGUI.py:403 flatcamGUI/FlatCAMGUI.py:2029 msgid "View" msgstr "View" -#: flatcamGUI/FlatCAMGUI.py:388 +#: flatcamGUI/FlatCAMGUI.py:405 msgid "Enable all plots\tALT+1" msgstr "Enable all plots\tALT+1" -#: flatcamGUI/FlatCAMGUI.py:390 +#: flatcamGUI/FlatCAMGUI.py:407 msgid "Disable all plots\tALT+2" msgstr "Disable all plots\tALT+2" -#: flatcamGUI/FlatCAMGUI.py:392 +#: flatcamGUI/FlatCAMGUI.py:409 msgid "Disable non-selected\tALT+3" msgstr "Disable non-selected\tALT+3" -#: flatcamGUI/FlatCAMGUI.py:395 +#: flatcamGUI/FlatCAMGUI.py:413 msgid "&Zoom Fit\tV" msgstr "&Zoom Fit\tV" -#: flatcamGUI/FlatCAMGUI.py:396 +#: flatcamGUI/FlatCAMGUI.py:415 msgid "&Zoom In\t=" msgstr "&Zoom In\t=" -#: flatcamGUI/FlatCAMGUI.py:397 +#: flatcamGUI/FlatCAMGUI.py:417 msgid "&Zoom Out\t-" msgstr "&Zoom Out\t-" -#: flatcamGUI/FlatCAMGUI.py:401 +#: flatcamGUI/FlatCAMGUI.py:422 msgid "Redraw All\tF5" msgstr "Redraw All\tF5" -#: flatcamGUI/FlatCAMGUI.py:405 +#: flatcamGUI/FlatCAMGUI.py:426 msgid "Toggle Code Editor\tSHIFT+E" msgstr "Toggle Code Editor\tSHIFT+E" -#: flatcamGUI/FlatCAMGUI.py:408 +#: flatcamGUI/FlatCAMGUI.py:429 msgid "&Toggle FullScreen\tALT+F10" msgstr "&Toggle FullScreen\tALT+F10" -#: flatcamGUI/FlatCAMGUI.py:410 +#: flatcamGUI/FlatCAMGUI.py:431 msgid "&Toggle Plot Area\tCTRL+F10" msgstr "&Toggle Plot Area\tCTRL+F10" -#: flatcamGUI/FlatCAMGUI.py:412 +#: flatcamGUI/FlatCAMGUI.py:433 msgid "&Toggle Project/Sel/Tool\t`" msgstr "&Toggle Project/Sel/Tool\t`" -#: flatcamGUI/FlatCAMGUI.py:416 +#: flatcamGUI/FlatCAMGUI.py:437 msgid "&Toggle Grid Snap\tG" msgstr "&Toggle Grid Snap\tG" -#: flatcamGUI/FlatCAMGUI.py:418 +#: flatcamGUI/FlatCAMGUI.py:439 msgid "&Toggle Grid Lines\tALT+G" msgstr "&Toggle Grid Lines\tALT+G" -#: flatcamGUI/FlatCAMGUI.py:419 +#: flatcamGUI/FlatCAMGUI.py:441 msgid "&Toggle Axis\tSHIFT+G" msgstr "&Toggle Axis\tSHIFT+G" -#: flatcamGUI/FlatCAMGUI.py:422 +#: flatcamGUI/FlatCAMGUI.py:443 msgid "Toggle Workspace\tSHIFT+W" msgstr "Toggle Workspace\tSHIFT+W" -#: flatcamGUI/FlatCAMGUI.py:427 +#: flatcamGUI/FlatCAMGUI.py:448 msgid "Objects" msgstr "Objects" -#: flatcamGUI/FlatCAMGUI.py:440 +#: flatcamGUI/FlatCAMGUI.py:462 msgid "&Command Line\tS" msgstr "&Command Line\tS" -#: flatcamGUI/FlatCAMGUI.py:445 +#: flatcamGUI/FlatCAMGUI.py:467 msgid "Help" msgstr "Help" -#: flatcamGUI/FlatCAMGUI.py:446 +#: flatcamGUI/FlatCAMGUI.py:469 msgid "Online Help\tF1" msgstr "Online Help\tF1" -#: flatcamGUI/FlatCAMGUI.py:454 +#: flatcamGUI/FlatCAMGUI.py:479 msgid "Report a bug" msgstr "Report a bug" -#: flatcamGUI/FlatCAMGUI.py:457 +#: flatcamGUI/FlatCAMGUI.py:482 msgid "Excellon Specification" msgstr "Excellon Specification" -#: flatcamGUI/FlatCAMGUI.py:459 +#: flatcamGUI/FlatCAMGUI.py:484 msgid "Gerber Specification" msgstr "Gerber Specification" -#: flatcamGUI/FlatCAMGUI.py:464 +#: flatcamGUI/FlatCAMGUI.py:489 msgid "Shortcuts List\tF3" msgstr "Shortcuts List\tF3" -#: flatcamGUI/FlatCAMGUI.py:465 +#: flatcamGUI/FlatCAMGUI.py:491 msgid "YouTube Channel\tF4" msgstr "YouTube Channel\tF4" -#: flatcamGUI/FlatCAMGUI.py:476 +#: flatcamGUI/FlatCAMGUI.py:502 msgid "Add Circle\tO" msgstr "Add Circle\tO" -#: flatcamGUI/FlatCAMGUI.py:478 +#: flatcamGUI/FlatCAMGUI.py:505 msgid "Add Arc\tA" msgstr "Add Arc\tA" -#: flatcamGUI/FlatCAMGUI.py:481 +#: flatcamGUI/FlatCAMGUI.py:508 msgid "Add Rectangle\tR" msgstr "Add Rectangle\tR" -#: flatcamGUI/FlatCAMGUI.py:484 +#: flatcamGUI/FlatCAMGUI.py:511 msgid "Add Polygon\tN" msgstr "Add Polygon\tN" -#: flatcamGUI/FlatCAMGUI.py:486 +#: flatcamGUI/FlatCAMGUI.py:514 msgid "Add Path\tP" msgstr "Add Path\tP" -#: flatcamGUI/FlatCAMGUI.py:488 +#: flatcamGUI/FlatCAMGUI.py:517 msgid "Add Text\tT" msgstr "Add Text\tT" -#: flatcamGUI/FlatCAMGUI.py:491 +#: flatcamGUI/FlatCAMGUI.py:520 msgid "Polygon Union\tU" msgstr "Polygon Union\tU" -#: flatcamGUI/FlatCAMGUI.py:493 +#: flatcamGUI/FlatCAMGUI.py:522 msgid "Polygon Intersection\tE" msgstr "Polygon Intersection\tE" -#: flatcamGUI/FlatCAMGUI.py:495 +#: flatcamGUI/FlatCAMGUI.py:524 msgid "Polygon Subtraction\tS" msgstr "Polygon Subtraction\tS" -#: flatcamGUI/FlatCAMGUI.py:499 +#: flatcamGUI/FlatCAMGUI.py:528 msgid "Cut Path\tX" msgstr "Cut Path\tX" -#: flatcamGUI/FlatCAMGUI.py:501 +#: flatcamGUI/FlatCAMGUI.py:531 msgid "Copy Geom\tC" msgstr "Copy Geom\tC" -#: flatcamGUI/FlatCAMGUI.py:503 +#: flatcamGUI/FlatCAMGUI.py:533 msgid "Delete Shape\tDEL" msgstr "Delete Shape\tDEL" -#: flatcamGUI/FlatCAMGUI.py:506 flatcamGUI/FlatCAMGUI.py:588 +#: flatcamGUI/FlatCAMGUI.py:537 flatcamGUI/FlatCAMGUI.py:624 msgid "Move\tM" msgstr "Move\tM" -#: flatcamGUI/FlatCAMGUI.py:508 +#: flatcamGUI/FlatCAMGUI.py:539 msgid "Buffer Tool\tB" msgstr "Buffer Tool\tB" -#: flatcamGUI/FlatCAMGUI.py:511 +#: flatcamGUI/FlatCAMGUI.py:542 msgid "Paint Tool\tI" msgstr "Paint Tool\tI" -#: flatcamGUI/FlatCAMGUI.py:514 +#: flatcamGUI/FlatCAMGUI.py:545 msgid "Transform Tool\tALT+R" msgstr "Transform Tool\tALT+R" -#: flatcamGUI/FlatCAMGUI.py:518 +#: flatcamGUI/FlatCAMGUI.py:549 msgid "Toggle Corner Snap\tK" msgstr "Toggle Corner Snap\tK" -#: flatcamGUI/FlatCAMGUI.py:524 +#: flatcamGUI/FlatCAMGUI.py:555 msgid ">Excellon Editor<" msgstr ">Excellon Editor<" -#: flatcamGUI/FlatCAMGUI.py:528 +#: flatcamGUI/FlatCAMGUI.py:559 msgid "Add Drill Array\tA" msgstr "Add Drill Array\tA" -#: flatcamGUI/FlatCAMGUI.py:530 +#: flatcamGUI/FlatCAMGUI.py:561 msgid "Add Drill\tD" msgstr "Add Drill\tD" -#: flatcamGUI/FlatCAMGUI.py:534 +#: flatcamGUI/FlatCAMGUI.py:565 msgid "Add Slot Array\tQ" msgstr "Add Slot Array\tQ" -#: flatcamGUI/FlatCAMGUI.py:536 +#: flatcamGUI/FlatCAMGUI.py:567 msgid "Add Slot\tW" msgstr "Add Slot\tW" -#: flatcamGUI/FlatCAMGUI.py:540 +#: flatcamGUI/FlatCAMGUI.py:571 msgid "Resize Drill(S)\tR" msgstr "Resize Drill(S)\tR" -#: flatcamGUI/FlatCAMGUI.py:542 flatcamGUI/FlatCAMGUI.py:583 +#: flatcamGUI/FlatCAMGUI.py:574 flatcamGUI/FlatCAMGUI.py:618 msgid "Copy\tC" msgstr "Copy\tC" -#: flatcamGUI/FlatCAMGUI.py:544 flatcamGUI/FlatCAMGUI.py:585 +#: flatcamGUI/FlatCAMGUI.py:576 flatcamGUI/FlatCAMGUI.py:620 msgid "Delete\tDEL" msgstr "Delete\tDEL" -#: flatcamGUI/FlatCAMGUI.py:549 +#: flatcamGUI/FlatCAMGUI.py:581 msgid "Move Drill(s)\tM" msgstr "Move Drill(s)\tM" -#: flatcamGUI/FlatCAMGUI.py:554 +#: flatcamGUI/FlatCAMGUI.py:586 msgid ">Gerber Editor<" msgstr ">Gerber Editor<" -#: flatcamGUI/FlatCAMGUI.py:558 +#: flatcamGUI/FlatCAMGUI.py:590 msgid "Add Pad\tP" msgstr "Add Pad\tP" -#: flatcamGUI/FlatCAMGUI.py:560 +#: flatcamGUI/FlatCAMGUI.py:592 msgid "Add Pad Array\tA" msgstr "Add Pad Array\tA" -#: flatcamGUI/FlatCAMGUI.py:562 +#: flatcamGUI/FlatCAMGUI.py:594 msgid "Add Track\tT" msgstr "Add Track\tT" -#: flatcamGUI/FlatCAMGUI.py:564 +#: flatcamGUI/FlatCAMGUI.py:596 msgid "Add Region\tN" msgstr "Add Region\tN" -#: flatcamGUI/FlatCAMGUI.py:568 +#: flatcamGUI/FlatCAMGUI.py:600 msgid "Poligonize\tALT+N" msgstr "Poligonize\tALT+N" -#: flatcamGUI/FlatCAMGUI.py:570 +#: flatcamGUI/FlatCAMGUI.py:602 msgid "Add SemiDisc\tE" msgstr "Add SemiDisc\tE" -#: flatcamGUI/FlatCAMGUI.py:571 +#: flatcamGUI/FlatCAMGUI.py:604 msgid "Add Disc\tD" msgstr "Add Disc\tD" -#: flatcamGUI/FlatCAMGUI.py:573 +#: flatcamGUI/FlatCAMGUI.py:606 msgid "Buffer\tB" msgstr "Buffer\tB" -#: flatcamGUI/FlatCAMGUI.py:574 +#: flatcamGUI/FlatCAMGUI.py:608 msgid "Scale\tS" msgstr "Scale\tS" -#: flatcamGUI/FlatCAMGUI.py:576 +#: flatcamGUI/FlatCAMGUI.py:610 msgid "Mark Area\tALT+A" msgstr "Mark Area\tALT+A" -#: flatcamGUI/FlatCAMGUI.py:578 +#: flatcamGUI/FlatCAMGUI.py:612 msgid "Eraser\tCTRL+E" msgstr "Eraser\tCTRL+E" -#: flatcamGUI/FlatCAMGUI.py:580 +#: flatcamGUI/FlatCAMGUI.py:614 msgid "Transform\tALT+R" msgstr "Transform\tALT+R" -#: flatcamGUI/FlatCAMGUI.py:603 +#: flatcamGUI/FlatCAMGUI.py:640 msgid "Enable Plot" msgstr "Enable Plot" -#: flatcamGUI/FlatCAMGUI.py:604 +#: flatcamGUI/FlatCAMGUI.py:642 msgid "Disable Plot" msgstr "Disable Plot" -#: flatcamGUI/FlatCAMGUI.py:606 +#: flatcamGUI/FlatCAMGUI.py:645 msgid "Generate CNC" msgstr "Generate CNC" -#: flatcamGUI/FlatCAMGUI.py:607 +#: flatcamGUI/FlatCAMGUI.py:647 msgid "View Source" msgstr "View Source" -#: flatcamGUI/FlatCAMGUI.py:615 flatcamGUI/FlatCAMGUI.py:1974 +#: flatcamGUI/FlatCAMGUI.py:660 flatcamGUI/FlatCAMGUI.py:2141 #: flatcamTools/ToolProperties.py:30 msgid "Properties" msgstr "Properties" -#: flatcamGUI/FlatCAMGUI.py:644 +#: flatcamGUI/FlatCAMGUI.py:689 msgid "File Toolbar" msgstr "File Toolbar" -#: flatcamGUI/FlatCAMGUI.py:648 +#: flatcamGUI/FlatCAMGUI.py:693 msgid "Edit Toolbar" msgstr "Edit Toolbar" -#: flatcamGUI/FlatCAMGUI.py:652 +#: flatcamGUI/FlatCAMGUI.py:697 msgid "View Toolbar" msgstr "View Toolbar" -#: flatcamGUI/FlatCAMGUI.py:656 +#: flatcamGUI/FlatCAMGUI.py:701 msgid "Shell Toolbar" msgstr "Shell Toolbar" -#: flatcamGUI/FlatCAMGUI.py:660 +#: flatcamGUI/FlatCAMGUI.py:705 msgid "Tools Toolbar" msgstr "Tools Toolbar" -#: flatcamGUI/FlatCAMGUI.py:664 +#: flatcamGUI/FlatCAMGUI.py:709 msgid "Excellon Editor Toolbar" msgstr "Excellon Editor Toolbar" -#: flatcamGUI/FlatCAMGUI.py:670 +#: flatcamGUI/FlatCAMGUI.py:715 msgid "Geometry Editor Toolbar" msgstr "Geometry Editor Toolbar" -#: flatcamGUI/FlatCAMGUI.py:674 +#: flatcamGUI/FlatCAMGUI.py:719 msgid "Gerber Editor Toolbar" msgstr "Gerber Editor Toolbar" -#: flatcamGUI/FlatCAMGUI.py:678 +#: flatcamGUI/FlatCAMGUI.py:723 msgid "Grid Toolbar" msgstr "Grid Toolbar" -#: flatcamGUI/FlatCAMGUI.py:699 flatcamGUI/FlatCAMGUI.py:2152 +#: flatcamGUI/FlatCAMGUI.py:746 flatcamGUI/FlatCAMGUI.py:2322 msgid "Open project" msgstr "Open project" -#: flatcamGUI/FlatCAMGUI.py:700 flatcamGUI/FlatCAMGUI.py:2153 +#: flatcamGUI/FlatCAMGUI.py:748 flatcamGUI/FlatCAMGUI.py:2324 msgid "Save project" msgstr "Save project" -#: flatcamGUI/FlatCAMGUI.py:705 flatcamGUI/FlatCAMGUI.py:2156 +#: flatcamGUI/FlatCAMGUI.py:754 flatcamGUI/FlatCAMGUI.py:2328 msgid "New Blank Geometry" msgstr "New Blank Geometry" -#: flatcamGUI/FlatCAMGUI.py:706 flatcamGUI/FlatCAMGUI.py:2157 +#: flatcamGUI/FlatCAMGUI.py:756 flatcamGUI/FlatCAMGUI.py:2330 msgid "New Blank Gerber" msgstr "New Blank Gerber" -#: flatcamGUI/FlatCAMGUI.py:707 flatcamGUI/FlatCAMGUI.py:2158 +#: flatcamGUI/FlatCAMGUI.py:758 flatcamGUI/FlatCAMGUI.py:2332 msgid "New Blank Excellon" msgstr "New Blank Excellon" -#: flatcamGUI/FlatCAMGUI.py:711 flatcamGUI/FlatCAMGUI.py:2162 +#: flatcamGUI/FlatCAMGUI.py:763 flatcamGUI/FlatCAMGUI.py:2338 msgid "Save Object and close the Editor" msgstr "Save Object and close the Editor" -#: flatcamGUI/FlatCAMGUI.py:716 flatcamGUI/FlatCAMGUI.py:2167 +#: flatcamGUI/FlatCAMGUI.py:770 flatcamGUI/FlatCAMGUI.py:2345 msgid "&Delete" msgstr "&Delete" -#: flatcamGUI/FlatCAMGUI.py:718 flatcamGUI/FlatCAMGUI.py:1466 -#: flatcamGUI/FlatCAMGUI.py:1665 flatcamGUI/FlatCAMGUI.py:2169 +#: flatcamGUI/FlatCAMGUI.py:773 flatcamGUI/FlatCAMGUI.py:1582 +#: flatcamGUI/FlatCAMGUI.py:1781 flatcamGUI/FlatCAMGUI.py:2348 #: flatcamTools/ToolDistance.py:30 flatcamTools/ToolDistance.py:160 msgid "Distance Tool" msgstr "Distance Tool" -#: flatcamGUI/FlatCAMGUI.py:720 flatcamGUI/FlatCAMGUI.py:2171 +#: flatcamGUI/FlatCAMGUI.py:775 flatcamGUI/FlatCAMGUI.py:2350 msgid "Distance Min Tool" msgstr "Distance Min Tool" -#: flatcamGUI/FlatCAMGUI.py:721 flatcamGUI/FlatCAMGUI.py:1459 -#: flatcamGUI/FlatCAMGUI.py:2172 +#: flatcamGUI/FlatCAMGUI.py:777 flatcamGUI/FlatCAMGUI.py:1575 +#: flatcamGUI/FlatCAMGUI.py:2352 msgid "Set Origin" msgstr "Set Origin" -#: flatcamGUI/FlatCAMGUI.py:722 flatcamGUI/FlatCAMGUI.py:2173 +#: flatcamGUI/FlatCAMGUI.py:779 flatcamGUI/FlatCAMGUI.py:2354 msgid "Jump to Location" msgstr "Jump to Location" -#: flatcamGUI/FlatCAMGUI.py:727 flatcamGUI/FlatCAMGUI.py:2176 +#: flatcamGUI/FlatCAMGUI.py:785 flatcamGUI/FlatCAMGUI.py:2358 msgid "&Replot" msgstr "&Replot" -#: flatcamGUI/FlatCAMGUI.py:728 flatcamGUI/FlatCAMGUI.py:2177 +#: flatcamGUI/FlatCAMGUI.py:787 flatcamGUI/FlatCAMGUI.py:2360 msgid "&Clear plot" msgstr "&Clear plot" -#: flatcamGUI/FlatCAMGUI.py:729 flatcamGUI/FlatCAMGUI.py:1462 -#: flatcamGUI/FlatCAMGUI.py:2178 +#: flatcamGUI/FlatCAMGUI.py:789 flatcamGUI/FlatCAMGUI.py:1578 +#: flatcamGUI/FlatCAMGUI.py:2362 msgid "Zoom In" msgstr "Zoom In" -#: flatcamGUI/FlatCAMGUI.py:730 flatcamGUI/FlatCAMGUI.py:1462 -#: flatcamGUI/FlatCAMGUI.py:2179 +#: flatcamGUI/FlatCAMGUI.py:791 flatcamGUI/FlatCAMGUI.py:1578 +#: flatcamGUI/FlatCAMGUI.py:2364 msgid "Zoom Out" msgstr "Zoom Out" -#: flatcamGUI/FlatCAMGUI.py:731 flatcamGUI/FlatCAMGUI.py:1461 -#: flatcamGUI/FlatCAMGUI.py:1905 flatcamGUI/FlatCAMGUI.py:2180 +#: flatcamGUI/FlatCAMGUI.py:793 flatcamGUI/FlatCAMGUI.py:1577 +#: flatcamGUI/FlatCAMGUI.py:2031 flatcamGUI/FlatCAMGUI.py:2366 msgid "Zoom Fit" msgstr "Zoom Fit" -#: flatcamGUI/FlatCAMGUI.py:738 flatcamGUI/FlatCAMGUI.py:2185 +#: flatcamGUI/FlatCAMGUI.py:801 flatcamGUI/FlatCAMGUI.py:2372 msgid "&Command Line" msgstr "&Command Line" -#: flatcamGUI/FlatCAMGUI.py:746 flatcamGUI/FlatCAMGUI.py:2191 +#: flatcamGUI/FlatCAMGUI.py:813 flatcamGUI/FlatCAMGUI.py:2382 msgid "2Sided Tool" msgstr "2Sided Tool" -#: flatcamGUI/FlatCAMGUI.py:747 flatcamGUI/ObjectUI.py:577 +#: flatcamGUI/FlatCAMGUI.py:815 flatcamGUI/ObjectUI.py:588 #: flatcamTools/ToolCutOut.py:434 msgid "Cutout Tool" msgstr "Cutout Tool" -#: flatcamGUI/FlatCAMGUI.py:748 flatcamGUI/FlatCAMGUI.py:2193 -#: flatcamGUI/ObjectUI.py:555 flatcamGUI/ObjectUI.py:1712 -#: flatcamTools/ToolNonCopperClear.py:637 +#: flatcamGUI/FlatCAMGUI.py:817 flatcamGUI/FlatCAMGUI.py:2386 +#: flatcamGUI/ObjectUI.py:566 flatcamGUI/ObjectUI.py:1751 +#: flatcamTools/ToolNonCopperClear.py:638 msgid "NCC Tool" msgstr "NCC Tool" -#: flatcamGUI/FlatCAMGUI.py:752 flatcamGUI/FlatCAMGUI.py:2197 +#: flatcamGUI/FlatCAMGUI.py:823 flatcamGUI/FlatCAMGUI.py:2392 msgid "Panel Tool" msgstr "Panel Tool" -#: flatcamGUI/FlatCAMGUI.py:753 flatcamGUI/FlatCAMGUI.py:2198 +#: flatcamGUI/FlatCAMGUI.py:825 flatcamGUI/FlatCAMGUI.py:2394 #: flatcamTools/ToolFilm.py:578 msgid "Film Tool" msgstr "Film Tool" -#: flatcamGUI/FlatCAMGUI.py:754 flatcamGUI/FlatCAMGUI.py:2200 +#: flatcamGUI/FlatCAMGUI.py:827 flatcamGUI/FlatCAMGUI.py:2397 #: flatcamTools/ToolSolderPaste.py:547 msgid "SolderPaste Tool" msgstr "SolderPaste Tool" -#: flatcamGUI/FlatCAMGUI.py:755 flatcamGUI/FlatCAMGUI.py:2201 +#: flatcamGUI/FlatCAMGUI.py:829 flatcamGUI/FlatCAMGUI.py:2399 #: flatcamTools/ToolSub.py:35 msgid "Subtract Tool" msgstr "Subtract Tool" -#: flatcamGUI/FlatCAMGUI.py:756 flatcamTools/ToolRulesCheck.py:607 +#: flatcamGUI/FlatCAMGUI.py:831 flatcamTools/ToolRulesCheck.py:607 msgid "Rules Tool" msgstr "Rules Tool" -#: flatcamGUI/FlatCAMGUI.py:757 flatcamGUI/FlatCAMGUI.py:1477 +#: flatcamGUI/FlatCAMGUI.py:833 flatcamGUI/FlatCAMGUI.py:1593 #: flatcamTools/ToolOptimal.py:34 flatcamTools/ToolOptimal.py:310 msgid "Optimal Tool" msgstr "Optimal Tool" -#: flatcamGUI/FlatCAMGUI.py:761 flatcamGUI/FlatCAMGUI.py:1475 -#: flatcamGUI/FlatCAMGUI.py:2206 +#: flatcamGUI/FlatCAMGUI.py:838 flatcamGUI/FlatCAMGUI.py:1591 +#: flatcamGUI/FlatCAMGUI.py:2404 msgid "Calculators Tool" msgstr "Calculators Tool" -#: flatcamGUI/FlatCAMGUI.py:763 flatcamGUI/FlatCAMGUI.py:1478 -#: flatcamGUI/FlatCAMGUI.py:2208 flatcamTools/ToolQRCode.py:43 +#: flatcamGUI/FlatCAMGUI.py:842 flatcamGUI/FlatCAMGUI.py:1594 +#: flatcamGUI/FlatCAMGUI.py:2408 flatcamTools/ToolQRCode.py:43 #: flatcamTools/ToolQRCode.py:382 msgid "QRCode Tool" msgstr "QRCode Tool" -#: flatcamGUI/FlatCAMGUI.py:765 flatcamGUI/FlatCAMGUI.py:2210 +#: flatcamGUI/FlatCAMGUI.py:844 flatcamGUI/FlatCAMGUI.py:2410 #: flatcamTools/ToolCopperThieving.py:40 flatcamTools/ToolCopperThieving.py:566 msgid "Copper Thieving Tool" msgstr "Copper Thieving Tool" -#: flatcamGUI/FlatCAMGUI.py:767 flatcamGUI/FlatCAMGUI.py:1475 -#: flatcamGUI/FlatCAMGUI.py:2212 flatcamTools/ToolFiducials.py:33 +#: flatcamGUI/FlatCAMGUI.py:847 flatcamGUI/FlatCAMGUI.py:1591 +#: flatcamGUI/FlatCAMGUI.py:2413 flatcamTools/ToolFiducials.py:33 #: flatcamTools/ToolFiducials.py:393 msgid "Fiducials Tool" msgstr "Fiducials Tool" -#: flatcamGUI/FlatCAMGUI.py:768 flatcamGUI/FlatCAMGUI.py:2213 +#: flatcamGUI/FlatCAMGUI.py:849 flatcamGUI/FlatCAMGUI.py:2415 #: flatcamTools/ToolCalibration.py:37 flatcamTools/ToolCalibration.py:762 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 +#: flatcamGUI/FlatCAMGUI.py:855 flatcamGUI/FlatCAMGUI.py:881 +#: flatcamGUI/FlatCAMGUI.py:933 flatcamGUI/FlatCAMGUI.py:2419 +#: flatcamGUI/FlatCAMGUI.py:2493 msgid "Select" msgstr "Select" -#: flatcamGUI/FlatCAMGUI.py:774 flatcamGUI/FlatCAMGUI.py:2217 +#: flatcamGUI/FlatCAMGUI.py:857 flatcamGUI/FlatCAMGUI.py:2421 msgid "Add Drill Hole" msgstr "Add Drill Hole" -#: flatcamGUI/FlatCAMGUI.py:776 flatcamGUI/FlatCAMGUI.py:2219 +#: flatcamGUI/FlatCAMGUI.py:859 flatcamGUI/FlatCAMGUI.py:2423 msgid "Add Drill Hole Array" msgstr "Add Drill Hole Array" -#: flatcamGUI/FlatCAMGUI.py:777 flatcamGUI/FlatCAMGUI.py:1750 -#: flatcamGUI/FlatCAMGUI.py:1960 flatcamGUI/FlatCAMGUI.py:2221 +#: flatcamGUI/FlatCAMGUI.py:861 flatcamGUI/FlatCAMGUI.py:1866 +#: flatcamGUI/FlatCAMGUI.py:2119 flatcamGUI/FlatCAMGUI.py:2427 msgid "Add Slot" msgstr "Add Slot" -#: flatcamGUI/FlatCAMGUI.py:779 flatcamGUI/FlatCAMGUI.py:1749 -#: flatcamGUI/FlatCAMGUI.py:1961 flatcamGUI/FlatCAMGUI.py:2223 +#: flatcamGUI/FlatCAMGUI.py:863 flatcamGUI/FlatCAMGUI.py:1865 +#: flatcamGUI/FlatCAMGUI.py:2121 flatcamGUI/FlatCAMGUI.py:2429 msgid "Add Slot Array" msgstr "Add Slot Array" -#: flatcamGUI/FlatCAMGUI.py:780 flatcamGUI/FlatCAMGUI.py:1963 -#: flatcamGUI/FlatCAMGUI.py:2220 +#: flatcamGUI/FlatCAMGUI.py:865 flatcamGUI/FlatCAMGUI.py:2124 +#: flatcamGUI/FlatCAMGUI.py:2425 msgid "Resize Drill" msgstr "Resize Drill" -#: flatcamGUI/FlatCAMGUI.py:783 flatcamGUI/FlatCAMGUI.py:2226 +#: flatcamGUI/FlatCAMGUI.py:869 flatcamGUI/FlatCAMGUI.py:2433 msgid "Copy Drill" msgstr "Copy Drill" -#: flatcamGUI/FlatCAMGUI.py:784 flatcamGUI/FlatCAMGUI.py:2228 +#: flatcamGUI/FlatCAMGUI.py:871 flatcamGUI/FlatCAMGUI.py:2435 msgid "Delete Drill" msgstr "Delete Drill" -#: flatcamGUI/FlatCAMGUI.py:787 flatcamGUI/FlatCAMGUI.py:2231 +#: flatcamGUI/FlatCAMGUI.py:875 flatcamGUI/FlatCAMGUI.py:2439 msgid "Move Drill" msgstr "Move Drill" -#: flatcamGUI/FlatCAMGUI.py:793 flatcamGUI/FlatCAMGUI.py:2235 +#: flatcamGUI/FlatCAMGUI.py:883 flatcamGUI/FlatCAMGUI.py:2445 msgid "Add Circle" msgstr "Add Circle" -#: flatcamGUI/FlatCAMGUI.py:794 flatcamGUI/FlatCAMGUI.py:2236 +#: flatcamGUI/FlatCAMGUI.py:885 flatcamGUI/FlatCAMGUI.py:2447 msgid "Add Arc" msgstr "Add Arc" -#: flatcamGUI/FlatCAMGUI.py:796 flatcamGUI/FlatCAMGUI.py:2238 +#: flatcamGUI/FlatCAMGUI.py:887 flatcamGUI/FlatCAMGUI.py:2449 msgid "Add Rectangle" msgstr "Add Rectangle" -#: flatcamGUI/FlatCAMGUI.py:799 flatcamGUI/FlatCAMGUI.py:2241 +#: flatcamGUI/FlatCAMGUI.py:891 flatcamGUI/FlatCAMGUI.py:2453 msgid "Add Path" msgstr "Add Path" -#: flatcamGUI/FlatCAMGUI.py:800 flatcamGUI/FlatCAMGUI.py:2243 +#: flatcamGUI/FlatCAMGUI.py:893 flatcamGUI/FlatCAMGUI.py:2455 msgid "Add Polygon" msgstr "Add Polygon" -#: flatcamGUI/FlatCAMGUI.py:802 flatcamGUI/FlatCAMGUI.py:2245 +#: flatcamGUI/FlatCAMGUI.py:896 flatcamGUI/FlatCAMGUI.py:2458 msgid "Add Text" msgstr "Add Text" -#: flatcamGUI/FlatCAMGUI.py:803 flatcamGUI/FlatCAMGUI.py:2246 +#: flatcamGUI/FlatCAMGUI.py:898 flatcamGUI/FlatCAMGUI.py:2460 msgid "Add Buffer" msgstr "Add Buffer" -#: flatcamGUI/FlatCAMGUI.py:804 flatcamGUI/FlatCAMGUI.py:2247 +#: flatcamGUI/FlatCAMGUI.py:900 flatcamGUI/FlatCAMGUI.py:2462 msgid "Paint Shape" msgstr "Paint Shape" -#: flatcamGUI/FlatCAMGUI.py:805 flatcamGUI/FlatCAMGUI.py:847 -#: flatcamGUI/FlatCAMGUI.py:1922 flatcamGUI/FlatCAMGUI.py:1950 -#: flatcamGUI/FlatCAMGUI.py:2248 flatcamGUI/FlatCAMGUI.py:2287 +#: flatcamGUI/FlatCAMGUI.py:902 flatcamGUI/FlatCAMGUI.py:959 +#: flatcamGUI/FlatCAMGUI.py:2060 flatcamGUI/FlatCAMGUI.py:2105 +#: flatcamGUI/FlatCAMGUI.py:2464 flatcamGUI/FlatCAMGUI.py:2518 msgid "Eraser" msgstr "Eraser" -#: flatcamGUI/FlatCAMGUI.py:808 flatcamGUI/FlatCAMGUI.py:2251 +#: flatcamGUI/FlatCAMGUI.py:906 flatcamGUI/FlatCAMGUI.py:2468 msgid "Polygon Union" msgstr "Polygon Union" -#: flatcamGUI/FlatCAMGUI.py:809 flatcamGUI/FlatCAMGUI.py:2252 +#: flatcamGUI/FlatCAMGUI.py:908 flatcamGUI/FlatCAMGUI.py:2470 msgid "Polygon Explode" msgstr "Polygon Explode" -#: flatcamGUI/FlatCAMGUI.py:812 flatcamGUI/FlatCAMGUI.py:2255 +#: flatcamGUI/FlatCAMGUI.py:911 flatcamGUI/FlatCAMGUI.py:2473 msgid "Polygon Intersection" msgstr "Polygon Intersection" -#: flatcamGUI/FlatCAMGUI.py:814 flatcamGUI/FlatCAMGUI.py:2257 +#: flatcamGUI/FlatCAMGUI.py:913 flatcamGUI/FlatCAMGUI.py:2475 msgid "Polygon Subtraction" msgstr "Polygon Subtraction" -#: flatcamGUI/FlatCAMGUI.py:817 flatcamGUI/FlatCAMGUI.py:2260 +#: flatcamGUI/FlatCAMGUI.py:917 flatcamGUI/FlatCAMGUI.py:2479 msgid "Cut Path" msgstr "Cut Path" -#: flatcamGUI/FlatCAMGUI.py:818 +#: flatcamGUI/FlatCAMGUI.py:919 msgid "Copy Shape(s)" msgstr "Copy Shape(s)" -#: flatcamGUI/FlatCAMGUI.py:821 +#: flatcamGUI/FlatCAMGUI.py:922 msgid "Delete Shape '-'" msgstr "Delete Shape '-'" -#: flatcamGUI/FlatCAMGUI.py:823 flatcamGUI/FlatCAMGUI.py:854 -#: flatcamGUI/FlatCAMGUI.py:1929 flatcamGUI/FlatCAMGUI.py:1954 -#: flatcamGUI/FlatCAMGUI.py:2265 flatcamGUI/FlatCAMGUI.py:2294 +#: flatcamGUI/FlatCAMGUI.py:924 flatcamGUI/FlatCAMGUI.py:967 +#: flatcamGUI/FlatCAMGUI.py:2072 flatcamGUI/FlatCAMGUI.py:2109 +#: flatcamGUI/FlatCAMGUI.py:2485 flatcamGUI/FlatCAMGUI.py:2526 msgid "Transformations" msgstr "Transformations" -#: flatcamGUI/FlatCAMGUI.py:825 +#: flatcamGUI/FlatCAMGUI.py:927 msgid "Move Objects " msgstr "Move Objects " -#: flatcamGUI/FlatCAMGUI.py:831 flatcamGUI/FlatCAMGUI.py:1869 -#: flatcamGUI/FlatCAMGUI.py:2272 +#: flatcamGUI/FlatCAMGUI.py:935 flatcamGUI/FlatCAMGUI.py:1985 +#: flatcamGUI/FlatCAMGUI.py:2495 msgid "Add Pad" msgstr "Add Pad" -#: flatcamGUI/FlatCAMGUI.py:833 flatcamGUI/FlatCAMGUI.py:1870 -#: flatcamGUI/FlatCAMGUI.py:2274 +#: flatcamGUI/FlatCAMGUI.py:939 flatcamGUI/FlatCAMGUI.py:1986 +#: flatcamGUI/FlatCAMGUI.py:2499 msgid "Add Track" msgstr "Add Track" -#: flatcamGUI/FlatCAMGUI.py:834 flatcamGUI/FlatCAMGUI.py:1869 -#: flatcamGUI/FlatCAMGUI.py:2275 +#: flatcamGUI/FlatCAMGUI.py:941 flatcamGUI/FlatCAMGUI.py:1985 +#: flatcamGUI/FlatCAMGUI.py:2501 msgid "Add Region" msgstr "Add Region" -#: flatcamGUI/FlatCAMGUI.py:836 flatcamGUI/FlatCAMGUI.py:1942 -#: flatcamGUI/FlatCAMGUI.py:2277 +#: flatcamGUI/FlatCAMGUI.py:943 flatcamGUI/FlatCAMGUI.py:2091 +#: flatcamGUI/FlatCAMGUI.py:2503 msgid "Poligonize" msgstr "Poligonize" -#: flatcamGUI/FlatCAMGUI.py:838 flatcamGUI/FlatCAMGUI.py:1943 -#: flatcamGUI/FlatCAMGUI.py:2279 +#: flatcamGUI/FlatCAMGUI.py:946 flatcamGUI/FlatCAMGUI.py:2093 +#: flatcamGUI/FlatCAMGUI.py:2506 msgid "SemiDisc" msgstr "SemiDisc" -#: flatcamGUI/FlatCAMGUI.py:839 flatcamGUI/FlatCAMGUI.py:1944 -#: flatcamGUI/FlatCAMGUI.py:2280 +#: flatcamGUI/FlatCAMGUI.py:948 flatcamGUI/FlatCAMGUI.py:2095 +#: flatcamGUI/FlatCAMGUI.py:2508 msgid "Disc" msgstr "Disc" -#: flatcamGUI/FlatCAMGUI.py:845 flatcamGUI/FlatCAMGUI.py:1949 -#: flatcamGUI/FlatCAMGUI.py:2286 +#: flatcamGUI/FlatCAMGUI.py:956 flatcamGUI/FlatCAMGUI.py:2103 +#: flatcamGUI/FlatCAMGUI.py:2516 msgid "Mark Area" msgstr "Mark Area" -#: flatcamGUI/FlatCAMGUI.py:856 flatcamGUI/FlatCAMGUI.py:1869 -#: flatcamGUI/FlatCAMGUI.py:1932 flatcamGUI/FlatCAMGUI.py:1973 -#: flatcamGUI/FlatCAMGUI.py:2296 flatcamTools/ToolMove.py:28 +#: flatcamGUI/FlatCAMGUI.py:970 flatcamGUI/FlatCAMGUI.py:1985 +#: flatcamGUI/FlatCAMGUI.py:2076 flatcamGUI/FlatCAMGUI.py:2139 +#: flatcamGUI/FlatCAMGUI.py:2529 flatcamTools/ToolMove.py:28 msgid "Move" msgstr "Move" -#: flatcamGUI/FlatCAMGUI.py:863 flatcamGUI/FlatCAMGUI.py:2302 +#: flatcamGUI/FlatCAMGUI.py:978 flatcamGUI/FlatCAMGUI.py:2536 msgid "Snap to grid" msgstr "Snap to grid" -#: flatcamGUI/FlatCAMGUI.py:866 flatcamGUI/FlatCAMGUI.py:2305 +#: flatcamGUI/FlatCAMGUI.py:981 flatcamGUI/FlatCAMGUI.py:2539 msgid "Grid X snapping distance" msgstr "Grid X snapping distance" -#: flatcamGUI/FlatCAMGUI.py:871 flatcamGUI/FlatCAMGUI.py:2310 +#: flatcamGUI/FlatCAMGUI.py:986 flatcamGUI/FlatCAMGUI.py:2544 msgid "Grid Y snapping distance" msgstr "Grid Y snapping distance" -#: flatcamGUI/FlatCAMGUI.py:877 flatcamGUI/FlatCAMGUI.py:2316 +#: flatcamGUI/FlatCAMGUI.py:992 flatcamGUI/FlatCAMGUI.py:2550 msgid "" "When active, value on Grid_X\n" "is copied to the Grid_Y value." @@ -6124,63 +6123,63 @@ msgstr "" "When active, value on Grid_X\n" "is copied to the Grid_Y value." -#: flatcamGUI/FlatCAMGUI.py:883 flatcamGUI/FlatCAMGUI.py:2322 +#: flatcamGUI/FlatCAMGUI.py:999 flatcamGUI/FlatCAMGUI.py:2557 msgid "Snap to corner" msgstr "Snap to corner" -#: flatcamGUI/FlatCAMGUI.py:887 flatcamGUI/FlatCAMGUI.py:2326 +#: flatcamGUI/FlatCAMGUI.py:1003 flatcamGUI/FlatCAMGUI.py:2561 #: flatcamGUI/PreferencesUI.py:348 msgid "Max. magnet distance" msgstr "Max. magnet distance" -#: flatcamGUI/FlatCAMGUI.py:921 +#: flatcamGUI/FlatCAMGUI.py:1037 msgid "Selected" msgstr "Selected" -#: flatcamGUI/FlatCAMGUI.py:948 flatcamGUI/FlatCAMGUI.py:956 +#: flatcamGUI/FlatCAMGUI.py:1064 flatcamGUI/FlatCAMGUI.py:1072 msgid "Plot Area" msgstr "Plot Area" -#: flatcamGUI/FlatCAMGUI.py:983 +#: flatcamGUI/FlatCAMGUI.py:1099 msgid "General" msgstr "General" -#: flatcamGUI/FlatCAMGUI.py:998 flatcamTools/ToolCopperThieving.py:74 +#: flatcamGUI/FlatCAMGUI.py:1114 flatcamTools/ToolCopperThieving.py:74 #: flatcamTools/ToolDblSided.py:57 flatcamTools/ToolOptimal.py:71 #: flatcamTools/ToolQRCode.py:77 msgid "GERBER" msgstr "GERBER" -#: flatcamGUI/FlatCAMGUI.py:1008 flatcamTools/ToolDblSided.py:85 +#: flatcamGUI/FlatCAMGUI.py:1124 flatcamTools/ToolDblSided.py:85 msgid "EXCELLON" msgstr "EXCELLON" -#: flatcamGUI/FlatCAMGUI.py:1018 flatcamTools/ToolDblSided.py:113 +#: flatcamGUI/FlatCAMGUI.py:1134 flatcamTools/ToolDblSided.py:113 msgid "GEOMETRY" msgstr "GEOMETRY" -#: flatcamGUI/FlatCAMGUI.py:1028 +#: flatcamGUI/FlatCAMGUI.py:1144 msgid "CNC-JOB" msgstr "CNC-JOB" -#: flatcamGUI/FlatCAMGUI.py:1037 flatcamGUI/ObjectUI.py:544 -#: flatcamGUI/ObjectUI.py:1687 +#: flatcamGUI/FlatCAMGUI.py:1153 flatcamGUI/ObjectUI.py:555 +#: flatcamGUI/ObjectUI.py:1726 msgid "TOOLS" msgstr "TOOLS" -#: flatcamGUI/FlatCAMGUI.py:1046 +#: flatcamGUI/FlatCAMGUI.py:1162 msgid "TOOLS 2" msgstr "TOOLS 2" -#: flatcamGUI/FlatCAMGUI.py:1056 +#: flatcamGUI/FlatCAMGUI.py:1172 msgid "UTILITIES" msgstr "UTILITIES" -#: flatcamGUI/FlatCAMGUI.py:1073 +#: flatcamGUI/FlatCAMGUI.py:1189 msgid "Import Preferences" msgstr "Import Preferences" -#: flatcamGUI/FlatCAMGUI.py:1076 +#: flatcamGUI/FlatCAMGUI.py:1192 msgid "" "Import a full set of FlatCAM settings from a file\n" "previously saved on HDD.\n" @@ -6194,11 +6193,11 @@ msgstr "" "FlatCAM automatically save a 'factory_defaults' file\n" "on the first start. Do not delete that file." -#: flatcamGUI/FlatCAMGUI.py:1083 +#: flatcamGUI/FlatCAMGUI.py:1199 msgid "Export Preferences" msgstr "Export Preferences" -#: flatcamGUI/FlatCAMGUI.py:1086 +#: flatcamGUI/FlatCAMGUI.py:1202 msgid "" "Export a full set of FlatCAM settings in a file\n" "that is saved on HDD." @@ -6206,23 +6205,23 @@ msgstr "" "Export a full set of FlatCAM settings in a file\n" "that is saved on HDD." -#: flatcamGUI/FlatCAMGUI.py:1091 +#: flatcamGUI/FlatCAMGUI.py:1207 msgid "Open Pref Folder" msgstr "Open Pref Folder" -#: flatcamGUI/FlatCAMGUI.py:1094 +#: flatcamGUI/FlatCAMGUI.py:1210 msgid "Open the folder where FlatCAM save the preferences files." msgstr "Open the folder where FlatCAM save the preferences files." -#: flatcamGUI/FlatCAMGUI.py:1102 +#: flatcamGUI/FlatCAMGUI.py:1218 msgid "Apply" msgstr "Apply" -#: flatcamGUI/FlatCAMGUI.py:1105 +#: flatcamGUI/FlatCAMGUI.py:1221 msgid "Apply the current preferences without saving to a file." msgstr "Apply the current preferences without saving to a file." -#: flatcamGUI/FlatCAMGUI.py:1112 +#: flatcamGUI/FlatCAMGUI.py:1228 msgid "" "Save the current settings in the 'current_defaults' file\n" "which is the file storing the working default preferences." @@ -6230,527 +6229,527 @@ msgstr "" "Save the current settings in the 'current_defaults' file\n" "which is the file storing the working default preferences." -#: flatcamGUI/FlatCAMGUI.py:1120 +#: flatcamGUI/FlatCAMGUI.py:1236 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:1456 +#: flatcamGUI/FlatCAMGUI.py:1572 msgid "SHOW SHORTCUT LIST" msgstr "SHOW SHORTCUT LIST" -#: flatcamGUI/FlatCAMGUI.py:1456 +#: flatcamGUI/FlatCAMGUI.py:1572 msgid "Switch to Project Tab" msgstr "Switch to Project Tab" -#: flatcamGUI/FlatCAMGUI.py:1456 +#: flatcamGUI/FlatCAMGUI.py:1572 msgid "Switch to Selected Tab" msgstr "Switch to Selected Tab" -#: flatcamGUI/FlatCAMGUI.py:1457 +#: flatcamGUI/FlatCAMGUI.py:1573 msgid "Switch to Tool Tab" msgstr "Switch to Tool Tab" -#: flatcamGUI/FlatCAMGUI.py:1458 +#: flatcamGUI/FlatCAMGUI.py:1574 msgid "New Gerber" msgstr "New Gerber" -#: flatcamGUI/FlatCAMGUI.py:1458 +#: flatcamGUI/FlatCAMGUI.py:1574 msgid "Edit Object (if selected)" msgstr "Edit Object (if selected)" -#: flatcamGUI/FlatCAMGUI.py:1458 +#: flatcamGUI/FlatCAMGUI.py:1574 msgid "Jump to Coordinates" msgstr "Jump to Coordinates" -#: flatcamGUI/FlatCAMGUI.py:1459 +#: flatcamGUI/FlatCAMGUI.py:1575 msgid "New Excellon" msgstr "New Excellon" -#: flatcamGUI/FlatCAMGUI.py:1459 +#: flatcamGUI/FlatCAMGUI.py:1575 msgid "Move Obj" msgstr "Move Obj" -#: flatcamGUI/FlatCAMGUI.py:1459 +#: flatcamGUI/FlatCAMGUI.py:1575 msgid "New Geometry" msgstr "New Geometry" -#: flatcamGUI/FlatCAMGUI.py:1459 +#: flatcamGUI/FlatCAMGUI.py:1575 msgid "Change Units" msgstr "Change Units" -#: flatcamGUI/FlatCAMGUI.py:1460 +#: flatcamGUI/FlatCAMGUI.py:1576 msgid "Open Properties Tool" msgstr "Open Properties Tool" -#: flatcamGUI/FlatCAMGUI.py:1460 +#: flatcamGUI/FlatCAMGUI.py:1576 msgid "Rotate by 90 degree CW" msgstr "Rotate by 90 degree CW" -#: flatcamGUI/FlatCAMGUI.py:1460 +#: flatcamGUI/FlatCAMGUI.py:1576 msgid "Shell Toggle" msgstr "Shell Toggle" -#: flatcamGUI/FlatCAMGUI.py:1461 +#: flatcamGUI/FlatCAMGUI.py:1577 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:1462 +#: flatcamGUI/FlatCAMGUI.py:1578 msgid "Flip on X_axis" msgstr "Flip on X_axis" -#: flatcamGUI/FlatCAMGUI.py:1462 +#: flatcamGUI/FlatCAMGUI.py:1578 msgid "Flip on Y_axis" msgstr "Flip on Y_axis" -#: flatcamGUI/FlatCAMGUI.py:1465 +#: flatcamGUI/FlatCAMGUI.py:1581 msgid "Copy Obj" msgstr "Copy Obj" -#: flatcamGUI/FlatCAMGUI.py:1465 +#: flatcamGUI/FlatCAMGUI.py:1581 msgid "Open Tools Database" msgstr "Open Tools Database" -#: flatcamGUI/FlatCAMGUI.py:1466 +#: flatcamGUI/FlatCAMGUI.py:1582 msgid "Open Excellon File" msgstr "Open Excellon File" -#: flatcamGUI/FlatCAMGUI.py:1466 +#: flatcamGUI/FlatCAMGUI.py:1582 msgid "Open Gerber File" msgstr "Open Gerber File" -#: flatcamGUI/FlatCAMGUI.py:1466 +#: flatcamGUI/FlatCAMGUI.py:1582 msgid "New Project" msgstr "New Project" -#: flatcamGUI/FlatCAMGUI.py:1467 flatcamTools/ToolPDF.py:42 +#: flatcamGUI/FlatCAMGUI.py:1583 flatcamTools/ToolPDF.py:42 msgid "PDF Import Tool" msgstr "PDF Import Tool" -#: flatcamGUI/FlatCAMGUI.py:1467 +#: flatcamGUI/FlatCAMGUI.py:1583 msgid "Save Project As" msgstr "Save Project As" -#: flatcamGUI/FlatCAMGUI.py:1467 +#: flatcamGUI/FlatCAMGUI.py:1583 msgid "Toggle Plot Area" msgstr "Toggle Plot Area" -#: flatcamGUI/FlatCAMGUI.py:1470 +#: flatcamGUI/FlatCAMGUI.py:1586 msgid "Copy Obj_Name" msgstr "Copy Obj_Name" -#: flatcamGUI/FlatCAMGUI.py:1471 +#: flatcamGUI/FlatCAMGUI.py:1587 msgid "Toggle Code Editor" msgstr "Toggle Code Editor" -#: flatcamGUI/FlatCAMGUI.py:1471 +#: flatcamGUI/FlatCAMGUI.py:1587 msgid "Toggle the axis" msgstr "Toggle the axis" -#: flatcamGUI/FlatCAMGUI.py:1471 flatcamGUI/FlatCAMGUI.py:1663 -#: flatcamGUI/FlatCAMGUI.py:1750 flatcamGUI/FlatCAMGUI.py:1872 +#: flatcamGUI/FlatCAMGUI.py:1587 flatcamGUI/FlatCAMGUI.py:1779 +#: flatcamGUI/FlatCAMGUI.py:1866 flatcamGUI/FlatCAMGUI.py:1988 msgid "Distance Minimum Tool" msgstr "Distance Minimum Tool" -#: flatcamGUI/FlatCAMGUI.py:1471 +#: flatcamGUI/FlatCAMGUI.py:1587 msgid "Open Preferences Window" msgstr "Open Preferences Window" -#: flatcamGUI/FlatCAMGUI.py:1472 +#: flatcamGUI/FlatCAMGUI.py:1588 msgid "Rotate by 90 degree CCW" msgstr "Rotate by 90 degree CCW" -#: flatcamGUI/FlatCAMGUI.py:1472 +#: flatcamGUI/FlatCAMGUI.py:1588 msgid "Run a Script" msgstr "Run a Script" -#: flatcamGUI/FlatCAMGUI.py:1472 +#: flatcamGUI/FlatCAMGUI.py:1588 msgid "Toggle the workspace" msgstr "Toggle the workspace" -#: flatcamGUI/FlatCAMGUI.py:1472 +#: flatcamGUI/FlatCAMGUI.py:1588 msgid "Skew on X axis" msgstr "Skew on X axis" -#: flatcamGUI/FlatCAMGUI.py:1473 +#: flatcamGUI/FlatCAMGUI.py:1589 msgid "Skew on Y axis" msgstr "Skew on Y axis" -#: flatcamGUI/FlatCAMGUI.py:1475 +#: flatcamGUI/FlatCAMGUI.py:1591 msgid "2-Sided PCB Tool" msgstr "2-Sided PCB Tool" -#: flatcamGUI/FlatCAMGUI.py:1475 +#: flatcamGUI/FlatCAMGUI.py:1591 msgid "Transformations Tool" msgstr "Transformations Tool" -#: flatcamGUI/FlatCAMGUI.py:1476 +#: flatcamGUI/FlatCAMGUI.py:1592 msgid "Solder Paste Dispensing Tool" msgstr "Solder Paste Dispensing Tool" -#: flatcamGUI/FlatCAMGUI.py:1477 +#: flatcamGUI/FlatCAMGUI.py:1593 msgid "Film PCB Tool" msgstr "Film PCB Tool" -#: flatcamGUI/FlatCAMGUI.py:1477 +#: flatcamGUI/FlatCAMGUI.py:1593 msgid "Non-Copper Clearing Tool" msgstr "Non-Copper Clearing Tool" -#: flatcamGUI/FlatCAMGUI.py:1478 +#: flatcamGUI/FlatCAMGUI.py:1594 msgid "Paint Area Tool" msgstr "Paint Area Tool" -#: flatcamGUI/FlatCAMGUI.py:1478 +#: flatcamGUI/FlatCAMGUI.py:1594 msgid "Rules Check Tool" msgstr "Rules Check Tool" -#: flatcamGUI/FlatCAMGUI.py:1479 +#: flatcamGUI/FlatCAMGUI.py:1595 msgid "View File Source" msgstr "View File Source" -#: flatcamGUI/FlatCAMGUI.py:1480 +#: flatcamGUI/FlatCAMGUI.py:1596 msgid "Cutout PCB Tool" msgstr "Cutout PCB Tool" -#: flatcamGUI/FlatCAMGUI.py:1480 +#: flatcamGUI/FlatCAMGUI.py:1596 msgid "Enable all Plots" msgstr "Enable all Plots" -#: flatcamGUI/FlatCAMGUI.py:1480 +#: flatcamGUI/FlatCAMGUI.py:1596 msgid "Disable all Plots" msgstr "Disable all Plots" -#: flatcamGUI/FlatCAMGUI.py:1480 +#: flatcamGUI/FlatCAMGUI.py:1596 msgid "Disable Non-selected Plots" msgstr "Disable Non-selected Plots" -#: flatcamGUI/FlatCAMGUI.py:1481 +#: flatcamGUI/FlatCAMGUI.py:1597 msgid "Toggle Full Screen" msgstr "Toggle Full Screen" -#: flatcamGUI/FlatCAMGUI.py:1484 +#: flatcamGUI/FlatCAMGUI.py:1600 msgid "Abort current task (gracefully)" msgstr "Abort current task (gracefully)" -#: flatcamGUI/FlatCAMGUI.py:1487 +#: flatcamGUI/FlatCAMGUI.py:1603 msgid "Open Online Manual" msgstr "Open Online Manual" -#: flatcamGUI/FlatCAMGUI.py:1488 +#: flatcamGUI/FlatCAMGUI.py:1604 msgid "Open Online Tutorials" msgstr "Open Online Tutorials" -#: flatcamGUI/FlatCAMGUI.py:1488 +#: flatcamGUI/FlatCAMGUI.py:1604 msgid "Refresh Plots" msgstr "Refresh Plots" -#: flatcamGUI/FlatCAMGUI.py:1488 flatcamTools/ToolSolderPaste.py:503 +#: flatcamGUI/FlatCAMGUI.py:1604 flatcamTools/ToolSolderPaste.py:503 msgid "Delete Object" msgstr "Delete Object" -#: flatcamGUI/FlatCAMGUI.py:1488 +#: flatcamGUI/FlatCAMGUI.py:1604 msgid "Alternate: Delete Tool" msgstr "Alternate: Delete Tool" -#: flatcamGUI/FlatCAMGUI.py:1489 +#: flatcamGUI/FlatCAMGUI.py:1605 msgid "(left to Key_1)Toogle Notebook Area (Left Side)" msgstr "(left to Key_1)Toogle Notebook Area (Left Side)" -#: flatcamGUI/FlatCAMGUI.py:1489 +#: flatcamGUI/FlatCAMGUI.py:1605 msgid "En(Dis)able Obj Plot" msgstr "En(Dis)able Obj Plot" -#: flatcamGUI/FlatCAMGUI.py:1490 +#: flatcamGUI/FlatCAMGUI.py:1606 msgid "Deselects all objects" msgstr "Deselects all objects" -#: flatcamGUI/FlatCAMGUI.py:1504 +#: flatcamGUI/FlatCAMGUI.py:1620 msgid "Editor Shortcut list" msgstr "Editor Shortcut list" -#: flatcamGUI/FlatCAMGUI.py:1658 +#: flatcamGUI/FlatCAMGUI.py:1774 msgid "GEOMETRY EDITOR" msgstr "GEOMETRY EDITOR" -#: flatcamGUI/FlatCAMGUI.py:1658 +#: flatcamGUI/FlatCAMGUI.py:1774 msgid "Draw an Arc" msgstr "Draw an Arc" -#: flatcamGUI/FlatCAMGUI.py:1658 +#: flatcamGUI/FlatCAMGUI.py:1774 msgid "Copy Geo Item" msgstr "Copy Geo Item" -#: flatcamGUI/FlatCAMGUI.py:1659 +#: flatcamGUI/FlatCAMGUI.py:1775 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:1659 +#: flatcamGUI/FlatCAMGUI.py:1775 msgid "Polygon Intersection Tool" msgstr "Polygon Intersection Tool" -#: flatcamGUI/FlatCAMGUI.py:1660 +#: flatcamGUI/FlatCAMGUI.py:1776 msgid "Geo Paint Tool" msgstr "Geo Paint Tool" -#: flatcamGUI/FlatCAMGUI.py:1660 flatcamGUI/FlatCAMGUI.py:1749 -#: flatcamGUI/FlatCAMGUI.py:1869 +#: flatcamGUI/FlatCAMGUI.py:1776 flatcamGUI/FlatCAMGUI.py:1865 +#: flatcamGUI/FlatCAMGUI.py:1985 msgid "Jump to Location (x, y)" msgstr "Jump to Location (x, y)" -#: flatcamGUI/FlatCAMGUI.py:1660 +#: flatcamGUI/FlatCAMGUI.py:1776 msgid "Toggle Corner Snap" msgstr "Toggle Corner Snap" -#: flatcamGUI/FlatCAMGUI.py:1660 +#: flatcamGUI/FlatCAMGUI.py:1776 msgid "Move Geo Item" msgstr "Move Geo Item" -#: flatcamGUI/FlatCAMGUI.py:1661 +#: flatcamGUI/FlatCAMGUI.py:1777 msgid "Within Add Arc will cycle through the ARC modes" msgstr "Within Add Arc will cycle through the ARC modes" -#: flatcamGUI/FlatCAMGUI.py:1661 +#: flatcamGUI/FlatCAMGUI.py:1777 msgid "Draw a Polygon" msgstr "Draw a Polygon" -#: flatcamGUI/FlatCAMGUI.py:1661 +#: flatcamGUI/FlatCAMGUI.py:1777 msgid "Draw a Circle" msgstr "Draw a Circle" -#: flatcamGUI/FlatCAMGUI.py:1662 +#: flatcamGUI/FlatCAMGUI.py:1778 msgid "Draw a Path" msgstr "Draw a Path" -#: flatcamGUI/FlatCAMGUI.py:1662 +#: flatcamGUI/FlatCAMGUI.py:1778 msgid "Draw Rectangle" msgstr "Draw Rectangle" -#: flatcamGUI/FlatCAMGUI.py:1662 +#: flatcamGUI/FlatCAMGUI.py:1778 msgid "Polygon Subtraction Tool" msgstr "Polygon Subtraction Tool" -#: flatcamGUI/FlatCAMGUI.py:1662 +#: flatcamGUI/FlatCAMGUI.py:1778 msgid "Add Text Tool" msgstr "Add Text Tool" -#: flatcamGUI/FlatCAMGUI.py:1663 +#: flatcamGUI/FlatCAMGUI.py:1779 msgid "Polygon Union Tool" msgstr "Polygon Union Tool" -#: flatcamGUI/FlatCAMGUI.py:1663 +#: flatcamGUI/FlatCAMGUI.py:1779 msgid "Flip shape on X axis" msgstr "Flip shape on X axis" -#: flatcamGUI/FlatCAMGUI.py:1663 +#: flatcamGUI/FlatCAMGUI.py:1779 msgid "Flip shape on Y axis" msgstr "Flip shape on Y axis" -#: flatcamGUI/FlatCAMGUI.py:1664 +#: flatcamGUI/FlatCAMGUI.py:1780 msgid "Skew shape on X axis" msgstr "Skew shape on X axis" -#: flatcamGUI/FlatCAMGUI.py:1664 +#: flatcamGUI/FlatCAMGUI.py:1780 msgid "Skew shape on Y axis" msgstr "Skew shape on Y axis" -#: flatcamGUI/FlatCAMGUI.py:1664 +#: flatcamGUI/FlatCAMGUI.py:1780 msgid "Editor Transformation Tool" msgstr "Editor Transformation Tool" -#: flatcamGUI/FlatCAMGUI.py:1665 +#: flatcamGUI/FlatCAMGUI.py:1781 msgid "Offset shape on X axis" msgstr "Offset shape on X axis" -#: flatcamGUI/FlatCAMGUI.py:1665 +#: flatcamGUI/FlatCAMGUI.py:1781 msgid "Offset shape on Y axis" msgstr "Offset shape on Y axis" -#: flatcamGUI/FlatCAMGUI.py:1666 flatcamGUI/FlatCAMGUI.py:1752 -#: flatcamGUI/FlatCAMGUI.py:1874 +#: flatcamGUI/FlatCAMGUI.py:1782 flatcamGUI/FlatCAMGUI.py:1868 +#: flatcamGUI/FlatCAMGUI.py:1990 msgid "Save Object and Exit Editor" msgstr "Save Object and Exit Editor" -#: flatcamGUI/FlatCAMGUI.py:1666 +#: flatcamGUI/FlatCAMGUI.py:1782 msgid "Polygon Cut Tool" msgstr "Polygon Cut Tool" -#: flatcamGUI/FlatCAMGUI.py:1667 +#: flatcamGUI/FlatCAMGUI.py:1783 msgid "Rotate Geometry" msgstr "Rotate Geometry" -#: flatcamGUI/FlatCAMGUI.py:1667 +#: flatcamGUI/FlatCAMGUI.py:1783 msgid "Finish drawing for certain tools" msgstr "Finish drawing for certain tools" -#: flatcamGUI/FlatCAMGUI.py:1667 flatcamGUI/FlatCAMGUI.py:1752 -#: flatcamGUI/FlatCAMGUI.py:1872 +#: flatcamGUI/FlatCAMGUI.py:1783 flatcamGUI/FlatCAMGUI.py:1868 +#: flatcamGUI/FlatCAMGUI.py:1988 msgid "Abort and return to Select" msgstr "Abort and return to Select" -#: flatcamGUI/FlatCAMGUI.py:1668 flatcamGUI/FlatCAMGUI.py:2263 +#: flatcamGUI/FlatCAMGUI.py:1784 flatcamGUI/FlatCAMGUI.py:2483 msgid "Delete Shape" msgstr "Delete Shape" -#: flatcamGUI/FlatCAMGUI.py:1748 +#: flatcamGUI/FlatCAMGUI.py:1864 msgid "EXCELLON EDITOR" msgstr "EXCELLON EDITOR" -#: flatcamGUI/FlatCAMGUI.py:1748 +#: flatcamGUI/FlatCAMGUI.py:1864 msgid "Copy Drill(s)" msgstr "Copy Drill(s)" -#: flatcamGUI/FlatCAMGUI.py:1748 flatcamGUI/FlatCAMGUI.py:1957 +#: flatcamGUI/FlatCAMGUI.py:1864 flatcamGUI/FlatCAMGUI.py:2114 msgid "Add Drill" msgstr "Add Drill" -#: flatcamGUI/FlatCAMGUI.py:1749 +#: flatcamGUI/FlatCAMGUI.py:1865 msgid "Move Drill(s)" msgstr "Move Drill(s)" -#: flatcamGUI/FlatCAMGUI.py:1750 +#: flatcamGUI/FlatCAMGUI.py:1866 msgid "Add a new Tool" msgstr "Add a new Tool" -#: flatcamGUI/FlatCAMGUI.py:1751 +#: flatcamGUI/FlatCAMGUI.py:1867 msgid "Delete Drill(s)" msgstr "Delete Drill(s)" -#: flatcamGUI/FlatCAMGUI.py:1751 +#: flatcamGUI/FlatCAMGUI.py:1867 msgid "Alternate: Delete Tool(s)" msgstr "Alternate: Delete Tool(s)" -#: flatcamGUI/FlatCAMGUI.py:1868 +#: flatcamGUI/FlatCAMGUI.py:1984 msgid "GERBER EDITOR" msgstr "GERBER EDITOR" -#: flatcamGUI/FlatCAMGUI.py:1868 +#: flatcamGUI/FlatCAMGUI.py:1984 msgid "Add Disc" msgstr "Add Disc" -#: flatcamGUI/FlatCAMGUI.py:1868 +#: flatcamGUI/FlatCAMGUI.py:1984 msgid "Add SemiDisc" msgstr "Add SemiDisc" -#: flatcamGUI/FlatCAMGUI.py:1870 +#: flatcamGUI/FlatCAMGUI.py:1986 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:1871 +#: flatcamGUI/FlatCAMGUI.py:1987 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:1872 +#: flatcamGUI/FlatCAMGUI.py:1988 msgid "Alternate: Delete Apertures" msgstr "Alternate: Delete Apertures" -#: flatcamGUI/FlatCAMGUI.py:1873 +#: flatcamGUI/FlatCAMGUI.py:1989 msgid "Eraser Tool" msgstr "Eraser Tool" -#: flatcamGUI/FlatCAMGUI.py:1874 flatcamGUI/PreferencesUI.py:2038 +#: flatcamGUI/FlatCAMGUI.py:1990 flatcamGUI/PreferencesUI.py:2039 msgid "Mark Area Tool" msgstr "Mark Area Tool" -#: flatcamGUI/FlatCAMGUI.py:1874 +#: flatcamGUI/FlatCAMGUI.py:1990 msgid "Poligonize Tool" msgstr "Poligonize Tool" -#: flatcamGUI/FlatCAMGUI.py:1874 +#: flatcamGUI/FlatCAMGUI.py:1990 msgid "Transformation Tool" msgstr "Transformation Tool" -#: flatcamGUI/FlatCAMGUI.py:1890 +#: flatcamGUI/FlatCAMGUI.py:2007 msgid "Toggle Visibility" msgstr "Toggle Visibility" -#: flatcamGUI/FlatCAMGUI.py:1894 +#: flatcamGUI/FlatCAMGUI.py:2013 msgid "New" msgstr "New" -#: flatcamGUI/FlatCAMGUI.py:1895 flatcamTools/ToolCalibration.py:634 +#: flatcamGUI/FlatCAMGUI.py:2015 flatcamTools/ToolCalibration.py:634 msgid "Geometry" msgstr "Geometry" -#: flatcamGUI/FlatCAMGUI.py:1897 flatcamTools/ToolCalibration.py:197 +#: flatcamGUI/FlatCAMGUI.py:2019 flatcamTools/ToolCalibration.py:197 #: flatcamTools/ToolCalibration.py:634 flatcamTools/ToolFilm.py:359 msgid "Excellon" msgstr "Excellon" -#: flatcamGUI/FlatCAMGUI.py:1902 +#: flatcamGUI/FlatCAMGUI.py:2026 msgid "Grids" msgstr "Grids" -#: flatcamGUI/FlatCAMGUI.py:1906 +#: flatcamGUI/FlatCAMGUI.py:2033 msgid "Clear Plot" msgstr "Clear Plot" -#: flatcamGUI/FlatCAMGUI.py:1907 +#: flatcamGUI/FlatCAMGUI.py:2035 msgid "Replot" msgstr "Replot" -#: flatcamGUI/FlatCAMGUI.py:1910 +#: flatcamGUI/FlatCAMGUI.py:2039 msgid "Geo Editor" msgstr "Geo Editor" -#: flatcamGUI/FlatCAMGUI.py:1911 +#: flatcamGUI/FlatCAMGUI.py:2041 msgid "Path" msgstr "Path" -#: flatcamGUI/FlatCAMGUI.py:1912 +#: flatcamGUI/FlatCAMGUI.py:2043 msgid "Rectangle" msgstr "Rectangle" -#: flatcamGUI/FlatCAMGUI.py:1914 +#: flatcamGUI/FlatCAMGUI.py:2046 msgid "Circle" msgstr "Circle" -#: flatcamGUI/FlatCAMGUI.py:1915 +#: flatcamGUI/FlatCAMGUI.py:2048 msgid "Polygon" msgstr "Polygon" -#: flatcamGUI/FlatCAMGUI.py:1916 +#: flatcamGUI/FlatCAMGUI.py:2050 msgid "Arc" msgstr "Arc" -#: flatcamGUI/FlatCAMGUI.py:1925 +#: flatcamGUI/FlatCAMGUI.py:2064 msgid "Union" msgstr "Union" -#: flatcamGUI/FlatCAMGUI.py:1926 +#: flatcamGUI/FlatCAMGUI.py:2066 msgid "Intersection" msgstr "Intersection" -#: flatcamGUI/FlatCAMGUI.py:1927 +#: flatcamGUI/FlatCAMGUI.py:2068 msgid "Subtraction" msgstr "Subtraction" -#: flatcamGUI/FlatCAMGUI.py:1928 flatcamGUI/ObjectUI.py:1761 -#: flatcamGUI/PreferencesUI.py:3643 +#: flatcamGUI/FlatCAMGUI.py:2070 flatcamGUI/ObjectUI.py:1813 +#: flatcamGUI/PreferencesUI.py:3644 msgid "Cut" msgstr "Cut" -#: flatcamGUI/FlatCAMGUI.py:1935 +#: flatcamGUI/FlatCAMGUI.py:2081 msgid "Pad" msgstr "Pad" -#: flatcamGUI/FlatCAMGUI.py:1936 +#: flatcamGUI/FlatCAMGUI.py:2083 msgid "Pad Array" msgstr "Pad Array" -#: flatcamGUI/FlatCAMGUI.py:1939 +#: flatcamGUI/FlatCAMGUI.py:2087 msgid "Track" msgstr "Track" -#: flatcamGUI/FlatCAMGUI.py:1940 +#: flatcamGUI/FlatCAMGUI.py:2089 msgid "Region" msgstr "Region" -#: flatcamGUI/FlatCAMGUI.py:1956 +#: flatcamGUI/FlatCAMGUI.py:2112 msgid "Exc Editor" msgstr "Exc Editor" -#: flatcamGUI/FlatCAMGUI.py:1986 +#: flatcamGUI/FlatCAMGUI.py:2153 msgid "" "Relative neasurement.\n" "Reference is last click position" @@ -6758,7 +6757,7 @@ msgstr "" "Relative neasurement.\n" "Reference is last click position" -#: flatcamGUI/FlatCAMGUI.py:1992 +#: flatcamGUI/FlatCAMGUI.py:2159 msgid "" "Absolute neasurement.\n" "Reference is (X=0, Y= 0) position" @@ -6766,27 +6765,27 @@ msgstr "" "Absolute neasurement.\n" "Reference is (X=0, Y= 0) position" -#: flatcamGUI/FlatCAMGUI.py:2099 +#: flatcamGUI/FlatCAMGUI.py:2266 msgid "Lock Toolbars" msgstr "Lock Toolbars" -#: flatcamGUI/FlatCAMGUI.py:2192 +#: flatcamGUI/FlatCAMGUI.py:2384 msgid "&Cutout Tool" msgstr "&Cutout Tool" -#: flatcamGUI/FlatCAMGUI.py:2234 +#: flatcamGUI/FlatCAMGUI.py:2443 msgid "Select 'Esc'" msgstr "Select 'Esc'" -#: flatcamGUI/FlatCAMGUI.py:2261 +#: flatcamGUI/FlatCAMGUI.py:2481 msgid "Copy Objects" msgstr "Copy Objects" -#: flatcamGUI/FlatCAMGUI.py:2268 +#: flatcamGUI/FlatCAMGUI.py:2489 msgid "Move Objects" msgstr "Move Objects" -#: flatcamGUI/FlatCAMGUI.py:2813 +#: flatcamGUI/FlatCAMGUI.py:3048 msgid "" "Please first select a geometry item to be cutted\n" "then select the geometry item that will be cutted\n" @@ -6798,12 +6797,12 @@ msgstr "" "out of the first item. In the end press ~X~ key or\n" "the toolbar button." -#: flatcamGUI/FlatCAMGUI.py:2820 flatcamGUI/FlatCAMGUI.py:2964 -#: flatcamGUI/FlatCAMGUI.py:3023 flatcamGUI/FlatCAMGUI.py:3043 +#: flatcamGUI/FlatCAMGUI.py:3055 flatcamGUI/FlatCAMGUI.py:3199 +#: flatcamGUI/FlatCAMGUI.py:3258 flatcamGUI/FlatCAMGUI.py:3278 msgid "Warning" msgstr "Warning" -#: flatcamGUI/FlatCAMGUI.py:2959 +#: flatcamGUI/FlatCAMGUI.py:3194 msgid "" "Please select geometry items \n" "on which to perform Intersection Tool." @@ -6811,7 +6810,7 @@ msgstr "" "Please select geometry items \n" "on which to perform Intersection Tool." -#: flatcamGUI/FlatCAMGUI.py:3018 +#: flatcamGUI/FlatCAMGUI.py:3253 msgid "" "Please select geometry items \n" "on which to perform Substraction Tool." @@ -6819,7 +6818,7 @@ msgstr "" "Please select geometry items \n" "on which to perform Substraction Tool." -#: flatcamGUI/FlatCAMGUI.py:3038 +#: flatcamGUI/FlatCAMGUI.py:3273 msgid "" "Please select geometry items \n" "on which to perform union." @@ -6827,52 +6826,52 @@ msgstr "" "Please select geometry items \n" "on which to perform union." -#: flatcamGUI/FlatCAMGUI.py:3122 flatcamGUI/FlatCAMGUI.py:3340 +#: flatcamGUI/FlatCAMGUI.py:3357 flatcamGUI/FlatCAMGUI.py:3575 msgid "Cancelled. Nothing selected to delete." msgstr "Cancelled. Nothing selected to delete." -#: flatcamGUI/FlatCAMGUI.py:3207 flatcamGUI/FlatCAMGUI.py:3408 +#: flatcamGUI/FlatCAMGUI.py:3442 flatcamGUI/FlatCAMGUI.py:3643 msgid "Cancelled. Nothing selected to copy." msgstr "Cancelled. Nothing selected to copy." -#: flatcamGUI/FlatCAMGUI.py:3254 flatcamGUI/FlatCAMGUI.py:3455 +#: flatcamGUI/FlatCAMGUI.py:3489 flatcamGUI/FlatCAMGUI.py:3690 msgid "Cancelled. Nothing selected to move." msgstr "Cancelled. Nothing selected to move." -#: flatcamGUI/FlatCAMGUI.py:3481 +#: flatcamGUI/FlatCAMGUI.py:3716 msgid "New Tool ..." msgstr "New Tool ..." -#: flatcamGUI/FlatCAMGUI.py:3482 flatcamTools/ToolNonCopperClear.py:588 -#: flatcamTools/ToolPaint.py:499 flatcamTools/ToolSolderPaste.py:554 +#: flatcamGUI/FlatCAMGUI.py:3717 flatcamTools/ToolNonCopperClear.py:589 +#: flatcamTools/ToolPaint.py:500 flatcamTools/ToolSolderPaste.py:554 msgid "Enter a Tool Diameter" msgstr "Enter a Tool Diameter" -#: flatcamGUI/FlatCAMGUI.py:3494 +#: flatcamGUI/FlatCAMGUI.py:3729 msgid "Adding Tool cancelled ..." msgstr "Adding Tool cancelled ..." -#: flatcamGUI/FlatCAMGUI.py:3537 +#: flatcamGUI/FlatCAMGUI.py:3772 msgid "Distance Tool exit..." msgstr "Distance Tool exit..." -#: flatcamGUI/FlatCAMGUI.py:3747 flatcamGUI/FlatCAMGUI.py:3754 +#: flatcamGUI/FlatCAMGUI.py:3982 flatcamGUI/FlatCAMGUI.py:3989 msgid "Idle." msgstr "Idle." -#: flatcamGUI/FlatCAMGUI.py:3783 +#: flatcamGUI/FlatCAMGUI.py:4020 msgid "Application started ..." msgstr "Application started ..." -#: flatcamGUI/FlatCAMGUI.py:3784 +#: flatcamGUI/FlatCAMGUI.py:4021 msgid "Hello!" msgstr "Hello!" -#: flatcamGUI/FlatCAMGUI.py:3840 +#: flatcamGUI/FlatCAMGUI.py:4079 msgid "Open Project ..." msgstr "Open Project ..." -#: flatcamGUI/FlatCAMGUI.py:3865 +#: flatcamGUI/FlatCAMGUI.py:4105 msgid "Exit" msgstr "Exit" @@ -6880,7 +6879,7 @@ msgstr "Exit" msgid "FlatCAM Object" msgstr "FlatCAM Object" -#: flatcamGUI/ObjectUI.py:66 +#: flatcamGUI/ObjectUI.py:77 msgid "" "BASIC is suitable for a beginner. Many parameters\n" "are hidden from the user in this mode.\n" @@ -6898,15 +6897,15 @@ msgstr "" "Edit -> Preferences -> General and check:\n" "'APP. LEVEL' radio button." -#: flatcamGUI/ObjectUI.py:94 +#: flatcamGUI/ObjectUI.py:105 msgid "Change the size of the object." msgstr "Change the size of the object." -#: flatcamGUI/ObjectUI.py:100 +#: flatcamGUI/ObjectUI.py:111 msgid "Factor" msgstr "Factor" -#: flatcamGUI/ObjectUI.py:102 +#: flatcamGUI/ObjectUI.py:113 msgid "" "Factor by which to multiply\n" "geometric features of this object.\n" @@ -6916,19 +6915,19 @@ msgstr "" "geometric features of this object.\n" "Expressions are allowed. E.g: 1/25.4" -#: flatcamGUI/ObjectUI.py:112 +#: flatcamGUI/ObjectUI.py:123 msgid "Perform scaling operation." msgstr "Perform scaling operation." -#: flatcamGUI/ObjectUI.py:123 +#: flatcamGUI/ObjectUI.py:134 msgid "Change the position of this object." msgstr "Change the position of this object." -#: flatcamGUI/ObjectUI.py:128 +#: flatcamGUI/ObjectUI.py:139 msgid "Vector" msgstr "Vector" -#: flatcamGUI/ObjectUI.py:130 +#: flatcamGUI/ObjectUI.py:141 msgid "" "Amount by which to move the object\n" "in the x and y axes in (x, y) format.\n" @@ -6938,60 +6937,60 @@ msgstr "" "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:139 +#: flatcamGUI/ObjectUI.py:150 msgid "Perform the offset operation." msgstr "Perform the offset operation." -#: flatcamGUI/ObjectUI.py:156 +#: flatcamGUI/ObjectUI.py:167 msgid "Gerber Object" msgstr "Gerber Object" -#: 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 +#: flatcamGUI/ObjectUI.py:182 flatcamGUI/ObjectUI.py:767 +#: flatcamGUI/ObjectUI.py:1205 flatcamGUI/ObjectUI.py:1907 +#: flatcamGUI/PreferencesUI.py:1361 flatcamGUI/PreferencesUI.py:3119 +#: flatcamGUI/PreferencesUI.py:3629 msgid "Plot (show) this object." msgstr "Plot (show) this object." -#: flatcamGUI/ObjectUI.py:173 flatcamGUI/ObjectUI.py:741 -#: flatcamGUI/PreferencesUI.py:1358 flatcamGUI/PreferencesUI.py:2084 -#: flatcamGUI/PreferencesUI.py:3116 +#: flatcamGUI/ObjectUI.py:184 flatcamGUI/ObjectUI.py:765 +#: flatcamGUI/PreferencesUI.py:1359 flatcamGUI/PreferencesUI.py:2085 +#: flatcamGUI/PreferencesUI.py:3117 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 +#: flatcamGUI/ObjectUI.py:189 flatcamGUI/ObjectUI.py:726 +#: flatcamGUI/ObjectUI.py:1159 flatcamGUI/ObjectUI.py:1797 +#: flatcamGUI/PreferencesUI.py:1338 flatcamGUI/PreferencesUI.py:2079 +#: flatcamGUI/PreferencesUI.py:3113 flatcamGUI/PreferencesUI.py:3618 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 +#: flatcamGUI/ObjectUI.py:195 flatcamGUI/ObjectUI.py:727 +#: flatcamGUI/PreferencesUI.py:1345 flatcamGUI/PreferencesUI.py:2091 +#: flatcamGUI/PreferencesUI.py:6154 flatcamTools/ToolCopperThieving.py:190 msgid "Solid" msgstr "Solid" -#: flatcamGUI/ObjectUI.py:186 flatcamGUI/PreferencesUI.py:1346 +#: flatcamGUI/ObjectUI.py:197 flatcamGUI/PreferencesUI.py:1347 msgid "Solid color polygons." msgstr "Solid color polygons." -#: flatcamGUI/ObjectUI.py:192 +#: flatcamGUI/ObjectUI.py:203 msgid "Multi-Color" msgstr "Multi-Color" -#: flatcamGUI/ObjectUI.py:194 flatcamGUI/PreferencesUI.py:1353 +#: flatcamGUI/ObjectUI.py:205 flatcamGUI/PreferencesUI.py:1354 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 +#: flatcamGUI/ObjectUI.py:213 flatcamGUI/ObjectUI.py:738 +#: flatcamGUI/ObjectUI.py:1165 flatcamGUI/ObjectUI.py:1827 +#: flatcamGUI/ObjectUI.py:2130 flatcamGUI/ObjectUI.py:2196 #: flatcamTools/ToolCalibration.py:235 flatcamTools/ToolFiducials.py:73 msgid "Name" msgstr "Name" -#: flatcamGUI/ObjectUI.py:223 +#: flatcamGUI/ObjectUI.py:234 msgid "" "Toggle the display of the Gerber Apertures Table.\n" "When unchecked, it will delete all mark shapes\n" @@ -7001,11 +7000,11 @@ msgstr "" "When unchecked, it will delete all mark shapes\n" "that are drawn on canvas." -#: flatcamGUI/ObjectUI.py:233 +#: flatcamGUI/ObjectUI.py:244 msgid "Mark All" msgstr "Mark All" -#: flatcamGUI/ObjectUI.py:235 +#: flatcamGUI/ObjectUI.py:246 msgid "" "When checked it will display all the apertures.\n" "When unchecked, it will delete all mark shapes\n" @@ -7015,15 +7014,15 @@ msgstr "" "When unchecked, it will delete all mark shapes\n" "that are drawn on canvas." -#: flatcamGUI/ObjectUI.py:263 +#: flatcamGUI/ObjectUI.py:274 msgid "Mark the aperture instances on canvas." msgstr "Mark the aperture instances on canvas." -#: flatcamGUI/ObjectUI.py:275 flatcamGUI/PreferencesUI.py:1438 +#: flatcamGUI/ObjectUI.py:286 flatcamGUI/PreferencesUI.py:1439 msgid "Isolation Routing" msgstr "Isolation Routing" -#: flatcamGUI/ObjectUI.py:277 flatcamGUI/PreferencesUI.py:1440 +#: flatcamGUI/ObjectUI.py:288 flatcamGUI/PreferencesUI.py:1441 msgid "" "Create a Geometry object with\n" "toolpaths to cut outside polygons." @@ -7031,7 +7030,7 @@ msgstr "" "Create a Geometry object with\n" "toolpaths to cut outside polygons." -#: flatcamGUI/ObjectUI.py:295 flatcamGUI/PreferencesUI.py:1628 +#: flatcamGUI/ObjectUI.py:306 flatcamGUI/PreferencesUI.py:1629 msgid "" "Choose what tool to use for Gerber isolation:\n" "'Circular' or 'V-shape'.\n" @@ -7043,30 +7042,30 @@ msgstr "" "When the 'V-shape' is selected then the tool\n" "diameter will depend on the chosen cut depth." -#: flatcamGUI/ObjectUI.py:301 +#: flatcamGUI/ObjectUI.py:312 msgid "V-Shape" msgstr "V-Shape" -#: flatcamGUI/ObjectUI.py:307 flatcamGUI/ObjectUI.py:1335 -#: flatcamGUI/PreferencesUI.py:1640 flatcamGUI/PreferencesUI.py:4010 +#: flatcamGUI/ObjectUI.py:318 flatcamGUI/ObjectUI.py:1374 +#: flatcamGUI/PreferencesUI.py:1641 flatcamGUI/PreferencesUI.py:4011 #: flatcamTools/ToolNonCopperClear.py:231 msgid "V-Tip Dia" msgstr "V-Tip Dia" -#: flatcamGUI/ObjectUI.py:309 flatcamGUI/ObjectUI.py:1338 -#: flatcamGUI/PreferencesUI.py:1642 flatcamGUI/PreferencesUI.py:4012 +#: flatcamGUI/ObjectUI.py:320 flatcamGUI/ObjectUI.py:1377 +#: flatcamGUI/PreferencesUI.py:1643 flatcamGUI/PreferencesUI.py:4013 #: flatcamTools/ToolNonCopperClear.py:233 msgid "The tip diameter for V-Shape Tool" msgstr "The tip diameter for V-Shape Tool" -#: flatcamGUI/ObjectUI.py:320 flatcamGUI/ObjectUI.py:1350 -#: flatcamGUI/PreferencesUI.py:1653 flatcamGUI/PreferencesUI.py:4022 +#: flatcamGUI/ObjectUI.py:331 flatcamGUI/ObjectUI.py:1389 +#: flatcamGUI/PreferencesUI.py:1654 flatcamGUI/PreferencesUI.py:4023 #: flatcamTools/ToolNonCopperClear.py:242 msgid "V-Tip Angle" msgstr "V-Tip Angle" -#: flatcamGUI/ObjectUI.py:322 flatcamGUI/ObjectUI.py:1353 -#: flatcamGUI/PreferencesUI.py:1655 flatcamGUI/PreferencesUI.py:4024 +#: flatcamGUI/ObjectUI.py:333 flatcamGUI/ObjectUI.py:1392 +#: flatcamGUI/PreferencesUI.py:1656 flatcamGUI/PreferencesUI.py:4025 #: flatcamTools/ToolNonCopperClear.py:244 msgid "" "The tip angle for V-Shape Tool.\n" @@ -7075,9 +7074,9 @@ msgstr "" "The tip angle for V-Shape Tool.\n" "In degree." -#: flatcamGUI/ObjectUI.py:336 flatcamGUI/ObjectUI.py:1369 -#: flatcamGUI/PreferencesUI.py:1668 flatcamGUI/PreferencesUI.py:3181 -#: flatcamGUI/PreferencesUI.py:4293 flatcamTools/ToolCutOut.py:135 +#: flatcamGUI/ObjectUI.py:347 flatcamGUI/ObjectUI.py:1408 +#: flatcamGUI/PreferencesUI.py:1669 flatcamGUI/PreferencesUI.py:3182 +#: flatcamGUI/PreferencesUI.py:4294 flatcamTools/ToolCutOut.py:135 msgid "" "Cutting depth (negative)\n" "below the copper surface." @@ -7085,7 +7084,7 @@ msgstr "" "Cutting depth (negative)\n" "below the copper surface." -#: flatcamGUI/ObjectUI.py:350 +#: flatcamGUI/ObjectUI.py:361 msgid "" "Diameter of the cutting tool.\n" "If you want to have an isolation path\n" @@ -7099,11 +7098,11 @@ msgstr "" "feature, use a negative value for\n" "this parameter." -#: flatcamGUI/ObjectUI.py:366 flatcamGUI/PreferencesUI.py:1462 +#: flatcamGUI/ObjectUI.py:377 flatcamGUI/PreferencesUI.py:1463 msgid "# Passes" msgstr "# Passes" -#: flatcamGUI/ObjectUI.py:368 flatcamGUI/PreferencesUI.py:1464 +#: flatcamGUI/ObjectUI.py:379 flatcamGUI/PreferencesUI.py:1465 msgid "" "Width of the isolation gap in\n" "number (integer) of tool widths." @@ -7111,22 +7110,22 @@ msgstr "" "Width of the isolation gap in\n" "number (integer) of tool widths." -#: flatcamGUI/ObjectUI.py:378 flatcamGUI/PreferencesUI.py:1474 +#: flatcamGUI/ObjectUI.py:389 flatcamGUI/PreferencesUI.py:1475 msgid "Pass overlap" msgstr "Pass overlap" -#: flatcamGUI/ObjectUI.py:380 flatcamGUI/PreferencesUI.py:1476 +#: flatcamGUI/ObjectUI.py:391 flatcamGUI/PreferencesUI.py:1477 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:392 flatcamGUI/PreferencesUI.py:1501 -#: flatcamGUI/PreferencesUI.py:3594 flatcamGUI/PreferencesUI.py:4067 +#: flatcamGUI/ObjectUI.py:403 flatcamGUI/PreferencesUI.py:1502 +#: flatcamGUI/PreferencesUI.py:3595 flatcamGUI/PreferencesUI.py:4068 #: flatcamTools/ToolNonCopperClear.py:162 msgid "Milling Type" msgstr "Milling Type" -#: flatcamGUI/ObjectUI.py:394 flatcamGUI/PreferencesUI.py:1503 -#: flatcamGUI/PreferencesUI.py:3596 +#: flatcamGUI/ObjectUI.py:405 flatcamGUI/PreferencesUI.py:1504 +#: flatcamGUI/PreferencesUI.py:3597 msgid "" "Milling type:\n" "- climb / best for precision milling and to reduce tool usage\n" @@ -7136,29 +7135,29 @@ msgstr "" "- climb / best for precision milling and to reduce tool usage\n" "- conventional / useful when there is no backlash compensation" -#: flatcamGUI/ObjectUI.py:398 flatcamGUI/PreferencesUI.py:1508 -#: flatcamGUI/PreferencesUI.py:3600 flatcamGUI/PreferencesUI.py:4074 +#: flatcamGUI/ObjectUI.py:409 flatcamGUI/PreferencesUI.py:1509 +#: flatcamGUI/PreferencesUI.py:3601 flatcamGUI/PreferencesUI.py:4075 #: flatcamTools/ToolNonCopperClear.py:169 msgid "Climb" msgstr "Climb" -#: flatcamGUI/ObjectUI.py:399 +#: flatcamGUI/ObjectUI.py:410 msgid "Conventional" msgstr "Conventional" -#: flatcamGUI/ObjectUI.py:404 +#: flatcamGUI/ObjectUI.py:415 msgid "Combine" msgstr "Combine" -#: flatcamGUI/ObjectUI.py:406 flatcamGUI/PreferencesUI.py:1515 +#: flatcamGUI/ObjectUI.py:417 flatcamGUI/PreferencesUI.py:1516 msgid "Combine all passes into one object" msgstr "Combine all passes into one object" -#: flatcamGUI/ObjectUI.py:410 flatcamGUI/PreferencesUI.py:1607 +#: flatcamGUI/ObjectUI.py:421 flatcamGUI/PreferencesUI.py:1608 msgid "\"Follow\"" msgstr "\"Follow\"" -#: flatcamGUI/ObjectUI.py:411 flatcamGUI/PreferencesUI.py:1609 +#: flatcamGUI/ObjectUI.py:422 flatcamGUI/PreferencesUI.py:1610 msgid "" "Generate a 'Follow' geometry.\n" "This means that it will cut through\n" @@ -7168,11 +7167,11 @@ msgstr "" "This means that it will cut through\n" "the middle of the trace." -#: flatcamGUI/ObjectUI.py:417 +#: flatcamGUI/ObjectUI.py:428 msgid "Except" msgstr "Except" -#: flatcamGUI/ObjectUI.py:420 +#: flatcamGUI/ObjectUI.py:431 msgid "" "When the isolation geometry is generated,\n" "by checking this, the area of the object bellow\n" @@ -7182,12 +7181,12 @@ msgstr "" "by checking this, the area of the object bellow\n" "will be subtracted from the isolation geometry." -#: flatcamGUI/ObjectUI.py:442 flatcamTools/ToolNonCopperClear.py:82 +#: flatcamGUI/ObjectUI.py:453 flatcamTools/ToolNonCopperClear.py:82 #: flatcamTools/ToolPaint.py:85 msgid "Obj Type" msgstr "Obj Type" -#: flatcamGUI/ObjectUI.py:444 +#: flatcamGUI/ObjectUI.py:455 msgid "" "Specify the type of object to be excepted from isolation.\n" "It can be of type: Gerber or Geometry.\n" @@ -7199,22 +7198,22 @@ msgstr "" "What is selected here will dictate the kind\n" "of objects that will populate the 'Object' combobox." -#: flatcamGUI/ObjectUI.py:457 flatcamGUI/PreferencesUI.py:6453 +#: flatcamGUI/ObjectUI.py:468 flatcamGUI/PreferencesUI.py:6454 #: 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:458 +#: flatcamGUI/ObjectUI.py:469 msgid "Object whose area will be removed from isolation geometry." msgstr "Object whose area will be removed from isolation geometry." -#: flatcamGUI/ObjectUI.py:465 flatcamGUI/PreferencesUI.py:1488 +#: flatcamGUI/ObjectUI.py:476 flatcamGUI/PreferencesUI.py:1489 msgid "Scope" msgstr "Scope" -#: flatcamGUI/ObjectUI.py:467 flatcamGUI/PreferencesUI.py:1490 +#: flatcamGUI/ObjectUI.py:478 flatcamGUI/PreferencesUI.py:1491 msgid "" "Isolation scope. Choose what to isolate:\n" "- 'All' -> Isolate all the polygons in the object\n" @@ -7224,16 +7223,16 @@ msgstr "" "- 'All' -> Isolate all the polygons in the object\n" "- 'Selection' -> Isolate a selection of polygons." -#: flatcamGUI/ObjectUI.py:472 flatcamGUI/PreferencesUI.py:1495 -#: flatcamGUI/PreferencesUI.py:4603 flatcamTools/ToolPaint.py:300 +#: flatcamGUI/ObjectUI.py:483 flatcamGUI/PreferencesUI.py:1496 +#: flatcamGUI/PreferencesUI.py:4604 flatcamTools/ToolPaint.py:300 msgid "Selection" msgstr "Selection" -#: flatcamGUI/ObjectUI.py:480 flatcamGUI/PreferencesUI.py:1681 +#: flatcamGUI/ObjectUI.py:491 flatcamGUI/PreferencesUI.py:1682 msgid "Isolation Type" msgstr "Isolation Type" -#: flatcamGUI/ObjectUI.py:482 flatcamGUI/PreferencesUI.py:1683 +#: flatcamGUI/ObjectUI.py:493 flatcamGUI/PreferencesUI.py:1684 msgid "" "Choose how the isolation will be executed:\n" "- 'Full' -> complete isolation of polygons\n" @@ -7253,24 +7252,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:491 flatcamGUI/PreferencesUI.py:1692 -#: flatcamGUI/PreferencesUI.py:1708 +#: flatcamGUI/ObjectUI.py:502 flatcamGUI/PreferencesUI.py:1693 +#: flatcamGUI/PreferencesUI.py:1709 msgid "Full" msgstr "Full" -#: flatcamGUI/ObjectUI.py:492 +#: flatcamGUI/ObjectUI.py:503 msgid "Ext" msgstr "Ext" -#: flatcamGUI/ObjectUI.py:493 +#: flatcamGUI/ObjectUI.py:504 msgid "Int" msgstr "Int" -#: flatcamGUI/ObjectUI.py:498 +#: flatcamGUI/ObjectUI.py:509 msgid "Generate Isolation Geometry" msgstr "Generate Isolation Geometry" -#: flatcamGUI/ObjectUI.py:506 +#: flatcamGUI/ObjectUI.py:517 msgid "" "Create a Geometry object with toolpaths to cut \n" "isolation outside, inside or on both sides of the\n" @@ -7292,11 +7291,11 @@ msgstr "" "inside the actual Gerber feature, use a negative tool\n" "diameter above." -#: flatcamGUI/ObjectUI.py:518 +#: flatcamGUI/ObjectUI.py:529 msgid "Buffer Solid Geometry" msgstr "Buffer Solid Geometry" -#: flatcamGUI/ObjectUI.py:520 +#: flatcamGUI/ObjectUI.py:531 msgid "" "This button is shown only when the Gerber file\n" "is loaded without buffering.\n" @@ -7308,11 +7307,11 @@ msgstr "" "Clicking this will create the buffered geometry\n" "required for isolation." -#: flatcamGUI/ObjectUI.py:548 +#: flatcamGUI/ObjectUI.py:559 msgid "Clear N-copper" msgstr "Clear N-copper" -#: flatcamGUI/ObjectUI.py:550 flatcamGUI/PreferencesUI.py:3974 +#: flatcamGUI/ObjectUI.py:561 flatcamGUI/PreferencesUI.py:3975 msgid "" "Create a Geometry object with\n" "toolpaths to cut all non-copper regions." @@ -7320,7 +7319,7 @@ msgstr "" "Create a Geometry object with\n" "toolpaths to cut all non-copper regions." -#: flatcamGUI/ObjectUI.py:557 flatcamGUI/ObjectUI.py:1714 +#: flatcamGUI/ObjectUI.py:568 flatcamGUI/ObjectUI.py:1753 #: flatcamTools/ToolNonCopperClear.py:479 msgid "" "Create the Geometry Object\n" @@ -7329,11 +7328,11 @@ msgstr "" "Create the Geometry Object\n" "for non-copper routing." -#: flatcamGUI/ObjectUI.py:570 +#: flatcamGUI/ObjectUI.py:581 msgid "Board cutout" msgstr "Board cutout" -#: flatcamGUI/ObjectUI.py:572 flatcamGUI/PreferencesUI.py:4266 +#: flatcamGUI/ObjectUI.py:583 flatcamGUI/PreferencesUI.py:4267 msgid "" "Create toolpaths to cut around\n" "the PCB and separate it from\n" @@ -7343,7 +7342,7 @@ msgstr "" "the PCB and separate it from\n" "the original board." -#: flatcamGUI/ObjectUI.py:579 +#: flatcamGUI/ObjectUI.py:590 msgid "" "Generate the geometry for\n" "the board cutout." @@ -7351,11 +7350,11 @@ msgstr "" "Generate the geometry for\n" "the board cutout." -#: flatcamGUI/ObjectUI.py:597 flatcamGUI/PreferencesUI.py:1520 +#: flatcamGUI/ObjectUI.py:608 flatcamGUI/PreferencesUI.py:1521 msgid "Non-copper regions" msgstr "Non-copper regions" -#: flatcamGUI/ObjectUI.py:599 flatcamGUI/PreferencesUI.py:1522 +#: flatcamGUI/ObjectUI.py:610 flatcamGUI/PreferencesUI.py:1523 msgid "" "Create polygons covering the\n" "areas without copper on the PCB.\n" @@ -7369,12 +7368,12 @@ msgstr "" "object. Can be used to remove all\n" "copper from a specified region." -#: flatcamGUI/ObjectUI.py:609 flatcamGUI/ObjectUI.py:650 -#: flatcamGUI/PreferencesUI.py:1534 flatcamGUI/PreferencesUI.py:1562 +#: flatcamGUI/ObjectUI.py:620 flatcamGUI/ObjectUI.py:661 +#: flatcamGUI/PreferencesUI.py:1535 flatcamGUI/PreferencesUI.py:1563 msgid "Boundary Margin" msgstr "Boundary Margin" -#: flatcamGUI/ObjectUI.py:611 flatcamGUI/PreferencesUI.py:1536 +#: flatcamGUI/ObjectUI.py:622 flatcamGUI/PreferencesUI.py:1537 msgid "" "Specify the edge of the PCB\n" "by drawing a box around all\n" @@ -7386,27 +7385,27 @@ msgstr "" "objects with this minimum\n" "distance." -#: flatcamGUI/ObjectUI.py:626 flatcamGUI/ObjectUI.py:664 -#: flatcamGUI/PreferencesUI.py:1549 flatcamGUI/PreferencesUI.py:1575 +#: flatcamGUI/ObjectUI.py:637 flatcamGUI/ObjectUI.py:675 +#: flatcamGUI/PreferencesUI.py:1550 flatcamGUI/PreferencesUI.py:1576 msgid "Rounded Geo" msgstr "Rounded Geo" -#: flatcamGUI/ObjectUI.py:628 flatcamGUI/PreferencesUI.py:1551 +#: flatcamGUI/ObjectUI.py:639 flatcamGUI/PreferencesUI.py:1552 msgid "Resulting geometry will have rounded corners." msgstr "Resulting geometry will have rounded corners." -#: flatcamGUI/ObjectUI.py:632 flatcamGUI/ObjectUI.py:673 +#: flatcamGUI/ObjectUI.py:643 flatcamGUI/ObjectUI.py:684 #: flatcamTools/ToolSolderPaste.py:133 msgid "Generate Geo" msgstr "Generate Geo" -#: flatcamGUI/ObjectUI.py:642 flatcamGUI/PreferencesUI.py:1556 -#: flatcamGUI/PreferencesUI.py:5983 flatcamTools/ToolPanelize.py:95 +#: flatcamGUI/ObjectUI.py:653 flatcamGUI/PreferencesUI.py:1557 +#: flatcamGUI/PreferencesUI.py:5984 flatcamTools/ToolPanelize.py:95 #: flatcamTools/ToolQRCode.py:192 msgid "Bounding Box" msgstr "Bounding Box" -#: flatcamGUI/ObjectUI.py:644 +#: flatcamGUI/ObjectUI.py:655 msgid "" "Create a geometry surrounding the Gerber object.\n" "Square shape." @@ -7414,7 +7413,7 @@ msgstr "" "Create a geometry surrounding the Gerber object.\n" "Square shape." -#: flatcamGUI/ObjectUI.py:652 flatcamGUI/PreferencesUI.py:1564 +#: flatcamGUI/ObjectUI.py:663 flatcamGUI/PreferencesUI.py:1565 msgid "" "Distance of the edges of the box\n" "to the nearest polygon." @@ -7422,7 +7421,7 @@ msgstr "" "Distance of the edges of the box\n" "to the nearest polygon." -#: flatcamGUI/ObjectUI.py:666 flatcamGUI/PreferencesUI.py:1577 +#: flatcamGUI/ObjectUI.py:677 flatcamGUI/PreferencesUI.py:1578 msgid "" "If the bounding box is \n" "to have rounded corners\n" @@ -7434,33 +7433,33 @@ msgstr "" "their radius is equal to\n" "the margin." -#: flatcamGUI/ObjectUI.py:675 +#: flatcamGUI/ObjectUI.py:686 msgid "Generate the Geometry object." msgstr "Generate the Geometry object." -#: flatcamGUI/ObjectUI.py:691 +#: flatcamGUI/ObjectUI.py:715 msgid "Excellon Object" msgstr "Excellon Object" -#: flatcamGUI/ObjectUI.py:705 +#: flatcamGUI/ObjectUI.py:729 msgid "Solid circles." msgstr "Solid circles." -#: flatcamGUI/ObjectUI.py:753 flatcamGUI/ObjectUI.py:1876 +#: flatcamGUI/ObjectUI.py:777 flatcamGUI/ObjectUI.py:1928 #: flatcamTools/ToolProperties.py:161 msgid "Drills" msgstr "Drills" -#: flatcamGUI/ObjectUI.py:753 flatcamGUI/ObjectUI.py:1876 -#: flatcamGUI/PreferencesUI.py:2952 flatcamTools/ToolProperties.py:162 +#: flatcamGUI/ObjectUI.py:777 flatcamGUI/ObjectUI.py:1928 +#: flatcamGUI/PreferencesUI.py:2953 flatcamTools/ToolProperties.py:162 msgid "Slots" msgstr "Slots" -#: flatcamGUI/ObjectUI.py:754 flatcamGUI/PreferencesUI.py:2555 +#: flatcamGUI/ObjectUI.py:778 flatcamGUI/PreferencesUI.py:2556 msgid "Offset Z" msgstr "Offset Z" -#: flatcamGUI/ObjectUI.py:758 +#: flatcamGUI/ObjectUI.py:782 msgid "" "This is the Tool Number.\n" "When ToolChange is checked, on toolchange event this value\n" @@ -7474,7 +7473,7 @@ msgstr "" "\n" "Here the tools are selected for G-code generation." -#: flatcamGUI/ObjectUI.py:763 flatcamGUI/ObjectUI.py:1191 +#: flatcamGUI/ObjectUI.py:787 flatcamGUI/ObjectUI.py:1230 #: flatcamTools/ToolPaint.py:137 msgid "" "Tool Diameter. It's value (in current FlatCAM units) \n" @@ -7483,7 +7482,7 @@ msgstr "" "Tool Diameter. It's value (in current FlatCAM units) \n" "is the cut width into the material." -#: flatcamGUI/ObjectUI.py:766 +#: flatcamGUI/ObjectUI.py:790 msgid "" "The number of Drill holes. Holes that are drilled with\n" "a drill bit." @@ -7491,7 +7490,7 @@ msgstr "" "The number of Drill holes. Holes that are drilled with\n" "a drill bit." -#: flatcamGUI/ObjectUI.py:769 +#: flatcamGUI/ObjectUI.py:793 msgid "" "The number of Slot holes. Holes that are created by\n" "milling them with an endmill bit." @@ -7499,7 +7498,7 @@ msgstr "" "The number of Slot holes. Holes that are created by\n" "milling them with an endmill bit." -#: flatcamGUI/ObjectUI.py:772 flatcamGUI/PreferencesUI.py:2557 +#: flatcamGUI/ObjectUI.py:796 flatcamGUI/PreferencesUI.py:2558 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" @@ -7509,7 +7508,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:776 +#: flatcamGUI/ObjectUI.py:800 msgid "" "Toggle display of the drills for the current tool.\n" "This does not select the tools for G-code generation." @@ -7517,12 +7516,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:783 flatcamGUI/PreferencesUI.py:2323 -#: flatcamGUI/PreferencesUI.py:3167 +#: flatcamGUI/ObjectUI.py:807 flatcamGUI/PreferencesUI.py:2324 +#: flatcamGUI/PreferencesUI.py:3168 msgid "Create CNC Job" msgstr "Create CNC Job" -#: flatcamGUI/ObjectUI.py:785 +#: flatcamGUI/ObjectUI.py:809 msgid "" "Create a CNC Job object\n" "for this drill object." @@ -7530,7 +7529,7 @@ msgstr "" "Create a CNC Job object\n" "for this drill object." -#: flatcamGUI/ObjectUI.py:798 flatcamGUI/PreferencesUI.py:2336 +#: flatcamGUI/ObjectUI.py:822 flatcamGUI/PreferencesUI.py:2337 msgid "" "Drill depth (negative)\n" "below the copper surface." @@ -7538,7 +7537,7 @@ msgstr "" "Drill depth (negative)\n" "below the copper surface." -#: flatcamGUI/ObjectUI.py:817 flatcamGUI/PreferencesUI.py:2354 +#: flatcamGUI/ObjectUI.py:841 flatcamGUI/PreferencesUI.py:2355 msgid "" "Tool height when travelling\n" "across the XY plane." @@ -7546,12 +7545,12 @@ msgstr "" "Tool height when travelling\n" "across the XY plane." -#: flatcamGUI/ObjectUI.py:834 flatcamGUI/ObjectUI.py:1439 -#: flatcamGUI/PreferencesUI.py:2369 flatcamGUI/PreferencesUI.py:3252 +#: flatcamGUI/ObjectUI.py:858 flatcamGUI/ObjectUI.py:1478 +#: flatcamGUI/PreferencesUI.py:2370 flatcamGUI/PreferencesUI.py:3253 msgid "Tool change" msgstr "Tool change" -#: flatcamGUI/ObjectUI.py:836 flatcamGUI/PreferencesUI.py:2371 +#: flatcamGUI/ObjectUI.py:860 flatcamGUI/PreferencesUI.py:2372 msgid "" "Include tool-change sequence\n" "in G-Code (Pause for tool change)." @@ -7559,12 +7558,12 @@ msgstr "" "Include tool-change sequence\n" "in G-Code (Pause for tool change)." -#: flatcamGUI/ObjectUI.py:842 flatcamGUI/ObjectUI.py:1432 +#: flatcamGUI/ObjectUI.py:866 flatcamGUI/ObjectUI.py:1471 msgid "Tool change Z" msgstr "Tool change Z" -#: flatcamGUI/ObjectUI.py:844 flatcamGUI/ObjectUI.py:1435 -#: flatcamGUI/PreferencesUI.py:2380 flatcamGUI/PreferencesUI.py:3267 +#: flatcamGUI/ObjectUI.py:868 flatcamGUI/ObjectUI.py:1474 +#: flatcamGUI/PreferencesUI.py:2381 flatcamGUI/PreferencesUI.py:3268 msgid "" "Z-axis position (height) for\n" "tool change." @@ -7572,12 +7571,12 @@ msgstr "" "Z-axis position (height) for\n" "tool change." -#: flatcamGUI/ObjectUI.py:862 flatcamGUI/PreferencesUI.py:2575 -#: flatcamGUI/PreferencesUI.py:3420 +#: flatcamGUI/ObjectUI.py:886 flatcamGUI/PreferencesUI.py:2576 +#: flatcamGUI/PreferencesUI.py:3421 msgid "Start move Z" msgstr "Start move Z" -#: flatcamGUI/ObjectUI.py:864 flatcamGUI/PreferencesUI.py:2577 +#: flatcamGUI/ObjectUI.py:888 flatcamGUI/PreferencesUI.py:2578 msgid "" "Height of the tool just after start.\n" "Delete the value if you don't need this feature." @@ -7585,13 +7584,13 @@ msgstr "" "Height of the tool just after start.\n" "Delete the value if you don't need this feature." -#: flatcamGUI/ObjectUI.py:872 flatcamGUI/ObjectUI.py:1473 -#: flatcamGUI/PreferencesUI.py:2395 flatcamGUI/PreferencesUI.py:3286 +#: flatcamGUI/ObjectUI.py:896 flatcamGUI/ObjectUI.py:1512 +#: flatcamGUI/PreferencesUI.py:2396 flatcamGUI/PreferencesUI.py:3287 msgid "End move Z" msgstr "End move Z" -#: flatcamGUI/ObjectUI.py:874 flatcamGUI/ObjectUI.py:1475 -#: flatcamGUI/PreferencesUI.py:2397 flatcamGUI/PreferencesUI.py:3288 +#: flatcamGUI/ObjectUI.py:898 flatcamGUI/ObjectUI.py:1514 +#: flatcamGUI/PreferencesUI.py:2398 flatcamGUI/PreferencesUI.py:3289 msgid "" "Height of the tool after\n" "the last move at the end of the job." @@ -7599,13 +7598,13 @@ msgstr "" "Height of the tool after\n" "the last move at the end of the job." -#: flatcamGUI/ObjectUI.py:891 flatcamGUI/ObjectUI.py:1506 -#: flatcamGUI/PreferencesUI.py:2412 flatcamGUI/PreferencesUI.py:3321 -#: flatcamGUI/PreferencesUI.py:5497 flatcamTools/ToolSolderPaste.py:264 +#: flatcamGUI/ObjectUI.py:915 flatcamGUI/ObjectUI.py:1545 +#: flatcamGUI/PreferencesUI.py:2413 flatcamGUI/PreferencesUI.py:3322 +#: flatcamGUI/PreferencesUI.py:5498 flatcamTools/ToolSolderPaste.py:264 msgid "Feedrate Z" msgstr "Feedrate Z" -#: flatcamGUI/ObjectUI.py:893 flatcamGUI/PreferencesUI.py:2414 +#: flatcamGUI/ObjectUI.py:917 flatcamGUI/PreferencesUI.py:2415 msgid "" "Tool speed while drilling\n" "(in units per minute).\n" @@ -7617,12 +7616,12 @@ msgstr "" "So called 'Plunge' feedrate.\n" "This is for linear move G01." -#: flatcamGUI/ObjectUI.py:907 flatcamGUI/ObjectUI.py:1521 -#: flatcamGUI/PreferencesUI.py:2585 flatcamGUI/PreferencesUI.py:3430 +#: flatcamGUI/ObjectUI.py:931 flatcamGUI/ObjectUI.py:1560 +#: flatcamGUI/PreferencesUI.py:2586 flatcamGUI/PreferencesUI.py:3431 msgid "Feedrate Rapids" msgstr "Feedrate Rapids" -#: flatcamGUI/ObjectUI.py:909 flatcamGUI/PreferencesUI.py:2587 +#: flatcamGUI/ObjectUI.py:933 flatcamGUI/PreferencesUI.py:2588 msgid "" "Tool speed while drilling\n" "(in units per minute).\n" @@ -7636,12 +7635,12 @@ msgstr "" "It is useful only for Marlin,\n" "ignore for any other cases." -#: flatcamGUI/ObjectUI.py:927 flatcamGUI/ObjectUI.py:1566 -#: flatcamGUI/PreferencesUI.py:3337 +#: flatcamGUI/ObjectUI.py:951 flatcamGUI/ObjectUI.py:1605 +#: flatcamGUI/PreferencesUI.py:3338 msgid "Spindle speed" msgstr "Spindle speed" -#: flatcamGUI/ObjectUI.py:929 flatcamGUI/PreferencesUI.py:2429 +#: flatcamGUI/ObjectUI.py:953 flatcamGUI/PreferencesUI.py:2430 msgid "" "Speed of the spindle\n" "in RPM (optional)" @@ -7649,8 +7648,8 @@ msgstr "" "Speed of the spindle\n" "in RPM (optional)" -#: flatcamGUI/ObjectUI.py:941 flatcamGUI/ObjectUI.py:1585 -#: flatcamGUI/PreferencesUI.py:2441 flatcamGUI/PreferencesUI.py:3355 +#: flatcamGUI/ObjectUI.py:965 flatcamGUI/ObjectUI.py:1624 +#: flatcamGUI/PreferencesUI.py:2442 flatcamGUI/PreferencesUI.py:3356 msgid "" "Pause to allow the spindle to reach its\n" "speed before cutting." @@ -7658,12 +7657,12 @@ msgstr "" "Pause to allow the spindle to reach its\n" "speed before cutting." -#: flatcamGUI/ObjectUI.py:950 flatcamGUI/ObjectUI.py:1595 -#: flatcamGUI/PreferencesUI.py:2446 flatcamGUI/PreferencesUI.py:3360 +#: flatcamGUI/ObjectUI.py:974 flatcamGUI/ObjectUI.py:1634 +#: flatcamGUI/PreferencesUI.py:2447 flatcamGUI/PreferencesUI.py:3361 msgid "Number of time units for spindle to dwell." msgstr "Number of time units for spindle to dwell." -#: flatcamGUI/ObjectUI.py:960 flatcamGUI/PreferencesUI.py:2463 +#: flatcamGUI/ObjectUI.py:984 flatcamGUI/PreferencesUI.py:2464 msgid "" "The preprocessor JSON file that dictates\n" "Gcode output." @@ -7671,13 +7670,13 @@ msgstr "" "The preprocessor JSON file that dictates\n" "Gcode output." -#: flatcamGUI/ObjectUI.py:969 flatcamGUI/ObjectUI.py:1615 -#: flatcamGUI/PreferencesUI.py:2601 flatcamGUI/PreferencesUI.py:3471 +#: flatcamGUI/ObjectUI.py:993 flatcamGUI/ObjectUI.py:1654 +#: flatcamGUI/PreferencesUI.py:2602 flatcamGUI/PreferencesUI.py:3472 msgid "Probe Z depth" msgstr "Probe Z depth" -#: flatcamGUI/ObjectUI.py:971 flatcamGUI/ObjectUI.py:1617 -#: flatcamGUI/PreferencesUI.py:2603 flatcamGUI/PreferencesUI.py:3473 +#: flatcamGUI/ObjectUI.py:995 flatcamGUI/ObjectUI.py:1656 +#: flatcamGUI/PreferencesUI.py:2604 flatcamGUI/PreferencesUI.py:3474 msgid "" "The maximum depth that the probe is allowed\n" "to probe. Negative value, in current units." @@ -7685,21 +7684,21 @@ msgstr "" "The maximum depth that the probe is allowed\n" "to probe. Negative value, in current units." -#: flatcamGUI/ObjectUI.py:985 flatcamGUI/ObjectUI.py:1632 -#: flatcamGUI/PreferencesUI.py:2614 flatcamGUI/PreferencesUI.py:3486 +#: flatcamGUI/ObjectUI.py:1009 flatcamGUI/ObjectUI.py:1671 +#: flatcamGUI/PreferencesUI.py:2615 flatcamGUI/PreferencesUI.py:3487 msgid "Feedrate Probe" msgstr "Feedrate Probe" -#: flatcamGUI/ObjectUI.py:987 flatcamGUI/ObjectUI.py:1634 -#: flatcamGUI/PreferencesUI.py:2616 flatcamGUI/PreferencesUI.py:3488 +#: flatcamGUI/ObjectUI.py:1011 flatcamGUI/ObjectUI.py:1673 +#: flatcamGUI/PreferencesUI.py:2617 flatcamGUI/PreferencesUI.py:3489 msgid "The feedrate used while the probe is probing." msgstr "The feedrate used while the probe is probing." -#: flatcamGUI/ObjectUI.py:1013 flatcamGUI/PreferencesUI.py:2472 +#: flatcamGUI/ObjectUI.py:1037 flatcamGUI/PreferencesUI.py:2473 msgid "Gcode" msgstr "Gcode" -#: flatcamGUI/ObjectUI.py:1015 +#: flatcamGUI/ObjectUI.py:1039 msgid "" "Choose what to use for GCode generation:\n" "'Drills', 'Slots' or 'Both'.\n" @@ -7711,19 +7710,19 @@ msgstr "" "When choosing 'Slots' or 'Both', slots will be\n" "converted to a series of drills." -#: flatcamGUI/ObjectUI.py:1029 +#: flatcamGUI/ObjectUI.py:1053 msgid "Create Drills GCode" msgstr "Create Drills GCode" -#: flatcamGUI/ObjectUI.py:1031 +#: flatcamGUI/ObjectUI.py:1055 msgid "Generate the CNC Job." msgstr "Generate the CNC Job." -#: flatcamGUI/ObjectUI.py:1042 flatcamGUI/PreferencesUI.py:2490 +#: flatcamGUI/ObjectUI.py:1066 flatcamGUI/PreferencesUI.py:2491 msgid "Mill Holes" msgstr "Mill Holes" -#: flatcamGUI/ObjectUI.py:1044 +#: flatcamGUI/ObjectUI.py:1068 msgid "" "Create Geometry for milling holes.\n" "Select from the Tools Table above the hole dias to be\n" @@ -7733,20 +7732,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:1050 flatcamGUI/PreferencesUI.py:2496 +#: flatcamGUI/ObjectUI.py:1074 flatcamGUI/PreferencesUI.py:2497 msgid "Drill Tool dia" msgstr "Drill Tool dia" -#: flatcamGUI/ObjectUI.py:1052 flatcamGUI/PreferencesUI.py:1451 -#: flatcamGUI/PreferencesUI.py:2498 +#: flatcamGUI/ObjectUI.py:1076 flatcamGUI/PreferencesUI.py:1452 +#: flatcamGUI/PreferencesUI.py:2499 msgid "Diameter of the cutting tool." msgstr "Diameter of the cutting tool." -#: flatcamGUI/ObjectUI.py:1059 +#: flatcamGUI/ObjectUI.py:1083 msgid "Mill Drills Geo" msgstr "Mill Drills Geo" -#: flatcamGUI/ObjectUI.py:1061 +#: flatcamGUI/ObjectUI.py:1085 msgid "" "Create the Geometry Object\n" "for milling DRILLS toolpaths." @@ -7754,11 +7753,11 @@ msgstr "" "Create the Geometry Object\n" "for milling DRILLS toolpaths." -#: flatcamGUI/ObjectUI.py:1075 flatcamGUI/PreferencesUI.py:2507 +#: flatcamGUI/ObjectUI.py:1099 flatcamGUI/PreferencesUI.py:2508 msgid "Slot Tool dia" msgstr "Slot Tool dia" -#: flatcamGUI/ObjectUI.py:1077 flatcamGUI/PreferencesUI.py:2509 +#: flatcamGUI/ObjectUI.py:1101 flatcamGUI/PreferencesUI.py:2510 msgid "" "Diameter of the cutting tool\n" "when milling slots." @@ -7766,11 +7765,11 @@ msgstr "" "Diameter of the cutting tool\n" "when milling slots." -#: flatcamGUI/ObjectUI.py:1086 +#: flatcamGUI/ObjectUI.py:1110 msgid "Mill Slots Geo" msgstr "Mill Slots Geo" -#: flatcamGUI/ObjectUI.py:1088 +#: flatcamGUI/ObjectUI.py:1112 msgid "" "Create the Geometry Object\n" "for milling SLOTS toolpaths." @@ -7778,11 +7777,11 @@ msgstr "" "Create the Geometry Object\n" "for milling SLOTS toolpaths." -#: flatcamGUI/ObjectUI.py:1115 flatcamTools/ToolCutOut.py:315 +#: flatcamGUI/ObjectUI.py:1152 flatcamTools/ToolCutOut.py:315 msgid "Geometry Object" msgstr "Geometry Object" -#: flatcamGUI/ObjectUI.py:1147 +#: flatcamGUI/ObjectUI.py:1186 msgid "" "Tools in this Geometry object used for cutting.\n" "The 'Offset' entry will set an offset for the cut.\n" @@ -7810,118 +7809,118 @@ 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:1164 flatcamGUI/ObjectUI.py:1853 -#: flatcamGUI/PreferencesUI.py:3627 +#: flatcamGUI/ObjectUI.py:1203 flatcamGUI/ObjectUI.py:1905 +#: flatcamGUI/PreferencesUI.py:3628 msgid "Plot Object" msgstr "Plot Object" -#: flatcamGUI/ObjectUI.py:1178 flatcamGUI/ObjectUI.py:1866 -#: flatcamGUI/ObjectUI.py:1876 flatcamGUI/PreferencesUI.py:6172 +#: flatcamGUI/ObjectUI.py:1217 flatcamGUI/ObjectUI.py:1918 +#: flatcamGUI/ObjectUI.py:1928 flatcamGUI/PreferencesUI.py:6173 #: flatcamTools/ToolCopperThieving.py:220 msgid "Dia" msgstr "Dia" -#: flatcamGUI/ObjectUI.py:1178 flatcamGUI/ObjectUI.py:1866 +#: flatcamGUI/ObjectUI.py:1217 flatcamGUI/ObjectUI.py:1918 #: flatcamTools/ToolNonCopperClear.py:120 flatcamTools/ToolPaint.py:123 msgid "TT" msgstr "TT" -#: flatcamGUI/ObjectUI.py:1185 -msgid "" -"This is the Tool Number.\n" -"When ToolChange is checked, on toolchange event this value\n" -"will be showed as a T1, T2 ... Tn" -msgstr "" -"This is the Tool Number.\n" -"When ToolChange is checked, on toolchange event this value\n" -"will be showed as a T1, T2 ... Tn" - -#: 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 " -"line.\n" -"- In(side) -> The tool cut will follow the geometry inside. It will create a " -"'pocket'.\n" -"- Out(side) -> The tool cut will follow the geometry line on the outside." -msgstr "" -"The value for the Offset can be:\n" -"- Path -> There is no offset, the tool cut will be done through the geometry " -"line.\n" -"- In(side) -> The tool cut will follow the geometry inside. It will create a " -"'pocket'.\n" -"- Out(side) -> The tool cut will follow the geometry line on the outside." - -#: flatcamGUI/ObjectUI.py:1203 -msgid "" -"The (Operation) Type has only informative value. Usually the UI form " -"values \n" -"are choose based on the operation type and this will serve as a reminder.\n" -"Can be 'Roughing', 'Finishing' or 'Isolation'.\n" -"For Roughing we may choose a lower Feedrate and multiDepth cut.\n" -"For Finishing we may choose a higher Feedrate, without multiDepth.\n" -"For Isolation we need a lower Feedrate as it use a milling bit with a fine " -"tip." -msgstr "" -"The (Operation) Type has only informative value. Usually the UI form " -"values \n" -"are choose based on the operation type and this will serve as a reminder.\n" -"Can be 'Roughing', 'Finishing' or 'Isolation'.\n" -"For Roughing we may choose a lower Feedrate and multiDepth cut.\n" -"For Finishing we may choose a higher Feedrate, without multiDepth.\n" -"For Isolation we need a lower Feedrate as it use a milling bit with a fine " -"tip." - -#: flatcamGUI/ObjectUI.py:1212 -msgid "" -"The Tool Type (TT) can be:\n" -"- Circular with 1 ... 4 teeth -> it is informative only. Being circular the " -"cut width in material\n" -"is exactly the tool diameter.\n" -"- Ball -> informative only and make reference to the Ball type endmill.\n" -"- V-Shape -> it will disable de Z-Cut parameter in the UI form and enable " -"two additional UI form\n" -"fields: V-Tip Dia and V-Tip Angle. Adjusting those two values will adjust " -"the Z-Cut parameter such\n" -"as the cut width into material will be equal with the value in the Tool " -"Diameter column of this table.\n" -"Choosing the V-Shape Tool Type automatically will select the Operation Type " -"as Isolation." -msgstr "" -"The Tool Type (TT) can be:\n" -"- Circular with 1 ... 4 teeth -> it is informative only. Being circular the " -"cut width in material\n" -"is exactly the tool diameter.\n" -"- Ball -> informative only and make reference to the Ball type endmill.\n" -"- V-Shape -> it will disable de Z-Cut parameter in the UI form and enable " -"two additional UI form\n" -"fields: V-Tip Dia and V-Tip Angle. Adjusting those two values will adjust " -"the Z-Cut parameter such\n" -"as the cut width into material will be equal with the value in the Tool " -"Diameter column of this table.\n" -"Choosing the V-Shape Tool Type automatically will select the Operation Type " -"as Isolation." - #: flatcamGUI/ObjectUI.py:1224 msgid "" -"Plot column. It is visible only for MultiGeo geometries, meaning geometries " -"that holds the geometry\n" -"data into the tools. For those geometries, deleting the tool will delete the " -"geometry data also,\n" -"so be WARNED. From the checkboxes on each row it can be enabled/disabled the " -"plot on canvas\n" -"for the corresponding tool." +"This is the Tool Number.\n" +"When ToolChange is checked, on toolchange event this value\n" +"will be showed as a T1, T2 ... Tn" msgstr "" -"Plot column. It is visible only for MultiGeo geometries, meaning geometries " -"that holds the geometry\n" -"data into the tools. For those geometries, deleting the tool will delete the " -"geometry data also,\n" -"so be WARNED. From the checkboxes on each row it can be enabled/disabled the " -"plot on canvas\n" -"for the corresponding tool." +"This is the Tool Number.\n" +"When ToolChange is checked, on toolchange event this value\n" +"will be showed as a T1, T2 ... Tn" + +#: flatcamGUI/ObjectUI.py:1235 +msgid "" +"The value for the Offset can be:\n" +"- Path -> There is no offset, the tool cut will be done through the geometry " +"line.\n" +"- In(side) -> The tool cut will follow the geometry inside. It will create a " +"'pocket'.\n" +"- Out(side) -> The tool cut will follow the geometry line on the outside." +msgstr "" +"The value for the Offset can be:\n" +"- Path -> There is no offset, the tool cut will be done through the geometry " +"line.\n" +"- In(side) -> The tool cut will follow the geometry inside. It will create a " +"'pocket'.\n" +"- Out(side) -> The tool cut will follow the geometry line on the outside." #: flatcamGUI/ObjectUI.py:1242 msgid "" +"The (Operation) Type has only informative value. Usually the UI form " +"values \n" +"are choose based on the operation type and this will serve as a reminder.\n" +"Can be 'Roughing', 'Finishing' or 'Isolation'.\n" +"For Roughing we may choose a lower Feedrate and multiDepth cut.\n" +"For Finishing we may choose a higher Feedrate, without multiDepth.\n" +"For Isolation we need a lower Feedrate as it use a milling bit with a fine " +"tip." +msgstr "" +"The (Operation) Type has only informative value. Usually the UI form " +"values \n" +"are choose based on the operation type and this will serve as a reminder.\n" +"Can be 'Roughing', 'Finishing' or 'Isolation'.\n" +"For Roughing we may choose a lower Feedrate and multiDepth cut.\n" +"For Finishing we may choose a higher Feedrate, without multiDepth.\n" +"For Isolation we need a lower Feedrate as it use a milling bit with a fine " +"tip." + +#: flatcamGUI/ObjectUI.py:1251 +msgid "" +"The Tool Type (TT) can be:\n" +"- Circular with 1 ... 4 teeth -> it is informative only. Being circular the " +"cut width in material\n" +"is exactly the tool diameter.\n" +"- Ball -> informative only and make reference to the Ball type endmill.\n" +"- V-Shape -> it will disable de Z-Cut parameter in the UI form and enable " +"two additional UI form\n" +"fields: V-Tip Dia and V-Tip Angle. Adjusting those two values will adjust " +"the Z-Cut parameter such\n" +"as the cut width into material will be equal with the value in the Tool " +"Diameter column of this table.\n" +"Choosing the V-Shape Tool Type automatically will select the Operation Type " +"as Isolation." +msgstr "" +"The Tool Type (TT) can be:\n" +"- Circular with 1 ... 4 teeth -> it is informative only. Being circular the " +"cut width in material\n" +"is exactly the tool diameter.\n" +"- Ball -> informative only and make reference to the Ball type endmill.\n" +"- V-Shape -> it will disable de Z-Cut parameter in the UI form and enable " +"two additional UI form\n" +"fields: V-Tip Dia and V-Tip Angle. Adjusting those two values will adjust " +"the Z-Cut parameter such\n" +"as the cut width into material will be equal with the value in the Tool " +"Diameter column of this table.\n" +"Choosing the V-Shape Tool Type automatically will select the Operation Type " +"as Isolation." + +#: flatcamGUI/ObjectUI.py:1263 +msgid "" +"Plot column. It is visible only for MultiGeo geometries, meaning geometries " +"that holds the geometry\n" +"data into the tools. For those geometries, deleting the tool will delete the " +"geometry data also,\n" +"so be WARNED. From the checkboxes on each row it can be enabled/disabled the " +"plot on canvas\n" +"for the corresponding tool." +msgstr "" +"Plot column. It is visible only for MultiGeo geometries, meaning geometries " +"that holds the geometry\n" +"data into the tools. For those geometries, deleting the tool will delete the " +"geometry data also,\n" +"so be WARNED. From the checkboxes on each row it can be enabled/disabled the " +"plot on canvas\n" +"for the corresponding tool." + +#: flatcamGUI/ObjectUI.py:1281 +msgid "" "The value to offset the cut when \n" "the Offset type selected is 'Offset'.\n" "The value can be positive for 'outside'\n" @@ -7932,7 +7931,7 @@ msgstr "" "The value can be positive for 'outside'\n" "cut and negative for 'inside' cut." -#: flatcamGUI/ObjectUI.py:1267 +#: flatcamGUI/ObjectUI.py:1306 msgid "" "Add a new tool to the Tool Table\n" "with the specified diameter." @@ -7940,11 +7939,11 @@ msgstr "" "Add a new tool to the Tool Table\n" "with the specified diameter." -#: flatcamGUI/ObjectUI.py:1275 +#: flatcamGUI/ObjectUI.py:1314 msgid "Add Tool from DataBase" msgstr "Add Tool from DataBase" -#: flatcamGUI/ObjectUI.py:1277 +#: flatcamGUI/ObjectUI.py:1316 msgid "" "Add a new tool to the Tool Table\n" "from the Tool DataBase." @@ -7952,7 +7951,7 @@ msgstr "" "Add a new tool to the Tool Table\n" "from the Tool DataBase." -#: flatcamGUI/ObjectUI.py:1287 +#: flatcamGUI/ObjectUI.py:1326 msgid "" "Copy a selection of tools in the Tool Table\n" "by first selecting a row in the Tool Table." @@ -7960,7 +7959,7 @@ msgstr "" "Copy a selection of tools in the Tool Table\n" "by first selecting a row in the Tool Table." -#: flatcamGUI/ObjectUI.py:1293 +#: flatcamGUI/ObjectUI.py:1332 msgid "" "Delete a selection of tools in the Tool Table\n" "by first selecting a row in the Tool Table." @@ -7968,7 +7967,7 @@ msgstr "" "Delete a selection of tools in the Tool Table\n" "by first selecting a row in the Tool Table." -#: flatcamGUI/ObjectUI.py:1317 +#: flatcamGUI/ObjectUI.py:1356 msgid "" "The data used for creating GCode.\n" "Each tool store it's own set of such data." @@ -7976,13 +7975,13 @@ msgstr "" "The data used for creating GCode.\n" "Each tool store it's own set of such data." -#: flatcamGUI/ObjectUI.py:1387 flatcamGUI/PreferencesUI.py:3199 -#: flatcamGUI/PreferencesUI.py:4311 flatcamTools/ToolCutOut.py:153 +#: flatcamGUI/ObjectUI.py:1426 flatcamGUI/PreferencesUI.py:3200 +#: flatcamGUI/PreferencesUI.py:4312 flatcamTools/ToolCutOut.py:153 msgid "Multi-Depth" msgstr "Multi-Depth" -#: flatcamGUI/ObjectUI.py:1390 flatcamGUI/PreferencesUI.py:3202 -#: flatcamGUI/PreferencesUI.py:4314 flatcamTools/ToolCutOut.py:156 +#: flatcamGUI/ObjectUI.py:1429 flatcamGUI/PreferencesUI.py:3203 +#: flatcamGUI/PreferencesUI.py:4315 flatcamTools/ToolCutOut.py:156 msgid "" "Use multiple passes to limit\n" "the cut depth in each pass. Will\n" @@ -7994,12 +7993,12 @@ msgstr "" "cut multiple times until Cut Z is\n" "reached." -#: flatcamGUI/ObjectUI.py:1404 flatcamGUI/PreferencesUI.py:4326 +#: flatcamGUI/ObjectUI.py:1443 flatcamGUI/PreferencesUI.py:4327 #: flatcamTools/ToolCutOut.py:170 msgid "Depth of each pass (positive)." msgstr "Depth of each pass (positive)." -#: flatcamGUI/ObjectUI.py:1415 flatcamGUI/PreferencesUI.py:3234 +#: flatcamGUI/ObjectUI.py:1454 flatcamGUI/PreferencesUI.py:3235 msgid "" "Height of the tool when\n" "moving without cutting." @@ -8007,7 +8006,7 @@ msgstr "" "Height of the tool when\n" "moving without cutting." -#: flatcamGUI/ObjectUI.py:1442 flatcamGUI/PreferencesUI.py:3255 +#: flatcamGUI/ObjectUI.py:1481 flatcamGUI/PreferencesUI.py:3256 msgid "" "Include tool-change sequence\n" "in the Machine Code (Pause for tool change)." @@ -8015,12 +8014,12 @@ msgstr "" "Include tool-change sequence\n" "in the Machine Code (Pause for tool change)." -#: flatcamGUI/ObjectUI.py:1492 flatcamGUI/PreferencesUI.py:3306 -#: flatcamGUI/PreferencesUI.py:5484 flatcamTools/ToolSolderPaste.py:252 +#: flatcamGUI/ObjectUI.py:1531 flatcamGUI/PreferencesUI.py:3307 +#: flatcamGUI/PreferencesUI.py:5485 flatcamTools/ToolSolderPaste.py:252 msgid "Feedrate X-Y" msgstr "Feedrate X-Y" -#: flatcamGUI/ObjectUI.py:1494 flatcamGUI/PreferencesUI.py:3308 +#: flatcamGUI/ObjectUI.py:1533 flatcamGUI/PreferencesUI.py:3309 msgid "" "Cutting speed in the XY\n" "plane in units per minute" @@ -8028,7 +8027,7 @@ msgstr "" "Cutting speed in the XY\n" "plane in units per minute" -#: flatcamGUI/ObjectUI.py:1508 flatcamGUI/PreferencesUI.py:3323 +#: flatcamGUI/ObjectUI.py:1547 flatcamGUI/PreferencesUI.py:3324 msgid "" "Cutting speed in the XY\n" "plane in units per minute.\n" @@ -8038,7 +8037,7 @@ msgstr "" "plane in units per minute.\n" "It is called also Plunge." -#: flatcamGUI/ObjectUI.py:1523 flatcamGUI/PreferencesUI.py:3432 +#: flatcamGUI/ObjectUI.py:1562 flatcamGUI/PreferencesUI.py:3433 msgid "" "Cutting speed in the XY plane\n" "(in units per minute).\n" @@ -8052,12 +8051,12 @@ msgstr "" "It is useful only for Marlin,\n" "ignore for any other cases." -#: flatcamGUI/ObjectUI.py:1541 flatcamGUI/PreferencesUI.py:3448 +#: flatcamGUI/ObjectUI.py:1580 flatcamGUI/PreferencesUI.py:3449 msgid "Re-cut" msgstr "Re-cut" -#: flatcamGUI/ObjectUI.py:1543 flatcamGUI/ObjectUI.py:1555 -#: flatcamGUI/PreferencesUI.py:3450 flatcamGUI/PreferencesUI.py:3462 +#: flatcamGUI/ObjectUI.py:1582 flatcamGUI/ObjectUI.py:1594 +#: flatcamGUI/PreferencesUI.py:3451 flatcamGUI/PreferencesUI.py:3463 msgid "" "In order to remove possible\n" "copper leftovers where first cut\n" @@ -8069,7 +8068,7 @@ msgstr "" "meet with last cut, we generate an\n" "extended cut over the first cut section." -#: flatcamGUI/ObjectUI.py:1569 flatcamGUI/PreferencesUI.py:3340 +#: flatcamGUI/ObjectUI.py:1608 flatcamGUI/PreferencesUI.py:3341 msgid "" "Speed of the spindle in RPM (optional).\n" "If LASER preprocessor is used,\n" @@ -8079,12 +8078,12 @@ msgstr "" "If LASER preprocessor is used,\n" "this value is the power of laser." -#: flatcamGUI/ObjectUI.py:1603 flatcamGUI/PreferencesUI.py:5573 +#: flatcamGUI/ObjectUI.py:1642 flatcamGUI/PreferencesUI.py:5574 #: flatcamTools/ToolSolderPaste.py:334 msgid "PostProcessor" msgstr "PostProcessor" -#: flatcamGUI/ObjectUI.py:1605 flatcamGUI/PreferencesUI.py:3377 +#: flatcamGUI/ObjectUI.py:1644 flatcamGUI/PreferencesUI.py:3378 msgid "" "The Preprocessor file that dictates\n" "the Machine Code (like GCode, RML, HPGL) output." @@ -8092,11 +8091,11 @@ msgstr "" "The Preprocessor file that dictates\n" "the Machine Code (like GCode, RML, HPGL) output." -#: flatcamGUI/ObjectUI.py:1652 +#: flatcamGUI/ObjectUI.py:1691 msgid "Apply parameters to all tools" msgstr "Apply parameters to all tools" -#: flatcamGUI/ObjectUI.py:1654 +#: flatcamGUI/ObjectUI.py:1693 msgid "" "The parameters in the current form will be applied\n" "on all the tools from the Tool Table." @@ -8104,7 +8103,7 @@ msgstr "" "The parameters in the current form will be applied\n" "on all the tools from the Tool Table." -#: flatcamGUI/ObjectUI.py:1663 +#: flatcamGUI/ObjectUI.py:1702 msgid "" "Add at least one tool in the tool-table.\n" "Click the header to select all, or Ctrl + LMB\n" @@ -8114,19 +8113,19 @@ msgstr "" "Click the header to select all, or Ctrl + LMB\n" "for custom selection of tools." -#: flatcamGUI/ObjectUI.py:1670 +#: flatcamGUI/ObjectUI.py:1709 msgid "Generate CNCJob object" msgstr "Generate CNCJob object" -#: flatcamGUI/ObjectUI.py:1672 +#: flatcamGUI/ObjectUI.py:1711 msgid "Generate the CNC Job object." msgstr "Generate the CNC Job object." -#: flatcamGUI/ObjectUI.py:1689 +#: flatcamGUI/ObjectUI.py:1728 msgid "Launch Paint Tool in Tools Tab." msgstr "Launch Paint Tool in Tools Tab." -#: flatcamGUI/ObjectUI.py:1697 flatcamGUI/PreferencesUI.py:4489 +#: flatcamGUI/ObjectUI.py:1736 flatcamGUI/PreferencesUI.py:4490 msgid "" "Creates tool paths to cover the\n" "whole area of a polygon (remove\n" @@ -8138,15 +8137,15 @@ msgstr "" "all copper). You will be asked\n" "to click on the desired polygon." -#: flatcamGUI/ObjectUI.py:1737 +#: flatcamGUI/ObjectUI.py:1788 msgid "CNC Job Object" msgstr "CNC Job Object" -#: flatcamGUI/ObjectUI.py:1748 flatcamGUI/PreferencesUI.py:3632 +#: flatcamGUI/ObjectUI.py:1800 flatcamGUI/PreferencesUI.py:3633 msgid "Plot kind" msgstr "Plot kind" -#: flatcamGUI/ObjectUI.py:1751 flatcamGUI/PreferencesUI.py:3634 +#: flatcamGUI/ObjectUI.py:1803 flatcamGUI/PreferencesUI.py:3635 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" @@ -8158,15 +8157,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:1760 flatcamGUI/PreferencesUI.py:3642 +#: flatcamGUI/ObjectUI.py:1812 flatcamGUI/PreferencesUI.py:3643 msgid "Travel" msgstr "Travel" -#: flatcamGUI/ObjectUI.py:1764 flatcamGUI/PreferencesUI.py:3651 +#: flatcamGUI/ObjectUI.py:1816 flatcamGUI/PreferencesUI.py:3652 msgid "Display Annotation" msgstr "Display Annotation" -#: flatcamGUI/ObjectUI.py:1766 flatcamGUI/PreferencesUI.py:3653 +#: flatcamGUI/ObjectUI.py:1818 flatcamGUI/PreferencesUI.py:3654 msgid "" "This selects if to display text annotation on the plot.\n" "When checked it will display numbers in order for each end\n" @@ -8176,11 +8175,11 @@ msgstr "" "When checked it will display numbers in order for each end\n" "of a travel line." -#: flatcamGUI/ObjectUI.py:1781 +#: flatcamGUI/ObjectUI.py:1833 msgid "Travelled dist." msgstr "Travelled dist." -#: flatcamGUI/ObjectUI.py:1783 flatcamGUI/ObjectUI.py:1788 +#: flatcamGUI/ObjectUI.py:1835 flatcamGUI/ObjectUI.py:1840 msgid "" "This is the total travelled distance on X-Y plane.\n" "In current units." @@ -8188,11 +8187,11 @@ msgstr "" "This is the total travelled distance on X-Y plane.\n" "In current units." -#: flatcamGUI/ObjectUI.py:1793 +#: flatcamGUI/ObjectUI.py:1845 msgid "Estimated time" msgstr "Estimated time" -#: flatcamGUI/ObjectUI.py:1795 flatcamGUI/ObjectUI.py:1800 +#: flatcamGUI/ObjectUI.py:1847 flatcamGUI/ObjectUI.py:1852 msgid "" "This is the estimated time to do the routing/drilling,\n" "without the time spent in ToolChange events." @@ -8200,11 +8199,11 @@ msgstr "" "This is the estimated time to do the routing/drilling,\n" "without the time spent in ToolChange events." -#: flatcamGUI/ObjectUI.py:1835 +#: flatcamGUI/ObjectUI.py:1887 msgid "CNC Tools Table" msgstr "CNC Tools Table" -#: flatcamGUI/ObjectUI.py:1838 +#: flatcamGUI/ObjectUI.py:1890 msgid "" "Tools in this CNCJob object used for cutting.\n" "The tool diameter is used for plotting on canvas.\n" @@ -8226,24 +8225,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:1866 flatcamGUI/ObjectUI.py:1877 +#: flatcamGUI/ObjectUI.py:1918 flatcamGUI/ObjectUI.py:1929 msgid "P" msgstr "P" -#: flatcamGUI/ObjectUI.py:1887 +#: flatcamGUI/ObjectUI.py:1939 msgid "Update Plot" msgstr "Update Plot" -#: flatcamGUI/ObjectUI.py:1889 +#: flatcamGUI/ObjectUI.py:1941 msgid "Update the plot." msgstr "Update the plot." -#: flatcamGUI/ObjectUI.py:1896 flatcamGUI/PreferencesUI.py:3819 +#: flatcamGUI/ObjectUI.py:1948 flatcamGUI/PreferencesUI.py:3820 msgid "Export CNC Code" msgstr "Export CNC Code" -#: flatcamGUI/ObjectUI.py:1898 flatcamGUI/PreferencesUI.py:3760 -#: flatcamGUI/PreferencesUI.py:3821 +#: flatcamGUI/ObjectUI.py:1950 flatcamGUI/PreferencesUI.py:3761 +#: flatcamGUI/PreferencesUI.py:3822 msgid "" "Export and save G-Code to\n" "make this object to a file." @@ -8251,12 +8250,12 @@ msgstr "" "Export and save G-Code to\n" "make this object to a file." -#: flatcamGUI/ObjectUI.py:1904 +#: flatcamGUI/ObjectUI.py:1956 msgid "Prepend to CNC Code" msgstr "Prepend to CNC Code" -#: flatcamGUI/ObjectUI.py:1906 flatcamGUI/ObjectUI.py:1913 -#: flatcamGUI/PreferencesUI.py:3776 flatcamGUI/PreferencesUI.py:3783 +#: flatcamGUI/ObjectUI.py:1958 flatcamGUI/ObjectUI.py:1965 +#: flatcamGUI/PreferencesUI.py:3777 flatcamGUI/PreferencesUI.py:3784 msgid "" "Type here any G-Code commands you would\n" "like to add at the beginning of the G-Code file." @@ -8264,12 +8263,12 @@ msgstr "" "Type here any G-Code commands you would\n" "like to add at the beginning of the G-Code file." -#: flatcamGUI/ObjectUI.py:1919 +#: flatcamGUI/ObjectUI.py:1971 msgid "Append to CNC Code" msgstr "Append to CNC Code" -#: flatcamGUI/ObjectUI.py:1921 flatcamGUI/ObjectUI.py:1929 -#: flatcamGUI/PreferencesUI.py:3792 flatcamGUI/PreferencesUI.py:3800 +#: flatcamGUI/ObjectUI.py:1973 flatcamGUI/ObjectUI.py:1981 +#: flatcamGUI/PreferencesUI.py:3793 flatcamGUI/PreferencesUI.py:3801 msgid "" "Type here any G-Code commands you would\n" "like to append to the generated file.\n" @@ -8279,11 +8278,11 @@ msgstr "" "like to append to the generated file.\n" "I.e.: M2 (End of program)" -#: flatcamGUI/ObjectUI.py:1943 flatcamGUI/PreferencesUI.py:3827 +#: flatcamGUI/ObjectUI.py:1995 flatcamGUI/PreferencesUI.py:3828 msgid "Toolchange G-Code" msgstr "Toolchange G-Code" -#: flatcamGUI/ObjectUI.py:1946 flatcamGUI/PreferencesUI.py:3830 +#: flatcamGUI/ObjectUI.py:1998 flatcamGUI/PreferencesUI.py:3831 msgid "" "Type here any G-Code commands you would\n" "like to be executed when Toolchange event is encountered.\n" @@ -8305,14 +8304,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: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." +#: flatcamGUI/ObjectUI.py:2013 flatcamGUI/PreferencesUI.py:3854 msgid "" "Type here any G-Code commands you would\n" "like to be executed when Toolchange event is encountered.\n" @@ -8330,11 +8322,11 @@ msgstr "" "WARNING: it can be used only with a preprocessor file\n" "that has 'toolchange_custom' in it's name." -#: flatcamGUI/ObjectUI.py:1976 flatcamGUI/PreferencesUI.py:3869 +#: flatcamGUI/ObjectUI.py:2028 flatcamGUI/PreferencesUI.py:3870 msgid "Use Toolchange Macro" msgstr "Use Toolchange Macro" -#: flatcamGUI/ObjectUI.py:1978 flatcamGUI/PreferencesUI.py:3871 +#: flatcamGUI/ObjectUI.py:2030 flatcamGUI/PreferencesUI.py:3872 msgid "" "Check this box if you want to use\n" "a Custom Toolchange GCode (macro)." @@ -8342,7 +8334,7 @@ msgstr "" "Check this box if you want to use\n" "a Custom Toolchange GCode (macro)." -#: flatcamGUI/ObjectUI.py:1986 flatcamGUI/PreferencesUI.py:3883 +#: flatcamGUI/ObjectUI.py:2038 flatcamGUI/PreferencesUI.py:3884 msgid "" "A list of the FlatCAM variables that can be used\n" "in the Toolchange event.\n" @@ -8352,73 +8344,73 @@ msgstr "" "in the Toolchange event.\n" "They have to be surrounded by the '%' symbol" -#: 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 +#: flatcamGUI/ObjectUI.py:2045 flatcamGUI/PreferencesUI.py:1852 +#: flatcamGUI/PreferencesUI.py:2825 flatcamGUI/PreferencesUI.py:3570 +#: flatcamGUI/PreferencesUI.py:3891 flatcamGUI/PreferencesUI.py:3973 +#: flatcamGUI/PreferencesUI.py:4265 flatcamGUI/PreferencesUI.py:4424 +#: flatcamGUI/PreferencesUI.py:4646 flatcamGUI/PreferencesUI.py:4943 +#: flatcamGUI/PreferencesUI.py:5194 flatcamGUI/PreferencesUI.py:5370 +#: flatcamGUI/PreferencesUI.py:5595 flatcamGUI/PreferencesUI.py:5617 +#: flatcamGUI/PreferencesUI.py:5841 flatcamGUI/PreferencesUI.py:5878 +#: flatcamGUI/PreferencesUI.py:6072 flatcamGUI/PreferencesUI.py:6326 +#: flatcamGUI/PreferencesUI.py:6442 flatcamTools/ToolCopperThieving.py:89 #: flatcamTools/ToolFiducials.py:149 flatcamTools/ToolNonCopperClear.py:315 msgid "Parameters" msgstr "Parameters" -#: flatcamGUI/ObjectUI.py:1996 flatcamGUI/PreferencesUI.py:3893 +#: flatcamGUI/ObjectUI.py:2048 flatcamGUI/PreferencesUI.py:3894 msgid "FlatCAM CNC parameters" msgstr "FlatCAM CNC parameters" -#: flatcamGUI/ObjectUI.py:1997 flatcamGUI/PreferencesUI.py:3894 +#: flatcamGUI/ObjectUI.py:2049 flatcamGUI/PreferencesUI.py:3895 msgid "tool number" msgstr "tool number" -#: flatcamGUI/ObjectUI.py:1998 flatcamGUI/PreferencesUI.py:3895 +#: flatcamGUI/ObjectUI.py:2050 flatcamGUI/PreferencesUI.py:3896 msgid "tool diameter" msgstr "tool diameter" -#: flatcamGUI/ObjectUI.py:1999 flatcamGUI/PreferencesUI.py:3896 +#: flatcamGUI/ObjectUI.py:2051 flatcamGUI/PreferencesUI.py:3897 msgid "for Excellon, total number of drills" msgstr "for Excellon, total number of drills" -#: flatcamGUI/ObjectUI.py:2001 flatcamGUI/PreferencesUI.py:3898 +#: flatcamGUI/ObjectUI.py:2053 flatcamGUI/PreferencesUI.py:3899 msgid "X coord for Toolchange" msgstr "X coord for Toolchange" -#: flatcamGUI/ObjectUI.py:2002 flatcamGUI/PreferencesUI.py:3899 +#: flatcamGUI/ObjectUI.py:2054 flatcamGUI/PreferencesUI.py:3900 msgid "Y coord for Toolchange" msgstr "Y coord for Toolchange" -#: flatcamGUI/ObjectUI.py:2003 flatcamGUI/PreferencesUI.py:3901 +#: flatcamGUI/ObjectUI.py:2055 flatcamGUI/PreferencesUI.py:3902 msgid "Z coord for Toolchange" msgstr "Z coord for Toolchange" -#: flatcamGUI/ObjectUI.py:2004 +#: flatcamGUI/ObjectUI.py:2056 msgid "depth where to cut" msgstr "depth where to cut" -#: flatcamGUI/ObjectUI.py:2005 +#: flatcamGUI/ObjectUI.py:2057 msgid "height where to travel" msgstr "height where to travel" -#: flatcamGUI/ObjectUI.py:2006 flatcamGUI/PreferencesUI.py:3904 +#: flatcamGUI/ObjectUI.py:2058 flatcamGUI/PreferencesUI.py:3905 msgid "the step value for multidepth cut" msgstr "the step value for multidepth cut" -#: flatcamGUI/ObjectUI.py:2008 flatcamGUI/PreferencesUI.py:3906 +#: flatcamGUI/ObjectUI.py:2060 flatcamGUI/PreferencesUI.py:3907 msgid "the value for the spindle speed" msgstr "the value for the spindle speed" -#: flatcamGUI/ObjectUI.py:2010 +#: flatcamGUI/ObjectUI.py:2062 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:2026 +#: flatcamGUI/ObjectUI.py:2078 msgid "View CNC Code" msgstr "View CNC Code" -#: flatcamGUI/ObjectUI.py:2028 +#: flatcamGUI/ObjectUI.py:2080 msgid "" "Opens TAB to view/modify/print G-Code\n" "file." @@ -8426,11 +8418,11 @@ msgstr "" "Opens TAB to view/modify/print G-Code\n" "file." -#: flatcamGUI/ObjectUI.py:2033 +#: flatcamGUI/ObjectUI.py:2085 msgid "Save CNC Code" msgstr "Save CNC Code" -#: flatcamGUI/ObjectUI.py:2035 +#: flatcamGUI/ObjectUI.py:2087 msgid "" "Opens dialog to save G-Code\n" "file." @@ -8438,75 +8430,75 @@ msgstr "" "Opens dialog to save G-Code\n" "file." -#: flatcamGUI/ObjectUI.py:2055 +#: flatcamGUI/ObjectUI.py:2118 msgid "Script Object" msgstr "Script Object" -#: flatcamGUI/ObjectUI.py:2077 flatcamGUI/ObjectUI.py:2139 +#: flatcamGUI/ObjectUI.py:2140 flatcamGUI/ObjectUI.py:2213 msgid "Auto Completer" msgstr "Auto Completer" -#: flatcamGUI/ObjectUI.py:2079 +#: flatcamGUI/ObjectUI.py:2142 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:2110 +#: flatcamGUI/ObjectUI.py:2184 msgid "Document Object" msgstr "Document Object" -#: flatcamGUI/ObjectUI.py:2141 +#: flatcamGUI/ObjectUI.py:2215 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:2159 +#: flatcamGUI/ObjectUI.py:2233 msgid "Font Type" msgstr "Font Type" -#: flatcamGUI/ObjectUI.py:2176 +#: flatcamGUI/ObjectUI.py:2250 msgid "Font Size" msgstr "Font Size" -#: flatcamGUI/ObjectUI.py:2212 +#: flatcamGUI/ObjectUI.py:2286 msgid "Alignment" msgstr "Alignment" -#: flatcamGUI/ObjectUI.py:2217 +#: flatcamGUI/ObjectUI.py:2291 msgid "Align Left" msgstr "Align Left" -#: flatcamGUI/ObjectUI.py:2222 +#: flatcamGUI/ObjectUI.py:2296 msgid "Center" msgstr "Center" -#: flatcamGUI/ObjectUI.py:2227 +#: flatcamGUI/ObjectUI.py:2301 msgid "Align Right" msgstr "Align Right" -#: flatcamGUI/ObjectUI.py:2232 +#: flatcamGUI/ObjectUI.py:2306 msgid "Justify" msgstr "Justify" -#: flatcamGUI/ObjectUI.py:2239 +#: flatcamGUI/ObjectUI.py:2313 msgid "Font Color" msgstr "Font Color" -#: flatcamGUI/ObjectUI.py:2241 +#: flatcamGUI/ObjectUI.py:2315 msgid "Set the font color for the selected text" msgstr "Set the font color for the selected text" -#: flatcamGUI/ObjectUI.py:2255 +#: flatcamGUI/ObjectUI.py:2329 msgid "Selection Color" msgstr "Selection Color" -#: flatcamGUI/ObjectUI.py:2257 +#: flatcamGUI/ObjectUI.py:2331 msgid "Set the selection color when doing text selection." msgstr "Set the selection color when doing text selection." -#: flatcamGUI/ObjectUI.py:2271 +#: flatcamGUI/ObjectUI.py:2345 msgid "Tab Size" msgstr "Tab Size" -#: flatcamGUI/ObjectUI.py:2273 +#: flatcamGUI/ObjectUI.py:2347 msgid "Set the tab size. In pixels. Default value is 80 pixels." msgstr "Set the tab size. In pixels. Default value is 80 pixels." @@ -8570,7 +8562,7 @@ msgstr "" msgid "Wk. Orientation" msgstr "Wk. Orientation" -#: flatcamGUI/PreferencesUI.py:430 flatcamGUI/PreferencesUI.py:4853 +#: flatcamGUI/PreferencesUI.py:430 flatcamGUI/PreferencesUI.py:4854 #: flatcamTools/ToolFilm.py:420 msgid "" "Can be:\n" @@ -8581,12 +8573,12 @@ msgstr "" "- Portrait\n" "- Landscape" -#: flatcamGUI/PreferencesUI.py:434 flatcamGUI/PreferencesUI.py:4857 +#: flatcamGUI/PreferencesUI.py:434 flatcamGUI/PreferencesUI.py:4858 #: flatcamTools/ToolFilm.py:424 msgid "Portrait" msgstr "Portrait" -#: flatcamGUI/PreferencesUI.py:435 flatcamGUI/PreferencesUI.py:4858 +#: flatcamGUI/PreferencesUI.py:435 flatcamGUI/PreferencesUI.py:4859 #: flatcamTools/ToolFilm.py:425 msgid "Landscape" msgstr "Landscape" @@ -8782,7 +8774,7 @@ msgstr "" "Enable High DPI support for FlatCAM.\n" "It will be applied at the next app start." -#: flatcamGUI/PreferencesUI.py:782 flatcamGUI/PreferencesUI.py:1032 +#: flatcamGUI/PreferencesUI.py:782 flatcamGUI/PreferencesUI.py:1033 msgid "Clear GUI Settings" msgstr "Clear GUI Settings" @@ -8866,19 +8858,19 @@ msgstr "Splash Screen" msgid "Enable display of the splash screen at application startup." msgstr "Enable display of the splash screen at application startup." -#: flatcamGUI/PreferencesUI.py:899 +#: flatcamGUI/PreferencesUI.py:900 msgid "Sys Tray Icon" msgstr "Sys Tray Icon" -#: flatcamGUI/PreferencesUI.py:901 +#: flatcamGUI/PreferencesUI.py:902 msgid "Enable display of FlatCAM icon in Sys Tray." msgstr "Enable display of FlatCAM icon in Sys Tray." -#: flatcamGUI/PreferencesUI.py:909 +#: flatcamGUI/PreferencesUI.py:910 msgid "Shell at StartUp" msgstr "Shell at StartUp" -#: flatcamGUI/PreferencesUI.py:911 flatcamGUI/PreferencesUI.py:916 +#: flatcamGUI/PreferencesUI.py:912 flatcamGUI/PreferencesUI.py:917 msgid "" "Check this box if you want the shell to\n" "start automatically at startup." @@ -8886,11 +8878,11 @@ msgstr "" "Check this box if you want the shell to\n" "start automatically at startup." -#: flatcamGUI/PreferencesUI.py:924 +#: flatcamGUI/PreferencesUI.py:925 msgid "Project at StartUp" msgstr "Project at StartUp" -#: flatcamGUI/PreferencesUI.py:926 flatcamGUI/PreferencesUI.py:931 +#: flatcamGUI/PreferencesUI.py:927 flatcamGUI/PreferencesUI.py:932 msgid "" "Check this box if you want the project/selected/tool tab area to\n" "to be shown automatically at startup." @@ -8898,11 +8890,11 @@ msgstr "" "Check this box if you want the project/selected/tool tab area to\n" "to be shown automatically at startup." -#: flatcamGUI/PreferencesUI.py:939 +#: flatcamGUI/PreferencesUI.py:940 msgid "Project AutoHide" msgstr "Project AutoHide" -#: flatcamGUI/PreferencesUI.py:941 flatcamGUI/PreferencesUI.py:947 +#: flatcamGUI/PreferencesUI.py:942 flatcamGUI/PreferencesUI.py:948 msgid "" "Check this box if you want the project/selected/tool tab area to\n" "hide automatically when there are no objects loaded and\n" @@ -8912,11 +8904,11 @@ msgstr "" "hide automatically when there are no objects loaded and\n" "to show whenever a new object is created." -#: flatcamGUI/PreferencesUI.py:958 +#: flatcamGUI/PreferencesUI.py:959 msgid "Enable ToolTips" msgstr "Enable ToolTips" -#: flatcamGUI/PreferencesUI.py:960 flatcamGUI/PreferencesUI.py:965 +#: flatcamGUI/PreferencesUI.py:961 flatcamGUI/PreferencesUI.py:966 msgid "" "Check this box if you want to have toolTips displayed\n" "when hovering with mouse over items throughout the App." @@ -8924,11 +8916,11 @@ msgstr "" "Check this box if you want to have toolTips displayed\n" "when hovering with mouse over items throughout the App." -#: flatcamGUI/PreferencesUI.py:973 +#: flatcamGUI/PreferencesUI.py:974 msgid "Mouse Cursor" msgstr "Mouse Cursor" -#: flatcamGUI/PreferencesUI.py:975 +#: flatcamGUI/PreferencesUI.py:976 msgid "" "Choose a mouse cursor shape.\n" "- Small -> with a customizable size.\n" @@ -8938,27 +8930,27 @@ msgstr "" "- Small -> with a customizable size.\n" "- Big -> Infinite lines" -#: flatcamGUI/PreferencesUI.py:981 +#: flatcamGUI/PreferencesUI.py:982 msgid "Small" msgstr "Small" -#: flatcamGUI/PreferencesUI.py:982 +#: flatcamGUI/PreferencesUI.py:983 msgid "Big" msgstr "Big" -#: flatcamGUI/PreferencesUI.py:988 +#: flatcamGUI/PreferencesUI.py:989 msgid "Mouse Cursor Size" msgstr "Mouse Cursor Size" -#: flatcamGUI/PreferencesUI.py:990 +#: flatcamGUI/PreferencesUI.py:991 msgid "Set the size of the mouse cursor, in pixels." msgstr "Set the size of the mouse cursor, in pixels." -#: flatcamGUI/PreferencesUI.py:1001 +#: flatcamGUI/PreferencesUI.py:1002 msgid "Delete object confirmation" msgstr "Delete object confirmation" -#: flatcamGUI/PreferencesUI.py:1003 +#: flatcamGUI/PreferencesUI.py:1004 msgid "" "When checked the application will ask for user confirmation\n" "whenever the Delete object(s) event is triggered, either by\n" @@ -8968,22 +8960,22 @@ msgstr "" "whenever the Delete object(s) event is triggered, either by\n" "menu shortcut or key shortcut." -#: flatcamGUI/PreferencesUI.py:1029 +#: flatcamGUI/PreferencesUI.py:1030 msgid "Are you sure you want to delete the GUI Settings? \n" msgstr "Are you sure you want to delete the GUI Settings? \n" -#: flatcamGUI/PreferencesUI.py:1053 +#: flatcamGUI/PreferencesUI.py:1054 msgid "App Preferences" msgstr "App Preferences" -#: flatcamGUI/PreferencesUI.py:1063 flatcamGUI/PreferencesUI.py:1388 -#: flatcamGUI/PreferencesUI.py:1763 flatcamGUI/PreferencesUI.py:2686 +#: flatcamGUI/PreferencesUI.py:1064 flatcamGUI/PreferencesUI.py:1389 +#: flatcamGUI/PreferencesUI.py:1764 flatcamGUI/PreferencesUI.py:2687 #: flatcamTools/ToolDistance.py:49 flatcamTools/ToolDistanceMin.py:49 #: flatcamTools/ToolPcbWizard.py:127 flatcamTools/ToolProperties.py:152 msgid "Units" msgstr "Units" -#: flatcamGUI/PreferencesUI.py:1064 +#: flatcamGUI/PreferencesUI.py:1065 msgid "" "The default value for FlatCAM units.\n" "Whatever is selected here is set every time\n" @@ -8993,22 +8985,22 @@ msgstr "" "Whatever is selected here is set every time\n" "FLatCAM is started." -#: flatcamGUI/PreferencesUI.py:1067 flatcamGUI/PreferencesUI.py:1394 -#: flatcamGUI/PreferencesUI.py:1769 flatcamGUI/PreferencesUI.py:2223 -#: flatcamGUI/PreferencesUI.py:2692 flatcamTools/ToolCalculators.py:62 +#: flatcamGUI/PreferencesUI.py:1068 flatcamGUI/PreferencesUI.py:1395 +#: flatcamGUI/PreferencesUI.py:1770 flatcamGUI/PreferencesUI.py:2224 +#: flatcamGUI/PreferencesUI.py:2693 flatcamTools/ToolCalculators.py:62 #: flatcamTools/ToolPcbWizard.py:126 msgid "MM" msgstr "MM" -#: flatcamGUI/PreferencesUI.py:1068 +#: flatcamGUI/PreferencesUI.py:1069 msgid "IN" msgstr "IN" -#: flatcamGUI/PreferencesUI.py:1074 +#: flatcamGUI/PreferencesUI.py:1075 msgid "Precision MM" msgstr "Precision MM" -#: flatcamGUI/PreferencesUI.py:1076 +#: flatcamGUI/PreferencesUI.py:1077 msgid "" "The number of decimals used throughout the application\n" "when the set units are in METRIC system.\n" @@ -9018,11 +9010,11 @@ msgstr "" "when the set units are in METRIC system.\n" "Any change here require an application restart." -#: flatcamGUI/PreferencesUI.py:1088 +#: flatcamGUI/PreferencesUI.py:1089 msgid "Precision INCH" msgstr "Precision INCH" -#: flatcamGUI/PreferencesUI.py:1090 +#: flatcamGUI/PreferencesUI.py:1091 msgid "" "The number of decimals used throughout the application\n" "when the set units are in INCH system.\n" @@ -9032,11 +9024,11 @@ msgstr "" "when the set units are in INCH system.\n" "Any change here require an application restart." -#: flatcamGUI/PreferencesUI.py:1102 +#: flatcamGUI/PreferencesUI.py:1103 msgid "Graphic Engine" msgstr "Graphic Engine" -#: flatcamGUI/PreferencesUI.py:1103 +#: flatcamGUI/PreferencesUI.py:1104 msgid "" "Choose what graphic engine to use in FlatCAM.\n" "Legacy(2D) -> reduced functionality, slow performance but enhanced " @@ -9054,19 +9046,19 @@ msgstr "" "Intel HD3000 or older. In this case the plot area will be black therefore\n" "use the Legacy(2D) mode." -#: flatcamGUI/PreferencesUI.py:1109 +#: flatcamGUI/PreferencesUI.py:1110 msgid "Legacy(2D)" msgstr "Legacy(2D)" -#: flatcamGUI/PreferencesUI.py:1110 +#: flatcamGUI/PreferencesUI.py:1111 msgid "OpenGL(3D)" msgstr "OpenGL(3D)" -#: flatcamGUI/PreferencesUI.py:1117 +#: flatcamGUI/PreferencesUI.py:1118 msgid "APP. LEVEL" msgstr "APP. LEVEL" -#: flatcamGUI/PreferencesUI.py:1118 +#: flatcamGUI/PreferencesUI.py:1119 msgid "" "Choose the default level of usage for FlatCAM.\n" "BASIC level -> reduced functionality, best for beginner's.\n" @@ -9082,11 +9074,11 @@ msgstr "" "The choice here will influence the parameters in\n" "the Selected Tab for all kinds of FlatCAM objects." -#: flatcamGUI/PreferencesUI.py:1130 +#: flatcamGUI/PreferencesUI.py:1131 msgid "Portable app" msgstr "Portable app" -#: flatcamGUI/PreferencesUI.py:1131 +#: flatcamGUI/PreferencesUI.py:1132 msgid "" "Choose if the application should run as portable.\n" "\n" @@ -9100,19 +9092,19 @@ msgstr "" "which means that the preferences files will be saved\n" "in the application folder, in the lib\\config subfolder." -#: flatcamGUI/PreferencesUI.py:1141 +#: flatcamGUI/PreferencesUI.py:1142 msgid "Languages" msgstr "Languages" -#: flatcamGUI/PreferencesUI.py:1142 +#: flatcamGUI/PreferencesUI.py:1143 msgid "Set the language used throughout FlatCAM." msgstr "Set the language used throughout FlatCAM." -#: flatcamGUI/PreferencesUI.py:1148 +#: flatcamGUI/PreferencesUI.py:1149 msgid "Apply Language" msgstr "Apply Language" -#: flatcamGUI/PreferencesUI.py:1149 +#: flatcamGUI/PreferencesUI.py:1150 msgid "" "Set the language used throughout FlatCAM.\n" "The app will restart after click.Windows: When FlatCAM is installed in " @@ -9130,11 +9122,11 @@ msgstr "" "security features. In this case the language will be\n" "applied at the next app start." -#: flatcamGUI/PreferencesUI.py:1161 +#: flatcamGUI/PreferencesUI.py:1162 msgid "Version Check" msgstr "Version Check" -#: flatcamGUI/PreferencesUI.py:1163 flatcamGUI/PreferencesUI.py:1168 +#: flatcamGUI/PreferencesUI.py:1164 flatcamGUI/PreferencesUI.py:1169 msgid "" "Check this box if you want to check\n" "for a new version automatically at startup." @@ -9142,11 +9134,11 @@ msgstr "" "Check this box if you want to check\n" "for a new version automatically at startup." -#: flatcamGUI/PreferencesUI.py:1176 +#: flatcamGUI/PreferencesUI.py:1177 msgid "Send Stats" msgstr "Send Stats" -#: flatcamGUI/PreferencesUI.py:1178 flatcamGUI/PreferencesUI.py:1183 +#: flatcamGUI/PreferencesUI.py:1179 flatcamGUI/PreferencesUI.py:1184 msgid "" "Check this box if you agree to send anonymous\n" "stats automatically at startup, to help improve FlatCAM." @@ -9154,11 +9146,11 @@ msgstr "" "Check this box if you agree to send anonymous\n" "stats automatically at startup, to help improve FlatCAM." -#: flatcamGUI/PreferencesUI.py:1193 +#: flatcamGUI/PreferencesUI.py:1194 msgid "Pan Button" msgstr "Pan Button" -#: flatcamGUI/PreferencesUI.py:1194 +#: flatcamGUI/PreferencesUI.py:1195 msgid "" "Select the mouse button to use for panning:\n" "- MMB --> Middle Mouse Button\n" @@ -9168,35 +9160,35 @@ msgstr "" "- MMB --> Middle Mouse Button\n" "- RMB --> Right Mouse Button" -#: flatcamGUI/PreferencesUI.py:1197 +#: flatcamGUI/PreferencesUI.py:1198 msgid "MMB" msgstr "MMB" -#: flatcamGUI/PreferencesUI.py:1198 +#: flatcamGUI/PreferencesUI.py:1199 msgid "RMB" msgstr "RMB" -#: flatcamGUI/PreferencesUI.py:1204 +#: flatcamGUI/PreferencesUI.py:1205 msgid "Multiple Sel" msgstr "Multiple Sel" -#: flatcamGUI/PreferencesUI.py:1205 +#: flatcamGUI/PreferencesUI.py:1206 msgid "Select the key used for multiple selection." msgstr "Select the key used for multiple selection." -#: flatcamGUI/PreferencesUI.py:1206 +#: flatcamGUI/PreferencesUI.py:1207 msgid "CTRL" msgstr "CTRL" -#: flatcamGUI/PreferencesUI.py:1207 +#: flatcamGUI/PreferencesUI.py:1208 msgid "SHIFT" msgstr "SHIFT" -#: flatcamGUI/PreferencesUI.py:1213 +#: flatcamGUI/PreferencesUI.py:1214 msgid "Workers number" msgstr "Workers number" -#: flatcamGUI/PreferencesUI.py:1215 flatcamGUI/PreferencesUI.py:1224 +#: flatcamGUI/PreferencesUI.py:1216 flatcamGUI/PreferencesUI.py:1225 msgid "" "The number of Qthreads made available to the App.\n" "A bigger number may finish the jobs more quickly but\n" @@ -9212,11 +9204,11 @@ msgstr "" "Default value is 2.\n" "After change, it will be applied at next App start." -#: flatcamGUI/PreferencesUI.py:1237 +#: flatcamGUI/PreferencesUI.py:1238 msgid "Geo Tolerance" msgstr "Geo Tolerance" -#: flatcamGUI/PreferencesUI.py:1239 flatcamGUI/PreferencesUI.py:1248 +#: flatcamGUI/PreferencesUI.py:1240 flatcamGUI/PreferencesUI.py:1249 msgid "" "This value can counter the effect of the Circle Steps\n" "parameter. Default value is 0.01.\n" @@ -9232,11 +9224,11 @@ msgstr "" "performance. Higher value will provide more\n" "performance at the expense of level of detail." -#: flatcamGUI/PreferencesUI.py:1263 +#: flatcamGUI/PreferencesUI.py:1264 msgid "\"Open\" behavior" msgstr "\"Open\" behavior" -#: flatcamGUI/PreferencesUI.py:1265 +#: flatcamGUI/PreferencesUI.py:1266 msgid "" "When checked the path for the last saved file is used when saving files,\n" "and the path for the last opened file is used when opening files.\n" @@ -9250,11 +9242,11 @@ msgstr "" "When unchecked the path for opening files is the one used last: either the\n" "path for saving files or the path for opening files." -#: flatcamGUI/PreferencesUI.py:1274 +#: flatcamGUI/PreferencesUI.py:1275 msgid "Save Compressed Project" msgstr "Save Compressed Project" -#: flatcamGUI/PreferencesUI.py:1276 +#: flatcamGUI/PreferencesUI.py:1277 msgid "" "Whether to save a compressed or uncompressed project.\n" "When checked it will save a compressed FlatCAM project." @@ -9262,11 +9254,11 @@ msgstr "" "Whether to save a compressed or uncompressed project.\n" "When checked it will save a compressed FlatCAM project." -#: flatcamGUI/PreferencesUI.py:1285 +#: flatcamGUI/PreferencesUI.py:1286 msgid "Compression" msgstr "Compression" -#: flatcamGUI/PreferencesUI.py:1287 +#: flatcamGUI/PreferencesUI.py:1288 msgid "" "The level of compression used when saving\n" "a FlatCAM project. Higher value means better compression\n" @@ -9276,11 +9268,11 @@ msgstr "" "a FlatCAM project. Higher value means better compression\n" "but require more RAM usage and more processing time." -#: flatcamGUI/PreferencesUI.py:1299 +#: flatcamGUI/PreferencesUI.py:1300 msgid "Bookmarks limit" msgstr "Bookmarks limit" -#: flatcamGUI/PreferencesUI.py:1301 +#: flatcamGUI/PreferencesUI.py:1302 msgid "" "The maximum number of bookmarks that may be installed in the menu.\n" "The number of bookmarks in the bookmark manager may be greater\n" @@ -9290,11 +9282,11 @@ msgstr "" "The number of bookmarks in the bookmark manager may be greater\n" "but the menu will hold only so much." -#: flatcamGUI/PreferencesUI.py:1310 +#: flatcamGUI/PreferencesUI.py:1311 msgid "Allow Machinist Unsafe Settings" msgstr "Allow Machinist Unsafe Settings" -#: flatcamGUI/PreferencesUI.py:1312 +#: flatcamGUI/PreferencesUI.py:1313 msgid "" "If checked, some of the application settings will be allowed\n" "to have values that are usually unsafe to use.\n" @@ -9308,20 +9300,20 @@ msgstr "" "It will applied at the next application start.\n" "<>: Don't change this unless you know what you are doing !!!" -#: flatcamGUI/PreferencesUI.py:1333 +#: flatcamGUI/PreferencesUI.py:1334 msgid "Gerber General" msgstr "Gerber General" -#: flatcamGUI/PreferencesUI.py:1351 +#: flatcamGUI/PreferencesUI.py:1352 msgid "M-Color" msgstr "M-Color" -#: flatcamGUI/PreferencesUI.py:1365 flatcamGUI/PreferencesUI.py:3128 -#: flatcamGUI/PreferencesUI.py:3664 flatcamGUI/PreferencesUI.py:6079 +#: flatcamGUI/PreferencesUI.py:1366 flatcamGUI/PreferencesUI.py:3129 +#: flatcamGUI/PreferencesUI.py:3665 flatcamGUI/PreferencesUI.py:6080 msgid "Circle Steps" msgstr "Circle Steps" -#: flatcamGUI/PreferencesUI.py:1367 +#: flatcamGUI/PreferencesUI.py:1368 msgid "" "The number of circle steps for Gerber \n" "circular aperture linear approximation." @@ -9329,11 +9321,11 @@ msgstr "" "The number of circle steps for Gerber \n" "circular aperture linear approximation." -#: flatcamGUI/PreferencesUI.py:1379 +#: flatcamGUI/PreferencesUI.py:1380 msgid "Default Values" msgstr "Default Values" -#: flatcamGUI/PreferencesUI.py:1381 +#: flatcamGUI/PreferencesUI.py:1382 msgid "" "Those values will be used as fallback values\n" "in case that they are not found in the Gerber file." @@ -9341,25 +9333,25 @@ msgstr "" "Those values will be used as fallback values\n" "in case that they are not found in the Gerber file." -#: flatcamGUI/PreferencesUI.py:1390 flatcamGUI/PreferencesUI.py:1396 -#: flatcamGUI/PreferencesUI.py:1765 flatcamGUI/PreferencesUI.py:1771 +#: flatcamGUI/PreferencesUI.py:1391 flatcamGUI/PreferencesUI.py:1397 +#: flatcamGUI/PreferencesUI.py:1766 flatcamGUI/PreferencesUI.py:1772 msgid "The units used in the Gerber file." 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:2691 flatcamTools/ToolCalculators.py:61 +#: flatcamGUI/PreferencesUI.py:1394 flatcamGUI/PreferencesUI.py:1769 +#: flatcamGUI/PreferencesUI.py:2125 flatcamGUI/PreferencesUI.py:2223 +#: flatcamGUI/PreferencesUI.py:2692 flatcamTools/ToolCalculators.py:61 #: flatcamTools/ToolPcbWizard.py:125 msgid "INCH" msgstr "INCH" -#: flatcamGUI/PreferencesUI.py:1403 flatcamGUI/PreferencesUI.py:1817 -#: flatcamGUI/PreferencesUI.py:2759 +#: flatcamGUI/PreferencesUI.py:1404 flatcamGUI/PreferencesUI.py:1818 +#: flatcamGUI/PreferencesUI.py:2760 msgid "Zeros" msgstr "Zeros" -#: flatcamGUI/PreferencesUI.py:1406 flatcamGUI/PreferencesUI.py:1416 -#: flatcamGUI/PreferencesUI.py:1820 flatcamGUI/PreferencesUI.py:1830 +#: flatcamGUI/PreferencesUI.py:1407 flatcamGUI/PreferencesUI.py:1417 +#: flatcamGUI/PreferencesUI.py:1821 flatcamGUI/PreferencesUI.py:1831 msgid "" "This sets the type of Gerber zeros.\n" "If LZ then Leading Zeros are removed and\n" @@ -9373,41 +9365,41 @@ msgstr "" "If TZ is checked then Trailing Zeros are removed\n" "and Leading Zeros are kept." -#: flatcamGUI/PreferencesUI.py:1413 flatcamGUI/PreferencesUI.py:1827 -#: flatcamGUI/PreferencesUI.py:2198 flatcamGUI/PreferencesUI.py:2769 +#: flatcamGUI/PreferencesUI.py:1414 flatcamGUI/PreferencesUI.py:1828 +#: flatcamGUI/PreferencesUI.py:2199 flatcamGUI/PreferencesUI.py:2770 #: flatcamTools/ToolPcbWizard.py:111 msgid "LZ" msgstr "LZ" -#: flatcamGUI/PreferencesUI.py:1414 flatcamGUI/PreferencesUI.py:1828 -#: flatcamGUI/PreferencesUI.py:2199 flatcamGUI/PreferencesUI.py:2770 +#: flatcamGUI/PreferencesUI.py:1415 flatcamGUI/PreferencesUI.py:1829 +#: flatcamGUI/PreferencesUI.py:2200 flatcamGUI/PreferencesUI.py:2771 #: flatcamTools/ToolPcbWizard.py:112 msgid "TZ" msgstr "TZ" -#: flatcamGUI/PreferencesUI.py:1435 +#: flatcamGUI/PreferencesUI.py:1436 msgid "Gerber Options" msgstr "Gerber Options" -#: flatcamGUI/PreferencesUI.py:1509 flatcamGUI/PreferencesUI.py:3601 -#: flatcamGUI/PreferencesUI.py:4075 flatcamTools/ToolNonCopperClear.py:170 +#: flatcamGUI/PreferencesUI.py:1510 flatcamGUI/PreferencesUI.py:3602 +#: flatcamGUI/PreferencesUI.py:4076 flatcamTools/ToolNonCopperClear.py:170 msgid "Conv." msgstr "Conv." -#: flatcamGUI/PreferencesUI.py:1513 +#: flatcamGUI/PreferencesUI.py:1514 msgid "Combine Passes" msgstr "Combine Passes" -#: flatcamGUI/PreferencesUI.py:1591 +#: flatcamGUI/PreferencesUI.py:1592 msgid "Gerber Adv. Options" msgstr "Gerber Adv. Options" -#: flatcamGUI/PreferencesUI.py:1595 flatcamGUI/PreferencesUI.py:2544 -#: flatcamGUI/PreferencesUI.py:3399 +#: flatcamGUI/PreferencesUI.py:1596 flatcamGUI/PreferencesUI.py:2545 +#: flatcamGUI/PreferencesUI.py:3400 msgid "Advanced Options" msgstr "Advanced Options" -#: flatcamGUI/PreferencesUI.py:1597 +#: flatcamGUI/PreferencesUI.py:1598 msgid "" "A list of Gerber advanced parameters.\n" "Those parameters are available only for\n" @@ -9417,11 +9409,11 @@ msgstr "" "Those parameters are available only for\n" "Advanced App. Level." -#: flatcamGUI/PreferencesUI.py:1616 +#: flatcamGUI/PreferencesUI.py:1617 msgid "Table Show/Hide" msgstr "Table Show/Hide" -#: flatcamGUI/PreferencesUI.py:1618 +#: flatcamGUI/PreferencesUI.py:1619 msgid "" "Toggle the display of the Gerber Apertures Table.\n" "Also, on hide, it will delete all mark shapes\n" @@ -9431,15 +9423,15 @@ msgstr "" "Also, on hide, it will delete all mark shapes\n" "that are drawn on canvas." -#: flatcamGUI/PreferencesUI.py:1693 +#: flatcamGUI/PreferencesUI.py:1694 msgid "Exterior" msgstr "Exterior" -#: flatcamGUI/PreferencesUI.py:1694 +#: flatcamGUI/PreferencesUI.py:1695 msgid "Interior" msgstr "Interior" -#: flatcamGUI/PreferencesUI.py:1702 +#: flatcamGUI/PreferencesUI.py:1703 msgid "" "Buffering type:\n" "- None --> best performance, fast file loading but no so good display\n" @@ -9451,19 +9443,19 @@ 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:4821 -#: flatcamGUI/PreferencesUI.py:6377 flatcamTools/ToolFiducials.py:201 +#: flatcamGUI/PreferencesUI.py:1708 flatcamGUI/PreferencesUI.py:4822 +#: flatcamGUI/PreferencesUI.py:6378 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 msgid "None" msgstr "None" -#: flatcamGUI/PreferencesUI.py:1713 +#: flatcamGUI/PreferencesUI.py:1714 msgid "Simplify" msgstr "Simplify" -#: flatcamGUI/PreferencesUI.py:1715 +#: flatcamGUI/PreferencesUI.py:1716 msgid "" "When checked all the Gerber polygons will be\n" "loaded with simplification having a set tolerance.\n" @@ -9473,23 +9465,23 @@ msgstr "" "loaded with simplification having a set tolerance.\n" "<>: Don't change this unless you know what you are doing !!!" -#: flatcamGUI/PreferencesUI.py:1722 +#: flatcamGUI/PreferencesUI.py:1723 msgid "Tolerance" msgstr "Tolerance" -#: flatcamGUI/PreferencesUI.py:1723 +#: flatcamGUI/PreferencesUI.py:1724 msgid "Tolerance for polygon simplification." msgstr "Tolerance for polygon simplification." -#: flatcamGUI/PreferencesUI.py:1748 +#: flatcamGUI/PreferencesUI.py:1749 msgid "Gerber Export" msgstr "Gerber Export" -#: flatcamGUI/PreferencesUI.py:1752 flatcamGUI/PreferencesUI.py:2675 +#: flatcamGUI/PreferencesUI.py:1753 flatcamGUI/PreferencesUI.py:2676 msgid "Export Options" msgstr "Export Options" -#: flatcamGUI/PreferencesUI.py:1754 +#: flatcamGUI/PreferencesUI.py:1755 msgid "" "The parameters set here are used in the file exported\n" "when using the File -> Export -> Export Gerber menu entry." @@ -9497,11 +9489,11 @@ 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:2700 +#: flatcamGUI/PreferencesUI.py:1778 flatcamGUI/PreferencesUI.py:2701 msgid "Int/Decimals" msgstr "Int/Decimals" -#: flatcamGUI/PreferencesUI.py:1779 +#: flatcamGUI/PreferencesUI.py:1780 msgid "" "The number of digits in the whole part of the number\n" "and in the fractional part of the number." @@ -9509,7 +9501,7 @@ msgstr "" "The number of digits in the whole part of the number\n" "and in the fractional part of the number." -#: flatcamGUI/PreferencesUI.py:1792 +#: flatcamGUI/PreferencesUI.py:1793 msgid "" "This numbers signify the number of digits in\n" "the whole part of Gerber coordinates." @@ -9517,7 +9509,7 @@ msgstr "" "This numbers signify the number of digits in\n" "the whole part of Gerber coordinates." -#: flatcamGUI/PreferencesUI.py:1808 +#: flatcamGUI/PreferencesUI.py:1809 msgid "" "This numbers signify the number of digits in\n" "the decimal part of Gerber coordinates." @@ -9525,16 +9517,16 @@ msgstr "" "This numbers signify the number of digits in\n" "the decimal part of Gerber coordinates." -#: flatcamGUI/PreferencesUI.py:1853 +#: flatcamGUI/PreferencesUI.py:1854 msgid "A list of Gerber Editor parameters." msgstr "A list of Gerber Editor parameters." -#: flatcamGUI/PreferencesUI.py:1861 flatcamGUI/PreferencesUI.py:2834 -#: flatcamGUI/PreferencesUI.py:3579 flatcamGUI/PreferencesUI.py:6040 +#: flatcamGUI/PreferencesUI.py:1862 flatcamGUI/PreferencesUI.py:2835 +#: flatcamGUI/PreferencesUI.py:3580 flatcamGUI/PreferencesUI.py:6041 msgid "Selection limit" msgstr "Selection limit" -#: flatcamGUI/PreferencesUI.py:1863 +#: flatcamGUI/PreferencesUI.py:1864 msgid "" "Set the number of selected Gerber geometry\n" "items above which the utility geometry\n" @@ -9548,23 +9540,23 @@ msgstr "" "Increases the performance when moving a\n" "large number of geometric elements." -#: flatcamGUI/PreferencesUI.py:1876 +#: flatcamGUI/PreferencesUI.py:1877 msgid "New Aperture code" msgstr "New Aperture code" -#: flatcamGUI/PreferencesUI.py:1889 +#: flatcamGUI/PreferencesUI.py:1890 msgid "New Aperture size" msgstr "New Aperture size" -#: flatcamGUI/PreferencesUI.py:1891 +#: flatcamGUI/PreferencesUI.py:1892 msgid "Size for the new aperture" msgstr "Size for the new aperture" -#: flatcamGUI/PreferencesUI.py:1902 +#: flatcamGUI/PreferencesUI.py:1903 msgid "New Aperture type" msgstr "New Aperture type" -#: flatcamGUI/PreferencesUI.py:1904 +#: flatcamGUI/PreferencesUI.py:1905 msgid "" "Type for the new aperture.\n" "Can be 'C', 'R' or 'O'." @@ -9572,35 +9564,35 @@ msgstr "" "Type for the new aperture.\n" "Can be 'C', 'R' or 'O'." -#: flatcamGUI/PreferencesUI.py:1926 +#: flatcamGUI/PreferencesUI.py:1927 msgid "Aperture Dimensions" msgstr "Aperture Dimensions" -#: flatcamGUI/PreferencesUI.py:1928 flatcamGUI/PreferencesUI.py:3146 -#: flatcamGUI/PreferencesUI.py:3984 +#: flatcamGUI/PreferencesUI.py:1929 flatcamGUI/PreferencesUI.py:3147 +#: flatcamGUI/PreferencesUI.py:3985 msgid "Diameters of the cutting tools, separated by ','" msgstr "Diameters of the cutting tools, separated by ','" -#: flatcamGUI/PreferencesUI.py:1934 +#: flatcamGUI/PreferencesUI.py:1935 msgid "Linear Pad Array" msgstr "Linear Pad Array" -#: flatcamGUI/PreferencesUI.py:1938 flatcamGUI/PreferencesUI.py:2878 -#: flatcamGUI/PreferencesUI.py:3026 +#: flatcamGUI/PreferencesUI.py:1939 flatcamGUI/PreferencesUI.py:2879 +#: flatcamGUI/PreferencesUI.py:3027 msgid "Linear Direction" msgstr "Linear Direction" -#: flatcamGUI/PreferencesUI.py:1978 +#: flatcamGUI/PreferencesUI.py:1979 msgid "Circular Pad Array" msgstr "Circular Pad Array" -#: flatcamGUI/PreferencesUI.py:1982 flatcamGUI/PreferencesUI.py:2924 -#: flatcamGUI/PreferencesUI.py:3074 +#: flatcamGUI/PreferencesUI.py:1983 flatcamGUI/PreferencesUI.py:2925 +#: flatcamGUI/PreferencesUI.py:3075 msgid "Circular Direction" msgstr "Circular Direction" -#: flatcamGUI/PreferencesUI.py:1984 flatcamGUI/PreferencesUI.py:2926 -#: flatcamGUI/PreferencesUI.py:3076 +#: flatcamGUI/PreferencesUI.py:1985 flatcamGUI/PreferencesUI.py:2927 +#: flatcamGUI/PreferencesUI.py:3077 msgid "" "Direction for circular array.\n" "Can be CW = clockwise or CCW = counter clockwise." @@ -9608,48 +9600,48 @@ msgstr "" "Direction for circular array.\n" "Can be CW = clockwise or CCW = counter clockwise." -#: flatcamGUI/PreferencesUI.py:1995 flatcamGUI/PreferencesUI.py:2937 -#: flatcamGUI/PreferencesUI.py:3087 +#: flatcamGUI/PreferencesUI.py:1996 flatcamGUI/PreferencesUI.py:2938 +#: flatcamGUI/PreferencesUI.py:3088 msgid "Circular Angle" msgstr "Circular Angle" -#: flatcamGUI/PreferencesUI.py:2014 +#: flatcamGUI/PreferencesUI.py:2015 msgid "Distance at which to buffer the Gerber element." msgstr "Distance at which to buffer the Gerber element." -#: flatcamGUI/PreferencesUI.py:2023 +#: flatcamGUI/PreferencesUI.py:2024 msgid "Scale Tool" msgstr "Scale Tool" -#: flatcamGUI/PreferencesUI.py:2029 +#: flatcamGUI/PreferencesUI.py:2030 msgid "Factor to scale the Gerber element." msgstr "Factor to scale the Gerber element." -#: flatcamGUI/PreferencesUI.py:2042 +#: flatcamGUI/PreferencesUI.py:2043 msgid "Threshold low" msgstr "Threshold low" -#: flatcamGUI/PreferencesUI.py:2044 +#: flatcamGUI/PreferencesUI.py:2045 msgid "Threshold value under which the apertures are not marked." msgstr "Threshold value under which the apertures are not marked." -#: flatcamGUI/PreferencesUI.py:2054 +#: flatcamGUI/PreferencesUI.py:2055 msgid "Threshold high" msgstr "Threshold high" -#: flatcamGUI/PreferencesUI.py:2056 +#: flatcamGUI/PreferencesUI.py:2057 msgid "Threshold value over which the apertures are not marked." msgstr "Threshold value over which the apertures are not marked." -#: flatcamGUI/PreferencesUI.py:2074 +#: flatcamGUI/PreferencesUI.py:2075 msgid "Excellon General" msgstr "Excellon General" -#: flatcamGUI/PreferencesUI.py:2097 +#: flatcamGUI/PreferencesUI.py:2098 msgid "Excellon Format" msgstr "Excellon Format" -#: flatcamGUI/PreferencesUI.py:2099 +#: flatcamGUI/PreferencesUI.py:2100 msgid "" "The NC drill files, usually named Excellon files\n" "are files that can be found in different formats.\n" @@ -9691,12 +9683,12 @@ msgstr "" "Sprint Layout 2:4 INCH LZ\n" "KiCAD 3:5 INCH TZ" -#: flatcamGUI/PreferencesUI.py:2127 +#: flatcamGUI/PreferencesUI.py:2128 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:2714 +#: flatcamGUI/PreferencesUI.py:2135 flatcamGUI/PreferencesUI.py:2166 +#: flatcamGUI/PreferencesUI.py:2715 msgid "" "This numbers signify the number of digits in\n" "the whole part of Excellon coordinates." @@ -9704,8 +9696,8 @@ msgstr "" "This numbers signify the number of digits in\n" "the whole part of Excellon coordinates." -#: flatcamGUI/PreferencesUI.py:2147 flatcamGUI/PreferencesUI.py:2178 -#: flatcamGUI/PreferencesUI.py:2727 +#: flatcamGUI/PreferencesUI.py:2148 flatcamGUI/PreferencesUI.py:2179 +#: flatcamGUI/PreferencesUI.py:2728 msgid "" "This numbers signify the number of digits in\n" "the decimal part of Excellon coordinates." @@ -9713,19 +9705,19 @@ msgstr "" "This numbers signify the number of digits in\n" "the decimal part of Excellon coordinates." -#: flatcamGUI/PreferencesUI.py:2155 +#: flatcamGUI/PreferencesUI.py:2156 msgid "METRIC" msgstr "METRIC" -#: flatcamGUI/PreferencesUI.py:2158 +#: flatcamGUI/PreferencesUI.py:2159 msgid "Default values for METRIC are 3:3" msgstr "Default values for METRIC are 3:3" -#: flatcamGUI/PreferencesUI.py:2187 +#: flatcamGUI/PreferencesUI.py:2188 msgid "Default Zeros" msgstr "Default Zeros" -#: flatcamGUI/PreferencesUI.py:2190 flatcamGUI/PreferencesUI.py:2762 +#: flatcamGUI/PreferencesUI.py:2191 flatcamGUI/PreferencesUI.py:2763 msgid "" "This sets the type of Excellon zeros.\n" "If LZ then Leading Zeros are kept and\n" @@ -9739,7 +9731,7 @@ msgstr "" "If TZ is checked then Trailing Zeros are kept\n" "and Leading Zeros are removed." -#: flatcamGUI/PreferencesUI.py:2201 +#: flatcamGUI/PreferencesUI.py:2202 msgid "" "This sets the default type of Excellon zeros.\n" "If it is not detected in the parsed file the value here\n" @@ -9755,11 +9747,11 @@ msgstr "" "If TZ is checked then Trailing Zeros are kept\n" "and Leading Zeros are removed." -#: flatcamGUI/PreferencesUI.py:2211 +#: flatcamGUI/PreferencesUI.py:2212 msgid "Default Units" msgstr "Default Units" -#: flatcamGUI/PreferencesUI.py:2214 +#: flatcamGUI/PreferencesUI.py:2215 msgid "" "This sets the default units of Excellon files.\n" "If it is not detected in the parsed file the value here\n" @@ -9771,7 +9763,7 @@ msgstr "" "will be used.Some Excellon files don't have an header\n" "therefore this parameter will be used." -#: flatcamGUI/PreferencesUI.py:2225 +#: flatcamGUI/PreferencesUI.py:2226 msgid "" "This sets the units of Excellon files.\n" "Some Excellon files don't have an header\n" @@ -9781,19 +9773,19 @@ msgstr "" "Some Excellon files don't have an header\n" "therefore this parameter will be used." -#: flatcamGUI/PreferencesUI.py:2231 +#: flatcamGUI/PreferencesUI.py:2232 msgid "Update Export settings" msgstr "Update Export settings" -#: flatcamGUI/PreferencesUI.py:2239 +#: flatcamGUI/PreferencesUI.py:2240 msgid "Excellon Optimization" msgstr "Excellon Optimization" -#: flatcamGUI/PreferencesUI.py:2242 +#: flatcamGUI/PreferencesUI.py:2243 msgid "Algorithm:" msgstr "Algorithm:" -#: flatcamGUI/PreferencesUI.py:2244 flatcamGUI/PreferencesUI.py:2261 +#: flatcamGUI/PreferencesUI.py:2245 flatcamGUI/PreferencesUI.py:2262 msgid "" "This sets the optimization type for the Excellon drill path.\n" "If <> is checked then Google OR-Tools algorithm with\n" @@ -9815,19 +9807,19 @@ msgstr "" "If this control is disabled, then FlatCAM works in 32bit mode and it uses\n" "Travelling Salesman algorithm for path optimization." -#: flatcamGUI/PreferencesUI.py:2256 +#: flatcamGUI/PreferencesUI.py:2257 msgid "MetaHeuristic" msgstr "MetaHeuristic" -#: flatcamGUI/PreferencesUI.py:2258 +#: flatcamGUI/PreferencesUI.py:2259 msgid "TSA" msgstr "TSA" -#: flatcamGUI/PreferencesUI.py:2273 +#: flatcamGUI/PreferencesUI.py:2274 msgid "Optimization Time" msgstr "Optimization Time" -#: flatcamGUI/PreferencesUI.py:2276 +#: flatcamGUI/PreferencesUI.py:2277 msgid "" "When OR-Tools Metaheuristic (MH) is enabled there is a\n" "maximum threshold for how much time is spent doing the\n" @@ -9839,11 +9831,11 @@ msgstr "" "path optimization. This max duration is set here.\n" "In seconds." -#: flatcamGUI/PreferencesUI.py:2319 +#: flatcamGUI/PreferencesUI.py:2320 msgid "Excellon Options" msgstr "Excellon Options" -#: flatcamGUI/PreferencesUI.py:2325 +#: flatcamGUI/PreferencesUI.py:2326 msgid "" "Parameters used to create a CNC Job object\n" "for this drill object." @@ -9851,11 +9843,11 @@ msgstr "" "Parameters used to create a CNC Job object\n" "for this drill object." -#: flatcamGUI/PreferencesUI.py:2444 flatcamGUI/PreferencesUI.py:3358 +#: flatcamGUI/PreferencesUI.py:2445 flatcamGUI/PreferencesUI.py:3359 msgid "Duration" msgstr "Duration" -#: flatcamGUI/PreferencesUI.py:2474 +#: flatcamGUI/PreferencesUI.py:2475 msgid "" "Choose what to use for GCode generation:\n" "'Drills', 'Slots' or 'Both'.\n" @@ -9867,19 +9859,19 @@ msgstr "" "When choosing 'Slots' or 'Both', slots will be\n" "converted to drills." -#: flatcamGUI/PreferencesUI.py:2492 +#: flatcamGUI/PreferencesUI.py:2493 msgid "Create Geometry for milling holes." msgstr "Create Geometry for milling holes." -#: flatcamGUI/PreferencesUI.py:2524 +#: flatcamGUI/PreferencesUI.py:2525 msgid "Defaults" msgstr "Defaults" -#: flatcamGUI/PreferencesUI.py:2537 +#: flatcamGUI/PreferencesUI.py:2538 msgid "Excellon Adv. Options" msgstr "Excellon Adv. Options" -#: flatcamGUI/PreferencesUI.py:2546 +#: flatcamGUI/PreferencesUI.py:2547 msgid "" "A list of Excellon advanced parameters.\n" "Those parameters are available only for\n" @@ -9889,19 +9881,19 @@ msgstr "" "Those parameters are available only for\n" "Advanced App. Level." -#: flatcamGUI/PreferencesUI.py:2567 +#: flatcamGUI/PreferencesUI.py:2568 msgid "Toolchange X,Y" msgstr "Toolchange X,Y" -#: flatcamGUI/PreferencesUI.py:2569 flatcamGUI/PreferencesUI.py:3413 +#: flatcamGUI/PreferencesUI.py:2570 flatcamGUI/PreferencesUI.py:3414 msgid "Toolchange X,Y position." msgstr "Toolchange X,Y position." -#: flatcamGUI/PreferencesUI.py:2626 flatcamGUI/PreferencesUI.py:3500 +#: flatcamGUI/PreferencesUI.py:2627 flatcamGUI/PreferencesUI.py:3501 msgid "Spindle direction" msgstr "Spindle direction" -#: flatcamGUI/PreferencesUI.py:2628 flatcamGUI/PreferencesUI.py:3502 +#: flatcamGUI/PreferencesUI.py:2629 flatcamGUI/PreferencesUI.py:3503 msgid "" "This sets the direction that the spindle is rotating.\n" "It can be either:\n" @@ -9913,11 +9905,11 @@ msgstr "" "- CW = clockwise or\n" "- CCW = counter clockwise" -#: flatcamGUI/PreferencesUI.py:2639 flatcamGUI/PreferencesUI.py:3514 +#: flatcamGUI/PreferencesUI.py:2640 flatcamGUI/PreferencesUI.py:3515 msgid "Fast Plunge" msgstr "Fast Plunge" -#: flatcamGUI/PreferencesUI.py:2641 flatcamGUI/PreferencesUI.py:3516 +#: flatcamGUI/PreferencesUI.py:2642 flatcamGUI/PreferencesUI.py:3517 msgid "" "By checking this, the vertical move from\n" "Z_Toolchange to Z_move is done with G0,\n" @@ -9929,11 +9921,11 @@ msgstr "" "meaning the fastest speed available.\n" "WARNING: the move is done at Toolchange X,Y coords." -#: flatcamGUI/PreferencesUI.py:2650 +#: flatcamGUI/PreferencesUI.py:2651 msgid "Fast Retract" msgstr "Fast Retract" -#: flatcamGUI/PreferencesUI.py:2652 +#: flatcamGUI/PreferencesUI.py:2653 msgid "" "Exit hole strategy.\n" " - When uncheked, while exiting the drilled hole the drill bit\n" @@ -9949,11 +9941,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:2671 +#: flatcamGUI/PreferencesUI.py:2672 msgid "Excellon Export" msgstr "Excellon Export" -#: flatcamGUI/PreferencesUI.py:2677 +#: flatcamGUI/PreferencesUI.py:2678 msgid "" "The parameters set here are used in the file exported\n" "when using the File -> Export -> Export Excellon menu entry." @@ -9961,11 +9953,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:2688 flatcamGUI/PreferencesUI.py:2694 +#: flatcamGUI/PreferencesUI.py:2689 flatcamGUI/PreferencesUI.py:2695 msgid "The units used in the Excellon file." msgstr "The units used in the Excellon file." -#: flatcamGUI/PreferencesUI.py:2702 +#: flatcamGUI/PreferencesUI.py:2703 msgid "" "The NC drill files, usually named Excellon files\n" "are files that can be found in different formats.\n" @@ -9977,11 +9969,11 @@ msgstr "" "Here we set the format used when the provided\n" "coordinates are not using period." -#: flatcamGUI/PreferencesUI.py:2736 +#: flatcamGUI/PreferencesUI.py:2737 msgid "Format" msgstr "Format" -#: flatcamGUI/PreferencesUI.py:2738 flatcamGUI/PreferencesUI.py:2748 +#: flatcamGUI/PreferencesUI.py:2739 flatcamGUI/PreferencesUI.py:2749 msgid "" "Select the kind of coordinates format used.\n" "Coordinates can be saved with decimal point or without.\n" @@ -9997,15 +9989,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:2745 +#: flatcamGUI/PreferencesUI.py:2746 msgid "Decimal" msgstr "Decimal" -#: flatcamGUI/PreferencesUI.py:2746 +#: flatcamGUI/PreferencesUI.py:2747 msgid "No-Decimal" msgstr "No-Decimal" -#: flatcamGUI/PreferencesUI.py:2772 +#: flatcamGUI/PreferencesUI.py:2773 msgid "" "This sets the default type of Excellon zeros.\n" "If LZ then Leading Zeros are kept and\n" @@ -10019,11 +10011,11 @@ msgstr "" "If TZ is checked then Trailing Zeros are kept\n" "and Leading Zeros are removed." -#: flatcamGUI/PreferencesUI.py:2782 +#: flatcamGUI/PreferencesUI.py:2783 msgid "Slot type" msgstr "Slot type" -#: flatcamGUI/PreferencesUI.py:2785 flatcamGUI/PreferencesUI.py:2795 +#: flatcamGUI/PreferencesUI.py:2786 flatcamGUI/PreferencesUI.py:2796 msgid "" "This sets how the slots will be exported.\n" "If ROUTED then the slots will be routed\n" @@ -10037,19 +10029,19 @@ msgstr "" "If DRILLED(G85) the slots will be exported\n" "using the Drilled slot command (G85)." -#: flatcamGUI/PreferencesUI.py:2792 +#: flatcamGUI/PreferencesUI.py:2793 msgid "Routed" msgstr "Routed" -#: flatcamGUI/PreferencesUI.py:2793 +#: flatcamGUI/PreferencesUI.py:2794 msgid "Drilled(G85)" msgstr "Drilled(G85)" -#: flatcamGUI/PreferencesUI.py:2826 +#: flatcamGUI/PreferencesUI.py:2827 msgid "A list of Excellon Editor parameters." msgstr "A list of Excellon Editor parameters." -#: flatcamGUI/PreferencesUI.py:2836 +#: flatcamGUI/PreferencesUI.py:2837 msgid "" "Set the number of selected Excellon geometry\n" "items above which the utility geometry\n" @@ -10063,19 +10055,19 @@ msgstr "" "Increases the performance when moving a\n" "large number of geometric elements." -#: flatcamGUI/PreferencesUI.py:2849 flatcamGUI/PreferencesUI.py:4055 +#: flatcamGUI/PreferencesUI.py:2850 flatcamGUI/PreferencesUI.py:4056 msgid "New Tool Dia" msgstr "New Tool Dia" -#: flatcamGUI/PreferencesUI.py:2874 +#: flatcamGUI/PreferencesUI.py:2875 msgid "Linear Drill Array" msgstr "Linear Drill Array" -#: flatcamGUI/PreferencesUI.py:2920 +#: flatcamGUI/PreferencesUI.py:2921 msgid "Circular Drill Array" msgstr "Circular Drill Array" -#: flatcamGUI/PreferencesUI.py:2990 +#: flatcamGUI/PreferencesUI.py:2991 msgid "" "Angle at which the slot is placed.\n" "The precision is of max 2 decimals.\n" @@ -10087,19 +10079,19 @@ msgstr "" "Min value is: -359.99 degrees.\n" "Max value is: 360.00 degrees." -#: flatcamGUI/PreferencesUI.py:3009 +#: flatcamGUI/PreferencesUI.py:3010 msgid "Linear Slot Array" msgstr "Linear Slot Array" -#: flatcamGUI/PreferencesUI.py:3070 +#: flatcamGUI/PreferencesUI.py:3071 msgid "Circular Slot Array" msgstr "Circular Slot Array" -#: flatcamGUI/PreferencesUI.py:3108 +#: flatcamGUI/PreferencesUI.py:3109 msgid "Geometry General" msgstr "Geometry General" -#: flatcamGUI/PreferencesUI.py:3130 +#: flatcamGUI/PreferencesUI.py:3131 msgid "" "The number of circle steps for Geometry \n" "circle and arc shapes linear approximation." @@ -10107,11 +10099,11 @@ msgstr "" "The number of circle steps for Geometry \n" "circle and arc shapes linear approximation." -#: flatcamGUI/PreferencesUI.py:3161 +#: flatcamGUI/PreferencesUI.py:3162 msgid "Geometry Options" msgstr "Geometry Options" -#: flatcamGUI/PreferencesUI.py:3169 +#: flatcamGUI/PreferencesUI.py:3170 msgid "" "Create a CNC Job object\n" "tracing the contours of this\n" @@ -10121,11 +10113,11 @@ msgstr "" "tracing the contours of this\n" "Geometry object." -#: flatcamGUI/PreferencesUI.py:3211 +#: flatcamGUI/PreferencesUI.py:3212 msgid "Depth/Pass" msgstr "Depth/Pass" -#: flatcamGUI/PreferencesUI.py:3213 +#: flatcamGUI/PreferencesUI.py:3214 msgid "" "The depth to cut on each pass,\n" "when multidepth is enabled.\n" @@ -10139,11 +10131,11 @@ msgstr "" "it is a fraction from the depth\n" "which has negative value." -#: flatcamGUI/PreferencesUI.py:3393 +#: flatcamGUI/PreferencesUI.py:3394 msgid "Geometry Adv. Options" msgstr "Geometry Adv. Options" -#: flatcamGUI/PreferencesUI.py:3401 +#: flatcamGUI/PreferencesUI.py:3402 msgid "" "A list of Geometry advanced parameters.\n" "Those parameters are available only for\n" @@ -10153,13 +10145,13 @@ msgstr "" "Those parameters are available only for\n" "Advanced App. Level." -#: flatcamGUI/PreferencesUI.py:3411 flatcamGUI/PreferencesUI.py:5470 -#: flatcamGUI/PreferencesUI.py:6517 flatcamTools/ToolCalibration.py:125 +#: flatcamGUI/PreferencesUI.py:3412 flatcamGUI/PreferencesUI.py:5471 +#: flatcamGUI/PreferencesUI.py:6518 flatcamTools/ToolCalibration.py:125 #: flatcamTools/ToolSolderPaste.py:239 msgid "Toolchange X-Y" msgstr "Toolchange X-Y" -#: flatcamGUI/PreferencesUI.py:3422 +#: flatcamGUI/PreferencesUI.py:3423 msgid "" "Height of the tool just after starting the work.\n" "Delete the value if you don't need this feature." @@ -10167,11 +10159,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:3526 +#: flatcamGUI/PreferencesUI.py:3527 msgid "Segment X size" msgstr "Segment X size" -#: flatcamGUI/PreferencesUI.py:3528 +#: flatcamGUI/PreferencesUI.py:3529 msgid "" "The size of the trace segment on the X axis.\n" "Useful for auto-leveling.\n" @@ -10181,11 +10173,11 @@ msgstr "" "Useful for auto-leveling.\n" "A value of 0 means no segmentation on the X axis." -#: flatcamGUI/PreferencesUI.py:3542 +#: flatcamGUI/PreferencesUI.py:3543 msgid "Segment Y size" msgstr "Segment Y size" -#: flatcamGUI/PreferencesUI.py:3544 +#: flatcamGUI/PreferencesUI.py:3545 msgid "" "The size of the trace segment on the Y axis.\n" "Useful for auto-leveling.\n" @@ -10195,15 +10187,15 @@ msgstr "" "Useful for auto-leveling.\n" "A value of 0 means no segmentation on the Y axis." -#: flatcamGUI/PreferencesUI.py:3565 +#: flatcamGUI/PreferencesUI.py:3566 msgid "Geometry Editor" msgstr "Geometry Editor" -#: flatcamGUI/PreferencesUI.py:3571 +#: flatcamGUI/PreferencesUI.py:3572 msgid "A list of Geometry Editor parameters." msgstr "A list of Geometry Editor parameters." -#: flatcamGUI/PreferencesUI.py:3581 flatcamGUI/PreferencesUI.py:6042 +#: flatcamGUI/PreferencesUI.py:3582 flatcamGUI/PreferencesUI.py:6043 msgid "" "Set the number of selected geometry\n" "items above which the utility geometry\n" @@ -10217,11 +10209,11 @@ msgstr "" "Increases the performance when moving a\n" "large number of geometric elements." -#: flatcamGUI/PreferencesUI.py:3613 +#: flatcamGUI/PreferencesUI.py:3614 msgid "CNC Job General" msgstr "CNC Job General" -#: flatcamGUI/PreferencesUI.py:3666 +#: flatcamGUI/PreferencesUI.py:3667 msgid "" "The number of circle steps for GCode \n" "circle and arc shapes linear approximation." @@ -10229,11 +10221,11 @@ msgstr "" "The number of circle steps for GCode \n" "circle and arc shapes linear approximation." -#: flatcamGUI/PreferencesUI.py:3675 +#: flatcamGUI/PreferencesUI.py:3676 msgid "Travel dia" msgstr "Travel dia" -#: flatcamGUI/PreferencesUI.py:3677 +#: flatcamGUI/PreferencesUI.py:3678 msgid "" "The width of the travel lines to be\n" "rendered in the plot." @@ -10241,11 +10233,11 @@ msgstr "" "The width of the travel lines to be\n" "rendered in the plot." -#: flatcamGUI/PreferencesUI.py:3693 +#: flatcamGUI/PreferencesUI.py:3694 msgid "Coordinates decimals" msgstr "Coordinates decimals" -#: flatcamGUI/PreferencesUI.py:3695 +#: flatcamGUI/PreferencesUI.py:3696 msgid "" "The number of decimals to be used for \n" "the X, Y, Z coordinates in CNC code (GCODE, etc.)" @@ -10253,11 +10245,11 @@ msgstr "" "The number of decimals to be used for \n" "the X, Y, Z coordinates in CNC code (GCODE, etc.)" -#: flatcamGUI/PreferencesUI.py:3706 +#: flatcamGUI/PreferencesUI.py:3707 msgid "Feedrate decimals" msgstr "Feedrate decimals" -#: flatcamGUI/PreferencesUI.py:3708 +#: flatcamGUI/PreferencesUI.py:3709 msgid "" "The number of decimals to be used for \n" "the Feedrate parameter in CNC code (GCODE, etc.)" @@ -10265,11 +10257,11 @@ msgstr "" "The number of decimals to be used for \n" "the Feedrate parameter in CNC code (GCODE, etc.)" -#: flatcamGUI/PreferencesUI.py:3719 +#: flatcamGUI/PreferencesUI.py:3720 msgid "Coordinates type" msgstr "Coordinates type" -#: flatcamGUI/PreferencesUI.py:3721 +#: flatcamGUI/PreferencesUI.py:3722 msgid "" "The type of coordinates to be used in Gcode.\n" "Can be:\n" @@ -10281,19 +10273,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:3727 +#: flatcamGUI/PreferencesUI.py:3728 msgid "Absolute G90" msgstr "Absolute G90" -#: flatcamGUI/PreferencesUI.py:3728 +#: flatcamGUI/PreferencesUI.py:3729 msgid "Incremental G91" msgstr "Incremental G91" -#: flatcamGUI/PreferencesUI.py:3738 +#: flatcamGUI/PreferencesUI.py:3739 msgid "Force Windows style line-ending" msgstr "Force Windows style line-ending" -#: flatcamGUI/PreferencesUI.py:3740 +#: flatcamGUI/PreferencesUI.py:3741 msgid "" "When checked will force a Windows style line-ending\n" "(\\r\\n) on non-Windows OS's." @@ -10301,63 +10293,63 @@ msgstr "" "When checked will force a Windows style line-ending\n" "(\\r\\n) on non-Windows OS's." -#: flatcamGUI/PreferencesUI.py:3754 +#: flatcamGUI/PreferencesUI.py:3755 msgid "CNC Job Options" msgstr "CNC Job Options" -#: flatcamGUI/PreferencesUI.py:3758 +#: flatcamGUI/PreferencesUI.py:3759 msgid "Export G-Code" msgstr "Export G-Code" -#: flatcamGUI/PreferencesUI.py:3774 +#: flatcamGUI/PreferencesUI.py:3775 msgid "Prepend to G-Code" msgstr "Prepend to G-Code" -#: flatcamGUI/PreferencesUI.py:3790 +#: flatcamGUI/PreferencesUI.py:3791 msgid "Append to G-Code" msgstr "Append to G-Code" -#: flatcamGUI/PreferencesUI.py:3816 +#: flatcamGUI/PreferencesUI.py:3817 msgid "CNC Job Adv. Options" msgstr "CNC Job Adv. Options" -#: flatcamGUI/PreferencesUI.py:3902 +#: flatcamGUI/PreferencesUI.py:3903 msgid "Z depth for the cut" msgstr "Z depth for the cut" -#: flatcamGUI/PreferencesUI.py:3903 +#: flatcamGUI/PreferencesUI.py:3904 msgid "Z height for travel" msgstr "Z height for travel" -#: flatcamGUI/PreferencesUI.py:3909 +#: flatcamGUI/PreferencesUI.py:3910 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:3928 +#: flatcamGUI/PreferencesUI.py:3929 msgid "Annotation Size" msgstr "Annotation Size" -#: flatcamGUI/PreferencesUI.py:3930 +#: flatcamGUI/PreferencesUI.py:3931 msgid "The font size of the annotation text. In pixels." msgstr "The font size of the annotation text. In pixels." -#: flatcamGUI/PreferencesUI.py:3940 +#: flatcamGUI/PreferencesUI.py:3941 msgid "Annotation Color" msgstr "Annotation Color" -#: flatcamGUI/PreferencesUI.py:3942 +#: flatcamGUI/PreferencesUI.py:3943 msgid "Set the font color for the annotation texts." msgstr "Set the font color for the annotation texts." -#: flatcamGUI/PreferencesUI.py:3968 +#: flatcamGUI/PreferencesUI.py:3969 msgid "NCC Tool Options" msgstr "NCC Tool Options" -#: flatcamGUI/PreferencesUI.py:3982 flatcamGUI/PreferencesUI.py:5380 +#: flatcamGUI/PreferencesUI.py:3983 flatcamGUI/PreferencesUI.py:5381 msgid "Tools dia" msgstr "Tools dia" -#: flatcamGUI/PreferencesUI.py:3993 flatcamGUI/PreferencesUI.py:4001 +#: flatcamGUI/PreferencesUI.py:3994 flatcamGUI/PreferencesUI.py:4002 #: flatcamTools/ToolNonCopperClear.py:215 #: flatcamTools/ToolNonCopperClear.py:223 msgid "" @@ -10369,11 +10361,11 @@ msgstr "" "- 'V-shape'\n" "- Circular" -#: flatcamGUI/PreferencesUI.py:3998 flatcamTools/ToolNonCopperClear.py:220 +#: flatcamGUI/PreferencesUI.py:3999 flatcamTools/ToolNonCopperClear.py:220 msgid "V-shape" msgstr "V-shape" -#: flatcamGUI/PreferencesUI.py:4038 flatcamGUI/PreferencesUI.py:4047 +#: flatcamGUI/PreferencesUI.py:4039 flatcamGUI/PreferencesUI.py:4048 #: flatcamTools/ToolNonCopperClear.py:256 #: flatcamTools/ToolNonCopperClear.py:264 msgid "" @@ -10383,11 +10375,11 @@ msgstr "" "Depth of cut into material. Negative value.\n" "In FlatCAM units." -#: flatcamGUI/PreferencesUI.py:4057 +#: flatcamGUI/PreferencesUI.py:4058 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:4069 flatcamGUI/PreferencesUI.py:4077 +#: flatcamGUI/PreferencesUI.py:4070 flatcamGUI/PreferencesUI.py:4078 #: flatcamTools/ToolNonCopperClear.py:164 #: flatcamTools/ToolNonCopperClear.py:172 msgid "" @@ -10399,13 +10391,13 @@ msgstr "" "- climb / best for precision milling and to reduce tool usage\n" "- conventional / useful when there is no backlash compensation" -#: flatcamGUI/PreferencesUI.py:4086 flatcamGUI/PreferencesUI.py:4511 +#: flatcamGUI/PreferencesUI.py:4087 flatcamGUI/PreferencesUI.py:4512 #: flatcamTools/ToolNonCopperClear.py:181 flatcamTools/ToolPaint.py:153 msgid "Tool order" msgstr "Tool order" -#: flatcamGUI/PreferencesUI.py:4087 flatcamGUI/PreferencesUI.py:4097 -#: flatcamGUI/PreferencesUI.py:4512 flatcamGUI/PreferencesUI.py:4522 +#: flatcamGUI/PreferencesUI.py:4088 flatcamGUI/PreferencesUI.py:4098 +#: flatcamGUI/PreferencesUI.py:4513 flatcamGUI/PreferencesUI.py:4523 #: flatcamTools/ToolNonCopperClear.py:182 #: flatcamTools/ToolNonCopperClear.py:192 flatcamTools/ToolPaint.py:154 #: flatcamTools/ToolPaint.py:164 @@ -10426,17 +10418,17 @@ msgstr "" "WARNING: using rest machining will automatically set the order\n" "in reverse and disable this control." -#: flatcamGUI/PreferencesUI.py:4095 flatcamGUI/PreferencesUI.py:4520 +#: flatcamGUI/PreferencesUI.py:4096 flatcamGUI/PreferencesUI.py:4521 #: flatcamTools/ToolNonCopperClear.py:190 flatcamTools/ToolPaint.py:162 msgid "Forward" msgstr "Forward" -#: flatcamGUI/PreferencesUI.py:4096 flatcamGUI/PreferencesUI.py:4521 +#: flatcamGUI/PreferencesUI.py:4097 flatcamGUI/PreferencesUI.py:4522 #: flatcamTools/ToolNonCopperClear.py:191 flatcamTools/ToolPaint.py:163 msgid "Reverse" msgstr "Reverse" -#: flatcamGUI/PreferencesUI.py:4109 flatcamTools/ToolNonCopperClear.py:321 +#: flatcamGUI/PreferencesUI.py:4110 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" @@ -10454,14 +10446,14 @@ msgstr "" "Higher values = slow processing and slow execution on CNC\n" "due of too many paths." -#: flatcamGUI/PreferencesUI.py:4128 flatcamGUI/PreferencesUI.py:6108 -#: flatcamGUI/PreferencesUI.py:6350 flatcamGUI/PreferencesUI.py:6414 +#: flatcamGUI/PreferencesUI.py:4129 flatcamGUI/PreferencesUI.py:6109 +#: flatcamGUI/PreferencesUI.py:6351 flatcamGUI/PreferencesUI.py:6415 #: 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:4141 flatcamGUI/PreferencesUI.py:4569 +#: flatcamGUI/PreferencesUI.py:4142 flatcamGUI/PreferencesUI.py:4570 #: flatcamTools/ToolNonCopperClear.py:350 msgid "" "Algorithm for non-copper clearing:
Standard: Fixed step inwards." @@ -10472,22 +10464,22 @@ msgstr "" "
Seed-based: Outwards from seed.
Line-based: Parallel " "lines." -#: flatcamGUI/PreferencesUI.py:4157 flatcamGUI/PreferencesUI.py:4583 +#: flatcamGUI/PreferencesUI.py:4158 flatcamGUI/PreferencesUI.py:4584 #: flatcamTools/ToolNonCopperClear.py:364 flatcamTools/ToolPaint.py:267 msgid "Connect" msgstr "Connect" -#: flatcamGUI/PreferencesUI.py:4168 flatcamGUI/PreferencesUI.py:4593 +#: flatcamGUI/PreferencesUI.py:4169 flatcamGUI/PreferencesUI.py:4594 #: flatcamTools/ToolNonCopperClear.py:373 flatcamTools/ToolPaint.py:276 msgid "Contour" msgstr "Contour" -#: flatcamGUI/PreferencesUI.py:4179 flatcamTools/ToolNonCopperClear.py:382 +#: flatcamGUI/PreferencesUI.py:4180 flatcamTools/ToolNonCopperClear.py:382 #: flatcamTools/ToolPaint.py:285 msgid "Rest M." msgstr "Rest M." -#: flatcamGUI/PreferencesUI.py:4181 flatcamTools/ToolNonCopperClear.py:384 +#: flatcamGUI/PreferencesUI.py:4182 flatcamTools/ToolNonCopperClear.py:384 msgid "" "If checked, use 'rest machining'.\n" "Basically it will clear copper outside PCB features,\n" @@ -10505,7 +10497,7 @@ msgstr "" "no more copper to clear or there are no more tools.\n" "If not checked, use the standard algorithm." -#: flatcamGUI/PreferencesUI.py:4197 flatcamTools/ToolNonCopperClear.py:399 +#: flatcamGUI/PreferencesUI.py:4198 flatcamTools/ToolNonCopperClear.py:399 #: flatcamTools/ToolNonCopperClear.py:411 msgid "" "If used, it will add an offset to the copper features.\n" @@ -10518,11 +10510,11 @@ msgstr "" "from the copper features.\n" "The value can be between 0 and 10 FlatCAM units." -#: flatcamGUI/PreferencesUI.py:4208 flatcamTools/ToolNonCopperClear.py:409 +#: flatcamGUI/PreferencesUI.py:4209 flatcamTools/ToolNonCopperClear.py:409 msgid "Offset value" msgstr "Offset value" -#: flatcamGUI/PreferencesUI.py:4210 +#: flatcamGUI/PreferencesUI.py:4211 msgid "" "If used, it will add an offset to the copper features.\n" "The copper clearing will finish to a distance\n" @@ -10534,26 +10526,26 @@ msgstr "" "from the copper features.\n" "The value can be between 0.0 and 9999.9 FlatCAM units." -#: flatcamGUI/PreferencesUI.py:4225 flatcamGUI/PreferencesUI.py:6120 +#: flatcamGUI/PreferencesUI.py:4226 flatcamGUI/PreferencesUI.py:6121 #: flatcamTools/ToolCopperThieving.py:125 #: flatcamTools/ToolNonCopperClear.py:435 msgid "Itself" msgstr "Itself" -#: flatcamGUI/PreferencesUI.py:4226 flatcamGUI/PreferencesUI.py:4615 +#: flatcamGUI/PreferencesUI.py:4227 flatcamGUI/PreferencesUI.py:4616 msgid "Area" msgstr "Area" -#: flatcamGUI/PreferencesUI.py:4227 flatcamGUI/PreferencesUI.py:4617 +#: flatcamGUI/PreferencesUI.py:4228 flatcamGUI/PreferencesUI.py:4618 msgid "Ref" msgstr "Ref" -#: flatcamGUI/PreferencesUI.py:4228 flatcamGUI/PreferencesUI.py:4794 +#: flatcamGUI/PreferencesUI.py:4229 flatcamGUI/PreferencesUI.py:4795 #: flatcamTools/ToolFilm.py:219 msgid "Reference" msgstr "Reference" -#: flatcamGUI/PreferencesUI.py:4230 +#: flatcamGUI/PreferencesUI.py:4231 msgid "" "- 'Itself' - the non copper clearing extent\n" "is based on the object that is copper cleared.\n" @@ -10573,19 +10565,19 @@ msgstr "" "- 'Reference Object' - will do non copper clearing within the area\n" "specified by another object." -#: flatcamGUI/PreferencesUI.py:4242 flatcamGUI/PreferencesUI.py:4623 +#: flatcamGUI/PreferencesUI.py:4243 flatcamGUI/PreferencesUI.py:4624 msgid "Normal" msgstr "Normal" -#: flatcamGUI/PreferencesUI.py:4243 flatcamGUI/PreferencesUI.py:4624 +#: flatcamGUI/PreferencesUI.py:4244 flatcamGUI/PreferencesUI.py:4625 msgid "Progressive" msgstr "Progressive" -#: flatcamGUI/PreferencesUI.py:4244 +#: flatcamGUI/PreferencesUI.py:4245 msgid "NCC Plotting" msgstr "NCC Plotting" -#: flatcamGUI/PreferencesUI.py:4246 +#: flatcamGUI/PreferencesUI.py:4247 msgid "" "- 'Normal' - normal plotting, done at the end of the NCC job\n" "- 'Progressive' - after each shape is generated it will be plotted." @@ -10593,16 +10585,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:4260 +#: flatcamGUI/PreferencesUI.py:4261 msgid "Cutout Tool Options" msgstr "Cutout Tool Options" -#: flatcamGUI/PreferencesUI.py:4275 flatcamTools/ToolCalculators.py:123 +#: flatcamGUI/PreferencesUI.py:4276 flatcamTools/ToolCalculators.py:123 #: flatcamTools/ToolCutOut.py:123 msgid "Tool Diameter" msgstr "Tool Diameter" -#: flatcamGUI/PreferencesUI.py:4277 flatcamTools/ToolCutOut.py:125 +#: flatcamGUI/PreferencesUI.py:4278 flatcamTools/ToolCutOut.py:125 msgid "" "Diameter of the tool used to cutout\n" "the PCB shape out of the surrounding material." @@ -10610,11 +10602,11 @@ msgstr "" "Diameter of the tool used to cutout\n" "the PCB shape out of the surrounding material." -#: flatcamGUI/PreferencesUI.py:4332 flatcamTools/ToolCutOut.py:104 +#: flatcamGUI/PreferencesUI.py:4333 flatcamTools/ToolCutOut.py:104 msgid "Object kind" msgstr "Object kind" -#: flatcamGUI/PreferencesUI.py:4334 flatcamTools/ToolCutOut.py:106 +#: flatcamGUI/PreferencesUI.py:4335 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 " @@ -10626,15 +10618,15 @@ msgstr "" "Gerber object, which is made\n" "out of many individual PCB outlines." -#: flatcamGUI/PreferencesUI.py:4341 flatcamTools/ToolCutOut.py:112 +#: flatcamGUI/PreferencesUI.py:4342 flatcamTools/ToolCutOut.py:112 msgid "Single" msgstr "Single" -#: flatcamGUI/PreferencesUI.py:4342 flatcamTools/ToolCutOut.py:113 +#: flatcamGUI/PreferencesUI.py:4343 flatcamTools/ToolCutOut.py:113 msgid "Panel" msgstr "Panel" -#: flatcamGUI/PreferencesUI.py:4349 flatcamTools/ToolCutOut.py:184 +#: flatcamGUI/PreferencesUI.py:4350 flatcamTools/ToolCutOut.py:184 msgid "" "Margin over bounds. A positive value here\n" "will make the cutout of the PCB further from\n" @@ -10644,11 +10636,11 @@ msgstr "" "will make the cutout of the PCB further from\n" "the actual PCB border" -#: flatcamGUI/PreferencesUI.py:4362 flatcamTools/ToolCutOut.py:195 +#: flatcamGUI/PreferencesUI.py:4363 flatcamTools/ToolCutOut.py:195 msgid "Gap size" msgstr "Gap size" -#: flatcamGUI/PreferencesUI.py:4364 flatcamTools/ToolCutOut.py:197 +#: flatcamGUI/PreferencesUI.py:4365 flatcamTools/ToolCutOut.py:197 msgid "" "The size of the bridge gaps in the cutout\n" "used to keep the board connected to\n" @@ -10660,11 +10652,11 @@ msgstr "" "the surrounding material (the one \n" "from which the PCB is cutout)." -#: flatcamGUI/PreferencesUI.py:4378 flatcamTools/ToolCutOut.py:239 +#: flatcamGUI/PreferencesUI.py:4379 flatcamTools/ToolCutOut.py:239 msgid "Gaps" msgstr "Gaps" -#: flatcamGUI/PreferencesUI.py:4380 +#: flatcamGUI/PreferencesUI.py:4381 msgid "" "Number of gaps used for the cutout.\n" "There can be maximum 8 bridges/gaps.\n" @@ -10688,11 +10680,11 @@ msgstr "" "- 2tb - 2*top + 2*bottom\n" "- 8 - 2*left + 2*right +2*top + 2*bottom" -#: flatcamGUI/PreferencesUI.py:4403 +#: flatcamGUI/PreferencesUI.py:4404 msgid "Convex Sh." msgstr "Convex Sh." -#: flatcamGUI/PreferencesUI.py:4405 flatcamTools/ToolCutOut.py:217 +#: flatcamGUI/PreferencesUI.py:4406 flatcamTools/ToolCutOut.py:217 msgid "" "Create a convex shape surrounding the entire PCB.\n" "Used only if the source object type is Gerber." @@ -10700,11 +10692,11 @@ msgstr "" "Create a convex shape surrounding the entire PCB.\n" "Used only if the source object type is Gerber." -#: flatcamGUI/PreferencesUI.py:4419 +#: flatcamGUI/PreferencesUI.py:4420 msgid "2Sided Tool Options" msgstr "2Sided Tool Options" -#: flatcamGUI/PreferencesUI.py:4425 +#: flatcamGUI/PreferencesUI.py:4426 msgid "" "A tool to help in creating a double sided\n" "PCB using alignment holes." @@ -10712,36 +10704,36 @@ msgstr "" "A tool to help in creating a double sided\n" "PCB using alignment holes." -#: flatcamGUI/PreferencesUI.py:4439 flatcamTools/ToolDblSided.py:276 +#: flatcamGUI/PreferencesUI.py:4440 flatcamTools/ToolDblSided.py:276 msgid "Drill dia" msgstr "Drill dia" -#: flatcamGUI/PreferencesUI.py:4441 flatcamTools/ToolDblSided.py:267 +#: flatcamGUI/PreferencesUI.py:4442 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:4450 flatcamTools/ToolDblSided.py:144 +#: flatcamGUI/PreferencesUI.py:4451 flatcamTools/ToolDblSided.py:144 msgid "Mirror Axis:" msgstr "Mirror Axis:" -#: flatcamGUI/PreferencesUI.py:4452 flatcamTools/ToolDblSided.py:145 +#: flatcamGUI/PreferencesUI.py:4453 flatcamTools/ToolDblSided.py:145 msgid "Mirror vertically (X) or horizontally (Y)." msgstr "Mirror vertically (X) or horizontally (Y)." -#: flatcamGUI/PreferencesUI.py:4461 flatcamTools/ToolDblSided.py:154 +#: flatcamGUI/PreferencesUI.py:4462 flatcamTools/ToolDblSided.py:154 msgid "Point" msgstr "Point" -#: flatcamGUI/PreferencesUI.py:4462 flatcamTools/ToolDblSided.py:155 +#: flatcamGUI/PreferencesUI.py:4463 flatcamTools/ToolDblSided.py:155 msgid "Box" msgstr "Box" -#: flatcamGUI/PreferencesUI.py:4463 flatcamTools/ToolDblSided.py:156 +#: flatcamGUI/PreferencesUI.py:4464 flatcamTools/ToolDblSided.py:156 msgid "Axis Ref" msgstr "Axis Ref" -#: flatcamGUI/PreferencesUI.py:4465 flatcamTools/ToolDblSided.py:158 +#: flatcamGUI/PreferencesUI.py:4466 flatcamTools/ToolDblSided.py:158 msgid "" "The axis should pass through a point or cut\n" " a specified box (in a FlatCAM object) through \n" @@ -10751,15 +10743,15 @@ msgstr "" " a specified box (in a FlatCAM object) through \n" "the center." -#: flatcamGUI/PreferencesUI.py:4481 +#: flatcamGUI/PreferencesUI.py:4482 msgid "Paint Tool Options" msgstr "Paint Tool Options" -#: flatcamGUI/PreferencesUI.py:4487 +#: flatcamGUI/PreferencesUI.py:4488 msgid "Parameters:" msgstr "Parameters:" -#: flatcamGUI/PreferencesUI.py:4605 flatcamTools/ToolPaint.py:302 +#: flatcamGUI/PreferencesUI.py:4606 flatcamTools/ToolPaint.py:302 #: flatcamTools/ToolPaint.py:319 msgid "" "How to select Polygons to be painted.\n" @@ -10784,15 +10776,15 @@ msgstr "" "- 'Reference Object' - will do non copper clearing within the area\n" "specified by another object." -#: flatcamGUI/PreferencesUI.py:4614 +#: flatcamGUI/PreferencesUI.py:4615 msgid "Sel" msgstr "Sel" -#: flatcamGUI/PreferencesUI.py:4625 +#: flatcamGUI/PreferencesUI.py:4626 msgid "Paint Plotting" msgstr "Paint Plotting" -#: flatcamGUI/PreferencesUI.py:4627 +#: flatcamGUI/PreferencesUI.py:4628 msgid "" "- 'Normal' - normal plotting, done at the end of the Paint job\n" "- 'Progressive' - after each shape is generated it will be plotted." @@ -10800,11 +10792,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:4641 +#: flatcamGUI/PreferencesUI.py:4642 msgid "Film Tool Options" msgstr "Film Tool Options" -#: flatcamGUI/PreferencesUI.py:4647 +#: flatcamGUI/PreferencesUI.py:4648 msgid "" "Create a PCB film from a Gerber or Geometry\n" "FlatCAM object.\n" @@ -10814,11 +10806,11 @@ msgstr "" "FlatCAM object.\n" "The file is saved in SVG format." -#: flatcamGUI/PreferencesUI.py:4658 +#: flatcamGUI/PreferencesUI.py:4659 msgid "Film Type" msgstr "Film Type" -#: flatcamGUI/PreferencesUI.py:4660 flatcamTools/ToolFilm.py:300 +#: flatcamGUI/PreferencesUI.py:4661 flatcamTools/ToolFilm.py:300 msgid "" "Generate a Positive black film or a Negative film.\n" "Positive means that it will print the features\n" @@ -10834,19 +10826,19 @@ msgstr "" "with white on a black canvas.\n" "The Film format is SVG." -#: flatcamGUI/PreferencesUI.py:4671 +#: flatcamGUI/PreferencesUI.py:4672 msgid "Film Color" msgstr "Film Color" -#: flatcamGUI/PreferencesUI.py:4673 +#: flatcamGUI/PreferencesUI.py:4674 msgid "Set the film color when positive film is selected." msgstr "Set the film color when positive film is selected." -#: flatcamGUI/PreferencesUI.py:4696 flatcamTools/ToolFilm.py:316 +#: flatcamGUI/PreferencesUI.py:4697 flatcamTools/ToolFilm.py:316 msgid "Border" msgstr "Border" -#: flatcamGUI/PreferencesUI.py:4698 flatcamTools/ToolFilm.py:318 +#: flatcamGUI/PreferencesUI.py:4699 flatcamTools/ToolFilm.py:318 msgid "" "Specify a border around the object.\n" "Only for negative film.\n" @@ -10866,11 +10858,11 @@ msgstr "" "white color like the rest and which may confound with the\n" "surroundings if not for this border." -#: flatcamGUI/PreferencesUI.py:4715 flatcamTools/ToolFilm.py:283 +#: flatcamGUI/PreferencesUI.py:4716 flatcamTools/ToolFilm.py:283 msgid "Scale Stroke" msgstr "Scale Stroke" -#: flatcamGUI/PreferencesUI.py:4717 flatcamTools/ToolFilm.py:285 +#: flatcamGUI/PreferencesUI.py:4718 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 " @@ -10882,11 +10874,11 @@ msgstr "" "thinner,\n" "therefore the fine features may be more affected by this parameter." -#: flatcamGUI/PreferencesUI.py:4724 flatcamTools/ToolFilm.py:141 +#: flatcamGUI/PreferencesUI.py:4725 flatcamTools/ToolFilm.py:141 msgid "Film Adjustments" msgstr "Film Adjustments" -#: flatcamGUI/PreferencesUI.py:4726 flatcamTools/ToolFilm.py:143 +#: flatcamGUI/PreferencesUI.py:4727 flatcamTools/ToolFilm.py:143 msgid "" "Sometime the printers will distort the print shape, especially the Laser " "types.\n" @@ -10896,11 +10888,11 @@ msgstr "" "types.\n" "This section provide the tools to compensate for the print distortions." -#: flatcamGUI/PreferencesUI.py:4733 flatcamTools/ToolFilm.py:150 +#: flatcamGUI/PreferencesUI.py:4734 flatcamTools/ToolFilm.py:150 msgid "Scale Film geometry" msgstr "Scale Film geometry" -#: flatcamGUI/PreferencesUI.py:4735 flatcamTools/ToolFilm.py:152 +#: flatcamGUI/PreferencesUI.py:4736 flatcamTools/ToolFilm.py:152 msgid "" "A value greater than 1 will stretch the film\n" "while a value less than 1 will jolt it." @@ -10908,21 +10900,21 @@ msgstr "" "A value greater than 1 will stretch the film\n" "while a value less than 1 will jolt it." -#: flatcamGUI/PreferencesUI.py:4745 flatcamGUI/PreferencesUI.py:5265 +#: flatcamGUI/PreferencesUI.py:4746 flatcamGUI/PreferencesUI.py:5266 #: flatcamTools/ToolFilm.py:162 flatcamTools/ToolTransform.py:147 msgid "X factor" msgstr "X factor" -#: flatcamGUI/PreferencesUI.py:4754 flatcamGUI/PreferencesUI.py:5278 +#: flatcamGUI/PreferencesUI.py:4755 flatcamGUI/PreferencesUI.py:5279 #: flatcamTools/ToolFilm.py:171 flatcamTools/ToolTransform.py:168 msgid "Y factor" msgstr "Y factor" -#: flatcamGUI/PreferencesUI.py:4764 flatcamTools/ToolFilm.py:189 +#: flatcamGUI/PreferencesUI.py:4765 flatcamTools/ToolFilm.py:189 msgid "Skew Film geometry" msgstr "Skew Film geometry" -#: flatcamGUI/PreferencesUI.py:4766 flatcamTools/ToolFilm.py:191 +#: flatcamGUI/PreferencesUI.py:4767 flatcamTools/ToolFilm.py:191 msgid "" "Positive values will skew to the right\n" "while negative values will skew to the left." @@ -10930,17 +10922,17 @@ msgstr "" "Positive values will skew to the right\n" "while negative values will skew to the left." -#: flatcamGUI/PreferencesUI.py:4776 flatcamGUI/PreferencesUI.py:5234 +#: flatcamGUI/PreferencesUI.py:4777 flatcamGUI/PreferencesUI.py:5235 #: flatcamTools/ToolFilm.py:201 flatcamTools/ToolTransform.py:97 msgid "X angle" msgstr "X angle" -#: flatcamGUI/PreferencesUI.py:4785 flatcamGUI/PreferencesUI.py:5248 +#: flatcamGUI/PreferencesUI.py:4786 flatcamGUI/PreferencesUI.py:5249 #: flatcamTools/ToolFilm.py:210 flatcamTools/ToolTransform.py:119 msgid "Y angle" msgstr "Y angle" -#: flatcamGUI/PreferencesUI.py:4796 flatcamTools/ToolFilm.py:221 +#: flatcamGUI/PreferencesUI.py:4797 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." @@ -10948,57 +10940,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:4799 flatcamTools/ToolFiducials.py:87 +#: flatcamGUI/PreferencesUI.py:4800 flatcamTools/ToolFiducials.py:87 #: flatcamTools/ToolFilm.py:224 msgid "Bottom Left" msgstr "Bottom Left" -#: flatcamGUI/PreferencesUI.py:4800 flatcamTools/ToolFilm.py:225 +#: flatcamGUI/PreferencesUI.py:4801 flatcamTools/ToolFilm.py:225 msgid "Top Left" msgstr "Top Left" -#: flatcamGUI/PreferencesUI.py:4801 flatcamTools/ToolFilm.py:226 +#: flatcamGUI/PreferencesUI.py:4802 flatcamTools/ToolFilm.py:226 msgid "Bottom Right" msgstr "Bottom Right" -#: flatcamGUI/PreferencesUI.py:4802 flatcamTools/ToolFilm.py:227 +#: flatcamGUI/PreferencesUI.py:4803 flatcamTools/ToolFilm.py:227 msgid "Top right" msgstr "Top right" -#: flatcamGUI/PreferencesUI.py:4810 flatcamTools/ToolFilm.py:244 +#: flatcamGUI/PreferencesUI.py:4811 flatcamTools/ToolFilm.py:244 msgid "Mirror Film geometry" msgstr "Mirror Film geometry" -#: flatcamGUI/PreferencesUI.py:4812 flatcamTools/ToolFilm.py:246 +#: flatcamGUI/PreferencesUI.py:4813 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:4824 flatcamTools/ToolFilm.py:258 +#: flatcamGUI/PreferencesUI.py:4825 flatcamTools/ToolFilm.py:258 msgid "Both" msgstr "Both" -#: flatcamGUI/PreferencesUI.py:4826 flatcamTools/ToolFilm.py:260 +#: flatcamGUI/PreferencesUI.py:4827 flatcamTools/ToolFilm.py:260 msgid "Mirror axis" msgstr "Mirror axis" -#: flatcamGUI/PreferencesUI.py:4836 flatcamTools/ToolFilm.py:403 +#: flatcamGUI/PreferencesUI.py:4837 flatcamTools/ToolFilm.py:403 msgid "SVG" msgstr "SVG" -#: flatcamGUI/PreferencesUI.py:4837 flatcamTools/ToolFilm.py:404 +#: flatcamGUI/PreferencesUI.py:4838 flatcamTools/ToolFilm.py:404 msgid "PNG" msgstr "PNG" -#: flatcamGUI/PreferencesUI.py:4838 flatcamTools/ToolFilm.py:405 +#: flatcamGUI/PreferencesUI.py:4839 flatcamTools/ToolFilm.py:405 msgid "PDF" msgstr "PDF" -#: flatcamGUI/PreferencesUI.py:4841 flatcamTools/ToolFilm.py:298 +#: flatcamGUI/PreferencesUI.py:4842 flatcamTools/ToolFilm.py:298 #: flatcamTools/ToolFilm.py:408 msgid "Film Type:" msgstr "Film Type:" -#: flatcamGUI/PreferencesUI.py:4843 flatcamTools/ToolFilm.py:410 +#: flatcamGUI/PreferencesUI.py:4844 flatcamTools/ToolFilm.py:410 msgid "" "The file type of the saved film. Can be:\n" "- 'SVG' -> open-source vectorial format\n" @@ -11010,23 +11002,23 @@ msgstr "" "- 'PNG' -> raster image\n" "- 'PDF' -> portable document format" -#: flatcamGUI/PreferencesUI.py:4852 flatcamTools/ToolFilm.py:419 +#: flatcamGUI/PreferencesUI.py:4853 flatcamTools/ToolFilm.py:419 msgid "Page Orientation" msgstr "Page Orientation" -#: flatcamGUI/PreferencesUI.py:4865 flatcamTools/ToolFilm.py:432 +#: flatcamGUI/PreferencesUI.py:4866 flatcamTools/ToolFilm.py:432 msgid "Page Size" msgstr "Page Size" -#: flatcamGUI/PreferencesUI.py:4866 flatcamTools/ToolFilm.py:433 +#: flatcamGUI/PreferencesUI.py:4867 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:4938 +#: flatcamGUI/PreferencesUI.py:4939 msgid "Panelize Tool Options" msgstr "Panelize Tool Options" -#: flatcamGUI/PreferencesUI.py:4944 +#: flatcamGUI/PreferencesUI.py:4945 msgid "" "Create an object that contains an array of (x, y) elements,\n" "each element is a copy of the source object spaced\n" @@ -11036,11 +11028,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:4961 flatcamTools/ToolPanelize.py:160 +#: flatcamGUI/PreferencesUI.py:4962 flatcamTools/ToolPanelize.py:160 msgid "Spacing cols" msgstr "Spacing cols" -#: flatcamGUI/PreferencesUI.py:4963 flatcamTools/ToolPanelize.py:162 +#: flatcamGUI/PreferencesUI.py:4964 flatcamTools/ToolPanelize.py:162 msgid "" "Spacing between columns of the desired panel.\n" "In current units." @@ -11048,11 +11040,11 @@ msgstr "" "Spacing between columns of the desired panel.\n" "In current units." -#: flatcamGUI/PreferencesUI.py:4975 flatcamTools/ToolPanelize.py:172 +#: flatcamGUI/PreferencesUI.py:4976 flatcamTools/ToolPanelize.py:172 msgid "Spacing rows" msgstr "Spacing rows" -#: flatcamGUI/PreferencesUI.py:4977 flatcamTools/ToolPanelize.py:174 +#: flatcamGUI/PreferencesUI.py:4978 flatcamTools/ToolPanelize.py:174 msgid "" "Spacing between rows of the desired panel.\n" "In current units." @@ -11060,36 +11052,36 @@ msgstr "" "Spacing between rows of the desired panel.\n" "In current units." -#: flatcamGUI/PreferencesUI.py:4988 flatcamTools/ToolPanelize.py:183 +#: flatcamGUI/PreferencesUI.py:4989 flatcamTools/ToolPanelize.py:183 msgid "Columns" msgstr "Columns" -#: flatcamGUI/PreferencesUI.py:4990 flatcamTools/ToolPanelize.py:185 +#: flatcamGUI/PreferencesUI.py:4991 flatcamTools/ToolPanelize.py:185 msgid "Number of columns of the desired panel" msgstr "Number of columns of the desired panel" -#: flatcamGUI/PreferencesUI.py:5000 flatcamTools/ToolPanelize.py:193 +#: flatcamGUI/PreferencesUI.py:5001 flatcamTools/ToolPanelize.py:193 msgid "Rows" msgstr "Rows" -#: flatcamGUI/PreferencesUI.py:5002 flatcamTools/ToolPanelize.py:195 +#: flatcamGUI/PreferencesUI.py:5003 flatcamTools/ToolPanelize.py:195 msgid "Number of rows of the desired panel" msgstr "Number of rows of the desired panel" -#: flatcamGUI/PreferencesUI.py:5008 flatcamTools/ToolCalibration.py:196 +#: flatcamGUI/PreferencesUI.py:5009 flatcamTools/ToolCalibration.py:196 #: flatcamTools/ToolCalibration.py:634 flatcamTools/ToolPanelize.py:201 msgid "Gerber" msgstr "Gerber" -#: flatcamGUI/PreferencesUI.py:5009 flatcamTools/ToolPanelize.py:202 +#: flatcamGUI/PreferencesUI.py:5010 flatcamTools/ToolPanelize.py:202 msgid "Geo" msgstr "Geo" -#: flatcamGUI/PreferencesUI.py:5010 flatcamTools/ToolPanelize.py:203 +#: flatcamGUI/PreferencesUI.py:5011 flatcamTools/ToolPanelize.py:203 msgid "Panel Type" msgstr "Panel Type" -#: flatcamGUI/PreferencesUI.py:5012 +#: flatcamGUI/PreferencesUI.py:5013 msgid "" "Choose the type of object for the panel object:\n" "- Gerber\n" @@ -11099,11 +11091,11 @@ msgstr "" "- Gerber\n" "- Geometry" -#: flatcamGUI/PreferencesUI.py:5021 +#: flatcamGUI/PreferencesUI.py:5022 msgid "Constrain within" msgstr "Constrain within" -#: flatcamGUI/PreferencesUI.py:5023 flatcamTools/ToolPanelize.py:215 +#: flatcamGUI/PreferencesUI.py:5024 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" @@ -11117,11 +11109,11 @@ msgstr "" "the final panel will have as many columns and rows as\n" "they fit completely within selected area." -#: flatcamGUI/PreferencesUI.py:5036 flatcamTools/ToolPanelize.py:227 +#: flatcamGUI/PreferencesUI.py:5037 flatcamTools/ToolPanelize.py:227 msgid "Width (DX)" msgstr "Width (DX)" -#: flatcamGUI/PreferencesUI.py:5038 flatcamTools/ToolPanelize.py:229 +#: flatcamGUI/PreferencesUI.py:5039 flatcamTools/ToolPanelize.py:229 msgid "" "The width (DX) within which the panel must fit.\n" "In current units." @@ -11129,11 +11121,11 @@ msgstr "" "The width (DX) within which the panel must fit.\n" "In current units." -#: flatcamGUI/PreferencesUI.py:5049 flatcamTools/ToolPanelize.py:238 +#: flatcamGUI/PreferencesUI.py:5050 flatcamTools/ToolPanelize.py:238 msgid "Height (DY)" msgstr "Height (DY)" -#: flatcamGUI/PreferencesUI.py:5051 flatcamTools/ToolPanelize.py:240 +#: flatcamGUI/PreferencesUI.py:5052 flatcamTools/ToolPanelize.py:240 msgid "" "The height (DY)within which the panel must fit.\n" "In current units." @@ -11141,15 +11133,15 @@ msgstr "" "The height (DY)within which the panel must fit.\n" "In current units." -#: flatcamGUI/PreferencesUI.py:5065 +#: flatcamGUI/PreferencesUI.py:5066 msgid "Calculators Tool Options" msgstr "Calculators Tool Options" -#: flatcamGUI/PreferencesUI.py:5069 flatcamTools/ToolCalculators.py:25 +#: flatcamGUI/PreferencesUI.py:5070 flatcamTools/ToolCalculators.py:25 msgid "V-Shape Tool Calculator" msgstr "V-Shape Tool Calculator" -#: flatcamGUI/PreferencesUI.py:5071 +#: flatcamGUI/PreferencesUI.py:5072 msgid "" "Calculate the tool diameter for a given V-shape tool,\n" "having the tip diameter, tip angle and\n" @@ -11159,11 +11151,11 @@ msgstr "" "having the tip diameter, tip angle and\n" "depth-of-cut as parameters." -#: flatcamGUI/PreferencesUI.py:5086 flatcamTools/ToolCalculators.py:94 +#: flatcamGUI/PreferencesUI.py:5087 flatcamTools/ToolCalculators.py:94 msgid "Tip Diameter" msgstr "Tip Diameter" -#: flatcamGUI/PreferencesUI.py:5088 flatcamTools/ToolCalculators.py:102 +#: flatcamGUI/PreferencesUI.py:5089 flatcamTools/ToolCalculators.py:102 msgid "" "This is the tool tip diameter.\n" "It is specified by manufacturer." @@ -11171,11 +11163,11 @@ msgstr "" "This is the tool tip diameter.\n" "It is specified by manufacturer." -#: flatcamGUI/PreferencesUI.py:5100 flatcamTools/ToolCalculators.py:105 +#: flatcamGUI/PreferencesUI.py:5101 flatcamTools/ToolCalculators.py:105 msgid "Tip Angle" msgstr "Tip Angle" -#: flatcamGUI/PreferencesUI.py:5102 +#: flatcamGUI/PreferencesUI.py:5103 msgid "" "This is the angle on the tip of the tool.\n" "It is specified by manufacturer." @@ -11183,7 +11175,7 @@ msgstr "" "This is the angle on the tip of the tool.\n" "It is specified by manufacturer." -#: flatcamGUI/PreferencesUI.py:5116 +#: flatcamGUI/PreferencesUI.py:5117 msgid "" "This is depth to cut into material.\n" "In the CNCJob object it is the CutZ parameter." @@ -11191,11 +11183,11 @@ msgstr "" "This is depth to cut into material.\n" "In the CNCJob object it is the CutZ parameter." -#: flatcamGUI/PreferencesUI.py:5123 flatcamTools/ToolCalculators.py:27 +#: flatcamGUI/PreferencesUI.py:5124 flatcamTools/ToolCalculators.py:27 msgid "ElectroPlating Calculator" msgstr "ElectroPlating Calculator" -#: flatcamGUI/PreferencesUI.py:5125 flatcamTools/ToolCalculators.py:158 +#: flatcamGUI/PreferencesUI.py:5126 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 " @@ -11205,27 +11197,27 @@ msgstr "" "using a method like grahite ink or calcium hypophosphite ink or palladium " "chloride." -#: flatcamGUI/PreferencesUI.py:5139 flatcamTools/ToolCalculators.py:167 +#: flatcamGUI/PreferencesUI.py:5140 flatcamTools/ToolCalculators.py:167 msgid "Board Length" msgstr "Board Length" -#: flatcamGUI/PreferencesUI.py:5141 flatcamTools/ToolCalculators.py:173 +#: flatcamGUI/PreferencesUI.py:5142 flatcamTools/ToolCalculators.py:173 msgid "This is the board length. In centimeters." msgstr "This is the board length. In centimeters." -#: flatcamGUI/PreferencesUI.py:5151 flatcamTools/ToolCalculators.py:175 +#: flatcamGUI/PreferencesUI.py:5152 flatcamTools/ToolCalculators.py:175 msgid "Board Width" msgstr "Board Width" -#: flatcamGUI/PreferencesUI.py:5153 flatcamTools/ToolCalculators.py:181 +#: flatcamGUI/PreferencesUI.py:5154 flatcamTools/ToolCalculators.py:181 msgid "This is the board width.In centimeters." msgstr "This is the board width.In centimeters." -#: flatcamGUI/PreferencesUI.py:5158 flatcamTools/ToolCalculators.py:183 +#: flatcamGUI/PreferencesUI.py:5159 flatcamTools/ToolCalculators.py:183 msgid "Current Density" msgstr "Current Density" -#: flatcamGUI/PreferencesUI.py:5164 flatcamTools/ToolCalculators.py:190 +#: flatcamGUI/PreferencesUI.py:5165 flatcamTools/ToolCalculators.py:190 msgid "" "Current density to pass through the board. \n" "In Amps per Square Feet ASF." @@ -11233,11 +11225,11 @@ msgstr "" "Current density to pass through the board. \n" "In Amps per Square Feet ASF." -#: flatcamGUI/PreferencesUI.py:5170 flatcamTools/ToolCalculators.py:193 +#: flatcamGUI/PreferencesUI.py:5171 flatcamTools/ToolCalculators.py:193 msgid "Copper Growth" msgstr "Copper Growth" -#: flatcamGUI/PreferencesUI.py:5176 flatcamTools/ToolCalculators.py:200 +#: flatcamGUI/PreferencesUI.py:5177 flatcamTools/ToolCalculators.py:200 msgid "" "How thick the copper growth is intended to be.\n" "In microns." @@ -11245,11 +11237,11 @@ msgstr "" "How thick the copper growth is intended to be.\n" "In microns." -#: flatcamGUI/PreferencesUI.py:5189 +#: flatcamGUI/PreferencesUI.py:5190 msgid "Transform Tool Options" msgstr "Transform Tool Options" -#: flatcamGUI/PreferencesUI.py:5195 +#: flatcamGUI/PreferencesUI.py:5196 msgid "" "Various transformations that can be applied\n" "on a FlatCAM object." @@ -11257,19 +11249,19 @@ msgstr "" "Various transformations that can be applied\n" "on a FlatCAM object." -#: flatcamGUI/PreferencesUI.py:5226 +#: flatcamGUI/PreferencesUI.py:5227 msgid "Skew" msgstr "Skew" -#: flatcamGUI/PreferencesUI.py:5267 flatcamTools/ToolTransform.py:149 +#: flatcamGUI/PreferencesUI.py:5268 flatcamTools/ToolTransform.py:149 msgid "Factor for scaling on X axis." msgstr "Factor for scaling on X axis." -#: flatcamGUI/PreferencesUI.py:5280 flatcamTools/ToolTransform.py:170 +#: flatcamGUI/PreferencesUI.py:5281 flatcamTools/ToolTransform.py:170 msgid "Factor for scaling on Y axis." msgstr "Factor for scaling on Y axis." -#: flatcamGUI/PreferencesUI.py:5288 flatcamTools/ToolTransform.py:193 +#: flatcamGUI/PreferencesUI.py:5289 flatcamTools/ToolTransform.py:193 msgid "" "Scale the selected object(s)\n" "using the Scale_X factor for both axis." @@ -11277,7 +11269,7 @@ msgstr "" "Scale the selected object(s)\n" "using the Scale_X factor for both axis." -#: flatcamGUI/PreferencesUI.py:5296 flatcamTools/ToolTransform.py:201 +#: flatcamGUI/PreferencesUI.py:5297 flatcamTools/ToolTransform.py:201 msgid "" "Scale the selected object(s)\n" "using the origin reference when checked,\n" @@ -11289,27 +11281,27 @@ msgstr "" "and the center of the biggest bounding box\n" "of the selected objects when unchecked." -#: flatcamGUI/PreferencesUI.py:5312 flatcamTools/ToolTransform.py:216 +#: flatcamGUI/PreferencesUI.py:5313 flatcamTools/ToolTransform.py:216 msgid "X val" msgstr "X val" -#: flatcamGUI/PreferencesUI.py:5314 flatcamTools/ToolTransform.py:218 +#: flatcamGUI/PreferencesUI.py:5315 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:5325 flatcamTools/ToolTransform.py:237 +#: flatcamGUI/PreferencesUI.py:5326 flatcamTools/ToolTransform.py:237 msgid "Y val" msgstr "Y val" -#: flatcamGUI/PreferencesUI.py:5327 flatcamTools/ToolTransform.py:239 +#: flatcamGUI/PreferencesUI.py:5328 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:5333 flatcamTools/ToolTransform.py:284 +#: flatcamGUI/PreferencesUI.py:5334 flatcamTools/ToolTransform.py:284 msgid "Mirror Reference" msgstr "Mirror Reference" -#: flatcamGUI/PreferencesUI.py:5335 flatcamTools/ToolTransform.py:286 +#: flatcamGUI/PreferencesUI.py:5336 flatcamTools/ToolTransform.py:286 msgid "" "Flip the selected object(s)\n" "around the point in Point Entry Field.\n" @@ -11331,11 +11323,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:5346 +#: flatcamGUI/PreferencesUI.py:5347 msgid "Mirror Reference point" msgstr "Mirror Reference point" -#: flatcamGUI/PreferencesUI.py:5348 +#: flatcamGUI/PreferencesUI.py:5349 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" @@ -11345,11 +11337,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:5365 +#: flatcamGUI/PreferencesUI.py:5366 msgid "SolderPaste Tool Options" msgstr "SolderPaste Tool Options" -#: flatcamGUI/PreferencesUI.py:5371 +#: flatcamGUI/PreferencesUI.py:5372 msgid "" "A tool to create GCode for dispensing\n" "solder paste onto a PCB." @@ -11357,47 +11349,47 @@ msgstr "" "A tool to create GCode for dispensing\n" "solder paste onto a PCB." -#: flatcamGUI/PreferencesUI.py:5382 +#: flatcamGUI/PreferencesUI.py:5383 msgid "Diameters of nozzle tools, separated by ','" msgstr "Diameters of nozzle tools, separated by ','" -#: flatcamGUI/PreferencesUI.py:5390 +#: flatcamGUI/PreferencesUI.py:5391 msgid "New Nozzle Dia" msgstr "New Nozzle Dia" -#: flatcamGUI/PreferencesUI.py:5392 flatcamTools/ToolSolderPaste.py:106 +#: flatcamGUI/PreferencesUI.py:5393 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:5408 flatcamTools/ToolSolderPaste.py:182 +#: flatcamGUI/PreferencesUI.py:5409 flatcamTools/ToolSolderPaste.py:182 msgid "Z Dispense Start" msgstr "Z Dispense Start" -#: flatcamGUI/PreferencesUI.py:5410 flatcamTools/ToolSolderPaste.py:184 +#: flatcamGUI/PreferencesUI.py:5411 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:5421 flatcamTools/ToolSolderPaste.py:194 +#: flatcamGUI/PreferencesUI.py:5422 flatcamTools/ToolSolderPaste.py:194 msgid "Z Dispense" msgstr "Z Dispense" -#: flatcamGUI/PreferencesUI.py:5423 flatcamTools/ToolSolderPaste.py:196 +#: flatcamGUI/PreferencesUI.py:5424 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:5434 flatcamTools/ToolSolderPaste.py:206 +#: flatcamGUI/PreferencesUI.py:5435 flatcamTools/ToolSolderPaste.py:206 msgid "Z Dispense Stop" msgstr "Z Dispense Stop" -#: flatcamGUI/PreferencesUI.py:5436 flatcamTools/ToolSolderPaste.py:208 +#: flatcamGUI/PreferencesUI.py:5437 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:5447 flatcamTools/ToolSolderPaste.py:218 +#: flatcamGUI/PreferencesUI.py:5448 flatcamTools/ToolSolderPaste.py:218 msgid "Z Travel" msgstr "Z Travel" -#: flatcamGUI/PreferencesUI.py:5449 flatcamTools/ToolSolderPaste.py:220 +#: flatcamGUI/PreferencesUI.py:5450 flatcamTools/ToolSolderPaste.py:220 msgid "" "The height (Z) for travel between pads\n" "(without dispensing solder paste)." @@ -11405,15 +11397,15 @@ msgstr "" "The height (Z) for travel between pads\n" "(without dispensing solder paste)." -#: flatcamGUI/PreferencesUI.py:5461 flatcamTools/ToolSolderPaste.py:231 +#: flatcamGUI/PreferencesUI.py:5462 flatcamTools/ToolSolderPaste.py:231 msgid "Z Toolchange" msgstr "Z Toolchange" -#: flatcamGUI/PreferencesUI.py:5463 flatcamTools/ToolSolderPaste.py:233 +#: flatcamGUI/PreferencesUI.py:5464 flatcamTools/ToolSolderPaste.py:233 msgid "The height (Z) for tool (nozzle) change." msgstr "The height (Z) for tool (nozzle) change." -#: flatcamGUI/PreferencesUI.py:5472 flatcamTools/ToolSolderPaste.py:241 +#: flatcamGUI/PreferencesUI.py:5473 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." @@ -11421,11 +11413,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:5486 flatcamTools/ToolSolderPaste.py:254 +#: flatcamGUI/PreferencesUI.py:5487 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:5499 flatcamTools/ToolSolderPaste.py:266 +#: flatcamGUI/PreferencesUI.py:5500 flatcamTools/ToolSolderPaste.py:266 msgid "" "Feedrate (speed) while moving vertically\n" "(on Z plane)." @@ -11433,11 +11425,11 @@ msgstr "" "Feedrate (speed) while moving vertically\n" "(on Z plane)." -#: flatcamGUI/PreferencesUI.py:5511 flatcamTools/ToolSolderPaste.py:277 +#: flatcamGUI/PreferencesUI.py:5512 flatcamTools/ToolSolderPaste.py:277 msgid "Feedrate Z Dispense" msgstr "Feedrate Z Dispense" -#: flatcamGUI/PreferencesUI.py:5513 +#: flatcamGUI/PreferencesUI.py:5514 msgid "" "Feedrate (speed) while moving up vertically\n" "to Dispense position (on Z plane)." @@ -11445,11 +11437,11 @@ msgstr "" "Feedrate (speed) while moving up vertically\n" "to Dispense position (on Z plane)." -#: flatcamGUI/PreferencesUI.py:5524 flatcamTools/ToolSolderPaste.py:289 +#: flatcamGUI/PreferencesUI.py:5525 flatcamTools/ToolSolderPaste.py:289 msgid "Spindle Speed FWD" msgstr "Spindle Speed FWD" -#: flatcamGUI/PreferencesUI.py:5526 flatcamTools/ToolSolderPaste.py:291 +#: flatcamGUI/PreferencesUI.py:5527 flatcamTools/ToolSolderPaste.py:291 msgid "" "The dispenser speed while pushing solder paste\n" "through the dispenser nozzle." @@ -11457,19 +11449,19 @@ msgstr "" "The dispenser speed while pushing solder paste\n" "through the dispenser nozzle." -#: flatcamGUI/PreferencesUI.py:5538 flatcamTools/ToolSolderPaste.py:302 +#: flatcamGUI/PreferencesUI.py:5539 flatcamTools/ToolSolderPaste.py:302 msgid "Dwell FWD" msgstr "Dwell FWD" -#: flatcamGUI/PreferencesUI.py:5540 flatcamTools/ToolSolderPaste.py:304 +#: flatcamGUI/PreferencesUI.py:5541 flatcamTools/ToolSolderPaste.py:304 msgid "Pause after solder dispensing." msgstr "Pause after solder dispensing." -#: flatcamGUI/PreferencesUI.py:5550 flatcamTools/ToolSolderPaste.py:313 +#: flatcamGUI/PreferencesUI.py:5551 flatcamTools/ToolSolderPaste.py:313 msgid "Spindle Speed REV" msgstr "Spindle Speed REV" -#: flatcamGUI/PreferencesUI.py:5552 flatcamTools/ToolSolderPaste.py:315 +#: flatcamGUI/PreferencesUI.py:5553 flatcamTools/ToolSolderPaste.py:315 msgid "" "The dispenser speed while retracting solder paste\n" "through the dispenser nozzle." @@ -11477,11 +11469,11 @@ msgstr "" "The dispenser speed while retracting solder paste\n" "through the dispenser nozzle." -#: flatcamGUI/PreferencesUI.py:5564 flatcamTools/ToolSolderPaste.py:326 +#: flatcamGUI/PreferencesUI.py:5565 flatcamTools/ToolSolderPaste.py:326 msgid "Dwell REV" msgstr "Dwell REV" -#: flatcamGUI/PreferencesUI.py:5566 flatcamTools/ToolSolderPaste.py:328 +#: flatcamGUI/PreferencesUI.py:5567 flatcamTools/ToolSolderPaste.py:328 msgid "" "Pause after solder paste dispenser retracted,\n" "to allow pressure equilibrium." @@ -11489,15 +11481,15 @@ msgstr "" "Pause after solder paste dispenser retracted,\n" "to allow pressure equilibrium." -#: flatcamGUI/PreferencesUI.py:5575 flatcamTools/ToolSolderPaste.py:336 +#: flatcamGUI/PreferencesUI.py:5576 flatcamTools/ToolSolderPaste.py:336 msgid "Files that control the GCode generation." msgstr "Files that control the GCode generation." -#: flatcamGUI/PreferencesUI.py:5590 +#: flatcamGUI/PreferencesUI.py:5591 msgid "Substractor Tool Options" msgstr "Substractor Tool Options" -#: flatcamGUI/PreferencesUI.py:5596 +#: flatcamGUI/PreferencesUI.py:5597 msgid "" "A tool to substract one Gerber or Geometry object\n" "from another of the same type." @@ -11505,21 +11497,21 @@ msgstr "" "A tool to substract one Gerber or Geometry object\n" "from another of the same type." -#: flatcamGUI/PreferencesUI.py:5601 flatcamTools/ToolSub.py:149 +#: flatcamGUI/PreferencesUI.py:5602 flatcamTools/ToolSub.py:149 msgid "Close paths" msgstr "Close paths" -#: flatcamGUI/PreferencesUI.py:5602 +#: flatcamGUI/PreferencesUI.py:5603 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:5613 +#: flatcamGUI/PreferencesUI.py:5614 msgid "Check Rules Tool Options" msgstr "Check Rules Tool Options" -#: flatcamGUI/PreferencesUI.py:5618 +#: flatcamGUI/PreferencesUI.py:5619 msgid "" "A tool to check if Gerber files are within a set\n" "of Manufacturing Rules." @@ -11527,20 +11519,20 @@ msgstr "" "A tool to check if Gerber files are within a set\n" "of Manufacturing Rules." -#: flatcamGUI/PreferencesUI.py:5628 flatcamTools/ToolRulesCheck.py:256 +#: flatcamGUI/PreferencesUI.py:5629 flatcamTools/ToolRulesCheck.py:256 #: flatcamTools/ToolRulesCheck.py:920 msgid "Trace Size" msgstr "Trace Size" -#: flatcamGUI/PreferencesUI.py:5630 flatcamTools/ToolRulesCheck.py:258 +#: flatcamGUI/PreferencesUI.py:5631 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: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 +#: flatcamGUI/PreferencesUI.py:5641 flatcamGUI/PreferencesUI.py:5661 +#: flatcamGUI/PreferencesUI.py:5681 flatcamGUI/PreferencesUI.py:5701 +#: flatcamGUI/PreferencesUI.py:5721 flatcamGUI/PreferencesUI.py:5741 +#: flatcamGUI/PreferencesUI.py:5761 flatcamGUI/PreferencesUI.py:5781 +#: flatcamGUI/PreferencesUI.py:5803 flatcamGUI/PreferencesUI.py:5823 #: flatcamTools/ToolRulesCheck.py:268 flatcamTools/ToolRulesCheck.py:290 #: flatcamTools/ToolRulesCheck.py:313 flatcamTools/ToolRulesCheck.py:336 #: flatcamTools/ToolRulesCheck.py:359 flatcamTools/ToolRulesCheck.py:382 @@ -11549,16 +11541,16 @@ msgstr "This checks if the minimum size for traces is met." msgid "Min value" msgstr "Min value" -#: flatcamGUI/PreferencesUI.py:5642 flatcamTools/ToolRulesCheck.py:270 +#: flatcamGUI/PreferencesUI.py:5643 flatcamTools/ToolRulesCheck.py:270 msgid "Minimum acceptable trace size." msgstr "Minimum acceptable trace size." -#: flatcamGUI/PreferencesUI.py:5647 flatcamTools/ToolRulesCheck.py:277 +#: flatcamGUI/PreferencesUI.py:5648 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:5649 flatcamTools/ToolRulesCheck.py:279 +#: flatcamGUI/PreferencesUI.py:5650 flatcamTools/ToolRulesCheck.py:279 msgid "" "This checks if the minimum clearance between copper\n" "features is met." @@ -11566,23 +11558,23 @@ msgstr "" "This checks if the minimum clearance between copper\n" "features is met." -#: 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 +#: flatcamGUI/PreferencesUI.py:5663 flatcamGUI/PreferencesUI.py:5683 +#: flatcamGUI/PreferencesUI.py:5703 flatcamGUI/PreferencesUI.py:5723 +#: flatcamGUI/PreferencesUI.py:5743 flatcamGUI/PreferencesUI.py:5763 +#: flatcamGUI/PreferencesUI.py:5825 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:5667 flatcamTools/ToolRulesCheck.py:300 +#: flatcamGUI/PreferencesUI.py:5668 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:5669 flatcamTools/ToolRulesCheck.py:302 +#: flatcamGUI/PreferencesUI.py:5670 flatcamTools/ToolRulesCheck.py:302 msgid "" "This checks if the minimum clearance between copper\n" "features and the outline is met." @@ -11590,11 +11582,11 @@ msgstr "" "This checks if the minimum clearance between copper\n" "features and the outline is met." -#: flatcamGUI/PreferencesUI.py:5687 flatcamTools/ToolRulesCheck.py:323 +#: flatcamGUI/PreferencesUI.py:5688 flatcamTools/ToolRulesCheck.py:323 msgid "Silk to Silk Clearance" msgstr "Silk to Silk Clearance" -#: flatcamGUI/PreferencesUI.py:5689 flatcamTools/ToolRulesCheck.py:325 +#: flatcamGUI/PreferencesUI.py:5690 flatcamTools/ToolRulesCheck.py:325 msgid "" "This checks if the minimum clearance between silkscreen\n" "features and silkscreen features is met." @@ -11602,13 +11594,13 @@ msgstr "" "This checks if the minimum clearance between silkscreen\n" "features and silkscreen features is met." -#: flatcamGUI/PreferencesUI.py:5707 flatcamTools/ToolRulesCheck.py:346 +#: flatcamGUI/PreferencesUI.py:5708 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:5709 flatcamTools/ToolRulesCheck.py:348 +#: flatcamGUI/PreferencesUI.py:5710 flatcamTools/ToolRulesCheck.py:348 msgid "" "This checks if the minimum clearance between silkscreen\n" "features and soldermask features is met." @@ -11616,13 +11608,13 @@ msgstr "" "This checks if the minimum clearance between silkscreen\n" "features and soldermask features is met." -#: flatcamGUI/PreferencesUI.py:5727 flatcamTools/ToolRulesCheck.py:369 +#: flatcamGUI/PreferencesUI.py:5728 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:5729 flatcamTools/ToolRulesCheck.py:371 +#: flatcamGUI/PreferencesUI.py:5730 flatcamTools/ToolRulesCheck.py:371 msgid "" "This checks if the minimum clearance between silk\n" "features and the outline is met." @@ -11630,12 +11622,12 @@ msgstr "" "This checks if the minimum clearance between silk\n" "features and the outline is met." -#: flatcamGUI/PreferencesUI.py:5747 flatcamTools/ToolRulesCheck.py:392 +#: flatcamGUI/PreferencesUI.py:5748 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:5749 flatcamTools/ToolRulesCheck.py:394 +#: flatcamGUI/PreferencesUI.py:5750 flatcamTools/ToolRulesCheck.py:394 msgid "" "This checks if the minimum clearance between soldermask\n" "features and soldermask features is met." @@ -11643,13 +11635,13 @@ msgstr "" "This checks if the minimum clearance between soldermask\n" "features and soldermask features is met." -#: flatcamGUI/PreferencesUI.py:5767 flatcamTools/ToolRulesCheck.py:415 +#: flatcamGUI/PreferencesUI.py:5768 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:5769 flatcamTools/ToolRulesCheck.py:417 +#: flatcamGUI/PreferencesUI.py:5770 flatcamTools/ToolRulesCheck.py:417 msgid "" "This checks if the minimum copper ring left by drilling\n" "a hole into a pad is met." @@ -11657,16 +11649,16 @@ msgstr "" "This checks if the minimum copper ring left by drilling\n" "a hole into a pad is met." -#: flatcamGUI/PreferencesUI.py:5782 flatcamTools/ToolRulesCheck.py:430 +#: flatcamGUI/PreferencesUI.py:5783 flatcamTools/ToolRulesCheck.py:430 msgid "Minimum acceptable ring value." msgstr "Minimum acceptable ring value." -#: flatcamGUI/PreferencesUI.py:5789 flatcamTools/ToolRulesCheck.py:440 +#: flatcamGUI/PreferencesUI.py:5790 flatcamTools/ToolRulesCheck.py:440 #: flatcamTools/ToolRulesCheck.py:864 msgid "Hole to Hole Clearance" msgstr "Hole to Hole Clearance" -#: flatcamGUI/PreferencesUI.py:5791 flatcamTools/ToolRulesCheck.py:442 +#: flatcamGUI/PreferencesUI.py:5792 flatcamTools/ToolRulesCheck.py:442 msgid "" "This checks if the minimum clearance between a drill hole\n" "and another drill hole is met." @@ -11674,16 +11666,16 @@ msgstr "" "This checks if the minimum clearance between a drill hole\n" "and another drill hole is met." -#: flatcamGUI/PreferencesUI.py:5804 flatcamTools/ToolRulesCheck.py:478 +#: flatcamGUI/PreferencesUI.py:5805 flatcamTools/ToolRulesCheck.py:478 msgid "Minimum acceptable drill size." msgstr "Minimum acceptable drill size." -#: flatcamGUI/PreferencesUI.py:5809 flatcamTools/ToolRulesCheck.py:463 +#: flatcamGUI/PreferencesUI.py:5810 flatcamTools/ToolRulesCheck.py:463 #: flatcamTools/ToolRulesCheck.py:838 msgid "Hole Size" msgstr "Hole Size" -#: flatcamGUI/PreferencesUI.py:5811 flatcamTools/ToolRulesCheck.py:465 +#: flatcamGUI/PreferencesUI.py:5812 flatcamTools/ToolRulesCheck.py:465 msgid "" "This checks if the drill holes\n" "sizes are above the threshold." @@ -11691,11 +11683,11 @@ msgstr "" "This checks if the drill holes\n" "sizes are above the threshold." -#: flatcamGUI/PreferencesUI.py:5836 +#: flatcamGUI/PreferencesUI.py:5837 msgid "Optimal Tool Options" msgstr "Optimal Tool Options" -#: flatcamGUI/PreferencesUI.py:5842 +#: flatcamGUI/PreferencesUI.py:5843 msgid "" "A tool to find the minimum distance between\n" "every two Gerber geometric elements" @@ -11703,19 +11695,19 @@ msgstr "" "A tool to find the minimum distance between\n" "every two Gerber geometric elements" -#: flatcamGUI/PreferencesUI.py:5857 flatcamTools/ToolOptimal.py:78 +#: flatcamGUI/PreferencesUI.py:5858 flatcamTools/ToolOptimal.py:78 msgid "Precision" msgstr "Precision" -#: flatcamGUI/PreferencesUI.py:5859 +#: flatcamGUI/PreferencesUI.py:5860 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:5873 +#: flatcamGUI/PreferencesUI.py:5874 msgid "QRCode Tool Options" msgstr "QRCode Tool Options" -#: flatcamGUI/PreferencesUI.py:5879 +#: flatcamGUI/PreferencesUI.py:5880 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." @@ -11723,11 +11715,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:5891 flatcamTools/ToolQRCode.py:99 +#: flatcamGUI/PreferencesUI.py:5892 flatcamTools/ToolQRCode.py:99 msgid "Version" msgstr "Version" -#: flatcamGUI/PreferencesUI.py:5893 flatcamTools/ToolQRCode.py:101 +#: flatcamGUI/PreferencesUI.py:5894 flatcamTools/ToolQRCode.py:101 msgid "" "QRCode version can have values from 1 (21x21 boxes)\n" "to 40 (177x177 boxes)." @@ -11735,11 +11727,11 @@ msgstr "" "QRCode version can have values from 1 (21x21 boxes)\n" "to 40 (177x177 boxes)." -#: flatcamGUI/PreferencesUI.py:5904 flatcamTools/ToolQRCode.py:112 +#: flatcamGUI/PreferencesUI.py:5905 flatcamTools/ToolQRCode.py:112 msgid "Error correction" msgstr "Error correction" -#: flatcamGUI/PreferencesUI.py:5906 flatcamGUI/PreferencesUI.py:5917 +#: flatcamGUI/PreferencesUI.py:5907 flatcamGUI/PreferencesUI.py:5918 #: flatcamTools/ToolQRCode.py:114 flatcamTools/ToolQRCode.py:125 #, python-format msgid "" @@ -11755,11 +11747,11 @@ msgstr "" "Q = maximum 25%% errors can be corrected\n" "H = maximum 30%% errors can be corrected." -#: flatcamGUI/PreferencesUI.py:5927 flatcamTools/ToolQRCode.py:135 +#: flatcamGUI/PreferencesUI.py:5928 flatcamTools/ToolQRCode.py:135 msgid "Box Size" msgstr "Box Size" -#: flatcamGUI/PreferencesUI.py:5929 flatcamTools/ToolQRCode.py:137 +#: flatcamGUI/PreferencesUI.py:5930 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." @@ -11767,11 +11759,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:5940 flatcamTools/ToolQRCode.py:148 +#: flatcamGUI/PreferencesUI.py:5941 flatcamTools/ToolQRCode.py:148 msgid "Border Size" msgstr "Border Size" -#: flatcamGUI/PreferencesUI.py:5942 flatcamTools/ToolQRCode.py:150 +#: flatcamGUI/PreferencesUI.py:5943 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." @@ -11779,23 +11771,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:5953 flatcamTools/ToolQRCode.py:162 +#: flatcamGUI/PreferencesUI.py:5954 flatcamTools/ToolQRCode.py:162 msgid "QRCode Data" msgstr "QRCode Data" -#: flatcamGUI/PreferencesUI.py:5955 flatcamTools/ToolQRCode.py:164 +#: flatcamGUI/PreferencesUI.py:5956 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:5959 flatcamTools/ToolQRCode.py:168 +#: flatcamGUI/PreferencesUI.py:5960 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:5965 flatcamTools/ToolQRCode.py:174 +#: flatcamGUI/PreferencesUI.py:5966 flatcamTools/ToolQRCode.py:174 msgid "Polarity" msgstr "Polarity" -#: flatcamGUI/PreferencesUI.py:5967 flatcamTools/ToolQRCode.py:176 +#: flatcamGUI/PreferencesUI.py:5968 flatcamTools/ToolQRCode.py:176 msgid "" "Choose the polarity of the QRCode.\n" "It can be drawn in a negative way (squares are clear)\n" @@ -11805,17 +11797,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:5971 flatcamTools/ToolFilm.py:296 +#: flatcamGUI/PreferencesUI.py:5972 flatcamTools/ToolFilm.py:296 #: flatcamTools/ToolQRCode.py:180 msgid "Negative" msgstr "Negative" -#: flatcamGUI/PreferencesUI.py:5972 flatcamTools/ToolFilm.py:295 +#: flatcamGUI/PreferencesUI.py:5973 flatcamTools/ToolFilm.py:295 #: flatcamTools/ToolQRCode.py:181 msgid "Positive" msgstr "Positive" -#: flatcamGUI/PreferencesUI.py:5974 flatcamTools/ToolQRCode.py:183 +#: flatcamGUI/PreferencesUI.py:5975 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" @@ -11827,7 +11819,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:5985 flatcamGUI/PreferencesUI.py:5991 +#: flatcamGUI/PreferencesUI.py:5986 flatcamGUI/PreferencesUI.py:5992 #: flatcamTools/ToolQRCode.py:194 flatcamTools/ToolQRCode.py:200 msgid "" "The bounding box, meaning the empty space that surrounds\n" @@ -11836,31 +11828,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:5988 flatcamTools/ToolQRCode.py:197 +#: flatcamGUI/PreferencesUI.py:5989 flatcamTools/ToolQRCode.py:197 msgid "Rounded" msgstr "Rounded" -#: flatcamGUI/PreferencesUI.py:5998 flatcamTools/ToolQRCode.py:228 +#: flatcamGUI/PreferencesUI.py:5999 flatcamTools/ToolQRCode.py:228 msgid "Fill Color" msgstr "Fill Color" -#: flatcamGUI/PreferencesUI.py:6000 flatcamTools/ToolQRCode.py:230 +#: flatcamGUI/PreferencesUI.py:6001 flatcamTools/ToolQRCode.py:230 msgid "Set the QRCode fill color (squares color)." msgstr "Set the QRCode fill color (squares color)." -#: flatcamGUI/PreferencesUI.py:6019 flatcamTools/ToolQRCode.py:252 +#: flatcamGUI/PreferencesUI.py:6020 flatcamTools/ToolQRCode.py:252 msgid "Back Color" msgstr "Back Color" -#: flatcamGUI/PreferencesUI.py:6021 flatcamTools/ToolQRCode.py:254 +#: flatcamGUI/PreferencesUI.py:6022 flatcamTools/ToolQRCode.py:254 msgid "Set the QRCode background color." msgstr "Set the QRCode background color." -#: flatcamGUI/PreferencesUI.py:6061 +#: flatcamGUI/PreferencesUI.py:6062 msgid "Copper Thieving Tool Options" msgstr "Copper Thieving Tool Options" -#: flatcamGUI/PreferencesUI.py:6073 +#: flatcamGUI/PreferencesUI.py:6074 msgid "" "A tool to generate a Copper Thieving that can be added\n" "to a selected Gerber file." @@ -11868,16 +11860,16 @@ msgstr "" "A tool to generate a Copper Thieving that can be added\n" "to a selected Gerber file." -#: flatcamGUI/PreferencesUI.py:6081 +#: flatcamGUI/PreferencesUI.py:6082 msgid "Number of steps (lines) used to interpolate circles." msgstr "Number of steps (lines) used to interpolate circles." -#: flatcamGUI/PreferencesUI.py:6091 flatcamGUI/PreferencesUI.py:6295 +#: flatcamGUI/PreferencesUI.py:6092 flatcamGUI/PreferencesUI.py:6296 #: flatcamTools/ToolCopperThieving.py:96 flatcamTools/ToolCopperThieving.py:429 msgid "Clearance" msgstr "Clearance" -#: flatcamGUI/PreferencesUI.py:6093 +#: flatcamGUI/PreferencesUI.py:6094 msgid "" "This set the distance between the copper Thieving components\n" "(the polygon fill may be split in multiple polygons)\n" @@ -11887,29 +11879,22 @@ msgstr "" "(the polygon fill may be split in multiple polygons)\n" "and the copper traces in the Gerber file." -#: flatcamGUI/PreferencesUI.py:6121 flatcamTools/ToolCopperThieving.py:126 +#: flatcamGUI/PreferencesUI.py:6122 flatcamTools/ToolCopperThieving.py:126 #: flatcamTools/ToolNonCopperClear.py:436 flatcamTools/ToolPaint.py:314 msgid "Area Selection" msgstr "Area Selection" -#: flatcamGUI/PreferencesUI.py:6122 flatcamTools/ToolCopperThieving.py:127 +#: flatcamGUI/PreferencesUI.py:6123 flatcamTools/ToolCopperThieving.py:127 #: flatcamTools/ToolNonCopperClear.py:437 flatcamTools/ToolPaint.py:316 msgid "Reference Object" msgstr "Reference Object" -#: flatcamGUI/PreferencesUI.py:6124 flatcamTools/ToolCopperThieving.py:129 +#: flatcamGUI/PreferencesUI.py:6125 flatcamTools/ToolCopperThieving.py:129 #: flatcamTools/ToolNonCopperClear.py:439 msgid "Reference:" msgstr "Reference:" -#: 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 filled.\n" -#| "- 'Reference Object' - will do copper thieving within the area specified " -#| "by another object." +#: flatcamGUI/PreferencesUI.py:6127 msgid "" "- 'Itself' - the copper Thieving extent is based on the object extent.\n" "- 'Area Selection' - left mouse click to start selection of the area to be " @@ -11923,20 +11908,20 @@ msgstr "" "- 'Reference Object' - will do copper thieving within the area specified by " "another object." -#: flatcamGUI/PreferencesUI.py:6135 flatcamTools/ToolCopperThieving.py:170 +#: flatcamGUI/PreferencesUI.py:6136 flatcamTools/ToolCopperThieving.py:170 msgid "Rectangular" msgstr "Rectangular" -#: flatcamGUI/PreferencesUI.py:6136 flatcamTools/ToolCopperThieving.py:171 +#: flatcamGUI/PreferencesUI.py:6137 flatcamTools/ToolCopperThieving.py:171 msgid "Minimal" msgstr "Minimal" -#: flatcamGUI/PreferencesUI.py:6138 flatcamTools/ToolCopperThieving.py:173 +#: flatcamGUI/PreferencesUI.py:6139 flatcamTools/ToolCopperThieving.py:173 #: flatcamTools/ToolFilm.py:113 msgid "Box Type:" msgstr "Box Type:" -#: flatcamGUI/PreferencesUI.py:6140 flatcamTools/ToolCopperThieving.py:175 +#: flatcamGUI/PreferencesUI.py:6141 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." @@ -11944,23 +11929,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:6154 flatcamTools/ToolCopperThieving.py:191 +#: flatcamGUI/PreferencesUI.py:6155 flatcamTools/ToolCopperThieving.py:191 msgid "Dots Grid" msgstr "Dots Grid" -#: flatcamGUI/PreferencesUI.py:6155 flatcamTools/ToolCopperThieving.py:192 +#: flatcamGUI/PreferencesUI.py:6156 flatcamTools/ToolCopperThieving.py:192 msgid "Squares Grid" msgstr "Squares Grid" -#: flatcamGUI/PreferencesUI.py:6156 flatcamTools/ToolCopperThieving.py:193 +#: flatcamGUI/PreferencesUI.py:6157 flatcamTools/ToolCopperThieving.py:193 msgid "Lines Grid" msgstr "Lines Grid" -#: flatcamGUI/PreferencesUI.py:6158 flatcamTools/ToolCopperThieving.py:195 +#: flatcamGUI/PreferencesUI.py:6159 flatcamTools/ToolCopperThieving.py:195 msgid "Fill Type:" msgstr "Fill Type:" -#: flatcamGUI/PreferencesUI.py:6160 flatcamTools/ToolCopperThieving.py:197 +#: flatcamGUI/PreferencesUI.py:6161 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" @@ -11972,54 +11957,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:6168 flatcamTools/ToolCopperThieving.py:216 +#: flatcamGUI/PreferencesUI.py:6169 flatcamTools/ToolCopperThieving.py:216 msgid "Dots Grid Parameters" msgstr "Dots Grid Parameters" -#: flatcamGUI/PreferencesUI.py:6174 flatcamTools/ToolCopperThieving.py:222 +#: flatcamGUI/PreferencesUI.py:6175 flatcamTools/ToolCopperThieving.py:222 msgid "Dot diameter in Dots Grid." msgstr "Dot diameter in Dots Grid." -#: flatcamGUI/PreferencesUI.py:6185 flatcamGUI/PreferencesUI.py:6214 -#: flatcamGUI/PreferencesUI.py:6243 flatcamTools/ToolCopperThieving.py:233 +#: flatcamGUI/PreferencesUI.py:6186 flatcamGUI/PreferencesUI.py:6215 +#: flatcamGUI/PreferencesUI.py:6244 flatcamTools/ToolCopperThieving.py:233 #: flatcamTools/ToolCopperThieving.py:273 #: flatcamTools/ToolCopperThieving.py:313 msgid "Spacing" msgstr "Spacing" -#: flatcamGUI/PreferencesUI.py:6187 flatcamTools/ToolCopperThieving.py:235 +#: flatcamGUI/PreferencesUI.py:6188 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:6197 flatcamTools/ToolCopperThieving.py:256 +#: flatcamGUI/PreferencesUI.py:6198 flatcamTools/ToolCopperThieving.py:256 msgid "Squares Grid Parameters" msgstr "Squares Grid Parameters" -#: flatcamGUI/PreferencesUI.py:6203 flatcamTools/ToolCopperThieving.py:262 +#: flatcamGUI/PreferencesUI.py:6204 flatcamTools/ToolCopperThieving.py:262 msgid "Square side size in Squares Grid." msgstr "Square side size in Squares Grid." -#: flatcamGUI/PreferencesUI.py:6216 flatcamTools/ToolCopperThieving.py:275 +#: flatcamGUI/PreferencesUI.py:6217 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:6226 flatcamTools/ToolCopperThieving.py:296 +#: flatcamGUI/PreferencesUI.py:6227 flatcamTools/ToolCopperThieving.py:296 msgid "Lines Grid Parameters" msgstr "Lines Grid Parameters" -#: flatcamGUI/PreferencesUI.py:6232 flatcamTools/ToolCopperThieving.py:302 +#: flatcamGUI/PreferencesUI.py:6233 flatcamTools/ToolCopperThieving.py:302 msgid "Line thickness size in Lines Grid." msgstr "Line thickness size in Lines Grid." -#: flatcamGUI/PreferencesUI.py:6245 flatcamTools/ToolCopperThieving.py:315 +#: flatcamGUI/PreferencesUI.py:6246 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:6255 flatcamTools/ToolCopperThieving.py:353 +#: flatcamGUI/PreferencesUI.py:6256 flatcamTools/ToolCopperThieving.py:353 msgid "Robber Bar Parameters" msgstr "Robber Bar Parameters" -#: flatcamGUI/PreferencesUI.py:6257 flatcamTools/ToolCopperThieving.py:355 +#: flatcamGUI/PreferencesUI.py:6258 flatcamTools/ToolCopperThieving.py:355 msgid "" "Parameters used for the robber bar.\n" "Robber bar = copper border to help in pattern hole plating." @@ -12027,27 +12012,27 @@ msgstr "" "Parameters used for the robber bar.\n" "Robber bar = copper border to help in pattern hole plating." -#: flatcamGUI/PreferencesUI.py:6265 flatcamTools/ToolCopperThieving.py:363 +#: flatcamGUI/PreferencesUI.py:6266 flatcamTools/ToolCopperThieving.py:363 msgid "Bounding box margin for robber bar." msgstr "Bounding box margin for robber bar." -#: flatcamGUI/PreferencesUI.py:6276 flatcamTools/ToolCopperThieving.py:374 +#: flatcamGUI/PreferencesUI.py:6277 flatcamTools/ToolCopperThieving.py:374 msgid "Thickness" msgstr "Thickness" -#: flatcamGUI/PreferencesUI.py:6278 flatcamTools/ToolCopperThieving.py:376 +#: flatcamGUI/PreferencesUI.py:6279 flatcamTools/ToolCopperThieving.py:376 msgid "The robber bar thickness." msgstr "The robber bar thickness." -#: flatcamGUI/PreferencesUI.py:6288 flatcamTools/ToolCopperThieving.py:407 +#: flatcamGUI/PreferencesUI.py:6289 flatcamTools/ToolCopperThieving.py:407 msgid "Pattern Plating Mask" msgstr "Pattern Plating Mask" -#: flatcamGUI/PreferencesUI.py:6290 flatcamTools/ToolCopperThieving.py:409 +#: flatcamGUI/PreferencesUI.py:6291 flatcamTools/ToolCopperThieving.py:409 msgid "Generate a mask for pattern plating." msgstr "Generate a mask for pattern plating." -#: flatcamGUI/PreferencesUI.py:6297 flatcamTools/ToolCopperThieving.py:431 +#: flatcamGUI/PreferencesUI.py:6298 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." @@ -12055,16 +12040,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:6316 +#: flatcamGUI/PreferencesUI.py:6317 msgid "Fiducials Tool Options" msgstr "Fiducials Tool Options" -#: flatcamGUI/PreferencesUI.py:6327 flatcamGUI/PreferencesUI.py:6443 +#: flatcamGUI/PreferencesUI.py:6328 flatcamGUI/PreferencesUI.py:6444 #: flatcamTools/ToolCopperThieving.py:91 flatcamTools/ToolFiducials.py:151 msgid "Parameters used for this tool." msgstr "Parameters used for this tool." -#: flatcamGUI/PreferencesUI.py:6334 flatcamTools/ToolFiducials.py:158 +#: flatcamGUI/PreferencesUI.py:6335 flatcamTools/ToolFiducials.py:158 msgid "" "This set the fiducial diameter if fiducial type is circular,\n" "otherwise is the size of the fiducial.\n" @@ -12074,23 +12059,19 @@ msgstr "" "otherwise is the size of the fiducial.\n" "The soldermask opening is double than that." -#: flatcamGUI/PreferencesUI.py:6362 flatcamTools/ToolFiducials.py:186 +#: flatcamGUI/PreferencesUI.py:6363 flatcamTools/ToolFiducials.py:186 msgid "Auto" msgstr "Auto" -#: flatcamGUI/PreferencesUI.py:6363 flatcamTools/ToolFiducials.py:187 +#: flatcamGUI/PreferencesUI.py:6364 flatcamTools/ToolFiducials.py:187 msgid "Manual" msgstr "Manual" -#: flatcamGUI/PreferencesUI.py:6365 flatcamTools/ToolFiducials.py:189 +#: flatcamGUI/PreferencesUI.py:6366 flatcamTools/ToolFiducials.py:189 msgid "Mode:" msgstr "Mode:" -#: flatcamGUI/PreferencesUI.py:6367 -#| msgid "" -#| "- 'Auto' - automatic placement of fiducials in the corners of the " -#| "bounding box.\n" -#| " - 'Manual' - manual placement of fiducials." +#: flatcamGUI/PreferencesUI.py:6368 msgid "" "- 'Auto' - automatic placement of fiducials in the corners of the bounding " "box.\n" @@ -12100,25 +12081,19 @@ msgstr "" "box.\n" "- 'Manual' - manual placement of fiducials." -#: flatcamGUI/PreferencesUI.py:6375 flatcamTools/ToolFiducials.py:199 +#: flatcamGUI/PreferencesUI.py:6376 flatcamTools/ToolFiducials.py:199 msgid "Up" msgstr "Up" -#: flatcamGUI/PreferencesUI.py:6376 flatcamTools/ToolFiducials.py:200 +#: flatcamGUI/PreferencesUI.py:6377 flatcamTools/ToolFiducials.py:200 msgid "Down" msgstr "Down" -#: flatcamGUI/PreferencesUI.py:6379 flatcamTools/ToolFiducials.py:203 +#: flatcamGUI/PreferencesUI.py:6380 flatcamTools/ToolFiducials.py:203 msgid "Second fiducial" msgstr "Second fiducial" -#: 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" -#| " - '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:6382 flatcamTools/ToolFiducials.py:205 msgid "" "The position for the second fiducial.\n" "- 'Up' - the order is: bottom-left, top-left, top-right.\n" @@ -12130,19 +12105,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:6397 flatcamTools/ToolFiducials.py:221 +#: flatcamGUI/PreferencesUI.py:6398 flatcamTools/ToolFiducials.py:221 msgid "Cross" msgstr "Cross" -#: flatcamGUI/PreferencesUI.py:6398 flatcamTools/ToolFiducials.py:222 +#: flatcamGUI/PreferencesUI.py:6399 flatcamTools/ToolFiducials.py:222 msgid "Chess" msgstr "Chess" -#: flatcamGUI/PreferencesUI.py:6401 flatcamTools/ToolFiducials.py:224 +#: flatcamGUI/PreferencesUI.py:6402 flatcamTools/ToolFiducials.py:224 msgid "Fiducial Type" msgstr "Fiducial Type" -#: flatcamGUI/PreferencesUI.py:6403 flatcamTools/ToolFiducials.py:226 +#: flatcamGUI/PreferencesUI.py:6404 flatcamTools/ToolFiducials.py:226 msgid "" "The type of fiducial.\n" "- 'Circular' - this is the regular fiducial.\n" @@ -12154,19 +12129,19 @@ msgstr "" "- 'Cross' - cross lines fiducial.\n" "- 'Chess' - chess pattern fiducial." -#: flatcamGUI/PreferencesUI.py:6412 flatcamTools/ToolFiducials.py:235 +#: flatcamGUI/PreferencesUI.py:6413 flatcamTools/ToolFiducials.py:235 msgid "Line thickness" msgstr "Line thickness" -#: flatcamGUI/PreferencesUI.py:6432 +#: flatcamGUI/PreferencesUI.py:6433 msgid "Calibration Tool Options" msgstr "Calibration Tool Options" -#: flatcamGUI/PreferencesUI.py:6448 flatcamTools/ToolCalibration.py:181 +#: flatcamGUI/PreferencesUI.py:6449 flatcamTools/ToolCalibration.py:181 msgid "Source Type" msgstr "Source Type" -#: flatcamGUI/PreferencesUI.py:6449 flatcamTools/ToolCalibration.py:182 +#: flatcamGUI/PreferencesUI.py:6450 flatcamTools/ToolCalibration.py:182 msgid "" "The source of calibration points.\n" "It can be:\n" @@ -12178,27 +12153,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:6454 flatcamTools/ToolCalibration.py:187 +#: flatcamGUI/PreferencesUI.py:6455 flatcamTools/ToolCalibration.py:187 msgid "Free" msgstr "Free" -#: flatcamGUI/PreferencesUI.py:6468 flatcamTools/ToolCalibration.py:76 +#: flatcamGUI/PreferencesUI.py:6469 flatcamTools/ToolCalibration.py:76 msgid "Height (Z) for travelling between the points." msgstr "Height (Z) for travelling between the points." -#: flatcamGUI/PreferencesUI.py:6480 flatcamTools/ToolCalibration.py:88 +#: flatcamGUI/PreferencesUI.py:6481 flatcamTools/ToolCalibration.py:88 msgid "Verification Z" msgstr "Verification Z" -#: flatcamGUI/PreferencesUI.py:6482 flatcamTools/ToolCalibration.py:90 +#: flatcamGUI/PreferencesUI.py:6483 flatcamTools/ToolCalibration.py:90 msgid "Height (Z) for checking the point." msgstr "Height (Z) for checking the point." -#: flatcamGUI/PreferencesUI.py:6494 flatcamTools/ToolCalibration.py:102 +#: flatcamGUI/PreferencesUI.py:6495 flatcamTools/ToolCalibration.py:102 msgid "Zero Z tool" msgstr "Zero Z tool" -#: flatcamGUI/PreferencesUI.py:6496 flatcamTools/ToolCalibration.py:104 +#: flatcamGUI/PreferencesUI.py:6497 flatcamTools/ToolCalibration.py:104 msgid "" "Include a sequence to zero the height (Z)\n" "of the verification tool." @@ -12206,11 +12181,11 @@ msgstr "" "Include a sequence to zero the height (Z)\n" "of the verification tool." -#: flatcamGUI/PreferencesUI.py:6505 flatcamTools/ToolCalibration.py:113 +#: flatcamGUI/PreferencesUI.py:6506 flatcamTools/ToolCalibration.py:113 msgid "Height (Z) for mounting the verification probe." msgstr "Height (Z) for mounting the verification probe." -#: flatcamGUI/PreferencesUI.py:6519 flatcamTools/ToolCalibration.py:127 +#: flatcamGUI/PreferencesUI.py:6520 flatcamTools/ToolCalibration.py:127 msgid "" "Toolchange X,Y position.\n" "If no value is entered then the current\n" @@ -12220,11 +12195,11 @@ msgstr "" "If no value is entered then the current\n" "(x, y) point will be used," -#: flatcamGUI/PreferencesUI.py:6530 flatcamTools/ToolCalibration.py:153 +#: flatcamGUI/PreferencesUI.py:6531 flatcamTools/ToolCalibration.py:153 msgid "Second point" msgstr "Second point" -#: flatcamGUI/PreferencesUI.py:6532 flatcamTools/ToolCalibration.py:155 +#: flatcamGUI/PreferencesUI.py:6533 flatcamTools/ToolCalibration.py:155 msgid "" "Second point in the Gcode verification can be:\n" "- top-left -> the user will align the PCB vertically\n" @@ -12234,45 +12209,45 @@ msgstr "" "- 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 +#: flatcamGUI/PreferencesUI.py:6537 flatcamTools/ToolCalibration.py:159 msgid "Top-Left" msgstr "Top-Left" -#: flatcamGUI/PreferencesUI.py:6537 flatcamTools/ToolCalibration.py:160 +#: flatcamGUI/PreferencesUI.py:6538 flatcamTools/ToolCalibration.py:160 msgid "Bottom-Right" msgstr "Bottom-Right" -#: flatcamGUI/PreferencesUI.py:6551 +#: flatcamGUI/PreferencesUI.py:6552 msgid "Excellon File associations" msgstr "Excellon File associations" -#: flatcamGUI/PreferencesUI.py:6564 flatcamGUI/PreferencesUI.py:6637 -#: flatcamGUI/PreferencesUI.py:6707 flatcamGUI/PreferencesUI.py:6777 +#: flatcamGUI/PreferencesUI.py:6565 flatcamGUI/PreferencesUI.py:6638 +#: flatcamGUI/PreferencesUI.py:6708 flatcamGUI/PreferencesUI.py:6778 msgid "Restore" msgstr "Restore" -#: flatcamGUI/PreferencesUI.py:6565 flatcamGUI/PreferencesUI.py:6638 -#: flatcamGUI/PreferencesUI.py:6708 +#: flatcamGUI/PreferencesUI.py:6566 flatcamGUI/PreferencesUI.py:6639 +#: flatcamGUI/PreferencesUI.py:6709 msgid "Restore the extension list to the default state." msgstr "Restore the extension list to the default state." -#: flatcamGUI/PreferencesUI.py:6566 flatcamGUI/PreferencesUI.py:6639 -#: flatcamGUI/PreferencesUI.py:6709 flatcamGUI/PreferencesUI.py:6779 +#: flatcamGUI/PreferencesUI.py:6567 flatcamGUI/PreferencesUI.py:6640 +#: flatcamGUI/PreferencesUI.py:6710 flatcamGUI/PreferencesUI.py:6780 msgid "Delete All" msgstr "Delete All" -#: flatcamGUI/PreferencesUI.py:6567 flatcamGUI/PreferencesUI.py:6640 -#: flatcamGUI/PreferencesUI.py:6710 +#: flatcamGUI/PreferencesUI.py:6568 flatcamGUI/PreferencesUI.py:6641 +#: flatcamGUI/PreferencesUI.py:6711 msgid "Delete all extensions from the list." msgstr "Delete all extensions from the list." -#: flatcamGUI/PreferencesUI.py:6575 flatcamGUI/PreferencesUI.py:6648 -#: flatcamGUI/PreferencesUI.py:6718 +#: flatcamGUI/PreferencesUI.py:6576 flatcamGUI/PreferencesUI.py:6649 +#: flatcamGUI/PreferencesUI.py:6719 msgid "Extensions list" msgstr "Extensions list" -#: flatcamGUI/PreferencesUI.py:6577 flatcamGUI/PreferencesUI.py:6650 -#: flatcamGUI/PreferencesUI.py:6720 +#: flatcamGUI/PreferencesUI.py:6578 flatcamGUI/PreferencesUI.py:6651 +#: flatcamGUI/PreferencesUI.py:6721 msgid "" "List of file extensions to be\n" "associated with FlatCAM." @@ -12280,43 +12255,43 @@ msgstr "" "List of file extensions to be\n" "associated with FlatCAM." -#: flatcamGUI/PreferencesUI.py:6597 flatcamGUI/PreferencesUI.py:6670 -#: flatcamGUI/PreferencesUI.py:6739 flatcamGUI/PreferencesUI.py:6811 +#: flatcamGUI/PreferencesUI.py:6598 flatcamGUI/PreferencesUI.py:6671 +#: flatcamGUI/PreferencesUI.py:6740 flatcamGUI/PreferencesUI.py:6812 msgid "Extension" msgstr "Extension" -#: flatcamGUI/PreferencesUI.py:6598 flatcamGUI/PreferencesUI.py:6671 -#: flatcamGUI/PreferencesUI.py:6740 +#: flatcamGUI/PreferencesUI.py:6599 flatcamGUI/PreferencesUI.py:6672 +#: flatcamGUI/PreferencesUI.py:6741 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:6606 flatcamGUI/PreferencesUI.py:6679 -#: flatcamGUI/PreferencesUI.py:6748 +#: flatcamGUI/PreferencesUI.py:6607 flatcamGUI/PreferencesUI.py:6680 +#: flatcamGUI/PreferencesUI.py:6749 msgid "Add Extension" msgstr "Add Extension" -#: flatcamGUI/PreferencesUI.py:6607 flatcamGUI/PreferencesUI.py:6680 -#: flatcamGUI/PreferencesUI.py:6749 +#: flatcamGUI/PreferencesUI.py:6608 flatcamGUI/PreferencesUI.py:6681 +#: flatcamGUI/PreferencesUI.py:6750 msgid "Add a file extension to the list" msgstr "Add a file extension to the list" -#: flatcamGUI/PreferencesUI.py:6608 flatcamGUI/PreferencesUI.py:6681 -#: flatcamGUI/PreferencesUI.py:6750 +#: flatcamGUI/PreferencesUI.py:6609 flatcamGUI/PreferencesUI.py:6682 +#: flatcamGUI/PreferencesUI.py:6751 msgid "Delete Extension" msgstr "Delete Extension" -#: flatcamGUI/PreferencesUI.py:6609 flatcamGUI/PreferencesUI.py:6682 -#: flatcamGUI/PreferencesUI.py:6751 +#: flatcamGUI/PreferencesUI.py:6610 flatcamGUI/PreferencesUI.py:6683 +#: flatcamGUI/PreferencesUI.py:6752 msgid "Delete a file extension from the list" msgstr "Delete a file extension from the list" -#: flatcamGUI/PreferencesUI.py:6616 flatcamGUI/PreferencesUI.py:6689 -#: flatcamGUI/PreferencesUI.py:6758 +#: flatcamGUI/PreferencesUI.py:6617 flatcamGUI/PreferencesUI.py:6690 +#: flatcamGUI/PreferencesUI.py:6759 msgid "Apply Association" msgstr "Apply Association" -#: flatcamGUI/PreferencesUI.py:6617 flatcamGUI/PreferencesUI.py:6690 -#: flatcamGUI/PreferencesUI.py:6759 +#: flatcamGUI/PreferencesUI.py:6618 flatcamGUI/PreferencesUI.py:6691 +#: flatcamGUI/PreferencesUI.py:6760 msgid "" "Apply the file associations between\n" "FlatCAM and the files with above extensions.\n" @@ -12328,31 +12303,31 @@ msgstr "" "They will be active after next logon.\n" "This work only in Windows." -#: flatcamGUI/PreferencesUI.py:6634 +#: flatcamGUI/PreferencesUI.py:6635 msgid "GCode File associations" msgstr "GCode File associations" -#: flatcamGUI/PreferencesUI.py:6704 +#: flatcamGUI/PreferencesUI.py:6705 msgid "Gerber File associations" msgstr "Gerber File associations" -#: flatcamGUI/PreferencesUI.py:6774 +#: flatcamGUI/PreferencesUI.py:6775 msgid "Autocompleter Keywords" msgstr "Autocompleter Keywords" -#: flatcamGUI/PreferencesUI.py:6778 +#: flatcamGUI/PreferencesUI.py:6779 msgid "Restore the autocompleter keywords list to the default state." msgstr "Restore the autocompleter keywords list to the default state." -#: flatcamGUI/PreferencesUI.py:6780 +#: flatcamGUI/PreferencesUI.py:6781 msgid "Delete all autocompleter keywords from the list." msgstr "Delete all autocompleter keywords from the list." -#: flatcamGUI/PreferencesUI.py:6788 +#: flatcamGUI/PreferencesUI.py:6789 msgid "Keywords list" msgstr "Keywords list" -#: flatcamGUI/PreferencesUI.py:6790 +#: flatcamGUI/PreferencesUI.py:6791 msgid "" "List of keywords used by\n" "the autocompleter in FlatCAM.\n" @@ -12364,23 +12339,23 @@ msgstr "" "The autocompleter is installed\n" "in the Code Editor and for the Tcl Shell." -#: flatcamGUI/PreferencesUI.py:6812 +#: flatcamGUI/PreferencesUI.py:6813 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:6820 +#: flatcamGUI/PreferencesUI.py:6821 msgid "Add keyword" msgstr "Add keyword" -#: flatcamGUI/PreferencesUI.py:6821 +#: flatcamGUI/PreferencesUI.py:6822 msgid "Add a keyword to the list" msgstr "Add a keyword to the list" -#: flatcamGUI/PreferencesUI.py:6822 +#: flatcamGUI/PreferencesUI.py:6823 msgid "Delete keyword" msgstr "Delete keyword" -#: flatcamGUI/PreferencesUI.py:6823 +#: flatcamGUI/PreferencesUI.py:6824 msgid "Delete a keyword from the list" msgstr "Delete a keyword from the list" @@ -12411,9 +12386,6 @@ msgstr "" "diameters to reflect the real diameters." #: flatcamParsers/ParseExcellon.py:889 -#| msgid "" -#| "{e_code} Excellon Parser error.\n" -#| "Parsing Failed. Line {l_nr}: {line}\n" msgid "" "Excellon Parser error.\n" "Parsing Failed. Line" @@ -12621,10 +12593,6 @@ msgid "STEP 1: Acquire Calibration Points" msgstr "STEP 1: Acquire Calibration Points" #: 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." msgid "" "Pick four points by clicking on canvas.\n" "Those four points should be in the four\n" @@ -12902,12 +12870,10 @@ msgid "Cancelled by user request." msgstr "Cancelled by user request." #: flatcamTools/ToolCalibration.py:912 -#| msgid "Get Second calibration point. Bottom Right..." msgid "Get Second calibration point. Bottom Right (Top Left)..." msgstr "Get Second calibration point. Bottom Right (Top Left)..." #: flatcamTools/ToolCalibration.py:916 -#| msgid "Get Third calibration point. Top Left..." msgid "Get Third calibration point. Top Left (Bottom Right)..." msgstr "Get Third calibration point. Top Left (Bottom Right)..." @@ -12920,7 +12886,6 @@ msgid "Done. All four points have been acquired." msgstr "Done. All four points have been acquired." #: flatcamTools/ToolCalibration.py:955 -#| msgid "Verification GCode for FlatCAM Calibrate Tool" msgid "Verification GCode for FlatCAM Calibration Tool" msgstr "Verification GCode for FlatCAM Calibration Tool" @@ -12951,13 +12916,6 @@ msgstr "" "and the copper traces in the Gerber file." #: flatcamTools/ToolCopperThieving.py:131 -#| 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 filled.\n" -#| "- 'Reference Object' - will do copper thieving within the area specified " -#| "by another object." msgid "" "- 'Itself' - the copper thieving extent is based on the object extent.\n" "- 'Area Selection' - left mouse click to start selection of the area to be " @@ -13138,9 +13096,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:1156 -#: flatcamTools/ToolNonCopperClear.py:1197 -#: flatcamTools/ToolNonCopperClear.py:1229 flatcamTools/ToolPaint.py:1079 +#: flatcamTools/ToolCutOut.py:640 flatcamTools/ToolNonCopperClear.py:1157 +#: flatcamTools/ToolNonCopperClear.py:1198 +#: flatcamTools/ToolNonCopperClear.py:1230 flatcamTools/ToolPaint.py:1080 #: flatcamTools/ToolPanelize.py:401 flatcamTools/ToolPanelize.py:416 #: flatcamTools/ToolSub.py:288 flatcamTools/ToolSub.py:301 #: flatcamTools/ToolSub.py:492 flatcamTools/ToolSub.py:507 @@ -13150,7 +13108,7 @@ msgid "Could not retrieve object" msgstr "Could not retrieve object" #: flatcamTools/ToolCopperThieving.py:764 -#: flatcamTools/ToolNonCopperClear.py:1210 +#: flatcamTools/ToolNonCopperClear.py:1211 msgid "Click the start point of the area." msgstr "Click the start point of the area." @@ -13159,7 +13117,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:1266 flatcamTools/ToolPaint.py:1206 +#: flatcamTools/ToolNonCopperClear.py:1267 flatcamTools/ToolPaint.py:1207 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." @@ -13191,12 +13149,12 @@ msgid "Geometry not supported for bounding box" msgstr "Geometry not supported for bounding box" #: flatcamTools/ToolCopperThieving.py:1061 -#: flatcamTools/ToolNonCopperClear.py:1517 flatcamTools/ToolPaint.py:2571 +#: flatcamTools/ToolNonCopperClear.py:1518 flatcamTools/ToolPaint.py:2572 msgid "No object available." msgstr "No object available." #: flatcamTools/ToolCopperThieving.py:1098 -#: flatcamTools/ToolNonCopperClear.py:1559 +#: flatcamTools/ToolNonCopperClear.py:1560 msgid "The reference object type is not supported." msgstr "The reference object type is not supported." @@ -13404,8 +13362,8 @@ msgstr "" msgid "Any form CutOut operation finished." msgstr "Any form CutOut operation finished." -#: flatcamTools/ToolCutOut.py:644 flatcamTools/ToolNonCopperClear.py:1160 -#: flatcamTools/ToolPaint.py:999 flatcamTools/ToolPanelize.py:406 +#: flatcamTools/ToolCutOut.py:644 flatcamTools/ToolNonCopperClear.py:1161 +#: flatcamTools/ToolPaint.py:1000 flatcamTools/ToolPanelize.py:406 #: tclCommands/TclCommandBbox.py:70 tclCommands/TclCommandNregions.py:70 msgid "Object not found" msgstr "Object not found" @@ -13725,12 +13683,10 @@ msgid "MEASURING" msgstr "MEASURING" #: flatcamTools/ToolDistance.py:354 flatcamTools/ToolDistanceMin.py:283 -#| msgid "Geo Result" msgid "Result" msgstr "Result" #: flatcamTools/ToolDistance.py:355 flatcamTools/ToolDistanceMin.py:284 -#| msgid "Distance Tool" msgid "Distance" msgstr "Distance" @@ -14400,110 +14356,110 @@ msgstr "" msgid "Generate Geometry" msgstr "Generate Geometry" -#: flatcamTools/ToolNonCopperClear.py:587 flatcamTools/ToolPaint.py:498 +#: flatcamTools/ToolNonCopperClear.py:588 flatcamTools/ToolPaint.py:499 #: flatcamTools/ToolSolderPaste.py:553 msgid "New Tool" msgstr "New Tool" -#: flatcamTools/ToolNonCopperClear.py:986 flatcamTools/ToolPaint.py:771 -#: flatcamTools/ToolSolderPaste.py:884 +#: flatcamTools/ToolNonCopperClear.py:987 flatcamTools/ToolPaint.py:772 +#: flatcamTools/ToolSolderPaste.py:887 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:1017 flatcamTools/ToolPaint.py:796 +#: flatcamTools/ToolNonCopperClear.py:1018 flatcamTools/ToolPaint.py:797 msgid "Adding tool cancelled. Tool already in Tool Table." msgstr "Adding tool cancelled. Tool already in Tool Table." -#: flatcamTools/ToolNonCopperClear.py:1022 flatcamTools/ToolPaint.py:802 +#: flatcamTools/ToolNonCopperClear.py:1023 flatcamTools/ToolPaint.py:803 msgid "New tool added to Tool Table." msgstr "New tool added to Tool Table." -#: flatcamTools/ToolNonCopperClear.py:1066 flatcamTools/ToolPaint.py:848 +#: flatcamTools/ToolNonCopperClear.py:1067 flatcamTools/ToolPaint.py:849 msgid "Tool from Tool Table was edited." msgstr "Tool from Tool Table was edited." -#: flatcamTools/ToolNonCopperClear.py:1077 flatcamTools/ToolPaint.py:860 -#: flatcamTools/ToolSolderPaste.py:975 +#: flatcamTools/ToolNonCopperClear.py:1078 flatcamTools/ToolPaint.py:861 +#: flatcamTools/ToolSolderPaste.py:978 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:1124 flatcamTools/ToolPaint.py:958 +#: flatcamTools/ToolNonCopperClear.py:1125 flatcamTools/ToolPaint.py:959 msgid "Delete failed. Select a tool to delete." msgstr "Delete failed. Select a tool to delete." -#: flatcamTools/ToolNonCopperClear.py:1129 flatcamTools/ToolPaint.py:964 +#: flatcamTools/ToolNonCopperClear.py:1130 flatcamTools/ToolPaint.py:965 msgid "Tool(s) deleted from Tool Table." msgstr "Tool(s) deleted from Tool Table." -#: flatcamTools/ToolNonCopperClear.py:1176 +#: flatcamTools/ToolNonCopperClear.py:1177 msgid "Wrong Tool Dia value format entered, use a number." msgstr "Wrong Tool Dia value format entered, use a number." -#: flatcamTools/ToolNonCopperClear.py:1185 flatcamTools/ToolPaint.py:1028 +#: flatcamTools/ToolNonCopperClear.py:1186 flatcamTools/ToolPaint.py:1029 msgid "No selected tools in Tool Table." msgstr "No selected tools in Tool Table." -#: flatcamTools/ToolNonCopperClear.py:1260 flatcamTools/ToolPaint.py:1200 +#: flatcamTools/ToolNonCopperClear.py:1261 flatcamTools/ToolPaint.py:1201 msgid "Click the end point of the paint area." msgstr "Click the end point of the paint area." -#: flatcamTools/ToolNonCopperClear.py:1414 -#: flatcamTools/ToolNonCopperClear.py:1416 +#: flatcamTools/ToolNonCopperClear.py:1415 +#: flatcamTools/ToolNonCopperClear.py:1417 msgid "Non-Copper clearing ..." msgstr "Non-Copper clearing ..." -#: flatcamTools/ToolNonCopperClear.py:1426 +#: flatcamTools/ToolNonCopperClear.py:1427 msgid "NCC Tool started. Reading parameters." msgstr "NCC Tool started. Reading parameters." -#: flatcamTools/ToolNonCopperClear.py:1489 +#: flatcamTools/ToolNonCopperClear.py:1490 msgid "NCC Tool. Preparing non-copper polygons." msgstr "NCC Tool. Preparing non-copper polygons." -#: flatcamTools/ToolNonCopperClear.py:1585 +#: flatcamTools/ToolNonCopperClear.py:1586 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:1617 +#: flatcamTools/ToolNonCopperClear.py:1618 msgid "NCC Tool. Calculate 'empty' area." msgstr "NCC Tool. Calculate 'empty' area." -#: flatcamTools/ToolNonCopperClear.py:1630 -#: flatcamTools/ToolNonCopperClear.py:1729 -#: flatcamTools/ToolNonCopperClear.py:1741 -#: flatcamTools/ToolNonCopperClear.py:1990 -#: flatcamTools/ToolNonCopperClear.py:2086 -#: flatcamTools/ToolNonCopperClear.py:2098 +#: flatcamTools/ToolNonCopperClear.py:1631 +#: flatcamTools/ToolNonCopperClear.py:1730 +#: flatcamTools/ToolNonCopperClear.py:1742 +#: flatcamTools/ToolNonCopperClear.py:1991 +#: flatcamTools/ToolNonCopperClear.py:2087 +#: flatcamTools/ToolNonCopperClear.py:2099 msgid "Buffering finished" msgstr "Buffering finished" -#: flatcamTools/ToolNonCopperClear.py:1748 -#: flatcamTools/ToolNonCopperClear.py:2104 +#: flatcamTools/ToolNonCopperClear.py:1749 +#: flatcamTools/ToolNonCopperClear.py:2105 msgid "The selected object is not suitable for copper clearing." msgstr "The selected object is not suitable for copper clearing." -#: flatcamTools/ToolNonCopperClear.py:1753 -#: flatcamTools/ToolNonCopperClear.py:2109 +#: flatcamTools/ToolNonCopperClear.py:1754 +#: flatcamTools/ToolNonCopperClear.py:2110 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:1760 +#: flatcamTools/ToolNonCopperClear.py:1761 msgid "NCC Tool. Finished calculation of 'empty' area." msgstr "NCC Tool. Finished calculation of 'empty' area." -#: flatcamTools/ToolNonCopperClear.py:1773 -#: flatcamTools/ToolNonCopperClear.py:2134 +#: flatcamTools/ToolNonCopperClear.py:1774 +#: flatcamTools/ToolNonCopperClear.py:2135 msgid "NCC Tool clearing with tool diameter = " msgstr "NCC Tool clearing with tool diameter = " -#: flatcamTools/ToolNonCopperClear.py:1776 -#: flatcamTools/ToolNonCopperClear.py:2137 +#: flatcamTools/ToolNonCopperClear.py:1777 +#: flatcamTools/ToolNonCopperClear.py:2138 msgid "started." msgstr "started." -#: flatcamTools/ToolNonCopperClear.py:1919 +#: flatcamTools/ToolNonCopperClear.py:1920 msgid "" "There is no NCC Geometry in the file.\n" "Usually it means that the tool diameter is too big for the painted " @@ -14515,25 +14471,25 @@ msgstr "" "geometry.\n" "Change the painting parameters and try again." -#: flatcamTools/ToolNonCopperClear.py:1939 +#: flatcamTools/ToolNonCopperClear.py:1940 msgid "NCC Tool clear all done." msgstr "NCC Tool clear all done." -#: flatcamTools/ToolNonCopperClear.py:1941 +#: flatcamTools/ToolNonCopperClear.py:1942 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:1944 -#: flatcamTools/ToolNonCopperClear.py:2310 +#: flatcamTools/ToolNonCopperClear.py:1945 +#: flatcamTools/ToolNonCopperClear.py:2311 msgid "tools" msgstr "tools" -#: flatcamTools/ToolNonCopperClear.py:2306 +#: flatcamTools/ToolNonCopperClear.py:2307 msgid "NCC Tool Rest Machining clear all done." msgstr "NCC Tool Rest Machining clear all done." -#: flatcamTools/ToolNonCopperClear.py:2309 +#: flatcamTools/ToolNonCopperClear.py:2310 msgid "" "NCC Tool Rest Machining clear all done but the copper features isolation is " "broken for" @@ -14541,7 +14497,7 @@ msgstr "" "NCC Tool Rest Machining clear all done but the copper features isolation is " "broken for" -#: flatcamTools/ToolNonCopperClear.py:2756 +#: flatcamTools/ToolNonCopperClear.py:2757 msgid "" "Try to use the Buffering Type = Full in Preferences -> Gerber General. " "Reload the Gerber file after this change." @@ -14846,68 +14802,68 @@ msgstr "" "- 'Reference Object' - will do non copper clearing within the area\n" "specified by another object." -#: flatcamTools/ToolPaint.py:978 +#: flatcamTools/ToolPaint.py:979 msgid "Paint Tool. Reading parameters." msgstr "Paint Tool. Reading parameters." -#: flatcamTools/ToolPaint.py:993 +#: flatcamTools/ToolPaint.py:994 #, python-format msgid "Could not retrieve object: %s" msgstr "Could not retrieve object: %s" -#: flatcamTools/ToolPaint.py:1007 +#: flatcamTools/ToolPaint.py:1008 msgid "Can't do Paint on MultiGeo geometries" msgstr "Can't do Paint on MultiGeo geometries" -#: flatcamTools/ToolPaint.py:1040 +#: flatcamTools/ToolPaint.py:1041 msgid "Click on a polygon to paint it." msgstr "Click on a polygon to paint it." -#: flatcamTools/ToolPaint.py:1059 +#: flatcamTools/ToolPaint.py:1060 msgid "Click the start point of the paint area." msgstr "Click the start point of the paint area." -#: flatcamTools/ToolPaint.py:1127 +#: flatcamTools/ToolPaint.py:1128 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:1140 +#: flatcamTools/ToolPaint.py:1141 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: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 +#: flatcamTools/ToolPaint.py:1349 flatcamTools/ToolPaint.py:1352 +#: flatcamTools/ToolPaint.py:1354 flatcamTools/ToolPaint.py:1886 +#: flatcamTools/ToolPaint.py:1890 flatcamTools/ToolPaint.py:1893 +#: flatcamTools/ToolPaint.py:2175 flatcamTools/ToolPaint.py:2180 +#: flatcamTools/ToolPaint.py:2183 flatcamTools/ToolPaint.py:2357 +#: flatcamTools/ToolPaint.py:2364 msgid "Paint Tool." msgstr "Paint Tool." -#: flatcamTools/ToolPaint.py:1348 flatcamTools/ToolPaint.py:1351 -#: flatcamTools/ToolPaint.py:1353 +#: flatcamTools/ToolPaint.py:1349 flatcamTools/ToolPaint.py:1352 +#: flatcamTools/ToolPaint.py:1354 msgid "Normal painting polygon task started." msgstr "Normal painting polygon task started." -#: flatcamTools/ToolPaint.py:1349 flatcamTools/ToolPaint.py:1711 -#: flatcamTools/ToolPaint.py:1886 flatcamTools/ToolPaint.py:2176 -#: flatcamTools/ToolPaint.py:2358 +#: flatcamTools/ToolPaint.py:1350 flatcamTools/ToolPaint.py:1712 +#: flatcamTools/ToolPaint.py:1887 flatcamTools/ToolPaint.py:2177 +#: flatcamTools/ToolPaint.py:2359 msgid "Buffering geometry..." msgstr "Buffering geometry..." -#: flatcamTools/ToolPaint.py:1371 +#: flatcamTools/ToolPaint.py:1372 msgid "No polygon found." msgstr "No polygon found." -#: flatcamTools/ToolPaint.py:1405 +#: flatcamTools/ToolPaint.py:1406 msgid "Painting polygon..." msgstr "Painting polygon..." -#: flatcamTools/ToolPaint.py:1453 +#: flatcamTools/ToolPaint.py:1454 msgid "Geometry could not be painted completely" msgstr "Geometry could not be painted completely" -#: flatcamTools/ToolPaint.py:1486 +#: flatcamTools/ToolPaint.py:1487 msgid "" "Could not do Paint. Try a different combination of parameters. Or a " "different strategy of paint" @@ -14915,9 +14871,9 @@ msgstr "" "Could not do Paint. Try a different combination of parameters. Or a " "different strategy of paint" -#: flatcamTools/ToolPaint.py:1538 flatcamTools/ToolPaint.py:1865 -#: flatcamTools/ToolPaint.py:2015 flatcamTools/ToolPaint.py:2336 -#: flatcamTools/ToolPaint.py:2490 +#: flatcamTools/ToolPaint.py:1539 flatcamTools/ToolPaint.py:1866 +#: flatcamTools/ToolPaint.py:2016 flatcamTools/ToolPaint.py:2337 +#: flatcamTools/ToolPaint.py:2491 msgid "" "There is no Painting Geometry in the file.\n" "Usually it means that the tool diameter is too big for the painted " @@ -14929,36 +14885,36 @@ msgstr "" "geometry.\n" "Change the painting parameters and try again." -#: flatcamTools/ToolPaint.py:1544 +#: flatcamTools/ToolPaint.py:1545 msgid "Paint Single Done." msgstr "Paint Single Done." -#: flatcamTools/ToolPaint.py:1576 flatcamTools/ToolPaint.py:2043 -#: flatcamTools/ToolPaint.py:2518 +#: flatcamTools/ToolPaint.py:1577 flatcamTools/ToolPaint.py:2044 +#: flatcamTools/ToolPaint.py:2519 msgid "Polygon Paint started ..." msgstr "Polygon Paint started ..." -#: flatcamTools/ToolPaint.py:1628 flatcamTools/ToolPaint.py:2105 +#: flatcamTools/ToolPaint.py:1629 flatcamTools/ToolPaint.py:2106 msgid "Painting polygons..." msgstr "Painting polygons..." -#: flatcamTools/ToolPaint.py:1710 flatcamTools/ToolPaint.py:1713 -#: flatcamTools/ToolPaint.py:1715 +#: flatcamTools/ToolPaint.py:1711 flatcamTools/ToolPaint.py:1714 +#: flatcamTools/ToolPaint.py:1716 msgid "Paint Tool. Normal painting all task started." msgstr "Paint Tool. Normal painting all task started." -#: flatcamTools/ToolPaint.py:1749 flatcamTools/ToolPaint.py:1921 -#: flatcamTools/ToolPaint.py:2223 flatcamTools/ToolPaint.py:2399 +#: flatcamTools/ToolPaint.py:1750 flatcamTools/ToolPaint.py:1922 +#: flatcamTools/ToolPaint.py:2224 flatcamTools/ToolPaint.py:2400 msgid "Painting with tool diameter = " msgstr "Painting with tool diameter = " -#: flatcamTools/ToolPaint.py:1752 flatcamTools/ToolPaint.py:1924 -#: flatcamTools/ToolPaint.py:2226 flatcamTools/ToolPaint.py:2402 +#: flatcamTools/ToolPaint.py:1753 flatcamTools/ToolPaint.py:1925 +#: flatcamTools/ToolPaint.py:2227 flatcamTools/ToolPaint.py:2403 msgid "started" msgstr "started" -#: flatcamTools/ToolPaint.py:1814 flatcamTools/ToolPaint.py:1970 -#: flatcamTools/ToolPaint.py:2286 flatcamTools/ToolPaint.py:2446 +#: flatcamTools/ToolPaint.py:1815 flatcamTools/ToolPaint.py:1971 +#: flatcamTools/ToolPaint.py:2287 flatcamTools/ToolPaint.py:2447 msgid "" "Could not do Paint All. Try a different combination of parameters. Or a " "different Method of paint" @@ -14966,33 +14922,33 @@ msgstr "" "Could not do Paint All. Try a different combination of parameters. Or a " "different Method of paint" -#: flatcamTools/ToolPaint.py:1874 +#: flatcamTools/ToolPaint.py:1875 msgid "Paint All Done." msgstr "Paint All Done." -#: flatcamTools/ToolPaint.py:1885 flatcamTools/ToolPaint.py:1889 -#: flatcamTools/ToolPaint.py:1892 +#: flatcamTools/ToolPaint.py:1886 flatcamTools/ToolPaint.py:1890 +#: flatcamTools/ToolPaint.py:1893 msgid "Rest machining painting all task started." msgstr "Rest machining painting all task started." -#: flatcamTools/ToolPaint.py:2024 flatcamTools/ToolPaint.py:2499 +#: flatcamTools/ToolPaint.py:2025 flatcamTools/ToolPaint.py:2500 msgid "Paint All with Rest-Machining done." msgstr "Paint All with Rest-Machining done." -#: flatcamTools/ToolPaint.py:2175 flatcamTools/ToolPaint.py:2179 -#: flatcamTools/ToolPaint.py:2182 +#: flatcamTools/ToolPaint.py:2176 flatcamTools/ToolPaint.py:2180 +#: flatcamTools/ToolPaint.py:2183 msgid "Normal painting area task started." msgstr "Normal painting area task started." -#: flatcamTools/ToolPaint.py:2345 +#: flatcamTools/ToolPaint.py:2346 msgid "Paint Area Done." msgstr "Paint Area Done." -#: flatcamTools/ToolPaint.py:2357 flatcamTools/ToolPaint.py:2363 +#: flatcamTools/ToolPaint.py:2358 flatcamTools/ToolPaint.py:2364 msgid "Rest machining painting area task started." msgstr "Rest machining painting area task started." -#: flatcamTools/ToolPaint.py:2360 +#: flatcamTools/ToolPaint.py:2361 msgid "Paint Tool. Rest machining painting area task started." msgstr "Paint Tool. Rest machining painting area task started." @@ -15933,86 +15889,86 @@ msgstr "" "Fourth step (and last) is to select a CNCJob made from \n" "a solder paste dispensing geometry, and then view/save it's GCode." -#: flatcamTools/ToolSolderPaste.py:914 +#: flatcamTools/ToolSolderPaste.py:917 msgid "Adding Nozzle tool cancelled. Tool already in Tool Table." msgstr "Adding Nozzle tool cancelled. Tool already in Tool Table." -#: flatcamTools/ToolSolderPaste.py:920 +#: flatcamTools/ToolSolderPaste.py:923 msgid "New Nozzle tool added to Tool Table." msgstr "New Nozzle tool added to Tool Table." -#: flatcamTools/ToolSolderPaste.py:963 +#: flatcamTools/ToolSolderPaste.py:966 msgid "Nozzle tool from Tool Table was edited." msgstr "Nozzle tool from Tool Table was edited." -#: flatcamTools/ToolSolderPaste.py:1021 +#: flatcamTools/ToolSolderPaste.py:1024 msgid "Delete failed. Select a Nozzle tool to delete." msgstr "Delete failed. Select a Nozzle tool to delete." -#: flatcamTools/ToolSolderPaste.py:1027 +#: flatcamTools/ToolSolderPaste.py:1030 msgid "Nozzle tool(s) deleted from Tool Table." msgstr "Nozzle tool(s) deleted from Tool Table." -#: flatcamTools/ToolSolderPaste.py:1083 +#: flatcamTools/ToolSolderPaste.py:1086 msgid "No SolderPaste mask Gerber object loaded." msgstr "No SolderPaste mask Gerber object loaded." -#: flatcamTools/ToolSolderPaste.py:1101 +#: flatcamTools/ToolSolderPaste.py:1104 msgid "Creating Solder Paste dispensing geometry." msgstr "Creating Solder Paste dispensing geometry." -#: flatcamTools/ToolSolderPaste.py:1114 +#: flatcamTools/ToolSolderPaste.py:1117 msgid "No Nozzle tools in the tool table." msgstr "No Nozzle tools in the tool table." -#: flatcamTools/ToolSolderPaste.py:1241 +#: flatcamTools/ToolSolderPaste.py:1244 msgid "Cancelled. Empty file, it has no geometry..." msgstr "Cancelled. Empty file, it has no geometry..." -#: flatcamTools/ToolSolderPaste.py:1245 +#: flatcamTools/ToolSolderPaste.py:1248 msgid "Solder Paste geometry generated successfully" msgstr "Solder Paste geometry generated successfully" -#: flatcamTools/ToolSolderPaste.py:1252 +#: flatcamTools/ToolSolderPaste.py:1255 msgid "Some or all pads have no solder due of inadequate nozzle diameters..." msgstr "Some or all pads have no solder due of inadequate nozzle diameters..." -#: flatcamTools/ToolSolderPaste.py:1266 +#: flatcamTools/ToolSolderPaste.py:1269 msgid "Generating Solder Paste dispensing geometry..." msgstr "Generating Solder Paste dispensing geometry..." -#: flatcamTools/ToolSolderPaste.py:1286 +#: flatcamTools/ToolSolderPaste.py:1289 msgid "There is no Geometry object available." msgstr "There is no Geometry object available." -#: flatcamTools/ToolSolderPaste.py:1291 +#: flatcamTools/ToolSolderPaste.py:1294 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:1398 +#: flatcamTools/ToolSolderPaste.py:1401 msgid "ToolSolderPaste CNCjob created" msgstr "ToolSolderPaste CNCjob created" -#: flatcamTools/ToolSolderPaste.py:1419 +#: flatcamTools/ToolSolderPaste.py:1422 msgid "SP GCode Editor" msgstr "SP GCode Editor" -#: flatcamTools/ToolSolderPaste.py:1431 flatcamTools/ToolSolderPaste.py:1436 -#: flatcamTools/ToolSolderPaste.py:1491 +#: flatcamTools/ToolSolderPaste.py:1434 flatcamTools/ToolSolderPaste.py:1439 +#: flatcamTools/ToolSolderPaste.py:1494 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:1461 +#: flatcamTools/ToolSolderPaste.py:1464 msgid "No Gcode in the object" msgstr "No Gcode in the object" -#: flatcamTools/ToolSolderPaste.py:1501 +#: flatcamTools/ToolSolderPaste.py:1504 msgid "Export GCode ..." msgstr "Export GCode ..." -#: flatcamTools/ToolSolderPaste.py:1549 +#: flatcamTools/ToolSolderPaste.py:1552 msgid "Solder paste dispenser GCode file saved to" msgstr "Solder paste dispenser GCode file saved to" diff --git a/locale/es/LC_MESSAGES/strings.mo b/locale/es/LC_MESSAGES/strings.mo index 4170234c..c8ffd923 100644 Binary files a/locale/es/LC_MESSAGES/strings.mo and b/locale/es/LC_MESSAGES/strings.mo differ diff --git a/locale/es/LC_MESSAGES/strings.po b/locale/es/LC_MESSAGES/strings.po index dca2a5a7..92d8aba0 100644 --- a/locale/es/LC_MESSAGES/strings.po +++ b/locale/es/LC_MESSAGES/strings.po @@ -5,8 +5,8 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"POT-Creation-Date: 2019-12-14 18:20+0200\n" -"PO-Revision-Date: 2019-12-14 19:32+0200\n" +"POT-Creation-Date: 2019-12-15 16:27+0200\n" +"PO-Revision-Date: 2019-12-15 16:27+0200\n" "Last-Translator: Marius Stanciu - Google Translate\n" "Language-Team: \n" "Language: es\n" @@ -22,17 +22,17 @@ msgstr "" "X-Poedit-SearchPathExcluded-1: doc\n" "X-Poedit-SearchPathExcluded-2: tests\n" -#: FlatCAMApp.py:999 +#: FlatCAMApp.py:1004 msgid "FlatCAM is initializing ..." msgstr "FlatCAM se está inicializando ..." -#: FlatCAMApp.py:1580 +#: FlatCAMApp.py:1585 msgid "Could not find the Language files. The App strings are missing." msgstr "" "No se pudieron encontrar los archivos de idioma. Las cadenas de aplicación " "faltan." -#: FlatCAMApp.py:1673 +#: FlatCAMApp.py:1678 msgid "" "FlatCAM is initializing ...\n" "Canvas initialization started." @@ -40,7 +40,7 @@ msgstr "" "FlatCAM se está inicializando ...\n" "Se inició la inicialización del lienzo." -#: FlatCAMApp.py:1691 +#: FlatCAMApp.py:1696 msgid "" "FlatCAM is initializing ...\n" "Canvas initialization started.\n" @@ -50,7 +50,7 @@ msgstr "" "Se inició la inicialización del lienzo.\n" "La inicialización del lienzo terminó en" -#: FlatCAMApp.py:2388 +#: FlatCAMApp.py:2395 msgid "" "Type >help< to get started\n" "\n" @@ -58,13 +58,13 @@ msgstr "" "Escriba >ayuda< para comenzar\n" "\n" -#: FlatCAMApp.py:2643 FlatCAMApp.py:9138 +#: FlatCAMApp.py:2650 FlatCAMApp.py:9170 msgid "New Project - Not saved" msgstr "Proyecto nuevo: no guardado" -#: FlatCAMApp.py:2718 FlatCAMApp.py:9206 FlatCAMApp.py:9243 FlatCAMApp.py:9284 -#: FlatCAMApp.py:9355 FlatCAMApp.py:10109 FlatCAMApp.py:11123 -#: FlatCAMApp.py:11182 +#: FlatCAMApp.py:2725 FlatCAMApp.py:9238 FlatCAMApp.py:9275 FlatCAMApp.py:9316 +#: FlatCAMApp.py:9387 FlatCAMApp.py:10141 FlatCAMApp.py:11155 +#: FlatCAMApp.py:11214 msgid "" "Canvas initialization started.\n" "Canvas initialization finished in" @@ -72,47 +72,47 @@ msgstr "" "Se inició la inicialización del lienzo.\n" "La inicialización del lienzo terminó en" -#: FlatCAMApp.py:2720 +#: FlatCAMApp.py:2727 msgid "Executing Tcl Script ..." msgstr "Ejecutando Tcl Script ..." -#: FlatCAMApp.py:2735 +#: FlatCAMApp.py:2742 msgid "" "Found old default preferences files. Please reboot the application to update." msgstr "" "Se encontraron archivos de preferencias predeterminados antiguos. Reinicie " "la aplicación para actualizar." -#: FlatCAMApp.py:2779 ObjectCollection.py:90 flatcamTools/ToolImage.py:248 +#: FlatCAMApp.py:2786 ObjectCollection.py:90 flatcamTools/ToolImage.py:248 #: flatcamTools/ToolPcbWizard.py:301 flatcamTools/ToolPcbWizard.py:324 msgid "Open cancelled." msgstr "Abierto cancelado." -#: FlatCAMApp.py:2795 +#: FlatCAMApp.py:2802 msgid "Open Config file failed." msgstr "El archivo de configuración abierto falló." -#: FlatCAMApp.py:2810 +#: FlatCAMApp.py:2817 msgid "Open Script file failed." msgstr "Error al abrir el archivo de script." -#: FlatCAMApp.py:2836 +#: FlatCAMApp.py:2843 msgid "Open Excellon file failed." msgstr "Abrir archivo Excellon falló." -#: FlatCAMApp.py:2849 +#: FlatCAMApp.py:2856 msgid "Open GCode file failed." msgstr "Error al abrir el archivo GCode." -#: FlatCAMApp.py:2862 +#: FlatCAMApp.py:2869 msgid "Open Gerber file failed." msgstr "Error al abrir el archivo Gerber." -#: FlatCAMApp.py:3203 +#: FlatCAMApp.py:3223 msgid "Select a Geometry, Gerber or Excellon Object to edit." msgstr "Seleccione un objeto Geometry, Gerber o Excellon para editar." -#: FlatCAMApp.py:3218 +#: FlatCAMApp.py:3238 msgid "" "Simultaneous editing of tools geometry in a MultiGeo Geometry is not " "possible.\n" @@ -122,82 +122,82 @@ msgstr "" "MultiGeo no es posible.\n" "Edite solo una geometría a la vez." -#: FlatCAMApp.py:3273 +#: FlatCAMApp.py:3293 msgid "Editor is activated ..." msgstr "Editor está activado ..." -#: FlatCAMApp.py:3294 +#: FlatCAMApp.py:3314 msgid "Do you want to save the edited object?" msgstr "Quieres guardar el objeto editado?" -#: FlatCAMApp.py:3295 flatcamGUI/FlatCAMGUI.py:1969 +#: FlatCAMApp.py:3315 flatcamGUI/FlatCAMGUI.py:2134 msgid "Close Editor" msgstr "Cerrar Editor" -#: 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 +#: FlatCAMApp.py:3318 FlatCAMApp.py:5029 FlatCAMApp.py:7889 FlatCAMApp.py:7915 +#: FlatCAMApp.py:9077 FlatCAMTranslation.py:108 FlatCAMTranslation.py:193 +#: flatcamGUI/PreferencesUI.py:1035 msgid "Yes" msgstr "Sí" -#: 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 +#: FlatCAMApp.py:3319 FlatCAMApp.py:5030 FlatCAMApp.py:7890 FlatCAMApp.py:7916 +#: FlatCAMApp.py:9078 FlatCAMTranslation.py:109 FlatCAMTranslation.py:194 +#: flatcamGUI/PreferencesUI.py:1036 flatcamGUI/PreferencesUI.py:4095 +#: flatcamGUI/PreferencesUI.py:4520 flatcamTools/ToolNonCopperClear.py:189 #: flatcamTools/ToolPaint.py:161 msgid "No" msgstr "No" -#: FlatCAMApp.py:3300 FlatCAMApp.py:5003 FlatCAMApp.py:5839 FlatCAMApp.py:7157 -#: FlatCAMApp.py:9047 FlatCAMCommon.py:702 flatcamGUI/FlatCAMGUI.py:1117 +#: FlatCAMApp.py:3320 FlatCAMApp.py:5031 FlatCAMApp.py:5867 FlatCAMApp.py:7185 +#: FlatCAMApp.py:9079 FlatCAMCommon.py:702 flatcamGUI/FlatCAMGUI.py:1233 msgid "Cancel" msgstr "Cancelar" -#: FlatCAMApp.py:3328 +#: FlatCAMApp.py:3348 msgid "Object empty after edit." msgstr "Objeto vacío después de editar." -#: FlatCAMApp.py:3377 FlatCAMApp.py:3397 FlatCAMApp.py:3412 +#: FlatCAMApp.py:3397 FlatCAMApp.py:3417 FlatCAMApp.py:3432 msgid "Select a Gerber, Geometry or Excellon Object to update." msgstr "Seleccione un objeto Gerber, Geometry o Excellon para actualizar." -#: FlatCAMApp.py:3381 +#: FlatCAMApp.py:3401 msgid "is updated, returning to App..." msgstr "se actualiza, volviendo a la aplicación ..." -#: FlatCAMApp.py:3776 FlatCAMApp.py:3850 FlatCAMApp.py:4863 +#: FlatCAMApp.py:3796 FlatCAMApp.py:3870 FlatCAMApp.py:4891 msgid "Could not load defaults file." msgstr "No se pudo cargar el archivo predeterminado." -#: FlatCAMApp.py:3788 FlatCAMApp.py:3859 FlatCAMApp.py:4872 +#: FlatCAMApp.py:3808 FlatCAMApp.py:3879 FlatCAMApp.py:4900 msgid "Failed to parse defaults file." msgstr "Error al analizar el archivo predeterminado." -#: FlatCAMApp.py:3830 FlatCAMApp.py:3834 +#: FlatCAMApp.py:3850 FlatCAMApp.py:3854 msgid "Import FlatCAM Preferences" msgstr "Importar preferencias de FlatCAM" -#: FlatCAMApp.py:3841 +#: FlatCAMApp.py:3861 msgid "FlatCAM preferences import cancelled." msgstr "Importación de preferencias de FlatCAM cancelada." -#: FlatCAMApp.py:3864 +#: FlatCAMApp.py:3884 msgid "Imported Defaults from" msgstr "Valores predeterminados importados de" -#: FlatCAMApp.py:3884 FlatCAMApp.py:3889 +#: FlatCAMApp.py:3904 FlatCAMApp.py:3909 msgid "Export FlatCAM Preferences" msgstr "Exportar preferencias de FlatCAM" -#: FlatCAMApp.py:3897 +#: FlatCAMApp.py:3917 msgid "FlatCAM preferences export cancelled." msgstr "Exportación de preferencias de FlatCAM cancelada." -#: FlatCAMApp.py:3906 FlatCAMApp.py:10338 FlatCAMApp.py:10386 -#: FlatCAMApp.py:10509 FlatCAMApp.py:10648 FlatCAMCommon.py:378 -#: FlatCAMCommon.py:1094 FlatCAMObj.py:6721 +#: FlatCAMApp.py:3926 FlatCAMApp.py:10370 FlatCAMApp.py:10418 +#: FlatCAMApp.py:10541 FlatCAMApp.py:10680 FlatCAMCommon.py:378 +#: FlatCAMCommon.py:1094 FlatCAMObj.py:6724 #: flatcamEditors/FlatCAMTextEditor.py:228 flatcamTools/ToolFilm.py:1019 -#: flatcamTools/ToolFilm.py:1195 flatcamTools/ToolSolderPaste.py:1541 +#: flatcamTools/ToolFilm.py:1195 flatcamTools/ToolSolderPaste.py:1544 msgid "" "Permission denied, saving not possible.\n" "Most likely another app is holding the file open and not accessible." @@ -206,101 +206,101 @@ msgstr "" "Lo más probable es que otra aplicación mantenga el archivo abierto y no " "accesible." -#: FlatCAMApp.py:3919 +#: FlatCAMApp.py:3939 msgid "Could not load preferences file." msgstr "No se pudo cargar el archivo de preferencias." -#: FlatCAMApp.py:3939 FlatCAMApp.py:4919 +#: FlatCAMApp.py:3959 FlatCAMApp.py:4947 msgid "Failed to write defaults to file." msgstr "Error al escribir los valores predeterminados en el archivo." -#: FlatCAMApp.py:3945 +#: FlatCAMApp.py:3965 msgid "Exported preferences to" msgstr "Preferencias exportadas a" -#: FlatCAMApp.py:3962 +#: FlatCAMApp.py:3982 msgid "FlatCAM Preferences Folder opened." msgstr "Carpeta de preferencias de FlatCAM abierta." -#: FlatCAMApp.py:4045 +#: FlatCAMApp.py:4065 msgid "Failed to open recent files file for writing." msgstr "Error al abrir archivos recientes para escritura." -#: FlatCAMApp.py:4056 +#: FlatCAMApp.py:4076 msgid "Failed to open recent projects file for writing." msgstr "Error al abrir el archivo de proyectos recientes para escribir." -#: FlatCAMApp.py:4142 flatcamParsers/ParseExcellon.py:886 -#: flatcamTools/ToolSolderPaste.py:1327 +#: FlatCAMApp.py:4162 flatcamParsers/ParseExcellon.py:886 +#: flatcamTools/ToolSolderPaste.py:1330 msgid "An internal error has ocurred. See shell.\n" msgstr "" "Ha ocurrido un error interno. Ver caparazón.\n" "\n" -#: FlatCAMApp.py:4143 +#: FlatCAMApp.py:4163 #, python-brace-format msgid "" "Object ({kind}) failed because: {error} \n" "\n" msgstr "El objeto ({kind}) falló porque: {error}\n" -#: FlatCAMApp.py:4163 +#: FlatCAMApp.py:4183 msgid "Converting units to " msgstr "Convertir unidades a " -#: FlatCAMApp.py:4266 +#: FlatCAMApp.py:4286 msgid "CREATE A NEW FLATCAM TCL SCRIPT" msgstr "CREA UN NUEVO SCRIPT FLATCAM TCL" -#: FlatCAMApp.py:4267 +#: FlatCAMApp.py:4287 msgid "TCL Tutorial is here" msgstr "TCL Tutorial está aquí" -#: FlatCAMApp.py:4269 +#: FlatCAMApp.py:4289 msgid "FlatCAM commands list" msgstr "Lista de comandos de FlatCAM" -#: FlatCAMApp.py:4320 FlatCAMApp.py:4326 FlatCAMApp.py:4332 FlatCAMApp.py:4338 -#: FlatCAMApp.py:4344 FlatCAMApp.py:4350 +#: FlatCAMApp.py:4340 FlatCAMApp.py:4346 FlatCAMApp.py:4352 FlatCAMApp.py:4358 +#: FlatCAMApp.py:4364 FlatCAMApp.py:4370 msgid "created/selected" msgstr "creado / seleccionado" -#: FlatCAMApp.py:4365 FlatCAMApp.py:7237 FlatCAMObj.py:263 FlatCAMObj.py:294 +#: FlatCAMApp.py:4385 FlatCAMApp.py:7265 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 "Trazado" -#: FlatCAMApp.py:4426 flatcamGUI/FlatCAMGUI.py:467 +#: FlatCAMApp.py:4448 flatcamGUI/FlatCAMGUI.py:493 msgid "About FlatCAM" msgstr "Sobre FlatCAM" -#: FlatCAMApp.py:4452 +#: FlatCAMApp.py:4474 msgid "2D Computer-Aided Printed Circuit Board Manufacturing" msgstr "Fabricación de placa de circuito impreso asistida por computadora 2D" -#: FlatCAMApp.py:4453 +#: FlatCAMApp.py:4475 msgid "Development" msgstr "Desarrollo" -#: FlatCAMApp.py:4454 +#: FlatCAMApp.py:4476 msgid "DOWNLOAD" msgstr "DESCARGAR" -#: FlatCAMApp.py:4455 +#: FlatCAMApp.py:4477 msgid "Issue tracker" msgstr "Rastreador de problemas" -#: FlatCAMApp.py:4459 FlatCAMApp.py:4794 +#: FlatCAMApp.py:4481 FlatCAMApp.py:4822 msgid "Close" msgstr "Cerca" -#: FlatCAMApp.py:4474 +#: FlatCAMApp.py:4496 msgid "Licensed under the MIT license" msgstr "Licenciado bajo la licencia MIT" -#: FlatCAMApp.py:4483 +#: FlatCAMApp.py:4505 msgid "" "Permission is hereby granted, free of charge, to any person obtaining a " "copy\n" @@ -350,7 +350,7 @@ msgstr "" "FUERA DE O EN CONEXIÓN CON EL SOFTWARE O EL USO U OTRAS OFERTAS EN\n" "EL SOFTWARE." -#: FlatCAMApp.py:4505 +#: FlatCAMApp.py:4527 msgid "" "Some of the icons used are from the following sources:
Icons by FreepikIcons8
Iconos de oNline Web Fonts" -#: FlatCAMApp.py:4537 +#: FlatCAMApp.py:4559 msgid "Splash" msgstr "Pantalla de bienvenida" -#: FlatCAMApp.py:4543 +#: FlatCAMApp.py:4565 msgid "Programmers" msgstr "Programadores" -#: FlatCAMApp.py:4549 +#: FlatCAMApp.py:4571 msgid "Translators" msgstr "Traductores" -#: FlatCAMApp.py:4555 +#: FlatCAMApp.py:4577 msgid "License" msgstr "Licencia" -#: FlatCAMApp.py:4561 +#: FlatCAMApp.py:4583 msgid "Attributions" msgstr "Atribuciones" -#: FlatCAMApp.py:4584 +#: FlatCAMApp.py:4606 msgid "Programmer" msgstr "Programador" -#: FlatCAMApp.py:4585 +#: FlatCAMApp.py:4607 msgid "Status" msgstr "Estado" -#: FlatCAMApp.py:4586 FlatCAMApp.py:4657 +#: FlatCAMApp.py:4608 FlatCAMApp.py:4686 msgid "E-mail" msgstr "Email" -#: FlatCAMApp.py:4594 +#: FlatCAMApp.py:4616 msgid "BETA Maintainer >= 2019" msgstr "BETA Mantenedor >= 2019" -#: FlatCAMApp.py:4654 +#: FlatCAMApp.py:4683 msgid "Language" msgstr "Idioma" -#: FlatCAMApp.py:4655 +#: FlatCAMApp.py:4684 msgid "Translator" msgstr "Traductor" -#: FlatCAMApp.py:4656 +#: FlatCAMApp.py:4685 msgid "Corrections" msgstr "Correcciones" -#: FlatCAMApp.py:4765 FlatCAMApp.py:4773 FlatCAMApp.py:7906 -#: flatcamGUI/FlatCAMGUI.py:451 +#: FlatCAMApp.py:4794 FlatCAMApp.py:4802 FlatCAMApp.py:7934 +#: flatcamGUI/FlatCAMGUI.py:475 msgid "Bookmarks Manager" msgstr "Administrador de Marcadores" -#: FlatCAMApp.py:4785 +#: FlatCAMApp.py:4813 msgid "" "This entry will resolve to another website if:\n" "\n" @@ -439,36 +439,36 @@ msgstr "" "Si no puede obtener información sobre FlatCAM beta\n" "use el enlace del canal de YouTube desde el menú Ayuda." -#: FlatCAMApp.py:4792 +#: FlatCAMApp.py:4820 msgid "Alternative website" msgstr "Sitio web alternativo" -#: FlatCAMApp.py:4923 FlatCAMApp.py:7870 +#: FlatCAMApp.py:4951 FlatCAMApp.py:7898 msgid "Preferences saved." msgstr "Preferencias guardadas." -#: FlatCAMApp.py:4951 +#: FlatCAMApp.py:4979 msgid "Could not load factory defaults file." msgstr "No se pudo cargar el archivo de valores predeterminados de fábrica." -#: FlatCAMApp.py:4961 +#: FlatCAMApp.py:4989 msgid "Failed to parse factory defaults file." msgstr "Error al analizar el archivo de valores predeterminados de fábrica." -#: FlatCAMApp.py:4977 +#: FlatCAMApp.py:5005 msgid "Failed to write factory defaults to file." msgstr "" "Error al escribir los valores predeterminados de fábrica en el archivo." -#: FlatCAMApp.py:4981 +#: FlatCAMApp.py:5009 msgid "Factory defaults saved." msgstr "Valores predeterminados de fábrica guardados." -#: FlatCAMApp.py:4991 flatcamGUI/FlatCAMGUI.py:3691 +#: FlatCAMApp.py:5019 flatcamGUI/FlatCAMGUI.py:3926 msgid "Application is saving the project. Please wait ..." msgstr "La aplicación es guardar el proyecto. Por favor espera ..." -#: FlatCAMApp.py:4996 FlatCAMTranslation.py:166 +#: FlatCAMApp.py:5024 FlatCAMTranslation.py:188 msgid "" "There are files/objects modified in FlatCAM. \n" "Do you want to Save the project?" @@ -476,29 +476,29 @@ msgstr "" "Hay archivos / objetos modificados en FlatCAM.\n" "¿Quieres guardar el proyecto?" -#: FlatCAMApp.py:4999 FlatCAMApp.py:9043 FlatCAMTranslation.py:169 +#: FlatCAMApp.py:5027 FlatCAMApp.py:9075 FlatCAMTranslation.py:191 msgid "Save changes" msgstr "Guardar cambios" -#: FlatCAMApp.py:5240 +#: FlatCAMApp.py:5268 msgid "Selected Excellon file extensions registered with FlatCAM." msgstr "Extensiones de archivo Excellon seleccionadas registradas con FlatCAM." -#: FlatCAMApp.py:5262 +#: FlatCAMApp.py:5290 msgid "Selected GCode file extensions registered with FlatCAM." msgstr "Extensiones de archivo GCode seleccionadas registradas con FlatCAM." -#: FlatCAMApp.py:5284 +#: FlatCAMApp.py:5312 msgid "Selected Gerber file extensions registered with FlatCAM." msgstr "Extensiones de archivo Gerber seleccionadas registradas con FlatCAM." -#: FlatCAMApp.py:5472 FlatCAMApp.py:5529 FlatCAMApp.py:5557 +#: FlatCAMApp.py:5500 FlatCAMApp.py:5557 FlatCAMApp.py:5585 msgid "At least two objects are required for join. Objects currently selected" msgstr "" "Se requieren al menos dos objetos para unirse. Objetos actualmente " "seleccionados" -#: FlatCAMApp.py:5481 +#: FlatCAMApp.py:5509 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 " @@ -514,51 +514,51 @@ msgstr "" "pueden perderse y el resultado puede no ser el esperado.\n" "Compruebe el GCODE generado." -#: FlatCAMApp.py:5493 +#: FlatCAMApp.py:5521 msgid "Multigeo. Geometry merging finished" msgstr "Multi Geo. Geometría fusionada terminada" -#: FlatCAMApp.py:5502 +#: FlatCAMApp.py:5530 msgid "Geometry merging finished" msgstr "Geometría fusionada terminada" -#: FlatCAMApp.py:5524 +#: FlatCAMApp.py:5552 msgid "Failed. Excellon joining works only on Excellon objects." msgstr "Ha fallado. La unión de Excellon funciona solo en objetos de Excellon." -#: FlatCAMApp.py:5534 +#: FlatCAMApp.py:5562 msgid "Excellon merging finished" msgstr "Excellon fusión finalizada" -#: FlatCAMApp.py:5552 +#: FlatCAMApp.py:5580 msgid "Failed. Gerber joining works only on Gerber objects." msgstr "Ha fallado. La unión de Gerber funciona solo en objetos de Gerber." -#: FlatCAMApp.py:5562 +#: FlatCAMApp.py:5590 msgid "Gerber merging finished" msgstr "Gerber fusión finalizada" -#: FlatCAMApp.py:5582 FlatCAMApp.py:5617 +#: FlatCAMApp.py:5610 FlatCAMApp.py:5645 msgid "Failed. Select a Geometry Object and try again." msgstr "Ha fallado. Seleccione un objeto de Geometría y vuelva a intentarlo." -#: FlatCAMApp.py:5586 FlatCAMApp.py:5622 +#: FlatCAMApp.py:5614 FlatCAMApp.py:5650 msgid "Expected a FlatCAMGeometry, got" msgstr "Se esperaba un FlatCAMGeometry, se obtuvo" -#: FlatCAMApp.py:5599 +#: FlatCAMApp.py:5627 msgid "A Geometry object was converted to MultiGeo type." msgstr "Un objeto Geometry fue convertido al tipo MultiGeo." -#: FlatCAMApp.py:5637 +#: FlatCAMApp.py:5665 msgid "A Geometry object was converted to SingleGeo type." msgstr "Un objeto Geometry fue convertido al tipo SingleGeo." -#: FlatCAMApp.py:5833 +#: FlatCAMApp.py:5861 msgid "Toggle Units" msgstr "(Escriba ayuda para empezar)" -#: FlatCAMApp.py:5835 +#: FlatCAMApp.py:5863 msgid "" "Changing the units of the project\n" "will scale all objects.\n" @@ -570,50 +570,50 @@ msgstr "" "\n" "¿Quieres continuar?" -#: FlatCAMApp.py:5838 FlatCAMApp.py:7080 FlatCAMApp.py:7156 FlatCAMApp.py:9408 -#: FlatCAMApp.py:9422 FlatCAMApp.py:9776 FlatCAMApp.py:9787 +#: FlatCAMApp.py:5866 FlatCAMApp.py:7108 FlatCAMApp.py:7184 FlatCAMApp.py:9440 +#: FlatCAMApp.py:9454 FlatCAMApp.py:9808 FlatCAMApp.py:9819 msgid "Ok" msgstr "De acuerdo" -#: FlatCAMApp.py:5887 +#: FlatCAMApp.py:5915 msgid "Converted units to" msgstr "Convertir unidades a" -#: FlatCAMApp.py:5901 +#: FlatCAMApp.py:5929 msgid "Units conversion cancelled." msgstr "Conversión de unidades cancelada." -#: FlatCAMApp.py:6774 +#: FlatCAMApp.py:6802 msgid "Detachable Tabs" msgstr "Tabulacion desmontables" -#: FlatCAMApp.py:6993 FlatCAMApp.py:7040 FlatCAMApp.py:7696 FlatCAMApp.py:7759 -#: FlatCAMApp.py:7825 +#: FlatCAMApp.py:7021 FlatCAMApp.py:7068 FlatCAMApp.py:7724 FlatCAMApp.py:7787 +#: FlatCAMApp.py:7853 msgid "Preferences" msgstr "Preferencias" -#: FlatCAMApp.py:6996 +#: FlatCAMApp.py:7024 msgid "Preferences applied." msgstr "Preferencias aplicadas." -#: FlatCAMApp.py:7045 +#: FlatCAMApp.py:7073 msgid "Preferences closed without saving." msgstr "Preferencias cerradas sin guardar." -#: FlatCAMApp.py:7068 flatcamTools/ToolNonCopperClear.py:596 -#: flatcamTools/ToolNonCopperClear.py:992 flatcamTools/ToolPaint.py:507 -#: flatcamTools/ToolSolderPaste.py:562 flatcamTools/ToolSolderPaste.py:889 +#: FlatCAMApp.py:7096 flatcamTools/ToolNonCopperClear.py:597 +#: flatcamTools/ToolNonCopperClear.py:993 flatcamTools/ToolPaint.py:508 +#: flatcamTools/ToolSolderPaste.py:562 flatcamTools/ToolSolderPaste.py:892 msgid "Please enter a tool diameter with non-zero value, in Float format." msgstr "" "Introduzca un diámetro de herramienta con valor distinto de cero, en formato " "Float." -#: FlatCAMApp.py:7073 flatcamTools/ToolNonCopperClear.py:600 -#: flatcamTools/ToolPaint.py:511 flatcamTools/ToolSolderPaste.py:566 +#: FlatCAMApp.py:7101 flatcamTools/ToolNonCopperClear.py:601 +#: flatcamTools/ToolPaint.py:512 flatcamTools/ToolSolderPaste.py:566 msgid "Adding Tool cancelled" msgstr "Añadiendo herramienta cancelada" -#: FlatCAMApp.py:7076 +#: FlatCAMApp.py:7104 msgid "" "Adding Tool works only when Advanced is checked.\n" "Go to Preferences -> General - Show Advanced Options." @@ -621,11 +621,11 @@ msgstr "" "Agregar herramienta solo funciona cuando se selecciona Avanzado.\n" "Vaya a Preferencias -> General - Mostrar opciones avanzadas." -#: FlatCAMApp.py:7151 +#: FlatCAMApp.py:7179 msgid "Delete objects" msgstr "Eliminar objetos" -#: FlatCAMApp.py:7154 +#: FlatCAMApp.py:7182 msgid "" "Are you sure you want to permanently delete\n" "the selected objects?" @@ -633,51 +633,51 @@ msgstr "" "¿Estás seguro de que deseas eliminarlo permanentemente?\n" "los objetos seleccionados?" -#: FlatCAMApp.py:7185 +#: FlatCAMApp.py:7213 msgid "Object(s) deleted" msgstr "Objeto (s) eliminado" -#: FlatCAMApp.py:7189 +#: FlatCAMApp.py:7217 msgid "Failed. No object(s) selected..." msgstr "Ha fallado. Ningún objeto (s) seleccionado ..." -#: FlatCAMApp.py:7191 +#: FlatCAMApp.py:7219 msgid "Save the work in Editor and try again ..." msgstr "Guarda el trabajo en el Editor y vuelve a intentarlo ..." -#: FlatCAMApp.py:7221 +#: FlatCAMApp.py:7249 msgid "Object deleted" msgstr "Objeto eliminado" -#: FlatCAMApp.py:7248 +#: FlatCAMApp.py:7276 msgid "Click to set the origin ..." msgstr "Haga clic para establecer el origen ..." -#: FlatCAMApp.py:7270 +#: FlatCAMApp.py:7298 msgid "Setting Origin..." msgstr "Establecer Origen ..." -#: FlatCAMApp.py:7282 +#: FlatCAMApp.py:7310 msgid "Origin set" msgstr "Conjunto de origen" -#: FlatCAMApp.py:7289 +#: FlatCAMApp.py:7317 msgid "Origin coordinates specified but incomplete." msgstr "Origin coordinates specified but incomplete." -#: FlatCAMApp.py:7347 +#: FlatCAMApp.py:7375 msgid "Jump to ..." msgstr "Salta a ..." -#: FlatCAMApp.py:7348 +#: FlatCAMApp.py:7376 msgid "Enter the coordinates in format X,Y:" msgstr "Introduzca las coordenadas en formato X, Y:" -#: FlatCAMApp.py:7356 +#: FlatCAMApp.py:7384 msgid "Wrong coordinates. Enter coordinates in format: X,Y" msgstr "Coordenadas erróneas. Introduzca las coordenadas en formato: X, Y" -#: FlatCAMApp.py:7424 flatcamEditors/FlatCAMExcEditor.py:3518 +#: FlatCAMApp.py:7452 flatcamEditors/FlatCAMExcEditor.py:3518 #: flatcamEditors/FlatCAMExcEditor.py:3526 #: flatcamEditors/FlatCAMGeoEditor.py:3885 #: flatcamEditors/FlatCAMGeoEditor.py:3900 @@ -686,49 +686,49 @@ msgstr "Coordenadas erróneas. Introduzca las coordenadas en formato: X, Y" #: flatcamEditors/FlatCAMGrbEditor.py:1446 #: flatcamEditors/FlatCAMGrbEditor.py:1704 #: flatcamEditors/FlatCAMGrbEditor.py:4368 -#: flatcamEditors/FlatCAMGrbEditor.py:4383 flatcamGUI/FlatCAMGUI.py:2871 -#: flatcamGUI/FlatCAMGUI.py:2883 +#: flatcamEditors/FlatCAMGrbEditor.py:4383 flatcamGUI/FlatCAMGUI.py:3106 +#: flatcamGUI/FlatCAMGUI.py:3118 msgid "Done." msgstr "Hecho." -#: FlatCAMApp.py:7576 FlatCAMApp.py:7647 +#: FlatCAMApp.py:7604 FlatCAMApp.py:7675 msgid "No object is selected. Select an object and try again." msgstr "" "Ningún objeto está seleccionado. Seleccione un objeto y vuelva a intentarlo." -#: FlatCAMApp.py:7667 +#: FlatCAMApp.py:7695 msgid "" "Aborting. The current task will be gracefully closed as soon as possible..." msgstr "Abortar La tarea actual se cerrará con gracia lo antes posible ..." -#: FlatCAMApp.py:7673 +#: FlatCAMApp.py:7701 msgid "The current task was gracefully closed on user request..." msgstr "La tarea actual se cerró correctamente a petición del usuario ..." -#: FlatCAMApp.py:7756 +#: FlatCAMApp.py:7784 msgid "Preferences edited but not saved." msgstr "Preferencias editadas pero no guardadas." -#: FlatCAMApp.py:7770 FlatCAMApp.py:7782 FlatCAMApp.py:7799 FlatCAMApp.py:7816 -#: FlatCAMApp.py:7876 FlatCAMCommon.py:1161 FlatCAMCommon.py:1336 -#: FlatCAMObj.py:4213 +#: FlatCAMApp.py:7798 FlatCAMApp.py:7810 FlatCAMApp.py:7827 FlatCAMApp.py:7844 +#: FlatCAMApp.py:7904 FlatCAMCommon.py:1161 FlatCAMCommon.py:1336 +#: FlatCAMObj.py:4216 msgid "Tools Database" msgstr "Base de Datos de Herramientas" -#: FlatCAMApp.py:7796 +#: FlatCAMApp.py:7824 msgid "Tools in Tools Database edited but not saved." msgstr "" "Herramientas en la base de datos de herramientas editadas pero no guardadas." -#: FlatCAMApp.py:7820 +#: FlatCAMApp.py:7848 msgid "Tool from DB added in Tool Table." msgstr "Herramienta de DB agregada en la Tabla de herramientas." -#: FlatCAMApp.py:7822 +#: FlatCAMApp.py:7850 msgid "Adding tool from DB is not allowed for this object." msgstr "No se permite agregar herramientas desde DB para este objeto." -#: FlatCAMApp.py:7856 +#: FlatCAMApp.py:7884 msgid "" "One or more values are changed.\n" "Do you want to save the Preferences?" @@ -736,11 +736,11 @@ msgstr "" "Uno o más valores son cambiados.\n" "¿Quieres guardar las preferencias?" -#: FlatCAMApp.py:7858 flatcamGUI/FlatCAMGUI.py:220 +#: FlatCAMApp.py:7886 flatcamGUI/FlatCAMGUI.py:222 msgid "Save Preferences" msgstr "Guardar Preferencias" -#: FlatCAMApp.py:7882 +#: FlatCAMApp.py:7910 msgid "" "One or more Tools are edited.\n" "Do you want to update the Tools Database?" @@ -748,95 +748,95 @@ msgstr "" "Se editan una o más herramientas.\n" "¿Desea actualizar la base de datos de herramientas?" -#: FlatCAMApp.py:7884 +#: FlatCAMApp.py:7912 msgid "Save Tools Database" msgstr "Guardar base de datos de herramientas" -#: FlatCAMApp.py:7903 FlatCAMApp.py:10015 FlatCAMObj.py:6456 +#: FlatCAMApp.py:7931 FlatCAMApp.py:10047 FlatCAMObj.py:6459 msgid "Code Editor" msgstr "Editor de código" -#: FlatCAMApp.py:7921 +#: FlatCAMApp.py:7949 msgid "No object selected to Flip on Y axis." msgstr "Ningún objeto seleccionado para Voltear en el eje Y." -#: FlatCAMApp.py:7947 +#: FlatCAMApp.py:7975 msgid "Flip on Y axis done." msgstr "Voltear sobre el eje Y hecho." -#: FlatCAMApp.py:7949 FlatCAMApp.py:7991 +#: FlatCAMApp.py:7977 FlatCAMApp.py:8019 #: flatcamEditors/FlatCAMGrbEditor.py:5773 msgid "Flip action was not executed." msgstr "La acción de voltear no se ejecutó." -#: FlatCAMApp.py:7963 +#: FlatCAMApp.py:7991 msgid "No object selected to Flip on X axis." msgstr "Ningún objeto seleccionado para Voltear en el eje X." -#: FlatCAMApp.py:7989 +#: FlatCAMApp.py:8017 msgid "Flip on X axis done." msgstr "Voltear sobre el eje X hecho." -#: FlatCAMApp.py:8005 +#: FlatCAMApp.py:8033 msgid "No object selected to Rotate." msgstr "Ningún objeto seleccionado para rotar." -#: FlatCAMApp.py:8008 FlatCAMApp.py:8055 FlatCAMApp.py:8088 +#: FlatCAMApp.py:8036 FlatCAMApp.py:8083 FlatCAMApp.py:8116 msgid "Transform" msgstr "Transformar" -#: FlatCAMApp.py:8008 FlatCAMApp.py:8055 FlatCAMApp.py:8088 +#: FlatCAMApp.py:8036 FlatCAMApp.py:8083 FlatCAMApp.py:8116 msgid "Enter the Angle value:" msgstr "Ingrese el valor del ángulo:" -#: FlatCAMApp.py:8039 +#: FlatCAMApp.py:8067 msgid "Rotation done." msgstr "Rotación hecha." -#: FlatCAMApp.py:8041 +#: FlatCAMApp.py:8069 msgid "Rotation movement was not executed." msgstr "El movimiento de rotación no se ejecutó." -#: FlatCAMApp.py:8053 +#: FlatCAMApp.py:8081 msgid "No object selected to Skew/Shear on X axis." msgstr "Ningún objeto seleccionado para sesgar / cortar en el eje X." -#: FlatCAMApp.py:8075 +#: FlatCAMApp.py:8103 msgid "Skew on X axis done." msgstr "Sesgar en el eje X hecho." -#: FlatCAMApp.py:8086 +#: FlatCAMApp.py:8114 msgid "No object selected to Skew/Shear on Y axis." msgstr "Ningún objeto seleccionado para sesgar / cortar en el eje Y." -#: FlatCAMApp.py:8108 +#: FlatCAMApp.py:8136 msgid "Skew on Y axis done." msgstr "Sesgar en el eje Y hecho." -#: FlatCAMApp.py:8256 FlatCAMApp.py:8303 flatcamGUI/FlatCAMGUI.py:429 -#: flatcamGUI/FlatCAMGUI.py:1465 +#: FlatCAMApp.py:8284 FlatCAMApp.py:8331 flatcamGUI/FlatCAMGUI.py:451 +#: flatcamGUI/FlatCAMGUI.py:1581 msgid "Select All" msgstr "Seleccionar todo" -#: FlatCAMApp.py:8260 FlatCAMApp.py:8307 flatcamGUI/FlatCAMGUI.py:432 +#: FlatCAMApp.py:8288 FlatCAMApp.py:8335 flatcamGUI/FlatCAMGUI.py:453 msgid "Deselect All" msgstr "Deseleccionar todo" -#: FlatCAMApp.py:8323 +#: FlatCAMApp.py:8351 msgid "All objects are selected." msgstr "Todos los objetos están seleccionados." -#: FlatCAMApp.py:8333 +#: FlatCAMApp.py:8361 msgid "Objects selection is cleared." msgstr "La selección de objetos se borra." -#: FlatCAMApp.py:8349 flatcamGUI/FlatCAMGUI.py:1458 +#: FlatCAMApp.py:8378 flatcamGUI/FlatCAMGUI.py:1574 msgid "Grid On/Off" msgstr "Grid On/Off" -#: FlatCAMApp.py:8362 flatcamEditors/FlatCAMGeoEditor.py:940 +#: FlatCAMApp.py:8393 flatcamEditors/FlatCAMGeoEditor.py:940 #: flatcamEditors/FlatCAMGrbEditor.py:2503 -#: flatcamEditors/FlatCAMGrbEditor.py:5346 flatcamGUI/ObjectUI.py:1265 +#: flatcamEditors/FlatCAMGrbEditor.py:5346 flatcamGUI/ObjectUI.py:1304 #: flatcamTools/ToolDblSided.py:185 flatcamTools/ToolDblSided.py:238 #: flatcamTools/ToolNonCopperClear.py:286 flatcamTools/ToolPaint.py:188 #: flatcamTools/ToolSolderPaste.py:121 flatcamTools/ToolSolderPaste.py:591 @@ -844,78 +844,78 @@ msgstr "Grid On/Off" msgid "Add" msgstr "Añadir" -#: FlatCAMApp.py:8363 FlatCAMObj.py:3900 +#: FlatCAMApp.py:8395 FlatCAMObj.py:3902 #: flatcamEditors/FlatCAMGrbEditor.py:2508 -#: 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 +#: flatcamEditors/FlatCAMGrbEditor.py:2656 flatcamGUI/FlatCAMGUI.py:654 +#: flatcamGUI/FlatCAMGUI.py:965 flatcamGUI/FlatCAMGUI.py:1987 +#: flatcamGUI/FlatCAMGUI.py:2130 flatcamGUI/FlatCAMGUI.py:2524 +#: flatcamGUI/ObjectUI.py:1330 flatcamTools/ToolNonCopperClear.py:298 #: flatcamTools/ToolPaint.py:200 flatcamTools/ToolSolderPaste.py:127 -#: flatcamTools/ToolSolderPaste.py:593 +#: flatcamTools/ToolSolderPaste.py:594 msgid "Delete" msgstr "Borrar" -#: FlatCAMApp.py:8376 +#: FlatCAMApp.py:8408 msgid "New Grid ..." msgstr "Nueva rejilla ..." -#: FlatCAMApp.py:8377 +#: FlatCAMApp.py:8409 msgid "Enter a Grid Value:" msgstr "Introduzca un valor de cuadrícula:" -#: FlatCAMApp.py:8385 FlatCAMApp.py:8412 +#: FlatCAMApp.py:8417 FlatCAMApp.py:8444 msgid "Please enter a grid value with non-zero value, in Float format." msgstr "" "Introduzca un valor de cuadrícula con un valor distinto de cero, en formato " "Float." -#: FlatCAMApp.py:8391 +#: FlatCAMApp.py:8423 msgid "New Grid added" msgstr "Nueva rejilla" -#: FlatCAMApp.py:8394 +#: FlatCAMApp.py:8426 msgid "Grid already exists" msgstr "La rejilla ya existe" -#: FlatCAMApp.py:8397 +#: FlatCAMApp.py:8429 msgid "Adding New Grid cancelled" msgstr "Agregar nueva cuadrícula cancelado" -#: FlatCAMApp.py:8419 +#: FlatCAMApp.py:8451 msgid " Grid Value does not exist" msgstr " El valor de cuadrícula no existe" -#: FlatCAMApp.py:8422 +#: FlatCAMApp.py:8454 msgid "Grid Value deleted" msgstr "Valor de cuadrícula eliminado" -#: FlatCAMApp.py:8425 +#: FlatCAMApp.py:8457 msgid "Delete Grid value cancelled" msgstr "Eliminar el valor de cuadrícula cancelado" -#: FlatCAMApp.py:8431 +#: FlatCAMApp.py:8463 msgid "Key Shortcut List" msgstr "Lista de atajos de teclas" -#: FlatCAMApp.py:8465 +#: FlatCAMApp.py:8497 msgid " No object selected to copy it's name" msgstr " Ningún objeto seleccionado para copiar su nombre" -#: FlatCAMApp.py:8469 +#: FlatCAMApp.py:8501 msgid "Name copied on clipboard ..." msgstr "Nombre copiado en el portapapeles ..." -#: FlatCAMApp.py:8666 flatcamEditors/FlatCAMGrbEditor.py:4300 +#: FlatCAMApp.py:8698 flatcamEditors/FlatCAMGrbEditor.py:4300 msgid "Coordinates copied to clipboard." msgstr "Coordenadas copiadas al portapapeles." -#: 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 +#: FlatCAMApp.py:8912 FlatCAMApp.py:8918 FlatCAMApp.py:8924 FlatCAMApp.py:8930 +#: ObjectCollection.py:792 ObjectCollection.py:798 ObjectCollection.py:804 +#: ObjectCollection.py:810 ObjectCollection.py:816 ObjectCollection.py:822 msgid "selected" msgstr "seleccionado" -#: FlatCAMApp.py:9040 +#: FlatCAMApp.py:9072 msgid "" "There are files/objects opened in FlatCAM.\n" "Creating a New project will delete them.\n" @@ -925,368 +925,368 @@ msgstr "" "Crear un nuevo proyecto los borrará.\n" "¿Quieres guardar el proyecto?" -#: FlatCAMApp.py:9062 +#: FlatCAMApp.py:9094 msgid "New Project created" msgstr "Nuevo proyecto creado" -#: FlatCAMApp.py:9197 FlatCAMApp.py:9201 flatcamGUI/FlatCAMGUI.py:696 -#: flatcamGUI/FlatCAMGUI.py:2149 +#: FlatCAMApp.py:9229 FlatCAMApp.py:9233 flatcamGUI/FlatCAMGUI.py:741 +#: flatcamGUI/FlatCAMGUI.py:2317 msgid "Open Gerber" msgstr "Abrir gerber" -#: FlatCAMApp.py:9208 +#: FlatCAMApp.py:9240 msgid "Opening Gerber file." msgstr "Abriendo el archivo Gerber." -#: FlatCAMApp.py:9214 +#: FlatCAMApp.py:9246 msgid "Open Gerber cancelled." msgstr "Abierto Gerber cancelado." -#: FlatCAMApp.py:9235 FlatCAMApp.py:9239 flatcamGUI/FlatCAMGUI.py:697 -#: flatcamGUI/FlatCAMGUI.py:2150 +#: FlatCAMApp.py:9267 FlatCAMApp.py:9271 flatcamGUI/FlatCAMGUI.py:743 +#: flatcamGUI/FlatCAMGUI.py:2319 msgid "Open Excellon" msgstr "Abierto Excellon" -#: FlatCAMApp.py:9245 +#: FlatCAMApp.py:9277 msgid "Opening Excellon file." msgstr "Abriendo el archivo Excellon." -#: FlatCAMApp.py:9251 +#: FlatCAMApp.py:9283 msgid " Open Excellon cancelled." msgstr " Abierto Excellon cancelado." -#: FlatCAMApp.py:9275 FlatCAMApp.py:9279 +#: FlatCAMApp.py:9307 FlatCAMApp.py:9311 msgid "Open G-Code" msgstr "Código G abierto" -#: FlatCAMApp.py:9286 +#: FlatCAMApp.py:9318 msgid "Opening G-Code file." msgstr "Abriendo el archivo G-code." -#: FlatCAMApp.py:9292 +#: FlatCAMApp.py:9324 msgid "Open G-Code cancelled." msgstr "Abierto G-Code cancelado." -#: FlatCAMApp.py:9310 FlatCAMApp.py:9313 flatcamGUI/FlatCAMGUI.py:1467 +#: FlatCAMApp.py:9342 FlatCAMApp.py:9345 flatcamGUI/FlatCAMGUI.py:1583 msgid "Open Project" msgstr "Proyecto abierto" -#: FlatCAMApp.py:9322 +#: FlatCAMApp.py:9354 msgid "Open Project cancelled." msgstr "Proyecto abierto cancelado." -#: FlatCAMApp.py:9346 FlatCAMApp.py:9350 +#: FlatCAMApp.py:9378 FlatCAMApp.py:9382 msgid "Open HPGL2" msgstr "Abra HPGL2" -#: FlatCAMApp.py:9357 +#: FlatCAMApp.py:9389 msgid "Opening HPGL2 file." msgstr "Abrir el archivo HPGL2." -#: FlatCAMApp.py:9362 +#: FlatCAMApp.py:9394 msgid "Open HPGL2 file cancelled." msgstr "Abrir el archivo HPGL2 cancelado." -#: FlatCAMApp.py:9380 FlatCAMApp.py:9383 +#: FlatCAMApp.py:9412 FlatCAMApp.py:9415 msgid "Open Configuration File" msgstr "Abrir archivo de configuración" -#: FlatCAMApp.py:9388 +#: FlatCAMApp.py:9420 msgid "Open Config cancelled." msgstr "Configuración abierta cancelada." -#: FlatCAMApp.py:9404 FlatCAMApp.py:9772 FlatCAMApp.py:10246 +#: FlatCAMApp.py:9436 FlatCAMApp.py:9804 FlatCAMApp.py:10278 msgid "No object selected." msgstr "Ningún objeto seleccionado." -#: FlatCAMApp.py:9405 FlatCAMApp.py:9773 +#: FlatCAMApp.py:9437 FlatCAMApp.py:9805 msgid "Please Select a Geometry object to export" msgstr "Seleccione un objeto de geometría para exportar" -#: FlatCAMApp.py:9419 +#: FlatCAMApp.py:9451 msgid "Only Geometry, Gerber and CNCJob objects can be used." msgstr "Solo se pueden utilizar objetos Geometry, Gerber y CNCJob." -#: FlatCAMApp.py:9432 FlatCAMApp.py:9436 flatcamTools/ToolQRCode.py:827 +#: FlatCAMApp.py:9464 FlatCAMApp.py:9468 flatcamTools/ToolQRCode.py:827 #: flatcamTools/ToolQRCode.py:831 msgid "Export SVG" msgstr "Exportar SVG" -#: FlatCAMApp.py:9442 flatcamTools/ToolQRCode.py:836 +#: FlatCAMApp.py:9474 flatcamTools/ToolQRCode.py:836 msgid " Export SVG cancelled." msgstr " Exportar SVG cancelado." -#: FlatCAMApp.py:9463 +#: FlatCAMApp.py:9495 msgid "Data must be a 3D array with last dimension 3 or 4" msgstr "Los datos deben ser una matriz 3D con la última dimensión 3 o 4" -#: FlatCAMApp.py:9469 FlatCAMApp.py:9473 +#: FlatCAMApp.py:9501 FlatCAMApp.py:9505 msgid "Export PNG Image" msgstr "Exportar imagen PNG" -#: FlatCAMApp.py:9478 +#: FlatCAMApp.py:9510 msgid "Export PNG cancelled." msgstr "Exportación PNG cancelada." -#: FlatCAMApp.py:9502 +#: FlatCAMApp.py:9534 msgid "No object selected. Please select an Gerber object to export." msgstr "" "Ningún objeto seleccionado. Por favor, seleccione un objeto Gerber para " "exportar." -#: FlatCAMApp.py:9508 FlatCAMApp.py:9731 +#: FlatCAMApp.py:9540 FlatCAMApp.py:9763 msgid "Failed. Only Gerber objects can be saved as Gerber files..." msgstr "" "Ha fallado. Solo los objetos Gerber se pueden guardar como archivos " "Gerber ..." -#: FlatCAMApp.py:9520 +#: FlatCAMApp.py:9552 msgid "Save Gerber source file" msgstr "Guardar el archivo fuente de Gerber" -#: FlatCAMApp.py:9526 +#: FlatCAMApp.py:9558 msgid "Save Gerber source file cancelled." msgstr "Guardar el archivo fuente de Gerber cancelado." -#: FlatCAMApp.py:9546 +#: FlatCAMApp.py:9578 msgid "No object selected. Please select an Script object to export." msgstr "Ningún objeto seleccionado. Seleccione un objeto Script para exportar." -#: FlatCAMApp.py:9552 +#: FlatCAMApp.py:9584 msgid "Failed. Only Script objects can be saved as TCL Script files..." msgstr "" "Ha fallado. Solo los objetos Script se pueden guardar como archivos TCL " "Script ..." -#: FlatCAMApp.py:9564 +#: FlatCAMApp.py:9596 msgid "Save Script source file" msgstr "Guardar archivo fuente de script" -#: FlatCAMApp.py:9570 +#: FlatCAMApp.py:9602 msgid "Save Script source file cancelled." msgstr "Guardar archivo fuente de script cancelado." -#: FlatCAMApp.py:9590 +#: FlatCAMApp.py:9622 msgid "No object selected. Please select an Document object to export." msgstr "" "Ningún objeto seleccionado. Seleccione un objeto de documento para exportar." -#: FlatCAMApp.py:9596 +#: FlatCAMApp.py:9628 msgid "Failed. Only Document objects can be saved as Document files..." msgstr "" "Ha fallado. Solo los objetos de documento se pueden guardar como archivos de " "documento ..." -#: FlatCAMApp.py:9608 +#: FlatCAMApp.py:9640 msgid "Save Document source file" msgstr "Guardar archivo fuente del Documento" -#: FlatCAMApp.py:9614 +#: FlatCAMApp.py:9646 msgid "Save Document source file cancelled." msgstr "Guardar Documento fuente archivo cancelado." -#: FlatCAMApp.py:9634 +#: FlatCAMApp.py:9666 msgid "No object selected. Please select an Excellon object to export." msgstr "" "Ningún objeto seleccionado. Por favor, seleccione un objeto Excellon para " "exportar." -#: FlatCAMApp.py:9640 FlatCAMApp.py:9684 FlatCAMApp.py:10422 +#: FlatCAMApp.py:9672 FlatCAMApp.py:9716 FlatCAMApp.py:10454 msgid "Failed. Only Excellon objects can be saved as Excellon files..." msgstr "" "Ha fallado. Solo los objetos Excellon se pueden guardar como archivos " "Excellon ..." -#: FlatCAMApp.py:9648 FlatCAMApp.py:9652 +#: FlatCAMApp.py:9680 FlatCAMApp.py:9684 msgid "Save Excellon source file" msgstr "Guardar el archivo fuente de Excellon" -#: FlatCAMApp.py:9658 +#: FlatCAMApp.py:9690 msgid "Saving Excellon source file cancelled." msgstr "Guardando el archivo fuente Excellon cancelado." -#: FlatCAMApp.py:9678 +#: FlatCAMApp.py:9710 msgid "No object selected. Please Select an Excellon object to export." msgstr "" "Ningún objeto seleccionado. Seleccione un objeto Excellon para exportar." -#: FlatCAMApp.py:9692 FlatCAMApp.py:9696 +#: FlatCAMApp.py:9724 FlatCAMApp.py:9728 msgid "Export Excellon" msgstr "Exportar Excellon" -#: FlatCAMApp.py:9702 +#: FlatCAMApp.py:9734 msgid "Export Excellon cancelled." msgstr "Exportación Excellon cancelada." -#: FlatCAMApp.py:9725 +#: FlatCAMApp.py:9757 msgid "No object selected. Please Select an Gerber object to export." msgstr "Ningún objeto seleccionado. Seleccione un objeto Gerber para exportar." -#: FlatCAMApp.py:9739 FlatCAMApp.py:9743 +#: FlatCAMApp.py:9771 FlatCAMApp.py:9775 msgid "Export Gerber" msgstr "Gerber Exportación" -#: FlatCAMApp.py:9749 +#: FlatCAMApp.py:9781 msgid "Export Gerber cancelled." msgstr "Exportación Gerber cancelada." -#: FlatCAMApp.py:9784 +#: FlatCAMApp.py:9816 msgid "Only Geometry objects can be used." msgstr "Solo se pueden utilizar objetos de Geometría." -#: FlatCAMApp.py:9798 FlatCAMApp.py:9802 +#: FlatCAMApp.py:9830 FlatCAMApp.py:9834 msgid "Export DXF" msgstr "Exportar DXF" -#: FlatCAMApp.py:9809 +#: FlatCAMApp.py:9841 msgid "Export DXF cancelled." msgstr "Exportación DXF cancelada." -#: FlatCAMApp.py:9829 FlatCAMApp.py:9832 +#: FlatCAMApp.py:9861 FlatCAMApp.py:9864 msgid "Import SVG" msgstr "Importar SVG" -#: FlatCAMApp.py:9842 +#: FlatCAMApp.py:9874 msgid "Open SVG cancelled." msgstr "Abrir SVG cancelado." -#: FlatCAMApp.py:9861 FlatCAMApp.py:9865 +#: FlatCAMApp.py:9893 FlatCAMApp.py:9897 msgid "Import DXF" msgstr "Importar DXF" -#: FlatCAMApp.py:9875 +#: FlatCAMApp.py:9907 msgid "Open DXF cancelled." msgstr "Abrir DXF cancelado." -#: FlatCAMApp.py:9917 +#: FlatCAMApp.py:9949 msgid "Viewing the source code of the selected object." msgstr "Ver el código fuente del objeto seleccionado." -#: FlatCAMApp.py:9918 FlatCAMObj.py:6442 FlatCAMObj.py:7043 +#: FlatCAMApp.py:9950 FlatCAMObj.py:6445 FlatCAMObj.py:7046 msgid "Loading..." msgstr "Cargando..." -#: FlatCAMApp.py:9924 FlatCAMApp.py:9928 +#: FlatCAMApp.py:9956 FlatCAMApp.py:9960 msgid "Select an Gerber or Excellon file to view it's source file." msgstr "Seleccione un archivo Gerber o Excellon para ver su archivo fuente." -#: FlatCAMApp.py:9942 +#: FlatCAMApp.py:9974 msgid "Source Editor" msgstr "Editor de fuente" -#: FlatCAMApp.py:9982 FlatCAMApp.py:9989 +#: FlatCAMApp.py:10014 FlatCAMApp.py:10021 msgid "There is no selected object for which to see it's source file code." msgstr "No hay ningún objeto seleccionado para el cual ver su código fuente." -#: FlatCAMApp.py:10001 +#: FlatCAMApp.py:10033 msgid "Failed to load the source code for the selected object" msgstr "Error al cargar el código fuente para el objeto seleccionado" -#: FlatCAMApp.py:10043 +#: FlatCAMApp.py:10075 msgid "New TCL script file created in Code Editor." msgstr "Nuevo archivo de script TCL creado en Code Editor." -#: FlatCAMApp.py:10081 FlatCAMApp.py:10083 +#: FlatCAMApp.py:10113 FlatCAMApp.py:10115 msgid "Open TCL script" msgstr "Abrir script TCL" -#: FlatCAMApp.py:10087 +#: FlatCAMApp.py:10119 msgid "Open TCL script cancelled." msgstr "Abrir el script TCL cancelado." -#: FlatCAMApp.py:10111 +#: FlatCAMApp.py:10143 msgid "Executing FlatCAMScript file." msgstr "Ejecutando archivo FlatCAMScript." -#: FlatCAMApp.py:10118 FlatCAMApp.py:10121 +#: FlatCAMApp.py:10150 FlatCAMApp.py:10153 msgid "Run TCL script" msgstr "Ejecutar script TCL" -#: FlatCAMApp.py:10131 +#: FlatCAMApp.py:10163 msgid "Run TCL script cancelled." msgstr "Ejecutar script TCL cancelado." -#: FlatCAMApp.py:10147 +#: FlatCAMApp.py:10179 msgid "TCL script file opened in Code Editor and executed." msgstr "El archivo de script TCL se abrió en el Editor de código y se ejecutó." -#: FlatCAMApp.py:10198 FlatCAMApp.py:10204 +#: FlatCAMApp.py:10230 FlatCAMApp.py:10236 msgid "Save Project As ..." msgstr "Guardar proyecto como ..." -#: FlatCAMApp.py:10200 flatcamGUI/FlatCAMGUI.py:909 -#: flatcamGUI/FlatCAMGUI.py:1899 +#: FlatCAMApp.py:10232 flatcamGUI/FlatCAMGUI.py:1025 +#: flatcamGUI/FlatCAMGUI.py:2022 msgid "Project" msgstr "Proyecto" -#: FlatCAMApp.py:10209 +#: FlatCAMApp.py:10241 msgid "Save Project cancelled." msgstr "Guardar Proyecto cancelado." -#: FlatCAMApp.py:10216 +#: FlatCAMApp.py:10248 msgid "The object is used by another application." msgstr "El objeto es utilizado por otra aplicación." -#: FlatCAMApp.py:10252 FlatCAMApp.py:10259 flatcamGUI/FlatCAMGUI.py:261 +#: FlatCAMApp.py:10284 FlatCAMApp.py:10291 flatcamGUI/FlatCAMGUI.py:265 msgid "Save Object as PDF ..." msgstr "Guardar objeto como PDF ..." -#: FlatCAMApp.py:10264 +#: FlatCAMApp.py:10296 msgid "Save Object PDF cancelled." msgstr "Guardar objeto PDF cancelado." -#: FlatCAMApp.py:10302 +#: FlatCAMApp.py:10334 msgid "Exporting SVG" msgstr "Exportando SVG" -#: FlatCAMApp.py:10346 +#: FlatCAMApp.py:10378 msgid "SVG file exported to" msgstr "Archivo SVG exportado a" -#: FlatCAMApp.py:10371 +#: FlatCAMApp.py:10403 msgid "" "Save cancelled because source file is empty. Try to export the Gerber file." msgstr "" "Guardar cancelado porque el archivo fuente está vacío. Intenta exportar el " "archivo Gerber." -#: FlatCAMApp.py:10517 +#: FlatCAMApp.py:10549 msgid "Excellon file exported to" msgstr "Archivo Excellon exportado a" -#: FlatCAMApp.py:10526 +#: FlatCAMApp.py:10558 msgid "Exporting Excellon" msgstr "Exportando excellon" -#: FlatCAMApp.py:10532 FlatCAMApp.py:10540 +#: FlatCAMApp.py:10564 FlatCAMApp.py:10572 msgid "Could not export Excellon file." msgstr "No se pudo exportar el archivo Excellon." -#: FlatCAMApp.py:10656 +#: FlatCAMApp.py:10688 msgid "Gerber file exported to" msgstr "Archivo Gerber exportado a" -#: FlatCAMApp.py:10664 +#: FlatCAMApp.py:10696 msgid "Exporting Gerber" msgstr "Gerber exportador" -#: FlatCAMApp.py:10670 FlatCAMApp.py:10678 +#: FlatCAMApp.py:10702 FlatCAMApp.py:10710 msgid "Could not export Gerber file." msgstr "No se pudo exportar el archivo Gerber." -#: FlatCAMApp.py:10712 +#: FlatCAMApp.py:10744 msgid "DXF file exported to" msgstr "Archivo DXF exportado a" -#: FlatCAMApp.py:10718 +#: FlatCAMApp.py:10750 msgid "Exporting DXF" msgstr "Exportando DXF" -#: FlatCAMApp.py:10723 FlatCAMApp.py:10730 +#: FlatCAMApp.py:10755 FlatCAMApp.py:10762 msgid "Could not export DXF file." msgstr "No se pudo exportar el archivo DXF." -#: FlatCAMApp.py:10753 FlatCAMApp.py:10796 flatcamTools/ToolImage.py:278 +#: FlatCAMApp.py:10785 FlatCAMApp.py:10828 flatcamTools/ToolImage.py:278 msgid "" "Not supported type is picked as parameter. Only Geometry and Gerber are " "supported" @@ -1294,89 +1294,89 @@ msgstr "" "El tipo no soportado se elige como parámetro. Solo Geometría y Gerber son " "compatibles" -#: FlatCAMApp.py:10763 +#: FlatCAMApp.py:10795 msgid "Importing SVG" msgstr "Importando SVG" -#: 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 +#: FlatCAMApp.py:10806 FlatCAMApp.py:10848 FlatCAMApp.py:10907 +#: FlatCAMApp.py:10974 FlatCAMApp.py:11037 FlatCAMApp.py:11104 +#: FlatCAMApp.py:11142 flatcamTools/ToolImage.py:298 #: flatcamTools/ToolPDF.py:225 msgid "Opened" msgstr "Abierto" -#: FlatCAMApp.py:10805 +#: FlatCAMApp.py:10837 msgid "Importing DXF" msgstr "Importando DXF" -#: FlatCAMApp.py:10841 FlatCAMApp.py:11031 +#: FlatCAMApp.py:10873 FlatCAMApp.py:11063 msgid "Failed to open file" msgstr "Fallo al abrir el archivo" -#: FlatCAMApp.py:10844 FlatCAMApp.py:11034 +#: FlatCAMApp.py:10876 FlatCAMApp.py:11066 msgid "Failed to parse file" msgstr "Error al analizar el archivo" -#: FlatCAMApp.py:10849 FlatCAMApp.py:10910 FlatCAMApp.py:11039 -#: FlatCAMObj.py:5004 flatcamEditors/FlatCAMGrbEditor.py:4110 +#: FlatCAMApp.py:10881 FlatCAMApp.py:10942 FlatCAMApp.py:11071 +#: FlatCAMObj.py:5007 flatcamEditors/FlatCAMGrbEditor.py:4110 #: flatcamTools/ToolPcbWizard.py:437 msgid "An internal error has occurred. See shell.\n" msgstr "Ha ocurrido un error interno. Ver concha\n" -#: FlatCAMApp.py:10856 +#: FlatCAMApp.py:10888 msgid "Object is not Gerber file or empty. Aborting object creation." msgstr "" "El objeto no es un archivo Gerber o está vacío. Anulando la creación de " "objetos." -#: FlatCAMApp.py:10861 +#: FlatCAMApp.py:10893 msgid "Opening Gerber" msgstr "Apertura de gerber" -#: FlatCAMApp.py:10868 +#: FlatCAMApp.py:10900 msgid " Open Gerber failed. Probable not a Gerber file." msgstr " Gerber abierto fracasó. Probablemente no sea un archivo de Gerber." -#: FlatCAMApp.py:10900 flatcamTools/ToolPcbWizard.py:427 +#: FlatCAMApp.py:10932 flatcamTools/ToolPcbWizard.py:427 msgid "This is not Excellon file." msgstr "Este no es un archivo de Excellon." -#: FlatCAMApp.py:10904 +#: FlatCAMApp.py:10936 msgid "Cannot open file" msgstr "No se puede abrir el archivo" -#: FlatCAMApp.py:10924 flatcamTools/ToolPDF.py:275 +#: FlatCAMApp.py:10956 flatcamTools/ToolPDF.py:275 #: flatcamTools/ToolPcbWizard.py:451 msgid "No geometry found in file" msgstr "No se encontró geometría en el archivo" -#: FlatCAMApp.py:10927 +#: FlatCAMApp.py:10959 msgid "Opening Excellon." msgstr "Apertura Excellon." -#: FlatCAMApp.py:10934 +#: FlatCAMApp.py:10966 msgid "Open Excellon file failed. Probable not an Excellon file." msgstr "" "Error al abrir el archivo Excellon. Probablemente no sea un archivo de " "Excellon." -#: FlatCAMApp.py:10965 +#: FlatCAMApp.py:10997 msgid "Reading GCode file" msgstr "Lectura de archivo GCode" -#: FlatCAMApp.py:10972 +#: FlatCAMApp.py:11004 msgid "Failed to open" msgstr "Falló al abrir" -#: FlatCAMApp.py:10980 +#: FlatCAMApp.py:11012 msgid "This is not GCODE" msgstr "Esto no es GCODE" -#: FlatCAMApp.py:10985 +#: FlatCAMApp.py:11017 msgid "Opening G-Code." msgstr "Apertura del código G." -#: FlatCAMApp.py:10994 +#: FlatCAMApp.py:11026 msgid "" "Failed to create CNCJob Object. Probable not a GCode file. Try to load it " "from File menu.\n" @@ -1388,69 +1388,69 @@ msgstr "" "Intento de crear un objeto FlatCAM CNCJob desde el archivo G-Code falló " "durante el procesamiento" -#: FlatCAMApp.py:11053 +#: FlatCAMApp.py:11085 msgid "Object is not HPGL2 file or empty. Aborting object creation." msgstr "" "El objeto no es un archivo HPGL2 o está vacío. Anulando la creación de " "objetos." -#: FlatCAMApp.py:11058 +#: FlatCAMApp.py:11090 msgid "Opening HPGL2" msgstr "Apertura de HPGL2" -#: FlatCAMApp.py:11065 +#: FlatCAMApp.py:11097 msgid " Open HPGL2 failed. Probable not a HPGL2 file." msgstr " Abrir HPGL2 falló. Probablemente no sea un archivo HPGL2." -#: FlatCAMApp.py:11086 +#: FlatCAMApp.py:11118 msgid "Opening TCL Script..." msgstr "Abriendo TCL Script ..." -#: FlatCAMApp.py:11094 +#: FlatCAMApp.py:11126 msgid "TCL script file opened in Code Editor." msgstr "Archivo de script TCL abierto en Code Editor." -#: FlatCAMApp.py:11097 +#: FlatCAMApp.py:11129 msgid "Failed to open TCL Script." msgstr "Error al abrir la secuencia de comandos TCL." -#: FlatCAMApp.py:11125 +#: FlatCAMApp.py:11157 msgid "Opening FlatCAM Config file." msgstr "Abrir el archivo de configuración de FlatCAM." -#: FlatCAMApp.py:11153 +#: FlatCAMApp.py:11185 msgid "Failed to open config file" msgstr "Error al abrir el archivo de configuración" -#: FlatCAMApp.py:11179 +#: FlatCAMApp.py:11211 msgid "Loading Project ... Please Wait ..." msgstr "Cargando proyecto ... Espere ..." -#: FlatCAMApp.py:11184 +#: FlatCAMApp.py:11216 msgid "Opening FlatCAM Project file." msgstr "Apertura del archivo del proyecto FlatCAM." -#: FlatCAMApp.py:11194 FlatCAMApp.py:11212 +#: FlatCAMApp.py:11226 FlatCAMApp.py:11244 msgid "Failed to open project file" msgstr "Error al abrir el archivo del proyecto" -#: FlatCAMApp.py:11246 +#: FlatCAMApp.py:11278 msgid "Loading Project ... restoring" msgstr "Cargando Proyecto ... restaurando" -#: FlatCAMApp.py:11255 +#: FlatCAMApp.py:11287 msgid "Project loaded from" msgstr "Proyecto cargado desde" -#: FlatCAMApp.py:11318 +#: FlatCAMApp.py:11350 msgid "Redrawing all objects" msgstr "Redibujando todos los objetos" -#: FlatCAMApp.py:11350 +#: FlatCAMApp.py:11382 msgid "Available commands:\n" msgstr "Comandos disponibles:\n" -#: FlatCAMApp.py:11352 +#: FlatCAMApp.py:11384 msgid "" "\n" "\n" @@ -1462,51 +1462,51 @@ msgstr "" "Escriba help para su uso.\n" "Ejemplo: help open_gerber" -#: FlatCAMApp.py:11502 +#: FlatCAMApp.py:11534 msgid "Shows list of commands." msgstr "Muestra la lista de comandos." -#: FlatCAMApp.py:11564 +#: FlatCAMApp.py:11596 msgid "Failed to load recent item list." msgstr "Error al cargar la lista de elementos recientes." -#: FlatCAMApp.py:11572 +#: FlatCAMApp.py:11604 msgid "Failed to parse recent item list." msgstr "Error al analizar la lista de elementos recientes." -#: FlatCAMApp.py:11583 +#: FlatCAMApp.py:11615 msgid "Failed to load recent projects item list." msgstr "Error al cargar la lista de elementos de proyectos recientes." -#: FlatCAMApp.py:11591 +#: FlatCAMApp.py:11623 msgid "Failed to parse recent project item list." msgstr "Error al analizar la lista de elementos del proyecto reciente." -#: FlatCAMApp.py:11650 +#: FlatCAMApp.py:11683 msgid "Clear Recent projects" msgstr "Borrar proyectos recientes" -#: FlatCAMApp.py:11673 +#: FlatCAMApp.py:11707 msgid "Clear Recent files" msgstr "Borrar archivos recientes" -#: FlatCAMApp.py:11690 flatcamGUI/FlatCAMGUI.py:1133 +#: FlatCAMApp.py:11724 flatcamGUI/FlatCAMGUI.py:1249 msgid "Shortcut Key List" msgstr " Lista de teclas de acceso directo " -#: FlatCAMApp.py:11764 +#: FlatCAMApp.py:11798 msgid "Selected Tab - Choose an Item from Project Tab" msgstr "Pestaña Seleccionada: elija un elemento de la pestaña Proyecto" -#: FlatCAMApp.py:11765 +#: FlatCAMApp.py:11799 msgid "Details" msgstr "Detalles" -#: FlatCAMApp.py:11767 +#: FlatCAMApp.py:11801 msgid "The normal flow when working in FlatCAM is the following:" msgstr "El flujo normal cuando se trabaja en FlatCAM es el siguiente:" -#: FlatCAMApp.py:11768 +#: FlatCAMApp.py:11802 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 " @@ -1516,7 +1516,7 @@ msgstr "" "en FlatCAM usando las barras de herramientas, atajos de teclado o incluso " "arrastrando y soltando los archivos en la GUI." -#: FlatCAMApp.py:11771 +#: FlatCAMApp.py:11805 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 " @@ -1527,7 +1527,7 @@ msgstr "" "mediante las acciones del menú (o barra de herramientas) que se ofrecen " "dentro de la aplicación." -#: FlatCAMApp.py:11774 +#: FlatCAMApp.py:11808 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 " @@ -1540,7 +1540,7 @@ msgstr "" "SELECCIONADA se actualizará con las propiedades del objeto según su tipo: " "Gerber, Objeto Excellon, Geometry o CNCJob." -#: FlatCAMApp.py:11778 +#: FlatCAMApp.py:11812 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 " @@ -1554,7 +1554,7 @@ msgstr "" "el objeto en el lienzo traerá la PESTAÑA SELECCIONADA y la completará " "incluso si estaba fuera de foco." -#: FlatCAMApp.py:11782 +#: FlatCAMApp.py:11816 msgid "" "You can change the parameters in this screen and the flow direction is like " "this:" @@ -1562,7 +1562,7 @@ msgstr "" "Puede cambiar los parámetros en esta pantalla y la dirección del flujo es " "así:" -#: FlatCAMApp.py:11783 +#: FlatCAMApp.py:11817 msgid "" "Gerber/Excellon Object --> Change Parameter --> Generate Geometry --> " "Geometry Object --> Add tools (change param in Selected Tab) --> Generate " @@ -1575,7 +1575,7 @@ msgstr "" "(mediante Edit CNC Código) y / o anexar / anteponer a GCode (nuevamente, " "hecho en la PESTAÑA SELECCIONADA) -> Guardar GCode." -#: FlatCAMApp.py:11787 +#: FlatCAMApp.py:11821 msgid "" "A list of key shortcuts is available through an menu entry in Help --> " "Shortcuts List or through its own key shortcut: F3." @@ -1584,23 +1584,23 @@ msgstr "" "menú en Ayuda -> Lista de atajos o mediante su propio atajo de teclado: " "F3 ." -#: FlatCAMApp.py:11848 +#: FlatCAMApp.py:11882 msgid "Failed checking for latest version. Could not connect." msgstr "Falló la comprobación de la última versión. No pudo conectar." -#: FlatCAMApp.py:11856 +#: FlatCAMApp.py:11890 msgid "Could not parse information about latest version." msgstr "No se pudo analizar la información sobre la última versión." -#: FlatCAMApp.py:11867 +#: FlatCAMApp.py:11901 msgid "FlatCAM is up to date!" msgstr "FlatCAM está al día!" -#: FlatCAMApp.py:11872 +#: FlatCAMApp.py:11906 msgid "Newer Version Available" msgstr "Nueva versión disponible" -#: FlatCAMApp.py:11873 +#: FlatCAMApp.py:11907 msgid "" "There is a newer version of FlatCAM available for download:\n" "\n" @@ -1608,63 +1608,63 @@ msgstr "" "Hay una versión más nueva de FlatCAM disponible para descargar:\n" "\n" -#: FlatCAMApp.py:11875 +#: FlatCAMApp.py:11909 msgid "info" msgstr "info" -#: FlatCAMApp.py:11954 +#: FlatCAMApp.py:11988 msgid "All plots disabled." msgstr "Todas las parcelas con discapacidad." -#: FlatCAMApp.py:11961 +#: FlatCAMApp.py:11995 msgid "All non selected plots disabled." msgstr "Todas las parcelas no seleccionadas deshabilitadas." -#: FlatCAMApp.py:11968 +#: FlatCAMApp.py:12002 msgid "All plots enabled." msgstr "Todas las parcelas habilitadas." -#: FlatCAMApp.py:11975 +#: FlatCAMApp.py:12009 msgid "Selected plots enabled..." msgstr "Parcelas seleccionadas habilitadas ..." -#: FlatCAMApp.py:11984 +#: FlatCAMApp.py:12018 msgid "Selected plots disabled..." msgstr "Parcelas seleccionadas deshabilitadas ..." -#: FlatCAMApp.py:12003 +#: FlatCAMApp.py:12037 msgid "Enabling plots ..." msgstr "Habilitación de parcelas ..." -#: FlatCAMApp.py:12043 +#: FlatCAMApp.py:12077 msgid "Disabling plots ..." msgstr "Inhabilitando parcelas ..." -#: FlatCAMApp.py:12065 +#: FlatCAMApp.py:12099 msgid "Working ..." msgstr "Trabajando ..." -#: FlatCAMApp.py:12104 +#: FlatCAMApp.py:12138 msgid "Saving FlatCAM Project" msgstr "Proyecto FlatCAM de ahorro" -#: FlatCAMApp.py:12124 FlatCAMApp.py:12162 +#: FlatCAMApp.py:12158 FlatCAMApp.py:12196 msgid "Project saved to" msgstr "Proyecto guardado en" -#: FlatCAMApp.py:12144 +#: FlatCAMApp.py:12178 msgid "Failed to verify project file" msgstr "Error al abrir el archivo de proyecto" -#: FlatCAMApp.py:12144 FlatCAMApp.py:12153 FlatCAMApp.py:12165 +#: FlatCAMApp.py:12178 FlatCAMApp.py:12187 FlatCAMApp.py:12199 msgid "Retry to save it." msgstr "Vuelva a intentar guardarlo." -#: FlatCAMApp.py:12153 FlatCAMApp.py:12165 +#: FlatCAMApp.py:12187 FlatCAMApp.py:12199 msgid "Failed to parse saved project file" msgstr "Error al analizar el archivo por defecto" -#: FlatCAMApp.py:12281 +#: FlatCAMApp.py:12315 msgid "The user requested a graceful exit of the current task." msgstr "El usuario solicitó una salida elegante de la tarea actual." @@ -1746,7 +1746,7 @@ msgstr "Marcador eliminado." msgid "Export FlatCAM Bookmarks" msgstr "Exportar marcadores de FlatCAM" -#: FlatCAMCommon.py:363 flatcamGUI/FlatCAMGUI.py:448 +#: FlatCAMCommon.py:363 flatcamGUI/FlatCAMGUI.py:472 msgid "Bookmarks" msgstr "Marcadores" @@ -1778,13 +1778,13 @@ msgstr "Se canceló la importación de marcadores de FlatCAM." msgid "Imported Bookmarks from" msgstr "Marcadores importados de" -#: FlatCAMCommon.py:477 FlatCAMObj.py:3588 FlatCAMObj.py:4589 -#: FlatCAMObj.py:4590 FlatCAMObj.py:4599 +#: FlatCAMCommon.py:477 FlatCAMObj.py:3588 FlatCAMObj.py:4592 +#: FlatCAMObj.py:4593 FlatCAMObj.py:4602 msgid "Iso" msgstr "Aisl" #: FlatCAMCommon.py:477 FlatCAMCommon.py:1012 FlatCAMObj.py:1351 -#: FlatCAMObj.py:3588 FlatCAMObj.py:3861 FlatCAMObj.py:4149 +#: FlatCAMObj.py:3588 FlatCAMObj.py:3861 FlatCAMObj.py:4152 msgid "Rough" msgstr "Áspero" @@ -1797,12 +1797,12 @@ msgid "Tool Name" msgstr "Nombre de Herram" #: FlatCAMCommon.py:514 flatcamEditors/FlatCAMExcEditor.py:1527 -#: flatcamGUI/ObjectUI.py:1256 flatcamTools/ToolNonCopperClear.py:271 +#: flatcamGUI/ObjectUI.py:1295 flatcamTools/ToolNonCopperClear.py:271 #: flatcamTools/ToolPaint.py:176 msgid "Tool Dia" msgstr "Diá. de Herram" -#: FlatCAMCommon.py:515 flatcamGUI/ObjectUI.py:1239 +#: FlatCAMCommon.py:515 flatcamGUI/ObjectUI.py:1278 msgid "Tool Offset" msgstr "Offset de Herram" @@ -1810,8 +1810,8 @@ msgstr "Offset de Herram" msgid "Custom Offset" msgstr "Desplazamiento person." -#: FlatCAMCommon.py:517 flatcamGUI/ObjectUI.py:293 -#: flatcamGUI/PreferencesUI.py:1626 flatcamGUI/PreferencesUI.py:3991 +#: FlatCAMCommon.py:517 flatcamGUI/ObjectUI.py:304 +#: flatcamGUI/PreferencesUI.py:1627 flatcamGUI/PreferencesUI.py:3992 #: flatcamTools/ToolNonCopperClear.py:213 msgid "Tool Type" msgstr "Tipo de herram" @@ -1820,11 +1820,11 @@ msgstr "Tipo de herram" msgid "Tool Shape" msgstr "Forma de la herram" -#: 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 +#: FlatCAMCommon.py:519 flatcamGUI/ObjectUI.py:345 flatcamGUI/ObjectUI.py:820 +#: flatcamGUI/ObjectUI.py:1405 flatcamGUI/ObjectUI.py:1928 +#: flatcamGUI/PreferencesUI.py:1667 flatcamGUI/PreferencesUI.py:2335 +#: flatcamGUI/PreferencesUI.py:3180 flatcamGUI/PreferencesUI.py:4037 +#: flatcamGUI/PreferencesUI.py:4291 flatcamGUI/PreferencesUI.py:5115 #: flatcamTools/ToolCalculators.py:114 flatcamTools/ToolCutOut.py:132 #: flatcamTools/ToolNonCopperClear.py:254 msgid "Cut Z" @@ -1846,9 +1846,9 @@ msgstr "V-Dia" msgid "V-Angle" msgstr "V-Ángulo" -#: 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 +#: FlatCAMCommon.py:524 flatcamGUI/ObjectUI.py:839 flatcamGUI/ObjectUI.py:1452 +#: flatcamGUI/PreferencesUI.py:2353 flatcamGUI/PreferencesUI.py:3233 +#: flatcamGUI/PreferencesUI.py:6467 flatcamTools/ToolCalibration.py:74 msgid "Travel Z" msgstr "Viaje Z" @@ -1864,12 +1864,12 @@ msgstr "FR Z" msgid "FR Rapids" msgstr "Avance rápido" -#: FlatCAMCommon.py:528 flatcamGUI/PreferencesUI.py:2427 +#: FlatCAMCommon.py:528 flatcamGUI/PreferencesUI.py:2428 msgid "Spindle Speed" msgstr "Eje de velocidad" -#: FlatCAMCommon.py:529 flatcamGUI/ObjectUI.py:939 flatcamGUI/ObjectUI.py:1582 -#: flatcamGUI/PreferencesUI.py:2439 flatcamGUI/PreferencesUI.py:3353 +#: FlatCAMCommon.py:529 flatcamGUI/ObjectUI.py:963 flatcamGUI/ObjectUI.py:1621 +#: flatcamGUI/PreferencesUI.py:2440 flatcamGUI/PreferencesUI.py:3354 msgid "Dwell" msgstr "Habitar" @@ -1877,8 +1877,8 @@ msgstr "Habitar" msgid "Dwelltime" msgstr "Tiempo de perman." -#: FlatCAMCommon.py:531 flatcamGUI/ObjectUI.py:958 -#: flatcamGUI/PreferencesUI.py:2461 flatcamGUI/PreferencesUI.py:3375 +#: FlatCAMCommon.py:531 flatcamGUI/ObjectUI.py:982 +#: flatcamGUI/PreferencesUI.py:2462 flatcamGUI/PreferencesUI.py:3376 msgid "Preprocessor" msgstr "Postprocesador" @@ -1898,8 +1898,8 @@ msgstr "Cambio de herram" msgid "Toolchange XY" msgstr "Cambio de herra X, Y" -#: FlatCAMCommon.py:536 flatcamGUI/PreferencesUI.py:2378 -#: flatcamGUI/PreferencesUI.py:3264 flatcamGUI/PreferencesUI.py:6503 +#: FlatCAMCommon.py:536 flatcamGUI/PreferencesUI.py:2379 +#: flatcamGUI/PreferencesUI.py:3265 flatcamGUI/PreferencesUI.py:6504 #: flatcamTools/ToolCalibration.py:111 msgid "Toolchange Z" msgstr "Cambio de herramienta Z" @@ -2344,13 +2344,13 @@ msgstr "Escalando..." msgid "Skewing..." msgstr "Sesgar..." -#: FlatCAMObj.py:723 FlatCAMObj.py:2710 FlatCAMObj.py:3904 -#: flatcamGUI/PreferencesUI.py:1123 flatcamGUI/PreferencesUI.py:2257 +#: FlatCAMObj.py:723 FlatCAMObj.py:2710 FlatCAMObj.py:3907 +#: flatcamGUI/PreferencesUI.py:1124 flatcamGUI/PreferencesUI.py:2258 msgid "Basic" msgstr "BASIC" -#: FlatCAMObj.py:745 FlatCAMObj.py:2722 FlatCAMObj.py:3925 -#: flatcamGUI/PreferencesUI.py:1124 +#: FlatCAMObj.py:745 FlatCAMObj.py:2722 FlatCAMObj.py:3928 +#: flatcamGUI/PreferencesUI.py:1125 msgid "Advanced" msgstr "Avanzado" @@ -2358,16 +2358,16 @@ msgstr "Avanzado" msgid "Buffering solid geometry" msgstr "Amortiguación de geometría sólida" -#: FlatCAMObj.py:965 camlib.py:965 flatcamGUI/PreferencesUI.py:1700 +#: FlatCAMObj.py:965 camlib.py:965 flatcamGUI/PreferencesUI.py:1701 #: flatcamTools/ToolCopperThieving.py:1010 #: flatcamTools/ToolCopperThieving.py:1199 #: flatcamTools/ToolCopperThieving.py:1211 -#: flatcamTools/ToolNonCopperClear.py:1628 -#: flatcamTools/ToolNonCopperClear.py:1726 -#: flatcamTools/ToolNonCopperClear.py:1738 -#: flatcamTools/ToolNonCopperClear.py:1987 -#: flatcamTools/ToolNonCopperClear.py:2083 -#: flatcamTools/ToolNonCopperClear.py:2095 +#: flatcamTools/ToolNonCopperClear.py:1629 +#: flatcamTools/ToolNonCopperClear.py:1727 +#: flatcamTools/ToolNonCopperClear.py:1739 +#: flatcamTools/ToolNonCopperClear.py:1988 +#: flatcamTools/ToolNonCopperClear.py:2084 +#: flatcamTools/ToolNonCopperClear.py:2096 msgid "Buffering" msgstr "Tamponamiento" @@ -2383,7 +2383,7 @@ msgstr "Aislando ..." msgid "Click on a polygon to isolate it." msgstr "Haga clic en un polígono para aislarlo." -#: FlatCAMObj.py:1117 FlatCAMObj.py:1222 flatcamTools/ToolPaint.py:1125 +#: FlatCAMObj.py:1117 FlatCAMObj.py:1222 flatcamTools/ToolPaint.py:1126 msgid "Added polygon" msgstr "Polígono agregado" @@ -2393,7 +2393,7 @@ msgstr "" "Haga clic para agregar el siguiente polígono o haga clic con el botón " "derecho para iniciar el aislamiento." -#: FlatCAMObj.py:1131 flatcamTools/ToolPaint.py:1139 +#: FlatCAMObj.py:1131 flatcamTools/ToolPaint.py:1140 msgid "Removed polygon" msgstr "Polígono eliminado" @@ -2403,11 +2403,11 @@ msgstr "" "Haga clic para agregar / eliminar el siguiente polígono o haga clic con el " "botón derecho para iniciar el aislamiento." -#: FlatCAMObj.py:1137 flatcamTools/ToolPaint.py:1145 +#: FlatCAMObj.py:1137 flatcamTools/ToolPaint.py:1146 msgid "No polygon detected under click position." msgstr "No se detectó ningún polígono bajo la posición de clic." -#: FlatCAMObj.py:1158 flatcamTools/ToolPaint.py:1174 +#: FlatCAMObj.py:1158 flatcamTools/ToolPaint.py:1175 msgid "List of single polygons is empty. Aborting." msgstr "La lista de polígonos individuales está vacía. Abortar" @@ -2416,8 +2416,8 @@ msgid "No polygon in selection." msgstr "No hay polígono en la selección." #: FlatCAMObj.py:1301 FlatCAMObj.py:1430 -#: flatcamTools/ToolNonCopperClear.py:1657 -#: flatcamTools/ToolNonCopperClear.py:2011 +#: flatcamTools/ToolNonCopperClear.py:1658 +#: flatcamTools/ToolNonCopperClear.py:2012 msgid "Isolation geometry could not be generated." msgstr "La geometría de aislamiento no se pudo generar." @@ -2452,9 +2452,9 @@ msgstr "" "La herramienta de fresado para TALADRO es más grande que el tamaño del " "orificio. Cancelado." -#: FlatCAMObj.py:3032 FlatCAMObj.py:4490 flatcamEditors/FlatCAMGeoEditor.py:408 -#: flatcamGUI/FlatCAMGUI.py:438 flatcamGUI/FlatCAMGUI.py:930 -#: flatcamGUI/ObjectUI.py:1314 +#: FlatCAMObj.py:3032 FlatCAMObj.py:4493 flatcamEditors/FlatCAMGeoEditor.py:408 +#: flatcamGUI/FlatCAMGUI.py:459 flatcamGUI/FlatCAMGUI.py:1046 +#: flatcamGUI/ObjectUI.py:1353 msgid "Tool" msgstr "Herramienta" @@ -2464,7 +2464,7 @@ msgstr "Herramienta_nu" #: FlatCAMObj.py:3048 FlatCAMObj.py:3141 FlatCAMObj.py:3259 #: flatcamEditors/FlatCAMExcEditor.py:1507 -#: flatcamEditors/FlatCAMExcEditor.py:2967 flatcamGUI/ObjectUI.py:753 +#: flatcamEditors/FlatCAMExcEditor.py:2967 flatcamGUI/ObjectUI.py:777 #: flatcamTools/ToolNonCopperClear.py:120 flatcamTools/ToolPaint.py:123 #: flatcamTools/ToolPcbWizard.py:76 flatcamTools/ToolProperties.py:396 #: flatcamTools/ToolProperties.py:449 flatcamTools/ToolSolderPaste.py:84 @@ -2501,7 +2501,7 @@ msgstr "" "Formato de valor incorrecto para self.defaults [\"feedrate_probe\"] o self." "options [\"feedrate_probe\"]" -#: FlatCAMObj.py:3341 FlatCAMObj.py:5311 FlatCAMObj.py:5315 FlatCAMObj.py:5450 +#: FlatCAMObj.py:3341 FlatCAMObj.py:5314 FlatCAMObj.py:5318 FlatCAMObj.py:5453 msgid "Generating CNC Code" msgstr "Generando Código CNC" @@ -2509,17 +2509,17 @@ msgstr "Generando Código CNC" msgid "Add from Tool DB" msgstr "Agregar desde la DB de herramientas" -#: 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 +#: FlatCAMObj.py:3899 flatcamGUI/FlatCAMGUI.py:652 flatcamGUI/FlatCAMGUI.py:768 +#: flatcamGUI/FlatCAMGUI.py:963 flatcamGUI/FlatCAMGUI.py:1984 +#: flatcamGUI/FlatCAMGUI.py:2128 flatcamGUI/FlatCAMGUI.py:2343 +#: flatcamGUI/FlatCAMGUI.py:2522 flatcamGUI/ObjectUI.py:1324 #: flatcamTools/ToolPanelize.py:534 flatcamTools/ToolPanelize.py:561 #: flatcamTools/ToolPanelize.py:660 flatcamTools/ToolPanelize.py:694 #: flatcamTools/ToolPanelize.py:759 msgid "Copy" msgstr "Dupdo" -#: FlatCAMObj.py:3985 FlatCAMObj.py:4354 FlatCAMObj.py:5061 FlatCAMObj.py:5701 +#: FlatCAMObj.py:3988 FlatCAMObj.py:4357 FlatCAMObj.py:5064 FlatCAMObj.py:5704 #: flatcamEditors/FlatCAMExcEditor.py:2459 #: flatcamEditors/FlatCAMGeoEditor.py:1078 #: flatcamEditors/FlatCAMGeoEditor.py:1112 @@ -2528,66 +2528,66 @@ msgstr "Dupdo" #: 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 +#: flatcamTools/ToolNonCopperClear.py:1058 +#: flatcamTools/ToolNonCopperClear.py:1466 flatcamTools/ToolPaint.py:841 +#: flatcamTools/ToolPaint.py:1025 flatcamTools/ToolPaint.py:2097 +#: flatcamTools/ToolSolderPaste.py:882 flatcamTools/ToolSolderPaste.py:957 msgid "Wrong value format entered, use a number." msgstr "Formato de valor incorrecto introducido, use un número." -#: FlatCAMObj.py:4123 +#: FlatCAMObj.py:4126 msgid "Please enter the desired tool diameter in Float format." msgstr "" "Por favor ingrese el diámetro deseado de la herramienta en formato Float." -#: FlatCAMObj.py:4193 +#: FlatCAMObj.py:4196 msgid "Tool added in Tool Table." msgstr "Herramienta añadida en la tabla de herramientas." -#: FlatCAMObj.py:4197 +#: FlatCAMObj.py:4200 msgid "Default Tool added. Wrong value format entered." msgstr "" "Herramienta predeterminada agregada. Se ha introducido un formato de valor " "incorrecto." -#: FlatCAMObj.py:4304 FlatCAMObj.py:4313 +#: FlatCAMObj.py:4307 FlatCAMObj.py:4316 msgid "Failed. Select a tool to copy." msgstr "Ha fallado. Seleccione una herramienta para copiar." -#: FlatCAMObj.py:4340 +#: FlatCAMObj.py:4343 msgid "Tool was copied in Tool Table." msgstr "La herramienta se copió en la tabla de herramientas." -#: FlatCAMObj.py:4368 +#: FlatCAMObj.py:4371 msgid "Tool was edited in Tool Table." msgstr "La herramienta fue editada en la tabla de herramientas." -#: FlatCAMObj.py:4397 FlatCAMObj.py:4406 +#: FlatCAMObj.py:4400 FlatCAMObj.py:4409 msgid "Failed. Select a tool to delete." msgstr "Ha fallado. Seleccione una herramienta para eliminar." -#: FlatCAMObj.py:4429 +#: FlatCAMObj.py:4432 msgid "Tool was deleted in Tool Table." msgstr "La herramienta se eliminó en la tabla de herramientas." -#: FlatCAMObj.py:4490 flatcamGUI/ObjectUI.py:1314 +#: FlatCAMObj.py:4493 flatcamGUI/ObjectUI.py:1353 msgid "Parameters for" msgstr "Parámetros para" -#: FlatCAMObj.py:4921 +#: FlatCAMObj.py:4924 msgid "This Geometry can't be processed because it is" msgstr "Esta geometría no se puede procesar porque es" -#: FlatCAMObj.py:4923 +#: FlatCAMObj.py:4926 msgid "geometry" msgstr "geometría" -#: FlatCAMObj.py:4966 +#: FlatCAMObj.py:4969 msgid "Failed. No tool selected in the tool table ..." msgstr "" "Ha fallado. Ninguna herramienta seleccionada en la tabla de herramientas ..." -#: FlatCAMObj.py:5066 FlatCAMObj.py:5219 +#: FlatCAMObj.py:5069 FlatCAMObj.py:5222 msgid "" "Tool Offset is selected in Tool Table but no value is provided.\n" "Add a Tool Offset or change the Offset Type." @@ -2596,44 +2596,44 @@ msgstr "" "pero no se proporciona ningún valor.\n" "Agregue una Herramienta de compensación o cambie el Tipo de compensación." -#: FlatCAMObj.py:5131 FlatCAMObj.py:5280 +#: FlatCAMObj.py:5134 FlatCAMObj.py:5283 msgid "G-Code parsing in progress..." msgstr "Análisis de código G en progreso ..." -#: FlatCAMObj.py:5133 FlatCAMObj.py:5282 +#: FlatCAMObj.py:5136 FlatCAMObj.py:5285 msgid "G-Code parsing finished..." msgstr "Análisis de código G terminado ..." -#: FlatCAMObj.py:5141 +#: FlatCAMObj.py:5144 msgid "Finished G-Code processing" msgstr "Procesamiento de código G terminado" -#: FlatCAMObj.py:5143 FlatCAMObj.py:5294 +#: FlatCAMObj.py:5146 FlatCAMObj.py:5297 msgid "G-Code processing failed with error" msgstr "El procesamiento del código G falló con error" -#: FlatCAMObj.py:5189 flatcamTools/ToolSolderPaste.py:1300 +#: FlatCAMObj.py:5192 flatcamTools/ToolSolderPaste.py:1303 msgid "Cancelled. Empty file, it has no geometry" msgstr "Cancelado. Archivo vacío, no tiene geometría" -#: FlatCAMObj.py:5292 FlatCAMObj.py:5443 +#: FlatCAMObj.py:5295 FlatCAMObj.py:5446 msgid "Finished G-Code processing..." msgstr "Procesamiento de código G terminado ..." -#: FlatCAMObj.py:5313 FlatCAMObj.py:5317 FlatCAMObj.py:5453 +#: FlatCAMObj.py:5316 FlatCAMObj.py:5320 FlatCAMObj.py:5456 msgid "CNCjob created" msgstr "CNCjob creado" -#: FlatCAMObj.py:5484 FlatCAMObj.py:5493 flatcamParsers/ParseGerber.py:1750 +#: FlatCAMObj.py:5487 FlatCAMObj.py:5496 flatcamParsers/ParseGerber.py:1750 #: flatcamParsers/ParseGerber.py:1760 msgid "Scale factor has to be a number: integer or float." msgstr "El factor de escala debe ser un número: entero o Real." -#: FlatCAMObj.py:5557 +#: FlatCAMObj.py:5560 msgid "Geometry Scale done." msgstr "Escala de geometría realizada." -#: FlatCAMObj.py:5574 flatcamParsers/ParseGerber.py:1876 +#: FlatCAMObj.py:5577 flatcamParsers/ParseGerber.py:1876 msgid "" "An (x,y) pair of values are needed. Probable you entered only one value in " "the Offset field." @@ -2641,11 +2641,11 @@ msgstr "" "Se necesita un par de valores (x, y). Probablemente haya ingresado un solo " "valor en el campo Desplazamiento." -#: FlatCAMObj.py:5631 +#: FlatCAMObj.py:5634 msgid "Geometry Offset done." msgstr "Desplazamiento de geometría realizado." -#: FlatCAMObj.py:5660 +#: FlatCAMObj.py:5663 msgid "" "The Toolchange X,Y field in Edit -> Preferences has to be in the format (x, " "y)\n" @@ -2655,80 +2655,80 @@ msgstr "" "formato (x, y)\n" "pero ahora solo hay un valor, no dos." -#: FlatCAMObj.py:6335 FlatCAMObj.py:6993 FlatCAMObj.py:7189 +#: FlatCAMObj.py:6338 FlatCAMObj.py:6996 FlatCAMObj.py:7192 msgid "Basic" msgstr "Basic" -#: FlatCAMObj.py:6341 FlatCAMObj.py:6997 FlatCAMObj.py:7193 +#: FlatCAMObj.py:6344 FlatCAMObj.py:7000 FlatCAMObj.py:7196 msgid "Advanced" msgstr "Avanzado" -#: FlatCAMObj.py:6384 +#: FlatCAMObj.py:6387 msgid "Plotting..." msgstr "Trazando ..." -#: FlatCAMObj.py:6407 FlatCAMObj.py:6412 flatcamTools/ToolSolderPaste.py:1506 +#: FlatCAMObj.py:6410 FlatCAMObj.py:6415 flatcamTools/ToolSolderPaste.py:1509 msgid "Export Machine Code ..." msgstr "Exportar código de máquina ..." -#: FlatCAMObj.py:6417 flatcamTools/ToolSolderPaste.py:1510 +#: FlatCAMObj.py:6420 flatcamTools/ToolSolderPaste.py:1513 msgid "Export Machine Code cancelled ..." msgstr "Exportar código de máquina cancelado ..." -#: FlatCAMObj.py:6439 +#: FlatCAMObj.py:6442 msgid "Machine Code file saved to" msgstr "Archivo de código de máquina guardado en" -#: FlatCAMObj.py:6493 flatcamTools/ToolCalibration.py:1083 +#: FlatCAMObj.py:6496 flatcamTools/ToolCalibration.py:1083 msgid "Loaded Machine Code into Code Editor" msgstr "Código de máquina cargado en el editor de código" -#: FlatCAMObj.py:6628 +#: FlatCAMObj.py:6631 msgid "This CNCJob object can't be processed because it is a" msgstr "Este objeto CNCJob no se puede procesar porque es un" -#: FlatCAMObj.py:6630 +#: FlatCAMObj.py:6633 msgid "CNCJob object" msgstr "Objeto CNCJob" -#: FlatCAMObj.py:6681 +#: FlatCAMObj.py:6684 msgid "G-code does not have a units code: either G20 or G21" msgstr "El código G no tiene un código de unidades: G20 o G21" -#: FlatCAMObj.py:6695 +#: FlatCAMObj.py:6698 msgid "Cancelled. The Toolchange Custom code is enabled but it's empty." msgstr "" "Cancelado. El código personalizado de Toolchange está habilitado pero está " "vacío." -#: FlatCAMObj.py:6700 +#: FlatCAMObj.py:6703 msgid "Toolchange G-code was replaced by a custom code." msgstr "El código G de Toolchange fue reemplazado por un código personalizado." -#: FlatCAMObj.py:6717 flatcamEditors/FlatCAMTextEditor.py:224 -#: flatcamTools/ToolSolderPaste.py:1537 +#: FlatCAMObj.py:6720 flatcamEditors/FlatCAMTextEditor.py:224 +#: flatcamTools/ToolSolderPaste.py:1540 msgid "No such file or directory" msgstr "El fichero o directorio no existe" -#: FlatCAMObj.py:6731 flatcamEditors/FlatCAMTextEditor.py:236 +#: FlatCAMObj.py:6734 flatcamEditors/FlatCAMTextEditor.py:236 msgid "Saved to" msgstr "Guardado en" -#: FlatCAMObj.py:6741 FlatCAMObj.py:6751 +#: FlatCAMObj.py:6744 FlatCAMObj.py:6754 msgid "" "The used preprocessor file has to have in it's name: 'toolchange_custom'" msgstr "" "El archivo de postprocesador usado debe tener su nombre: 'toolchange_custom'" -#: FlatCAMObj.py:6755 +#: FlatCAMObj.py:6758 msgid "There is no preprocessor file." msgstr "No hay archivo de postprocesador." -#: FlatCAMObj.py:7012 +#: FlatCAMObj.py:7015 msgid "Script Editor" msgstr "Editor de guiones" -#: FlatCAMObj.py:7293 +#: FlatCAMObj.py:7296 msgid "Document Editor" msgstr "Editor de Documentos" @@ -2736,24 +2736,24 @@ msgstr "Editor de Documentos" msgid "processes running." msgstr "procesos en ejecución." -#: FlatCAMTranslation.py:92 +#: FlatCAMTranslation.py:103 msgid "The application will restart." msgstr "La aplicación se reiniciará." -#: FlatCAMTranslation.py:94 +#: FlatCAMTranslation.py:105 msgid "Are you sure do you want to change the current language to" msgstr "¿Está seguro de que desea cambiar el idioma actual a" -#: FlatCAMTranslation.py:95 +#: FlatCAMTranslation.py:106 msgid "Apply Language ..." msgstr "Aplicar Idioma ..." -#: ObjectCollection.py:453 +#: ObjectCollection.py:454 #, python-brace-format msgid "Object renamed from {old} to {new}" msgstr "Objeto renombrado de {old} a {new}" -#: ObjectCollection.py:852 +#: ObjectCollection.py:853 msgid "Cause of error" msgstr "Causa del error" @@ -3084,8 +3084,8 @@ msgstr "" "cambiar el tamaño." #: flatcamEditors/FlatCAMExcEditor.py:983 -#: flatcamEditors/FlatCAMExcEditor.py:1052 flatcamGUI/FlatCAMGUI.py:2892 -#: flatcamGUI/FlatCAMGUI.py:3105 flatcamGUI/FlatCAMGUI.py:3322 +#: flatcamEditors/FlatCAMExcEditor.py:1052 flatcamGUI/FlatCAMGUI.py:3127 +#: flatcamGUI/FlatCAMGUI.py:3340 flatcamGUI/FlatCAMGUI.py:3557 msgid "Cancelled." msgstr "Cancelado." @@ -3111,7 +3111,7 @@ msgstr "Hecho. Taladro (s) Movimiento completado." msgid "Done. Drill(s) copied." msgstr "Hecho. Taladro (s) copiado." -#: flatcamEditors/FlatCAMExcEditor.py:1480 flatcamGUI/PreferencesUI.py:2820 +#: flatcamEditors/FlatCAMExcEditor.py:1480 flatcamGUI/PreferencesUI.py:2821 msgid "Excellon Editor" msgstr "Excellon Editor" @@ -3120,13 +3120,13 @@ msgstr "Excellon Editor" msgid "Name:" msgstr "Nombre:" -#: flatcamEditors/FlatCAMExcEditor.py:1493 flatcamGUI/ObjectUI.py:733 -#: flatcamGUI/ObjectUI.py:1145 flatcamTools/ToolNonCopperClear.py:109 +#: flatcamEditors/FlatCAMExcEditor.py:1493 flatcamGUI/ObjectUI.py:757 +#: flatcamGUI/ObjectUI.py:1184 flatcamTools/ToolNonCopperClear.py:109 #: flatcamTools/ToolPaint.py:112 flatcamTools/ToolSolderPaste.py:73 msgid "Tools Table" msgstr "Tabla de herramientas" -#: flatcamEditors/FlatCAMExcEditor.py:1495 flatcamGUI/ObjectUI.py:735 +#: flatcamEditors/FlatCAMExcEditor.py:1495 flatcamGUI/ObjectUI.py:759 msgid "" "Tools in this Excellon object\n" "when are used for drilling." @@ -3146,8 +3146,8 @@ msgstr "" "Agregar / Eliminar una herramienta a la lista de herramientas\n" "para este objeto Excellon." -#: flatcamEditors/FlatCAMExcEditor.py:1529 flatcamGUI/ObjectUI.py:1258 -#: flatcamGUI/PreferencesUI.py:2851 +#: flatcamEditors/FlatCAMExcEditor.py:1529 flatcamGUI/ObjectUI.py:1297 +#: flatcamGUI/PreferencesUI.py:2852 msgid "Diameter for the new tool" msgstr "Diámetro para la nueva herramienta" @@ -3175,7 +3175,7 @@ msgstr "" "Eliminar una herramienta en la lista de herramientas\n" "seleccionando una fila en la tabla de herramientas." -#: flatcamEditors/FlatCAMExcEditor.py:1573 flatcamGUI/FlatCAMGUI.py:1749 +#: flatcamEditors/FlatCAMExcEditor.py:1573 flatcamGUI/FlatCAMGUI.py:1865 msgid "Resize Drill(s)" msgstr "Cambiar el tamaño de taladro (s)" @@ -3199,8 +3199,8 @@ msgstr "Redimensionar" msgid "Resize drill(s)" msgstr "Cambiar el tamaño de taladro" -#: flatcamEditors/FlatCAMExcEditor.py:1622 flatcamGUI/FlatCAMGUI.py:1748 -#: flatcamGUI/FlatCAMGUI.py:1958 +#: flatcamEditors/FlatCAMExcEditor.py:1622 flatcamGUI/FlatCAMGUI.py:1864 +#: flatcamGUI/FlatCAMGUI.py:2116 msgid "Add Drill Array" msgstr "Añadir Drill Array" @@ -3224,17 +3224,17 @@ msgstr "Lineal" #: flatcamEditors/FlatCAMExcEditor.py:1634 #: flatcamEditors/FlatCAMExcEditor.py:1848 -#: flatcamEditors/FlatCAMGrbEditor.py:2696 flatcamGUI/ObjectUI.py:300 -#: flatcamGUI/PreferencesUI.py:3999 flatcamGUI/PreferencesUI.py:6396 +#: flatcamEditors/FlatCAMGrbEditor.py:2696 flatcamGUI/ObjectUI.py:311 +#: flatcamGUI/PreferencesUI.py:4000 flatcamGUI/PreferencesUI.py:6397 #: flatcamTools/ToolFiducials.py:220 flatcamTools/ToolNonCopperClear.py:221 msgid "Circular" msgstr "Circular" -#: flatcamEditors/FlatCAMExcEditor.py:1642 flatcamGUI/PreferencesUI.py:2862 +#: flatcamEditors/FlatCAMExcEditor.py:1642 flatcamGUI/PreferencesUI.py:2863 msgid "Nr of drills" msgstr "Nu. de ejercicios" -#: flatcamEditors/FlatCAMExcEditor.py:1643 flatcamGUI/PreferencesUI.py:2864 +#: flatcamEditors/FlatCAMExcEditor.py:1643 flatcamGUI/PreferencesUI.py:2865 msgid "Specify how many drills to be in the array." msgstr "Especifique cuántos ejercicios debe estar en la matriz." @@ -3245,14 +3245,14 @@ msgstr "Especifique cuántos ejercicios debe estar en la matriz." #: flatcamEditors/FlatCAMExcEditor.py:1927 #: flatcamEditors/FlatCAMGrbEditor.py:1524 #: flatcamEditors/FlatCAMGrbEditor.py:2724 -#: flatcamEditors/FlatCAMGrbEditor.py:2773 flatcamGUI/PreferencesUI.py:2972 +#: flatcamEditors/FlatCAMGrbEditor.py:2773 flatcamGUI/PreferencesUI.py:2973 msgid "Direction" msgstr "Dirección" #: flatcamEditors/FlatCAMExcEditor.py:1663 #: flatcamEditors/FlatCAMExcEditor.py:1878 -#: flatcamEditors/FlatCAMGrbEditor.py:2726 flatcamGUI/PreferencesUI.py:1940 -#: flatcamGUI/PreferencesUI.py:2880 flatcamGUI/PreferencesUI.py:3028 +#: flatcamEditors/FlatCAMGrbEditor.py:2726 flatcamGUI/PreferencesUI.py:1941 +#: flatcamGUI/PreferencesUI.py:2881 flatcamGUI/PreferencesUI.py:3029 msgid "" "Direction on which the linear array is oriented:\n" "- 'X' - horizontal axis \n" @@ -3267,9 +3267,9 @@ msgstr "" #: flatcamEditors/FlatCAMExcEditor.py:1670 #: flatcamEditors/FlatCAMExcEditor.py:1792 #: flatcamEditors/FlatCAMExcEditor.py:1885 -#: flatcamEditors/FlatCAMGrbEditor.py:2733 flatcamGUI/PreferencesUI.py:1946 -#: flatcamGUI/PreferencesUI.py:2886 flatcamGUI/PreferencesUI.py:2981 -#: flatcamGUI/PreferencesUI.py:3034 flatcamGUI/PreferencesUI.py:4822 +#: flatcamEditors/FlatCAMGrbEditor.py:2733 flatcamGUI/PreferencesUI.py:1947 +#: flatcamGUI/PreferencesUI.py:2887 flatcamGUI/PreferencesUI.py:2982 +#: flatcamGUI/PreferencesUI.py:3035 flatcamGUI/PreferencesUI.py:4823 #: flatcamTools/ToolFilm.py:256 msgid "X" msgstr "X" @@ -3277,9 +3277,9 @@ msgstr "X" #: flatcamEditors/FlatCAMExcEditor.py:1671 #: flatcamEditors/FlatCAMExcEditor.py:1793 #: flatcamEditors/FlatCAMExcEditor.py:1886 -#: flatcamEditors/FlatCAMGrbEditor.py:2734 flatcamGUI/PreferencesUI.py:1947 -#: flatcamGUI/PreferencesUI.py:2887 flatcamGUI/PreferencesUI.py:2982 -#: flatcamGUI/PreferencesUI.py:3035 flatcamGUI/PreferencesUI.py:4823 +#: flatcamEditors/FlatCAMGrbEditor.py:2734 flatcamGUI/PreferencesUI.py:1948 +#: flatcamGUI/PreferencesUI.py:2888 flatcamGUI/PreferencesUI.py:2983 +#: flatcamGUI/PreferencesUI.py:3036 flatcamGUI/PreferencesUI.py:4824 #: flatcamTools/ToolFilm.py:257 msgid "Y" msgstr "Y" @@ -3294,11 +3294,11 @@ msgstr "Y" #: flatcamEditors/FlatCAMExcEditor.py:1939 #: flatcamEditors/FlatCAMGrbEditor.py:2735 #: flatcamEditors/FlatCAMGrbEditor.py:2752 -#: flatcamEditors/FlatCAMGrbEditor.py:2788 flatcamGUI/PreferencesUI.py:1948 -#: 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 +#: flatcamEditors/FlatCAMGrbEditor.py:2788 flatcamGUI/PreferencesUI.py:1949 +#: flatcamGUI/PreferencesUI.py:1967 flatcamGUI/PreferencesUI.py:2889 +#: flatcamGUI/PreferencesUI.py:2908 flatcamGUI/PreferencesUI.py:2984 +#: flatcamGUI/PreferencesUI.py:2989 flatcamGUI/PreferencesUI.py:3037 +#: flatcamGUI/PreferencesUI.py:3058 flatcamGUI/PreferencesUI.py:5216 #: flatcamTools/ToolDistance.py:66 flatcamTools/ToolDistanceMin.py:68 #: flatcamTools/ToolTransform.py:62 msgid "Angle" @@ -3306,15 +3306,15 @@ msgstr "Ángulo" #: flatcamEditors/FlatCAMExcEditor.py:1676 #: flatcamEditors/FlatCAMExcEditor.py:1891 -#: flatcamEditors/FlatCAMGrbEditor.py:2739 flatcamGUI/PreferencesUI.py:1954 -#: flatcamGUI/PreferencesUI.py:2894 flatcamGUI/PreferencesUI.py:3042 +#: flatcamEditors/FlatCAMGrbEditor.py:2739 flatcamGUI/PreferencesUI.py:1955 +#: flatcamGUI/PreferencesUI.py:2895 flatcamGUI/PreferencesUI.py:3043 msgid "Pitch" msgstr "Paso" #: flatcamEditors/FlatCAMExcEditor.py:1678 #: flatcamEditors/FlatCAMExcEditor.py:1893 -#: flatcamEditors/FlatCAMGrbEditor.py:2741 flatcamGUI/PreferencesUI.py:1956 -#: flatcamGUI/PreferencesUI.py:2896 flatcamGUI/PreferencesUI.py:3044 +#: flatcamEditors/FlatCAMGrbEditor.py:2741 flatcamGUI/PreferencesUI.py:1957 +#: flatcamGUI/PreferencesUI.py:2897 flatcamGUI/PreferencesUI.py:3045 msgid "Pitch = Distance between elements of the array." msgstr "Paso = Distancia entre elementos de la matriz." @@ -3343,26 +3343,26 @@ msgstr "" #: flatcamEditors/FlatCAMExcEditor.py:1719 #: flatcamEditors/FlatCAMExcEditor.py:1935 -#: flatcamEditors/FlatCAMGrbEditor.py:2783 flatcamGUI/PreferencesUI.py:1988 -#: flatcamGUI/PreferencesUI.py:2634 flatcamGUI/PreferencesUI.py:2930 -#: flatcamGUI/PreferencesUI.py:3080 flatcamGUI/PreferencesUI.py:3508 +#: flatcamEditors/FlatCAMGrbEditor.py:2783 flatcamGUI/PreferencesUI.py:1989 +#: flatcamGUI/PreferencesUI.py:2635 flatcamGUI/PreferencesUI.py:2931 +#: flatcamGUI/PreferencesUI.py:3081 flatcamGUI/PreferencesUI.py:3509 msgid "CW" msgstr "CW" #: flatcamEditors/FlatCAMExcEditor.py:1720 #: flatcamEditors/FlatCAMExcEditor.py:1936 -#: flatcamEditors/FlatCAMGrbEditor.py:2784 flatcamGUI/PreferencesUI.py:1989 -#: flatcamGUI/PreferencesUI.py:2635 flatcamGUI/PreferencesUI.py:2931 -#: flatcamGUI/PreferencesUI.py:3081 flatcamGUI/PreferencesUI.py:3509 +#: flatcamEditors/FlatCAMGrbEditor.py:2784 flatcamGUI/PreferencesUI.py:1990 +#: flatcamGUI/PreferencesUI.py:2636 flatcamGUI/PreferencesUI.py:2932 +#: flatcamGUI/PreferencesUI.py:3082 flatcamGUI/PreferencesUI.py:3510 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:2909 -#: flatcamGUI/PreferencesUI.py:2939 flatcamGUI/PreferencesUI.py:3059 -#: flatcamGUI/PreferencesUI.py:3089 +#: flatcamEditors/FlatCAMGrbEditor.py:2790 flatcamGUI/PreferencesUI.py:1969 +#: flatcamGUI/PreferencesUI.py:1998 flatcamGUI/PreferencesUI.py:2910 +#: flatcamGUI/PreferencesUI.py:2940 flatcamGUI/PreferencesUI.py:3060 +#: flatcamGUI/PreferencesUI.py:3090 msgid "Angle at which each element in circular array is placed." msgstr "Ángulo en el que se coloca cada elemento de la matriz circular." @@ -3378,16 +3378,16 @@ msgstr "" "Parámetros para agregar una ranura (agujero con forma ovalada)\n" "ya sea solo o como parte de una matriz." -#: flatcamEditors/FlatCAMExcEditor.py:1769 flatcamGUI/PreferencesUI.py:2956 +#: flatcamEditors/FlatCAMExcEditor.py:1769 flatcamGUI/PreferencesUI.py:2957 #: flatcamTools/ToolProperties.py:555 msgid "Length" msgstr "Longitud" -#: flatcamEditors/FlatCAMExcEditor.py:1771 flatcamGUI/PreferencesUI.py:2958 +#: flatcamEditors/FlatCAMExcEditor.py:1771 flatcamGUI/PreferencesUI.py:2959 msgid "Length = The length of the slot." msgstr "Longitud = La longitud de la ranura." -#: flatcamEditors/FlatCAMExcEditor.py:1785 flatcamGUI/PreferencesUI.py:2974 +#: flatcamEditors/FlatCAMExcEditor.py:1785 flatcamGUI/PreferencesUI.py:2975 msgid "" "Direction on which the slot is oriented:\n" "- 'X' - horizontal axis \n" @@ -3427,11 +3427,11 @@ msgstr "" "Seleccione el tipo de matriz de ranuras para crear.\n" "Puede ser lineal X (Y) o circular" -#: flatcamEditors/FlatCAMExcEditor.py:1856 flatcamGUI/PreferencesUI.py:3013 +#: flatcamEditors/FlatCAMExcEditor.py:1856 flatcamGUI/PreferencesUI.py:3014 msgid "Nr of slots" msgstr "Nro. De ranuras" -#: flatcamEditors/FlatCAMExcEditor.py:1857 flatcamGUI/PreferencesUI.py:3015 +#: flatcamEditors/FlatCAMExcEditor.py:1857 flatcamGUI/PreferencesUI.py:3016 msgid "Specify how many slots to be in the array." msgstr "Especifique cuántas ranuras debe haber en la matriz." @@ -3443,7 +3443,7 @@ msgstr "" "Herramienta ya en la lista de herramientas original o real.\n" "Guarde y reedite Excellon si necesita agregar esta herramienta. " -#: flatcamEditors/FlatCAMExcEditor.py:2480 flatcamGUI/FlatCAMGUI.py:3491 +#: flatcamEditors/FlatCAMExcEditor.py:2480 flatcamGUI/FlatCAMGUI.py:3726 msgid "Added new tool with dia" msgstr "Nueva herramienta agregada con dia" @@ -3520,7 +3520,7 @@ msgid "Round" msgstr "Redondo" #: flatcamEditors/FlatCAMGeoEditor.py:96 -#: flatcamEditors/FlatCAMGrbEditor.py:2552 flatcamGUI/PreferencesUI.py:5989 +#: flatcamEditors/FlatCAMGrbEditor.py:2552 flatcamGUI/PreferencesUI.py:5990 #: flatcamTools/ToolQRCode.py:198 msgid "Square" msgstr "Cuadrado" @@ -3543,8 +3543,8 @@ msgid "Full Buffer" msgstr "Buffer lleno" #: flatcamEditors/FlatCAMGeoEditor.py:133 -#: flatcamEditors/FlatCAMGeoEditor.py:2758 flatcamGUI/FlatCAMGUI.py:1658 -#: flatcamGUI/PreferencesUI.py:2008 +#: flatcamEditors/FlatCAMGeoEditor.py:2758 flatcamGUI/FlatCAMGUI.py:1774 +#: flatcamGUI/PreferencesUI.py:2009 msgid "Buffer Tool" msgstr "Herramienta Buffer" @@ -3564,7 +3564,7 @@ msgstr "" msgid "Font" msgstr "Font" -#: flatcamEditors/FlatCAMGeoEditor.py:324 flatcamGUI/FlatCAMGUI.py:1919 +#: flatcamEditors/FlatCAMGeoEditor.py:324 flatcamGUI/FlatCAMGUI.py:2054 msgid "Text" msgstr "Texto" @@ -3572,13 +3572,13 @@ msgstr "Texto" msgid "Text Tool" msgstr "Herramienta de texto" -#: flatcamEditors/FlatCAMGeoEditor.py:442 flatcamGUI/ObjectUI.py:348 -#: flatcamGUI/PreferencesUI.py:1449 flatcamGUI/PreferencesUI.py:3144 -#: flatcamGUI/PreferencesUI.py:4500 +#: flatcamEditors/FlatCAMGeoEditor.py:442 flatcamGUI/ObjectUI.py:359 +#: flatcamGUI/PreferencesUI.py:1450 flatcamGUI/PreferencesUI.py:3145 +#: flatcamGUI/PreferencesUI.py:4501 msgid "Tool dia" msgstr "Diá. de la herramienta" -#: flatcamEditors/FlatCAMGeoEditor.py:444 flatcamGUI/PreferencesUI.py:4502 +#: flatcamEditors/FlatCAMGeoEditor.py:444 flatcamGUI/PreferencesUI.py:4503 msgid "" "Diameter of the tool to\n" "be used in the operation." @@ -3586,13 +3586,13 @@ msgstr "" "Diámetro de la herramienta para\n" "ser utilizado en la operación." -#: flatcamEditors/FlatCAMGeoEditor.py:455 flatcamGUI/PreferencesUI.py:4107 -#: flatcamGUI/PreferencesUI.py:4532 flatcamTools/ToolNonCopperClear.py:319 +#: flatcamEditors/FlatCAMGeoEditor.py:455 flatcamGUI/PreferencesUI.py:4108 +#: flatcamGUI/PreferencesUI.py:4533 flatcamTools/ToolNonCopperClear.py:319 #: flatcamTools/ToolPaint.py:219 msgid "Overlap Rate" msgstr "Tasa de superpos" -#: flatcamEditors/FlatCAMGeoEditor.py:457 flatcamGUI/PreferencesUI.py:4534 +#: flatcamEditors/FlatCAMGeoEditor.py:457 flatcamGUI/PreferencesUI.py:4535 #: flatcamTools/ToolPaint.py:221 msgid "" "How much (fraction) of the tool width to overlap each tool pass.\n" @@ -3612,17 +3612,17 @@ msgstr "" "Valores más altos = procesamiento lento y ejecución lenta en CNC\n" "Debido a demasiados caminos." -#: 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 +#: flatcamEditors/FlatCAMGeoEditor.py:475 flatcamGUI/PreferencesUI.py:4127 +#: flatcamGUI/PreferencesUI.py:4348 flatcamGUI/PreferencesUI.py:4553 +#: flatcamGUI/PreferencesUI.py:6107 flatcamGUI/PreferencesUI.py:6264 +#: flatcamGUI/PreferencesUI.py:6349 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 "Margen" -#: flatcamEditors/FlatCAMGeoEditor.py:477 flatcamGUI/PreferencesUI.py:4554 +#: flatcamEditors/FlatCAMGeoEditor.py:477 flatcamGUI/PreferencesUI.py:4555 #: flatcamTools/ToolPaint.py:240 msgid "" "Distance by which to avoid\n" @@ -3633,8 +3633,8 @@ msgstr "" "los bordes del polígono a\n" "ser pintado." -#: flatcamEditors/FlatCAMGeoEditor.py:489 flatcamGUI/PreferencesUI.py:4139 -#: flatcamGUI/PreferencesUI.py:4567 flatcamTools/ToolNonCopperClear.py:348 +#: flatcamEditors/FlatCAMGeoEditor.py:489 flatcamGUI/PreferencesUI.py:4140 +#: flatcamGUI/PreferencesUI.py:4568 flatcamTools/ToolNonCopperClear.py:348 #: flatcamTools/ToolPaint.py:251 msgid "Method" msgstr "Método" @@ -3647,20 +3647,20 @@ msgstr "" "Algoritmo para pintar el polígono:
Estándar : Paso fijo hacia " "adentro.
Basado en semillas : Hacia afuera desde las semillas." -#: flatcamEditors/FlatCAMGeoEditor.py:496 flatcamGUI/PreferencesUI.py:4148 -#: flatcamGUI/PreferencesUI.py:4576 flatcamTools/ToolNonCopperClear.py:357 +#: flatcamEditors/FlatCAMGeoEditor.py:496 flatcamGUI/PreferencesUI.py:4149 +#: flatcamGUI/PreferencesUI.py:4577 flatcamTools/ToolNonCopperClear.py:357 #: flatcamTools/ToolPaint.py:260 msgid "Standard" msgstr "Estándar" -#: flatcamEditors/FlatCAMGeoEditor.py:497 flatcamGUI/PreferencesUI.py:4149 -#: flatcamGUI/PreferencesUI.py:4577 flatcamTools/ToolNonCopperClear.py:358 +#: flatcamEditors/FlatCAMGeoEditor.py:497 flatcamGUI/PreferencesUI.py:4150 +#: flatcamGUI/PreferencesUI.py:4578 flatcamTools/ToolNonCopperClear.py:358 #: flatcamTools/ToolPaint.py:261 msgid "Seed-based" msgstr "Semillas" -#: flatcamEditors/FlatCAMGeoEditor.py:498 flatcamGUI/PreferencesUI.py:4150 -#: flatcamGUI/PreferencesUI.py:4578 flatcamTools/ToolNonCopperClear.py:359 +#: flatcamEditors/FlatCAMGeoEditor.py:498 flatcamGUI/PreferencesUI.py:4151 +#: flatcamGUI/PreferencesUI.py:4579 flatcamTools/ToolNonCopperClear.py:359 #: flatcamTools/ToolPaint.py:262 msgid "Straight lines" msgstr "Lineas rectas" @@ -3669,8 +3669,8 @@ msgstr "Lineas rectas" msgid "Connect:" msgstr "Conectar:" -#: flatcamEditors/FlatCAMGeoEditor.py:507 flatcamGUI/PreferencesUI.py:4159 -#: flatcamGUI/PreferencesUI.py:4585 flatcamTools/ToolNonCopperClear.py:366 +#: flatcamEditors/FlatCAMGeoEditor.py:507 flatcamGUI/PreferencesUI.py:4160 +#: flatcamGUI/PreferencesUI.py:4586 flatcamTools/ToolNonCopperClear.py:366 #: flatcamTools/ToolPaint.py:269 msgid "" "Draw lines between resulting\n" @@ -3683,8 +3683,8 @@ msgstr "" msgid "Contour:" msgstr "Contorno:" -#: flatcamEditors/FlatCAMGeoEditor.py:517 flatcamGUI/PreferencesUI.py:4170 -#: flatcamGUI/PreferencesUI.py:4595 flatcamTools/ToolNonCopperClear.py:375 +#: flatcamEditors/FlatCAMGeoEditor.py:517 flatcamGUI/PreferencesUI.py:4171 +#: flatcamGUI/PreferencesUI.py:4596 flatcamTools/ToolNonCopperClear.py:375 #: flatcamTools/ToolPaint.py:278 msgid "" "Cut around the perimeter of the polygon\n" @@ -3693,13 +3693,13 @@ msgstr "" "Corta todo el perímetro del polígono.\n" "Para recortar los bordes ásperos." -#: flatcamEditors/FlatCAMGeoEditor.py:529 flatcamGUI/FlatCAMGUI.py:1921 +#: flatcamEditors/FlatCAMGeoEditor.py:529 flatcamGUI/FlatCAMGUI.py:2058 msgid "Paint" msgstr "Pintar" -#: flatcamEditors/FlatCAMGeoEditor.py:547 flatcamGUI/FlatCAMGUI.py:749 -#: flatcamGUI/FlatCAMGUI.py:2194 flatcamGUI/ObjectUI.py:1694 -#: flatcamTools/ToolPaint.py:41 flatcamTools/ToolPaint.py:538 +#: flatcamEditors/FlatCAMGeoEditor.py:547 flatcamGUI/FlatCAMGUI.py:819 +#: flatcamGUI/FlatCAMGUI.py:2388 flatcamGUI/ObjectUI.py:1733 +#: flatcamTools/ToolPaint.py:41 flatcamTools/ToolPaint.py:539 msgid "Paint Tool" msgstr "Herramienta de pintura" @@ -3710,7 +3710,7 @@ msgstr "Pintura cancelada. Ninguna forma seleccionada." #: flatcamEditors/FlatCAMGeoEditor.py:597 #: flatcamEditors/FlatCAMGeoEditor.py:2784 #: flatcamEditors/FlatCAMGeoEditor.py:2814 -#: flatcamEditors/FlatCAMGeoEditor.py:2844 flatcamGUI/PreferencesUI.py:3140 +#: flatcamEditors/FlatCAMGeoEditor.py:2844 flatcamGUI/PreferencesUI.py:3141 #: flatcamTools/ToolProperties.py:120 flatcamTools/ToolProperties.py:158 msgid "Tools" msgstr "Herramientas" @@ -3718,15 +3718,15 @@ msgstr "Herramientas" #: flatcamEditors/FlatCAMGeoEditor.py:608 #: flatcamEditors/FlatCAMGeoEditor.py:992 #: flatcamEditors/FlatCAMGrbEditor.py:5011 -#: flatcamEditors/FlatCAMGrbEditor.py:5408 flatcamGUI/FlatCAMGUI.py:762 -#: flatcamGUI/FlatCAMGUI.py:2207 flatcamTools/ToolTransform.py:371 +#: flatcamEditors/FlatCAMGrbEditor.py:5408 flatcamGUI/FlatCAMGUI.py:840 +#: flatcamGUI/FlatCAMGUI.py:2406 flatcamTools/ToolTransform.py:371 msgid "Transform Tool" msgstr "Herramienta de transformación" #: flatcamEditors/FlatCAMGeoEditor.py:609 #: flatcamEditors/FlatCAMGeoEditor.py:674 #: flatcamEditors/FlatCAMGrbEditor.py:5012 -#: flatcamEditors/FlatCAMGrbEditor.py:5077 flatcamGUI/PreferencesUI.py:5207 +#: flatcamEditors/FlatCAMGrbEditor.py:5077 flatcamGUI/PreferencesUI.py:5208 #: flatcamTools/ToolTransform.py:25 flatcamTools/ToolTransform.py:79 msgid "Rotate" msgstr "Girar" @@ -3738,10 +3738,10 @@ msgstr "Sesgo / cizalla" #: flatcamEditors/FlatCAMGeoEditor.py:611 #: flatcamEditors/FlatCAMGrbEditor.py:2600 -#: 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 +#: flatcamEditors/FlatCAMGrbEditor.py:5014 flatcamGUI/FlatCAMGUI.py:954 +#: flatcamGUI/FlatCAMGUI.py:1986 flatcamGUI/FlatCAMGUI.py:2101 +#: flatcamGUI/FlatCAMGUI.py:2514 flatcamGUI/ObjectUI.py:103 +#: flatcamGUI/ObjectUI.py:121 flatcamGUI/PreferencesUI.py:5258 #: flatcamTools/ToolTransform.py:27 msgid "Scale" msgstr "Escala" @@ -3752,17 +3752,17 @@ msgid "Mirror (Flip)" msgstr "Espejo (Flip)" #: 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 +#: flatcamEditors/FlatCAMGrbEditor.py:5016 flatcamGUI/ObjectUI.py:132 +#: flatcamGUI/ObjectUI.py:148 flatcamGUI/ObjectUI.py:1217 +#: flatcamGUI/ObjectUI.py:1918 flatcamGUI/PreferencesUI.py:4196 +#: flatcamGUI/PreferencesUI.py:5305 flatcamTools/ToolNonCopperClear.py:397 #: flatcamTools/ToolTransform.py:29 msgid "Offset" msgstr "Compensar" #: flatcamEditors/FlatCAMGeoEditor.py:626 -#: flatcamEditors/FlatCAMGrbEditor.py:5029 flatcamGUI/FlatCAMGUI.py:709 -#: flatcamGUI/FlatCAMGUI.py:2160 +#: flatcamEditors/FlatCAMGrbEditor.py:5029 flatcamGUI/FlatCAMGUI.py:761 +#: flatcamGUI/FlatCAMGUI.py:2335 msgid "Editor" msgstr "Editor" @@ -3772,7 +3772,7 @@ msgid "Angle:" msgstr "Ángulo:" #: flatcamEditors/FlatCAMGeoEditor.py:660 -#: flatcamEditors/FlatCAMGrbEditor.py:5063 flatcamGUI/PreferencesUI.py:5217 +#: flatcamEditors/FlatCAMGrbEditor.py:5063 flatcamGUI/PreferencesUI.py:5218 #: flatcamTools/ToolTransform.py:64 msgid "" "Angle for Rotation action, in degrees.\n" @@ -3804,8 +3804,8 @@ msgstr "Ángulo X:" #: flatcamEditors/FlatCAMGeoEditor.py:701 #: flatcamEditors/FlatCAMGeoEditor.py:721 #: flatcamEditors/FlatCAMGrbEditor.py:5104 -#: flatcamEditors/FlatCAMGrbEditor.py:5124 flatcamGUI/PreferencesUI.py:5236 -#: flatcamGUI/PreferencesUI.py:5250 flatcamTools/ToolCalibration.py:508 +#: flatcamEditors/FlatCAMGrbEditor.py:5124 flatcamGUI/PreferencesUI.py:5237 +#: flatcamGUI/PreferencesUI.py:5251 flatcamTools/ToolCalibration.py:508 #: flatcamTools/ToolCalibration.py:521 msgid "" "Angle for Skew action, in degrees.\n" @@ -3886,7 +3886,7 @@ msgid "Scale Y" msgstr "Escala Y" #: flatcamEditors/FlatCAMGeoEditor.py:800 -#: flatcamEditors/FlatCAMGrbEditor.py:5203 flatcamGUI/PreferencesUI.py:5286 +#: flatcamEditors/FlatCAMGrbEditor.py:5203 flatcamGUI/PreferencesUI.py:5287 #: flatcamTools/ToolTransform.py:191 msgid "Link" msgstr "Enlazar" @@ -3901,7 +3901,7 @@ msgstr "" "Utilizando el Scale Factor X para ambos ejes." #: flatcamEditors/FlatCAMGeoEditor.py:808 -#: flatcamEditors/FlatCAMGrbEditor.py:5211 flatcamGUI/PreferencesUI.py:5294 +#: flatcamEditors/FlatCAMGrbEditor.py:5211 flatcamGUI/PreferencesUI.py:5295 #: flatcamTools/ToolTransform.py:199 msgid "Scale Reference" msgstr "Referencia de escala" @@ -4468,10 +4468,10 @@ msgstr "con diámetro" msgid "Copy cancelled. No shape selected." msgstr "Copia cancelada. Ninguna forma seleccionada." -#: 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 +#: flatcamEditors/FlatCAMGeoEditor.py:4025 flatcamGUI/FlatCAMGUI.py:3435 +#: flatcamGUI/FlatCAMGUI.py:3482 flatcamGUI/FlatCAMGUI.py:3501 +#: flatcamGUI/FlatCAMGUI.py:3636 flatcamGUI/FlatCAMGUI.py:3649 +#: flatcamGUI/FlatCAMGUI.py:3683 flatcamGUI/FlatCAMGUI.py:3741 msgid "Click on target point." msgstr "Haga clic en el punto de destino." @@ -4701,62 +4701,62 @@ msgstr "Hecho. Movimiento de aperturas completado." msgid "Done. Apertures copied." msgstr "Hecho. Aberturas copiadas." -#: flatcamEditors/FlatCAMGrbEditor.py:2376 flatcamGUI/FlatCAMGUI.py:1934 -#: flatcamGUI/PreferencesUI.py:1847 +#: flatcamEditors/FlatCAMGrbEditor.py:2376 flatcamGUI/FlatCAMGUI.py:2079 +#: flatcamGUI/PreferencesUI.py:1848 msgid "Gerber Editor" msgstr "Gerber Editor" -#: flatcamEditors/FlatCAMGrbEditor.py:2396 flatcamGUI/ObjectUI.py:212 +#: flatcamEditors/FlatCAMGrbEditor.py:2396 flatcamGUI/ObjectUI.py:223 #: flatcamTools/ToolProperties.py:156 msgid "Apertures" msgstr "Aberturas" -#: flatcamEditors/FlatCAMGrbEditor.py:2398 flatcamGUI/ObjectUI.py:214 +#: flatcamEditors/FlatCAMGrbEditor.py:2398 flatcamGUI/ObjectUI.py:225 msgid "Apertures Table for the Gerber Object." msgstr "Tabla de Aperturas para el Objeto Gerber." #: flatcamEditors/FlatCAMGrbEditor.py:2409 -#: flatcamEditors/FlatCAMGrbEditor.py:3755 flatcamGUI/ObjectUI.py:247 +#: flatcamEditors/FlatCAMGrbEditor.py:3755 flatcamGUI/ObjectUI.py:258 msgid "Code" msgstr "Código" #: flatcamEditors/FlatCAMGrbEditor.py:2409 -#: flatcamEditors/FlatCAMGrbEditor.py:3755 flatcamGUI/ObjectUI.py:247 -#: flatcamGUI/ObjectUI.py:1178 flatcamGUI/ObjectUI.py:1866 +#: flatcamEditors/FlatCAMGrbEditor.py:3755 flatcamGUI/ObjectUI.py:258 +#: flatcamGUI/ObjectUI.py:1217 flatcamGUI/ObjectUI.py:1918 msgid "Type" msgstr "Tipo" #: flatcamEditors/FlatCAMGrbEditor.py:2409 -#: flatcamEditors/FlatCAMGrbEditor.py:3755 flatcamGUI/ObjectUI.py:247 -#: flatcamGUI/PreferencesUI.py:6201 flatcamGUI/PreferencesUI.py:6230 -#: flatcamGUI/PreferencesUI.py:6332 flatcamTools/ToolCopperThieving.py:260 +#: flatcamEditors/FlatCAMGrbEditor.py:3755 flatcamGUI/ObjectUI.py:258 +#: flatcamGUI/PreferencesUI.py:6202 flatcamGUI/PreferencesUI.py:6231 +#: flatcamGUI/PreferencesUI.py:6333 flatcamTools/ToolCopperThieving.py:260 #: flatcamTools/ToolCopperThieving.py:300 flatcamTools/ToolFiducials.py:156 msgid "Size" msgstr "Tamaño" #: flatcamEditors/FlatCAMGrbEditor.py:2409 -#: flatcamEditors/FlatCAMGrbEditor.py:3755 flatcamGUI/ObjectUI.py:247 +#: flatcamEditors/FlatCAMGrbEditor.py:3755 flatcamGUI/ObjectUI.py:258 msgid "Dim" msgstr "Dim" -#: flatcamEditors/FlatCAMGrbEditor.py:2413 flatcamGUI/ObjectUI.py:251 +#: flatcamEditors/FlatCAMGrbEditor.py:2413 flatcamGUI/ObjectUI.py:262 msgid "Index" msgstr "Índice" #: flatcamEditors/FlatCAMGrbEditor.py:2415 -#: flatcamEditors/FlatCAMGrbEditor.py:2444 flatcamGUI/ObjectUI.py:253 +#: flatcamEditors/FlatCAMGrbEditor.py:2444 flatcamGUI/ObjectUI.py:264 msgid "Aperture Code" msgstr "Código de apertura" -#: flatcamEditors/FlatCAMGrbEditor.py:2417 flatcamGUI/ObjectUI.py:255 +#: flatcamEditors/FlatCAMGrbEditor.py:2417 flatcamGUI/ObjectUI.py:266 msgid "Type of aperture: circular, rectangle, macros etc" msgstr "Tipo de apertura: circular, rectangular, macros, etc" -#: flatcamEditors/FlatCAMGrbEditor.py:2419 flatcamGUI/ObjectUI.py:257 +#: flatcamEditors/FlatCAMGrbEditor.py:2419 flatcamGUI/ObjectUI.py:268 msgid "Aperture Size:" msgstr "Tamaño de apertura:" -#: flatcamEditors/FlatCAMGrbEditor.py:2421 flatcamGUI/ObjectUI.py:259 +#: flatcamEditors/FlatCAMGrbEditor.py:2421 flatcamGUI/ObjectUI.py:270 msgid "" "Aperture Dimensions:\n" " - (width, height) for R, O type.\n" @@ -4766,7 +4766,7 @@ msgstr "" "  - (ancho, alto) para R, O tipo.\n" "  - (dia, nVertices) para tipo P" -#: flatcamEditors/FlatCAMGrbEditor.py:2445 flatcamGUI/PreferencesUI.py:1878 +#: flatcamEditors/FlatCAMGrbEditor.py:2445 flatcamGUI/PreferencesUI.py:1879 msgid "Code for the new aperture" msgstr "Código para la nueva apertura" @@ -4842,7 +4842,7 @@ msgstr "Apertura del tampón" msgid "Buffer a aperture in the aperture list" msgstr "Buffer de apertura en la lista de apertura" -#: flatcamEditors/FlatCAMGrbEditor.py:2542 flatcamGUI/PreferencesUI.py:2012 +#: flatcamEditors/FlatCAMGrbEditor.py:2542 flatcamGUI/PreferencesUI.py:2013 msgid "Buffer distance" msgstr "Dist. de buffer" @@ -4864,9 +4864,9 @@ msgstr "" "  - 'Biselado:' la esquina es una línea que conecta directamente las " "funciones que se encuentran en la esquina" -#: flatcamEditors/FlatCAMGrbEditor.py:2560 flatcamGUI/FlatCAMGUI.py:842 -#: flatcamGUI/FlatCAMGUI.py:1868 flatcamGUI/FlatCAMGUI.py:1920 -#: flatcamGUI/FlatCAMGUI.py:1947 flatcamGUI/FlatCAMGUI.py:2283 +#: flatcamEditors/FlatCAMGrbEditor.py:2560 flatcamGUI/FlatCAMGUI.py:952 +#: flatcamGUI/FlatCAMGUI.py:1984 flatcamGUI/FlatCAMGUI.py:2056 +#: flatcamGUI/FlatCAMGUI.py:2099 flatcamGUI/FlatCAMGUI.py:2512 msgid "Buffer" msgstr "Buffer" @@ -4878,7 +4878,7 @@ msgstr "Apertura de la escala" msgid "Scale a aperture in the aperture list" msgstr "Escala una abertura en la lista de aperturas" -#: flatcamEditors/FlatCAMGrbEditor.py:2585 flatcamGUI/PreferencesUI.py:2027 +#: flatcamEditors/FlatCAMGrbEditor.py:2585 flatcamGUI/PreferencesUI.py:2028 msgid "Scale factor" msgstr "Factor de escala" @@ -4942,8 +4942,8 @@ msgstr "Limpiar" msgid "Clear all the markings." msgstr "Borra todas las marcas." -#: flatcamEditors/FlatCAMGrbEditor.py:2684 flatcamGUI/FlatCAMGUI.py:832 -#: flatcamGUI/FlatCAMGUI.py:1868 flatcamGUI/FlatCAMGUI.py:2273 +#: flatcamEditors/FlatCAMGrbEditor.py:2684 flatcamGUI/FlatCAMGUI.py:937 +#: flatcamGUI/FlatCAMGUI.py:1984 flatcamGUI/FlatCAMGUI.py:2497 msgid "Add Pad Array" msgstr "Agregar matriz de pad" @@ -4959,11 +4959,11 @@ msgstr "" "Seleccione el tipo de matriz de pads para crear.\n" "Puede ser Lineal X (Y) o Circular" -#: flatcamEditors/FlatCAMGrbEditor.py:2703 flatcamGUI/PreferencesUI.py:1915 +#: flatcamEditors/FlatCAMGrbEditor.py:2703 flatcamGUI/PreferencesUI.py:1916 msgid "Nr of pads" msgstr "Nº de almohadillas" -#: flatcamEditors/FlatCAMGrbEditor.py:2705 flatcamGUI/PreferencesUI.py:1917 +#: flatcamEditors/FlatCAMGrbEditor.py:2705 flatcamGUI/PreferencesUI.py:1918 msgid "Specify how many pads to be in the array." msgstr "Especifique cuántos pads estarán en la matriz." @@ -5167,9 +5167,9 @@ msgstr "Reemplazará la cadena del cuadro Buscar con la del cuadro Reemplazar." msgid "String to replace the one in the Find box throughout the text." msgstr "Cadena para reemplazar la del cuadro Buscar en todo el texto." -#: flatcamEditors/FlatCAMTextEditor.py:87 flatcamGUI/ObjectUI.py:471 -#: flatcamGUI/ObjectUI.py:1759 flatcamGUI/PreferencesUI.py:1494 -#: flatcamGUI/PreferencesUI.py:3641 flatcamGUI/PreferencesUI.py:4616 +#: flatcamEditors/FlatCAMTextEditor.py:87 flatcamGUI/ObjectUI.py:482 +#: flatcamGUI/ObjectUI.py:1811 flatcamGUI/PreferencesUI.py:1495 +#: flatcamGUI/PreferencesUI.py:3642 flatcamGUI/PreferencesUI.py:4617 msgid "All" msgstr "Todos" @@ -5232,7 +5232,7 @@ msgid "Code Editor content copied to clipboard ..." msgstr "Contenido del editor de código copiado al portapapeles ..." #: flatcamGUI/FlatCAMGUI.py:52 flatcamGUI/FlatCAMGUI.py:54 -#: flatcamGUI/FlatCAMGUI.py:1891 +#: flatcamGUI/FlatCAMGUI.py:2009 msgid "Toggle Panel" msgstr "Panel de palanca" @@ -5252,91 +5252,91 @@ msgstr "Creará un nuevo proyecto en blanco" msgid "&New" msgstr "&Nuevo" -#: flatcamGUI/FlatCAMGUI.py:79 +#: flatcamGUI/FlatCAMGUI.py:80 msgid "Geometry\tN" msgstr "Geometría\tN" -#: flatcamGUI/FlatCAMGUI.py:81 +#: flatcamGUI/FlatCAMGUI.py:82 msgid "Will create a new, empty Geometry Object." msgstr "Creará un nuevo objeto vacío de geometría." -#: flatcamGUI/FlatCAMGUI.py:83 +#: flatcamGUI/FlatCAMGUI.py:84 msgid "Gerber\tB" msgstr "Gerber\tB" -#: flatcamGUI/FlatCAMGUI.py:85 +#: flatcamGUI/FlatCAMGUI.py:86 msgid "Will create a new, empty Gerber Object." msgstr "Creará un nuevo objeto vacío de Gerber." -#: flatcamGUI/FlatCAMGUI.py:87 +#: flatcamGUI/FlatCAMGUI.py:88 msgid "Excellon\tL" msgstr "Excellon\tL" -#: flatcamGUI/FlatCAMGUI.py:89 +#: flatcamGUI/FlatCAMGUI.py:90 msgid "Will create a new, empty Excellon Object." msgstr "Creará un objeto Excellon nuevo y vacío." -#: flatcamGUI/FlatCAMGUI.py:93 +#: flatcamGUI/FlatCAMGUI.py:94 msgid "Document\tD" msgstr "Documento\tD" -#: flatcamGUI/FlatCAMGUI.py:95 +#: flatcamGUI/FlatCAMGUI.py:96 msgid "Will create a new, empty Document Object." msgstr "Creará un nuevo objeto de Documento vacío." -#: flatcamGUI/FlatCAMGUI.py:98 flatcamGUI/FlatCAMGUI.py:3837 +#: flatcamGUI/FlatCAMGUI.py:99 flatcamGUI/FlatCAMGUI.py:4075 #: flatcamTools/ToolPcbWizard.py:62 flatcamTools/ToolPcbWizard.py:69 msgid "Open" msgstr "Abierto" -#: flatcamGUI/FlatCAMGUI.py:102 +#: flatcamGUI/FlatCAMGUI.py:103 msgid "Open &Project ..." msgstr "Abierto &Project ..." -#: flatcamGUI/FlatCAMGUI.py:108 flatcamGUI/FlatCAMGUI.py:3846 +#: flatcamGUI/FlatCAMGUI.py:109 flatcamGUI/FlatCAMGUI.py:4085 msgid "Open &Gerber ...\tCTRL+G" msgstr "Abierto &Gerber ...\tCTRL+G" -#: flatcamGUI/FlatCAMGUI.py:113 flatcamGUI/FlatCAMGUI.py:3851 +#: flatcamGUI/FlatCAMGUI.py:114 flatcamGUI/FlatCAMGUI.py:4090 msgid "Open &Excellon ...\tCTRL+E" msgstr "Abierto &Excellon ...\tCTRL+E" -#: flatcamGUI/FlatCAMGUI.py:117 flatcamGUI/FlatCAMGUI.py:3855 +#: flatcamGUI/FlatCAMGUI.py:118 flatcamGUI/FlatCAMGUI.py:4095 msgid "Open G-&Code ..." msgstr "Abierto G-&Code ..." -#: flatcamGUI/FlatCAMGUI.py:123 +#: flatcamGUI/FlatCAMGUI.py:124 msgid "Open Config ..." msgstr "Abierto Config ..." -#: flatcamGUI/FlatCAMGUI.py:127 +#: flatcamGUI/FlatCAMGUI.py:128 msgid "Recent projects" msgstr "Proyectos recientes" -#: flatcamGUI/FlatCAMGUI.py:128 +#: flatcamGUI/FlatCAMGUI.py:129 msgid "Recent files" msgstr "Archivos recientes" -#: flatcamGUI/FlatCAMGUI.py:134 +#: flatcamGUI/FlatCAMGUI.py:135 msgid "Scripting" msgstr "Scripting" -#: flatcamGUI/FlatCAMGUI.py:137 flatcamGUI/FlatCAMGUI.py:739 -#: flatcamGUI/FlatCAMGUI.py:2186 +#: flatcamGUI/FlatCAMGUI.py:138 flatcamGUI/FlatCAMGUI.py:803 +#: flatcamGUI/FlatCAMGUI.py:2374 msgid "New Script ..." msgstr "Nuevo Script ..." -#: flatcamGUI/FlatCAMGUI.py:138 flatcamGUI/FlatCAMGUI.py:740 -#: flatcamGUI/FlatCAMGUI.py:2187 +#: flatcamGUI/FlatCAMGUI.py:139 flatcamGUI/FlatCAMGUI.py:805 +#: flatcamGUI/FlatCAMGUI.py:2376 msgid "Open Script ..." msgstr "Abrir Script ..." -#: flatcamGUI/FlatCAMGUI.py:140 flatcamGUI/FlatCAMGUI.py:741 -#: flatcamGUI/FlatCAMGUI.py:2188 flatcamGUI/FlatCAMGUI.py:3826 +#: flatcamGUI/FlatCAMGUI.py:141 flatcamGUI/FlatCAMGUI.py:807 +#: flatcamGUI/FlatCAMGUI.py:2378 flatcamGUI/FlatCAMGUI.py:4064 msgid "Run Script ..." msgstr "Ejecutar Script ..." -#: flatcamGUI/FlatCAMGUI.py:142 flatcamGUI/FlatCAMGUI.py:3828 +#: flatcamGUI/FlatCAMGUI.py:143 flatcamGUI/FlatCAMGUI.py:4066 msgid "" "Will run the opened Tcl Script thus\n" "enabling the automation of certain\n" @@ -5346,47 +5346,47 @@ msgstr "" "permitiendo la automatización de ciertos\n" "Funciones de FlatCAM." -#: flatcamGUI/FlatCAMGUI.py:155 +#: flatcamGUI/FlatCAMGUI.py:156 msgid "Import" msgstr "Importar" -#: flatcamGUI/FlatCAMGUI.py:157 +#: flatcamGUI/FlatCAMGUI.py:158 msgid "&SVG as Geometry Object ..." msgstr "&SVG como objeto de geometría ..." -#: flatcamGUI/FlatCAMGUI.py:160 +#: flatcamGUI/FlatCAMGUI.py:161 msgid "&SVG as Gerber Object ..." msgstr "&SVG como objeto de Gerber ..." -#: flatcamGUI/FlatCAMGUI.py:165 +#: flatcamGUI/FlatCAMGUI.py:166 msgid "&DXF as Geometry Object ..." msgstr "&DXF como objeto de geometría ..." -#: flatcamGUI/FlatCAMGUI.py:168 +#: flatcamGUI/FlatCAMGUI.py:169 msgid "&DXF as Gerber Object ..." msgstr "&DXF como objeto de Gerber ..." -#: flatcamGUI/FlatCAMGUI.py:172 +#: flatcamGUI/FlatCAMGUI.py:173 msgid "HPGL2 as Geometry Object ..." msgstr "HPGL2 como objeto de geometría ..." -#: flatcamGUI/FlatCAMGUI.py:177 +#: flatcamGUI/FlatCAMGUI.py:178 msgid "Export" msgstr "Exportar" -#: flatcamGUI/FlatCAMGUI.py:180 +#: flatcamGUI/FlatCAMGUI.py:181 msgid "Export &SVG ..." msgstr "Exportar &SVG ..." -#: flatcamGUI/FlatCAMGUI.py:183 +#: flatcamGUI/FlatCAMGUI.py:184 msgid "Export DXF ..." msgstr "Exportar DXF ..." -#: flatcamGUI/FlatCAMGUI.py:188 +#: flatcamGUI/FlatCAMGUI.py:189 msgid "Export &PNG ..." msgstr "Exportar &PNG ..." -#: flatcamGUI/FlatCAMGUI.py:190 +#: flatcamGUI/FlatCAMGUI.py:191 msgid "" "Will export an image in PNG format,\n" "the saved image will contain the visual \n" @@ -5396,11 +5396,11 @@ msgstr "" "La imagen guardada contendrá lo visual.\n" "Información actualmente en FlatCAM Plot Area." -#: flatcamGUI/FlatCAMGUI.py:199 +#: flatcamGUI/FlatCAMGUI.py:200 msgid "Export &Excellon ..." msgstr "Exportación y Excellon ..." -#: flatcamGUI/FlatCAMGUI.py:201 +#: flatcamGUI/FlatCAMGUI.py:202 msgid "" "Will export an Excellon Object as Excellon file,\n" "the coordinates format, the file units and zeros\n" @@ -5410,11 +5410,11 @@ msgstr "" "El formato de las coordenadas, las unidades de archivo y los ceros.\n" "se configuran en Preferencias -> Exportación de Excellon." -#: flatcamGUI/FlatCAMGUI.py:208 +#: flatcamGUI/FlatCAMGUI.py:209 msgid "Export &Gerber ..." msgstr "Exportar &Gerber ..." -#: flatcamGUI/FlatCAMGUI.py:210 +#: flatcamGUI/FlatCAMGUI.py:211 msgid "" "Will export an Gerber Object as Gerber file,\n" "the coordinates format, the file units and zeros\n" @@ -5424,61 +5424,61 @@ msgstr "" "El formato de las coordenadas, las unidades de archivo y los ceros.\n" "se establecen en Preferencias -> Exportar Gerber." -#: flatcamGUI/FlatCAMGUI.py:226 +#: flatcamGUI/FlatCAMGUI.py:229 msgid "Backup" msgstr "Apoyo" -#: flatcamGUI/FlatCAMGUI.py:230 +#: flatcamGUI/FlatCAMGUI.py:233 msgid "Import Preferences from file ..." msgstr "Importar preferencias del archivo ..." -#: flatcamGUI/FlatCAMGUI.py:235 +#: flatcamGUI/FlatCAMGUI.py:238 msgid "Export Preferences to file ..." msgstr "Exportar preferencias a un archivo ..." -#: flatcamGUI/FlatCAMGUI.py:241 flatcamGUI/FlatCAMGUI.py:612 -#: flatcamGUI/FlatCAMGUI.py:1109 +#: flatcamGUI/FlatCAMGUI.py:244 flatcamGUI/FlatCAMGUI.py:656 +#: flatcamGUI/FlatCAMGUI.py:1225 msgid "Save" msgstr "Salvar" -#: flatcamGUI/FlatCAMGUI.py:244 +#: flatcamGUI/FlatCAMGUI.py:248 msgid "&Save Project ..." msgstr "Salvar proyecto ..." -#: flatcamGUI/FlatCAMGUI.py:249 +#: flatcamGUI/FlatCAMGUI.py:253 msgid "Save Project &As ...\tCTRL+S" msgstr "Guardar proyecto como...\tCTRL+S" -#: flatcamGUI/FlatCAMGUI.py:254 +#: flatcamGUI/FlatCAMGUI.py:258 msgid "Save Project C&opy ..." msgstr "Guardar copia del proyecto ..." -#: flatcamGUI/FlatCAMGUI.py:268 +#: flatcamGUI/FlatCAMGUI.py:273 msgid "E&xit" msgstr "Salida" -#: flatcamGUI/FlatCAMGUI.py:276 flatcamGUI/FlatCAMGUI.py:609 -#: flatcamGUI/FlatCAMGUI.py:1968 +#: flatcamGUI/FlatCAMGUI.py:281 flatcamGUI/FlatCAMGUI.py:650 +#: flatcamGUI/FlatCAMGUI.py:2132 msgid "Edit" msgstr "Editar" -#: flatcamGUI/FlatCAMGUI.py:279 +#: flatcamGUI/FlatCAMGUI.py:285 msgid "Edit Object\tE" msgstr "Editar objeto\tE" -#: flatcamGUI/FlatCAMGUI.py:280 +#: flatcamGUI/FlatCAMGUI.py:287 msgid "Close Editor\tCTRL+S" msgstr "Cerrar Editor\tCTRL+S" -#: flatcamGUI/FlatCAMGUI.py:288 +#: flatcamGUI/FlatCAMGUI.py:296 msgid "Conversion" msgstr "Conversión" -#: flatcamGUI/FlatCAMGUI.py:290 +#: flatcamGUI/FlatCAMGUI.py:298 msgid "&Join Geo/Gerber/Exc -> Geo" msgstr "Unirse Geo/Gerber/Exc -> Geo" -#: flatcamGUI/FlatCAMGUI.py:292 +#: flatcamGUI/FlatCAMGUI.py:300 msgid "" "Merge a selection of objects, which can be of type:\n" "- Gerber\n" @@ -5492,30 +5492,30 @@ msgstr "" "- Geometría\n" "en un nuevo objeto de geometría combo." -#: flatcamGUI/FlatCAMGUI.py:299 +#: flatcamGUI/FlatCAMGUI.py:307 msgid "Join Excellon(s) -> Excellon" msgstr "Únete a Excellon (s) -> Excellon" -#: flatcamGUI/FlatCAMGUI.py:301 +#: flatcamGUI/FlatCAMGUI.py:309 msgid "Merge a selection of Excellon objects into a new combo Excellon object." msgstr "" "Combine una selección de objetos de Excellon en un nuevo objeto de Excellon " "combinado." -#: flatcamGUI/FlatCAMGUI.py:304 +#: flatcamGUI/FlatCAMGUI.py:312 msgid "Join Gerber(s) -> Gerber" msgstr "Únete a Gerber (s) -> Gerber" -#: flatcamGUI/FlatCAMGUI.py:306 +#: flatcamGUI/FlatCAMGUI.py:314 msgid "Merge a selection of Gerber objects into a new combo Gerber object." msgstr "" "Combine una selección de objetos Gerber en un nuevo objeto combo Gerber." -#: flatcamGUI/FlatCAMGUI.py:311 +#: flatcamGUI/FlatCAMGUI.py:319 msgid "Convert Single to MultiGeo" msgstr "Convertir solo geo a multi geo" -#: flatcamGUI/FlatCAMGUI.py:313 +#: flatcamGUI/FlatCAMGUI.py:321 msgid "" "Will convert a Geometry object from single_geometry type\n" "to a multi_geometry type." @@ -5523,11 +5523,11 @@ msgstr "" "Convertirá un objeto de geometría de un tipo de geometría única\n" "a un tipo de geometría múltiple." -#: flatcamGUI/FlatCAMGUI.py:317 +#: flatcamGUI/FlatCAMGUI.py:325 msgid "Convert Multi to SingleGeo" msgstr "Convertir multi a solo Geo" -#: flatcamGUI/FlatCAMGUI.py:319 +#: flatcamGUI/FlatCAMGUI.py:327 msgid "" "Will convert a Geometry object from multi_geometry type\n" "to a single_geometry type." @@ -5535,702 +5535,702 @@ msgstr "" "Convertirá un objeto de geometría de tipo de geometría múltiple\n" "a un solo tipo de geometría." -#: flatcamGUI/FlatCAMGUI.py:325 +#: flatcamGUI/FlatCAMGUI.py:334 msgid "Convert Any to Geo" msgstr "Convertir cualquiera a Geo" -#: flatcamGUI/FlatCAMGUI.py:327 +#: flatcamGUI/FlatCAMGUI.py:337 msgid "Convert Any to Gerber" msgstr "Convertir cualquiera a Gerber" -#: flatcamGUI/FlatCAMGUI.py:332 +#: flatcamGUI/FlatCAMGUI.py:343 msgid "&Copy\tCTRL+C" msgstr "Dupdo\tCTRL+C" -#: flatcamGUI/FlatCAMGUI.py:336 +#: flatcamGUI/FlatCAMGUI.py:348 msgid "&Delete\tDEL" msgstr "Borrar\tDEL" -#: flatcamGUI/FlatCAMGUI.py:340 +#: flatcamGUI/FlatCAMGUI.py:353 msgid "Se&t Origin\tO" msgstr "Establecer origen\tO" -#: flatcamGUI/FlatCAMGUI.py:341 +#: flatcamGUI/FlatCAMGUI.py:355 msgid "Jump to Location\tJ" msgstr "Ir a la ubicación\tJ" -#: flatcamGUI/FlatCAMGUI.py:346 +#: flatcamGUI/FlatCAMGUI.py:360 msgid "Toggle Units\tQ" msgstr "Unidades de palanca\tQ" -#: flatcamGUI/FlatCAMGUI.py:347 +#: flatcamGUI/FlatCAMGUI.py:362 msgid "&Select All\tCTRL+A" msgstr "Seleccionar todo\tCTRL+A" -#: flatcamGUI/FlatCAMGUI.py:351 +#: flatcamGUI/FlatCAMGUI.py:367 msgid "&Preferences\tSHIFT+P" msgstr "Preferencias\tSHIFT+P" -#: flatcamGUI/FlatCAMGUI.py:357 flatcamTools/ToolProperties.py:153 +#: flatcamGUI/FlatCAMGUI.py:373 flatcamTools/ToolProperties.py:153 msgid "Options" msgstr "Opciones" -#: flatcamGUI/FlatCAMGUI.py:359 +#: flatcamGUI/FlatCAMGUI.py:375 msgid "&Rotate Selection\tSHIFT+(R)" msgstr "Rotar selección\tSHIFT+(R)" -#: flatcamGUI/FlatCAMGUI.py:364 +#: flatcamGUI/FlatCAMGUI.py:380 msgid "&Skew on X axis\tSHIFT+X" msgstr "Sesgo en el eje X\tSHIFT+X" -#: flatcamGUI/FlatCAMGUI.py:366 +#: flatcamGUI/FlatCAMGUI.py:382 msgid "S&kew on Y axis\tSHIFT+Y" msgstr "Sesgo en el eje Y\tSHIFT+Y" -#: flatcamGUI/FlatCAMGUI.py:371 +#: flatcamGUI/FlatCAMGUI.py:387 msgid "Flip on &X axis\tX" msgstr "Voltear en el eje X\tX" -#: flatcamGUI/FlatCAMGUI.py:373 +#: flatcamGUI/FlatCAMGUI.py:389 msgid "Flip on &Y axis\tY" msgstr "Voltear en el ejeY\tY" -#: flatcamGUI/FlatCAMGUI.py:378 +#: flatcamGUI/FlatCAMGUI.py:394 msgid "View source\tALT+S" msgstr "Ver fuente\tALT+S" -#: flatcamGUI/FlatCAMGUI.py:380 +#: flatcamGUI/FlatCAMGUI.py:396 msgid "Tools DataBase\tCTRL+D" msgstr "DB de Herramientas\tCTRL+D" -#: flatcamGUI/FlatCAMGUI.py:387 flatcamGUI/FlatCAMGUI.py:1904 +#: flatcamGUI/FlatCAMGUI.py:403 flatcamGUI/FlatCAMGUI.py:2029 msgid "View" msgstr "Ver" -#: flatcamGUI/FlatCAMGUI.py:388 +#: flatcamGUI/FlatCAMGUI.py:405 msgid "Enable all plots\tALT+1" msgstr "Habilitar todas las parcelas\tALT+1" -#: flatcamGUI/FlatCAMGUI.py:390 +#: flatcamGUI/FlatCAMGUI.py:407 msgid "Disable all plots\tALT+2" msgstr "Deshabilitar todas las parcelas\tALT+2" -#: flatcamGUI/FlatCAMGUI.py:392 +#: flatcamGUI/FlatCAMGUI.py:409 msgid "Disable non-selected\tALT+3" msgstr "Deshabilitar no seleccionado\tALT+3" -#: flatcamGUI/FlatCAMGUI.py:395 +#: flatcamGUI/FlatCAMGUI.py:413 msgid "&Zoom Fit\tV" msgstr "Ajuste de zoom\tV" -#: flatcamGUI/FlatCAMGUI.py:396 +#: flatcamGUI/FlatCAMGUI.py:415 msgid "&Zoom In\t=" msgstr "Acercarse\t=" -#: flatcamGUI/FlatCAMGUI.py:397 +#: flatcamGUI/FlatCAMGUI.py:417 msgid "&Zoom Out\t-" msgstr "Disminuir el zoom\t-" -#: flatcamGUI/FlatCAMGUI.py:401 +#: flatcamGUI/FlatCAMGUI.py:422 msgid "Redraw All\tF5" msgstr "Redibujar todo\tF5" -#: flatcamGUI/FlatCAMGUI.py:405 +#: flatcamGUI/FlatCAMGUI.py:426 msgid "Toggle Code Editor\tSHIFT+E" msgstr "Alternar Editor de Código\tSHIFT+E" -#: flatcamGUI/FlatCAMGUI.py:408 +#: flatcamGUI/FlatCAMGUI.py:429 msgid "&Toggle FullScreen\tALT+F10" msgstr "Alternar pantalla completa\tALT+F10" -#: flatcamGUI/FlatCAMGUI.py:410 +#: flatcamGUI/FlatCAMGUI.py:431 msgid "&Toggle Plot Area\tCTRL+F10" msgstr "Alternar área de la parcela\tCTRL+F10" -#: flatcamGUI/FlatCAMGUI.py:412 +#: flatcamGUI/FlatCAMGUI.py:433 msgid "&Toggle Project/Sel/Tool\t`" msgstr "Palanca Proyecto / Sel / Tool\t`" -#: flatcamGUI/FlatCAMGUI.py:416 +#: flatcamGUI/FlatCAMGUI.py:437 msgid "&Toggle Grid Snap\tG" msgstr "Activar cuadrícula\tG" -#: flatcamGUI/FlatCAMGUI.py:418 +#: flatcamGUI/FlatCAMGUI.py:439 msgid "&Toggle Grid Lines\tALT+G" msgstr "Alternar Líneas de Cuadrícula\tALT+G" -#: flatcamGUI/FlatCAMGUI.py:419 +#: flatcamGUI/FlatCAMGUI.py:441 msgid "&Toggle Axis\tSHIFT+G" msgstr "Eje de palanca\tSHIFT+G" -#: flatcamGUI/FlatCAMGUI.py:422 +#: flatcamGUI/FlatCAMGUI.py:443 msgid "Toggle Workspace\tSHIFT+W" msgstr "Alternar espacio de trabajo\tSHIFT+W" -#: flatcamGUI/FlatCAMGUI.py:427 +#: flatcamGUI/FlatCAMGUI.py:448 msgid "Objects" msgstr "Objetos" -#: flatcamGUI/FlatCAMGUI.py:440 +#: flatcamGUI/FlatCAMGUI.py:462 msgid "&Command Line\tS" msgstr "Línea de comando\tS" -#: flatcamGUI/FlatCAMGUI.py:445 +#: flatcamGUI/FlatCAMGUI.py:467 msgid "Help" msgstr "Ayuda" -#: flatcamGUI/FlatCAMGUI.py:446 +#: flatcamGUI/FlatCAMGUI.py:469 msgid "Online Help\tF1" msgstr "Ayuda en Online\tF1" -#: flatcamGUI/FlatCAMGUI.py:454 +#: flatcamGUI/FlatCAMGUI.py:479 msgid "Report a bug" msgstr "Reportar un error" -#: flatcamGUI/FlatCAMGUI.py:457 +#: flatcamGUI/FlatCAMGUI.py:482 msgid "Excellon Specification" msgstr "Especificación de Excellon" -#: flatcamGUI/FlatCAMGUI.py:459 +#: flatcamGUI/FlatCAMGUI.py:484 msgid "Gerber Specification" msgstr "Especificación de Gerber" -#: flatcamGUI/FlatCAMGUI.py:464 +#: flatcamGUI/FlatCAMGUI.py:489 msgid "Shortcuts List\tF3" msgstr "Lista de accesos directos\tF3" -#: flatcamGUI/FlatCAMGUI.py:465 +#: flatcamGUI/FlatCAMGUI.py:491 msgid "YouTube Channel\tF4" msgstr "Canal de Youtube\tF4" -#: flatcamGUI/FlatCAMGUI.py:476 +#: flatcamGUI/FlatCAMGUI.py:502 msgid "Add Circle\tO" msgstr "Añadir círculo\tO" -#: flatcamGUI/FlatCAMGUI.py:478 +#: flatcamGUI/FlatCAMGUI.py:505 msgid "Add Arc\tA" msgstr "Añadir arco\tA" -#: flatcamGUI/FlatCAMGUI.py:481 +#: flatcamGUI/FlatCAMGUI.py:508 msgid "Add Rectangle\tR" msgstr "Añadir rectángulo\tR" -#: flatcamGUI/FlatCAMGUI.py:484 +#: flatcamGUI/FlatCAMGUI.py:511 msgid "Add Polygon\tN" msgstr "Añadir polígono\tN" -#: flatcamGUI/FlatCAMGUI.py:486 +#: flatcamGUI/FlatCAMGUI.py:514 msgid "Add Path\tP" msgstr "Añadir ruta\tP" -#: flatcamGUI/FlatCAMGUI.py:488 +#: flatcamGUI/FlatCAMGUI.py:517 msgid "Add Text\tT" msgstr "Añadir texto\tT" -#: flatcamGUI/FlatCAMGUI.py:491 +#: flatcamGUI/FlatCAMGUI.py:520 msgid "Polygon Union\tU" msgstr "Unión de polígonos\tU" -#: flatcamGUI/FlatCAMGUI.py:493 +#: flatcamGUI/FlatCAMGUI.py:522 msgid "Polygon Intersection\tE" msgstr "Intersección de polígonos\tE" -#: flatcamGUI/FlatCAMGUI.py:495 +#: flatcamGUI/FlatCAMGUI.py:524 msgid "Polygon Subtraction\tS" msgstr "Sustracción de polígonos\tS" -#: flatcamGUI/FlatCAMGUI.py:499 +#: flatcamGUI/FlatCAMGUI.py:528 msgid "Cut Path\tX" msgstr "Camino de corte\tX" -#: flatcamGUI/FlatCAMGUI.py:501 +#: flatcamGUI/FlatCAMGUI.py:531 msgid "Copy Geom\tC" msgstr "Copia Geo\tC" -#: flatcamGUI/FlatCAMGUI.py:503 +#: flatcamGUI/FlatCAMGUI.py:533 msgid "Delete Shape\tDEL" msgstr "Eliminar forma\tDEL" -#: flatcamGUI/FlatCAMGUI.py:506 flatcamGUI/FlatCAMGUI.py:588 +#: flatcamGUI/FlatCAMGUI.py:537 flatcamGUI/FlatCAMGUI.py:624 msgid "Move\tM" msgstr "Movimiento\tM" -#: flatcamGUI/FlatCAMGUI.py:508 +#: flatcamGUI/FlatCAMGUI.py:539 msgid "Buffer Tool\tB" msgstr "Herramienta amortiguadora\tB" -#: flatcamGUI/FlatCAMGUI.py:511 +#: flatcamGUI/FlatCAMGUI.py:542 msgid "Paint Tool\tI" msgstr "Herramienta de pintura\tI" -#: flatcamGUI/FlatCAMGUI.py:514 +#: flatcamGUI/FlatCAMGUI.py:545 msgid "Transform Tool\tALT+R" msgstr "Herramienta de transformación\tALT+R" -#: flatcamGUI/FlatCAMGUI.py:518 +#: flatcamGUI/FlatCAMGUI.py:549 msgid "Toggle Corner Snap\tK" msgstr "Alternar esquina esquina\tK" -#: flatcamGUI/FlatCAMGUI.py:524 +#: flatcamGUI/FlatCAMGUI.py:555 msgid ">Excellon Editor<" msgstr ">Excellon Editor<" -#: flatcamGUI/FlatCAMGUI.py:528 +#: flatcamGUI/FlatCAMGUI.py:559 msgid "Add Drill Array\tA" msgstr "Añadir matriz de perfor.\tA" -#: flatcamGUI/FlatCAMGUI.py:530 +#: flatcamGUI/FlatCAMGUI.py:561 msgid "Add Drill\tD" msgstr "Añadir taladro\tD" -#: flatcamGUI/FlatCAMGUI.py:534 +#: flatcamGUI/FlatCAMGUI.py:565 msgid "Add Slot Array\tQ" msgstr "Agregar matriz de ranuras\tQ" -#: flatcamGUI/FlatCAMGUI.py:536 +#: flatcamGUI/FlatCAMGUI.py:567 msgid "Add Slot\tW" msgstr "Agregar ranura\tW" -#: flatcamGUI/FlatCAMGUI.py:540 +#: flatcamGUI/FlatCAMGUI.py:571 msgid "Resize Drill(S)\tR" msgstr "Cambiar el tamaño de taladro (s)\tR" -#: flatcamGUI/FlatCAMGUI.py:542 flatcamGUI/FlatCAMGUI.py:583 +#: flatcamGUI/FlatCAMGUI.py:574 flatcamGUI/FlatCAMGUI.py:618 msgid "Copy\tC" msgstr "Dupdo\tC" -#: flatcamGUI/FlatCAMGUI.py:544 flatcamGUI/FlatCAMGUI.py:585 +#: flatcamGUI/FlatCAMGUI.py:576 flatcamGUI/FlatCAMGUI.py:620 msgid "Delete\tDEL" msgstr "Borrar\tDEL" -#: flatcamGUI/FlatCAMGUI.py:549 +#: flatcamGUI/FlatCAMGUI.py:581 msgid "Move Drill(s)\tM" msgstr "Mover taladro(s)\tM" -#: flatcamGUI/FlatCAMGUI.py:554 +#: flatcamGUI/FlatCAMGUI.py:586 msgid ">Gerber Editor<" msgstr ">Gerber Editor<" -#: flatcamGUI/FlatCAMGUI.py:558 +#: flatcamGUI/FlatCAMGUI.py:590 msgid "Add Pad\tP" msgstr "Añadir Pad\tP" -#: flatcamGUI/FlatCAMGUI.py:560 +#: flatcamGUI/FlatCAMGUI.py:592 msgid "Add Pad Array\tA" msgstr "Agregar una matriz de pad\tA" -#: flatcamGUI/FlatCAMGUI.py:562 +#: flatcamGUI/FlatCAMGUI.py:594 msgid "Add Track\tT" msgstr "Añadir pista\tT" -#: flatcamGUI/FlatCAMGUI.py:564 +#: flatcamGUI/FlatCAMGUI.py:596 msgid "Add Region\tN" msgstr "Añadir región\tN" -#: flatcamGUI/FlatCAMGUI.py:568 +#: flatcamGUI/FlatCAMGUI.py:600 msgid "Poligonize\tALT+N" msgstr "Poligonize\tALT+N" -#: flatcamGUI/FlatCAMGUI.py:570 +#: flatcamGUI/FlatCAMGUI.py:602 msgid "Add SemiDisc\tE" msgstr "Añadir medio disco\tE" -#: flatcamGUI/FlatCAMGUI.py:571 +#: flatcamGUI/FlatCAMGUI.py:604 msgid "Add Disc\tD" msgstr "Añadir disco\tD" -#: flatcamGUI/FlatCAMGUI.py:573 +#: flatcamGUI/FlatCAMGUI.py:606 msgid "Buffer\tB" msgstr "Buffer\tB" -#: flatcamGUI/FlatCAMGUI.py:574 +#: flatcamGUI/FlatCAMGUI.py:608 msgid "Scale\tS" msgstr "Escalar\tS" -#: flatcamGUI/FlatCAMGUI.py:576 +#: flatcamGUI/FlatCAMGUI.py:610 msgid "Mark Area\tALT+A" msgstr "Marcar area\tALT+A" -#: flatcamGUI/FlatCAMGUI.py:578 +#: flatcamGUI/FlatCAMGUI.py:612 msgid "Eraser\tCTRL+E" msgstr "Borrador\tCTRL+E" -#: flatcamGUI/FlatCAMGUI.py:580 +#: flatcamGUI/FlatCAMGUI.py:614 msgid "Transform\tALT+R" msgstr "Transformar\tALT+R" -#: flatcamGUI/FlatCAMGUI.py:603 +#: flatcamGUI/FlatCAMGUI.py:640 msgid "Enable Plot" msgstr "Habilitar Parcela" -#: flatcamGUI/FlatCAMGUI.py:604 +#: flatcamGUI/FlatCAMGUI.py:642 msgid "Disable Plot" msgstr "Desactivar parcela" -#: flatcamGUI/FlatCAMGUI.py:606 +#: flatcamGUI/FlatCAMGUI.py:645 msgid "Generate CNC" msgstr "Generar CNC" -#: flatcamGUI/FlatCAMGUI.py:607 +#: flatcamGUI/FlatCAMGUI.py:647 msgid "View Source" msgstr "Ver fuente" -#: flatcamGUI/FlatCAMGUI.py:615 flatcamGUI/FlatCAMGUI.py:1974 +#: flatcamGUI/FlatCAMGUI.py:660 flatcamGUI/FlatCAMGUI.py:2141 #: flatcamTools/ToolProperties.py:30 msgid "Properties" msgstr "Propiedades" -#: flatcamGUI/FlatCAMGUI.py:644 +#: flatcamGUI/FlatCAMGUI.py:689 msgid "File Toolbar" msgstr "Barra de herramientas de archivo" -#: flatcamGUI/FlatCAMGUI.py:648 +#: flatcamGUI/FlatCAMGUI.py:693 msgid "Edit Toolbar" msgstr "Barra de herramientas de edición" -#: flatcamGUI/FlatCAMGUI.py:652 +#: flatcamGUI/FlatCAMGUI.py:697 msgid "View Toolbar" msgstr "Barra de herramientas de ver" -#: flatcamGUI/FlatCAMGUI.py:656 +#: flatcamGUI/FlatCAMGUI.py:701 msgid "Shell Toolbar" msgstr "Barra de herramientas de Shell" -#: flatcamGUI/FlatCAMGUI.py:660 +#: flatcamGUI/FlatCAMGUI.py:705 msgid "Tools Toolbar" msgstr "Barra de herramientas de Herramientas" -#: flatcamGUI/FlatCAMGUI.py:664 +#: flatcamGUI/FlatCAMGUI.py:709 msgid "Excellon Editor Toolbar" msgstr "Barra de herramientas del editor de Excel" -#: flatcamGUI/FlatCAMGUI.py:670 +#: flatcamGUI/FlatCAMGUI.py:715 msgid "Geometry Editor Toolbar" msgstr "Barra de herramientas del editor de geometría" -#: flatcamGUI/FlatCAMGUI.py:674 +#: flatcamGUI/FlatCAMGUI.py:719 msgid "Gerber Editor Toolbar" msgstr "Barra de herramientas del editor Gerber" -#: flatcamGUI/FlatCAMGUI.py:678 +#: flatcamGUI/FlatCAMGUI.py:723 msgid "Grid Toolbar" msgstr "Barra de herramientas de cuadrícula" -#: flatcamGUI/FlatCAMGUI.py:699 flatcamGUI/FlatCAMGUI.py:2152 +#: flatcamGUI/FlatCAMGUI.py:746 flatcamGUI/FlatCAMGUI.py:2322 msgid "Open project" msgstr "Proyecto abierto" -#: flatcamGUI/FlatCAMGUI.py:700 flatcamGUI/FlatCAMGUI.py:2153 +#: flatcamGUI/FlatCAMGUI.py:748 flatcamGUI/FlatCAMGUI.py:2324 msgid "Save project" msgstr "Guardar proyecto" -#: flatcamGUI/FlatCAMGUI.py:705 flatcamGUI/FlatCAMGUI.py:2156 +#: flatcamGUI/FlatCAMGUI.py:754 flatcamGUI/FlatCAMGUI.py:2328 msgid "New Blank Geometry" msgstr "Nueva geometría en blanco" -#: flatcamGUI/FlatCAMGUI.py:706 flatcamGUI/FlatCAMGUI.py:2157 +#: flatcamGUI/FlatCAMGUI.py:756 flatcamGUI/FlatCAMGUI.py:2330 msgid "New Blank Gerber" msgstr "Nuevo Gerber en blanco" -#: flatcamGUI/FlatCAMGUI.py:707 flatcamGUI/FlatCAMGUI.py:2158 +#: flatcamGUI/FlatCAMGUI.py:758 flatcamGUI/FlatCAMGUI.py:2332 msgid "New Blank Excellon" msgstr "Nueva Excellon en blanco" -#: flatcamGUI/FlatCAMGUI.py:711 flatcamGUI/FlatCAMGUI.py:2162 +#: flatcamGUI/FlatCAMGUI.py:763 flatcamGUI/FlatCAMGUI.py:2338 msgid "Save Object and close the Editor" msgstr "Guardar Objeto y cerrar el Editor" -#: flatcamGUI/FlatCAMGUI.py:716 flatcamGUI/FlatCAMGUI.py:2167 +#: flatcamGUI/FlatCAMGUI.py:770 flatcamGUI/FlatCAMGUI.py:2345 msgid "&Delete" msgstr "Borrar" -#: flatcamGUI/FlatCAMGUI.py:718 flatcamGUI/FlatCAMGUI.py:1466 -#: flatcamGUI/FlatCAMGUI.py:1665 flatcamGUI/FlatCAMGUI.py:2169 +#: flatcamGUI/FlatCAMGUI.py:773 flatcamGUI/FlatCAMGUI.py:1582 +#: flatcamGUI/FlatCAMGUI.py:1781 flatcamGUI/FlatCAMGUI.py:2348 #: flatcamTools/ToolDistance.py:30 flatcamTools/ToolDistance.py:160 msgid "Distance Tool" msgstr "Herramienta de Dist" -#: flatcamGUI/FlatCAMGUI.py:720 flatcamGUI/FlatCAMGUI.py:2171 +#: flatcamGUI/FlatCAMGUI.py:775 flatcamGUI/FlatCAMGUI.py:2350 msgid "Distance Min Tool" msgstr "Herramienta Distancia Mínima" -#: flatcamGUI/FlatCAMGUI.py:721 flatcamGUI/FlatCAMGUI.py:1459 -#: flatcamGUI/FlatCAMGUI.py:2172 +#: flatcamGUI/FlatCAMGUI.py:777 flatcamGUI/FlatCAMGUI.py:1575 +#: flatcamGUI/FlatCAMGUI.py:2352 msgid "Set Origin" msgstr "Establecer origen" -#: flatcamGUI/FlatCAMGUI.py:722 flatcamGUI/FlatCAMGUI.py:2173 +#: flatcamGUI/FlatCAMGUI.py:779 flatcamGUI/FlatCAMGUI.py:2354 msgid "Jump to Location" msgstr "Saltar a la ubicación" -#: flatcamGUI/FlatCAMGUI.py:727 flatcamGUI/FlatCAMGUI.py:2176 +#: flatcamGUI/FlatCAMGUI.py:785 flatcamGUI/FlatCAMGUI.py:2358 msgid "&Replot" msgstr "Replantear" -#: flatcamGUI/FlatCAMGUI.py:728 flatcamGUI/FlatCAMGUI.py:2177 +#: flatcamGUI/FlatCAMGUI.py:787 flatcamGUI/FlatCAMGUI.py:2360 msgid "&Clear plot" msgstr "Gráfico clara" -#: flatcamGUI/FlatCAMGUI.py:729 flatcamGUI/FlatCAMGUI.py:1462 -#: flatcamGUI/FlatCAMGUI.py:2178 +#: flatcamGUI/FlatCAMGUI.py:789 flatcamGUI/FlatCAMGUI.py:1578 +#: flatcamGUI/FlatCAMGUI.py:2362 msgid "Zoom In" msgstr "Acercarse" -#: flatcamGUI/FlatCAMGUI.py:730 flatcamGUI/FlatCAMGUI.py:1462 -#: flatcamGUI/FlatCAMGUI.py:2179 +#: flatcamGUI/FlatCAMGUI.py:791 flatcamGUI/FlatCAMGUI.py:1578 +#: flatcamGUI/FlatCAMGUI.py:2364 msgid "Zoom Out" msgstr "Disminuir el zoom" -#: flatcamGUI/FlatCAMGUI.py:731 flatcamGUI/FlatCAMGUI.py:1461 -#: flatcamGUI/FlatCAMGUI.py:1905 flatcamGUI/FlatCAMGUI.py:2180 +#: flatcamGUI/FlatCAMGUI.py:793 flatcamGUI/FlatCAMGUI.py:1577 +#: flatcamGUI/FlatCAMGUI.py:2031 flatcamGUI/FlatCAMGUI.py:2366 msgid "Zoom Fit" msgstr "Ajuste de zoom" -#: flatcamGUI/FlatCAMGUI.py:738 flatcamGUI/FlatCAMGUI.py:2185 +#: flatcamGUI/FlatCAMGUI.py:801 flatcamGUI/FlatCAMGUI.py:2372 msgid "&Command Line" msgstr "Línea de comando" -#: flatcamGUI/FlatCAMGUI.py:746 flatcamGUI/FlatCAMGUI.py:2191 +#: flatcamGUI/FlatCAMGUI.py:813 flatcamGUI/FlatCAMGUI.py:2382 msgid "2Sided Tool" msgstr "Herramienta de 2 Caras" -#: flatcamGUI/FlatCAMGUI.py:747 flatcamGUI/ObjectUI.py:577 +#: flatcamGUI/FlatCAMGUI.py:815 flatcamGUI/ObjectUI.py:588 #: flatcamTools/ToolCutOut.py:434 msgid "Cutout Tool" msgstr "Herramienta de Corte" -#: flatcamGUI/FlatCAMGUI.py:748 flatcamGUI/FlatCAMGUI.py:2193 -#: flatcamGUI/ObjectUI.py:555 flatcamGUI/ObjectUI.py:1712 -#: flatcamTools/ToolNonCopperClear.py:637 +#: flatcamGUI/FlatCAMGUI.py:817 flatcamGUI/FlatCAMGUI.py:2386 +#: flatcamGUI/ObjectUI.py:566 flatcamGUI/ObjectUI.py:1751 +#: flatcamTools/ToolNonCopperClear.py:638 msgid "NCC Tool" msgstr "Herramienta NCC" -#: flatcamGUI/FlatCAMGUI.py:752 flatcamGUI/FlatCAMGUI.py:2197 +#: flatcamGUI/FlatCAMGUI.py:823 flatcamGUI/FlatCAMGUI.py:2392 msgid "Panel Tool" msgstr "Herramienta de Panel" -#: flatcamGUI/FlatCAMGUI.py:753 flatcamGUI/FlatCAMGUI.py:2198 +#: flatcamGUI/FlatCAMGUI.py:825 flatcamGUI/FlatCAMGUI.py:2394 #: flatcamTools/ToolFilm.py:578 msgid "Film Tool" msgstr "Herramienta de Película" -#: flatcamGUI/FlatCAMGUI.py:754 flatcamGUI/FlatCAMGUI.py:2200 +#: flatcamGUI/FlatCAMGUI.py:827 flatcamGUI/FlatCAMGUI.py:2397 #: flatcamTools/ToolSolderPaste.py:547 msgid "SolderPaste Tool" msgstr "Herramienta de Pasta" -#: flatcamGUI/FlatCAMGUI.py:755 flatcamGUI/FlatCAMGUI.py:2201 +#: flatcamGUI/FlatCAMGUI.py:829 flatcamGUI/FlatCAMGUI.py:2399 #: flatcamTools/ToolSub.py:35 msgid "Subtract Tool" msgstr "Herramienta de Sustracción" -#: flatcamGUI/FlatCAMGUI.py:756 flatcamTools/ToolRulesCheck.py:607 +#: flatcamGUI/FlatCAMGUI.py:831 flatcamTools/ToolRulesCheck.py:607 msgid "Rules Tool" msgstr "Herramienta de Reglas" -#: flatcamGUI/FlatCAMGUI.py:757 flatcamGUI/FlatCAMGUI.py:1477 +#: flatcamGUI/FlatCAMGUI.py:833 flatcamGUI/FlatCAMGUI.py:1593 #: flatcamTools/ToolOptimal.py:34 flatcamTools/ToolOptimal.py:310 msgid "Optimal Tool" msgstr "Herramienta de Óptima" -#: flatcamGUI/FlatCAMGUI.py:761 flatcamGUI/FlatCAMGUI.py:1475 -#: flatcamGUI/FlatCAMGUI.py:2206 +#: flatcamGUI/FlatCAMGUI.py:838 flatcamGUI/FlatCAMGUI.py:1591 +#: flatcamGUI/FlatCAMGUI.py:2404 msgid "Calculators Tool" msgstr "Herramienta de Calculadoras" -#: flatcamGUI/FlatCAMGUI.py:763 flatcamGUI/FlatCAMGUI.py:1478 -#: flatcamGUI/FlatCAMGUI.py:2208 flatcamTools/ToolQRCode.py:43 +#: flatcamGUI/FlatCAMGUI.py:842 flatcamGUI/FlatCAMGUI.py:1594 +#: flatcamGUI/FlatCAMGUI.py:2408 flatcamTools/ToolQRCode.py:43 #: flatcamTools/ToolQRCode.py:382 msgid "QRCode Tool" msgstr "Herramienta QRCode" -#: flatcamGUI/FlatCAMGUI.py:765 flatcamGUI/FlatCAMGUI.py:2210 +#: flatcamGUI/FlatCAMGUI.py:844 flatcamGUI/FlatCAMGUI.py:2410 #: flatcamTools/ToolCopperThieving.py:40 flatcamTools/ToolCopperThieving.py:566 msgid "Copper Thieving Tool" msgstr "Herramienta Thieving Tool" -#: flatcamGUI/FlatCAMGUI.py:767 flatcamGUI/FlatCAMGUI.py:1475 -#: flatcamGUI/FlatCAMGUI.py:2212 flatcamTools/ToolFiducials.py:33 +#: flatcamGUI/FlatCAMGUI.py:847 flatcamGUI/FlatCAMGUI.py:1591 +#: flatcamGUI/FlatCAMGUI.py:2413 flatcamTools/ToolFiducials.py:33 #: flatcamTools/ToolFiducials.py:393 msgid "Fiducials Tool" msgstr "Herramienta de Fiduciales" -#: flatcamGUI/FlatCAMGUI.py:768 flatcamGUI/FlatCAMGUI.py:2213 +#: flatcamGUI/FlatCAMGUI.py:849 flatcamGUI/FlatCAMGUI.py:2415 #: flatcamTools/ToolCalibration.py:37 flatcamTools/ToolCalibration.py:762 msgid "Calibration Tool" msgstr "Herramienta de Calibración" -#: flatcamGUI/FlatCAMGUI.py:773 flatcamGUI/FlatCAMGUI.py:792 -#: flatcamGUI/FlatCAMGUI.py:830 flatcamGUI/FlatCAMGUI.py:2216 -#: flatcamGUI/FlatCAMGUI.py:2271 +#: flatcamGUI/FlatCAMGUI.py:855 flatcamGUI/FlatCAMGUI.py:881 +#: flatcamGUI/FlatCAMGUI.py:933 flatcamGUI/FlatCAMGUI.py:2419 +#: flatcamGUI/FlatCAMGUI.py:2493 msgid "Select" msgstr "Seleccionar" -#: flatcamGUI/FlatCAMGUI.py:774 flatcamGUI/FlatCAMGUI.py:2217 +#: flatcamGUI/FlatCAMGUI.py:857 flatcamGUI/FlatCAMGUI.py:2421 msgid "Add Drill Hole" msgstr "Añadir taladro" -#: flatcamGUI/FlatCAMGUI.py:776 flatcamGUI/FlatCAMGUI.py:2219 +#: flatcamGUI/FlatCAMGUI.py:859 flatcamGUI/FlatCAMGUI.py:2423 msgid "Add Drill Hole Array" msgstr "Añadir matriz de taladro" -#: flatcamGUI/FlatCAMGUI.py:777 flatcamGUI/FlatCAMGUI.py:1750 -#: flatcamGUI/FlatCAMGUI.py:1960 flatcamGUI/FlatCAMGUI.py:2221 +#: flatcamGUI/FlatCAMGUI.py:861 flatcamGUI/FlatCAMGUI.py:1866 +#: flatcamGUI/FlatCAMGUI.py:2119 flatcamGUI/FlatCAMGUI.py:2427 msgid "Add Slot" msgstr "Agregar ranura" -#: flatcamGUI/FlatCAMGUI.py:779 flatcamGUI/FlatCAMGUI.py:1749 -#: flatcamGUI/FlatCAMGUI.py:1961 flatcamGUI/FlatCAMGUI.py:2223 +#: flatcamGUI/FlatCAMGUI.py:863 flatcamGUI/FlatCAMGUI.py:1865 +#: flatcamGUI/FlatCAMGUI.py:2121 flatcamGUI/FlatCAMGUI.py:2429 msgid "Add Slot Array" msgstr "Agregar matriz de ranuras" -#: flatcamGUI/FlatCAMGUI.py:780 flatcamGUI/FlatCAMGUI.py:1963 -#: flatcamGUI/FlatCAMGUI.py:2220 +#: flatcamGUI/FlatCAMGUI.py:865 flatcamGUI/FlatCAMGUI.py:2124 +#: flatcamGUI/FlatCAMGUI.py:2425 msgid "Resize Drill" msgstr "Redimensionar taladro" -#: flatcamGUI/FlatCAMGUI.py:783 flatcamGUI/FlatCAMGUI.py:2226 +#: flatcamGUI/FlatCAMGUI.py:869 flatcamGUI/FlatCAMGUI.py:2433 msgid "Copy Drill" msgstr "Copia de taladro" -#: flatcamGUI/FlatCAMGUI.py:784 flatcamGUI/FlatCAMGUI.py:2228 +#: flatcamGUI/FlatCAMGUI.py:871 flatcamGUI/FlatCAMGUI.py:2435 msgid "Delete Drill" msgstr "Eliminar taladro" -#: flatcamGUI/FlatCAMGUI.py:787 flatcamGUI/FlatCAMGUI.py:2231 +#: flatcamGUI/FlatCAMGUI.py:875 flatcamGUI/FlatCAMGUI.py:2439 msgid "Move Drill" msgstr "Mover taladro" -#: flatcamGUI/FlatCAMGUI.py:793 flatcamGUI/FlatCAMGUI.py:2235 +#: flatcamGUI/FlatCAMGUI.py:883 flatcamGUI/FlatCAMGUI.py:2445 msgid "Add Circle" msgstr "Añadir Círculo" -#: flatcamGUI/FlatCAMGUI.py:794 flatcamGUI/FlatCAMGUI.py:2236 +#: flatcamGUI/FlatCAMGUI.py:885 flatcamGUI/FlatCAMGUI.py:2447 msgid "Add Arc" msgstr "Añadir Arco" -#: flatcamGUI/FlatCAMGUI.py:796 flatcamGUI/FlatCAMGUI.py:2238 +#: flatcamGUI/FlatCAMGUI.py:887 flatcamGUI/FlatCAMGUI.py:2449 msgid "Add Rectangle" msgstr "Añadir Rectángulo" -#: flatcamGUI/FlatCAMGUI.py:799 flatcamGUI/FlatCAMGUI.py:2241 +#: flatcamGUI/FlatCAMGUI.py:891 flatcamGUI/FlatCAMGUI.py:2453 msgid "Add Path" msgstr "Añadir Ruta" -#: flatcamGUI/FlatCAMGUI.py:800 flatcamGUI/FlatCAMGUI.py:2243 +#: flatcamGUI/FlatCAMGUI.py:893 flatcamGUI/FlatCAMGUI.py:2455 msgid "Add Polygon" msgstr "Añadir Polígono" -#: flatcamGUI/FlatCAMGUI.py:802 flatcamGUI/FlatCAMGUI.py:2245 +#: flatcamGUI/FlatCAMGUI.py:896 flatcamGUI/FlatCAMGUI.py:2458 msgid "Add Text" msgstr "Añadir Texto" -#: flatcamGUI/FlatCAMGUI.py:803 flatcamGUI/FlatCAMGUI.py:2246 +#: flatcamGUI/FlatCAMGUI.py:898 flatcamGUI/FlatCAMGUI.py:2460 msgid "Add Buffer" msgstr "Añadir Buffer" -#: flatcamGUI/FlatCAMGUI.py:804 flatcamGUI/FlatCAMGUI.py:2247 +#: flatcamGUI/FlatCAMGUI.py:900 flatcamGUI/FlatCAMGUI.py:2462 msgid "Paint Shape" msgstr "Forma de pintura" -#: flatcamGUI/FlatCAMGUI.py:805 flatcamGUI/FlatCAMGUI.py:847 -#: flatcamGUI/FlatCAMGUI.py:1922 flatcamGUI/FlatCAMGUI.py:1950 -#: flatcamGUI/FlatCAMGUI.py:2248 flatcamGUI/FlatCAMGUI.py:2287 +#: flatcamGUI/FlatCAMGUI.py:902 flatcamGUI/FlatCAMGUI.py:959 +#: flatcamGUI/FlatCAMGUI.py:2060 flatcamGUI/FlatCAMGUI.py:2105 +#: flatcamGUI/FlatCAMGUI.py:2464 flatcamGUI/FlatCAMGUI.py:2518 msgid "Eraser" msgstr "Borrador" -#: flatcamGUI/FlatCAMGUI.py:808 flatcamGUI/FlatCAMGUI.py:2251 +#: flatcamGUI/FlatCAMGUI.py:906 flatcamGUI/FlatCAMGUI.py:2468 msgid "Polygon Union" msgstr "Unión de polígonos" -#: flatcamGUI/FlatCAMGUI.py:809 flatcamGUI/FlatCAMGUI.py:2252 +#: flatcamGUI/FlatCAMGUI.py:908 flatcamGUI/FlatCAMGUI.py:2470 msgid "Polygon Explode" msgstr "Polígono explotar" -#: flatcamGUI/FlatCAMGUI.py:812 flatcamGUI/FlatCAMGUI.py:2255 +#: flatcamGUI/FlatCAMGUI.py:911 flatcamGUI/FlatCAMGUI.py:2473 msgid "Polygon Intersection" msgstr "Intersección de polígonos" -#: flatcamGUI/FlatCAMGUI.py:814 flatcamGUI/FlatCAMGUI.py:2257 +#: flatcamGUI/FlatCAMGUI.py:913 flatcamGUI/FlatCAMGUI.py:2475 msgid "Polygon Subtraction" msgstr "Sustracción de polígonos" -#: flatcamGUI/FlatCAMGUI.py:817 flatcamGUI/FlatCAMGUI.py:2260 +#: flatcamGUI/FlatCAMGUI.py:917 flatcamGUI/FlatCAMGUI.py:2479 msgid "Cut Path" msgstr "Camino de Corte" -#: flatcamGUI/FlatCAMGUI.py:818 +#: flatcamGUI/FlatCAMGUI.py:919 msgid "Copy Shape(s)" msgstr "Copiar Forma (s)" -#: flatcamGUI/FlatCAMGUI.py:821 +#: flatcamGUI/FlatCAMGUI.py:922 msgid "Delete Shape '-'" msgstr "Eliminar Forma '-'" -#: flatcamGUI/FlatCAMGUI.py:823 flatcamGUI/FlatCAMGUI.py:854 -#: flatcamGUI/FlatCAMGUI.py:1929 flatcamGUI/FlatCAMGUI.py:1954 -#: flatcamGUI/FlatCAMGUI.py:2265 flatcamGUI/FlatCAMGUI.py:2294 +#: flatcamGUI/FlatCAMGUI.py:924 flatcamGUI/FlatCAMGUI.py:967 +#: flatcamGUI/FlatCAMGUI.py:2072 flatcamGUI/FlatCAMGUI.py:2109 +#: flatcamGUI/FlatCAMGUI.py:2485 flatcamGUI/FlatCAMGUI.py:2526 msgid "Transformations" msgstr "Transformaciones" -#: flatcamGUI/FlatCAMGUI.py:825 +#: flatcamGUI/FlatCAMGUI.py:927 msgid "Move Objects " msgstr "Mover objetos " -#: flatcamGUI/FlatCAMGUI.py:831 flatcamGUI/FlatCAMGUI.py:1869 -#: flatcamGUI/FlatCAMGUI.py:2272 +#: flatcamGUI/FlatCAMGUI.py:935 flatcamGUI/FlatCAMGUI.py:1985 +#: flatcamGUI/FlatCAMGUI.py:2495 msgid "Add Pad" msgstr "Añadir Pad" -#: flatcamGUI/FlatCAMGUI.py:833 flatcamGUI/FlatCAMGUI.py:1870 -#: flatcamGUI/FlatCAMGUI.py:2274 +#: flatcamGUI/FlatCAMGUI.py:939 flatcamGUI/FlatCAMGUI.py:1986 +#: flatcamGUI/FlatCAMGUI.py:2499 msgid "Add Track" msgstr "Añadir Pista" -#: flatcamGUI/FlatCAMGUI.py:834 flatcamGUI/FlatCAMGUI.py:1869 -#: flatcamGUI/FlatCAMGUI.py:2275 +#: flatcamGUI/FlatCAMGUI.py:941 flatcamGUI/FlatCAMGUI.py:1985 +#: flatcamGUI/FlatCAMGUI.py:2501 msgid "Add Region" msgstr "Añadir Región" -#: flatcamGUI/FlatCAMGUI.py:836 flatcamGUI/FlatCAMGUI.py:1942 -#: flatcamGUI/FlatCAMGUI.py:2277 +#: flatcamGUI/FlatCAMGUI.py:943 flatcamGUI/FlatCAMGUI.py:2091 +#: flatcamGUI/FlatCAMGUI.py:2503 msgid "Poligonize" msgstr "Poligonizar" -#: flatcamGUI/FlatCAMGUI.py:838 flatcamGUI/FlatCAMGUI.py:1943 -#: flatcamGUI/FlatCAMGUI.py:2279 +#: flatcamGUI/FlatCAMGUI.py:946 flatcamGUI/FlatCAMGUI.py:2093 +#: flatcamGUI/FlatCAMGUI.py:2506 msgid "SemiDisc" msgstr "Medio disco" -#: flatcamGUI/FlatCAMGUI.py:839 flatcamGUI/FlatCAMGUI.py:1944 -#: flatcamGUI/FlatCAMGUI.py:2280 +#: flatcamGUI/FlatCAMGUI.py:948 flatcamGUI/FlatCAMGUI.py:2095 +#: flatcamGUI/FlatCAMGUI.py:2508 msgid "Disc" msgstr "Disco" -#: flatcamGUI/FlatCAMGUI.py:845 flatcamGUI/FlatCAMGUI.py:1949 -#: flatcamGUI/FlatCAMGUI.py:2286 +#: flatcamGUI/FlatCAMGUI.py:956 flatcamGUI/FlatCAMGUI.py:2103 +#: flatcamGUI/FlatCAMGUI.py:2516 msgid "Mark Area" msgstr "Marcar area" -#: flatcamGUI/FlatCAMGUI.py:856 flatcamGUI/FlatCAMGUI.py:1869 -#: flatcamGUI/FlatCAMGUI.py:1932 flatcamGUI/FlatCAMGUI.py:1973 -#: flatcamGUI/FlatCAMGUI.py:2296 flatcamTools/ToolMove.py:28 +#: flatcamGUI/FlatCAMGUI.py:970 flatcamGUI/FlatCAMGUI.py:1985 +#: flatcamGUI/FlatCAMGUI.py:2076 flatcamGUI/FlatCAMGUI.py:2139 +#: flatcamGUI/FlatCAMGUI.py:2529 flatcamTools/ToolMove.py:28 msgid "Move" msgstr "Movimiento" -#: flatcamGUI/FlatCAMGUI.py:863 flatcamGUI/FlatCAMGUI.py:2302 +#: flatcamGUI/FlatCAMGUI.py:978 flatcamGUI/FlatCAMGUI.py:2536 msgid "Snap to grid" msgstr "Encajar a la cuadricula" -#: flatcamGUI/FlatCAMGUI.py:866 flatcamGUI/FlatCAMGUI.py:2305 +#: flatcamGUI/FlatCAMGUI.py:981 flatcamGUI/FlatCAMGUI.py:2539 msgid "Grid X snapping distance" msgstr "Distancia de ajuste de la rejilla X" -#: flatcamGUI/FlatCAMGUI.py:871 flatcamGUI/FlatCAMGUI.py:2310 +#: flatcamGUI/FlatCAMGUI.py:986 flatcamGUI/FlatCAMGUI.py:2544 msgid "Grid Y snapping distance" msgstr "Distancia de ajuste de cuadrícula Y" -#: flatcamGUI/FlatCAMGUI.py:877 flatcamGUI/FlatCAMGUI.py:2316 +#: flatcamGUI/FlatCAMGUI.py:992 flatcamGUI/FlatCAMGUI.py:2550 msgid "" "When active, value on Grid_X\n" "is copied to the Grid_Y value." @@ -6238,63 +6238,63 @@ msgstr "" "Cuando está activo, el valor en Grid_X\n" "Se copia al valor Grid_Y." -#: flatcamGUI/FlatCAMGUI.py:883 flatcamGUI/FlatCAMGUI.py:2322 +#: flatcamGUI/FlatCAMGUI.py:999 flatcamGUI/FlatCAMGUI.py:2557 msgid "Snap to corner" msgstr "Ajustar a la esquina" -#: flatcamGUI/FlatCAMGUI.py:887 flatcamGUI/FlatCAMGUI.py:2326 +#: flatcamGUI/FlatCAMGUI.py:1003 flatcamGUI/FlatCAMGUI.py:2561 #: flatcamGUI/PreferencesUI.py:348 msgid "Max. magnet distance" msgstr "Distancia máxima del imán" -#: flatcamGUI/FlatCAMGUI.py:921 +#: flatcamGUI/FlatCAMGUI.py:1037 msgid "Selected" msgstr "Seleccionado" -#: flatcamGUI/FlatCAMGUI.py:948 flatcamGUI/FlatCAMGUI.py:956 +#: flatcamGUI/FlatCAMGUI.py:1064 flatcamGUI/FlatCAMGUI.py:1072 msgid "Plot Area" msgstr "Área de la parcela" -#: flatcamGUI/FlatCAMGUI.py:983 +#: flatcamGUI/FlatCAMGUI.py:1099 msgid "General" msgstr "General" -#: flatcamGUI/FlatCAMGUI.py:998 flatcamTools/ToolCopperThieving.py:74 +#: flatcamGUI/FlatCAMGUI.py:1114 flatcamTools/ToolCopperThieving.py:74 #: flatcamTools/ToolDblSided.py:57 flatcamTools/ToolOptimal.py:71 #: flatcamTools/ToolQRCode.py:77 msgid "GERBER" msgstr "GERBER" -#: flatcamGUI/FlatCAMGUI.py:1008 flatcamTools/ToolDblSided.py:85 +#: flatcamGUI/FlatCAMGUI.py:1124 flatcamTools/ToolDblSided.py:85 msgid "EXCELLON" msgstr "EXCELLON" -#: flatcamGUI/FlatCAMGUI.py:1018 flatcamTools/ToolDblSided.py:113 +#: flatcamGUI/FlatCAMGUI.py:1134 flatcamTools/ToolDblSided.py:113 msgid "GEOMETRY" msgstr "GEOMETRÍA" -#: flatcamGUI/FlatCAMGUI.py:1028 +#: flatcamGUI/FlatCAMGUI.py:1144 msgid "CNC-JOB" msgstr "CNC-JOB" -#: flatcamGUI/FlatCAMGUI.py:1037 flatcamGUI/ObjectUI.py:544 -#: flatcamGUI/ObjectUI.py:1687 +#: flatcamGUI/FlatCAMGUI.py:1153 flatcamGUI/ObjectUI.py:555 +#: flatcamGUI/ObjectUI.py:1726 msgid "TOOLS" msgstr "HERRAMIENTAS" -#: flatcamGUI/FlatCAMGUI.py:1046 +#: flatcamGUI/FlatCAMGUI.py:1162 msgid "TOOLS 2" msgstr "HERRAMIENTAS 2" -#: flatcamGUI/FlatCAMGUI.py:1056 +#: flatcamGUI/FlatCAMGUI.py:1172 msgid "UTILITIES" msgstr "UTILIDADES" -#: flatcamGUI/FlatCAMGUI.py:1073 +#: flatcamGUI/FlatCAMGUI.py:1189 msgid "Import Preferences" msgstr "Pref de importación" -#: flatcamGUI/FlatCAMGUI.py:1076 +#: flatcamGUI/FlatCAMGUI.py:1192 msgid "" "Import a full set of FlatCAM settings from a file\n" "previously saved on HDD.\n" @@ -6308,11 +6308,11 @@ msgstr "" "FlatCAM guarda automáticamente un archivo 'factory_defaults'\n" "en el primer comienzo No borres ese archivo." -#: flatcamGUI/FlatCAMGUI.py:1083 +#: flatcamGUI/FlatCAMGUI.py:1199 msgid "Export Preferences" msgstr "Pref. de exportación" -#: flatcamGUI/FlatCAMGUI.py:1086 +#: flatcamGUI/FlatCAMGUI.py:1202 msgid "" "Export a full set of FlatCAM settings in a file\n" "that is saved on HDD." @@ -6320,23 +6320,23 @@ msgstr "" "Exportar un conjunto completo de configuraciones FlatCAM en un archivo\n" "que se guarda en el disco duro." -#: flatcamGUI/FlatCAMGUI.py:1091 +#: flatcamGUI/FlatCAMGUI.py:1207 msgid "Open Pref Folder" msgstr "Abrir Carpeta de Pref" -#: flatcamGUI/FlatCAMGUI.py:1094 +#: flatcamGUI/FlatCAMGUI.py:1210 msgid "Open the folder where FlatCAM save the preferences files." msgstr "Abra la carpeta donde FlatCAM guarda los archivos de preferencias." -#: flatcamGUI/FlatCAMGUI.py:1102 +#: flatcamGUI/FlatCAMGUI.py:1218 msgid "Apply" msgstr "Aplicar" -#: flatcamGUI/FlatCAMGUI.py:1105 +#: flatcamGUI/FlatCAMGUI.py:1221 msgid "Apply the current preferences without saving to a file." msgstr "Aplique las preferencias actuales sin guardar en un archivo." -#: flatcamGUI/FlatCAMGUI.py:1112 +#: flatcamGUI/FlatCAMGUI.py:1228 msgid "" "Save the current settings in the 'current_defaults' file\n" "which is the file storing the working default preferences." @@ -6344,532 +6344,532 @@ msgstr "" "Guarde la configuración actual en el archivo 'current_defaults'\n" "que es el archivo que almacena las preferencias predeterminadas de trabajo." -#: flatcamGUI/FlatCAMGUI.py:1120 +#: flatcamGUI/FlatCAMGUI.py:1236 msgid "Will not save the changes and will close the preferences window." msgstr "No guardará los cambios y cerrará la ventana de preferencias." -#: flatcamGUI/FlatCAMGUI.py:1456 +#: flatcamGUI/FlatCAMGUI.py:1572 msgid "SHOW SHORTCUT LIST" msgstr "MOSTRAR LISTA DE ACCESO CORTO" -#: flatcamGUI/FlatCAMGUI.py:1456 +#: flatcamGUI/FlatCAMGUI.py:1572 msgid "Switch to Project Tab" msgstr "Cambiar a la Pestaña Proyecto" -#: flatcamGUI/FlatCAMGUI.py:1456 +#: flatcamGUI/FlatCAMGUI.py:1572 msgid "Switch to Selected Tab" msgstr "Cambiar a la Pestaña Seleccionada" -#: flatcamGUI/FlatCAMGUI.py:1457 +#: flatcamGUI/FlatCAMGUI.py:1573 msgid "Switch to Tool Tab" msgstr "Cambiar a la Pestaña de Herramientas" -#: flatcamGUI/FlatCAMGUI.py:1458 +#: flatcamGUI/FlatCAMGUI.py:1574 msgid "New Gerber" msgstr "Nuevo Gerber" -#: flatcamGUI/FlatCAMGUI.py:1458 +#: flatcamGUI/FlatCAMGUI.py:1574 msgid "Edit Object (if selected)" msgstr "Editar objeto (si está seleccionado)" -#: flatcamGUI/FlatCAMGUI.py:1458 +#: flatcamGUI/FlatCAMGUI.py:1574 msgid "Jump to Coordinates" msgstr "Saltar a coordenadas" -#: flatcamGUI/FlatCAMGUI.py:1459 +#: flatcamGUI/FlatCAMGUI.py:1575 msgid "New Excellon" msgstr "Nueva Excellon" -#: flatcamGUI/FlatCAMGUI.py:1459 +#: flatcamGUI/FlatCAMGUI.py:1575 msgid "Move Obj" msgstr "Mover objetos" -#: flatcamGUI/FlatCAMGUI.py:1459 +#: flatcamGUI/FlatCAMGUI.py:1575 msgid "New Geometry" msgstr "Nueva geometría" -#: flatcamGUI/FlatCAMGUI.py:1459 +#: flatcamGUI/FlatCAMGUI.py:1575 msgid "Change Units" msgstr "Cambiar unidades" -#: flatcamGUI/FlatCAMGUI.py:1460 +#: flatcamGUI/FlatCAMGUI.py:1576 msgid "Open Properties Tool" msgstr "Abrir herramienta de propiedades" -#: flatcamGUI/FlatCAMGUI.py:1460 +#: flatcamGUI/FlatCAMGUI.py:1576 msgid "Rotate by 90 degree CW" msgstr "Rotar 90 grados CW" -#: flatcamGUI/FlatCAMGUI.py:1460 +#: flatcamGUI/FlatCAMGUI.py:1576 msgid "Shell Toggle" msgstr "Palanca de 'Shell'" -#: flatcamGUI/FlatCAMGUI.py:1461 +#: flatcamGUI/FlatCAMGUI.py:1577 msgid "" "Add a Tool (when in Geometry Selected Tab or in Tools NCC or Tools Paint)" msgstr "" "Agregue una herramienta (cuando esté en la pestaña Geometría seleccionada o " "en Herramientas NCC o Herramientas de pintura)" -#: flatcamGUI/FlatCAMGUI.py:1462 +#: flatcamGUI/FlatCAMGUI.py:1578 msgid "Flip on X_axis" msgstr "Voltear sobre el eje X" -#: flatcamGUI/FlatCAMGUI.py:1462 +#: flatcamGUI/FlatCAMGUI.py:1578 msgid "Flip on Y_axis" msgstr "Voltear sobre el eje Y" -#: flatcamGUI/FlatCAMGUI.py:1465 +#: flatcamGUI/FlatCAMGUI.py:1581 msgid "Copy Obj" msgstr "Copiar objetos" -#: flatcamGUI/FlatCAMGUI.py:1465 +#: flatcamGUI/FlatCAMGUI.py:1581 msgid "Open Tools Database" msgstr "Abrir la DB de herramientas" -#: flatcamGUI/FlatCAMGUI.py:1466 +#: flatcamGUI/FlatCAMGUI.py:1582 msgid "Open Excellon File" msgstr "Abierto Excellon" -#: flatcamGUI/FlatCAMGUI.py:1466 +#: flatcamGUI/FlatCAMGUI.py:1582 msgid "Open Gerber File" msgstr "Abrir Gerber" -#: flatcamGUI/FlatCAMGUI.py:1466 +#: flatcamGUI/FlatCAMGUI.py:1582 msgid "New Project" msgstr "Nuevo Proyecto" -#: flatcamGUI/FlatCAMGUI.py:1467 flatcamTools/ToolPDF.py:42 +#: flatcamGUI/FlatCAMGUI.py:1583 flatcamTools/ToolPDF.py:42 msgid "PDF Import Tool" msgstr "Herramienta de Importación de PDF" -#: flatcamGUI/FlatCAMGUI.py:1467 +#: flatcamGUI/FlatCAMGUI.py:1583 msgid "Save Project As" msgstr "Guardar proyecto como" -#: flatcamGUI/FlatCAMGUI.py:1467 +#: flatcamGUI/FlatCAMGUI.py:1583 msgid "Toggle Plot Area" msgstr "Alternar área de la parcela" -#: flatcamGUI/FlatCAMGUI.py:1470 +#: flatcamGUI/FlatCAMGUI.py:1586 msgid "Copy Obj_Name" msgstr "Copiar Nombre Obj" -#: flatcamGUI/FlatCAMGUI.py:1471 +#: flatcamGUI/FlatCAMGUI.py:1587 msgid "Toggle Code Editor" msgstr "Alternar editor de código" -#: flatcamGUI/FlatCAMGUI.py:1471 +#: flatcamGUI/FlatCAMGUI.py:1587 msgid "Toggle the axis" msgstr "Alternar el eje" -#: flatcamGUI/FlatCAMGUI.py:1471 flatcamGUI/FlatCAMGUI.py:1663 -#: flatcamGUI/FlatCAMGUI.py:1750 flatcamGUI/FlatCAMGUI.py:1872 +#: flatcamGUI/FlatCAMGUI.py:1587 flatcamGUI/FlatCAMGUI.py:1779 +#: flatcamGUI/FlatCAMGUI.py:1866 flatcamGUI/FlatCAMGUI.py:1988 msgid "Distance Minimum Tool" msgstr "Herramienta de Distancia Mínima" -#: flatcamGUI/FlatCAMGUI.py:1471 +#: flatcamGUI/FlatCAMGUI.py:1587 msgid "Open Preferences Window" msgstr "Abrir ventana de Preferencias" -#: flatcamGUI/FlatCAMGUI.py:1472 +#: flatcamGUI/FlatCAMGUI.py:1588 msgid "Rotate by 90 degree CCW" msgstr "Rotar en 90 grados CCW" -#: flatcamGUI/FlatCAMGUI.py:1472 +#: flatcamGUI/FlatCAMGUI.py:1588 msgid "Run a Script" msgstr "Ejecutar script TCL" -#: flatcamGUI/FlatCAMGUI.py:1472 +#: flatcamGUI/FlatCAMGUI.py:1588 msgid "Toggle the workspace" msgstr "Alternar espacio de trabajo" -#: flatcamGUI/FlatCAMGUI.py:1472 +#: flatcamGUI/FlatCAMGUI.py:1588 msgid "Skew on X axis" msgstr "Sesgar en el eje X" -#: flatcamGUI/FlatCAMGUI.py:1473 +#: flatcamGUI/FlatCAMGUI.py:1589 msgid "Skew on Y axis" msgstr "Sesgar en el eje Y" -#: flatcamGUI/FlatCAMGUI.py:1475 +#: flatcamGUI/FlatCAMGUI.py:1591 msgid "2-Sided PCB Tool" msgstr "Herra. de 2 lados" -#: flatcamGUI/FlatCAMGUI.py:1475 +#: flatcamGUI/FlatCAMGUI.py:1591 msgid "Transformations Tool" msgstr "Herramienta de Transformaciones" -#: flatcamGUI/FlatCAMGUI.py:1476 +#: flatcamGUI/FlatCAMGUI.py:1592 msgid "Solder Paste Dispensing Tool" msgstr "Herramienta de Dispensación de Pasta" -#: flatcamGUI/FlatCAMGUI.py:1477 +#: flatcamGUI/FlatCAMGUI.py:1593 msgid "Film PCB Tool" msgstr "Herramienta de Película" -#: flatcamGUI/FlatCAMGUI.py:1477 +#: flatcamGUI/FlatCAMGUI.py:1593 msgid "Non-Copper Clearing Tool" msgstr "Herramienta de Limpieza Sin Cobre" -#: flatcamGUI/FlatCAMGUI.py:1478 +#: flatcamGUI/FlatCAMGUI.py:1594 msgid "Paint Area Tool" msgstr "Herramienta de Area de Pintura" -#: flatcamGUI/FlatCAMGUI.py:1478 +#: flatcamGUI/FlatCAMGUI.py:1594 msgid "Rules Check Tool" msgstr "Herramienta de Verificación de Reglas" -#: flatcamGUI/FlatCAMGUI.py:1479 +#: flatcamGUI/FlatCAMGUI.py:1595 msgid "View File Source" msgstr "Ver fuente del archivo" -#: flatcamGUI/FlatCAMGUI.py:1480 +#: flatcamGUI/FlatCAMGUI.py:1596 msgid "Cutout PCB Tool" msgstr "Herra. de Corte" -#: flatcamGUI/FlatCAMGUI.py:1480 +#: flatcamGUI/FlatCAMGUI.py:1596 msgid "Enable all Plots" msgstr "Habilitar todas las parcelas" -#: flatcamGUI/FlatCAMGUI.py:1480 +#: flatcamGUI/FlatCAMGUI.py:1596 msgid "Disable all Plots" msgstr "Deshabilitar todas las parcelas" -#: flatcamGUI/FlatCAMGUI.py:1480 +#: flatcamGUI/FlatCAMGUI.py:1596 msgid "Disable Non-selected Plots" msgstr "Deshabilitar no seleccionado" -#: flatcamGUI/FlatCAMGUI.py:1481 +#: flatcamGUI/FlatCAMGUI.py:1597 msgid "Toggle Full Screen" msgstr "Alternar pantalla completa" -#: flatcamGUI/FlatCAMGUI.py:1484 +#: flatcamGUI/FlatCAMGUI.py:1600 msgid "Abort current task (gracefully)" msgstr "Abortar la tarea actual (con gracia)" -#: flatcamGUI/FlatCAMGUI.py:1487 +#: flatcamGUI/FlatCAMGUI.py:1603 msgid "Open Online Manual" msgstr "Abrir el manual en línea" -#: flatcamGUI/FlatCAMGUI.py:1488 +#: flatcamGUI/FlatCAMGUI.py:1604 msgid "Open Online Tutorials" msgstr "Abrir tutoriales en online" -#: flatcamGUI/FlatCAMGUI.py:1488 +#: flatcamGUI/FlatCAMGUI.py:1604 msgid "Refresh Plots" msgstr "Actualizar parcelas" -#: flatcamGUI/FlatCAMGUI.py:1488 flatcamTools/ToolSolderPaste.py:503 +#: flatcamGUI/FlatCAMGUI.py:1604 flatcamTools/ToolSolderPaste.py:503 msgid "Delete Object" msgstr "Eliminar objeto" -#: flatcamGUI/FlatCAMGUI.py:1488 +#: flatcamGUI/FlatCAMGUI.py:1604 msgid "Alternate: Delete Tool" msgstr "Alt.: Eliminar herramienta" -#: flatcamGUI/FlatCAMGUI.py:1489 +#: flatcamGUI/FlatCAMGUI.py:1605 msgid "(left to Key_1)Toogle Notebook Area (Left Side)" msgstr "(izquierda a Key_1) Área de Toogle Notebook (lado izquierdo)" -#: flatcamGUI/FlatCAMGUI.py:1489 +#: flatcamGUI/FlatCAMGUI.py:1605 msgid "En(Dis)able Obj Plot" msgstr "(Des)habilitar trazado Obj" -#: flatcamGUI/FlatCAMGUI.py:1490 +#: flatcamGUI/FlatCAMGUI.py:1606 msgid "Deselects all objects" msgstr "Desel. todos los objetos" -#: flatcamGUI/FlatCAMGUI.py:1504 +#: flatcamGUI/FlatCAMGUI.py:1620 msgid "Editor Shortcut list" msgstr "Lista de accesos directos del editor" -#: flatcamGUI/FlatCAMGUI.py:1658 +#: flatcamGUI/FlatCAMGUI.py:1774 msgid "GEOMETRY EDITOR" msgstr "EDITOR DE GEOMETRÍA" -#: flatcamGUI/FlatCAMGUI.py:1658 +#: flatcamGUI/FlatCAMGUI.py:1774 msgid "Draw an Arc" msgstr "Dibujar un arco" -#: flatcamGUI/FlatCAMGUI.py:1658 +#: flatcamGUI/FlatCAMGUI.py:1774 msgid "Copy Geo Item" msgstr "Copia Geo" -#: flatcamGUI/FlatCAMGUI.py:1659 +#: flatcamGUI/FlatCAMGUI.py:1775 msgid "Within Add Arc will toogle the ARC direction: CW or CCW" msgstr "Dentro de agregar arco alternará la dirección del ARCO: CW o CCW" -#: flatcamGUI/FlatCAMGUI.py:1659 +#: flatcamGUI/FlatCAMGUI.py:1775 msgid "Polygon Intersection Tool" msgstr "Herram. de Intersección Poli" -#: flatcamGUI/FlatCAMGUI.py:1660 +#: flatcamGUI/FlatCAMGUI.py:1776 msgid "Geo Paint Tool" msgstr "Herram. de pintura geo" -#: flatcamGUI/FlatCAMGUI.py:1660 flatcamGUI/FlatCAMGUI.py:1749 -#: flatcamGUI/FlatCAMGUI.py:1869 +#: flatcamGUI/FlatCAMGUI.py:1776 flatcamGUI/FlatCAMGUI.py:1865 +#: flatcamGUI/FlatCAMGUI.py:1985 msgid "Jump to Location (x, y)" msgstr "Saltar a la ubicación (x, y)" -#: flatcamGUI/FlatCAMGUI.py:1660 +#: flatcamGUI/FlatCAMGUI.py:1776 msgid "Toggle Corner Snap" msgstr "Alternar ajuste de esquina" -#: flatcamGUI/FlatCAMGUI.py:1660 +#: flatcamGUI/FlatCAMGUI.py:1776 msgid "Move Geo Item" msgstr "Mover elemento geo" -#: flatcamGUI/FlatCAMGUI.py:1661 +#: flatcamGUI/FlatCAMGUI.py:1777 msgid "Within Add Arc will cycle through the ARC modes" msgstr "Dentro de agregar arco, pasará por los modos de arco" -#: flatcamGUI/FlatCAMGUI.py:1661 +#: flatcamGUI/FlatCAMGUI.py:1777 msgid "Draw a Polygon" msgstr "Dibujar un polígono" -#: flatcamGUI/FlatCAMGUI.py:1661 +#: flatcamGUI/FlatCAMGUI.py:1777 msgid "Draw a Circle" msgstr "Dibuja un circulo" -#: flatcamGUI/FlatCAMGUI.py:1662 +#: flatcamGUI/FlatCAMGUI.py:1778 msgid "Draw a Path" msgstr "Dibujar un camino" -#: flatcamGUI/FlatCAMGUI.py:1662 +#: flatcamGUI/FlatCAMGUI.py:1778 msgid "Draw Rectangle" msgstr "Dibujar rectángulo" -#: flatcamGUI/FlatCAMGUI.py:1662 +#: flatcamGUI/FlatCAMGUI.py:1778 msgid "Polygon Subtraction Tool" msgstr "Herram. de Sustrac. de Polí" -#: flatcamGUI/FlatCAMGUI.py:1662 +#: flatcamGUI/FlatCAMGUI.py:1778 msgid "Add Text Tool" msgstr "Herramienta de Texto" -#: flatcamGUI/FlatCAMGUI.py:1663 +#: flatcamGUI/FlatCAMGUI.py:1779 msgid "Polygon Union Tool" msgstr "Herram. de Unión Poli" -#: flatcamGUI/FlatCAMGUI.py:1663 +#: flatcamGUI/FlatCAMGUI.py:1779 msgid "Flip shape on X axis" msgstr "Voltear en el eje X" -#: flatcamGUI/FlatCAMGUI.py:1663 +#: flatcamGUI/FlatCAMGUI.py:1779 msgid "Flip shape on Y axis" msgstr "Voltear en el eje Y" -#: flatcamGUI/FlatCAMGUI.py:1664 +#: flatcamGUI/FlatCAMGUI.py:1780 msgid "Skew shape on X axis" msgstr "Sesgar en el eje X" -#: flatcamGUI/FlatCAMGUI.py:1664 +#: flatcamGUI/FlatCAMGUI.py:1780 msgid "Skew shape on Y axis" msgstr "Sesgar en el eje Y" -#: flatcamGUI/FlatCAMGUI.py:1664 +#: flatcamGUI/FlatCAMGUI.py:1780 msgid "Editor Transformation Tool" msgstr "Herram. de transform. del editor" -#: flatcamGUI/FlatCAMGUI.py:1665 +#: flatcamGUI/FlatCAMGUI.py:1781 msgid "Offset shape on X axis" msgstr "Offset en el eje X" -#: flatcamGUI/FlatCAMGUI.py:1665 +#: flatcamGUI/FlatCAMGUI.py:1781 msgid "Offset shape on Y axis" msgstr "Offset en eje Y" -#: flatcamGUI/FlatCAMGUI.py:1666 flatcamGUI/FlatCAMGUI.py:1752 -#: flatcamGUI/FlatCAMGUI.py:1874 +#: flatcamGUI/FlatCAMGUI.py:1782 flatcamGUI/FlatCAMGUI.py:1868 +#: flatcamGUI/FlatCAMGUI.py:1990 msgid "Save Object and Exit Editor" msgstr "Guardar objeto y salir del editor" -#: flatcamGUI/FlatCAMGUI.py:1666 +#: flatcamGUI/FlatCAMGUI.py:1782 msgid "Polygon Cut Tool" msgstr "Herram. de Corte Poli" -#: flatcamGUI/FlatCAMGUI.py:1667 +#: flatcamGUI/FlatCAMGUI.py:1783 msgid "Rotate Geometry" msgstr "Rotar Geometría" -#: flatcamGUI/FlatCAMGUI.py:1667 +#: flatcamGUI/FlatCAMGUI.py:1783 msgid "Finish drawing for certain tools" msgstr "Terminar el dibujo de ciertas herramientas" -#: flatcamGUI/FlatCAMGUI.py:1667 flatcamGUI/FlatCAMGUI.py:1752 -#: flatcamGUI/FlatCAMGUI.py:1872 +#: flatcamGUI/FlatCAMGUI.py:1783 flatcamGUI/FlatCAMGUI.py:1868 +#: flatcamGUI/FlatCAMGUI.py:1988 msgid "Abort and return to Select" msgstr "Anular y volver a Seleccionar" -#: flatcamGUI/FlatCAMGUI.py:1668 flatcamGUI/FlatCAMGUI.py:2263 +#: flatcamGUI/FlatCAMGUI.py:1784 flatcamGUI/FlatCAMGUI.py:2483 msgid "Delete Shape" msgstr "Eliminar forma" -#: flatcamGUI/FlatCAMGUI.py:1748 +#: flatcamGUI/FlatCAMGUI.py:1864 msgid "EXCELLON EDITOR" msgstr "EDITOR DE EXCELLON" -#: flatcamGUI/FlatCAMGUI.py:1748 +#: flatcamGUI/FlatCAMGUI.py:1864 msgid "Copy Drill(s)" msgstr "Copia de taladro" -#: flatcamGUI/FlatCAMGUI.py:1748 flatcamGUI/FlatCAMGUI.py:1957 +#: flatcamGUI/FlatCAMGUI.py:1864 flatcamGUI/FlatCAMGUI.py:2114 msgid "Add Drill" msgstr "Añadir taladro" -#: flatcamGUI/FlatCAMGUI.py:1749 +#: flatcamGUI/FlatCAMGUI.py:1865 msgid "Move Drill(s)" msgstr "Mover taladro(s)" -#: flatcamGUI/FlatCAMGUI.py:1750 +#: flatcamGUI/FlatCAMGUI.py:1866 msgid "Add a new Tool" msgstr "Agregar una nueva herram" -#: flatcamGUI/FlatCAMGUI.py:1751 +#: flatcamGUI/FlatCAMGUI.py:1867 msgid "Delete Drill(s)" msgstr "Eliminar Taladro" -#: flatcamGUI/FlatCAMGUI.py:1751 +#: flatcamGUI/FlatCAMGUI.py:1867 msgid "Alternate: Delete Tool(s)" msgstr "Alt.: Eliminar herramienta (s)" -#: flatcamGUI/FlatCAMGUI.py:1868 +#: flatcamGUI/FlatCAMGUI.py:1984 msgid "GERBER EDITOR" msgstr "EDITOR GERBER" -#: flatcamGUI/FlatCAMGUI.py:1868 +#: flatcamGUI/FlatCAMGUI.py:1984 msgid "Add Disc" msgstr "Agregar disco" -#: flatcamGUI/FlatCAMGUI.py:1868 +#: flatcamGUI/FlatCAMGUI.py:1984 msgid "Add SemiDisc" msgstr "Añadir medio disco" -#: flatcamGUI/FlatCAMGUI.py:1870 +#: flatcamGUI/FlatCAMGUI.py:1986 msgid "Within Track & Region Tools will cycle in REVERSE the bend modes" msgstr "" "Dentro de la Pista y la Región, las herram.s alternarán en REVERSA los modos " "de plegado" -#: flatcamGUI/FlatCAMGUI.py:1871 +#: flatcamGUI/FlatCAMGUI.py:1987 msgid "Within Track & Region Tools will cycle FORWARD the bend modes" msgstr "" "Dentro de la Pista y la Región, las herram. avanzarán hacia adelante los " "modos de plegado" -#: flatcamGUI/FlatCAMGUI.py:1872 +#: flatcamGUI/FlatCAMGUI.py:1988 msgid "Alternate: Delete Apertures" msgstr "Alt.: Eliminar Aperturas" -#: flatcamGUI/FlatCAMGUI.py:1873 +#: flatcamGUI/FlatCAMGUI.py:1989 msgid "Eraser Tool" msgstr "Herramienta borrador" -#: flatcamGUI/FlatCAMGUI.py:1874 flatcamGUI/PreferencesUI.py:2038 +#: flatcamGUI/FlatCAMGUI.py:1990 flatcamGUI/PreferencesUI.py:2039 msgid "Mark Area Tool" msgstr "Herram. de Zona de Marca" -#: flatcamGUI/FlatCAMGUI.py:1874 +#: flatcamGUI/FlatCAMGUI.py:1990 msgid "Poligonize Tool" msgstr "Herram. de poligonización" -#: flatcamGUI/FlatCAMGUI.py:1874 +#: flatcamGUI/FlatCAMGUI.py:1990 msgid "Transformation Tool" msgstr "Herramienta de Transformación" -#: flatcamGUI/FlatCAMGUI.py:1890 +#: flatcamGUI/FlatCAMGUI.py:2007 msgid "Toggle Visibility" msgstr "Alternar visibilidad" -#: flatcamGUI/FlatCAMGUI.py:1894 +#: flatcamGUI/FlatCAMGUI.py:2013 msgid "New" msgstr "Nueva" -#: flatcamGUI/FlatCAMGUI.py:1895 flatcamTools/ToolCalibration.py:634 +#: flatcamGUI/FlatCAMGUI.py:2015 flatcamTools/ToolCalibration.py:634 msgid "Geometry" msgstr "Geometría" -#: flatcamGUI/FlatCAMGUI.py:1897 flatcamTools/ToolCalibration.py:197 +#: flatcamGUI/FlatCAMGUI.py:2019 flatcamTools/ToolCalibration.py:197 #: flatcamTools/ToolCalibration.py:634 flatcamTools/ToolFilm.py:359 msgid "Excellon" msgstr "Excellon" -#: flatcamGUI/FlatCAMGUI.py:1902 +#: flatcamGUI/FlatCAMGUI.py:2026 msgid "Grids" msgstr "Rejillas" -#: flatcamGUI/FlatCAMGUI.py:1906 +#: flatcamGUI/FlatCAMGUI.py:2033 msgid "Clear Plot" msgstr "Parcela clara" -#: flatcamGUI/FlatCAMGUI.py:1907 +#: flatcamGUI/FlatCAMGUI.py:2035 msgid "Replot" msgstr "Replantear" -#: flatcamGUI/FlatCAMGUI.py:1910 +#: flatcamGUI/FlatCAMGUI.py:2039 msgid "Geo Editor" msgstr "Geo Editor" -#: flatcamGUI/FlatCAMGUI.py:1911 +#: flatcamGUI/FlatCAMGUI.py:2041 msgid "Path" msgstr "Ruta" -#: flatcamGUI/FlatCAMGUI.py:1912 +#: flatcamGUI/FlatCAMGUI.py:2043 msgid "Rectangle" msgstr "Rectángulo" -#: flatcamGUI/FlatCAMGUI.py:1914 +#: flatcamGUI/FlatCAMGUI.py:2046 msgid "Circle" msgstr "Círculo" -#: flatcamGUI/FlatCAMGUI.py:1915 +#: flatcamGUI/FlatCAMGUI.py:2048 msgid "Polygon" msgstr "Polígono" -#: flatcamGUI/FlatCAMGUI.py:1916 +#: flatcamGUI/FlatCAMGUI.py:2050 msgid "Arc" msgstr "Arco" -#: flatcamGUI/FlatCAMGUI.py:1925 +#: flatcamGUI/FlatCAMGUI.py:2064 msgid "Union" msgstr "Unión" -#: flatcamGUI/FlatCAMGUI.py:1926 +#: flatcamGUI/FlatCAMGUI.py:2066 msgid "Intersection" msgstr "Intersección" -#: flatcamGUI/FlatCAMGUI.py:1927 +#: flatcamGUI/FlatCAMGUI.py:2068 msgid "Subtraction" msgstr "Sustracción" -#: flatcamGUI/FlatCAMGUI.py:1928 flatcamGUI/ObjectUI.py:1761 -#: flatcamGUI/PreferencesUI.py:3643 +#: flatcamGUI/FlatCAMGUI.py:2070 flatcamGUI/ObjectUI.py:1813 +#: flatcamGUI/PreferencesUI.py:3644 msgid "Cut" msgstr "Cortar" -#: flatcamGUI/FlatCAMGUI.py:1935 +#: flatcamGUI/FlatCAMGUI.py:2081 msgid "Pad" msgstr "Pad" -#: flatcamGUI/FlatCAMGUI.py:1936 +#: flatcamGUI/FlatCAMGUI.py:2083 msgid "Pad Array" msgstr "Matriz de Pad" -#: flatcamGUI/FlatCAMGUI.py:1939 +#: flatcamGUI/FlatCAMGUI.py:2087 msgid "Track" msgstr "Pista" -#: flatcamGUI/FlatCAMGUI.py:1940 +#: flatcamGUI/FlatCAMGUI.py:2089 msgid "Region" msgstr "Región" -#: flatcamGUI/FlatCAMGUI.py:1956 +#: flatcamGUI/FlatCAMGUI.py:2112 msgid "Exc Editor" msgstr "Exc Editor" -#: flatcamGUI/FlatCAMGUI.py:1986 +#: flatcamGUI/FlatCAMGUI.py:2153 msgid "" "Relative neasurement.\n" "Reference is last click position" @@ -6877,7 +6877,7 @@ msgstr "" "Medida relativa.\n" "La referencia es la posición del último clic" -#: flatcamGUI/FlatCAMGUI.py:1992 +#: flatcamGUI/FlatCAMGUI.py:2159 msgid "" "Absolute neasurement.\n" "Reference is (X=0, Y= 0) position" @@ -6885,27 +6885,27 @@ msgstr "" "Medida absoluta.\n" "La referencia es (X = 0, Y = 0) posición" -#: flatcamGUI/FlatCAMGUI.py:2099 +#: flatcamGUI/FlatCAMGUI.py:2266 msgid "Lock Toolbars" msgstr "Bloquear barras de herram" -#: flatcamGUI/FlatCAMGUI.py:2192 +#: flatcamGUI/FlatCAMGUI.py:2384 msgid "&Cutout Tool" msgstr "Herramienta de recorte" -#: flatcamGUI/FlatCAMGUI.py:2234 +#: flatcamGUI/FlatCAMGUI.py:2443 msgid "Select 'Esc'" msgstr "Selecciona 'Esc'" -#: flatcamGUI/FlatCAMGUI.py:2261 +#: flatcamGUI/FlatCAMGUI.py:2481 msgid "Copy Objects" msgstr "Copiar objetos" -#: flatcamGUI/FlatCAMGUI.py:2268 +#: flatcamGUI/FlatCAMGUI.py:2489 msgid "Move Objects" msgstr "Mover objetos" -#: flatcamGUI/FlatCAMGUI.py:2813 +#: flatcamGUI/FlatCAMGUI.py:3048 msgid "" "Please first select a geometry item to be cutted\n" "then select the geometry item that will be cutted\n" @@ -6917,12 +6917,12 @@ msgstr "" "fuera del primer artículo. Al final presione la tecla ~ X ~ o\n" "el botón de la barra de herramientas." -#: flatcamGUI/FlatCAMGUI.py:2820 flatcamGUI/FlatCAMGUI.py:2964 -#: flatcamGUI/FlatCAMGUI.py:3023 flatcamGUI/FlatCAMGUI.py:3043 +#: flatcamGUI/FlatCAMGUI.py:3055 flatcamGUI/FlatCAMGUI.py:3199 +#: flatcamGUI/FlatCAMGUI.py:3258 flatcamGUI/FlatCAMGUI.py:3278 msgid "Warning" msgstr "Advertencia" -#: flatcamGUI/FlatCAMGUI.py:2959 +#: flatcamGUI/FlatCAMGUI.py:3194 msgid "" "Please select geometry items \n" "on which to perform Intersection Tool." @@ -6930,7 +6930,7 @@ msgstr "" "Por favor seleccione elementos de geometría\n" "en el que realizar Herramienta de Intersección." -#: flatcamGUI/FlatCAMGUI.py:3018 +#: flatcamGUI/FlatCAMGUI.py:3253 msgid "" "Please select geometry items \n" "on which to perform Substraction Tool." @@ -6938,7 +6938,7 @@ msgstr "" "Por favor seleccione elementos de geometría\n" "en el que realizar la Herramienta de Substracción." -#: flatcamGUI/FlatCAMGUI.py:3038 +#: flatcamGUI/FlatCAMGUI.py:3273 msgid "" "Please select geometry items \n" "on which to perform union." @@ -6946,52 +6946,52 @@ msgstr "" "Por favor seleccione elementos de geometría\n" "en el que realizar la Unión." -#: flatcamGUI/FlatCAMGUI.py:3122 flatcamGUI/FlatCAMGUI.py:3340 +#: flatcamGUI/FlatCAMGUI.py:3357 flatcamGUI/FlatCAMGUI.py:3575 msgid "Cancelled. Nothing selected to delete." msgstr "Cancelado. Nada seleccionado para eliminar." -#: flatcamGUI/FlatCAMGUI.py:3207 flatcamGUI/FlatCAMGUI.py:3408 +#: flatcamGUI/FlatCAMGUI.py:3442 flatcamGUI/FlatCAMGUI.py:3643 msgid "Cancelled. Nothing selected to copy." msgstr "Cancelado. Nada seleccionado para copiar." -#: flatcamGUI/FlatCAMGUI.py:3254 flatcamGUI/FlatCAMGUI.py:3455 +#: flatcamGUI/FlatCAMGUI.py:3489 flatcamGUI/FlatCAMGUI.py:3690 msgid "Cancelled. Nothing selected to move." msgstr "Cancelado. Nada seleccionado para moverse." -#: flatcamGUI/FlatCAMGUI.py:3481 +#: flatcamGUI/FlatCAMGUI.py:3716 msgid "New Tool ..." msgstr "Nueva herramienta ..." -#: flatcamGUI/FlatCAMGUI.py:3482 flatcamTools/ToolNonCopperClear.py:588 -#: flatcamTools/ToolPaint.py:499 flatcamTools/ToolSolderPaste.py:554 +#: flatcamGUI/FlatCAMGUI.py:3717 flatcamTools/ToolNonCopperClear.py:589 +#: flatcamTools/ToolPaint.py:500 flatcamTools/ToolSolderPaste.py:554 msgid "Enter a Tool Diameter" msgstr "Introduzca un diá. de herram" -#: flatcamGUI/FlatCAMGUI.py:3494 +#: flatcamGUI/FlatCAMGUI.py:3729 msgid "Adding Tool cancelled ..." msgstr "Añadiendo herramienta cancelada ..." -#: flatcamGUI/FlatCAMGUI.py:3537 +#: flatcamGUI/FlatCAMGUI.py:3772 msgid "Distance Tool exit..." msgstr "Salida de Herramienta de Distancia ..." -#: flatcamGUI/FlatCAMGUI.py:3747 flatcamGUI/FlatCAMGUI.py:3754 +#: flatcamGUI/FlatCAMGUI.py:3982 flatcamGUI/FlatCAMGUI.py:3989 msgid "Idle." msgstr "Ocioso." -#: flatcamGUI/FlatCAMGUI.py:3783 +#: flatcamGUI/FlatCAMGUI.py:4020 msgid "Application started ..." msgstr "Aplicacion iniciada ..." -#: flatcamGUI/FlatCAMGUI.py:3784 +#: flatcamGUI/FlatCAMGUI.py:4021 msgid "Hello!" msgstr "¡Hola!" -#: flatcamGUI/FlatCAMGUI.py:3840 +#: flatcamGUI/FlatCAMGUI.py:4079 msgid "Open Project ..." msgstr "Proyecto abierto ...Abierto &Project ..." -#: flatcamGUI/FlatCAMGUI.py:3865 +#: flatcamGUI/FlatCAMGUI.py:4105 msgid "Exit" msgstr "Salida" @@ -6999,7 +6999,7 @@ msgstr "Salida" msgid "FlatCAM Object" msgstr "Objeto FlatCAM" -#: flatcamGUI/ObjectUI.py:66 +#: flatcamGUI/ObjectUI.py:77 msgid "" "BASIC is suitable for a beginner. Many parameters\n" "are hidden from the user in this mode.\n" @@ -7017,15 +7017,15 @@ msgstr "" "Editar -> Preferencias -> General y verificar:\n" "'APP. NIVEL 'botón de radio." -#: flatcamGUI/ObjectUI.py:94 +#: flatcamGUI/ObjectUI.py:105 msgid "Change the size of the object." msgstr "Cambiar el tamaño del objeto." -#: flatcamGUI/ObjectUI.py:100 +#: flatcamGUI/ObjectUI.py:111 msgid "Factor" msgstr "Factor" -#: flatcamGUI/ObjectUI.py:102 +#: flatcamGUI/ObjectUI.py:113 msgid "" "Factor by which to multiply\n" "geometric features of this object.\n" @@ -7035,19 +7035,19 @@ msgstr "" "características geométricas de este objeto.\n" "Se permiten expresiones. Por ejemplo: 1 / 25.4" -#: flatcamGUI/ObjectUI.py:112 +#: flatcamGUI/ObjectUI.py:123 msgid "Perform scaling operation." msgstr "Realizar la operación de escalado." -#: flatcamGUI/ObjectUI.py:123 +#: flatcamGUI/ObjectUI.py:134 msgid "Change the position of this object." msgstr "Cambia la posición de este objeto." -#: flatcamGUI/ObjectUI.py:128 +#: flatcamGUI/ObjectUI.py:139 msgid "Vector" msgstr "Vector" -#: flatcamGUI/ObjectUI.py:130 +#: flatcamGUI/ObjectUI.py:141 msgid "" "Amount by which to move the object\n" "in the x and y axes in (x, y) format.\n" @@ -7057,60 +7057,60 @@ msgstr "" "en los ejes x e y en formato (x, y).\n" "Se permiten expresiones. Por ejemplo: (1/3.2, 0.5*3)" -#: flatcamGUI/ObjectUI.py:139 +#: flatcamGUI/ObjectUI.py:150 msgid "Perform the offset operation." msgstr "Realice la operación de desplazamiento." -#: flatcamGUI/ObjectUI.py:156 +#: flatcamGUI/ObjectUI.py:167 msgid "Gerber Object" msgstr "Objeto Gerber" -#: 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 +#: flatcamGUI/ObjectUI.py:182 flatcamGUI/ObjectUI.py:767 +#: flatcamGUI/ObjectUI.py:1205 flatcamGUI/ObjectUI.py:1907 +#: flatcamGUI/PreferencesUI.py:1361 flatcamGUI/PreferencesUI.py:3119 +#: flatcamGUI/PreferencesUI.py:3629 msgid "Plot (show) this object." msgstr "Trazar (mostrar) este objeto." -#: flatcamGUI/ObjectUI.py:173 flatcamGUI/ObjectUI.py:741 -#: flatcamGUI/PreferencesUI.py:1358 flatcamGUI/PreferencesUI.py:2084 -#: flatcamGUI/PreferencesUI.py:3116 +#: flatcamGUI/ObjectUI.py:184 flatcamGUI/ObjectUI.py:765 +#: flatcamGUI/PreferencesUI.py:1359 flatcamGUI/PreferencesUI.py:2085 +#: flatcamGUI/PreferencesUI.py:3117 msgid "Plot" msgstr "Gráfico" -#: 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 +#: flatcamGUI/ObjectUI.py:189 flatcamGUI/ObjectUI.py:726 +#: flatcamGUI/ObjectUI.py:1159 flatcamGUI/ObjectUI.py:1797 +#: flatcamGUI/PreferencesUI.py:1338 flatcamGUI/PreferencesUI.py:2079 +#: flatcamGUI/PreferencesUI.py:3113 flatcamGUI/PreferencesUI.py:3618 msgid "Plot Options" msgstr "Opciones de parcela" -#: flatcamGUI/ObjectUI.py:184 flatcamGUI/ObjectUI.py:703 -#: flatcamGUI/PreferencesUI.py:1344 flatcamGUI/PreferencesUI.py:2090 -#: flatcamGUI/PreferencesUI.py:6153 flatcamTools/ToolCopperThieving.py:190 +#: flatcamGUI/ObjectUI.py:195 flatcamGUI/ObjectUI.py:727 +#: flatcamGUI/PreferencesUI.py:1345 flatcamGUI/PreferencesUI.py:2091 +#: flatcamGUI/PreferencesUI.py:6154 flatcamTools/ToolCopperThieving.py:190 msgid "Solid" msgstr "Sólido" -#: flatcamGUI/ObjectUI.py:186 flatcamGUI/PreferencesUI.py:1346 +#: flatcamGUI/ObjectUI.py:197 flatcamGUI/PreferencesUI.py:1347 msgid "Solid color polygons." msgstr "Polígonos de color liso." -#: flatcamGUI/ObjectUI.py:192 +#: flatcamGUI/ObjectUI.py:203 msgid "Multi-Color" msgstr "Multicolor" -#: flatcamGUI/ObjectUI.py:194 flatcamGUI/PreferencesUI.py:1353 +#: flatcamGUI/ObjectUI.py:205 flatcamGUI/PreferencesUI.py:1354 msgid "Draw polygons in different colors." msgstr "Dibuja polígonos en diferentes colores." -#: flatcamGUI/ObjectUI.py:202 flatcamGUI/ObjectUI.py:714 -#: flatcamGUI/ObjectUI.py:1126 flatcamGUI/ObjectUI.py:1775 -#: flatcamGUI/ObjectUI.py:2067 flatcamGUI/ObjectUI.py:2122 +#: flatcamGUI/ObjectUI.py:213 flatcamGUI/ObjectUI.py:738 +#: flatcamGUI/ObjectUI.py:1165 flatcamGUI/ObjectUI.py:1827 +#: flatcamGUI/ObjectUI.py:2130 flatcamGUI/ObjectUI.py:2196 #: flatcamTools/ToolCalibration.py:235 flatcamTools/ToolFiducials.py:73 msgid "Name" msgstr "Nombre" -#: flatcamGUI/ObjectUI.py:223 +#: flatcamGUI/ObjectUI.py:234 msgid "" "Toggle the display of the Gerber Apertures Table.\n" "When unchecked, it will delete all mark shapes\n" @@ -7120,11 +7120,11 @@ msgstr "" "Cuando no está marcada, eliminará todas las formas de las marcas.\n" "que se dibujan en lienzo." -#: flatcamGUI/ObjectUI.py:233 +#: flatcamGUI/ObjectUI.py:244 msgid "Mark All" msgstr "Márc. todo" -#: flatcamGUI/ObjectUI.py:235 +#: flatcamGUI/ObjectUI.py:246 msgid "" "When checked it will display all the apertures.\n" "When unchecked, it will delete all mark shapes\n" @@ -7134,15 +7134,15 @@ msgstr "" "Cuando no está marcada, eliminará todas las formas de las marcas.\n" "que se dibujan en lienzo." -#: flatcamGUI/ObjectUI.py:263 +#: flatcamGUI/ObjectUI.py:274 msgid "Mark the aperture instances on canvas." msgstr "Marque las instancias de apertura en el lienzo." -#: flatcamGUI/ObjectUI.py:275 flatcamGUI/PreferencesUI.py:1438 +#: flatcamGUI/ObjectUI.py:286 flatcamGUI/PreferencesUI.py:1439 msgid "Isolation Routing" msgstr "Enrutamiento de aislamiento" -#: flatcamGUI/ObjectUI.py:277 flatcamGUI/PreferencesUI.py:1440 +#: flatcamGUI/ObjectUI.py:288 flatcamGUI/PreferencesUI.py:1441 msgid "" "Create a Geometry object with\n" "toolpaths to cut outside polygons." @@ -7150,7 +7150,7 @@ msgstr "" "Crear un objeto de geometría con\n" "Trayectorias para cortar polígonos exteriores." -#: flatcamGUI/ObjectUI.py:295 flatcamGUI/PreferencesUI.py:1628 +#: flatcamGUI/ObjectUI.py:306 flatcamGUI/PreferencesUI.py:1629 msgid "" "Choose what tool to use for Gerber isolation:\n" "'Circular' or 'V-shape'.\n" @@ -7162,30 +7162,30 @@ msgstr "" "Cuando se selecciona la 'forma de V', entonces la herramienta\n" "El diámetro dependerá de la profundidad de corte elegida." -#: flatcamGUI/ObjectUI.py:301 +#: flatcamGUI/ObjectUI.py:312 msgid "V-Shape" msgstr "Forma V" -#: flatcamGUI/ObjectUI.py:307 flatcamGUI/ObjectUI.py:1335 -#: flatcamGUI/PreferencesUI.py:1640 flatcamGUI/PreferencesUI.py:4010 +#: flatcamGUI/ObjectUI.py:318 flatcamGUI/ObjectUI.py:1374 +#: flatcamGUI/PreferencesUI.py:1641 flatcamGUI/PreferencesUI.py:4011 #: flatcamTools/ToolNonCopperClear.py:231 msgid "V-Tip Dia" msgstr "V-Tipo Dia" -#: flatcamGUI/ObjectUI.py:309 flatcamGUI/ObjectUI.py:1338 -#: flatcamGUI/PreferencesUI.py:1642 flatcamGUI/PreferencesUI.py:4012 +#: flatcamGUI/ObjectUI.py:320 flatcamGUI/ObjectUI.py:1377 +#: flatcamGUI/PreferencesUI.py:1643 flatcamGUI/PreferencesUI.py:4013 #: flatcamTools/ToolNonCopperClear.py:233 msgid "The tip diameter for V-Shape Tool" msgstr "El diámetro de la punta para la herramienta en forma de V" -#: flatcamGUI/ObjectUI.py:320 flatcamGUI/ObjectUI.py:1350 -#: flatcamGUI/PreferencesUI.py:1653 flatcamGUI/PreferencesUI.py:4022 +#: flatcamGUI/ObjectUI.py:331 flatcamGUI/ObjectUI.py:1389 +#: flatcamGUI/PreferencesUI.py:1654 flatcamGUI/PreferencesUI.py:4023 #: flatcamTools/ToolNonCopperClear.py:242 msgid "V-Tip Angle" msgstr "V-Tipo Ángulo" -#: flatcamGUI/ObjectUI.py:322 flatcamGUI/ObjectUI.py:1353 -#: flatcamGUI/PreferencesUI.py:1655 flatcamGUI/PreferencesUI.py:4024 +#: flatcamGUI/ObjectUI.py:333 flatcamGUI/ObjectUI.py:1392 +#: flatcamGUI/PreferencesUI.py:1656 flatcamGUI/PreferencesUI.py:4025 #: flatcamTools/ToolNonCopperClear.py:244 msgid "" "The tip angle for V-Shape Tool.\n" @@ -7194,9 +7194,9 @@ msgstr "" "El ángulo de punta para la herramienta en forma de V.\n" "En grado." -#: flatcamGUI/ObjectUI.py:336 flatcamGUI/ObjectUI.py:1369 -#: flatcamGUI/PreferencesUI.py:1668 flatcamGUI/PreferencesUI.py:3181 -#: flatcamGUI/PreferencesUI.py:4293 flatcamTools/ToolCutOut.py:135 +#: flatcamGUI/ObjectUI.py:347 flatcamGUI/ObjectUI.py:1408 +#: flatcamGUI/PreferencesUI.py:1669 flatcamGUI/PreferencesUI.py:3182 +#: flatcamGUI/PreferencesUI.py:4294 flatcamTools/ToolCutOut.py:135 msgid "" "Cutting depth (negative)\n" "below the copper surface." @@ -7204,7 +7204,7 @@ msgstr "" "Profundidad de corte (negativo)\n" "debajo de la superficie de cobre." -#: flatcamGUI/ObjectUI.py:350 +#: flatcamGUI/ObjectUI.py:361 msgid "" "Diameter of the cutting tool.\n" "If you want to have an isolation path\n" @@ -7218,11 +7218,11 @@ msgstr "" "característica, use un valor negativo para\n" "este parámetro." -#: flatcamGUI/ObjectUI.py:366 flatcamGUI/PreferencesUI.py:1462 +#: flatcamGUI/ObjectUI.py:377 flatcamGUI/PreferencesUI.py:1463 msgid "# Passes" msgstr "# Pases" -#: flatcamGUI/ObjectUI.py:368 flatcamGUI/PreferencesUI.py:1464 +#: flatcamGUI/ObjectUI.py:379 flatcamGUI/PreferencesUI.py:1465 msgid "" "Width of the isolation gap in\n" "number (integer) of tool widths." @@ -7230,24 +7230,24 @@ msgstr "" "Ancho de la brecha de aislamiento en\n" "Número (entero) de anchos de herramienta." -#: flatcamGUI/ObjectUI.py:378 flatcamGUI/PreferencesUI.py:1474 +#: flatcamGUI/ObjectUI.py:389 flatcamGUI/PreferencesUI.py:1475 msgid "Pass overlap" msgstr "Superposición de pases" -#: flatcamGUI/ObjectUI.py:380 flatcamGUI/PreferencesUI.py:1476 +#: flatcamGUI/ObjectUI.py:391 flatcamGUI/PreferencesUI.py:1477 msgid "How much (fraction) of the tool width to overlap each tool pass." msgstr "" "La cantidad (fracción) del ancho de la herramienta para superponer cada " "pasada de herramienta." -#: flatcamGUI/ObjectUI.py:392 flatcamGUI/PreferencesUI.py:1501 -#: flatcamGUI/PreferencesUI.py:3594 flatcamGUI/PreferencesUI.py:4067 +#: flatcamGUI/ObjectUI.py:403 flatcamGUI/PreferencesUI.py:1502 +#: flatcamGUI/PreferencesUI.py:3595 flatcamGUI/PreferencesUI.py:4068 #: flatcamTools/ToolNonCopperClear.py:162 msgid "Milling Type" msgstr "Tipo de fresado" -#: flatcamGUI/ObjectUI.py:394 flatcamGUI/PreferencesUI.py:1503 -#: flatcamGUI/PreferencesUI.py:3596 +#: flatcamGUI/ObjectUI.py:405 flatcamGUI/PreferencesUI.py:1504 +#: flatcamGUI/PreferencesUI.py:3597 msgid "" "Milling type:\n" "- climb / best for precision milling and to reduce tool usage\n" @@ -7258,29 +7258,29 @@ msgstr "" "herramienta\n" "- convencional / útil cuando no hay compensación de contragolpe" -#: flatcamGUI/ObjectUI.py:398 flatcamGUI/PreferencesUI.py:1508 -#: flatcamGUI/PreferencesUI.py:3600 flatcamGUI/PreferencesUI.py:4074 +#: flatcamGUI/ObjectUI.py:409 flatcamGUI/PreferencesUI.py:1509 +#: flatcamGUI/PreferencesUI.py:3601 flatcamGUI/PreferencesUI.py:4075 #: flatcamTools/ToolNonCopperClear.py:169 msgid "Climb" msgstr "Subida" -#: flatcamGUI/ObjectUI.py:399 +#: flatcamGUI/ObjectUI.py:410 msgid "Conventional" msgstr "Convencional" -#: flatcamGUI/ObjectUI.py:404 +#: flatcamGUI/ObjectUI.py:415 msgid "Combine" msgstr "Combinar" -#: flatcamGUI/ObjectUI.py:406 flatcamGUI/PreferencesUI.py:1515 +#: flatcamGUI/ObjectUI.py:417 flatcamGUI/PreferencesUI.py:1516 msgid "Combine all passes into one object" msgstr "Combina todos los pases en un objeto" -#: flatcamGUI/ObjectUI.py:410 flatcamGUI/PreferencesUI.py:1607 +#: flatcamGUI/ObjectUI.py:421 flatcamGUI/PreferencesUI.py:1608 msgid "\"Follow\"" msgstr "\"Seguir\"" -#: flatcamGUI/ObjectUI.py:411 flatcamGUI/PreferencesUI.py:1609 +#: flatcamGUI/ObjectUI.py:422 flatcamGUI/PreferencesUI.py:1610 msgid "" "Generate a 'Follow' geometry.\n" "This means that it will cut through\n" @@ -7290,11 +7290,11 @@ msgstr "" "Esto significa que cortará a través\n" "El medio de la traza." -#: flatcamGUI/ObjectUI.py:417 +#: flatcamGUI/ObjectUI.py:428 msgid "Except" msgstr "Excepto" -#: flatcamGUI/ObjectUI.py:420 +#: flatcamGUI/ObjectUI.py:431 msgid "" "When the isolation geometry is generated,\n" "by checking this, the area of the object bellow\n" @@ -7304,12 +7304,12 @@ msgstr "" "marcando esto, el área del objeto a continuación\n" "será restado de la geometría de aislamiento." -#: flatcamGUI/ObjectUI.py:442 flatcamTools/ToolNonCopperClear.py:82 +#: flatcamGUI/ObjectUI.py:453 flatcamTools/ToolNonCopperClear.py:82 #: flatcamTools/ToolPaint.py:85 msgid "Obj Type" msgstr "Tipo de obj" -#: flatcamGUI/ObjectUI.py:444 +#: flatcamGUI/ObjectUI.py:455 msgid "" "Specify the type of object to be excepted from isolation.\n" "It can be of type: Gerber or Geometry.\n" @@ -7321,22 +7321,22 @@ msgstr "" "Lo que se seleccione aquí dictará el tipo\n" "de objetos que llenarán el cuadro combinado 'Objeto'." -#: flatcamGUI/ObjectUI.py:457 flatcamGUI/PreferencesUI.py:6453 +#: flatcamGUI/ObjectUI.py:468 flatcamGUI/PreferencesUI.py:6454 #: flatcamTools/ToolCalibration.py:186 flatcamTools/ToolNonCopperClear.py:100 #: flatcamTools/ToolPaint.py:103 flatcamTools/ToolPanelize.py:81 #: flatcamTools/ToolPanelize.py:94 msgid "Object" msgstr "Objeto" -#: flatcamGUI/ObjectUI.py:458 +#: flatcamGUI/ObjectUI.py:469 msgid "Object whose area will be removed from isolation geometry." msgstr "Objeto cuya área se eliminará de la geometría de aislamiento." -#: flatcamGUI/ObjectUI.py:465 flatcamGUI/PreferencesUI.py:1488 +#: flatcamGUI/ObjectUI.py:476 flatcamGUI/PreferencesUI.py:1489 msgid "Scope" msgstr "Alcance" -#: flatcamGUI/ObjectUI.py:467 flatcamGUI/PreferencesUI.py:1490 +#: flatcamGUI/ObjectUI.py:478 flatcamGUI/PreferencesUI.py:1491 msgid "" "Isolation scope. Choose what to isolate:\n" "- 'All' -> Isolate all the polygons in the object\n" @@ -7346,16 +7346,16 @@ msgstr "" "- 'Todos' -> Aislar todos los polígonos en el objeto\n" "- 'Selección' -> Aislar una selección de polígonos." -#: flatcamGUI/ObjectUI.py:472 flatcamGUI/PreferencesUI.py:1495 -#: flatcamGUI/PreferencesUI.py:4603 flatcamTools/ToolPaint.py:300 +#: flatcamGUI/ObjectUI.py:483 flatcamGUI/PreferencesUI.py:1496 +#: flatcamGUI/PreferencesUI.py:4604 flatcamTools/ToolPaint.py:300 msgid "Selection" msgstr "Selección" -#: flatcamGUI/ObjectUI.py:480 flatcamGUI/PreferencesUI.py:1681 +#: flatcamGUI/ObjectUI.py:491 flatcamGUI/PreferencesUI.py:1682 msgid "Isolation Type" msgstr "Tipo de aislamiento" -#: flatcamGUI/ObjectUI.py:482 flatcamGUI/PreferencesUI.py:1683 +#: flatcamGUI/ObjectUI.py:493 flatcamGUI/PreferencesUI.py:1684 msgid "" "Choose how the isolation will be executed:\n" "- 'Full' -> complete isolation of polygons\n" @@ -7375,24 +7375,24 @@ msgstr "" "el aislamiento solo se puede hacer cuando hay una abertura\n" "dentro del polígono (por ejemplo, el polígono tiene forma de 'rosquilla')." -#: flatcamGUI/ObjectUI.py:491 flatcamGUI/PreferencesUI.py:1692 -#: flatcamGUI/PreferencesUI.py:1708 +#: flatcamGUI/ObjectUI.py:502 flatcamGUI/PreferencesUI.py:1693 +#: flatcamGUI/PreferencesUI.py:1709 msgid "Full" msgstr "Completo" -#: flatcamGUI/ObjectUI.py:492 +#: flatcamGUI/ObjectUI.py:503 msgid "Ext" msgstr "Exterior" -#: flatcamGUI/ObjectUI.py:493 +#: flatcamGUI/ObjectUI.py:504 msgid "Int" msgstr "Interior" -#: flatcamGUI/ObjectUI.py:498 +#: flatcamGUI/ObjectUI.py:509 msgid "Generate Isolation Geometry" msgstr "Generar geo. de aislamiento" -#: flatcamGUI/ObjectUI.py:506 +#: flatcamGUI/ObjectUI.py:517 msgid "" "Create a Geometry object with toolpaths to cut \n" "isolation outside, inside or on both sides of the\n" @@ -7414,11 +7414,11 @@ msgstr "" "dentro de la función real de Gerber, use una herramienta negativa\n" "diámetro arriba." -#: flatcamGUI/ObjectUI.py:518 +#: flatcamGUI/ObjectUI.py:529 msgid "Buffer Solid Geometry" msgstr "Buffer la Geometria solida" -#: flatcamGUI/ObjectUI.py:520 +#: flatcamGUI/ObjectUI.py:531 msgid "" "This button is shown only when the Gerber file\n" "is loaded without buffering.\n" @@ -7430,11 +7430,11 @@ msgstr "" "Al hacer clic en esto, se creará la geometría almacenada\n" "requerido para el aislamiento." -#: flatcamGUI/ObjectUI.py:548 +#: flatcamGUI/ObjectUI.py:559 msgid "Clear N-copper" msgstr "N-cobre claro" -#: flatcamGUI/ObjectUI.py:550 flatcamGUI/PreferencesUI.py:3974 +#: flatcamGUI/ObjectUI.py:561 flatcamGUI/PreferencesUI.py:3975 msgid "" "Create a Geometry object with\n" "toolpaths to cut all non-copper regions." @@ -7442,7 +7442,7 @@ msgstr "" "Crear un objeto de geometría con\n" "Trayectorias para cortar todas las regiones sin cobre." -#: flatcamGUI/ObjectUI.py:557 flatcamGUI/ObjectUI.py:1714 +#: flatcamGUI/ObjectUI.py:568 flatcamGUI/ObjectUI.py:1753 #: flatcamTools/ToolNonCopperClear.py:479 msgid "" "Create the Geometry Object\n" @@ -7451,11 +7451,11 @@ msgstr "" "Crear el objeto de geometría\n" "para enrutamiento sin cobre." -#: flatcamGUI/ObjectUI.py:570 +#: flatcamGUI/ObjectUI.py:581 msgid "Board cutout" msgstr "Corte del tablero" -#: flatcamGUI/ObjectUI.py:572 flatcamGUI/PreferencesUI.py:4266 +#: flatcamGUI/ObjectUI.py:583 flatcamGUI/PreferencesUI.py:4267 msgid "" "Create toolpaths to cut around\n" "the PCB and separate it from\n" @@ -7465,7 +7465,7 @@ msgstr "" "El PCB y lo separa de\n" "El tablero original." -#: flatcamGUI/ObjectUI.py:579 +#: flatcamGUI/ObjectUI.py:590 msgid "" "Generate the geometry for\n" "the board cutout." @@ -7473,11 +7473,11 @@ msgstr "" "Generar la geometría para\n" "El recorte del tablero." -#: flatcamGUI/ObjectUI.py:597 flatcamGUI/PreferencesUI.py:1520 +#: flatcamGUI/ObjectUI.py:608 flatcamGUI/PreferencesUI.py:1521 msgid "Non-copper regions" msgstr "Regiones no cobre" -#: flatcamGUI/ObjectUI.py:599 flatcamGUI/PreferencesUI.py:1522 +#: flatcamGUI/ObjectUI.py:610 flatcamGUI/PreferencesUI.py:1523 msgid "" "Create polygons covering the\n" "areas without copper on the PCB.\n" @@ -7491,12 +7491,12 @@ msgstr "" "objeto. Se puede usar para eliminar todo\n" "cobre de una región específica." -#: flatcamGUI/ObjectUI.py:609 flatcamGUI/ObjectUI.py:650 -#: flatcamGUI/PreferencesUI.py:1534 flatcamGUI/PreferencesUI.py:1562 +#: flatcamGUI/ObjectUI.py:620 flatcamGUI/ObjectUI.py:661 +#: flatcamGUI/PreferencesUI.py:1535 flatcamGUI/PreferencesUI.py:1563 msgid "Boundary Margin" msgstr "Margen límite" -#: flatcamGUI/ObjectUI.py:611 flatcamGUI/PreferencesUI.py:1536 +#: flatcamGUI/ObjectUI.py:622 flatcamGUI/PreferencesUI.py:1537 msgid "" "Specify the edge of the PCB\n" "by drawing a box around all\n" @@ -7508,27 +7508,27 @@ msgstr "" "objetos con este mínimo\n" "distancia." -#: flatcamGUI/ObjectUI.py:626 flatcamGUI/ObjectUI.py:664 -#: flatcamGUI/PreferencesUI.py:1549 flatcamGUI/PreferencesUI.py:1575 +#: flatcamGUI/ObjectUI.py:637 flatcamGUI/ObjectUI.py:675 +#: flatcamGUI/PreferencesUI.py:1550 flatcamGUI/PreferencesUI.py:1576 msgid "Rounded Geo" msgstr "Geo redondeado" -#: flatcamGUI/ObjectUI.py:628 flatcamGUI/PreferencesUI.py:1551 +#: flatcamGUI/ObjectUI.py:639 flatcamGUI/PreferencesUI.py:1552 msgid "Resulting geometry will have rounded corners." msgstr "La geometría resultante tendrá esquinas redondeadas." -#: flatcamGUI/ObjectUI.py:632 flatcamGUI/ObjectUI.py:673 +#: flatcamGUI/ObjectUI.py:643 flatcamGUI/ObjectUI.py:684 #: flatcamTools/ToolSolderPaste.py:133 msgid "Generate Geo" msgstr "Generar Geo" -#: flatcamGUI/ObjectUI.py:642 flatcamGUI/PreferencesUI.py:1556 -#: flatcamGUI/PreferencesUI.py:5983 flatcamTools/ToolPanelize.py:95 +#: flatcamGUI/ObjectUI.py:653 flatcamGUI/PreferencesUI.py:1557 +#: flatcamGUI/PreferencesUI.py:5984 flatcamTools/ToolPanelize.py:95 #: flatcamTools/ToolQRCode.py:192 msgid "Bounding Box" msgstr "Cuadro delimitador" -#: flatcamGUI/ObjectUI.py:644 +#: flatcamGUI/ObjectUI.py:655 msgid "" "Create a geometry surrounding the Gerber object.\n" "Square shape." @@ -7536,7 +7536,7 @@ msgstr "" "Crea una geometría que rodea el objeto Gerber.\n" "Forma cuadrada." -#: flatcamGUI/ObjectUI.py:652 flatcamGUI/PreferencesUI.py:1564 +#: flatcamGUI/ObjectUI.py:663 flatcamGUI/PreferencesUI.py:1565 msgid "" "Distance of the edges of the box\n" "to the nearest polygon." @@ -7544,7 +7544,7 @@ msgstr "" "Distancia de los bordes de la caja.\n" "al polígono más cercano." -#: flatcamGUI/ObjectUI.py:666 flatcamGUI/PreferencesUI.py:1577 +#: flatcamGUI/ObjectUI.py:677 flatcamGUI/PreferencesUI.py:1578 msgid "" "If the bounding box is \n" "to have rounded corners\n" @@ -7556,33 +7556,33 @@ msgstr "" "su radio es igual a\n" "el margen." -#: flatcamGUI/ObjectUI.py:675 +#: flatcamGUI/ObjectUI.py:686 msgid "Generate the Geometry object." msgstr "Genera el objeto Geometry." -#: flatcamGUI/ObjectUI.py:691 +#: flatcamGUI/ObjectUI.py:715 msgid "Excellon Object" msgstr "Objeto Excellon" -#: flatcamGUI/ObjectUI.py:705 +#: flatcamGUI/ObjectUI.py:729 msgid "Solid circles." msgstr "Círculos sólidos." -#: flatcamGUI/ObjectUI.py:753 flatcamGUI/ObjectUI.py:1876 +#: flatcamGUI/ObjectUI.py:777 flatcamGUI/ObjectUI.py:1928 #: flatcamTools/ToolProperties.py:161 msgid "Drills" msgstr "Taladros" -#: flatcamGUI/ObjectUI.py:753 flatcamGUI/ObjectUI.py:1876 -#: flatcamGUI/PreferencesUI.py:2952 flatcamTools/ToolProperties.py:162 +#: flatcamGUI/ObjectUI.py:777 flatcamGUI/ObjectUI.py:1928 +#: flatcamGUI/PreferencesUI.py:2953 flatcamTools/ToolProperties.py:162 msgid "Slots" msgstr "Muesca" -#: flatcamGUI/ObjectUI.py:754 flatcamGUI/PreferencesUI.py:2555 +#: flatcamGUI/ObjectUI.py:778 flatcamGUI/PreferencesUI.py:2556 msgid "Offset Z" msgstr "Offset Z" -#: flatcamGUI/ObjectUI.py:758 +#: flatcamGUI/ObjectUI.py:782 msgid "" "This is the Tool Number.\n" "When ToolChange is checked, on toolchange event this value\n" @@ -7597,7 +7597,7 @@ msgstr "" "\n" "Aquí se seleccionan las herramientas para la generación de código G." -#: flatcamGUI/ObjectUI.py:763 flatcamGUI/ObjectUI.py:1191 +#: flatcamGUI/ObjectUI.py:787 flatcamGUI/ObjectUI.py:1230 #: flatcamTools/ToolPaint.py:137 msgid "" "Tool Diameter. It's value (in current FlatCAM units) \n" @@ -7606,7 +7606,7 @@ msgstr "" "Diámetro de herramienta. Su valor (en unidades actuales de FlatCAM)\n" "es el ancho de corte en el material." -#: flatcamGUI/ObjectUI.py:766 +#: flatcamGUI/ObjectUI.py:790 msgid "" "The number of Drill holes. Holes that are drilled with\n" "a drill bit." @@ -7614,7 +7614,7 @@ msgstr "" "El número de agujeros de taladros. Agujeros que se taladran con\n" "una broca." -#: flatcamGUI/ObjectUI.py:769 +#: flatcamGUI/ObjectUI.py:793 msgid "" "The number of Slot holes. Holes that are created by\n" "milling them with an endmill bit." @@ -7622,7 +7622,7 @@ msgstr "" "El número de agujeros de muesca. Agujeros creados por\n" "fresándolas con una broca de fresa." -#: flatcamGUI/ObjectUI.py:772 flatcamGUI/PreferencesUI.py:2557 +#: flatcamGUI/ObjectUI.py:796 flatcamGUI/PreferencesUI.py:2558 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" @@ -7633,7 +7633,7 @@ msgstr "" "la punta.\n" "El valor aquí puede compensar el parámetro Z de corte." -#: flatcamGUI/ObjectUI.py:776 +#: flatcamGUI/ObjectUI.py:800 msgid "" "Toggle display of the drills for the current tool.\n" "This does not select the tools for G-code generation." @@ -7641,12 +7641,12 @@ msgstr "" "Alternar la visualización de los ejercicios para la herramienta actual.\n" "Esto no selecciona las herramientas para la generación de código G." -#: flatcamGUI/ObjectUI.py:783 flatcamGUI/PreferencesUI.py:2323 -#: flatcamGUI/PreferencesUI.py:3167 +#: flatcamGUI/ObjectUI.py:807 flatcamGUI/PreferencesUI.py:2324 +#: flatcamGUI/PreferencesUI.py:3168 msgid "Create CNC Job" msgstr "Crear trabajo CNC" -#: flatcamGUI/ObjectUI.py:785 +#: flatcamGUI/ObjectUI.py:809 msgid "" "Create a CNC Job object\n" "for this drill object." @@ -7654,7 +7654,7 @@ msgstr "" "Crear un objeto de trabajo CNC\n" "para este objeto de perforación." -#: flatcamGUI/ObjectUI.py:798 flatcamGUI/PreferencesUI.py:2336 +#: flatcamGUI/ObjectUI.py:822 flatcamGUI/PreferencesUI.py:2337 msgid "" "Drill depth (negative)\n" "below the copper surface." @@ -7662,7 +7662,7 @@ msgstr "" "Profundidad de perforación (negativo)\n" "debajo de la superficie de cobre." -#: flatcamGUI/ObjectUI.py:817 flatcamGUI/PreferencesUI.py:2354 +#: flatcamGUI/ObjectUI.py:841 flatcamGUI/PreferencesUI.py:2355 msgid "" "Tool height when travelling\n" "across the XY plane." @@ -7670,12 +7670,12 @@ msgstr "" "Altura de herramienta al viajar\n" "A través del plano XY." -#: flatcamGUI/ObjectUI.py:834 flatcamGUI/ObjectUI.py:1439 -#: flatcamGUI/PreferencesUI.py:2369 flatcamGUI/PreferencesUI.py:3252 +#: flatcamGUI/ObjectUI.py:858 flatcamGUI/ObjectUI.py:1478 +#: flatcamGUI/PreferencesUI.py:2370 flatcamGUI/PreferencesUI.py:3253 msgid "Tool change" msgstr "Cambio de herram" -#: flatcamGUI/ObjectUI.py:836 flatcamGUI/PreferencesUI.py:2371 +#: flatcamGUI/ObjectUI.py:860 flatcamGUI/PreferencesUI.py:2372 msgid "" "Include tool-change sequence\n" "in G-Code (Pause for tool change)." @@ -7683,12 +7683,12 @@ msgstr "" "Incluir secuencia de cambio de herramienta\n" "en G-Code (Pausa para cambio de herramienta)." -#: flatcamGUI/ObjectUI.py:842 flatcamGUI/ObjectUI.py:1432 +#: flatcamGUI/ObjectUI.py:866 flatcamGUI/ObjectUI.py:1471 msgid "Tool change Z" msgstr "Cambio de herra. Z" -#: flatcamGUI/ObjectUI.py:844 flatcamGUI/ObjectUI.py:1435 -#: flatcamGUI/PreferencesUI.py:2380 flatcamGUI/PreferencesUI.py:3267 +#: flatcamGUI/ObjectUI.py:868 flatcamGUI/ObjectUI.py:1474 +#: flatcamGUI/PreferencesUI.py:2381 flatcamGUI/PreferencesUI.py:3268 msgid "" "Z-axis position (height) for\n" "tool change." @@ -7696,12 +7696,12 @@ msgstr "" "Posición del eje Z (altura) para\n" "cambio de herramienta." -#: flatcamGUI/ObjectUI.py:862 flatcamGUI/PreferencesUI.py:2575 -#: flatcamGUI/PreferencesUI.py:3420 +#: flatcamGUI/ObjectUI.py:886 flatcamGUI/PreferencesUI.py:2576 +#: flatcamGUI/PreferencesUI.py:3421 msgid "Start move Z" msgstr "Comience a mover Z" -#: flatcamGUI/ObjectUI.py:864 flatcamGUI/PreferencesUI.py:2577 +#: flatcamGUI/ObjectUI.py:888 flatcamGUI/PreferencesUI.py:2578 msgid "" "Height of the tool just after start.\n" "Delete the value if you don't need this feature." @@ -7709,13 +7709,13 @@ msgstr "" "Altura de la herramienta justo después del arranque.\n" "Elimine el valor si no necesita esta característica." -#: flatcamGUI/ObjectUI.py:872 flatcamGUI/ObjectUI.py:1473 -#: flatcamGUI/PreferencesUI.py:2395 flatcamGUI/PreferencesUI.py:3286 +#: flatcamGUI/ObjectUI.py:896 flatcamGUI/ObjectUI.py:1512 +#: flatcamGUI/PreferencesUI.py:2396 flatcamGUI/PreferencesUI.py:3287 msgid "End move Z" msgstr "Fin del movi. Z" -#: flatcamGUI/ObjectUI.py:874 flatcamGUI/ObjectUI.py:1475 -#: flatcamGUI/PreferencesUI.py:2397 flatcamGUI/PreferencesUI.py:3288 +#: flatcamGUI/ObjectUI.py:898 flatcamGUI/ObjectUI.py:1514 +#: flatcamGUI/PreferencesUI.py:2398 flatcamGUI/PreferencesUI.py:3289 msgid "" "Height of the tool after\n" "the last move at the end of the job." @@ -7723,13 +7723,13 @@ msgstr "" "Altura de la herramienta después de\n" "El último movimiento al final del trabajo." -#: flatcamGUI/ObjectUI.py:891 flatcamGUI/ObjectUI.py:1506 -#: flatcamGUI/PreferencesUI.py:2412 flatcamGUI/PreferencesUI.py:3321 -#: flatcamGUI/PreferencesUI.py:5497 flatcamTools/ToolSolderPaste.py:264 +#: flatcamGUI/ObjectUI.py:915 flatcamGUI/ObjectUI.py:1545 +#: flatcamGUI/PreferencesUI.py:2413 flatcamGUI/PreferencesUI.py:3322 +#: flatcamGUI/PreferencesUI.py:5498 flatcamTools/ToolSolderPaste.py:264 msgid "Feedrate Z" msgstr "Avance Z" -#: flatcamGUI/ObjectUI.py:893 flatcamGUI/PreferencesUI.py:2414 +#: flatcamGUI/ObjectUI.py:917 flatcamGUI/PreferencesUI.py:2415 msgid "" "Tool speed while drilling\n" "(in units per minute).\n" @@ -7741,12 +7741,12 @@ msgstr "" "La llamada velocidad de avance 'Plunge'.\n" "Esto es para el movimiento lineal G01." -#: flatcamGUI/ObjectUI.py:907 flatcamGUI/ObjectUI.py:1521 -#: flatcamGUI/PreferencesUI.py:2585 flatcamGUI/PreferencesUI.py:3430 +#: flatcamGUI/ObjectUI.py:931 flatcamGUI/ObjectUI.py:1560 +#: flatcamGUI/PreferencesUI.py:2586 flatcamGUI/PreferencesUI.py:3431 msgid "Feedrate Rapids" msgstr "Rápidos de avance" -#: flatcamGUI/ObjectUI.py:909 flatcamGUI/PreferencesUI.py:2587 +#: flatcamGUI/ObjectUI.py:933 flatcamGUI/PreferencesUI.py:2588 msgid "" "Tool speed while drilling\n" "(in units per minute).\n" @@ -7760,12 +7760,12 @@ msgstr "" "Es útil solo para Marlin,\n" "Ignorar para cualquier otro caso." -#: flatcamGUI/ObjectUI.py:927 flatcamGUI/ObjectUI.py:1566 -#: flatcamGUI/PreferencesUI.py:3337 +#: flatcamGUI/ObjectUI.py:951 flatcamGUI/ObjectUI.py:1605 +#: flatcamGUI/PreferencesUI.py:3338 msgid "Spindle speed" msgstr "Eje de velocidad" -#: flatcamGUI/ObjectUI.py:929 flatcamGUI/PreferencesUI.py:2429 +#: flatcamGUI/ObjectUI.py:953 flatcamGUI/PreferencesUI.py:2430 msgid "" "Speed of the spindle\n" "in RPM (optional)" @@ -7773,8 +7773,8 @@ msgstr "" "Velocidad del husillo\n" "en RPM (opcional)" -#: flatcamGUI/ObjectUI.py:941 flatcamGUI/ObjectUI.py:1585 -#: flatcamGUI/PreferencesUI.py:2441 flatcamGUI/PreferencesUI.py:3355 +#: flatcamGUI/ObjectUI.py:965 flatcamGUI/ObjectUI.py:1624 +#: flatcamGUI/PreferencesUI.py:2442 flatcamGUI/PreferencesUI.py:3356 msgid "" "Pause to allow the spindle to reach its\n" "speed before cutting." @@ -7782,12 +7782,12 @@ msgstr "" "Pausa para permitir que el husillo alcance su\n" "Velocidad antes del corte." -#: flatcamGUI/ObjectUI.py:950 flatcamGUI/ObjectUI.py:1595 -#: flatcamGUI/PreferencesUI.py:2446 flatcamGUI/PreferencesUI.py:3360 +#: flatcamGUI/ObjectUI.py:974 flatcamGUI/ObjectUI.py:1634 +#: flatcamGUI/PreferencesUI.py:2447 flatcamGUI/PreferencesUI.py:3361 msgid "Number of time units for spindle to dwell." msgstr "Número de unidades de tiempo para que el husillo permanezca." -#: flatcamGUI/ObjectUI.py:960 flatcamGUI/PreferencesUI.py:2463 +#: flatcamGUI/ObjectUI.py:984 flatcamGUI/PreferencesUI.py:2464 msgid "" "The preprocessor JSON file that dictates\n" "Gcode output." @@ -7795,13 +7795,13 @@ msgstr "" "El archivo JSON del postprocesador que dicta\n" "Salida de Gcode." -#: flatcamGUI/ObjectUI.py:969 flatcamGUI/ObjectUI.py:1615 -#: flatcamGUI/PreferencesUI.py:2601 flatcamGUI/PreferencesUI.py:3471 +#: flatcamGUI/ObjectUI.py:993 flatcamGUI/ObjectUI.py:1654 +#: flatcamGUI/PreferencesUI.py:2602 flatcamGUI/PreferencesUI.py:3472 msgid "Probe Z depth" msgstr "Profundidad de la sonda Z" -#: flatcamGUI/ObjectUI.py:971 flatcamGUI/ObjectUI.py:1617 -#: flatcamGUI/PreferencesUI.py:2603 flatcamGUI/PreferencesUI.py:3473 +#: flatcamGUI/ObjectUI.py:995 flatcamGUI/ObjectUI.py:1656 +#: flatcamGUI/PreferencesUI.py:2604 flatcamGUI/PreferencesUI.py:3474 msgid "" "The maximum depth that the probe is allowed\n" "to probe. Negative value, in current units." @@ -7809,21 +7809,21 @@ msgstr "" "The maximum depth that the probe is allowed\n" "to probe. Negative value, in current units." -#: flatcamGUI/ObjectUI.py:985 flatcamGUI/ObjectUI.py:1632 -#: flatcamGUI/PreferencesUI.py:2614 flatcamGUI/PreferencesUI.py:3486 +#: flatcamGUI/ObjectUI.py:1009 flatcamGUI/ObjectUI.py:1671 +#: flatcamGUI/PreferencesUI.py:2615 flatcamGUI/PreferencesUI.py:3487 msgid "Feedrate Probe" msgstr "Sonda de avance" -#: flatcamGUI/ObjectUI.py:987 flatcamGUI/ObjectUI.py:1634 -#: flatcamGUI/PreferencesUI.py:2616 flatcamGUI/PreferencesUI.py:3488 +#: flatcamGUI/ObjectUI.py:1011 flatcamGUI/ObjectUI.py:1673 +#: flatcamGUI/PreferencesUI.py:2617 flatcamGUI/PreferencesUI.py:3489 msgid "The feedrate used while the probe is probing." msgstr "La velocidad de avance utilizada mientras la sonda está sondeando." -#: flatcamGUI/ObjectUI.py:1013 flatcamGUI/PreferencesUI.py:2472 +#: flatcamGUI/ObjectUI.py:1037 flatcamGUI/PreferencesUI.py:2473 msgid "Gcode" msgstr "Gcode" -#: flatcamGUI/ObjectUI.py:1015 +#: flatcamGUI/ObjectUI.py:1039 msgid "" "Choose what to use for GCode generation:\n" "'Drills', 'Slots' or 'Both'.\n" @@ -7835,19 +7835,19 @@ msgstr "" "Al elegir 'Muesca' o 'Ambos', los slots serán\n" "convertido en una serie de simulacros." -#: flatcamGUI/ObjectUI.py:1029 +#: flatcamGUI/ObjectUI.py:1053 msgid "Create Drills GCode" msgstr "Crear taladros GCode" -#: flatcamGUI/ObjectUI.py:1031 +#: flatcamGUI/ObjectUI.py:1055 msgid "Generate the CNC Job." msgstr "Generar el trabajo del CNC." -#: flatcamGUI/ObjectUI.py:1042 flatcamGUI/PreferencesUI.py:2490 +#: flatcamGUI/ObjectUI.py:1066 flatcamGUI/PreferencesUI.py:2491 msgid "Mill Holes" msgstr "Agujeros de molino" -#: flatcamGUI/ObjectUI.py:1044 +#: flatcamGUI/ObjectUI.py:1068 msgid "" "Create Geometry for milling holes.\n" "Select from the Tools Table above the hole dias to be\n" @@ -7858,20 +7858,20 @@ msgstr "" "para\n" "molido. Use la columna # para hacer la selección." -#: flatcamGUI/ObjectUI.py:1050 flatcamGUI/PreferencesUI.py:2496 +#: flatcamGUI/ObjectUI.py:1074 flatcamGUI/PreferencesUI.py:2497 msgid "Drill Tool dia" msgstr "Diá de la herra. de Perfor" -#: flatcamGUI/ObjectUI.py:1052 flatcamGUI/PreferencesUI.py:1451 -#: flatcamGUI/PreferencesUI.py:2498 +#: flatcamGUI/ObjectUI.py:1076 flatcamGUI/PreferencesUI.py:1452 +#: flatcamGUI/PreferencesUI.py:2499 msgid "Diameter of the cutting tool." msgstr "Diá. de la herramienta de corte." -#: flatcamGUI/ObjectUI.py:1059 +#: flatcamGUI/ObjectUI.py:1083 msgid "Mill Drills Geo" msgstr "Fresas Geo" -#: flatcamGUI/ObjectUI.py:1061 +#: flatcamGUI/ObjectUI.py:1085 msgid "" "Create the Geometry Object\n" "for milling DRILLS toolpaths." @@ -7879,11 +7879,11 @@ msgstr "" "Crear el objeto de geometría\n" "para fresar trayectorias de taladros." -#: flatcamGUI/ObjectUI.py:1075 flatcamGUI/PreferencesUI.py:2507 +#: flatcamGUI/ObjectUI.py:1099 flatcamGUI/PreferencesUI.py:2508 msgid "Slot Tool dia" msgstr "Diá. de la herra. de ranura" -#: flatcamGUI/ObjectUI.py:1077 flatcamGUI/PreferencesUI.py:2509 +#: flatcamGUI/ObjectUI.py:1101 flatcamGUI/PreferencesUI.py:2510 msgid "" "Diameter of the cutting tool\n" "when milling slots." @@ -7891,11 +7891,11 @@ msgstr "" "Diámetro de la herramienta de corte\n" "Al fresar ranuras." -#: flatcamGUI/ObjectUI.py:1086 +#: flatcamGUI/ObjectUI.py:1110 msgid "Mill Slots Geo" msgstr "Fresado de muesca Geo" -#: flatcamGUI/ObjectUI.py:1088 +#: flatcamGUI/ObjectUI.py:1112 msgid "" "Create the Geometry Object\n" "for milling SLOTS toolpaths." @@ -7903,11 +7903,11 @@ msgstr "" "Crear el objeto de geometría\n" "para fresar recorridos de herramientas muesca." -#: flatcamGUI/ObjectUI.py:1115 flatcamTools/ToolCutOut.py:315 +#: flatcamGUI/ObjectUI.py:1152 flatcamTools/ToolCutOut.py:315 msgid "Geometry Object" msgstr "Objeto de geometría" -#: flatcamGUI/ObjectUI.py:1147 +#: flatcamGUI/ObjectUI.py:1186 msgid "" "Tools in this Geometry object used for cutting.\n" "The 'Offset' entry will set an offset for the cut.\n" @@ -7936,23 +7936,23 @@ msgstr "" "atenuado y Cut Z se calcula automáticamente a partir de la nueva\n" "mostró entradas de formulario de IU denominadas V-Tipo Dia y V-Tipo ángulo." -#: flatcamGUI/ObjectUI.py:1164 flatcamGUI/ObjectUI.py:1853 -#: flatcamGUI/PreferencesUI.py:3627 +#: flatcamGUI/ObjectUI.py:1203 flatcamGUI/ObjectUI.py:1905 +#: flatcamGUI/PreferencesUI.py:3628 msgid "Plot Object" msgstr "Trazar objeto" -#: flatcamGUI/ObjectUI.py:1178 flatcamGUI/ObjectUI.py:1866 -#: flatcamGUI/ObjectUI.py:1876 flatcamGUI/PreferencesUI.py:6172 +#: flatcamGUI/ObjectUI.py:1217 flatcamGUI/ObjectUI.py:1918 +#: flatcamGUI/ObjectUI.py:1928 flatcamGUI/PreferencesUI.py:6173 #: flatcamTools/ToolCopperThieving.py:220 msgid "Dia" msgstr "Dia" -#: flatcamGUI/ObjectUI.py:1178 flatcamGUI/ObjectUI.py:1866 +#: flatcamGUI/ObjectUI.py:1217 flatcamGUI/ObjectUI.py:1918 #: flatcamTools/ToolNonCopperClear.py:120 flatcamTools/ToolPaint.py:123 msgid "TT" msgstr "TT" -#: flatcamGUI/ObjectUI.py:1185 +#: flatcamGUI/ObjectUI.py:1224 msgid "" "This is the Tool Number.\n" "When ToolChange is checked, on toolchange event this value\n" @@ -7963,7 +7963,7 @@ msgstr "" "este valor\n" "se mostrará como un T1, T2 ... Tn" -#: flatcamGUI/ObjectUI.py:1196 +#: flatcamGUI/ObjectUI.py:1235 msgid "" "The value for the Offset can be:\n" "- Path -> There is no offset, the tool cut will be done through the geometry " @@ -7980,7 +7980,7 @@ msgstr "" "- Fuera (lado) -> El corte de la herramienta seguirá la línea de geometría " "en el exterior." -#: flatcamGUI/ObjectUI.py:1203 +#: flatcamGUI/ObjectUI.py:1242 msgid "" "The (Operation) Type has only informative value. Usually the UI form " "values \n" @@ -8003,7 +8003,7 @@ msgstr "" "Para el aislamiento, necesitamos un avance más bajo, ya que utiliza una " "broca de fresado con una punta fina." -#: flatcamGUI/ObjectUI.py:1212 +#: flatcamGUI/ObjectUI.py:1251 msgid "" "The Tool Type (TT) can be:\n" "- Circular with 1 ... 4 teeth -> it is informative only. Being circular the " @@ -8034,7 +8034,7 @@ msgstr "" "Elegir el tipo de herramienta en forma de V automáticamente seleccionará el " "tipo de operación como aislamiento." -#: flatcamGUI/ObjectUI.py:1224 +#: flatcamGUI/ObjectUI.py:1263 msgid "" "Plot column. It is visible only for MultiGeo geometries, meaning geometries " "that holds the geometry\n" @@ -8052,7 +8052,7 @@ msgstr "" "puede habilitar / deshabilitar la trama en el lienzo\n" "para la herramienta correspondiente." -#: flatcamGUI/ObjectUI.py:1242 +#: flatcamGUI/ObjectUI.py:1281 msgid "" "The value to offset the cut when \n" "the Offset type selected is 'Offset'.\n" @@ -8064,7 +8064,7 @@ msgstr "" "El valor puede ser positivo para 'afuera'\n" "corte y negativo para corte 'interior'." -#: flatcamGUI/ObjectUI.py:1267 +#: flatcamGUI/ObjectUI.py:1306 msgid "" "Add a new tool to the Tool Table\n" "with the specified diameter." @@ -8072,11 +8072,11 @@ msgstr "" "Agregar una nueva herramienta a la tabla de herramientas\n" "con el diámetro especificado." -#: flatcamGUI/ObjectUI.py:1275 +#: flatcamGUI/ObjectUI.py:1314 msgid "Add Tool from DataBase" msgstr "Agregar herramienta desde DB" -#: flatcamGUI/ObjectUI.py:1277 +#: flatcamGUI/ObjectUI.py:1316 msgid "" "Add a new tool to the Tool Table\n" "from the Tool DataBase." @@ -8084,7 +8084,7 @@ msgstr "" "Agregar una nueva herramienta a la tabla de herramientas\n" "de la base de datos de herramientas." -#: flatcamGUI/ObjectUI.py:1287 +#: flatcamGUI/ObjectUI.py:1326 msgid "" "Copy a selection of tools in the Tool Table\n" "by first selecting a row in the Tool Table." @@ -8092,7 +8092,7 @@ msgstr "" "Copie una selección de herramientas en la tabla de herramientas\n" "seleccionando primero una fila en la Tabla de herramientas." -#: flatcamGUI/ObjectUI.py:1293 +#: flatcamGUI/ObjectUI.py:1332 msgid "" "Delete a selection of tools in the Tool Table\n" "by first selecting a row in the Tool Table." @@ -8100,7 +8100,7 @@ msgstr "" "Eliminar una selección de herramientas en la tabla de herramientas\n" "seleccionando primero una fila en la Tabla de herramientas." -#: flatcamGUI/ObjectUI.py:1317 +#: flatcamGUI/ObjectUI.py:1356 msgid "" "The data used for creating GCode.\n" "Each tool store it's own set of such data." @@ -8108,13 +8108,13 @@ msgstr "" "Los datos utilizados para crear GCode.\n" "Cada herramienta almacena su propio conjunto de datos." -#: flatcamGUI/ObjectUI.py:1387 flatcamGUI/PreferencesUI.py:3199 -#: flatcamGUI/PreferencesUI.py:4311 flatcamTools/ToolCutOut.py:153 +#: flatcamGUI/ObjectUI.py:1426 flatcamGUI/PreferencesUI.py:3200 +#: flatcamGUI/PreferencesUI.py:4312 flatcamTools/ToolCutOut.py:153 msgid "Multi-Depth" msgstr "Profund. Múlti" -#: flatcamGUI/ObjectUI.py:1390 flatcamGUI/PreferencesUI.py:3202 -#: flatcamGUI/PreferencesUI.py:4314 flatcamTools/ToolCutOut.py:156 +#: flatcamGUI/ObjectUI.py:1429 flatcamGUI/PreferencesUI.py:3203 +#: flatcamGUI/PreferencesUI.py:4315 flatcamTools/ToolCutOut.py:156 msgid "" "Use multiple passes to limit\n" "the cut depth in each pass. Will\n" @@ -8126,12 +8126,12 @@ msgstr "" "cortar varias veces hasta que el Corte Z sea\n" "alcanzado." -#: flatcamGUI/ObjectUI.py:1404 flatcamGUI/PreferencesUI.py:4326 +#: flatcamGUI/ObjectUI.py:1443 flatcamGUI/PreferencesUI.py:4327 #: flatcamTools/ToolCutOut.py:170 msgid "Depth of each pass (positive)." msgstr "Profundidad de cada pase (positivo)." -#: flatcamGUI/ObjectUI.py:1415 flatcamGUI/PreferencesUI.py:3234 +#: flatcamGUI/ObjectUI.py:1454 flatcamGUI/PreferencesUI.py:3235 msgid "" "Height of the tool when\n" "moving without cutting." @@ -8139,7 +8139,7 @@ msgstr "" "Altura de la herramienta cuando\n" "Moviéndose sin cortar." -#: flatcamGUI/ObjectUI.py:1442 flatcamGUI/PreferencesUI.py:3255 +#: flatcamGUI/ObjectUI.py:1481 flatcamGUI/PreferencesUI.py:3256 msgid "" "Include tool-change sequence\n" "in the Machine Code (Pause for tool change)." @@ -8147,12 +8147,12 @@ msgstr "" "Incluir secuencia de cambio de herramienta\n" "en el código de máquina (pausa para cambio de herramienta)." -#: flatcamGUI/ObjectUI.py:1492 flatcamGUI/PreferencesUI.py:3306 -#: flatcamGUI/PreferencesUI.py:5484 flatcamTools/ToolSolderPaste.py:252 +#: flatcamGUI/ObjectUI.py:1531 flatcamGUI/PreferencesUI.py:3307 +#: flatcamGUI/PreferencesUI.py:5485 flatcamTools/ToolSolderPaste.py:252 msgid "Feedrate X-Y" msgstr "Avance X-Y" -#: flatcamGUI/ObjectUI.py:1494 flatcamGUI/PreferencesUI.py:3308 +#: flatcamGUI/ObjectUI.py:1533 flatcamGUI/PreferencesUI.py:3309 msgid "" "Cutting speed in the XY\n" "plane in units per minute" @@ -8160,7 +8160,7 @@ msgstr "" "Velocidad de corte en el XY.\n" "Avion en unidades por minuto" -#: flatcamGUI/ObjectUI.py:1508 flatcamGUI/PreferencesUI.py:3323 +#: flatcamGUI/ObjectUI.py:1547 flatcamGUI/PreferencesUI.py:3324 msgid "" "Cutting speed in the XY\n" "plane in units per minute.\n" @@ -8170,7 +8170,7 @@ msgstr "" "Plano en unidades por minuto.\n" "Se llama también Plunge." -#: flatcamGUI/ObjectUI.py:1523 flatcamGUI/PreferencesUI.py:3432 +#: flatcamGUI/ObjectUI.py:1562 flatcamGUI/PreferencesUI.py:3433 msgid "" "Cutting speed in the XY plane\n" "(in units per minute).\n" @@ -8184,12 +8184,12 @@ msgstr "" "Es útil solo para Marlin,\n" "Ignorar para cualquier otro caso." -#: flatcamGUI/ObjectUI.py:1541 flatcamGUI/PreferencesUI.py:3448 +#: flatcamGUI/ObjectUI.py:1580 flatcamGUI/PreferencesUI.py:3449 msgid "Re-cut" msgstr "Recortar" -#: flatcamGUI/ObjectUI.py:1543 flatcamGUI/ObjectUI.py:1555 -#: flatcamGUI/PreferencesUI.py:3450 flatcamGUI/PreferencesUI.py:3462 +#: flatcamGUI/ObjectUI.py:1582 flatcamGUI/ObjectUI.py:1594 +#: flatcamGUI/PreferencesUI.py:3451 flatcamGUI/PreferencesUI.py:3463 msgid "" "In order to remove possible\n" "copper leftovers where first cut\n" @@ -8201,7 +8201,7 @@ msgstr "" "Nos reunimos con el último corte, generamos un\n" "Corte extendido sobre la primera sección de corte." -#: flatcamGUI/ObjectUI.py:1569 flatcamGUI/PreferencesUI.py:3340 +#: flatcamGUI/ObjectUI.py:1608 flatcamGUI/PreferencesUI.py:3341 msgid "" "Speed of the spindle in RPM (optional).\n" "If LASER preprocessor is used,\n" @@ -8211,12 +8211,12 @@ msgstr "" "Si se utiliza el postprocesador LÁSER,\n" "Este valor es el poder del láser." -#: flatcamGUI/ObjectUI.py:1603 flatcamGUI/PreferencesUI.py:5573 +#: flatcamGUI/ObjectUI.py:1642 flatcamGUI/PreferencesUI.py:5574 #: flatcamTools/ToolSolderPaste.py:334 msgid "PostProcessor" msgstr "Postprocesador" -#: flatcamGUI/ObjectUI.py:1605 flatcamGUI/PreferencesUI.py:3377 +#: flatcamGUI/ObjectUI.py:1644 flatcamGUI/PreferencesUI.py:3378 msgid "" "The Preprocessor file that dictates\n" "the Machine Code (like GCode, RML, HPGL) output." @@ -8224,11 +8224,11 @@ msgstr "" "El archivo de postprocesador que dicta\n" "la salida del código de máquina (como GCode, RML, HPGL)." -#: flatcamGUI/ObjectUI.py:1652 +#: flatcamGUI/ObjectUI.py:1691 msgid "Apply parameters to all tools" msgstr "Aplicar parámetros a todas las herramientas." -#: flatcamGUI/ObjectUI.py:1654 +#: flatcamGUI/ObjectUI.py:1693 msgid "" "The parameters in the current form will be applied\n" "on all the tools from the Tool Table." @@ -8236,7 +8236,7 @@ msgstr "" "Se aplicarán los parámetros en el formulario actual\n" "en todas las herramientas de la tabla de herramientas." -#: flatcamGUI/ObjectUI.py:1663 +#: flatcamGUI/ObjectUI.py:1702 msgid "" "Add at least one tool in the tool-table.\n" "Click the header to select all, or Ctrl + LMB\n" @@ -8246,19 +8246,19 @@ msgstr "" "Haga clic en el encabezado para seleccionar todo, o Ctrl + LMB\n" "para la selección personalizada de herramientas." -#: flatcamGUI/ObjectUI.py:1670 +#: flatcamGUI/ObjectUI.py:1709 msgid "Generate CNCJob object" msgstr "Generar objeto CNCJob" -#: flatcamGUI/ObjectUI.py:1672 +#: flatcamGUI/ObjectUI.py:1711 msgid "Generate the CNC Job object." msgstr "Genere el objeto de trabajo CNC." -#: flatcamGUI/ObjectUI.py:1689 +#: flatcamGUI/ObjectUI.py:1728 msgid "Launch Paint Tool in Tools Tab." msgstr "Inicie la herramienta Pintura en la pestaña Herramientas." -#: flatcamGUI/ObjectUI.py:1697 flatcamGUI/PreferencesUI.py:4489 +#: flatcamGUI/ObjectUI.py:1736 flatcamGUI/PreferencesUI.py:4490 msgid "" "Creates tool paths to cover the\n" "whole area of a polygon (remove\n" @@ -8270,15 +8270,15 @@ msgstr "" "todo el cobre). Te harán preguntas\n" "Para hacer clic en el polígono deseado." -#: flatcamGUI/ObjectUI.py:1737 +#: flatcamGUI/ObjectUI.py:1788 msgid "CNC Job Object" msgstr "Objeto de trabajo CNC" -#: flatcamGUI/ObjectUI.py:1748 flatcamGUI/PreferencesUI.py:3632 +#: flatcamGUI/ObjectUI.py:1800 flatcamGUI/PreferencesUI.py:3633 msgid "Plot kind" msgstr "Tipo de trazado" -#: flatcamGUI/ObjectUI.py:1751 flatcamGUI/PreferencesUI.py:3634 +#: flatcamGUI/ObjectUI.py:1803 flatcamGUI/PreferencesUI.py:3635 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" @@ -8290,15 +8290,15 @@ msgstr "" "Por encima de la pieza de trabajo o puede ser de tipo 'Corte',\n" "Lo que significa los movimientos que cortan en el material." -#: flatcamGUI/ObjectUI.py:1760 flatcamGUI/PreferencesUI.py:3642 +#: flatcamGUI/ObjectUI.py:1812 flatcamGUI/PreferencesUI.py:3643 msgid "Travel" msgstr "Viajar" -#: flatcamGUI/ObjectUI.py:1764 flatcamGUI/PreferencesUI.py:3651 +#: flatcamGUI/ObjectUI.py:1816 flatcamGUI/PreferencesUI.py:3652 msgid "Display Annotation" msgstr "Mostrar anotación" -#: flatcamGUI/ObjectUI.py:1766 flatcamGUI/PreferencesUI.py:3653 +#: flatcamGUI/ObjectUI.py:1818 flatcamGUI/PreferencesUI.py:3654 msgid "" "This selects if to display text annotation on the plot.\n" "When checked it will display numbers in order for each end\n" @@ -8308,11 +8308,11 @@ msgstr "" "Cuando está marcado, mostrará números en orden para cada final.\n" "de una linea de viaje." -#: flatcamGUI/ObjectUI.py:1781 +#: flatcamGUI/ObjectUI.py:1833 msgid "Travelled dist." msgstr "Dist. recorrida" -#: flatcamGUI/ObjectUI.py:1783 flatcamGUI/ObjectUI.py:1788 +#: flatcamGUI/ObjectUI.py:1835 flatcamGUI/ObjectUI.py:1840 msgid "" "This is the total travelled distance on X-Y plane.\n" "In current units." @@ -8320,11 +8320,11 @@ msgstr "" "Esta es la distancia total recorrida en el plano X-Y.\n" "En unidades actuales." -#: flatcamGUI/ObjectUI.py:1793 +#: flatcamGUI/ObjectUI.py:1845 msgid "Estimated time" msgstr "Duración estimada" -#: flatcamGUI/ObjectUI.py:1795 flatcamGUI/ObjectUI.py:1800 +#: flatcamGUI/ObjectUI.py:1847 flatcamGUI/ObjectUI.py:1852 msgid "" "This is the estimated time to do the routing/drilling,\n" "without the time spent in ToolChange events." @@ -8332,11 +8332,11 @@ msgstr "" "Este es el tiempo estimado para hacer el enrutamiento / perforación,\n" "sin el tiempo dedicado a los eventos de cambio de herramienta." -#: flatcamGUI/ObjectUI.py:1835 +#: flatcamGUI/ObjectUI.py:1887 msgid "CNC Tools Table" msgstr "Tabla de herramientas CNC" -#: flatcamGUI/ObjectUI.py:1838 +#: flatcamGUI/ObjectUI.py:1890 msgid "" "Tools in this CNCJob object used for cutting.\n" "The tool diameter is used for plotting on canvas.\n" @@ -8359,24 +8359,24 @@ msgstr "" "C4),\n" "bola (B) o en forma de V (V)." -#: flatcamGUI/ObjectUI.py:1866 flatcamGUI/ObjectUI.py:1877 +#: flatcamGUI/ObjectUI.py:1918 flatcamGUI/ObjectUI.py:1929 msgid "P" msgstr "P" -#: flatcamGUI/ObjectUI.py:1887 +#: flatcamGUI/ObjectUI.py:1939 msgid "Update Plot" msgstr "Actualizar Trama" -#: flatcamGUI/ObjectUI.py:1889 +#: flatcamGUI/ObjectUI.py:1941 msgid "Update the plot." msgstr "Actualiza la trama." -#: flatcamGUI/ObjectUI.py:1896 flatcamGUI/PreferencesUI.py:3819 +#: flatcamGUI/ObjectUI.py:1948 flatcamGUI/PreferencesUI.py:3820 msgid "Export CNC Code" msgstr "Exportar código CNC" -#: flatcamGUI/ObjectUI.py:1898 flatcamGUI/PreferencesUI.py:3760 -#: flatcamGUI/PreferencesUI.py:3821 +#: flatcamGUI/ObjectUI.py:1950 flatcamGUI/PreferencesUI.py:3761 +#: flatcamGUI/PreferencesUI.py:3822 msgid "" "Export and save G-Code to\n" "make this object to a file." @@ -8384,12 +8384,12 @@ msgstr "" "Exportar y guardar código G a\n" "Hacer este objeto a un archivo." -#: flatcamGUI/ObjectUI.py:1904 +#: flatcamGUI/ObjectUI.py:1956 msgid "Prepend to CNC Code" msgstr "Anteponer al código del CNC" -#: flatcamGUI/ObjectUI.py:1906 flatcamGUI/ObjectUI.py:1913 -#: flatcamGUI/PreferencesUI.py:3776 flatcamGUI/PreferencesUI.py:3783 +#: flatcamGUI/ObjectUI.py:1958 flatcamGUI/ObjectUI.py:1965 +#: flatcamGUI/PreferencesUI.py:3777 flatcamGUI/PreferencesUI.py:3784 msgid "" "Type here any G-Code commands you would\n" "like to add at the beginning of the G-Code file." @@ -8397,12 +8397,12 @@ msgstr "" "Escribe aquí cualquier comando de G-Code que quieras\n" "Me gusta agregar al principio del archivo G-Code." -#: flatcamGUI/ObjectUI.py:1919 +#: flatcamGUI/ObjectUI.py:1971 msgid "Append to CNC Code" msgstr "Añadir al código CNC" -#: flatcamGUI/ObjectUI.py:1921 flatcamGUI/ObjectUI.py:1929 -#: flatcamGUI/PreferencesUI.py:3792 flatcamGUI/PreferencesUI.py:3800 +#: flatcamGUI/ObjectUI.py:1973 flatcamGUI/ObjectUI.py:1981 +#: flatcamGUI/PreferencesUI.py:3793 flatcamGUI/PreferencesUI.py:3801 msgid "" "Type here any G-Code commands you would\n" "like to append to the generated file.\n" @@ -8412,11 +8412,11 @@ msgstr "" "Me gusta adjuntar al archivo generado.\n" "Es decir: M2 (Fin del programa)" -#: flatcamGUI/ObjectUI.py:1943 flatcamGUI/PreferencesUI.py:3827 +#: flatcamGUI/ObjectUI.py:1995 flatcamGUI/PreferencesUI.py:3828 msgid "Toolchange G-Code" msgstr "Cambio de herra. G-Code" -#: flatcamGUI/ObjectUI.py:1946 flatcamGUI/PreferencesUI.py:3830 +#: flatcamGUI/ObjectUI.py:1998 flatcamGUI/PreferencesUI.py:3831 msgid "" "Type here any G-Code commands you would\n" "like to be executed when Toolchange event is encountered.\n" @@ -8438,7 +8438,7 @@ msgstr "" "que tiene 'toolchange_custom' en su nombre y esto está construido\n" "teniendo como plantilla el archivo posprocesador 'Toolchange Custom'." -#: flatcamGUI/ObjectUI.py:1961 flatcamGUI/PreferencesUI.py:3853 +#: flatcamGUI/ObjectUI.py:2013 flatcamGUI/PreferencesUI.py:3854 msgid "" "Type here any G-Code commands you would\n" "like to be executed when Toolchange event is encountered.\n" @@ -8456,11 +8456,11 @@ msgstr "" "ADVERTENCIA: solo se puede usar con un archivo de preprocesador\n" "que tiene 'toolchange_custom' en su nombre." -#: flatcamGUI/ObjectUI.py:1976 flatcamGUI/PreferencesUI.py:3869 +#: flatcamGUI/ObjectUI.py:2028 flatcamGUI/PreferencesUI.py:3870 msgid "Use Toolchange Macro" msgstr "Util. la herra. de cambio de macro" -#: flatcamGUI/ObjectUI.py:1978 flatcamGUI/PreferencesUI.py:3871 +#: flatcamGUI/ObjectUI.py:2030 flatcamGUI/PreferencesUI.py:3872 msgid "" "Check this box if you want to use\n" "a Custom Toolchange GCode (macro)." @@ -8468,7 +8468,7 @@ msgstr "" "Marque esta casilla si desea utilizar\n" "una herramienta personalizada para cambiar GCode (macro)." -#: flatcamGUI/ObjectUI.py:1986 flatcamGUI/PreferencesUI.py:3883 +#: flatcamGUI/ObjectUI.py:2038 flatcamGUI/PreferencesUI.py:3884 msgid "" "A list of the FlatCAM variables that can be used\n" "in the Toolchange event.\n" @@ -8478,74 +8478,74 @@ msgstr "" "en el evento Cambio de herramienta.\n" "Deben estar rodeados por el símbolo '%'" -#: 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 +#: flatcamGUI/ObjectUI.py:2045 flatcamGUI/PreferencesUI.py:1852 +#: flatcamGUI/PreferencesUI.py:2825 flatcamGUI/PreferencesUI.py:3570 +#: flatcamGUI/PreferencesUI.py:3891 flatcamGUI/PreferencesUI.py:3973 +#: flatcamGUI/PreferencesUI.py:4265 flatcamGUI/PreferencesUI.py:4424 +#: flatcamGUI/PreferencesUI.py:4646 flatcamGUI/PreferencesUI.py:4943 +#: flatcamGUI/PreferencesUI.py:5194 flatcamGUI/PreferencesUI.py:5370 +#: flatcamGUI/PreferencesUI.py:5595 flatcamGUI/PreferencesUI.py:5617 +#: flatcamGUI/PreferencesUI.py:5841 flatcamGUI/PreferencesUI.py:5878 +#: flatcamGUI/PreferencesUI.py:6072 flatcamGUI/PreferencesUI.py:6326 +#: flatcamGUI/PreferencesUI.py:6442 flatcamTools/ToolCopperThieving.py:89 #: flatcamTools/ToolFiducials.py:149 flatcamTools/ToolNonCopperClear.py:315 msgid "Parameters" msgstr "Parámetros" -#: flatcamGUI/ObjectUI.py:1996 flatcamGUI/PreferencesUI.py:3893 +#: flatcamGUI/ObjectUI.py:2048 flatcamGUI/PreferencesUI.py:3894 msgid "FlatCAM CNC parameters" msgstr "Parámetros de FlatCAM CNC" -#: flatcamGUI/ObjectUI.py:1997 flatcamGUI/PreferencesUI.py:3894 +#: flatcamGUI/ObjectUI.py:2049 flatcamGUI/PreferencesUI.py:3895 msgid "tool number" msgstr "número de herramienta" -#: flatcamGUI/ObjectUI.py:1998 flatcamGUI/PreferencesUI.py:3895 +#: flatcamGUI/ObjectUI.py:2050 flatcamGUI/PreferencesUI.py:3896 msgid "tool diameter" msgstr "diámetro de herramienta" -#: flatcamGUI/ObjectUI.py:1999 flatcamGUI/PreferencesUI.py:3896 +#: flatcamGUI/ObjectUI.py:2051 flatcamGUI/PreferencesUI.py:3897 msgid "for Excellon, total number of drills" msgstr "para Excellon, núm. total de taladros" -#: flatcamGUI/ObjectUI.py:2001 flatcamGUI/PreferencesUI.py:3898 +#: flatcamGUI/ObjectUI.py:2053 flatcamGUI/PreferencesUI.py:3899 msgid "X coord for Toolchange" msgstr "Coord. X para Cambio de Herramienta" -#: flatcamGUI/ObjectUI.py:2002 flatcamGUI/PreferencesUI.py:3899 +#: flatcamGUI/ObjectUI.py:2054 flatcamGUI/PreferencesUI.py:3900 msgid "Y coord for Toolchange" msgstr "Coord. Y para Cambio de Herramienta" -#: flatcamGUI/ObjectUI.py:2003 flatcamGUI/PreferencesUI.py:3901 +#: flatcamGUI/ObjectUI.py:2055 flatcamGUI/PreferencesUI.py:3902 msgid "Z coord for Toolchange" msgstr "Coord Z para cambio de herramientas" -#: flatcamGUI/ObjectUI.py:2004 +#: flatcamGUI/ObjectUI.py:2056 msgid "depth where to cut" msgstr "profundidad donde cortar" -#: flatcamGUI/ObjectUI.py:2005 +#: flatcamGUI/ObjectUI.py:2057 msgid "height where to travel" msgstr "altura donde viajar" -#: flatcamGUI/ObjectUI.py:2006 flatcamGUI/PreferencesUI.py:3904 +#: flatcamGUI/ObjectUI.py:2058 flatcamGUI/PreferencesUI.py:3905 msgid "the step value for multidepth cut" msgstr "el valor del paso para corte de profundidad múltiple" -#: flatcamGUI/ObjectUI.py:2008 flatcamGUI/PreferencesUI.py:3906 +#: flatcamGUI/ObjectUI.py:2060 flatcamGUI/PreferencesUI.py:3907 msgid "the value for the spindle speed" msgstr "el valor de la velocidad del husillo" -#: flatcamGUI/ObjectUI.py:2010 +#: flatcamGUI/ObjectUI.py:2062 msgid "time to dwell to allow the spindle to reach it's set RPM" msgstr "" "tiempo de espera para permitir que el husillo alcance su RPM establecido" -#: flatcamGUI/ObjectUI.py:2026 +#: flatcamGUI/ObjectUI.py:2078 msgid "View CNC Code" msgstr "Ver código CNC" -#: flatcamGUI/ObjectUI.py:2028 +#: flatcamGUI/ObjectUI.py:2080 msgid "" "Opens TAB to view/modify/print G-Code\n" "file." @@ -8553,11 +8553,11 @@ msgstr "" "Abre la pestaña para ver / modificar / imprimir el código G\n" "expediente." -#: flatcamGUI/ObjectUI.py:2033 +#: flatcamGUI/ObjectUI.py:2085 msgid "Save CNC Code" msgstr "Guardar código CNC" -#: flatcamGUI/ObjectUI.py:2035 +#: flatcamGUI/ObjectUI.py:2087 msgid "" "Opens dialog to save G-Code\n" "file." @@ -8565,79 +8565,79 @@ msgstr "" "Abre el diálogo para guardar el código G\n" "expediente." -#: flatcamGUI/ObjectUI.py:2055 +#: flatcamGUI/ObjectUI.py:2118 msgid "Script Object" msgstr "Objeto de script" -#: flatcamGUI/ObjectUI.py:2077 flatcamGUI/ObjectUI.py:2139 +#: flatcamGUI/ObjectUI.py:2140 flatcamGUI/ObjectUI.py:2213 msgid "Auto Completer" msgstr "Autocompletador" -#: flatcamGUI/ObjectUI.py:2079 +#: flatcamGUI/ObjectUI.py:2142 msgid "This selects if the auto completer is enabled in the Script Editor." msgstr "" "Esto selecciona si el autocompletador está habilitado en el Editor de " "secuencias de comandos." -#: flatcamGUI/ObjectUI.py:2110 +#: flatcamGUI/ObjectUI.py:2184 msgid "Document Object" msgstr "Objeto de Documento" -#: flatcamGUI/ObjectUI.py:2141 +#: flatcamGUI/ObjectUI.py:2215 msgid "This selects if the auto completer is enabled in the Document Editor." msgstr "" "Esto selecciona si el autocompletador está habilitado en el Editor de " "Documentos." -#: flatcamGUI/ObjectUI.py:2159 +#: flatcamGUI/ObjectUI.py:2233 msgid "Font Type" msgstr "Tipo de Fuente" -#: flatcamGUI/ObjectUI.py:2176 +#: flatcamGUI/ObjectUI.py:2250 msgid "Font Size" msgstr "Tamaño de Fuente" -#: flatcamGUI/ObjectUI.py:2212 +#: flatcamGUI/ObjectUI.py:2286 msgid "Alignment" msgstr "Alineación" -#: flatcamGUI/ObjectUI.py:2217 +#: flatcamGUI/ObjectUI.py:2291 msgid "Align Left" msgstr "Alinear a la izquierda" -#: flatcamGUI/ObjectUI.py:2222 +#: flatcamGUI/ObjectUI.py:2296 msgid "Center" msgstr "Centrar" -#: flatcamGUI/ObjectUI.py:2227 +#: flatcamGUI/ObjectUI.py:2301 msgid "Align Right" msgstr "Alinear a la derecha" -#: flatcamGUI/ObjectUI.py:2232 +#: flatcamGUI/ObjectUI.py:2306 msgid "Justify" msgstr "Alinear Justificar" -#: flatcamGUI/ObjectUI.py:2239 +#: flatcamGUI/ObjectUI.py:2313 msgid "Font Color" msgstr "Color de Fuente" -#: flatcamGUI/ObjectUI.py:2241 +#: flatcamGUI/ObjectUI.py:2315 msgid "Set the font color for the selected text" msgstr "Establecer el color de fuente para el texto seleccionado" -#: flatcamGUI/ObjectUI.py:2255 +#: flatcamGUI/ObjectUI.py:2329 msgid "Selection Color" msgstr "Color de seleccion" -#: flatcamGUI/ObjectUI.py:2257 +#: flatcamGUI/ObjectUI.py:2331 msgid "Set the selection color when doing text selection." msgstr "Establezca el color de selección al hacer la selección de texto." -#: flatcamGUI/ObjectUI.py:2271 +#: flatcamGUI/ObjectUI.py:2345 msgid "Tab Size" msgstr "Tamaño de Pestaña" -#: flatcamGUI/ObjectUI.py:2273 +#: flatcamGUI/ObjectUI.py:2347 msgid "Set the tab size. In pixels. Default value is 80 pixels." msgstr "" "Establece el tamaño de la pestaña. En píxeles El valor predeterminado es 80 " @@ -8703,7 +8703,7 @@ msgstr "" msgid "Wk. Orientation" msgstr "Orientación del ET" -#: flatcamGUI/PreferencesUI.py:430 flatcamGUI/PreferencesUI.py:4853 +#: flatcamGUI/PreferencesUI.py:430 flatcamGUI/PreferencesUI.py:4854 #: flatcamTools/ToolFilm.py:420 msgid "" "Can be:\n" @@ -8714,12 +8714,12 @@ msgstr "" "- retrato\n" "- paisaje" -#: flatcamGUI/PreferencesUI.py:434 flatcamGUI/PreferencesUI.py:4857 +#: flatcamGUI/PreferencesUI.py:434 flatcamGUI/PreferencesUI.py:4858 #: flatcamTools/ToolFilm.py:424 msgid "Portrait" msgstr "Retrato" -#: flatcamGUI/PreferencesUI.py:435 flatcamGUI/PreferencesUI.py:4858 +#: flatcamGUI/PreferencesUI.py:435 flatcamGUI/PreferencesUI.py:4859 #: flatcamTools/ToolFilm.py:425 msgid "Landscape" msgstr "Paisaje" @@ -8924,7 +8924,7 @@ msgstr "" "Habilitar el soporte de alta DPI para FlatCAM.\n" "Se aplicará en el próximo inicio de la aplicación." -#: flatcamGUI/PreferencesUI.py:782 flatcamGUI/PreferencesUI.py:1032 +#: flatcamGUI/PreferencesUI.py:782 flatcamGUI/PreferencesUI.py:1033 msgid "Clear GUI Settings" msgstr "Borrar la configuración de la GUI" @@ -9010,20 +9010,20 @@ msgid "Enable display of the splash screen at application startup." msgstr "" "Habilite la visualización de la pantalla de inicio al iniciar la aplicación." -#: flatcamGUI/PreferencesUI.py:899 +#: flatcamGUI/PreferencesUI.py:900 msgid "Sys Tray Icon" msgstr "Icono de la Sys Tray" -#: flatcamGUI/PreferencesUI.py:901 +#: flatcamGUI/PreferencesUI.py:902 msgid "Enable display of FlatCAM icon in Sys Tray." msgstr "" "Habilite la visualización del icono de FlatCAM en la bandeja del sistema." -#: flatcamGUI/PreferencesUI.py:909 +#: flatcamGUI/PreferencesUI.py:910 msgid "Shell at StartUp" msgstr "Shell en el inicio" -#: flatcamGUI/PreferencesUI.py:911 flatcamGUI/PreferencesUI.py:916 +#: flatcamGUI/PreferencesUI.py:912 flatcamGUI/PreferencesUI.py:917 msgid "" "Check this box if you want the shell to\n" "start automatically at startup." @@ -9031,11 +9031,11 @@ msgstr "" "Marque esta casilla si desea que el shell\n" "iniciar automáticamente en el inicio." -#: flatcamGUI/PreferencesUI.py:924 +#: flatcamGUI/PreferencesUI.py:925 msgid "Project at StartUp" msgstr "Proyecto en el inicio" -#: flatcamGUI/PreferencesUI.py:926 flatcamGUI/PreferencesUI.py:931 +#: flatcamGUI/PreferencesUI.py:927 flatcamGUI/PreferencesUI.py:932 msgid "" "Check this box if you want the project/selected/tool tab area to\n" "to be shown automatically at startup." @@ -9044,11 +9044,11 @@ msgstr "" "seleccionado / herramienta\n" "para ser mostrado automáticamente en el inicio." -#: flatcamGUI/PreferencesUI.py:939 +#: flatcamGUI/PreferencesUI.py:940 msgid "Project AutoHide" msgstr "Proyecto auto ocultar" -#: flatcamGUI/PreferencesUI.py:941 flatcamGUI/PreferencesUI.py:947 +#: flatcamGUI/PreferencesUI.py:942 flatcamGUI/PreferencesUI.py:948 msgid "" "Check this box if you want the project/selected/tool tab area to\n" "hide automatically when there are no objects loaded and\n" @@ -9059,11 +9059,11 @@ msgstr "" "Se oculta automáticamente cuando no hay objetos cargados y\n" "para mostrar cada vez que se crea un nuevo objeto." -#: flatcamGUI/PreferencesUI.py:958 +#: flatcamGUI/PreferencesUI.py:959 msgid "Enable ToolTips" msgstr "Hab. info sobre Herram" -#: flatcamGUI/PreferencesUI.py:960 flatcamGUI/PreferencesUI.py:965 +#: flatcamGUI/PreferencesUI.py:961 flatcamGUI/PreferencesUI.py:966 msgid "" "Check this box if you want to have toolTips displayed\n" "when hovering with mouse over items throughout the App." @@ -9071,11 +9071,11 @@ msgstr "" "Marque esta casilla si desea que se muestre información sobre herramientas\n" "al pasar el mouse sobre los elementos de la aplicación." -#: flatcamGUI/PreferencesUI.py:973 +#: flatcamGUI/PreferencesUI.py:974 msgid "Mouse Cursor" msgstr "Cursor del Mouse" -#: flatcamGUI/PreferencesUI.py:975 +#: flatcamGUI/PreferencesUI.py:976 msgid "" "Choose a mouse cursor shape.\n" "- Small -> with a customizable size.\n" @@ -9085,27 +9085,27 @@ msgstr "" "- Pequeño -> con un tamaño personalizable.\n" "- Grande -> Líneas infinitas" -#: flatcamGUI/PreferencesUI.py:981 +#: flatcamGUI/PreferencesUI.py:982 msgid "Small" msgstr "Pequeño" -#: flatcamGUI/PreferencesUI.py:982 +#: flatcamGUI/PreferencesUI.py:983 msgid "Big" msgstr "Grande" -#: flatcamGUI/PreferencesUI.py:988 +#: flatcamGUI/PreferencesUI.py:989 msgid "Mouse Cursor Size" msgstr "Tamaño del Cursor del Mouse" -#: flatcamGUI/PreferencesUI.py:990 +#: flatcamGUI/PreferencesUI.py:991 msgid "Set the size of the mouse cursor, in pixels." msgstr "Establezca el tamaño del cursor del mouse, en píxeles." -#: flatcamGUI/PreferencesUI.py:1001 +#: flatcamGUI/PreferencesUI.py:1002 msgid "Delete object confirmation" msgstr "Eliminar confirmación de objeto" -#: flatcamGUI/PreferencesUI.py:1003 +#: flatcamGUI/PreferencesUI.py:1004 msgid "" "When checked the application will ask for user confirmation\n" "whenever the Delete object(s) event is triggered, either by\n" @@ -9115,22 +9115,22 @@ msgstr "" "cada vez que se desencadena el evento Eliminar objeto (s), ya sea por\n" "acceso directo al menú o acceso directo a teclas." -#: flatcamGUI/PreferencesUI.py:1029 +#: flatcamGUI/PreferencesUI.py:1030 msgid "Are you sure you want to delete the GUI Settings? \n" msgstr "¿Está seguro de que desea eliminar la configuración de la GUI?\n" -#: flatcamGUI/PreferencesUI.py:1053 +#: flatcamGUI/PreferencesUI.py:1054 msgid "App Preferences" msgstr "Preferencias de la aplicación" -#: flatcamGUI/PreferencesUI.py:1063 flatcamGUI/PreferencesUI.py:1388 -#: flatcamGUI/PreferencesUI.py:1763 flatcamGUI/PreferencesUI.py:2686 +#: flatcamGUI/PreferencesUI.py:1064 flatcamGUI/PreferencesUI.py:1389 +#: flatcamGUI/PreferencesUI.py:1764 flatcamGUI/PreferencesUI.py:2687 #: flatcamTools/ToolDistance.py:49 flatcamTools/ToolDistanceMin.py:49 #: flatcamTools/ToolPcbWizard.py:127 flatcamTools/ToolProperties.py:152 msgid "Units" msgstr "Unidades" -#: flatcamGUI/PreferencesUI.py:1064 +#: flatcamGUI/PreferencesUI.py:1065 msgid "" "The default value for FlatCAM units.\n" "Whatever is selected here is set every time\n" @@ -9140,22 +9140,22 @@ msgstr "" "Lo que se selecciona aquí se establece cada vez\n" "Se inicia FLatCAM." -#: flatcamGUI/PreferencesUI.py:1067 flatcamGUI/PreferencesUI.py:1394 -#: flatcamGUI/PreferencesUI.py:1769 flatcamGUI/PreferencesUI.py:2223 -#: flatcamGUI/PreferencesUI.py:2692 flatcamTools/ToolCalculators.py:62 +#: flatcamGUI/PreferencesUI.py:1068 flatcamGUI/PreferencesUI.py:1395 +#: flatcamGUI/PreferencesUI.py:1770 flatcamGUI/PreferencesUI.py:2224 +#: flatcamGUI/PreferencesUI.py:2693 flatcamTools/ToolCalculators.py:62 #: flatcamTools/ToolPcbWizard.py:126 msgid "MM" msgstr "MM" -#: flatcamGUI/PreferencesUI.py:1068 +#: flatcamGUI/PreferencesUI.py:1069 msgid "IN" msgstr "IN" -#: flatcamGUI/PreferencesUI.py:1074 +#: flatcamGUI/PreferencesUI.py:1075 msgid "Precision MM" msgstr "Precisión MM" -#: flatcamGUI/PreferencesUI.py:1076 +#: flatcamGUI/PreferencesUI.py:1077 msgid "" "The number of decimals used throughout the application\n" "when the set units are in METRIC system.\n" @@ -9165,11 +9165,11 @@ msgstr "" "cuando las unidades configuradas están en el sistema METRIC.\n" "Cualquier cambio aquí requiere un reinicio de la aplicación." -#: flatcamGUI/PreferencesUI.py:1088 +#: flatcamGUI/PreferencesUI.py:1089 msgid "Precision INCH" msgstr "Precisión PULGADA" -#: flatcamGUI/PreferencesUI.py:1090 +#: flatcamGUI/PreferencesUI.py:1091 msgid "" "The number of decimals used throughout the application\n" "when the set units are in INCH system.\n" @@ -9179,11 +9179,11 @@ msgstr "" "cuando las unidades configuradas están en el sistema PULGADA.\n" "Cualquier cambio aquí requiere un reinicio de la aplicación." -#: flatcamGUI/PreferencesUI.py:1102 +#: flatcamGUI/PreferencesUI.py:1103 msgid "Graphic Engine" msgstr "Motor gráfico" -#: flatcamGUI/PreferencesUI.py:1103 +#: flatcamGUI/PreferencesUI.py:1104 msgid "" "Choose what graphic engine to use in FlatCAM.\n" "Legacy(2D) -> reduced functionality, slow performance but enhanced " @@ -9203,19 +9203,19 @@ msgstr "" "tanto\n" "use el modo Legacy (2D)." -#: flatcamGUI/PreferencesUI.py:1109 +#: flatcamGUI/PreferencesUI.py:1110 msgid "Legacy(2D)" msgstr "Legado (2D)" -#: flatcamGUI/PreferencesUI.py:1110 +#: flatcamGUI/PreferencesUI.py:1111 msgid "OpenGL(3D)" msgstr "OpenGL(3D)" -#: flatcamGUI/PreferencesUI.py:1117 +#: flatcamGUI/PreferencesUI.py:1118 msgid "APP. LEVEL" msgstr "Nivel de aplicación" -#: flatcamGUI/PreferencesUI.py:1118 +#: flatcamGUI/PreferencesUI.py:1119 msgid "" "Choose the default level of usage for FlatCAM.\n" "BASIC level -> reduced functionality, best for beginner's.\n" @@ -9231,11 +9231,11 @@ msgstr "" "La elección aquí influirá en los parámetros en\n" "La pestaña seleccionada para todo tipo de objetos FlatCAM." -#: flatcamGUI/PreferencesUI.py:1130 +#: flatcamGUI/PreferencesUI.py:1131 msgid "Portable app" msgstr "Aplicación portátil" -#: flatcamGUI/PreferencesUI.py:1131 +#: flatcamGUI/PreferencesUI.py:1132 msgid "" "Choose if the application should run as portable.\n" "\n" @@ -9249,19 +9249,19 @@ msgstr "" "lo que significa que los archivos de preferencias se guardarán\n" "en la carpeta de la aplicación, en la subcarpeta lib \\ config." -#: flatcamGUI/PreferencesUI.py:1141 +#: flatcamGUI/PreferencesUI.py:1142 msgid "Languages" msgstr "Idiomas" -#: flatcamGUI/PreferencesUI.py:1142 +#: flatcamGUI/PreferencesUI.py:1143 msgid "Set the language used throughout FlatCAM." msgstr "Establezca el idioma utilizado en FlatCAM." -#: flatcamGUI/PreferencesUI.py:1148 +#: flatcamGUI/PreferencesUI.py:1149 msgid "Apply Language" msgstr "Aplicar idioma" -#: flatcamGUI/PreferencesUI.py:1149 +#: flatcamGUI/PreferencesUI.py:1150 msgid "" "Set the language used throughout FlatCAM.\n" "The app will restart after click.Windows: When FlatCAM is installed in " @@ -9279,11 +9279,11 @@ msgstr "" "características de seguridad. En este caso el idioma será\n" "Aplicado en el próximo inicio de la aplicación." -#: flatcamGUI/PreferencesUI.py:1161 +#: flatcamGUI/PreferencesUI.py:1162 msgid "Version Check" msgstr "Compro. de la versión" -#: flatcamGUI/PreferencesUI.py:1163 flatcamGUI/PreferencesUI.py:1168 +#: flatcamGUI/PreferencesUI.py:1164 flatcamGUI/PreferencesUI.py:1169 msgid "" "Check this box if you want to check\n" "for a new version automatically at startup." @@ -9291,11 +9291,11 @@ msgstr "" "Marque esta casilla si desea marcar\n" "para una nueva versión automáticamente en el inicio." -#: flatcamGUI/PreferencesUI.py:1176 +#: flatcamGUI/PreferencesUI.py:1177 msgid "Send Stats" msgstr "Enviar estadísticas" -#: flatcamGUI/PreferencesUI.py:1178 flatcamGUI/PreferencesUI.py:1183 +#: flatcamGUI/PreferencesUI.py:1179 flatcamGUI/PreferencesUI.py:1184 msgid "" "Check this box if you agree to send anonymous\n" "stats automatically at startup, to help improve FlatCAM." @@ -9303,11 +9303,11 @@ msgstr "" "Marque esta casilla si acepta enviar anónimo\n" "Estadísticas automáticamente en el inicio, para ayudar a mejorar FlatCAM." -#: flatcamGUI/PreferencesUI.py:1193 +#: flatcamGUI/PreferencesUI.py:1194 msgid "Pan Button" msgstr "Botón de pan" -#: flatcamGUI/PreferencesUI.py:1194 +#: flatcamGUI/PreferencesUI.py:1195 msgid "" "Select the mouse button to use for panning:\n" "- MMB --> Middle Mouse Button\n" @@ -9317,35 +9317,35 @@ msgstr "" "- MMB -> Botón Central Del Ratón\n" "- RMB -> Botón derecho del ratón" -#: flatcamGUI/PreferencesUI.py:1197 +#: flatcamGUI/PreferencesUI.py:1198 msgid "MMB" msgstr "MMB" -#: flatcamGUI/PreferencesUI.py:1198 +#: flatcamGUI/PreferencesUI.py:1199 msgid "RMB" msgstr "RMB" -#: flatcamGUI/PreferencesUI.py:1204 +#: flatcamGUI/PreferencesUI.py:1205 msgid "Multiple Sel" msgstr "Sel múltiple" -#: flatcamGUI/PreferencesUI.py:1205 +#: flatcamGUI/PreferencesUI.py:1206 msgid "Select the key used for multiple selection." msgstr "Seleccione la clave utilizada para la selección múltiple." -#: flatcamGUI/PreferencesUI.py:1206 +#: flatcamGUI/PreferencesUI.py:1207 msgid "CTRL" msgstr "CTRL" -#: flatcamGUI/PreferencesUI.py:1207 +#: flatcamGUI/PreferencesUI.py:1208 msgid "SHIFT" msgstr "SHIFT" -#: flatcamGUI/PreferencesUI.py:1213 +#: flatcamGUI/PreferencesUI.py:1214 msgid "Workers number" msgstr "Número de trabajadores" -#: flatcamGUI/PreferencesUI.py:1215 flatcamGUI/PreferencesUI.py:1224 +#: flatcamGUI/PreferencesUI.py:1216 flatcamGUI/PreferencesUI.py:1225 msgid "" "The number of Qthreads made available to the App.\n" "A bigger number may finish the jobs more quickly but\n" @@ -9362,11 +9362,11 @@ msgstr "" "El valor predeterminado es 2.\n" "Después del cambio, se aplicará en el próximo inicio de la aplicación." -#: flatcamGUI/PreferencesUI.py:1237 +#: flatcamGUI/PreferencesUI.py:1238 msgid "Geo Tolerance" msgstr "Geo Tolerancia" -#: flatcamGUI/PreferencesUI.py:1239 flatcamGUI/PreferencesUI.py:1248 +#: flatcamGUI/PreferencesUI.py:1240 flatcamGUI/PreferencesUI.py:1249 msgid "" "This value can counter the effect of the Circle Steps\n" "parameter. Default value is 0.01.\n" @@ -9382,11 +9382,11 @@ msgstr "" "actuación. Un valor más alto proporcionará más\n" "Rendimiento a expensas del nivel de detalle." -#: flatcamGUI/PreferencesUI.py:1263 +#: flatcamGUI/PreferencesUI.py:1264 msgid "\"Open\" behavior" msgstr "Comportamiento \"abierto\"" -#: flatcamGUI/PreferencesUI.py:1265 +#: flatcamGUI/PreferencesUI.py:1266 msgid "" "When checked the path for the last saved file is used when saving files,\n" "and the path for the last opened file is used when opening files.\n" @@ -9401,11 +9401,11 @@ msgstr "" "Cuando no está marcada, la ruta para abrir archivos es la última utilizada:\n" "ruta para guardar archivos o la ruta para abrir archivos." -#: flatcamGUI/PreferencesUI.py:1274 +#: flatcamGUI/PreferencesUI.py:1275 msgid "Save Compressed Project" msgstr "Guardar proyecto comprimido" -#: flatcamGUI/PreferencesUI.py:1276 +#: flatcamGUI/PreferencesUI.py:1277 msgid "" "Whether to save a compressed or uncompressed project.\n" "When checked it will save a compressed FlatCAM project." @@ -9413,11 +9413,11 @@ msgstr "" "Ya sea para guardar un proyecto comprimido o sin comprimir.\n" "Cuando esté marcado, guardará un proyecto comprimido de FlatCAM." -#: flatcamGUI/PreferencesUI.py:1285 +#: flatcamGUI/PreferencesUI.py:1286 msgid "Compression" msgstr "Compresión" -#: flatcamGUI/PreferencesUI.py:1287 +#: flatcamGUI/PreferencesUI.py:1288 msgid "" "The level of compression used when saving\n" "a FlatCAM project. Higher value means better compression\n" @@ -9427,11 +9427,11 @@ msgstr "" "Un proyecto FlatCAM. Un valor más alto significa una mejor compresión\n" "pero requieren más uso de RAM y más tiempo de procesamiento." -#: flatcamGUI/PreferencesUI.py:1299 +#: flatcamGUI/PreferencesUI.py:1300 msgid "Bookmarks limit" msgstr "Límite de Marcadores" -#: flatcamGUI/PreferencesUI.py:1301 +#: flatcamGUI/PreferencesUI.py:1302 msgid "" "The maximum number of bookmarks that may be installed in the menu.\n" "The number of bookmarks in the bookmark manager may be greater\n" @@ -9441,11 +9441,11 @@ msgstr "" "El número de marcadores en el administrador de marcadores puede ser mayor\n" "pero el menú solo tendrá una cantidad considerable." -#: flatcamGUI/PreferencesUI.py:1310 +#: flatcamGUI/PreferencesUI.py:1311 msgid "Allow Machinist Unsafe Settings" msgstr "Permitir configuraciones inseguras de Maquinista" -#: flatcamGUI/PreferencesUI.py:1312 +#: flatcamGUI/PreferencesUI.py:1313 msgid "" "If checked, some of the application settings will be allowed\n" "to have values that are usually unsafe to use.\n" @@ -9461,20 +9461,20 @@ msgstr "" "Se aplicará en el próximo inicio de la aplicación.\n" "<>: ¡No cambie esto a menos que sepa lo que está haciendo!" -#: flatcamGUI/PreferencesUI.py:1333 +#: flatcamGUI/PreferencesUI.py:1334 msgid "Gerber General" msgstr "Gerber General" -#: flatcamGUI/PreferencesUI.py:1351 +#: flatcamGUI/PreferencesUI.py:1352 msgid "M-Color" msgstr "M-Color" -#: flatcamGUI/PreferencesUI.py:1365 flatcamGUI/PreferencesUI.py:3128 -#: flatcamGUI/PreferencesUI.py:3664 flatcamGUI/PreferencesUI.py:6079 +#: flatcamGUI/PreferencesUI.py:1366 flatcamGUI/PreferencesUI.py:3129 +#: flatcamGUI/PreferencesUI.py:3665 flatcamGUI/PreferencesUI.py:6080 msgid "Circle Steps" msgstr "Pasos del círculo" -#: flatcamGUI/PreferencesUI.py:1367 +#: flatcamGUI/PreferencesUI.py:1368 msgid "" "The number of circle steps for Gerber \n" "circular aperture linear approximation." @@ -9482,11 +9482,11 @@ msgstr "" "El número de pasos de círculo para Gerber\n" "Apertura circular de aproximación lineal." -#: flatcamGUI/PreferencesUI.py:1379 +#: flatcamGUI/PreferencesUI.py:1380 msgid "Default Values" msgstr "Valores predeterminados" -#: flatcamGUI/PreferencesUI.py:1381 +#: flatcamGUI/PreferencesUI.py:1382 msgid "" "Those values will be used as fallback values\n" "in case that they are not found in the Gerber file." @@ -9494,25 +9494,25 @@ msgstr "" "Esos valores se usarán como valores de reserva\n" "en caso de que no se encuentren en el archivo Gerber." -#: flatcamGUI/PreferencesUI.py:1390 flatcamGUI/PreferencesUI.py:1396 -#: flatcamGUI/PreferencesUI.py:1765 flatcamGUI/PreferencesUI.py:1771 +#: flatcamGUI/PreferencesUI.py:1391 flatcamGUI/PreferencesUI.py:1397 +#: flatcamGUI/PreferencesUI.py:1766 flatcamGUI/PreferencesUI.py:1772 msgid "The units used in the Gerber file." msgstr "Las unidades utilizadas en el archivo Gerber." -#: flatcamGUI/PreferencesUI.py:1393 flatcamGUI/PreferencesUI.py:1768 -#: flatcamGUI/PreferencesUI.py:2124 flatcamGUI/PreferencesUI.py:2222 -#: flatcamGUI/PreferencesUI.py:2691 flatcamTools/ToolCalculators.py:61 +#: flatcamGUI/PreferencesUI.py:1394 flatcamGUI/PreferencesUI.py:1769 +#: flatcamGUI/PreferencesUI.py:2125 flatcamGUI/PreferencesUI.py:2223 +#: flatcamGUI/PreferencesUI.py:2692 flatcamTools/ToolCalculators.py:61 #: flatcamTools/ToolPcbWizard.py:125 msgid "INCH" msgstr "PULGADA" -#: flatcamGUI/PreferencesUI.py:1403 flatcamGUI/PreferencesUI.py:1817 -#: flatcamGUI/PreferencesUI.py:2759 +#: flatcamGUI/PreferencesUI.py:1404 flatcamGUI/PreferencesUI.py:1818 +#: flatcamGUI/PreferencesUI.py:2760 msgid "Zeros" msgstr "Ceros" -#: flatcamGUI/PreferencesUI.py:1406 flatcamGUI/PreferencesUI.py:1416 -#: flatcamGUI/PreferencesUI.py:1820 flatcamGUI/PreferencesUI.py:1830 +#: flatcamGUI/PreferencesUI.py:1407 flatcamGUI/PreferencesUI.py:1417 +#: flatcamGUI/PreferencesUI.py:1821 flatcamGUI/PreferencesUI.py:1831 msgid "" "This sets the type of Gerber zeros.\n" "If LZ then Leading Zeros are removed and\n" @@ -9526,41 +9526,41 @@ msgstr "" "Si se comprueba TZ, se eliminan los ceros finales\n" "y Leading Zeros se mantienen." -#: flatcamGUI/PreferencesUI.py:1413 flatcamGUI/PreferencesUI.py:1827 -#: flatcamGUI/PreferencesUI.py:2198 flatcamGUI/PreferencesUI.py:2769 +#: flatcamGUI/PreferencesUI.py:1414 flatcamGUI/PreferencesUI.py:1828 +#: flatcamGUI/PreferencesUI.py:2199 flatcamGUI/PreferencesUI.py:2770 #: flatcamTools/ToolPcbWizard.py:111 msgid "LZ" msgstr "LZ" -#: flatcamGUI/PreferencesUI.py:1414 flatcamGUI/PreferencesUI.py:1828 -#: flatcamGUI/PreferencesUI.py:2199 flatcamGUI/PreferencesUI.py:2770 +#: flatcamGUI/PreferencesUI.py:1415 flatcamGUI/PreferencesUI.py:1829 +#: flatcamGUI/PreferencesUI.py:2200 flatcamGUI/PreferencesUI.py:2771 #: flatcamTools/ToolPcbWizard.py:112 msgid "TZ" msgstr "TZ" -#: flatcamGUI/PreferencesUI.py:1435 +#: flatcamGUI/PreferencesUI.py:1436 msgid "Gerber Options" msgstr "Opciones de gerber" -#: flatcamGUI/PreferencesUI.py:1509 flatcamGUI/PreferencesUI.py:3601 -#: flatcamGUI/PreferencesUI.py:4075 flatcamTools/ToolNonCopperClear.py:170 +#: flatcamGUI/PreferencesUI.py:1510 flatcamGUI/PreferencesUI.py:3602 +#: flatcamGUI/PreferencesUI.py:4076 flatcamTools/ToolNonCopperClear.py:170 msgid "Conv." msgstr "Conv." -#: flatcamGUI/PreferencesUI.py:1513 +#: flatcamGUI/PreferencesUI.py:1514 msgid "Combine Passes" msgstr "Combinar pases" -#: flatcamGUI/PreferencesUI.py:1591 +#: flatcamGUI/PreferencesUI.py:1592 msgid "Gerber Adv. Options" msgstr "Opciones avan. de Gerber" -#: flatcamGUI/PreferencesUI.py:1595 flatcamGUI/PreferencesUI.py:2544 -#: flatcamGUI/PreferencesUI.py:3399 +#: flatcamGUI/PreferencesUI.py:1596 flatcamGUI/PreferencesUI.py:2545 +#: flatcamGUI/PreferencesUI.py:3400 msgid "Advanced Options" msgstr "Opciones avanzadas" -#: flatcamGUI/PreferencesUI.py:1597 +#: flatcamGUI/PreferencesUI.py:1598 msgid "" "A list of Gerber advanced parameters.\n" "Those parameters are available only for\n" @@ -9570,11 +9570,11 @@ msgstr "" "Esos parámetros están disponibles sólo para\n" "Aplicación avanzada Nivel." -#: flatcamGUI/PreferencesUI.py:1616 +#: flatcamGUI/PreferencesUI.py:1617 msgid "Table Show/Hide" msgstr "Mostrar / ocultar tabla" -#: flatcamGUI/PreferencesUI.py:1618 +#: flatcamGUI/PreferencesUI.py:1619 msgid "" "Toggle the display of the Gerber Apertures Table.\n" "Also, on hide, it will delete all mark shapes\n" @@ -9584,17 +9584,15 @@ msgstr "" "Además, en hide, borrará todas las formas de marca.\n" "que se dibujan sobre lienzo." -#: flatcamGUI/PreferencesUI.py:1693 -#| msgid "Get Exteriors" +#: flatcamGUI/PreferencesUI.py:1694 msgid "Exterior" msgstr "Exterior" -#: flatcamGUI/PreferencesUI.py:1694 -#| msgid "Get Interiors" +#: flatcamGUI/PreferencesUI.py:1695 msgid "Interior" msgstr "Interior" -#: flatcamGUI/PreferencesUI.py:1702 +#: flatcamGUI/PreferencesUI.py:1703 msgid "" "Buffering type:\n" "- None --> best performance, fast file loading but no so good display\n" @@ -9608,19 +9606,19 @@ msgstr "" "predeterminado.\n" "<>: ¡No cambie esto a menos que sepa lo que está haciendo!" -#: flatcamGUI/PreferencesUI.py:1707 flatcamGUI/PreferencesUI.py:4821 -#: flatcamGUI/PreferencesUI.py:6377 flatcamTools/ToolFiducials.py:201 +#: flatcamGUI/PreferencesUI.py:1708 flatcamGUI/PreferencesUI.py:4822 +#: flatcamGUI/PreferencesUI.py:6378 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 msgid "None" msgstr "Ninguno" -#: flatcamGUI/PreferencesUI.py:1713 +#: flatcamGUI/PreferencesUI.py:1714 msgid "Simplify" msgstr "Simplificar" -#: flatcamGUI/PreferencesUI.py:1715 +#: flatcamGUI/PreferencesUI.py:1716 msgid "" "When checked all the Gerber polygons will be\n" "loaded with simplification having a set tolerance.\n" @@ -9630,23 +9628,23 @@ msgstr "" "cargado de simplificación con una tolerancia establecida.\n" "<>: ¡No cambie esto a menos que sepa lo que está haciendo!" -#: flatcamGUI/PreferencesUI.py:1722 +#: flatcamGUI/PreferencesUI.py:1723 msgid "Tolerance" msgstr "Tolerancia" -#: flatcamGUI/PreferencesUI.py:1723 +#: flatcamGUI/PreferencesUI.py:1724 msgid "Tolerance for polygon simplification." msgstr "Tolerancia para la simplificación de polígonos." -#: flatcamGUI/PreferencesUI.py:1748 +#: flatcamGUI/PreferencesUI.py:1749 msgid "Gerber Export" msgstr "Gerber Export" -#: flatcamGUI/PreferencesUI.py:1752 flatcamGUI/PreferencesUI.py:2675 +#: flatcamGUI/PreferencesUI.py:1753 flatcamGUI/PreferencesUI.py:2676 msgid "Export Options" msgstr "Opciones de export" -#: flatcamGUI/PreferencesUI.py:1754 +#: flatcamGUI/PreferencesUI.py:1755 msgid "" "The parameters set here are used in the file exported\n" "when using the File -> Export -> Export Gerber menu entry." @@ -9654,11 +9652,11 @@ msgstr "" "Los parámetros establecidos aquí se utilizan en el archivo exportado.\n" "cuando se usa la entrada de menú Archivo -> Exportar -> Exportar Gerber." -#: flatcamGUI/PreferencesUI.py:1777 flatcamGUI/PreferencesUI.py:2700 +#: flatcamGUI/PreferencesUI.py:1778 flatcamGUI/PreferencesUI.py:2701 msgid "Int/Decimals" msgstr "Entero/Decimales" -#: flatcamGUI/PreferencesUI.py:1779 +#: flatcamGUI/PreferencesUI.py:1780 msgid "" "The number of digits in the whole part of the number\n" "and in the fractional part of the number." @@ -9666,7 +9664,7 @@ msgstr "" "El número de dígitos en la parte entera del número.\n" "y en la parte fraccionaria del número." -#: flatcamGUI/PreferencesUI.py:1792 +#: flatcamGUI/PreferencesUI.py:1793 msgid "" "This numbers signify the number of digits in\n" "the whole part of Gerber coordinates." @@ -9674,7 +9672,7 @@ msgstr "" "Estos números significan el número de dígitos en\n" "Toda la parte de Gerber coordina." -#: flatcamGUI/PreferencesUI.py:1808 +#: flatcamGUI/PreferencesUI.py:1809 msgid "" "This numbers signify the number of digits in\n" "the decimal part of Gerber coordinates." @@ -9682,16 +9680,16 @@ msgstr "" "Estos números significan el número de dígitos en\n" "La parte decimal de las coordenadas de gerber." -#: flatcamGUI/PreferencesUI.py:1853 +#: flatcamGUI/PreferencesUI.py:1854 msgid "A list of Gerber Editor parameters." msgstr "Una lista de los parámetros del editor Gerber." -#: flatcamGUI/PreferencesUI.py:1861 flatcamGUI/PreferencesUI.py:2834 -#: flatcamGUI/PreferencesUI.py:3579 flatcamGUI/PreferencesUI.py:6040 +#: flatcamGUI/PreferencesUI.py:1862 flatcamGUI/PreferencesUI.py:2835 +#: flatcamGUI/PreferencesUI.py:3580 flatcamGUI/PreferencesUI.py:6041 msgid "Selection limit" msgstr "Límite de selección" -#: flatcamGUI/PreferencesUI.py:1863 +#: flatcamGUI/PreferencesUI.py:1864 msgid "" "Set the number of selected Gerber geometry\n" "items above which the utility geometry\n" @@ -9705,23 +9703,23 @@ msgstr "" "Aumenta el rendimiento al mover un\n" "Gran cantidad de elementos geométricos." -#: flatcamGUI/PreferencesUI.py:1876 +#: flatcamGUI/PreferencesUI.py:1877 msgid "New Aperture code" msgstr "Nuevo Código de Aper" -#: flatcamGUI/PreferencesUI.py:1889 +#: flatcamGUI/PreferencesUI.py:1890 msgid "New Aperture size" msgstr "Nuevo Tamaño de Aper" -#: flatcamGUI/PreferencesUI.py:1891 +#: flatcamGUI/PreferencesUI.py:1892 msgid "Size for the new aperture" msgstr "Tamaño para la Nueva Aper" -#: flatcamGUI/PreferencesUI.py:1902 +#: flatcamGUI/PreferencesUI.py:1903 msgid "New Aperture type" msgstr "Nuevo Tipo de Aper" -#: flatcamGUI/PreferencesUI.py:1904 +#: flatcamGUI/PreferencesUI.py:1905 msgid "" "Type for the new aperture.\n" "Can be 'C', 'R' or 'O'." @@ -9729,35 +9727,35 @@ msgstr "" "Escriba para la nueva apertura.\n" "Puede ser 'C', 'R' u 'O'." -#: flatcamGUI/PreferencesUI.py:1926 +#: flatcamGUI/PreferencesUI.py:1927 msgid "Aperture Dimensions" msgstr "Dim. de apertura" -#: flatcamGUI/PreferencesUI.py:1928 flatcamGUI/PreferencesUI.py:3146 -#: flatcamGUI/PreferencesUI.py:3984 +#: flatcamGUI/PreferencesUI.py:1929 flatcamGUI/PreferencesUI.py:3147 +#: flatcamGUI/PreferencesUI.py:3985 msgid "Diameters of the cutting tools, separated by ','" msgstr "Diámetros de las herramientas de corte, separados por ','" -#: flatcamGUI/PreferencesUI.py:1934 +#: flatcamGUI/PreferencesUI.py:1935 msgid "Linear Pad Array" msgstr "Matriz lineal de Almohadilla" -#: flatcamGUI/PreferencesUI.py:1938 flatcamGUI/PreferencesUI.py:2878 -#: flatcamGUI/PreferencesUI.py:3026 +#: flatcamGUI/PreferencesUI.py:1939 flatcamGUI/PreferencesUI.py:2879 +#: flatcamGUI/PreferencesUI.py:3027 msgid "Linear Direction" msgstr "Direccion lineal" -#: flatcamGUI/PreferencesUI.py:1978 +#: flatcamGUI/PreferencesUI.py:1979 msgid "Circular Pad Array" msgstr "Matriz de Almohadilla Circ" -#: flatcamGUI/PreferencesUI.py:1982 flatcamGUI/PreferencesUI.py:2924 -#: flatcamGUI/PreferencesUI.py:3074 +#: flatcamGUI/PreferencesUI.py:1983 flatcamGUI/PreferencesUI.py:2925 +#: flatcamGUI/PreferencesUI.py:3075 msgid "Circular Direction" msgstr "Dirección circular" -#: flatcamGUI/PreferencesUI.py:1984 flatcamGUI/PreferencesUI.py:2926 -#: flatcamGUI/PreferencesUI.py:3076 +#: flatcamGUI/PreferencesUI.py:1985 flatcamGUI/PreferencesUI.py:2927 +#: flatcamGUI/PreferencesUI.py:3077 msgid "" "Direction for circular array.\n" "Can be CW = clockwise or CCW = counter clockwise." @@ -9765,48 +9763,48 @@ msgstr "" "Dirección para matriz circular.\n" "Puede ser CW = en sentido horario o CCW = en sentido antihorario." -#: flatcamGUI/PreferencesUI.py:1995 flatcamGUI/PreferencesUI.py:2937 -#: flatcamGUI/PreferencesUI.py:3087 +#: flatcamGUI/PreferencesUI.py:1996 flatcamGUI/PreferencesUI.py:2938 +#: flatcamGUI/PreferencesUI.py:3088 msgid "Circular Angle" msgstr "Ángulo circular" -#: flatcamGUI/PreferencesUI.py:2014 +#: flatcamGUI/PreferencesUI.py:2015 msgid "Distance at which to buffer the Gerber element." msgstr "Distancia a la que buffer el elemento Gerber." -#: flatcamGUI/PreferencesUI.py:2023 +#: flatcamGUI/PreferencesUI.py:2024 msgid "Scale Tool" msgstr "Herramienta de escala" -#: flatcamGUI/PreferencesUI.py:2029 +#: flatcamGUI/PreferencesUI.py:2030 msgid "Factor to scale the Gerber element." msgstr "Factoriza para escalar el elemento Gerber." -#: flatcamGUI/PreferencesUI.py:2042 +#: flatcamGUI/PreferencesUI.py:2043 msgid "Threshold low" msgstr "Umbral bajo" -#: flatcamGUI/PreferencesUI.py:2044 +#: flatcamGUI/PreferencesUI.py:2045 msgid "Threshold value under which the apertures are not marked." msgstr "Valor de umbral por debajo del cual las aberturas no están marcadas." -#: flatcamGUI/PreferencesUI.py:2054 +#: flatcamGUI/PreferencesUI.py:2055 msgid "Threshold high" msgstr "Umbral alto" -#: flatcamGUI/PreferencesUI.py:2056 +#: flatcamGUI/PreferencesUI.py:2057 msgid "Threshold value over which the apertures are not marked." msgstr "Valor umbral sobre el cual las aberturas no están marcadas." -#: flatcamGUI/PreferencesUI.py:2074 +#: flatcamGUI/PreferencesUI.py:2075 msgid "Excellon General" msgstr "Excellon General" -#: flatcamGUI/PreferencesUI.py:2097 +#: flatcamGUI/PreferencesUI.py:2098 msgid "Excellon Format" msgstr "Formato Excellon" -#: flatcamGUI/PreferencesUI.py:2099 +#: flatcamGUI/PreferencesUI.py:2100 msgid "" "The NC drill files, usually named Excellon files\n" "are files that can be found in different formats.\n" @@ -9848,12 +9846,12 @@ msgstr "" "Sprint Layout 2: 4 PULGADAS LZ\n" "KiCAD 3: 5 PULGADAS TZ" -#: flatcamGUI/PreferencesUI.py:2127 +#: flatcamGUI/PreferencesUI.py:2128 msgid "Default values for INCH are 2:4" msgstr "Los valores predeterminados para INCH son 2:4" -#: flatcamGUI/PreferencesUI.py:2134 flatcamGUI/PreferencesUI.py:2165 -#: flatcamGUI/PreferencesUI.py:2714 +#: flatcamGUI/PreferencesUI.py:2135 flatcamGUI/PreferencesUI.py:2166 +#: flatcamGUI/PreferencesUI.py:2715 msgid "" "This numbers signify the number of digits in\n" "the whole part of Excellon coordinates." @@ -9861,8 +9859,8 @@ msgstr "" "Estos números significan el número de dígitos en\n" "Coordina toda la parte de Excellon." -#: flatcamGUI/PreferencesUI.py:2147 flatcamGUI/PreferencesUI.py:2178 -#: flatcamGUI/PreferencesUI.py:2727 +#: flatcamGUI/PreferencesUI.py:2148 flatcamGUI/PreferencesUI.py:2179 +#: flatcamGUI/PreferencesUI.py:2728 msgid "" "This numbers signify the number of digits in\n" "the decimal part of Excellon coordinates." @@ -9870,19 +9868,19 @@ msgstr "" "Estos números significan el número de dígitos en\n" "La parte decimal de las coordenadas de Excellon." -#: flatcamGUI/PreferencesUI.py:2155 +#: flatcamGUI/PreferencesUI.py:2156 msgid "METRIC" msgstr "MÉTRICO" -#: flatcamGUI/PreferencesUI.py:2158 +#: flatcamGUI/PreferencesUI.py:2159 msgid "Default values for METRIC are 3:3" msgstr "Los valores predeterminados para Métrica son 3: 3" -#: flatcamGUI/PreferencesUI.py:2187 +#: flatcamGUI/PreferencesUI.py:2188 msgid "Default Zeros" msgstr "DefectoCeros" -#: flatcamGUI/PreferencesUI.py:2190 flatcamGUI/PreferencesUI.py:2762 +#: flatcamGUI/PreferencesUI.py:2191 flatcamGUI/PreferencesUI.py:2763 msgid "" "This sets the type of Excellon zeros.\n" "If LZ then Leading Zeros are kept and\n" @@ -9896,7 +9894,7 @@ msgstr "" "Si se comprueba TZ, se mantienen los ceros finales.\n" "y Leading Zeros se eliminan." -#: flatcamGUI/PreferencesUI.py:2201 +#: flatcamGUI/PreferencesUI.py:2202 msgid "" "This sets the default type of Excellon zeros.\n" "If it is not detected in the parsed file the value here\n" @@ -9912,11 +9910,11 @@ msgstr "" "Si se comprueba TZ, se mantienen los ceros finales.\n" "y Leading Zeros se eliminan." -#: flatcamGUI/PreferencesUI.py:2211 +#: flatcamGUI/PreferencesUI.py:2212 msgid "Default Units" msgstr "Unidadespredeterminadas" -#: flatcamGUI/PreferencesUI.py:2214 +#: flatcamGUI/PreferencesUI.py:2215 msgid "" "This sets the default units of Excellon files.\n" "If it is not detected in the parsed file the value here\n" @@ -9928,7 +9926,7 @@ msgstr "" "serán utilizados. Algunos archivos de Excellon no tienen un encabezado\n" "por lo tanto este parámetro será utilizado." -#: flatcamGUI/PreferencesUI.py:2225 +#: flatcamGUI/PreferencesUI.py:2226 msgid "" "This sets the units of Excellon files.\n" "Some Excellon files don't have an header\n" @@ -9938,19 +9936,19 @@ msgstr "" "Algunos archivos de Excellon no tienen un encabezado\n" "por lo tanto este parámetro será utilizado." -#: flatcamGUI/PreferencesUI.py:2231 +#: flatcamGUI/PreferencesUI.py:2232 msgid "Update Export settings" msgstr "Actualizar configuración de exportación" -#: flatcamGUI/PreferencesUI.py:2239 +#: flatcamGUI/PreferencesUI.py:2240 msgid "Excellon Optimization" msgstr "Optimización Excellon" -#: flatcamGUI/PreferencesUI.py:2242 +#: flatcamGUI/PreferencesUI.py:2243 msgid "Algorithm:" msgstr "Algoritmo:" -#: flatcamGUI/PreferencesUI.py:2244 flatcamGUI/PreferencesUI.py:2261 +#: flatcamGUI/PreferencesUI.py:2245 flatcamGUI/PreferencesUI.py:2262 msgid "" "This sets the optimization type for the Excellon drill path.\n" "If <> is checked then Google OR-Tools algorithm with\n" @@ -9976,19 +9974,19 @@ msgstr "" "utiliza\n" "Algoritmo de vendedor ambulante para la optimización de rutas." -#: flatcamGUI/PreferencesUI.py:2256 +#: flatcamGUI/PreferencesUI.py:2257 msgid "MetaHeuristic" msgstr "MetaHeuristic" -#: flatcamGUI/PreferencesUI.py:2258 +#: flatcamGUI/PreferencesUI.py:2259 msgid "TSA" msgstr "TSA" -#: flatcamGUI/PreferencesUI.py:2273 +#: flatcamGUI/PreferencesUI.py:2274 msgid "Optimization Time" msgstr "Tiempo de optimización" -#: flatcamGUI/PreferencesUI.py:2276 +#: flatcamGUI/PreferencesUI.py:2277 msgid "" "When OR-Tools Metaheuristic (MH) is enabled there is a\n" "maximum threshold for how much time is spent doing the\n" @@ -10000,11 +9998,11 @@ msgstr "" "Optimización del camino. Esta duración máxima se establece aquí.\n" "En segundos." -#: flatcamGUI/PreferencesUI.py:2319 +#: flatcamGUI/PreferencesUI.py:2320 msgid "Excellon Options" msgstr "Excellon Opciones" -#: flatcamGUI/PreferencesUI.py:2325 +#: flatcamGUI/PreferencesUI.py:2326 msgid "" "Parameters used to create a CNC Job object\n" "for this drill object." @@ -10012,11 +10010,11 @@ msgstr "" "Parámetros utilizados para crear un objeto de trabajo CNC\n" "para este objeto taladro." -#: flatcamGUI/PreferencesUI.py:2444 flatcamGUI/PreferencesUI.py:3358 +#: flatcamGUI/PreferencesUI.py:2445 flatcamGUI/PreferencesUI.py:3359 msgid "Duration" msgstr "Duración" -#: flatcamGUI/PreferencesUI.py:2474 +#: flatcamGUI/PreferencesUI.py:2475 msgid "" "Choose what to use for GCode generation:\n" "'Drills', 'Slots' or 'Both'.\n" @@ -10028,19 +10026,19 @@ msgstr "" "Al elegir 'Ranuras' o 'Ambos', las ranuras serán\n" "convertido en taladros." -#: flatcamGUI/PreferencesUI.py:2492 +#: flatcamGUI/PreferencesUI.py:2493 msgid "Create Geometry for milling holes." msgstr "Crear geometría para fresar agujeros." -#: flatcamGUI/PreferencesUI.py:2524 +#: flatcamGUI/PreferencesUI.py:2525 msgid "Defaults" msgstr "Valores predeterminados" -#: flatcamGUI/PreferencesUI.py:2537 +#: flatcamGUI/PreferencesUI.py:2538 msgid "Excellon Adv. Options" msgstr "Excellon Adv. Opciones" -#: flatcamGUI/PreferencesUI.py:2546 +#: flatcamGUI/PreferencesUI.py:2547 msgid "" "A list of Excellon advanced parameters.\n" "Those parameters are available only for\n" @@ -10050,19 +10048,19 @@ msgstr "" "Esos parámetros están disponibles sólo para\n" "Aplicación avanzada Nivel." -#: flatcamGUI/PreferencesUI.py:2567 +#: flatcamGUI/PreferencesUI.py:2568 msgid "Toolchange X,Y" msgstr "Cambio de herra X, Y" -#: flatcamGUI/PreferencesUI.py:2569 flatcamGUI/PreferencesUI.py:3413 +#: flatcamGUI/PreferencesUI.py:2570 flatcamGUI/PreferencesUI.py:3414 msgid "Toolchange X,Y position." msgstr "Cambio de herra X, posición Y." -#: flatcamGUI/PreferencesUI.py:2626 flatcamGUI/PreferencesUI.py:3500 +#: flatcamGUI/PreferencesUI.py:2627 flatcamGUI/PreferencesUI.py:3501 msgid "Spindle direction" msgstr "Dirección del motor" -#: flatcamGUI/PreferencesUI.py:2628 flatcamGUI/PreferencesUI.py:3502 +#: flatcamGUI/PreferencesUI.py:2629 flatcamGUI/PreferencesUI.py:3503 msgid "" "This sets the direction that the spindle is rotating.\n" "It can be either:\n" @@ -10074,11 +10072,11 @@ msgstr "" "- CW = en el sentido de las agujas del reloj o\n" "- CCW = a la izquierda" -#: flatcamGUI/PreferencesUI.py:2639 flatcamGUI/PreferencesUI.py:3514 +#: flatcamGUI/PreferencesUI.py:2640 flatcamGUI/PreferencesUI.py:3515 msgid "Fast Plunge" msgstr "Salto rápido" -#: flatcamGUI/PreferencesUI.py:2641 flatcamGUI/PreferencesUI.py:3516 +#: flatcamGUI/PreferencesUI.py:2642 flatcamGUI/PreferencesUI.py:3517 msgid "" "By checking this, the vertical move from\n" "Z_Toolchange to Z_move is done with G0,\n" @@ -10090,11 +10088,11 @@ msgstr "" "es decir, la velocidad más rápida disponible.\n" "ADVERTENCIA: el movimiento se realiza en Toolchange X, Y coords." -#: flatcamGUI/PreferencesUI.py:2650 +#: flatcamGUI/PreferencesUI.py:2651 msgid "Fast Retract" msgstr "Retracción rápida" -#: flatcamGUI/PreferencesUI.py:2652 +#: flatcamGUI/PreferencesUI.py:2653 msgid "" "Exit hole strategy.\n" " - When uncheked, while exiting the drilled hole the drill bit\n" @@ -10112,11 +10110,11 @@ msgstr "" "Z_move\n" "(altura de recorrido) se realiza lo más rápido posible (G0) en un movimiento." -#: flatcamGUI/PreferencesUI.py:2671 +#: flatcamGUI/PreferencesUI.py:2672 msgid "Excellon Export" msgstr "Excellon Exportar" -#: flatcamGUI/PreferencesUI.py:2677 +#: flatcamGUI/PreferencesUI.py:2678 msgid "" "The parameters set here are used in the file exported\n" "when using the File -> Export -> Export Excellon menu entry." @@ -10125,11 +10123,11 @@ msgstr "" "cuando se utiliza la entrada de menú Archivo -> Exportar -> Exportar " "Excellon." -#: flatcamGUI/PreferencesUI.py:2688 flatcamGUI/PreferencesUI.py:2694 +#: flatcamGUI/PreferencesUI.py:2689 flatcamGUI/PreferencesUI.py:2695 msgid "The units used in the Excellon file." msgstr "Las unidades utilizadas en el archivo Excellon." -#: flatcamGUI/PreferencesUI.py:2702 +#: flatcamGUI/PreferencesUI.py:2703 msgid "" "The NC drill files, usually named Excellon files\n" "are files that can be found in different formats.\n" @@ -10141,11 +10139,11 @@ msgstr "" "Aquí configuramos el formato utilizado cuando el proporcionado\n" "Las coordenadas no están usando el punto." -#: flatcamGUI/PreferencesUI.py:2736 +#: flatcamGUI/PreferencesUI.py:2737 msgid "Format" msgstr "Formato" -#: flatcamGUI/PreferencesUI.py:2738 flatcamGUI/PreferencesUI.py:2748 +#: flatcamGUI/PreferencesUI.py:2739 flatcamGUI/PreferencesUI.py:2749 msgid "" "Select the kind of coordinates format used.\n" "Coordinates can be saved with decimal point or without.\n" @@ -10161,15 +10159,15 @@ msgstr "" "También deberá especificarse si LZ = ceros iniciales se mantienen\n" "o TZ = ceros finales se mantienen." -#: flatcamGUI/PreferencesUI.py:2745 +#: flatcamGUI/PreferencesUI.py:2746 msgid "Decimal" msgstr "Decimal" -#: flatcamGUI/PreferencesUI.py:2746 +#: flatcamGUI/PreferencesUI.py:2747 msgid "No-Decimal" msgstr "Sin-Decimal" -#: flatcamGUI/PreferencesUI.py:2772 +#: flatcamGUI/PreferencesUI.py:2773 msgid "" "This sets the default type of Excellon zeros.\n" "If LZ then Leading Zeros are kept and\n" @@ -10183,11 +10181,11 @@ msgstr "" "Si se comprueba TZ, se mantienen los ceros finales.\n" "y se eliminan los ceros iniciales." -#: flatcamGUI/PreferencesUI.py:2782 +#: flatcamGUI/PreferencesUI.py:2783 msgid "Slot type" msgstr "Tipo de ranura" -#: flatcamGUI/PreferencesUI.py:2785 flatcamGUI/PreferencesUI.py:2795 +#: flatcamGUI/PreferencesUI.py:2786 flatcamGUI/PreferencesUI.py:2796 msgid "" "This sets how the slots will be exported.\n" "If ROUTED then the slots will be routed\n" @@ -10201,19 +10199,19 @@ msgstr "" "Si PERFORADO (G85), las ranuras se exportarán\n" "utilizando el comando Ranura perforada (G85)." -#: flatcamGUI/PreferencesUI.py:2792 +#: flatcamGUI/PreferencesUI.py:2793 msgid "Routed" msgstr "Enrutado" -#: flatcamGUI/PreferencesUI.py:2793 +#: flatcamGUI/PreferencesUI.py:2794 msgid "Drilled(G85)" msgstr "Perforado (G85)" -#: flatcamGUI/PreferencesUI.py:2826 +#: flatcamGUI/PreferencesUI.py:2827 msgid "A list of Excellon Editor parameters." msgstr "Una lista de los parámetros de Excellon Editor." -#: flatcamGUI/PreferencesUI.py:2836 +#: flatcamGUI/PreferencesUI.py:2837 msgid "" "Set the number of selected Excellon geometry\n" "items above which the utility geometry\n" @@ -10227,19 +10225,19 @@ msgstr "" "Aumenta el rendimiento al mover un\n" "Gran cantidad de elementos geométricos." -#: flatcamGUI/PreferencesUI.py:2849 flatcamGUI/PreferencesUI.py:4055 +#: flatcamGUI/PreferencesUI.py:2850 flatcamGUI/PreferencesUI.py:4056 msgid "New Tool Dia" msgstr "Nueva Herra. Dia" -#: flatcamGUI/PreferencesUI.py:2874 +#: flatcamGUI/PreferencesUI.py:2875 msgid "Linear Drill Array" msgstr "Matriz de taladro lineal" -#: flatcamGUI/PreferencesUI.py:2920 +#: flatcamGUI/PreferencesUI.py:2921 msgid "Circular Drill Array" msgstr "Matriz de Taladro Circ" -#: flatcamGUI/PreferencesUI.py:2990 +#: flatcamGUI/PreferencesUI.py:2991 msgid "" "Angle at which the slot is placed.\n" "The precision is of max 2 decimals.\n" @@ -10251,19 +10249,19 @@ msgstr "" "El valor mínimo es: -359.99 grados.\n" "El valor máximo es: 360.00 grados." -#: flatcamGUI/PreferencesUI.py:3009 +#: flatcamGUI/PreferencesUI.py:3010 msgid "Linear Slot Array" msgstr "Matriz Lin de Ranuras" -#: flatcamGUI/PreferencesUI.py:3070 +#: flatcamGUI/PreferencesUI.py:3071 msgid "Circular Slot Array" msgstr "Matriz Circ de Ranura" -#: flatcamGUI/PreferencesUI.py:3108 +#: flatcamGUI/PreferencesUI.py:3109 msgid "Geometry General" msgstr "Geometría General" -#: flatcamGUI/PreferencesUI.py:3130 +#: flatcamGUI/PreferencesUI.py:3131 msgid "" "The number of circle steps for Geometry \n" "circle and arc shapes linear approximation." @@ -10271,11 +10269,11 @@ msgstr "" "El número de pasos de círculo para Geometría\n" "Círculo y arcos de aproximación lineal." -#: flatcamGUI/PreferencesUI.py:3161 +#: flatcamGUI/PreferencesUI.py:3162 msgid "Geometry Options" msgstr "Opc. de geometría" -#: flatcamGUI/PreferencesUI.py:3169 +#: flatcamGUI/PreferencesUI.py:3170 msgid "" "Create a CNC Job object\n" "tracing the contours of this\n" @@ -10285,11 +10283,11 @@ msgstr "" "trazando los contornos de este\n" "Objeto de geometría." -#: flatcamGUI/PreferencesUI.py:3211 +#: flatcamGUI/PreferencesUI.py:3212 msgid "Depth/Pass" msgstr "Profund. / Pase" -#: flatcamGUI/PreferencesUI.py:3213 +#: flatcamGUI/PreferencesUI.py:3214 msgid "" "The depth to cut on each pass,\n" "when multidepth is enabled.\n" @@ -10303,11 +10301,11 @@ msgstr "" "Es una fracción de la profundidad.\n" "que tiene valor negativo." -#: flatcamGUI/PreferencesUI.py:3393 +#: flatcamGUI/PreferencesUI.py:3394 msgid "Geometry Adv. Options" msgstr "Geometría Adv. Opciones" -#: flatcamGUI/PreferencesUI.py:3401 +#: flatcamGUI/PreferencesUI.py:3402 msgid "" "A list of Geometry advanced parameters.\n" "Those parameters are available only for\n" @@ -10317,13 +10315,13 @@ msgstr "" "Esos parámetros están disponibles sólo para\n" "Aplicación avanzada Nivel." -#: flatcamGUI/PreferencesUI.py:3411 flatcamGUI/PreferencesUI.py:5470 -#: flatcamGUI/PreferencesUI.py:6517 flatcamTools/ToolCalibration.py:125 +#: flatcamGUI/PreferencesUI.py:3412 flatcamGUI/PreferencesUI.py:5471 +#: flatcamGUI/PreferencesUI.py:6518 flatcamTools/ToolCalibration.py:125 #: flatcamTools/ToolSolderPaste.py:239 msgid "Toolchange X-Y" msgstr "Cambio de herra X, Y" -#: flatcamGUI/PreferencesUI.py:3422 +#: flatcamGUI/PreferencesUI.py:3423 msgid "" "Height of the tool just after starting the work.\n" "Delete the value if you don't need this feature." @@ -10331,11 +10329,11 @@ msgstr "" "Altura de la herramienta justo después de comenzar el trabajo.\n" "Elimine el valor si no necesita esta característica." -#: flatcamGUI/PreferencesUI.py:3526 +#: flatcamGUI/PreferencesUI.py:3527 msgid "Segment X size" msgstr "Tamaño del Seg. X" -#: flatcamGUI/PreferencesUI.py:3528 +#: flatcamGUI/PreferencesUI.py:3529 msgid "" "The size of the trace segment on the X axis.\n" "Useful for auto-leveling.\n" @@ -10345,11 +10343,11 @@ msgstr "" "Útil para la autonivelación.\n" "Un valor de 0 significa que no hay segmentación en el eje X." -#: flatcamGUI/PreferencesUI.py:3542 +#: flatcamGUI/PreferencesUI.py:3543 msgid "Segment Y size" msgstr "Tamaño del Seg. Y" -#: flatcamGUI/PreferencesUI.py:3544 +#: flatcamGUI/PreferencesUI.py:3545 msgid "" "The size of the trace segment on the Y axis.\n" "Useful for auto-leveling.\n" @@ -10359,15 +10357,15 @@ msgstr "" "Útil para la autonivelación.\n" "Un valor de 0 significa que no hay segmentación en el eje Y." -#: flatcamGUI/PreferencesUI.py:3565 +#: flatcamGUI/PreferencesUI.py:3566 msgid "Geometry Editor" msgstr "Editor de geometría" -#: flatcamGUI/PreferencesUI.py:3571 +#: flatcamGUI/PreferencesUI.py:3572 msgid "A list of Geometry Editor parameters." msgstr "Una lista de parámetros del editor de geometría." -#: flatcamGUI/PreferencesUI.py:3581 flatcamGUI/PreferencesUI.py:6042 +#: flatcamGUI/PreferencesUI.py:3582 flatcamGUI/PreferencesUI.py:6043 msgid "" "Set the number of selected geometry\n" "items above which the utility geometry\n" @@ -10381,11 +10379,11 @@ msgstr "" "Aumenta el rendimiento al mover un\n" "Gran cantidad de elementos geométricos." -#: flatcamGUI/PreferencesUI.py:3613 +#: flatcamGUI/PreferencesUI.py:3614 msgid "CNC Job General" msgstr "CNC trabajo general" -#: flatcamGUI/PreferencesUI.py:3666 +#: flatcamGUI/PreferencesUI.py:3667 msgid "" "The number of circle steps for GCode \n" "circle and arc shapes linear approximation." @@ -10393,11 +10391,11 @@ msgstr "" "El número de pasos de círculo para GCode \n" "Círculo y arcos de aproximación lineal." -#: flatcamGUI/PreferencesUI.py:3675 +#: flatcamGUI/PreferencesUI.py:3676 msgid "Travel dia" msgstr "Dia de Viaje" -#: flatcamGUI/PreferencesUI.py:3677 +#: flatcamGUI/PreferencesUI.py:3678 msgid "" "The width of the travel lines to be\n" "rendered in the plot." @@ -10405,11 +10403,11 @@ msgstr "" "El ancho de las líneas de viaje a ser\n" "prestados en la trama." -#: flatcamGUI/PreferencesUI.py:3693 +#: flatcamGUI/PreferencesUI.py:3694 msgid "Coordinates decimals" msgstr "Coordina decimales" -#: flatcamGUI/PreferencesUI.py:3695 +#: flatcamGUI/PreferencesUI.py:3696 msgid "" "The number of decimals to be used for \n" "the X, Y, Z coordinates in CNC code (GCODE, etc.)" @@ -10417,11 +10415,11 @@ msgstr "" "El número de decimales a utilizar para\n" "Las coordenadas X, Y, Z en código CNC (GCODE, etc.)" -#: flatcamGUI/PreferencesUI.py:3706 +#: flatcamGUI/PreferencesUI.py:3707 msgid "Feedrate decimals" msgstr "Decimales de avance" -#: flatcamGUI/PreferencesUI.py:3708 +#: flatcamGUI/PreferencesUI.py:3709 msgid "" "The number of decimals to be used for \n" "the Feedrate parameter in CNC code (GCODE, etc.)" @@ -10429,11 +10427,11 @@ msgstr "" "El número de decimales a utilizar para\n" "El parámetro de avance en código CNC (GCODE, etc.)" -#: flatcamGUI/PreferencesUI.py:3719 +#: flatcamGUI/PreferencesUI.py:3720 msgid "Coordinates type" msgstr "Tipo de coordenadas" -#: flatcamGUI/PreferencesUI.py:3721 +#: flatcamGUI/PreferencesUI.py:3722 msgid "" "The type of coordinates to be used in Gcode.\n" "Can be:\n" @@ -10445,19 +10443,19 @@ msgstr "" "- G90 absoluto -> la referencia es el origen x = 0, y = 0\n" "- Incremental G91 -> la referencia es la posición anterior" -#: flatcamGUI/PreferencesUI.py:3727 +#: flatcamGUI/PreferencesUI.py:3728 msgid "Absolute G90" msgstr "Absoluto G90" -#: flatcamGUI/PreferencesUI.py:3728 +#: flatcamGUI/PreferencesUI.py:3729 msgid "Incremental G91" msgstr "G91 incremental" -#: flatcamGUI/PreferencesUI.py:3738 +#: flatcamGUI/PreferencesUI.py:3739 msgid "Force Windows style line-ending" msgstr "Forzar el final de línea al estilo de Windows" -#: flatcamGUI/PreferencesUI.py:3740 +#: flatcamGUI/PreferencesUI.py:3741 msgid "" "When checked will force a Windows style line-ending\n" "(\\r\\n) on non-Windows OS's." @@ -10465,65 +10463,65 @@ msgstr "" "Cuando está marcado, forzará un final de línea de estilo Windows\n" "(\\r \\n) en sistemas operativos que no sean de Windows." -#: flatcamGUI/PreferencesUI.py:3754 +#: flatcamGUI/PreferencesUI.py:3755 msgid "CNC Job Options" msgstr "Opciones de trabajo CNC" -#: flatcamGUI/PreferencesUI.py:3758 +#: flatcamGUI/PreferencesUI.py:3759 msgid "Export G-Code" msgstr "Exportar G-Code" -#: flatcamGUI/PreferencesUI.py:3774 +#: flatcamGUI/PreferencesUI.py:3775 msgid "Prepend to G-Code" msgstr "Prefijo al código G" -#: flatcamGUI/PreferencesUI.py:3790 +#: flatcamGUI/PreferencesUI.py:3791 msgid "Append to G-Code" msgstr "Adjuntar al código G" -#: flatcamGUI/PreferencesUI.py:3816 +#: flatcamGUI/PreferencesUI.py:3817 msgid "CNC Job Adv. Options" msgstr "CNCJob Adv. Opciones" -#: flatcamGUI/PreferencesUI.py:3902 +#: flatcamGUI/PreferencesUI.py:3903 msgid "Z depth for the cut" msgstr "Profundidad Z para el corte" -#: flatcamGUI/PreferencesUI.py:3903 +#: flatcamGUI/PreferencesUI.py:3904 msgid "Z height for travel" msgstr "Altura Z para viajar" -#: flatcamGUI/PreferencesUI.py:3909 +#: flatcamGUI/PreferencesUI.py:3910 msgid "dwelltime = time to dwell to allow the spindle to reach it's set RPM" msgstr "" "dwelltime = tiempo de espera para permitir que el husillo alcance su RPM " "establecido" -#: flatcamGUI/PreferencesUI.py:3928 +#: flatcamGUI/PreferencesUI.py:3929 msgid "Annotation Size" msgstr "Tamaño de la anotación" -#: flatcamGUI/PreferencesUI.py:3930 +#: flatcamGUI/PreferencesUI.py:3931 msgid "The font size of the annotation text. In pixels." msgstr "El tamaño de fuente del texto de anotación. En píxeles." -#: flatcamGUI/PreferencesUI.py:3940 +#: flatcamGUI/PreferencesUI.py:3941 msgid "Annotation Color" msgstr "Color de anotación" -#: flatcamGUI/PreferencesUI.py:3942 +#: flatcamGUI/PreferencesUI.py:3943 msgid "Set the font color for the annotation texts." msgstr "Establecer el color de fuente para los textos de anotación." -#: flatcamGUI/PreferencesUI.py:3968 +#: flatcamGUI/PreferencesUI.py:3969 msgid "NCC Tool Options" msgstr "Opc. de herra. NCC" -#: flatcamGUI/PreferencesUI.py:3982 flatcamGUI/PreferencesUI.py:5380 +#: flatcamGUI/PreferencesUI.py:3983 flatcamGUI/PreferencesUI.py:5381 msgid "Tools dia" msgstr "Herra. dia" -#: flatcamGUI/PreferencesUI.py:3993 flatcamGUI/PreferencesUI.py:4001 +#: flatcamGUI/PreferencesUI.py:3994 flatcamGUI/PreferencesUI.py:4002 #: flatcamTools/ToolNonCopperClear.py:215 #: flatcamTools/ToolNonCopperClear.py:223 msgid "" @@ -10535,11 +10533,11 @@ msgstr "" "- 'Forma V'\n" "- circular" -#: flatcamGUI/PreferencesUI.py:3998 flatcamTools/ToolNonCopperClear.py:220 +#: flatcamGUI/PreferencesUI.py:3999 flatcamTools/ToolNonCopperClear.py:220 msgid "V-shape" msgstr "Forma V" -#: flatcamGUI/PreferencesUI.py:4038 flatcamGUI/PreferencesUI.py:4047 +#: flatcamGUI/PreferencesUI.py:4039 flatcamGUI/PreferencesUI.py:4048 #: flatcamTools/ToolNonCopperClear.py:256 #: flatcamTools/ToolNonCopperClear.py:264 msgid "" @@ -10549,13 +10547,13 @@ msgstr "" "Profundidad de corte en el material. Valor negativo.\n" "En unidades FlatCAM." -#: flatcamGUI/PreferencesUI.py:4057 +#: flatcamGUI/PreferencesUI.py:4058 msgid "The new tool diameter (cut width) to add in the tool table." msgstr "" "El nuevo diámetro de herramienta (ancho de corte) para agregar en la tabla " "de herramientas." -#: flatcamGUI/PreferencesUI.py:4069 flatcamGUI/PreferencesUI.py:4077 +#: flatcamGUI/PreferencesUI.py:4070 flatcamGUI/PreferencesUI.py:4078 #: flatcamTools/ToolNonCopperClear.py:164 #: flatcamTools/ToolNonCopperClear.py:172 msgid "" @@ -10568,13 +10566,13 @@ msgstr "" "herramientas\n" "- convencional / útil cuando no hay compensación de reacción" -#: flatcamGUI/PreferencesUI.py:4086 flatcamGUI/PreferencesUI.py:4511 +#: flatcamGUI/PreferencesUI.py:4087 flatcamGUI/PreferencesUI.py:4512 #: flatcamTools/ToolNonCopperClear.py:181 flatcamTools/ToolPaint.py:153 msgid "Tool order" msgstr "Orden de la Herram" -#: flatcamGUI/PreferencesUI.py:4087 flatcamGUI/PreferencesUI.py:4097 -#: flatcamGUI/PreferencesUI.py:4512 flatcamGUI/PreferencesUI.py:4522 +#: flatcamGUI/PreferencesUI.py:4088 flatcamGUI/PreferencesUI.py:4098 +#: flatcamGUI/PreferencesUI.py:4513 flatcamGUI/PreferencesUI.py:4523 #: flatcamTools/ToolNonCopperClear.py:182 #: flatcamTools/ToolNonCopperClear.py:192 flatcamTools/ToolPaint.py:154 #: flatcamTools/ToolPaint.py:164 @@ -10598,17 +10596,17 @@ msgstr "" "orden\n" "en reversa y deshabilitar este control." -#: flatcamGUI/PreferencesUI.py:4095 flatcamGUI/PreferencesUI.py:4520 +#: flatcamGUI/PreferencesUI.py:4096 flatcamGUI/PreferencesUI.py:4521 #: flatcamTools/ToolNonCopperClear.py:190 flatcamTools/ToolPaint.py:162 msgid "Forward" msgstr "Adelante" -#: flatcamGUI/PreferencesUI.py:4096 flatcamGUI/PreferencesUI.py:4521 +#: flatcamGUI/PreferencesUI.py:4097 flatcamGUI/PreferencesUI.py:4522 #: flatcamTools/ToolNonCopperClear.py:191 flatcamTools/ToolPaint.py:163 msgid "Reverse" msgstr "Atras" -#: flatcamGUI/PreferencesUI.py:4109 flatcamTools/ToolNonCopperClear.py:321 +#: flatcamGUI/PreferencesUI.py:4110 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" @@ -10627,14 +10625,14 @@ msgstr "" "Valores más altos = procesamiento lento y ejecución lenta en CNC\n" "debido a demasiados caminos." -#: flatcamGUI/PreferencesUI.py:4128 flatcamGUI/PreferencesUI.py:6108 -#: flatcamGUI/PreferencesUI.py:6350 flatcamGUI/PreferencesUI.py:6414 +#: flatcamGUI/PreferencesUI.py:4129 flatcamGUI/PreferencesUI.py:6109 +#: flatcamGUI/PreferencesUI.py:6351 flatcamGUI/PreferencesUI.py:6415 #: flatcamTools/ToolCopperThieving.py:113 flatcamTools/ToolFiducials.py:174 #: flatcamTools/ToolFiducials.py:237 flatcamTools/ToolNonCopperClear.py:339 msgid "Bounding box margin." msgstr "Margen de cuadro delimitador." -#: flatcamGUI/PreferencesUI.py:4141 flatcamGUI/PreferencesUI.py:4569 +#: flatcamGUI/PreferencesUI.py:4142 flatcamGUI/PreferencesUI.py:4570 #: flatcamTools/ToolNonCopperClear.py:350 msgid "" "Algorithm for non-copper clearing:
Standard: Fixed step inwards." @@ -10645,22 +10643,22 @@ msgstr "" "el interior.
basado en semillas : hacia afuera desde el origen. " "
basado en líneas : Líneas paralelas." -#: flatcamGUI/PreferencesUI.py:4157 flatcamGUI/PreferencesUI.py:4583 +#: flatcamGUI/PreferencesUI.py:4158 flatcamGUI/PreferencesUI.py:4584 #: flatcamTools/ToolNonCopperClear.py:364 flatcamTools/ToolPaint.py:267 msgid "Connect" msgstr "Conectar" -#: flatcamGUI/PreferencesUI.py:4168 flatcamGUI/PreferencesUI.py:4593 +#: flatcamGUI/PreferencesUI.py:4169 flatcamGUI/PreferencesUI.py:4594 #: flatcamTools/ToolNonCopperClear.py:373 flatcamTools/ToolPaint.py:276 msgid "Contour" msgstr "Contorno" -#: flatcamGUI/PreferencesUI.py:4179 flatcamTools/ToolNonCopperClear.py:382 +#: flatcamGUI/PreferencesUI.py:4180 flatcamTools/ToolNonCopperClear.py:382 #: flatcamTools/ToolPaint.py:285 msgid "Rest M." msgstr "Resto M ." -#: flatcamGUI/PreferencesUI.py:4181 flatcamTools/ToolNonCopperClear.py:384 +#: flatcamGUI/PreferencesUI.py:4182 flatcamTools/ToolNonCopperClear.py:384 msgid "" "If checked, use 'rest machining'.\n" "Basically it will clear copper outside PCB features,\n" @@ -10679,7 +10677,7 @@ msgstr "" "no más cobre para limpiar o no hay más herramientas.\n" "Si no está marcado, use el algoritmo estándar." -#: flatcamGUI/PreferencesUI.py:4197 flatcamTools/ToolNonCopperClear.py:399 +#: flatcamGUI/PreferencesUI.py:4198 flatcamTools/ToolNonCopperClear.py:399 #: flatcamTools/ToolNonCopperClear.py:411 msgid "" "If used, it will add an offset to the copper features.\n" @@ -10692,11 +10690,11 @@ msgstr "" "de las características de cobre.\n" "El valor puede estar entre 0 y 10 unidades FlatCAM." -#: flatcamGUI/PreferencesUI.py:4208 flatcamTools/ToolNonCopperClear.py:409 +#: flatcamGUI/PreferencesUI.py:4209 flatcamTools/ToolNonCopperClear.py:409 msgid "Offset value" msgstr "Valor de Comp" -#: flatcamGUI/PreferencesUI.py:4210 +#: flatcamGUI/PreferencesUI.py:4211 msgid "" "If used, it will add an offset to the copper features.\n" "The copper clearing will finish to a distance\n" @@ -10708,26 +10706,26 @@ msgstr "" "de las características de cobre.\n" "El valor puede estar entre 0 y 9999.9 unidades FlatCAM." -#: flatcamGUI/PreferencesUI.py:4225 flatcamGUI/PreferencesUI.py:6120 +#: flatcamGUI/PreferencesUI.py:4226 flatcamGUI/PreferencesUI.py:6121 #: flatcamTools/ToolCopperThieving.py:125 #: flatcamTools/ToolNonCopperClear.py:435 msgid "Itself" msgstr "Sí mismo" -#: flatcamGUI/PreferencesUI.py:4226 flatcamGUI/PreferencesUI.py:4615 +#: flatcamGUI/PreferencesUI.py:4227 flatcamGUI/PreferencesUI.py:4616 msgid "Area" msgstr "Zona" -#: flatcamGUI/PreferencesUI.py:4227 flatcamGUI/PreferencesUI.py:4617 +#: flatcamGUI/PreferencesUI.py:4228 flatcamGUI/PreferencesUI.py:4618 msgid "Ref" msgstr "Ref" -#: flatcamGUI/PreferencesUI.py:4228 flatcamGUI/PreferencesUI.py:4794 +#: flatcamGUI/PreferencesUI.py:4229 flatcamGUI/PreferencesUI.py:4795 #: flatcamTools/ToolFilm.py:219 msgid "Reference" msgstr "Referencia" -#: flatcamGUI/PreferencesUI.py:4230 +#: flatcamGUI/PreferencesUI.py:4231 msgid "" "- 'Itself' - the non copper clearing extent\n" "is based on the object that is copper cleared.\n" @@ -10747,19 +10745,19 @@ msgstr "" "- 'Objeto de referencia' - hará una limpieza sin cobre dentro del área\n" "especificado por otro objeto." -#: flatcamGUI/PreferencesUI.py:4242 flatcamGUI/PreferencesUI.py:4623 +#: flatcamGUI/PreferencesUI.py:4243 flatcamGUI/PreferencesUI.py:4624 msgid "Normal" msgstr "Normal" -#: flatcamGUI/PreferencesUI.py:4243 flatcamGUI/PreferencesUI.py:4624 +#: flatcamGUI/PreferencesUI.py:4244 flatcamGUI/PreferencesUI.py:4625 msgid "Progressive" msgstr "Progresivo" -#: flatcamGUI/PreferencesUI.py:4244 +#: flatcamGUI/PreferencesUI.py:4245 msgid "NCC Plotting" msgstr "Trazado NCC" -#: flatcamGUI/PreferencesUI.py:4246 +#: flatcamGUI/PreferencesUI.py:4247 msgid "" "- 'Normal' - normal plotting, done at the end of the NCC job\n" "- 'Progressive' - after each shape is generated it will be plotted." @@ -10767,16 +10765,16 @@ msgstr "" "- 'Normal': trazado normal, realizado al final del trabajo de NCC\n" "- 'Progresivo': después de generar cada forma, se trazará." -#: flatcamGUI/PreferencesUI.py:4260 +#: flatcamGUI/PreferencesUI.py:4261 msgid "Cutout Tool Options" msgstr "Opc. de herra. de recorte" -#: flatcamGUI/PreferencesUI.py:4275 flatcamTools/ToolCalculators.py:123 +#: flatcamGUI/PreferencesUI.py:4276 flatcamTools/ToolCalculators.py:123 #: flatcamTools/ToolCutOut.py:123 msgid "Tool Diameter" msgstr "Diá. de Herram" -#: flatcamGUI/PreferencesUI.py:4277 flatcamTools/ToolCutOut.py:125 +#: flatcamGUI/PreferencesUI.py:4278 flatcamTools/ToolCutOut.py:125 msgid "" "Diameter of the tool used to cutout\n" "the PCB shape out of the surrounding material." @@ -10784,11 +10782,11 @@ msgstr "" "Diámetro de la herramienta utilizada para cortar\n" "La forma de PCB fuera del material circundante." -#: flatcamGUI/PreferencesUI.py:4332 flatcamTools/ToolCutOut.py:104 +#: flatcamGUI/PreferencesUI.py:4333 flatcamTools/ToolCutOut.py:104 msgid "Object kind" msgstr "Tipo de objeto" -#: flatcamGUI/PreferencesUI.py:4334 flatcamTools/ToolCutOut.py:106 +#: flatcamGUI/PreferencesUI.py:4335 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 " @@ -10800,15 +10798,15 @@ msgstr "" "un panel de PCB Gerber objeto, que se hace\n" "de muchos esquemas de PCB individuales." -#: flatcamGUI/PreferencesUI.py:4341 flatcamTools/ToolCutOut.py:112 +#: flatcamGUI/PreferencesUI.py:4342 flatcamTools/ToolCutOut.py:112 msgid "Single" msgstr "Soltero" -#: flatcamGUI/PreferencesUI.py:4342 flatcamTools/ToolCutOut.py:113 +#: flatcamGUI/PreferencesUI.py:4343 flatcamTools/ToolCutOut.py:113 msgid "Panel" msgstr "Panel" -#: flatcamGUI/PreferencesUI.py:4349 flatcamTools/ToolCutOut.py:184 +#: flatcamGUI/PreferencesUI.py:4350 flatcamTools/ToolCutOut.py:184 msgid "" "Margin over bounds. A positive value here\n" "will make the cutout of the PCB further from\n" @@ -10818,11 +10816,11 @@ msgstr "" "hará que el corte de la PCB esté más alejado de\n" "el borde real de PCB" -#: flatcamGUI/PreferencesUI.py:4362 flatcamTools/ToolCutOut.py:195 +#: flatcamGUI/PreferencesUI.py:4363 flatcamTools/ToolCutOut.py:195 msgid "Gap size" msgstr "Tamaño de la brecha" -#: flatcamGUI/PreferencesUI.py:4364 flatcamTools/ToolCutOut.py:197 +#: flatcamGUI/PreferencesUI.py:4365 flatcamTools/ToolCutOut.py:197 msgid "" "The size of the bridge gaps in the cutout\n" "used to keep the board connected to\n" @@ -10834,11 +10832,11 @@ msgstr "" "el material circundante (el\n" "de la cual se corta el PCB)." -#: flatcamGUI/PreferencesUI.py:4378 flatcamTools/ToolCutOut.py:239 +#: flatcamGUI/PreferencesUI.py:4379 flatcamTools/ToolCutOut.py:239 msgid "Gaps" msgstr "Brechas" -#: flatcamGUI/PreferencesUI.py:4380 +#: flatcamGUI/PreferencesUI.py:4381 msgid "" "Number of gaps used for the cutout.\n" "There can be maximum 8 bridges/gaps.\n" @@ -10862,11 +10860,11 @@ msgstr "" "- 2tb - 2 * top + 2 * bottom\n" "- 8 - 2 * izquierda + 2 * derecha + 2 * arriba + 2 * abajo" -#: flatcamGUI/PreferencesUI.py:4403 +#: flatcamGUI/PreferencesUI.py:4404 msgid "Convex Sh." msgstr "Forma Conv." -#: flatcamGUI/PreferencesUI.py:4405 flatcamTools/ToolCutOut.py:217 +#: flatcamGUI/PreferencesUI.py:4406 flatcamTools/ToolCutOut.py:217 msgid "" "Create a convex shape surrounding the entire PCB.\n" "Used only if the source object type is Gerber." @@ -10874,11 +10872,11 @@ msgstr "" "Crea una forma convexa que rodea toda la PCB.\n" "Se usa solo si el tipo de objeto de origen es Gerber." -#: flatcamGUI/PreferencesUI.py:4419 +#: flatcamGUI/PreferencesUI.py:4420 msgid "2Sided Tool Options" msgstr "Opc. de herra. de 2 caras" -#: flatcamGUI/PreferencesUI.py:4425 +#: flatcamGUI/PreferencesUI.py:4426 msgid "" "A tool to help in creating a double sided\n" "PCB using alignment holes." @@ -10886,36 +10884,36 @@ msgstr "" "Una herramienta para ayudar en la creación de una doble cara.\n" "PCB utilizando orificios de alineación." -#: flatcamGUI/PreferencesUI.py:4439 flatcamTools/ToolDblSided.py:276 +#: flatcamGUI/PreferencesUI.py:4440 flatcamTools/ToolDblSided.py:276 msgid "Drill dia" msgstr "Diá. del taladro" -#: flatcamGUI/PreferencesUI.py:4441 flatcamTools/ToolDblSided.py:267 +#: flatcamGUI/PreferencesUI.py:4442 flatcamTools/ToolDblSided.py:267 #: flatcamTools/ToolDblSided.py:278 msgid "Diameter of the drill for the alignment holes." msgstr "Diámetro del taladro para los orificios de alineación." -#: flatcamGUI/PreferencesUI.py:4450 flatcamTools/ToolDblSided.py:144 +#: flatcamGUI/PreferencesUI.py:4451 flatcamTools/ToolDblSided.py:144 msgid "Mirror Axis:" msgstr "Eje del espejo:" -#: flatcamGUI/PreferencesUI.py:4452 flatcamTools/ToolDblSided.py:145 +#: flatcamGUI/PreferencesUI.py:4453 flatcamTools/ToolDblSided.py:145 msgid "Mirror vertically (X) or horizontally (Y)." msgstr "Espejo verticalmente (X) u horizontal (Y)." -#: flatcamGUI/PreferencesUI.py:4461 flatcamTools/ToolDblSided.py:154 +#: flatcamGUI/PreferencesUI.py:4462 flatcamTools/ToolDblSided.py:154 msgid "Point" msgstr "Punto" -#: flatcamGUI/PreferencesUI.py:4462 flatcamTools/ToolDblSided.py:155 +#: flatcamGUI/PreferencesUI.py:4463 flatcamTools/ToolDblSided.py:155 msgid "Box" msgstr "Caja" -#: flatcamGUI/PreferencesUI.py:4463 flatcamTools/ToolDblSided.py:156 +#: flatcamGUI/PreferencesUI.py:4464 flatcamTools/ToolDblSided.py:156 msgid "Axis Ref" msgstr "Ref. del eje" -#: flatcamGUI/PreferencesUI.py:4465 flatcamTools/ToolDblSided.py:158 +#: flatcamGUI/PreferencesUI.py:4466 flatcamTools/ToolDblSided.py:158 msgid "" "The axis should pass through a point or cut\n" " a specified box (in a FlatCAM object) through \n" @@ -10925,15 +10923,15 @@ msgstr "" "  un cuadro especificado (en un objeto FlatCAM) a través de\n" "El centro." -#: flatcamGUI/PreferencesUI.py:4481 +#: flatcamGUI/PreferencesUI.py:4482 msgid "Paint Tool Options" msgstr "Opc. de herra. de pintura" -#: flatcamGUI/PreferencesUI.py:4487 +#: flatcamGUI/PreferencesUI.py:4488 msgid "Parameters:" msgstr "Parámetros:" -#: flatcamGUI/PreferencesUI.py:4605 flatcamTools/ToolPaint.py:302 +#: flatcamGUI/PreferencesUI.py:4606 flatcamTools/ToolPaint.py:302 #: flatcamTools/ToolPaint.py:319 msgid "" "How to select Polygons to be painted.\n" @@ -10958,15 +10956,15 @@ msgstr "" "- 'Objeto de referencia' - hará una limpieza sin cobre dentro del área\n" "especificado por otro objeto." -#: flatcamGUI/PreferencesUI.py:4614 +#: flatcamGUI/PreferencesUI.py:4615 msgid "Sel" msgstr "Seleccionar" -#: flatcamGUI/PreferencesUI.py:4625 +#: flatcamGUI/PreferencesUI.py:4626 msgid "Paint Plotting" msgstr "Trazado de pintura" -#: flatcamGUI/PreferencesUI.py:4627 +#: flatcamGUI/PreferencesUI.py:4628 msgid "" "- 'Normal' - normal plotting, done at the end of the Paint job\n" "- 'Progressive' - after each shape is generated it will be plotted." @@ -10974,11 +10972,11 @@ msgstr "" "- 'Normal': trazado normal, realizado al final del trabajo de Pintura\n" "- 'Progresivo': después de generar cada forma, se trazará." -#: flatcamGUI/PreferencesUI.py:4641 +#: flatcamGUI/PreferencesUI.py:4642 msgid "Film Tool Options" msgstr "Opc. de herra. de película" -#: flatcamGUI/PreferencesUI.py:4647 +#: flatcamGUI/PreferencesUI.py:4648 msgid "" "Create a PCB film from a Gerber or Geometry\n" "FlatCAM object.\n" @@ -10988,11 +10986,11 @@ msgstr "" "Objeto FlatCAM.\n" "El archivo se guarda en formato SVG." -#: flatcamGUI/PreferencesUI.py:4658 +#: flatcamGUI/PreferencesUI.py:4659 msgid "Film Type" msgstr "Tipo de Filme" -#: flatcamGUI/PreferencesUI.py:4660 flatcamTools/ToolFilm.py:300 +#: flatcamGUI/PreferencesUI.py:4661 flatcamTools/ToolFilm.py:300 msgid "" "Generate a Positive black film or a Negative film.\n" "Positive means that it will print the features\n" @@ -11008,20 +11006,20 @@ msgstr "" "Con blanco sobre un lienzo negro.\n" "El formato de la película es SVG." -#: flatcamGUI/PreferencesUI.py:4671 +#: flatcamGUI/PreferencesUI.py:4672 msgid "Film Color" msgstr "Color de la película" -#: flatcamGUI/PreferencesUI.py:4673 +#: flatcamGUI/PreferencesUI.py:4674 msgid "Set the film color when positive film is selected." msgstr "" "Establezca el color de la película cuando se selecciona película positiva." -#: flatcamGUI/PreferencesUI.py:4696 flatcamTools/ToolFilm.py:316 +#: flatcamGUI/PreferencesUI.py:4697 flatcamTools/ToolFilm.py:316 msgid "Border" msgstr "Frontera" -#: flatcamGUI/PreferencesUI.py:4698 flatcamTools/ToolFilm.py:318 +#: flatcamGUI/PreferencesUI.py:4699 flatcamTools/ToolFilm.py:318 msgid "" "Specify a border around the object.\n" "Only for negative film.\n" @@ -11041,11 +11039,11 @@ msgstr "" "Color blanco como el resto y que puede confundir con el\n" "Entorno si no fuera por esta frontera." -#: flatcamGUI/PreferencesUI.py:4715 flatcamTools/ToolFilm.py:283 +#: flatcamGUI/PreferencesUI.py:4716 flatcamTools/ToolFilm.py:283 msgid "Scale Stroke" msgstr "Trazo de escala" -#: flatcamGUI/PreferencesUI.py:4717 flatcamTools/ToolFilm.py:285 +#: flatcamGUI/PreferencesUI.py:4718 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 " @@ -11058,11 +11056,11 @@ msgstr "" "por lo tanto, las características finas pueden verse más afectadas por este " "parámetro." -#: flatcamGUI/PreferencesUI.py:4724 flatcamTools/ToolFilm.py:141 +#: flatcamGUI/PreferencesUI.py:4725 flatcamTools/ToolFilm.py:141 msgid "Film Adjustments" msgstr "Ajustes de la película" -#: flatcamGUI/PreferencesUI.py:4726 flatcamTools/ToolFilm.py:143 +#: flatcamGUI/PreferencesUI.py:4727 flatcamTools/ToolFilm.py:143 msgid "" "Sometime the printers will distort the print shape, especially the Laser " "types.\n" @@ -11073,11 +11071,11 @@ msgstr "" "Esta sección proporciona las herramientas para compensar las distorsiones de " "impresión." -#: flatcamGUI/PreferencesUI.py:4733 flatcamTools/ToolFilm.py:150 +#: flatcamGUI/PreferencesUI.py:4734 flatcamTools/ToolFilm.py:150 msgid "Scale Film geometry" msgstr "Escalar la Geo de la Película" -#: flatcamGUI/PreferencesUI.py:4735 flatcamTools/ToolFilm.py:152 +#: flatcamGUI/PreferencesUI.py:4736 flatcamTools/ToolFilm.py:152 msgid "" "A value greater than 1 will stretch the film\n" "while a value less than 1 will jolt it." @@ -11085,21 +11083,21 @@ msgstr "" "Un valor mayor que 1 estirará la película\n" "mientras que un valor menor que 1 lo sacudirá." -#: flatcamGUI/PreferencesUI.py:4745 flatcamGUI/PreferencesUI.py:5265 +#: flatcamGUI/PreferencesUI.py:4746 flatcamGUI/PreferencesUI.py:5266 #: flatcamTools/ToolFilm.py:162 flatcamTools/ToolTransform.py:147 msgid "X factor" msgstr "Factor X" -#: flatcamGUI/PreferencesUI.py:4754 flatcamGUI/PreferencesUI.py:5278 +#: flatcamGUI/PreferencesUI.py:4755 flatcamGUI/PreferencesUI.py:5279 #: flatcamTools/ToolFilm.py:171 flatcamTools/ToolTransform.py:168 msgid "Y factor" msgstr "Factor Y" -#: flatcamGUI/PreferencesUI.py:4764 flatcamTools/ToolFilm.py:189 +#: flatcamGUI/PreferencesUI.py:4765 flatcamTools/ToolFilm.py:189 msgid "Skew Film geometry" msgstr "Incline la Geo de la Película" -#: flatcamGUI/PreferencesUI.py:4766 flatcamTools/ToolFilm.py:191 +#: flatcamGUI/PreferencesUI.py:4767 flatcamTools/ToolFilm.py:191 msgid "" "Positive values will skew to the right\n" "while negative values will skew to the left." @@ -11107,17 +11105,17 @@ msgstr "" "Los valores positivos se sesgarán a la derecha.\n" "mientras que los valores negativos se desviarán a la izquierda." -#: flatcamGUI/PreferencesUI.py:4776 flatcamGUI/PreferencesUI.py:5234 +#: flatcamGUI/PreferencesUI.py:4777 flatcamGUI/PreferencesUI.py:5235 #: flatcamTools/ToolFilm.py:201 flatcamTools/ToolTransform.py:97 msgid "X angle" msgstr "Ángulo X" -#: flatcamGUI/PreferencesUI.py:4785 flatcamGUI/PreferencesUI.py:5248 +#: flatcamGUI/PreferencesUI.py:4786 flatcamGUI/PreferencesUI.py:5249 #: flatcamTools/ToolFilm.py:210 flatcamTools/ToolTransform.py:119 msgid "Y angle" msgstr "Ángulo Y" -#: flatcamGUI/PreferencesUI.py:4796 flatcamTools/ToolFilm.py:221 +#: flatcamGUI/PreferencesUI.py:4797 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." @@ -11125,57 +11123,57 @@ msgstr "" "El punto de referencia que se utilizará como origen para el sesgo.\n" "Puede ser uno de los cuatro puntos del cuadro delimitador de geometría." -#: flatcamGUI/PreferencesUI.py:4799 flatcamTools/ToolFiducials.py:87 +#: flatcamGUI/PreferencesUI.py:4800 flatcamTools/ToolFiducials.py:87 #: flatcamTools/ToolFilm.py:224 msgid "Bottom Left" msgstr "Abajo a la izquierda" -#: flatcamGUI/PreferencesUI.py:4800 flatcamTools/ToolFilm.py:225 +#: flatcamGUI/PreferencesUI.py:4801 flatcamTools/ToolFilm.py:225 msgid "Top Left" msgstr "Arriba a la izquierda" -#: flatcamGUI/PreferencesUI.py:4801 flatcamTools/ToolFilm.py:226 +#: flatcamGUI/PreferencesUI.py:4802 flatcamTools/ToolFilm.py:226 msgid "Bottom Right" msgstr "Abajo a la derecha" -#: flatcamGUI/PreferencesUI.py:4802 flatcamTools/ToolFilm.py:227 +#: flatcamGUI/PreferencesUI.py:4803 flatcamTools/ToolFilm.py:227 msgid "Top right" msgstr "Arriba a la derecha" -#: flatcamGUI/PreferencesUI.py:4810 flatcamTools/ToolFilm.py:244 +#: flatcamGUI/PreferencesUI.py:4811 flatcamTools/ToolFilm.py:244 msgid "Mirror Film geometry" msgstr "Refleja la Geo de la Película" -#: flatcamGUI/PreferencesUI.py:4812 flatcamTools/ToolFilm.py:246 +#: flatcamGUI/PreferencesUI.py:4813 flatcamTools/ToolFilm.py:246 msgid "Mirror the film geometry on the selected axis or on both." msgstr "Refleje la geometría de la película en el eje seleccionado o en ambos." -#: flatcamGUI/PreferencesUI.py:4824 flatcamTools/ToolFilm.py:258 +#: flatcamGUI/PreferencesUI.py:4825 flatcamTools/ToolFilm.py:258 msgid "Both" msgstr "Ambas" -#: flatcamGUI/PreferencesUI.py:4826 flatcamTools/ToolFilm.py:260 +#: flatcamGUI/PreferencesUI.py:4827 flatcamTools/ToolFilm.py:260 msgid "Mirror axis" msgstr "Eje espejo" -#: flatcamGUI/PreferencesUI.py:4836 flatcamTools/ToolFilm.py:403 +#: flatcamGUI/PreferencesUI.py:4837 flatcamTools/ToolFilm.py:403 msgid "SVG" msgstr "SVG" -#: flatcamGUI/PreferencesUI.py:4837 flatcamTools/ToolFilm.py:404 +#: flatcamGUI/PreferencesUI.py:4838 flatcamTools/ToolFilm.py:404 msgid "PNG" msgstr "PNG" -#: flatcamGUI/PreferencesUI.py:4838 flatcamTools/ToolFilm.py:405 +#: flatcamGUI/PreferencesUI.py:4839 flatcamTools/ToolFilm.py:405 msgid "PDF" msgstr "PDF" -#: flatcamGUI/PreferencesUI.py:4841 flatcamTools/ToolFilm.py:298 +#: flatcamGUI/PreferencesUI.py:4842 flatcamTools/ToolFilm.py:298 #: flatcamTools/ToolFilm.py:408 msgid "Film Type:" msgstr "Tipo de filme:" -#: flatcamGUI/PreferencesUI.py:4843 flatcamTools/ToolFilm.py:410 +#: flatcamGUI/PreferencesUI.py:4844 flatcamTools/ToolFilm.py:410 msgid "" "The file type of the saved film. Can be:\n" "- 'SVG' -> open-source vectorial format\n" @@ -11187,23 +11185,23 @@ msgstr "" "- 'PNG' -> imagen de trama\n" "- 'PDF' -> formato de documento portátil" -#: flatcamGUI/PreferencesUI.py:4852 flatcamTools/ToolFilm.py:419 +#: flatcamGUI/PreferencesUI.py:4853 flatcamTools/ToolFilm.py:419 msgid "Page Orientation" msgstr "Orient. de la página" -#: flatcamGUI/PreferencesUI.py:4865 flatcamTools/ToolFilm.py:432 +#: flatcamGUI/PreferencesUI.py:4866 flatcamTools/ToolFilm.py:432 msgid "Page Size" msgstr "Tamaño de página" -#: flatcamGUI/PreferencesUI.py:4866 flatcamTools/ToolFilm.py:433 +#: flatcamGUI/PreferencesUI.py:4867 flatcamTools/ToolFilm.py:433 msgid "A selection of standard ISO 216 page sizes." msgstr "Una selección de tamaños de página estándar ISO 216." -#: flatcamGUI/PreferencesUI.py:4938 +#: flatcamGUI/PreferencesUI.py:4939 msgid "Panelize Tool Options" msgstr "Opc. de la herra. Panelizar" -#: flatcamGUI/PreferencesUI.py:4944 +#: flatcamGUI/PreferencesUI.py:4945 msgid "" "Create an object that contains an array of (x, y) elements,\n" "each element is a copy of the source object spaced\n" @@ -11213,11 +11211,11 @@ msgstr "" "Cada elemento es una copia del objeto fuente espaciado.\n" "a una distancia X, distancia Y entre sí." -#: flatcamGUI/PreferencesUI.py:4961 flatcamTools/ToolPanelize.py:160 +#: flatcamGUI/PreferencesUI.py:4962 flatcamTools/ToolPanelize.py:160 msgid "Spacing cols" msgstr "Col. de espaciado" -#: flatcamGUI/PreferencesUI.py:4963 flatcamTools/ToolPanelize.py:162 +#: flatcamGUI/PreferencesUI.py:4964 flatcamTools/ToolPanelize.py:162 msgid "" "Spacing between columns of the desired panel.\n" "In current units." @@ -11225,11 +11223,11 @@ msgstr "" "Espaciado entre columnas del panel deseado.\n" "En unidades actuales." -#: flatcamGUI/PreferencesUI.py:4975 flatcamTools/ToolPanelize.py:172 +#: flatcamGUI/PreferencesUI.py:4976 flatcamTools/ToolPanelize.py:172 msgid "Spacing rows" msgstr "Separación de filas" -#: flatcamGUI/PreferencesUI.py:4977 flatcamTools/ToolPanelize.py:174 +#: flatcamGUI/PreferencesUI.py:4978 flatcamTools/ToolPanelize.py:174 msgid "" "Spacing between rows of the desired panel.\n" "In current units." @@ -11237,36 +11235,36 @@ msgstr "" "Espaciado entre filas del panel deseado.\n" "En unidades actuales." -#: flatcamGUI/PreferencesUI.py:4988 flatcamTools/ToolPanelize.py:183 +#: flatcamGUI/PreferencesUI.py:4989 flatcamTools/ToolPanelize.py:183 msgid "Columns" msgstr "Columnas" -#: flatcamGUI/PreferencesUI.py:4990 flatcamTools/ToolPanelize.py:185 +#: flatcamGUI/PreferencesUI.py:4991 flatcamTools/ToolPanelize.py:185 msgid "Number of columns of the desired panel" msgstr "Número de columnas del panel deseado" -#: flatcamGUI/PreferencesUI.py:5000 flatcamTools/ToolPanelize.py:193 +#: flatcamGUI/PreferencesUI.py:5001 flatcamTools/ToolPanelize.py:193 msgid "Rows" msgstr "Filas" -#: flatcamGUI/PreferencesUI.py:5002 flatcamTools/ToolPanelize.py:195 +#: flatcamGUI/PreferencesUI.py:5003 flatcamTools/ToolPanelize.py:195 msgid "Number of rows of the desired panel" msgstr "Número de filas del panel deseado" -#: flatcamGUI/PreferencesUI.py:5008 flatcamTools/ToolCalibration.py:196 +#: flatcamGUI/PreferencesUI.py:5009 flatcamTools/ToolCalibration.py:196 #: flatcamTools/ToolCalibration.py:634 flatcamTools/ToolPanelize.py:201 msgid "Gerber" msgstr "Gerber" -#: flatcamGUI/PreferencesUI.py:5009 flatcamTools/ToolPanelize.py:202 +#: flatcamGUI/PreferencesUI.py:5010 flatcamTools/ToolPanelize.py:202 msgid "Geo" msgstr "Geo" -#: flatcamGUI/PreferencesUI.py:5010 flatcamTools/ToolPanelize.py:203 +#: flatcamGUI/PreferencesUI.py:5011 flatcamTools/ToolPanelize.py:203 msgid "Panel Type" msgstr "Tipo de panel" -#: flatcamGUI/PreferencesUI.py:5012 +#: flatcamGUI/PreferencesUI.py:5013 msgid "" "Choose the type of object for the panel object:\n" "- Gerber\n" @@ -11276,11 +11274,11 @@ msgstr "" "- Gerber\n" "- Geometría" -#: flatcamGUI/PreferencesUI.py:5021 +#: flatcamGUI/PreferencesUI.py:5022 msgid "Constrain within" msgstr "Restringir dentro de" -#: flatcamGUI/PreferencesUI.py:5023 flatcamTools/ToolPanelize.py:215 +#: flatcamGUI/PreferencesUI.py:5024 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" @@ -11294,11 +11292,11 @@ msgstr "" "El panel final tendrá tantas columnas y filas como\n" "encajan completamente dentro del área seleccionada." -#: flatcamGUI/PreferencesUI.py:5036 flatcamTools/ToolPanelize.py:227 +#: flatcamGUI/PreferencesUI.py:5037 flatcamTools/ToolPanelize.py:227 msgid "Width (DX)" msgstr "Ancho (DX)" -#: flatcamGUI/PreferencesUI.py:5038 flatcamTools/ToolPanelize.py:229 +#: flatcamGUI/PreferencesUI.py:5039 flatcamTools/ToolPanelize.py:229 msgid "" "The width (DX) within which the panel must fit.\n" "In current units." @@ -11306,11 +11304,11 @@ msgstr "" "El ancho (DX) dentro del cual debe caber el panel.\n" "En unidades actuales." -#: flatcamGUI/PreferencesUI.py:5049 flatcamTools/ToolPanelize.py:238 +#: flatcamGUI/PreferencesUI.py:5050 flatcamTools/ToolPanelize.py:238 msgid "Height (DY)" msgstr "Altura (DY)" -#: flatcamGUI/PreferencesUI.py:5051 flatcamTools/ToolPanelize.py:240 +#: flatcamGUI/PreferencesUI.py:5052 flatcamTools/ToolPanelize.py:240 msgid "" "The height (DY)within which the panel must fit.\n" "In current units." @@ -11318,15 +11316,15 @@ msgstr "" "La altura (DY) dentro de la cual debe caber el panel.\n" "En unidades actuales." -#: flatcamGUI/PreferencesUI.py:5065 +#: flatcamGUI/PreferencesUI.py:5066 msgid "Calculators Tool Options" msgstr "Opc. de herra. de calculadoras" -#: flatcamGUI/PreferencesUI.py:5069 flatcamTools/ToolCalculators.py:25 +#: flatcamGUI/PreferencesUI.py:5070 flatcamTools/ToolCalculators.py:25 msgid "V-Shape Tool Calculator" msgstr "Calc. de herra. en forma de V" -#: flatcamGUI/PreferencesUI.py:5071 +#: flatcamGUI/PreferencesUI.py:5072 msgid "" "Calculate the tool diameter for a given V-shape tool,\n" "having the tip diameter, tip angle and\n" @@ -11337,11 +11335,11 @@ msgstr "" "teniendo el diámetro de la punta, el ángulo de la punta y\n" "Profundidad de corte como parámetros." -#: flatcamGUI/PreferencesUI.py:5086 flatcamTools/ToolCalculators.py:94 +#: flatcamGUI/PreferencesUI.py:5087 flatcamTools/ToolCalculators.py:94 msgid "Tip Diameter" msgstr "Diá. de la punta" -#: flatcamGUI/PreferencesUI.py:5088 flatcamTools/ToolCalculators.py:102 +#: flatcamGUI/PreferencesUI.py:5089 flatcamTools/ToolCalculators.py:102 msgid "" "This is the tool tip diameter.\n" "It is specified by manufacturer." @@ -11349,11 +11347,11 @@ msgstr "" "Este es el diámetro de la punta de la herramienta.\n" "Está especificado por el fabricante." -#: flatcamGUI/PreferencesUI.py:5100 flatcamTools/ToolCalculators.py:105 +#: flatcamGUI/PreferencesUI.py:5101 flatcamTools/ToolCalculators.py:105 msgid "Tip Angle" msgstr "Ángulo de la punta" -#: flatcamGUI/PreferencesUI.py:5102 +#: flatcamGUI/PreferencesUI.py:5103 msgid "" "This is the angle on the tip of the tool.\n" "It is specified by manufacturer." @@ -11361,7 +11359,7 @@ msgstr "" "Este es el ángulo en la punta de la herramienta.\n" "Está especificado por el fabricante." -#: flatcamGUI/PreferencesUI.py:5116 +#: flatcamGUI/PreferencesUI.py:5117 msgid "" "This is depth to cut into material.\n" "In the CNCJob object it is the CutZ parameter." @@ -11369,11 +11367,11 @@ msgstr "" "Esta es la profundidad para cortar en material.\n" "En el objeto de trabajo CNC es el parámetro CutZ." -#: flatcamGUI/PreferencesUI.py:5123 flatcamTools/ToolCalculators.py:27 +#: flatcamGUI/PreferencesUI.py:5124 flatcamTools/ToolCalculators.py:27 msgid "ElectroPlating Calculator" msgstr "Calculadora de electrochapado" -#: flatcamGUI/PreferencesUI.py:5125 flatcamTools/ToolCalculators.py:158 +#: flatcamGUI/PreferencesUI.py:5126 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 " @@ -11384,27 +11382,27 @@ msgstr "" "Utilizando un método como tinta de grahite o tinta de hipofosfito de calcio " "o cloruro de paladio." -#: flatcamGUI/PreferencesUI.py:5139 flatcamTools/ToolCalculators.py:167 +#: flatcamGUI/PreferencesUI.py:5140 flatcamTools/ToolCalculators.py:167 msgid "Board Length" msgstr "Longitud del tablero" -#: flatcamGUI/PreferencesUI.py:5141 flatcamTools/ToolCalculators.py:173 +#: flatcamGUI/PreferencesUI.py:5142 flatcamTools/ToolCalculators.py:173 msgid "This is the board length. In centimeters." msgstr "Esta es la longitud del tablero. En centímetros." -#: flatcamGUI/PreferencesUI.py:5151 flatcamTools/ToolCalculators.py:175 +#: flatcamGUI/PreferencesUI.py:5152 flatcamTools/ToolCalculators.py:175 msgid "Board Width" msgstr "Ancho del tablero" -#: flatcamGUI/PreferencesUI.py:5153 flatcamTools/ToolCalculators.py:181 +#: flatcamGUI/PreferencesUI.py:5154 flatcamTools/ToolCalculators.py:181 msgid "This is the board width.In centimeters." msgstr "Este es el ancho de la tabla. En centímetros." -#: flatcamGUI/PreferencesUI.py:5158 flatcamTools/ToolCalculators.py:183 +#: flatcamGUI/PreferencesUI.py:5159 flatcamTools/ToolCalculators.py:183 msgid "Current Density" msgstr "Densidad actual" -#: flatcamGUI/PreferencesUI.py:5164 flatcamTools/ToolCalculators.py:190 +#: flatcamGUI/PreferencesUI.py:5165 flatcamTools/ToolCalculators.py:190 msgid "" "Current density to pass through the board. \n" "In Amps per Square Feet ASF." @@ -11412,11 +11410,11 @@ msgstr "" "Densidad de corriente para pasar por el tablero.\n" "En amperios por pies cuadrados ASF." -#: flatcamGUI/PreferencesUI.py:5170 flatcamTools/ToolCalculators.py:193 +#: flatcamGUI/PreferencesUI.py:5171 flatcamTools/ToolCalculators.py:193 msgid "Copper Growth" msgstr "Crecimiento de cobre" -#: flatcamGUI/PreferencesUI.py:5176 flatcamTools/ToolCalculators.py:200 +#: flatcamGUI/PreferencesUI.py:5177 flatcamTools/ToolCalculators.py:200 msgid "" "How thick the copper growth is intended to be.\n" "In microns." @@ -11424,11 +11422,11 @@ msgstr "" "Qué tan grueso pretende ser el crecimiento del cobre.\n" "En micras." -#: flatcamGUI/PreferencesUI.py:5189 +#: flatcamGUI/PreferencesUI.py:5190 msgid "Transform Tool Options" msgstr "Opc. de herra. de transformación" -#: flatcamGUI/PreferencesUI.py:5195 +#: flatcamGUI/PreferencesUI.py:5196 msgid "" "Various transformations that can be applied\n" "on a FlatCAM object." @@ -11436,19 +11434,19 @@ msgstr "" "Diversas transformaciones que se pueden aplicar.\n" "en un objeto FlatCAM." -#: flatcamGUI/PreferencesUI.py:5226 +#: flatcamGUI/PreferencesUI.py:5227 msgid "Skew" msgstr "Sesgar" -#: flatcamGUI/PreferencesUI.py:5267 flatcamTools/ToolTransform.py:149 +#: flatcamGUI/PreferencesUI.py:5268 flatcamTools/ToolTransform.py:149 msgid "Factor for scaling on X axis." msgstr "Factor de escalado en eje X." -#: flatcamGUI/PreferencesUI.py:5280 flatcamTools/ToolTransform.py:170 +#: flatcamGUI/PreferencesUI.py:5281 flatcamTools/ToolTransform.py:170 msgid "Factor for scaling on Y axis." msgstr "Factor de escalado en eje Y." -#: flatcamGUI/PreferencesUI.py:5288 flatcamTools/ToolTransform.py:193 +#: flatcamGUI/PreferencesUI.py:5289 flatcamTools/ToolTransform.py:193 msgid "" "Scale the selected object(s)\n" "using the Scale_X factor for both axis." @@ -11456,7 +11454,7 @@ msgstr "" "Escala el (los) objeto (s) seleccionado (s)\n" "utilizando el factor de escala X para ambos ejes." -#: flatcamGUI/PreferencesUI.py:5296 flatcamTools/ToolTransform.py:201 +#: flatcamGUI/PreferencesUI.py:5297 flatcamTools/ToolTransform.py:201 msgid "" "Scale the selected object(s)\n" "using the origin reference when checked,\n" @@ -11468,27 +11466,27 @@ msgstr "" "y el centro del cuadro delimitador más grande.\n" "de los objetos seleccionados cuando no está marcada." -#: flatcamGUI/PreferencesUI.py:5312 flatcamTools/ToolTransform.py:216 +#: flatcamGUI/PreferencesUI.py:5313 flatcamTools/ToolTransform.py:216 msgid "X val" msgstr "Valor X" -#: flatcamGUI/PreferencesUI.py:5314 flatcamTools/ToolTransform.py:218 +#: flatcamGUI/PreferencesUI.py:5315 flatcamTools/ToolTransform.py:218 msgid "Distance to offset on X axis. In current units." msgstr "Distancia a desplazamiento en el eje X. En unidades actuales." -#: flatcamGUI/PreferencesUI.py:5325 flatcamTools/ToolTransform.py:237 +#: flatcamGUI/PreferencesUI.py:5326 flatcamTools/ToolTransform.py:237 msgid "Y val" msgstr "Valor Y" -#: flatcamGUI/PreferencesUI.py:5327 flatcamTools/ToolTransform.py:239 +#: flatcamGUI/PreferencesUI.py:5328 flatcamTools/ToolTransform.py:239 msgid "Distance to offset on Y axis. In current units." msgstr "Distancia a desplazamiento en el eje Y. En unidades actuales." -#: flatcamGUI/PreferencesUI.py:5333 flatcamTools/ToolTransform.py:284 +#: flatcamGUI/PreferencesUI.py:5334 flatcamTools/ToolTransform.py:284 msgid "Mirror Reference" msgstr "Espejo de referencia" -#: flatcamGUI/PreferencesUI.py:5335 flatcamTools/ToolTransform.py:286 +#: flatcamGUI/PreferencesUI.py:5336 flatcamTools/ToolTransform.py:286 msgid "" "Flip the selected object(s)\n" "around the point in Point Entry Field.\n" @@ -11510,11 +11508,11 @@ msgstr "" "O ingrese las coords en formato (x, y) en el\n" "Campo de entrada de puntos y haga clic en Girar en X (Y)" -#: flatcamGUI/PreferencesUI.py:5346 +#: flatcamGUI/PreferencesUI.py:5347 msgid "Mirror Reference point" msgstr "Punto de Ref del Espejo" -#: flatcamGUI/PreferencesUI.py:5348 +#: flatcamGUI/PreferencesUI.py:5349 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" @@ -11525,11 +11523,11 @@ msgstr "" "La 'x' en (x, y) se usará cuando se use voltear en X y\n" "la 'y' en (x, y) se usará cuando se use voltear en Y y" -#: flatcamGUI/PreferencesUI.py:5365 +#: flatcamGUI/PreferencesUI.py:5366 msgid "SolderPaste Tool Options" msgstr "Opc de Herram. de Pasta" -#: flatcamGUI/PreferencesUI.py:5371 +#: flatcamGUI/PreferencesUI.py:5372 msgid "" "A tool to create GCode for dispensing\n" "solder paste onto a PCB." @@ -11537,49 +11535,49 @@ msgstr "" "Una herramienta para crear GCode para dispensar\n" "pasta de soldadura en una PCB." -#: flatcamGUI/PreferencesUI.py:5382 +#: flatcamGUI/PreferencesUI.py:5383 msgid "Diameters of nozzle tools, separated by ','" msgstr "Diámetros de las herramientas de boquilla, separadas por ','" -#: flatcamGUI/PreferencesUI.py:5390 +#: flatcamGUI/PreferencesUI.py:5391 msgid "New Nozzle Dia" msgstr "Nuevo diá de boquilla" -#: flatcamGUI/PreferencesUI.py:5392 flatcamTools/ToolSolderPaste.py:106 +#: flatcamGUI/PreferencesUI.py:5393 flatcamTools/ToolSolderPaste.py:106 msgid "Diameter for the new Nozzle tool to add in the Tool Table" msgstr "" "Diámetro para la nueva herramienta de boquillas para agregar en la tabla de " "herramientas" -#: flatcamGUI/PreferencesUI.py:5408 flatcamTools/ToolSolderPaste.py:182 +#: flatcamGUI/PreferencesUI.py:5409 flatcamTools/ToolSolderPaste.py:182 msgid "Z Dispense Start" msgstr "Inicio de dispen. Z" -#: flatcamGUI/PreferencesUI.py:5410 flatcamTools/ToolSolderPaste.py:184 +#: flatcamGUI/PreferencesUI.py:5411 flatcamTools/ToolSolderPaste.py:184 msgid "The height (Z) when solder paste dispensing starts." msgstr "La altura (Z) cuando comienza la dispensación de pasta de soldadura." -#: flatcamGUI/PreferencesUI.py:5421 flatcamTools/ToolSolderPaste.py:194 +#: flatcamGUI/PreferencesUI.py:5422 flatcamTools/ToolSolderPaste.py:194 msgid "Z Dispense" msgstr "Dispensación Z" -#: flatcamGUI/PreferencesUI.py:5423 flatcamTools/ToolSolderPaste.py:196 +#: flatcamGUI/PreferencesUI.py:5424 flatcamTools/ToolSolderPaste.py:196 msgid "The height (Z) when doing solder paste dispensing." msgstr "La altura (Z) al dispensar pasta de soldadura." -#: flatcamGUI/PreferencesUI.py:5434 flatcamTools/ToolSolderPaste.py:206 +#: flatcamGUI/PreferencesUI.py:5435 flatcamTools/ToolSolderPaste.py:206 msgid "Z Dispense Stop" msgstr "Parada de dispen. Z" -#: flatcamGUI/PreferencesUI.py:5436 flatcamTools/ToolSolderPaste.py:208 +#: flatcamGUI/PreferencesUI.py:5437 flatcamTools/ToolSolderPaste.py:208 msgid "The height (Z) when solder paste dispensing stops." msgstr "La altura (Z) cuando se detiene la dispensación de pasta de soldadura." -#: flatcamGUI/PreferencesUI.py:5447 flatcamTools/ToolSolderPaste.py:218 +#: flatcamGUI/PreferencesUI.py:5448 flatcamTools/ToolSolderPaste.py:218 msgid "Z Travel" msgstr "Viajar Z" -#: flatcamGUI/PreferencesUI.py:5449 flatcamTools/ToolSolderPaste.py:220 +#: flatcamGUI/PreferencesUI.py:5450 flatcamTools/ToolSolderPaste.py:220 msgid "" "The height (Z) for travel between pads\n" "(without dispensing solder paste)." @@ -11587,15 +11585,15 @@ msgstr "" "La altura (Z) para viajar entre almohadillas\n" "(sin dispensar pasta de soldadura)." -#: flatcamGUI/PreferencesUI.py:5461 flatcamTools/ToolSolderPaste.py:231 +#: flatcamGUI/PreferencesUI.py:5462 flatcamTools/ToolSolderPaste.py:231 msgid "Z Toolchange" msgstr "Cambio de herra. Z" -#: flatcamGUI/PreferencesUI.py:5463 flatcamTools/ToolSolderPaste.py:233 +#: flatcamGUI/PreferencesUI.py:5464 flatcamTools/ToolSolderPaste.py:233 msgid "The height (Z) for tool (nozzle) change." msgstr "La altura (Z) para el cambio de herramienta (boquilla)." -#: flatcamGUI/PreferencesUI.py:5472 flatcamTools/ToolSolderPaste.py:241 +#: flatcamGUI/PreferencesUI.py:5473 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." @@ -11603,11 +11601,11 @@ msgstr "" "La ubicación X, Y para el cambio de herramienta (boquilla).\n" "El formato es (x, y) donde x e y son números reales." -#: flatcamGUI/PreferencesUI.py:5486 flatcamTools/ToolSolderPaste.py:254 +#: flatcamGUI/PreferencesUI.py:5487 flatcamTools/ToolSolderPaste.py:254 msgid "Feedrate (speed) while moving on the X-Y plane." msgstr "Avance (velocidad) mientras se mueve en el plano X-Y." -#: flatcamGUI/PreferencesUI.py:5499 flatcamTools/ToolSolderPaste.py:266 +#: flatcamGUI/PreferencesUI.py:5500 flatcamTools/ToolSolderPaste.py:266 msgid "" "Feedrate (speed) while moving vertically\n" "(on Z plane)." @@ -11615,11 +11613,11 @@ msgstr "" "Avance (velocidad) mientras se mueve verticalmente\n" "(en el plano Z)." -#: flatcamGUI/PreferencesUI.py:5511 flatcamTools/ToolSolderPaste.py:277 +#: flatcamGUI/PreferencesUI.py:5512 flatcamTools/ToolSolderPaste.py:277 msgid "Feedrate Z Dispense" msgstr "Avance de Dispens. Z" -#: flatcamGUI/PreferencesUI.py:5513 +#: flatcamGUI/PreferencesUI.py:5514 msgid "" "Feedrate (speed) while moving up vertically\n" "to Dispense position (on Z plane)." @@ -11627,11 +11625,11 @@ msgstr "" "Avance (velocidad) mientras se mueve verticalmente\n" "para dispensar la posición (en el plano Z)." -#: flatcamGUI/PreferencesUI.py:5524 flatcamTools/ToolSolderPaste.py:289 +#: flatcamGUI/PreferencesUI.py:5525 flatcamTools/ToolSolderPaste.py:289 msgid "Spindle Speed FWD" msgstr "Veloc. del husillo FWD" -#: flatcamGUI/PreferencesUI.py:5526 flatcamTools/ToolSolderPaste.py:291 +#: flatcamGUI/PreferencesUI.py:5527 flatcamTools/ToolSolderPaste.py:291 msgid "" "The dispenser speed while pushing solder paste\n" "through the dispenser nozzle." @@ -11639,19 +11637,19 @@ msgstr "" "La velocidad del dispensador mientras empuja la pasta de soldadura\n" "a través de la boquilla dispensadora." -#: flatcamGUI/PreferencesUI.py:5538 flatcamTools/ToolSolderPaste.py:302 +#: flatcamGUI/PreferencesUI.py:5539 flatcamTools/ToolSolderPaste.py:302 msgid "Dwell FWD" msgstr "Morar FWD" -#: flatcamGUI/PreferencesUI.py:5540 flatcamTools/ToolSolderPaste.py:304 +#: flatcamGUI/PreferencesUI.py:5541 flatcamTools/ToolSolderPaste.py:304 msgid "Pause after solder dispensing." msgstr "Pausa después de la dispensación de soldadura." -#: flatcamGUI/PreferencesUI.py:5550 flatcamTools/ToolSolderPaste.py:313 +#: flatcamGUI/PreferencesUI.py:5551 flatcamTools/ToolSolderPaste.py:313 msgid "Spindle Speed REV" msgstr "Veloc. del husillo REV" -#: flatcamGUI/PreferencesUI.py:5552 flatcamTools/ToolSolderPaste.py:315 +#: flatcamGUI/PreferencesUI.py:5553 flatcamTools/ToolSolderPaste.py:315 msgid "" "The dispenser speed while retracting solder paste\n" "through the dispenser nozzle." @@ -11659,11 +11657,11 @@ msgstr "" "La velocidad del dispensador mientras se retrae la pasta de soldadura\n" "a través de la boquilla dispensadora." -#: flatcamGUI/PreferencesUI.py:5564 flatcamTools/ToolSolderPaste.py:326 +#: flatcamGUI/PreferencesUI.py:5565 flatcamTools/ToolSolderPaste.py:326 msgid "Dwell REV" msgstr "Morar REV" -#: flatcamGUI/PreferencesUI.py:5566 flatcamTools/ToolSolderPaste.py:328 +#: flatcamGUI/PreferencesUI.py:5567 flatcamTools/ToolSolderPaste.py:328 msgid "" "Pause after solder paste dispenser retracted,\n" "to allow pressure equilibrium." @@ -11671,15 +11669,15 @@ msgstr "" "Pausa después de que el dispensador de pasta de soldadura se retraiga,\n" "para permitir el equilibrio de presión." -#: flatcamGUI/PreferencesUI.py:5575 flatcamTools/ToolSolderPaste.py:336 +#: flatcamGUI/PreferencesUI.py:5576 flatcamTools/ToolSolderPaste.py:336 msgid "Files that control the GCode generation." msgstr "Archivos que controlan la generación de GCode." -#: flatcamGUI/PreferencesUI.py:5590 +#: flatcamGUI/PreferencesUI.py:5591 msgid "Substractor Tool Options" msgstr "Opc. de herra. de substractor" -#: flatcamGUI/PreferencesUI.py:5596 +#: flatcamGUI/PreferencesUI.py:5597 msgid "" "A tool to substract one Gerber or Geometry object\n" "from another of the same type." @@ -11687,21 +11685,21 @@ msgstr "" "Una herramienta para restar un objeto Gerber o Geometry\n" "de otro del mismo tipo." -#: flatcamGUI/PreferencesUI.py:5601 flatcamTools/ToolSub.py:149 +#: flatcamGUI/PreferencesUI.py:5602 flatcamTools/ToolSub.py:149 msgid "Close paths" msgstr "Caminos cercanos" -#: flatcamGUI/PreferencesUI.py:5602 +#: flatcamGUI/PreferencesUI.py:5603 msgid "" "Checking this will close the paths cut by the Geometry substractor object." msgstr "" "Marcar esto cerrará los caminos cortados por el objeto sustrato Geometry." -#: flatcamGUI/PreferencesUI.py:5613 +#: flatcamGUI/PreferencesUI.py:5614 msgid "Check Rules Tool Options" msgstr "Opciones de la Herram. Verifique Reglas" -#: flatcamGUI/PreferencesUI.py:5618 +#: flatcamGUI/PreferencesUI.py:5619 msgid "" "A tool to check if Gerber files are within a set\n" "of Manufacturing Rules." @@ -11710,20 +11708,20 @@ msgstr "" "conjunto\n" "de las normas de fabricación." -#: flatcamGUI/PreferencesUI.py:5628 flatcamTools/ToolRulesCheck.py:256 +#: flatcamGUI/PreferencesUI.py:5629 flatcamTools/ToolRulesCheck.py:256 #: flatcamTools/ToolRulesCheck.py:920 msgid "Trace Size" msgstr "Tamaño de traza" -#: flatcamGUI/PreferencesUI.py:5630 flatcamTools/ToolRulesCheck.py:258 +#: flatcamGUI/PreferencesUI.py:5631 flatcamTools/ToolRulesCheck.py:258 msgid "This checks if the minimum size for traces is met." msgstr "Esto comprueba si se cumple el tamaño mínimo para las trazas." -#: 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 +#: flatcamGUI/PreferencesUI.py:5641 flatcamGUI/PreferencesUI.py:5661 +#: flatcamGUI/PreferencesUI.py:5681 flatcamGUI/PreferencesUI.py:5701 +#: flatcamGUI/PreferencesUI.py:5721 flatcamGUI/PreferencesUI.py:5741 +#: flatcamGUI/PreferencesUI.py:5761 flatcamGUI/PreferencesUI.py:5781 +#: flatcamGUI/PreferencesUI.py:5803 flatcamGUI/PreferencesUI.py:5823 #: flatcamTools/ToolRulesCheck.py:268 flatcamTools/ToolRulesCheck.py:290 #: flatcamTools/ToolRulesCheck.py:313 flatcamTools/ToolRulesCheck.py:336 #: flatcamTools/ToolRulesCheck.py:359 flatcamTools/ToolRulesCheck.py:382 @@ -11732,16 +11730,16 @@ msgstr "Esto comprueba si se cumple el tamaño mínimo para las trazas." msgid "Min value" msgstr "Valor mínimo" -#: flatcamGUI/PreferencesUI.py:5642 flatcamTools/ToolRulesCheck.py:270 +#: flatcamGUI/PreferencesUI.py:5643 flatcamTools/ToolRulesCheck.py:270 msgid "Minimum acceptable trace size." msgstr "Tamaño de traza mínimo aceptable." -#: flatcamGUI/PreferencesUI.py:5647 flatcamTools/ToolRulesCheck.py:277 +#: flatcamGUI/PreferencesUI.py:5648 flatcamTools/ToolRulesCheck.py:277 #: flatcamTools/ToolRulesCheck.py:1148 flatcamTools/ToolRulesCheck.py:1178 msgid "Copper to Copper clearance" msgstr "Distancia de Cobre a Cobre" -#: flatcamGUI/PreferencesUI.py:5649 flatcamTools/ToolRulesCheck.py:279 +#: flatcamGUI/PreferencesUI.py:5650 flatcamTools/ToolRulesCheck.py:279 msgid "" "This checks if the minimum clearance between copper\n" "features is met." @@ -11749,23 +11747,23 @@ msgstr "" "Esto comprueba si la distancia mínima entre cobre\n" "huellas se cumplen." -#: 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 +#: flatcamGUI/PreferencesUI.py:5663 flatcamGUI/PreferencesUI.py:5683 +#: flatcamGUI/PreferencesUI.py:5703 flatcamGUI/PreferencesUI.py:5723 +#: flatcamGUI/PreferencesUI.py:5743 flatcamGUI/PreferencesUI.py:5763 +#: flatcamGUI/PreferencesUI.py:5825 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 "Valor mínimo de distancia aceptable." -#: flatcamGUI/PreferencesUI.py:5667 flatcamTools/ToolRulesCheck.py:300 +#: flatcamGUI/PreferencesUI.py:5668 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 "Distancia de Cobre a Contorno" -#: flatcamGUI/PreferencesUI.py:5669 flatcamTools/ToolRulesCheck.py:302 +#: flatcamGUI/PreferencesUI.py:5670 flatcamTools/ToolRulesCheck.py:302 msgid "" "This checks if the minimum clearance between copper\n" "features and the outline is met." @@ -11773,11 +11771,11 @@ msgstr "" "Esto comprueba si la distancia mínima entre cobre\n" "huellas y el esquema se cumple." -#: flatcamGUI/PreferencesUI.py:5687 flatcamTools/ToolRulesCheck.py:323 +#: flatcamGUI/PreferencesUI.py:5688 flatcamTools/ToolRulesCheck.py:323 msgid "Silk to Silk Clearance" msgstr "Distancia de Serigrafía a Serigrafía" -#: flatcamGUI/PreferencesUI.py:5689 flatcamTools/ToolRulesCheck.py:325 +#: flatcamGUI/PreferencesUI.py:5690 flatcamTools/ToolRulesCheck.py:325 msgid "" "This checks if the minimum clearance between silkscreen\n" "features and silkscreen features is met." @@ -11785,13 +11783,13 @@ msgstr "" "Esto comprueba si la distancia mínima entre serigrafía\n" "huellas y huellas de serigrafía se cumplen." -#: flatcamGUI/PreferencesUI.py:5707 flatcamTools/ToolRulesCheck.py:346 +#: flatcamGUI/PreferencesUI.py:5708 flatcamTools/ToolRulesCheck.py:346 #: flatcamTools/ToolRulesCheck.py:1317 flatcamTools/ToolRulesCheck.py:1323 #: flatcamTools/ToolRulesCheck.py:1341 msgid "Silk to Solder Mask Clearance" msgstr "Serigrafía para Soldar Máscara Distancia" -#: flatcamGUI/PreferencesUI.py:5709 flatcamTools/ToolRulesCheck.py:348 +#: flatcamGUI/PreferencesUI.py:5710 flatcamTools/ToolRulesCheck.py:348 msgid "" "This checks if the minimum clearance between silkscreen\n" "features and soldermask features is met." @@ -11799,13 +11797,13 @@ msgstr "" "Esto comprueba si la distancia mínima entre serigrafía\n" "Traces y soldermask traces se cumplen." -#: flatcamGUI/PreferencesUI.py:5727 flatcamTools/ToolRulesCheck.py:369 +#: flatcamGUI/PreferencesUI.py:5728 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 "Serigrafía para Contorno Distancia" -#: flatcamGUI/PreferencesUI.py:5729 flatcamTools/ToolRulesCheck.py:371 +#: flatcamGUI/PreferencesUI.py:5730 flatcamTools/ToolRulesCheck.py:371 msgid "" "This checks if the minimum clearance between silk\n" "features and the outline is met." @@ -11813,12 +11811,12 @@ msgstr "" "Esto verifica si el espacio libre mínimo entre la serigrafía\n" "huellas y el contorno se cumple." -#: flatcamGUI/PreferencesUI.py:5747 flatcamTools/ToolRulesCheck.py:392 +#: flatcamGUI/PreferencesUI.py:5748 flatcamTools/ToolRulesCheck.py:392 #: flatcamTools/ToolRulesCheck.py:1409 flatcamTools/ToolRulesCheck.py:1436 msgid "Minimum Solder Mask Sliver" msgstr "Astilla de máscara de soldadura mínima" -#: flatcamGUI/PreferencesUI.py:5749 flatcamTools/ToolRulesCheck.py:394 +#: flatcamGUI/PreferencesUI.py:5750 flatcamTools/ToolRulesCheck.py:394 msgid "" "This checks if the minimum clearance between soldermask\n" "features and soldermask features is met." @@ -11826,13 +11824,13 @@ msgstr "" "Esto verifica si la distancia mínima entre la máscara de soldadura\n" "rastros y rastros de máscara de soldadura se cumplen." -#: flatcamGUI/PreferencesUI.py:5767 flatcamTools/ToolRulesCheck.py:415 +#: flatcamGUI/PreferencesUI.py:5768 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 "Anillo anular mínimo" -#: flatcamGUI/PreferencesUI.py:5769 flatcamTools/ToolRulesCheck.py:417 +#: flatcamGUI/PreferencesUI.py:5770 flatcamTools/ToolRulesCheck.py:417 msgid "" "This checks if the minimum copper ring left by drilling\n" "a hole into a pad is met." @@ -11840,16 +11838,16 @@ msgstr "" "Esto verifica si queda el anillo de cobre mínimo al perforar\n" "Se encuentra un agujero en una almohadilla." -#: flatcamGUI/PreferencesUI.py:5782 flatcamTools/ToolRulesCheck.py:430 +#: flatcamGUI/PreferencesUI.py:5783 flatcamTools/ToolRulesCheck.py:430 msgid "Minimum acceptable ring value." msgstr "Valor mínimo aceptable del anillo." -#: flatcamGUI/PreferencesUI.py:5789 flatcamTools/ToolRulesCheck.py:440 +#: flatcamGUI/PreferencesUI.py:5790 flatcamTools/ToolRulesCheck.py:440 #: flatcamTools/ToolRulesCheck.py:864 msgid "Hole to Hole Clearance" msgstr "Distancia entre Agujeros" -#: flatcamGUI/PreferencesUI.py:5791 flatcamTools/ToolRulesCheck.py:442 +#: flatcamGUI/PreferencesUI.py:5792 flatcamTools/ToolRulesCheck.py:442 msgid "" "This checks if the minimum clearance between a drill hole\n" "and another drill hole is met." @@ -11857,16 +11855,16 @@ msgstr "" "Esto verifica si la distancia mínima entre un taladro\n" "y se encuentra otro taladro." -#: flatcamGUI/PreferencesUI.py:5804 flatcamTools/ToolRulesCheck.py:478 +#: flatcamGUI/PreferencesUI.py:5805 flatcamTools/ToolRulesCheck.py:478 msgid "Minimum acceptable drill size." msgstr "Tamaño mínimo aceptable de perforación." -#: flatcamGUI/PreferencesUI.py:5809 flatcamTools/ToolRulesCheck.py:463 +#: flatcamGUI/PreferencesUI.py:5810 flatcamTools/ToolRulesCheck.py:463 #: flatcamTools/ToolRulesCheck.py:838 msgid "Hole Size" msgstr "Tamaño del Agujero" -#: flatcamGUI/PreferencesUI.py:5811 flatcamTools/ToolRulesCheck.py:465 +#: flatcamGUI/PreferencesUI.py:5812 flatcamTools/ToolRulesCheck.py:465 msgid "" "This checks if the drill holes\n" "sizes are above the threshold." @@ -11874,11 +11872,11 @@ msgstr "" "Esto comprueba si los agujeros de perforación\n" "Los tamaños están por encima del umbral." -#: flatcamGUI/PreferencesUI.py:5836 +#: flatcamGUI/PreferencesUI.py:5837 msgid "Optimal Tool Options" msgstr "Opciones de Herram. Óptimas" -#: flatcamGUI/PreferencesUI.py:5842 +#: flatcamGUI/PreferencesUI.py:5843 msgid "" "A tool to find the minimum distance between\n" "every two Gerber geometric elements" @@ -11886,20 +11884,20 @@ msgstr "" "Una herramienta para encontrar la distancia mínima entre\n" "cada dos elementos geométricos de Gerber" -#: flatcamGUI/PreferencesUI.py:5857 flatcamTools/ToolOptimal.py:78 +#: flatcamGUI/PreferencesUI.py:5858 flatcamTools/ToolOptimal.py:78 msgid "Precision" msgstr "Precisión" -#: flatcamGUI/PreferencesUI.py:5859 +#: flatcamGUI/PreferencesUI.py:5860 msgid "Number of decimals for the distances and coordinates in this tool." msgstr "" "Número de decimales para las distancias y coordenadas en esta herramienta." -#: flatcamGUI/PreferencesUI.py:5873 +#: flatcamGUI/PreferencesUI.py:5874 msgid "QRCode Tool Options" msgstr "Opciones de la herram. QRCode" -#: flatcamGUI/PreferencesUI.py:5879 +#: flatcamGUI/PreferencesUI.py:5880 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." @@ -11907,11 +11905,11 @@ msgstr "" "Una herramienta para crear un QRCode que se puede insertar\n" "en un archivo Gerber seleccionado, o puede exportarse como un archivo." -#: flatcamGUI/PreferencesUI.py:5891 flatcamTools/ToolQRCode.py:99 +#: flatcamGUI/PreferencesUI.py:5892 flatcamTools/ToolQRCode.py:99 msgid "Version" msgstr "Versión" -#: flatcamGUI/PreferencesUI.py:5893 flatcamTools/ToolQRCode.py:101 +#: flatcamGUI/PreferencesUI.py:5894 flatcamTools/ToolQRCode.py:101 msgid "" "QRCode version can have values from 1 (21x21 boxes)\n" "to 40 (177x177 boxes)." @@ -11919,11 +11917,11 @@ msgstr "" "La versión de QRCode puede tener valores de 1 (21x21 elementos)\n" "a 40 (177x177 elementos)." -#: flatcamGUI/PreferencesUI.py:5904 flatcamTools/ToolQRCode.py:112 +#: flatcamGUI/PreferencesUI.py:5905 flatcamTools/ToolQRCode.py:112 msgid "Error correction" msgstr "Corrección de error" -#: flatcamGUI/PreferencesUI.py:5906 flatcamGUI/PreferencesUI.py:5917 +#: flatcamGUI/PreferencesUI.py:5907 flatcamGUI/PreferencesUI.py:5918 #: flatcamTools/ToolQRCode.py:114 flatcamTools/ToolQRCode.py:125 #, python-format msgid "" @@ -11940,11 +11938,11 @@ msgstr "" "Q = se puede corregir un máximo de 25%% de errores\n" "H = máximo 30 %% de errores pueden ser corregidos." -#: flatcamGUI/PreferencesUI.py:5927 flatcamTools/ToolQRCode.py:135 +#: flatcamGUI/PreferencesUI.py:5928 flatcamTools/ToolQRCode.py:135 msgid "Box Size" msgstr "Tamaño de Elementos" -#: flatcamGUI/PreferencesUI.py:5929 flatcamTools/ToolQRCode.py:137 +#: flatcamGUI/PreferencesUI.py:5930 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." @@ -11952,11 +11950,11 @@ msgstr "" "El tamaño del elemento controla el tamaño general del código QR\n" "ajustando el tamaño de cada cuadro en el código." -#: flatcamGUI/PreferencesUI.py:5940 flatcamTools/ToolQRCode.py:148 +#: flatcamGUI/PreferencesUI.py:5941 flatcamTools/ToolQRCode.py:148 msgid "Border Size" msgstr "Tamaño de borde" -#: flatcamGUI/PreferencesUI.py:5942 flatcamTools/ToolQRCode.py:150 +#: flatcamGUI/PreferencesUI.py:5943 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." @@ -11965,23 +11963,23 @@ msgstr "" "El valor predeterminado es 4. El ancho del espacio libre alrededor del " "Código QR." -#: flatcamGUI/PreferencesUI.py:5953 flatcamTools/ToolQRCode.py:162 +#: flatcamGUI/PreferencesUI.py:5954 flatcamTools/ToolQRCode.py:162 msgid "QRCode Data" msgstr "Datos de QRCode" -#: flatcamGUI/PreferencesUI.py:5955 flatcamTools/ToolQRCode.py:164 +#: flatcamGUI/PreferencesUI.py:5956 flatcamTools/ToolQRCode.py:164 msgid "QRCode Data. Alphanumeric text to be encoded in the QRCode." msgstr "Datos de QRCode. Texto alfanumérico a codificar en el Código QR." -#: flatcamGUI/PreferencesUI.py:5959 flatcamTools/ToolQRCode.py:168 +#: flatcamGUI/PreferencesUI.py:5960 flatcamTools/ToolQRCode.py:168 msgid "Add here the text to be included in the QRCode..." msgstr "Agregue aquí el texto que se incluirá en el QRCode ..." -#: flatcamGUI/PreferencesUI.py:5965 flatcamTools/ToolQRCode.py:174 +#: flatcamGUI/PreferencesUI.py:5966 flatcamTools/ToolQRCode.py:174 msgid "Polarity" msgstr "Polaridad" -#: flatcamGUI/PreferencesUI.py:5967 flatcamTools/ToolQRCode.py:176 +#: flatcamGUI/PreferencesUI.py:5968 flatcamTools/ToolQRCode.py:176 msgid "" "Choose the polarity of the QRCode.\n" "It can be drawn in a negative way (squares are clear)\n" @@ -11991,17 +11989,17 @@ msgstr "" "Se puede dibujar de forma negativa (los cuadrados son claros)\n" "o de manera positiva (los cuadrados son opacos)." -#: flatcamGUI/PreferencesUI.py:5971 flatcamTools/ToolFilm.py:296 +#: flatcamGUI/PreferencesUI.py:5972 flatcamTools/ToolFilm.py:296 #: flatcamTools/ToolQRCode.py:180 msgid "Negative" msgstr "Negativa" -#: flatcamGUI/PreferencesUI.py:5972 flatcamTools/ToolFilm.py:295 +#: flatcamGUI/PreferencesUI.py:5973 flatcamTools/ToolFilm.py:295 #: flatcamTools/ToolQRCode.py:181 msgid "Positive" msgstr "Positivo" -#: flatcamGUI/PreferencesUI.py:5974 flatcamTools/ToolQRCode.py:183 +#: flatcamGUI/PreferencesUI.py:5975 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" @@ -12013,7 +12011,7 @@ msgstr "" "ser agregado como positivo Si se agrega a un cobre Gerber\n" "entonces quizás el QRCode se pueda agregar como negativo." -#: flatcamGUI/PreferencesUI.py:5985 flatcamGUI/PreferencesUI.py:5991 +#: flatcamGUI/PreferencesUI.py:5986 flatcamGUI/PreferencesUI.py:5992 #: flatcamTools/ToolQRCode.py:194 flatcamTools/ToolQRCode.py:200 msgid "" "The bounding box, meaning the empty space that surrounds\n" @@ -12022,33 +12020,33 @@ msgstr "" "El cuadro delimitador, que significa el espacio vacío que rodea\n" "La geometría QRCode, puede tener una forma redondeada o cuadrada." -#: flatcamGUI/PreferencesUI.py:5988 flatcamTools/ToolQRCode.py:197 +#: flatcamGUI/PreferencesUI.py:5989 flatcamTools/ToolQRCode.py:197 msgid "Rounded" msgstr "Redondeado" -#: flatcamGUI/PreferencesUI.py:5998 flatcamTools/ToolQRCode.py:228 +#: flatcamGUI/PreferencesUI.py:5999 flatcamTools/ToolQRCode.py:228 msgid "Fill Color" msgstr "Color de relleno" -#: flatcamGUI/PreferencesUI.py:6000 flatcamTools/ToolQRCode.py:230 +#: flatcamGUI/PreferencesUI.py:6001 flatcamTools/ToolQRCode.py:230 msgid "Set the QRCode fill color (squares color)." msgstr "" "Establezca el color de relleno del código QR (color de cuadrados / " "elementos)." -#: flatcamGUI/PreferencesUI.py:6019 flatcamTools/ToolQRCode.py:252 +#: flatcamGUI/PreferencesUI.py:6020 flatcamTools/ToolQRCode.py:252 msgid "Back Color" msgstr "Color de fondo" -#: flatcamGUI/PreferencesUI.py:6021 flatcamTools/ToolQRCode.py:254 +#: flatcamGUI/PreferencesUI.py:6022 flatcamTools/ToolQRCode.py:254 msgid "Set the QRCode background color." msgstr "Establece el color de fondo del QRCode." -#: flatcamGUI/PreferencesUI.py:6061 +#: flatcamGUI/PreferencesUI.py:6062 msgid "Copper Thieving Tool Options" msgstr "Opc. de Herram. de Copper Thieving" -#: flatcamGUI/PreferencesUI.py:6073 +#: flatcamGUI/PreferencesUI.py:6074 msgid "" "A tool to generate a Copper Thieving that can be added\n" "to a selected Gerber file." @@ -12056,16 +12054,16 @@ msgstr "" "Una herramienta para generar un ladrón de cobre que se puede agregar\n" "a un archivo Gerber seleccionado." -#: flatcamGUI/PreferencesUI.py:6081 +#: flatcamGUI/PreferencesUI.py:6082 msgid "Number of steps (lines) used to interpolate circles." msgstr "Número de pasos (líneas) utilizados para interpolar círculos." -#: flatcamGUI/PreferencesUI.py:6091 flatcamGUI/PreferencesUI.py:6295 +#: flatcamGUI/PreferencesUI.py:6092 flatcamGUI/PreferencesUI.py:6296 #: flatcamTools/ToolCopperThieving.py:96 flatcamTools/ToolCopperThieving.py:429 msgid "Clearance" msgstr "Despeje" -#: flatcamGUI/PreferencesUI.py:6093 +#: flatcamGUI/PreferencesUI.py:6094 msgid "" "This set the distance between the copper Thieving components\n" "(the polygon fill may be split in multiple polygons)\n" @@ -12075,22 +12073,22 @@ msgstr "" "(el relleno de polígono puede dividirse en múltiples polígonos)\n" "y las huellas de cobre en el archivo Gerber." -#: flatcamGUI/PreferencesUI.py:6121 flatcamTools/ToolCopperThieving.py:126 +#: flatcamGUI/PreferencesUI.py:6122 flatcamTools/ToolCopperThieving.py:126 #: flatcamTools/ToolNonCopperClear.py:436 flatcamTools/ToolPaint.py:314 msgid "Area Selection" msgstr "Selección de área" -#: flatcamGUI/PreferencesUI.py:6122 flatcamTools/ToolCopperThieving.py:127 +#: flatcamGUI/PreferencesUI.py:6123 flatcamTools/ToolCopperThieving.py:127 #: flatcamTools/ToolNonCopperClear.py:437 flatcamTools/ToolPaint.py:316 msgid "Reference Object" msgstr "Objeto de referencia" -#: flatcamGUI/PreferencesUI.py:6124 flatcamTools/ToolCopperThieving.py:129 +#: flatcamGUI/PreferencesUI.py:6125 flatcamTools/ToolCopperThieving.py:129 #: flatcamTools/ToolNonCopperClear.py:439 msgid "Reference:" msgstr "Referencia:" -#: flatcamGUI/PreferencesUI.py:6126 +#: flatcamGUI/PreferencesUI.py:6127 msgid "" "- 'Itself' - the copper Thieving extent is based on the object extent.\n" "- 'Area Selection' - left mouse click to start selection of the area to be " @@ -12105,20 +12103,20 @@ msgstr "" "- 'Objeto de referencia': robará cobre dentro del área especificada por otro " "objeto." -#: flatcamGUI/PreferencesUI.py:6135 flatcamTools/ToolCopperThieving.py:170 +#: flatcamGUI/PreferencesUI.py:6136 flatcamTools/ToolCopperThieving.py:170 msgid "Rectangular" msgstr "Rectangular" -#: flatcamGUI/PreferencesUI.py:6136 flatcamTools/ToolCopperThieving.py:171 +#: flatcamGUI/PreferencesUI.py:6137 flatcamTools/ToolCopperThieving.py:171 msgid "Minimal" msgstr "Mínimo" -#: flatcamGUI/PreferencesUI.py:6138 flatcamTools/ToolCopperThieving.py:173 +#: flatcamGUI/PreferencesUI.py:6139 flatcamTools/ToolCopperThieving.py:173 #: flatcamTools/ToolFilm.py:113 msgid "Box Type:" msgstr "Tipo de cercado:" -#: flatcamGUI/PreferencesUI.py:6140 flatcamTools/ToolCopperThieving.py:175 +#: flatcamGUI/PreferencesUI.py:6141 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." @@ -12126,23 +12124,23 @@ msgstr "" "- 'Rectangular': el cuadro delimitador tendrá forma rectangular.\n" "- 'Mínimo': el cuadro delimitador tendrá forma de casco convexo." -#: flatcamGUI/PreferencesUI.py:6154 flatcamTools/ToolCopperThieving.py:191 +#: flatcamGUI/PreferencesUI.py:6155 flatcamTools/ToolCopperThieving.py:191 msgid "Dots Grid" msgstr "Cuadrícula de puntos" -#: flatcamGUI/PreferencesUI.py:6155 flatcamTools/ToolCopperThieving.py:192 +#: flatcamGUI/PreferencesUI.py:6156 flatcamTools/ToolCopperThieving.py:192 msgid "Squares Grid" msgstr "Cuadrícula de cuadrados" -#: flatcamGUI/PreferencesUI.py:6156 flatcamTools/ToolCopperThieving.py:193 +#: flatcamGUI/PreferencesUI.py:6157 flatcamTools/ToolCopperThieving.py:193 msgid "Lines Grid" msgstr "Cuadrícula de líneas" -#: flatcamGUI/PreferencesUI.py:6158 flatcamTools/ToolCopperThieving.py:195 +#: flatcamGUI/PreferencesUI.py:6159 flatcamTools/ToolCopperThieving.py:195 msgid "Fill Type:" msgstr "Tipo de relleno:" -#: flatcamGUI/PreferencesUI.py:6160 flatcamTools/ToolCopperThieving.py:197 +#: flatcamGUI/PreferencesUI.py:6161 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" @@ -12156,54 +12154,54 @@ msgstr "" "cuadrados.\n" "- 'Cuadrícula de líneas': el área vacía se rellenará con un patrón de líneas." -#: flatcamGUI/PreferencesUI.py:6168 flatcamTools/ToolCopperThieving.py:216 +#: flatcamGUI/PreferencesUI.py:6169 flatcamTools/ToolCopperThieving.py:216 msgid "Dots Grid Parameters" msgstr "Parámetros de cuadrícula de puntos" -#: flatcamGUI/PreferencesUI.py:6174 flatcamTools/ToolCopperThieving.py:222 +#: flatcamGUI/PreferencesUI.py:6175 flatcamTools/ToolCopperThieving.py:222 msgid "Dot diameter in Dots Grid." msgstr "Diámetro de punto en cuadrícula de puntos." -#: flatcamGUI/PreferencesUI.py:6185 flatcamGUI/PreferencesUI.py:6214 -#: flatcamGUI/PreferencesUI.py:6243 flatcamTools/ToolCopperThieving.py:233 +#: flatcamGUI/PreferencesUI.py:6186 flatcamGUI/PreferencesUI.py:6215 +#: flatcamGUI/PreferencesUI.py:6244 flatcamTools/ToolCopperThieving.py:233 #: flatcamTools/ToolCopperThieving.py:273 #: flatcamTools/ToolCopperThieving.py:313 msgid "Spacing" msgstr "Spacing" -#: flatcamGUI/PreferencesUI.py:6187 flatcamTools/ToolCopperThieving.py:235 +#: flatcamGUI/PreferencesUI.py:6188 flatcamTools/ToolCopperThieving.py:235 msgid "Distance between each two dots in Dots Grid." msgstr "Distancia entre cada dos puntos en la cuadrícula de puntos." -#: flatcamGUI/PreferencesUI.py:6197 flatcamTools/ToolCopperThieving.py:256 +#: flatcamGUI/PreferencesUI.py:6198 flatcamTools/ToolCopperThieving.py:256 msgid "Squares Grid Parameters" msgstr "Parámetros de la cuadrícula de cuadrados" -#: flatcamGUI/PreferencesUI.py:6203 flatcamTools/ToolCopperThieving.py:262 +#: flatcamGUI/PreferencesUI.py:6204 flatcamTools/ToolCopperThieving.py:262 msgid "Square side size in Squares Grid." msgstr "Tamaño del lado cuadrado en cuadrícula de cuadrados." -#: flatcamGUI/PreferencesUI.py:6216 flatcamTools/ToolCopperThieving.py:275 +#: flatcamGUI/PreferencesUI.py:6217 flatcamTools/ToolCopperThieving.py:275 msgid "Distance between each two squares in Squares Grid." msgstr "Distancia entre cada dos cuadrados en la cuadrícula de cuadrados." -#: flatcamGUI/PreferencesUI.py:6226 flatcamTools/ToolCopperThieving.py:296 +#: flatcamGUI/PreferencesUI.py:6227 flatcamTools/ToolCopperThieving.py:296 msgid "Lines Grid Parameters" msgstr "Parámetros de cuadrícula de líneas" -#: flatcamGUI/PreferencesUI.py:6232 flatcamTools/ToolCopperThieving.py:302 +#: flatcamGUI/PreferencesUI.py:6233 flatcamTools/ToolCopperThieving.py:302 msgid "Line thickness size in Lines Grid." msgstr "Tamaño del grosor de línea en la cuadrícula de líneas." -#: flatcamGUI/PreferencesUI.py:6245 flatcamTools/ToolCopperThieving.py:315 +#: flatcamGUI/PreferencesUI.py:6246 flatcamTools/ToolCopperThieving.py:315 msgid "Distance between each two lines in Lines Grid." msgstr "Distancia entre cada dos líneas en la cuadrícula de líneas." -#: flatcamGUI/PreferencesUI.py:6255 flatcamTools/ToolCopperThieving.py:353 +#: flatcamGUI/PreferencesUI.py:6256 flatcamTools/ToolCopperThieving.py:353 msgid "Robber Bar Parameters" msgstr "Parámetros de la Robber Bar" -#: flatcamGUI/PreferencesUI.py:6257 flatcamTools/ToolCopperThieving.py:355 +#: flatcamGUI/PreferencesUI.py:6258 flatcamTools/ToolCopperThieving.py:355 msgid "" "Parameters used for the robber bar.\n" "Robber bar = copper border to help in pattern hole plating." @@ -12211,27 +12209,27 @@ msgstr "" "Parámetros utilizados para la Robber Bar.\n" "Robber Bar = borde de cobre para ayudar en el enchapado de agujeros." -#: flatcamGUI/PreferencesUI.py:6265 flatcamTools/ToolCopperThieving.py:363 +#: flatcamGUI/PreferencesUI.py:6266 flatcamTools/ToolCopperThieving.py:363 msgid "Bounding box margin for robber bar." msgstr "Margen límite del recinto para Robber Bar." -#: flatcamGUI/PreferencesUI.py:6276 flatcamTools/ToolCopperThieving.py:374 +#: flatcamGUI/PreferencesUI.py:6277 flatcamTools/ToolCopperThieving.py:374 msgid "Thickness" msgstr "Espesor" -#: flatcamGUI/PreferencesUI.py:6278 flatcamTools/ToolCopperThieving.py:376 +#: flatcamGUI/PreferencesUI.py:6279 flatcamTools/ToolCopperThieving.py:376 msgid "The robber bar thickness." msgstr "El grosor de la Robber Bar." -#: flatcamGUI/PreferencesUI.py:6288 flatcamTools/ToolCopperThieving.py:407 +#: flatcamGUI/PreferencesUI.py:6289 flatcamTools/ToolCopperThieving.py:407 msgid "Pattern Plating Mask" msgstr "Máscara de baño de patrones" -#: flatcamGUI/PreferencesUI.py:6290 flatcamTools/ToolCopperThieving.py:409 +#: flatcamGUI/PreferencesUI.py:6291 flatcamTools/ToolCopperThieving.py:409 msgid "Generate a mask for pattern plating." msgstr "Genere una máscara para el enchapado de patrones." -#: flatcamGUI/PreferencesUI.py:6297 flatcamTools/ToolCopperThieving.py:431 +#: flatcamGUI/PreferencesUI.py:6298 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." @@ -12239,16 +12237,16 @@ msgstr "" "La distancia entre los posibles elementos de Copper Thieving.\n" "y / o Robber Bar y las aberturas reales en la máscara." -#: flatcamGUI/PreferencesUI.py:6316 +#: flatcamGUI/PreferencesUI.py:6317 msgid "Fiducials Tool Options" msgstr "Opc. de Herram. Fiduciales" -#: flatcamGUI/PreferencesUI.py:6327 flatcamGUI/PreferencesUI.py:6443 +#: flatcamGUI/PreferencesUI.py:6328 flatcamGUI/PreferencesUI.py:6444 #: flatcamTools/ToolCopperThieving.py:91 flatcamTools/ToolFiducials.py:151 msgid "Parameters used for this tool." msgstr "Parámetros utilizados para esta herramienta." -#: flatcamGUI/PreferencesUI.py:6334 flatcamTools/ToolFiducials.py:158 +#: flatcamGUI/PreferencesUI.py:6335 flatcamTools/ToolFiducials.py:158 msgid "" "This set the fiducial diameter if fiducial type is circular,\n" "otherwise is the size of the fiducial.\n" @@ -12258,20 +12256,19 @@ msgstr "" "de lo contrario es el tamaño del fiducial.\n" "La apertura de la máscara de soldadura es el doble que eso." -#: flatcamGUI/PreferencesUI.py:6362 flatcamTools/ToolFiducials.py:186 +#: flatcamGUI/PreferencesUI.py:6363 flatcamTools/ToolFiducials.py:186 msgid "Auto" msgstr "Auto" -#: flatcamGUI/PreferencesUI.py:6363 flatcamTools/ToolFiducials.py:187 -#| msgid "Manual Geo" +#: flatcamGUI/PreferencesUI.py:6364 flatcamTools/ToolFiducials.py:187 msgid "Manual" msgstr "Manual" -#: flatcamGUI/PreferencesUI.py:6365 flatcamTools/ToolFiducials.py:189 +#: flatcamGUI/PreferencesUI.py:6366 flatcamTools/ToolFiducials.py:189 msgid "Mode:" msgstr "Modo:" -#: flatcamGUI/PreferencesUI.py:6367 +#: flatcamGUI/PreferencesUI.py:6368 msgid "" "- 'Auto' - automatic placement of fiducials in the corners of the bounding " "box.\n" @@ -12281,19 +12278,19 @@ msgstr "" "delimitador.\n" "- 'Manual' - colocación manual de fiduciales." -#: flatcamGUI/PreferencesUI.py:6375 flatcamTools/ToolFiducials.py:199 +#: flatcamGUI/PreferencesUI.py:6376 flatcamTools/ToolFiducials.py:199 msgid "Up" msgstr "Arriba" -#: flatcamGUI/PreferencesUI.py:6376 flatcamTools/ToolFiducials.py:200 +#: flatcamGUI/PreferencesUI.py:6377 flatcamTools/ToolFiducials.py:200 msgid "Down" msgstr "Abajo" -#: flatcamGUI/PreferencesUI.py:6379 flatcamTools/ToolFiducials.py:203 +#: flatcamGUI/PreferencesUI.py:6380 flatcamTools/ToolFiducials.py:203 msgid "Second fiducial" msgstr "Segundo fiducial" -#: flatcamGUI/PreferencesUI.py:6381 flatcamTools/ToolFiducials.py:205 +#: flatcamGUI/PreferencesUI.py:6382 flatcamTools/ToolFiducials.py:205 msgid "" "The position for the second fiducial.\n" "- 'Up' - the order is: bottom-left, top-left, top-right.\n" @@ -12308,19 +12305,19 @@ msgstr "" "- 'Ninguno' - no hay un segundo fiducial. El orden es: abajo a la izquierda, " "arriba a la derecha." -#: flatcamGUI/PreferencesUI.py:6397 flatcamTools/ToolFiducials.py:221 +#: flatcamGUI/PreferencesUI.py:6398 flatcamTools/ToolFiducials.py:221 msgid "Cross" msgstr "Cruce" -#: flatcamGUI/PreferencesUI.py:6398 flatcamTools/ToolFiducials.py:222 +#: flatcamGUI/PreferencesUI.py:6399 flatcamTools/ToolFiducials.py:222 msgid "Chess" msgstr "Ajedrez" -#: flatcamGUI/PreferencesUI.py:6401 flatcamTools/ToolFiducials.py:224 +#: flatcamGUI/PreferencesUI.py:6402 flatcamTools/ToolFiducials.py:224 msgid "Fiducial Type" msgstr "Tipo fiducial" -#: flatcamGUI/PreferencesUI.py:6403 flatcamTools/ToolFiducials.py:226 +#: flatcamGUI/PreferencesUI.py:6404 flatcamTools/ToolFiducials.py:226 msgid "" "The type of fiducial.\n" "- 'Circular' - this is the regular fiducial.\n" @@ -12332,19 +12329,19 @@ msgstr "" "- 'Cruce' - líneas cruzadas fiduciales.\n" "- 'Ajedrez' - patrón de ajedrez fiducial." -#: flatcamGUI/PreferencesUI.py:6412 flatcamTools/ToolFiducials.py:235 +#: flatcamGUI/PreferencesUI.py:6413 flatcamTools/ToolFiducials.py:235 msgid "Line thickness" msgstr "Grosor de la línea" -#: flatcamGUI/PreferencesUI.py:6432 +#: flatcamGUI/PreferencesUI.py:6433 msgid "Calibration Tool Options" msgstr "Opc. de Herram. de Calibración" -#: flatcamGUI/PreferencesUI.py:6448 flatcamTools/ToolCalibration.py:181 +#: flatcamGUI/PreferencesUI.py:6449 flatcamTools/ToolCalibration.py:181 msgid "Source Type" msgstr "Tipo de Fuente" -#: flatcamGUI/PreferencesUI.py:6449 flatcamTools/ToolCalibration.py:182 +#: flatcamGUI/PreferencesUI.py:6450 flatcamTools/ToolCalibration.py:182 msgid "" "The source of calibration points.\n" "It can be:\n" @@ -12358,27 +12355,27 @@ msgstr "" "- Libre -> haga clic libremente en el lienzo para adquirir los puntos de " "calibración" -#: flatcamGUI/PreferencesUI.py:6454 flatcamTools/ToolCalibration.py:187 +#: flatcamGUI/PreferencesUI.py:6455 flatcamTools/ToolCalibration.py:187 msgid "Free" msgstr "Libre" -#: flatcamGUI/PreferencesUI.py:6468 flatcamTools/ToolCalibration.py:76 +#: flatcamGUI/PreferencesUI.py:6469 flatcamTools/ToolCalibration.py:76 msgid "Height (Z) for travelling between the points." msgstr "Altura (Z) para viajar entre los puntos." -#: flatcamGUI/PreferencesUI.py:6480 flatcamTools/ToolCalibration.py:88 +#: flatcamGUI/PreferencesUI.py:6481 flatcamTools/ToolCalibration.py:88 msgid "Verification Z" msgstr "Verificación Z" -#: flatcamGUI/PreferencesUI.py:6482 flatcamTools/ToolCalibration.py:90 +#: flatcamGUI/PreferencesUI.py:6483 flatcamTools/ToolCalibration.py:90 msgid "Height (Z) for checking the point." msgstr "Altura (Z) para verificar el punto." -#: flatcamGUI/PreferencesUI.py:6494 flatcamTools/ToolCalibration.py:102 +#: flatcamGUI/PreferencesUI.py:6495 flatcamTools/ToolCalibration.py:102 msgid "Zero Z tool" msgstr "Cero la Z para Herram." -#: flatcamGUI/PreferencesUI.py:6496 flatcamTools/ToolCalibration.py:104 +#: flatcamGUI/PreferencesUI.py:6497 flatcamTools/ToolCalibration.py:104 msgid "" "Include a sequence to zero the height (Z)\n" "of the verification tool." @@ -12386,11 +12383,11 @@ msgstr "" "Incluya una secuencia para poner a cero la altura (Z)\n" "de la herramienta de verificación." -#: flatcamGUI/PreferencesUI.py:6505 flatcamTools/ToolCalibration.py:113 +#: flatcamGUI/PreferencesUI.py:6506 flatcamTools/ToolCalibration.py:113 msgid "Height (Z) for mounting the verification probe." msgstr "Altura (Z) para montar la sonda de verificación." -#: flatcamGUI/PreferencesUI.py:6519 flatcamTools/ToolCalibration.py:127 +#: flatcamGUI/PreferencesUI.py:6520 flatcamTools/ToolCalibration.py:127 msgid "" "Toolchange X,Y position.\n" "If no value is entered then the current\n" @@ -12400,11 +12397,11 @@ msgstr "" "Si no se ingresa ningún valor, entonces el actual\n" "(x, y) se utilizará el punto," -#: flatcamGUI/PreferencesUI.py:6530 flatcamTools/ToolCalibration.py:153 +#: flatcamGUI/PreferencesUI.py:6531 flatcamTools/ToolCalibration.py:153 msgid "Second point" msgstr "Segundo punto" -#: flatcamGUI/PreferencesUI.py:6532 flatcamTools/ToolCalibration.py:155 +#: flatcamGUI/PreferencesUI.py:6533 flatcamTools/ToolCalibration.py:155 msgid "" "Second point in the Gcode verification can be:\n" "- top-left -> the user will align the PCB vertically\n" @@ -12414,45 +12411,45 @@ msgstr "" "- arriba a la izquierda -> el usuario alineará la PCB verticalmente\n" "- abajo a la derecha -> el usuario alineará la PCB horizontalmente" -#: flatcamGUI/PreferencesUI.py:6536 flatcamTools/ToolCalibration.py:159 +#: flatcamGUI/PreferencesUI.py:6537 flatcamTools/ToolCalibration.py:159 msgid "Top-Left" msgstr "Arriba a la izquierda" -#: flatcamGUI/PreferencesUI.py:6537 flatcamTools/ToolCalibration.py:160 +#: flatcamGUI/PreferencesUI.py:6538 flatcamTools/ToolCalibration.py:160 msgid "Bottom-Right" msgstr "Abajo a la derecha" -#: flatcamGUI/PreferencesUI.py:6551 +#: flatcamGUI/PreferencesUI.py:6552 msgid "Excellon File associations" msgstr "Excellon File asociaciones" -#: flatcamGUI/PreferencesUI.py:6564 flatcamGUI/PreferencesUI.py:6637 -#: flatcamGUI/PreferencesUI.py:6707 flatcamGUI/PreferencesUI.py:6777 +#: flatcamGUI/PreferencesUI.py:6565 flatcamGUI/PreferencesUI.py:6638 +#: flatcamGUI/PreferencesUI.py:6708 flatcamGUI/PreferencesUI.py:6778 msgid "Restore" msgstr "Restaurar" -#: flatcamGUI/PreferencesUI.py:6565 flatcamGUI/PreferencesUI.py:6638 -#: flatcamGUI/PreferencesUI.py:6708 +#: flatcamGUI/PreferencesUI.py:6566 flatcamGUI/PreferencesUI.py:6639 +#: flatcamGUI/PreferencesUI.py:6709 msgid "Restore the extension list to the default state." msgstr "Restaurar la lista de extensiones al estado predeterminado." -#: flatcamGUI/PreferencesUI.py:6566 flatcamGUI/PreferencesUI.py:6639 -#: flatcamGUI/PreferencesUI.py:6709 flatcamGUI/PreferencesUI.py:6779 +#: flatcamGUI/PreferencesUI.py:6567 flatcamGUI/PreferencesUI.py:6640 +#: flatcamGUI/PreferencesUI.py:6710 flatcamGUI/PreferencesUI.py:6780 msgid "Delete All" msgstr "Eliminar todosEliminar taladro" -#: flatcamGUI/PreferencesUI.py:6567 flatcamGUI/PreferencesUI.py:6640 -#: flatcamGUI/PreferencesUI.py:6710 +#: flatcamGUI/PreferencesUI.py:6568 flatcamGUI/PreferencesUI.py:6641 +#: flatcamGUI/PreferencesUI.py:6711 msgid "Delete all extensions from the list." msgstr "Eliminar todas las extensiones de la lista." -#: flatcamGUI/PreferencesUI.py:6575 flatcamGUI/PreferencesUI.py:6648 -#: flatcamGUI/PreferencesUI.py:6718 +#: flatcamGUI/PreferencesUI.py:6576 flatcamGUI/PreferencesUI.py:6649 +#: flatcamGUI/PreferencesUI.py:6719 msgid "Extensions list" msgstr "Lista de extensiones" -#: flatcamGUI/PreferencesUI.py:6577 flatcamGUI/PreferencesUI.py:6650 -#: flatcamGUI/PreferencesUI.py:6720 +#: flatcamGUI/PreferencesUI.py:6578 flatcamGUI/PreferencesUI.py:6651 +#: flatcamGUI/PreferencesUI.py:6721 msgid "" "List of file extensions to be\n" "associated with FlatCAM." @@ -12460,43 +12457,43 @@ msgstr "" "Lista de extensiones de archivo para ser\n" "asociado con FlatCAM." -#: flatcamGUI/PreferencesUI.py:6597 flatcamGUI/PreferencesUI.py:6670 -#: flatcamGUI/PreferencesUI.py:6739 flatcamGUI/PreferencesUI.py:6811 +#: flatcamGUI/PreferencesUI.py:6598 flatcamGUI/PreferencesUI.py:6671 +#: flatcamGUI/PreferencesUI.py:6740 flatcamGUI/PreferencesUI.py:6812 msgid "Extension" msgstr "ExtensiónLista de extensiones" -#: flatcamGUI/PreferencesUI.py:6598 flatcamGUI/PreferencesUI.py:6671 -#: flatcamGUI/PreferencesUI.py:6740 +#: flatcamGUI/PreferencesUI.py:6599 flatcamGUI/PreferencesUI.py:6672 +#: flatcamGUI/PreferencesUI.py:6741 msgid "A file extension to be added or deleted to the list." msgstr "Una extensión de archivo para agregar o eliminar a la lista." -#: flatcamGUI/PreferencesUI.py:6606 flatcamGUI/PreferencesUI.py:6679 -#: flatcamGUI/PreferencesUI.py:6748 +#: flatcamGUI/PreferencesUI.py:6607 flatcamGUI/PreferencesUI.py:6680 +#: flatcamGUI/PreferencesUI.py:6749 msgid "Add Extension" msgstr "Agregar extensión" -#: flatcamGUI/PreferencesUI.py:6607 flatcamGUI/PreferencesUI.py:6680 -#: flatcamGUI/PreferencesUI.py:6749 +#: flatcamGUI/PreferencesUI.py:6608 flatcamGUI/PreferencesUI.py:6681 +#: flatcamGUI/PreferencesUI.py:6750 msgid "Add a file extension to the list" msgstr "Agregar una extensión de archivo a la lista" -#: flatcamGUI/PreferencesUI.py:6608 flatcamGUI/PreferencesUI.py:6681 -#: flatcamGUI/PreferencesUI.py:6750 +#: flatcamGUI/PreferencesUI.py:6609 flatcamGUI/PreferencesUI.py:6682 +#: flatcamGUI/PreferencesUI.py:6751 msgid "Delete Extension" msgstr "Eliminar extensión" -#: flatcamGUI/PreferencesUI.py:6609 flatcamGUI/PreferencesUI.py:6682 -#: flatcamGUI/PreferencesUI.py:6751 +#: flatcamGUI/PreferencesUI.py:6610 flatcamGUI/PreferencesUI.py:6683 +#: flatcamGUI/PreferencesUI.py:6752 msgid "Delete a file extension from the list" msgstr "Eliminar una extensión de archivo de la lista" -#: flatcamGUI/PreferencesUI.py:6616 flatcamGUI/PreferencesUI.py:6689 -#: flatcamGUI/PreferencesUI.py:6758 +#: flatcamGUI/PreferencesUI.py:6617 flatcamGUI/PreferencesUI.py:6690 +#: flatcamGUI/PreferencesUI.py:6759 msgid "Apply Association" msgstr "Aplicar asociación" -#: flatcamGUI/PreferencesUI.py:6617 flatcamGUI/PreferencesUI.py:6690 -#: flatcamGUI/PreferencesUI.py:6759 +#: flatcamGUI/PreferencesUI.py:6618 flatcamGUI/PreferencesUI.py:6691 +#: flatcamGUI/PreferencesUI.py:6760 msgid "" "Apply the file associations between\n" "FlatCAM and the files with above extensions.\n" @@ -12508,33 +12505,33 @@ msgstr "" "Estarán activos después del próximo inicio de sesión.\n" "Esto funciona solo en Windows." -#: flatcamGUI/PreferencesUI.py:6634 +#: flatcamGUI/PreferencesUI.py:6635 msgid "GCode File associations" msgstr "Asociaciones de archivos GCode" -#: flatcamGUI/PreferencesUI.py:6704 +#: flatcamGUI/PreferencesUI.py:6705 msgid "Gerber File associations" msgstr "Asociaciones de archivos Gerber" -#: flatcamGUI/PreferencesUI.py:6774 +#: flatcamGUI/PreferencesUI.py:6775 msgid "Autocompleter Keywords" msgstr "Palabras clave de autocompletador" -#: flatcamGUI/PreferencesUI.py:6778 +#: flatcamGUI/PreferencesUI.py:6779 msgid "Restore the autocompleter keywords list to the default state." msgstr "" "Restaure la lista de palabras clave de autocompletador al estado " "predeterminado." -#: flatcamGUI/PreferencesUI.py:6780 +#: flatcamGUI/PreferencesUI.py:6781 msgid "Delete all autocompleter keywords from the list." msgstr "Elimine todas las palabras clave de autocompletador de la lista." -#: flatcamGUI/PreferencesUI.py:6788 +#: flatcamGUI/PreferencesUI.py:6789 msgid "Keywords list" msgstr "Lista de palabras clave" -#: flatcamGUI/PreferencesUI.py:6790 +#: flatcamGUI/PreferencesUI.py:6791 msgid "" "List of keywords used by\n" "the autocompleter in FlatCAM.\n" @@ -12546,23 +12543,23 @@ msgstr "" "El autocompletador está instalado\n" "en el Editor de Código y para el Tcl Shell." -#: flatcamGUI/PreferencesUI.py:6812 +#: flatcamGUI/PreferencesUI.py:6813 msgid "A keyword to be added or deleted to the list." msgstr "Una palabra clave para agregar o eliminar a la lista." -#: flatcamGUI/PreferencesUI.py:6820 +#: flatcamGUI/PreferencesUI.py:6821 msgid "Add keyword" msgstr "Agregar palabra clave" -#: flatcamGUI/PreferencesUI.py:6821 +#: flatcamGUI/PreferencesUI.py:6822 msgid "Add a keyword to the list" msgstr "Agregar una palabra clave a la lista" -#: flatcamGUI/PreferencesUI.py:6822 +#: flatcamGUI/PreferencesUI.py:6823 msgid "Delete keyword" msgstr "Eliminar palabra clave" -#: flatcamGUI/PreferencesUI.py:6823 +#: flatcamGUI/PreferencesUI.py:6824 msgid "Delete a keyword from the list" msgstr "Eliminar una palabra clave de la lista" @@ -12849,7 +12846,6 @@ msgid "Bot Left X" msgstr "Abajo a la izquierda X" #: flatcamTools/ToolCalibration.py:258 -#| msgid "Bottom Left" msgid "Bot Left Y" msgstr "Abajo a la izquierda Y" @@ -13315,9 +13311,9 @@ msgstr "Herramienta Copper Thieving hecha." #: flatcamTools/ToolCopperThieving.py:754 #: flatcamTools/ToolCopperThieving.py:787 flatcamTools/ToolCutOut.py:466 -#: flatcamTools/ToolCutOut.py:640 flatcamTools/ToolNonCopperClear.py:1156 -#: flatcamTools/ToolNonCopperClear.py:1197 -#: flatcamTools/ToolNonCopperClear.py:1229 flatcamTools/ToolPaint.py:1079 +#: flatcamTools/ToolCutOut.py:640 flatcamTools/ToolNonCopperClear.py:1157 +#: flatcamTools/ToolNonCopperClear.py:1198 +#: flatcamTools/ToolNonCopperClear.py:1230 flatcamTools/ToolPaint.py:1080 #: flatcamTools/ToolPanelize.py:401 flatcamTools/ToolPanelize.py:416 #: flatcamTools/ToolSub.py:288 flatcamTools/ToolSub.py:301 #: flatcamTools/ToolSub.py:492 flatcamTools/ToolSub.py:507 @@ -13327,7 +13323,7 @@ msgid "Could not retrieve object" msgstr "No se pudo recuperar el objeto" #: flatcamTools/ToolCopperThieving.py:764 -#: flatcamTools/ToolNonCopperClear.py:1210 +#: flatcamTools/ToolNonCopperClear.py:1211 msgid "Click the start point of the area." msgstr "Haga clic en el punto de inicio del área." @@ -13336,7 +13332,7 @@ msgid "Click the end point of the filling area." msgstr "Haga clic en el punto final del área de relleno." #: flatcamTools/ToolCopperThieving.py:821 -#: flatcamTools/ToolNonCopperClear.py:1266 flatcamTools/ToolPaint.py:1206 +#: flatcamTools/ToolNonCopperClear.py:1267 flatcamTools/ToolPaint.py:1207 msgid "Zone added. Click to start adding next zone or right click to finish." msgstr "" "Zona agregada. Haga clic para comenzar a agregar la siguiente zona o haga " @@ -13371,12 +13367,12 @@ msgid "Geometry not supported for bounding box" msgstr "Geometría no admitida para cuadro delimitador" #: flatcamTools/ToolCopperThieving.py:1061 -#: flatcamTools/ToolNonCopperClear.py:1517 flatcamTools/ToolPaint.py:2571 +#: flatcamTools/ToolNonCopperClear.py:1518 flatcamTools/ToolPaint.py:2572 msgid "No object available." msgstr "No hay objeto disponible." #: flatcamTools/ToolCopperThieving.py:1098 -#: flatcamTools/ToolNonCopperClear.py:1559 +#: flatcamTools/ToolNonCopperClear.py:1560 msgid "The reference object type is not supported." msgstr "El tipo de objeto de referencia no es compatible." @@ -13586,8 +13582,8 @@ msgstr "" msgid "Any form CutOut operation finished." msgstr "Cualquier forma de operación de corte finalizada." -#: flatcamTools/ToolCutOut.py:644 flatcamTools/ToolNonCopperClear.py:1160 -#: flatcamTools/ToolPaint.py:999 flatcamTools/ToolPanelize.py:406 +#: flatcamTools/ToolCutOut.py:644 flatcamTools/ToolNonCopperClear.py:1161 +#: flatcamTools/ToolPaint.py:1000 flatcamTools/ToolPanelize.py:406 #: tclCommands/TclCommandBbox.py:70 tclCommands/TclCommandNregions.py:70 msgid "Object not found" msgstr "Objeto no encontrado" @@ -14039,7 +14035,6 @@ msgid "Will add a polygon on the copper layer to serve as fiducial." msgstr "Agregará un polígono en la capa de cobre para servir como fiducial." #: flatcamTools/ToolFiducials.py:285 -#| msgid "New Blank Gerber" msgid "Soldermask Gerber" msgstr "Soldermask Gerber" @@ -14616,117 +14611,117 @@ msgstr "" msgid "Generate Geometry" msgstr "Generar Geometría" -#: flatcamTools/ToolNonCopperClear.py:587 flatcamTools/ToolPaint.py:498 +#: flatcamTools/ToolNonCopperClear.py:588 flatcamTools/ToolPaint.py:499 #: flatcamTools/ToolSolderPaste.py:553 msgid "New Tool" msgstr "Nueva Herram" -#: flatcamTools/ToolNonCopperClear.py:986 flatcamTools/ToolPaint.py:771 -#: flatcamTools/ToolSolderPaste.py:884 +#: flatcamTools/ToolNonCopperClear.py:987 flatcamTools/ToolPaint.py:772 +#: flatcamTools/ToolSolderPaste.py:887 msgid "Please enter a tool diameter to add, in Float format." msgstr "Ingrese un diámetro de herramienta para agregar, en formato decimal." -#: flatcamTools/ToolNonCopperClear.py:1017 flatcamTools/ToolPaint.py:796 +#: flatcamTools/ToolNonCopperClear.py:1018 flatcamTools/ToolPaint.py:797 msgid "Adding tool cancelled. Tool already in Tool Table." msgstr "" "Agregando herramienta cancelada. Herramienta ya en la tabla de herramientas." -#: flatcamTools/ToolNonCopperClear.py:1022 flatcamTools/ToolPaint.py:802 +#: flatcamTools/ToolNonCopperClear.py:1023 flatcamTools/ToolPaint.py:803 msgid "New tool added to Tool Table." msgstr "Nueva herramienta agregada a la Tabla de herramientas." -#: flatcamTools/ToolNonCopperClear.py:1066 flatcamTools/ToolPaint.py:848 +#: flatcamTools/ToolNonCopperClear.py:1067 flatcamTools/ToolPaint.py:849 msgid "Tool from Tool Table was edited." msgstr "Se editó la herramienta de la tabla de herramientas." -#: flatcamTools/ToolNonCopperClear.py:1077 flatcamTools/ToolPaint.py:860 -#: flatcamTools/ToolSolderPaste.py:975 +#: flatcamTools/ToolNonCopperClear.py:1078 flatcamTools/ToolPaint.py:861 +#: flatcamTools/ToolSolderPaste.py:978 msgid "Edit cancelled. New diameter value is already in the Tool Table." msgstr "" "Editar cancelado El nuevo valor del diámetro ya está en la Tabla de " "herramientas." -#: flatcamTools/ToolNonCopperClear.py:1124 flatcamTools/ToolPaint.py:958 +#: flatcamTools/ToolNonCopperClear.py:1125 flatcamTools/ToolPaint.py:959 msgid "Delete failed. Select a tool to delete." msgstr "Eliminar falló. Seleccione una herramienta para eliminar." -#: flatcamTools/ToolNonCopperClear.py:1129 flatcamTools/ToolPaint.py:964 +#: flatcamTools/ToolNonCopperClear.py:1130 flatcamTools/ToolPaint.py:965 msgid "Tool(s) deleted from Tool Table." msgstr "Herramienta (s) eliminada de la tabla de herramientas." -#: flatcamTools/ToolNonCopperClear.py:1176 +#: flatcamTools/ToolNonCopperClear.py:1177 msgid "Wrong Tool Dia value format entered, use a number." msgstr "" "Se ingresó un formato de valor de Diámetro de herramienta incorrecta, use un " "número." -#: flatcamTools/ToolNonCopperClear.py:1185 flatcamTools/ToolPaint.py:1028 +#: flatcamTools/ToolNonCopperClear.py:1186 flatcamTools/ToolPaint.py:1029 msgid "No selected tools in Tool Table." msgstr "Seleccione una herramienta en la tabla de herramientas." -#: flatcamTools/ToolNonCopperClear.py:1260 flatcamTools/ToolPaint.py:1200 +#: flatcamTools/ToolNonCopperClear.py:1261 flatcamTools/ToolPaint.py:1201 msgid "Click the end point of the paint area." msgstr "Haga clic en el punto final del área de pintura." -#: flatcamTools/ToolNonCopperClear.py:1414 -#: flatcamTools/ToolNonCopperClear.py:1416 +#: flatcamTools/ToolNonCopperClear.py:1415 +#: flatcamTools/ToolNonCopperClear.py:1417 msgid "Non-Copper clearing ..." msgstr "Limpieza sin cobre ..." -#: flatcamTools/ToolNonCopperClear.py:1426 +#: flatcamTools/ToolNonCopperClear.py:1427 msgid "NCC Tool started. Reading parameters." msgstr "Herramienta NCC iniciada. Parámetros de lectura." -#: flatcamTools/ToolNonCopperClear.py:1489 +#: flatcamTools/ToolNonCopperClear.py:1490 msgid "NCC Tool. Preparing non-copper polygons." msgstr "Herramienta NCC. Preparación de polígonos sin cobre." -#: flatcamTools/ToolNonCopperClear.py:1585 +#: flatcamTools/ToolNonCopperClear.py:1586 msgid "" "NCC Tool. Finished non-copper polygons. Normal copper clearing task started." msgstr "" "Herramienta NCC. Polígonos terminados sin cobre. Se inició la tarea normal " "de limpieza de cobre." -#: flatcamTools/ToolNonCopperClear.py:1617 +#: flatcamTools/ToolNonCopperClear.py:1618 msgid "NCC Tool. Calculate 'empty' area." msgstr "Herramienta NCC. Calcule el área 'vacía'." -#: flatcamTools/ToolNonCopperClear.py:1630 -#: flatcamTools/ToolNonCopperClear.py:1729 -#: flatcamTools/ToolNonCopperClear.py:1741 -#: flatcamTools/ToolNonCopperClear.py:1990 -#: flatcamTools/ToolNonCopperClear.py:2086 -#: flatcamTools/ToolNonCopperClear.py:2098 +#: flatcamTools/ToolNonCopperClear.py:1631 +#: flatcamTools/ToolNonCopperClear.py:1730 +#: flatcamTools/ToolNonCopperClear.py:1742 +#: flatcamTools/ToolNonCopperClear.py:1991 +#: flatcamTools/ToolNonCopperClear.py:2087 +#: flatcamTools/ToolNonCopperClear.py:2099 msgid "Buffering finished" msgstr "Buffering terminado" -#: flatcamTools/ToolNonCopperClear.py:1748 -#: flatcamTools/ToolNonCopperClear.py:2104 +#: flatcamTools/ToolNonCopperClear.py:1749 +#: flatcamTools/ToolNonCopperClear.py:2105 msgid "The selected object is not suitable for copper clearing." msgstr "El objeto seleccionado no es adecuado para la limpieza de cobre." -#: flatcamTools/ToolNonCopperClear.py:1753 -#: flatcamTools/ToolNonCopperClear.py:2109 +#: flatcamTools/ToolNonCopperClear.py:1754 +#: flatcamTools/ToolNonCopperClear.py:2110 msgid "Could not get the extent of the area to be non copper cleared." msgstr "" "No se pudo obtener la extensión del área que no fue limpiada con cobre." -#: flatcamTools/ToolNonCopperClear.py:1760 +#: flatcamTools/ToolNonCopperClear.py:1761 msgid "NCC Tool. Finished calculation of 'empty' area." msgstr "Herramienta NCC. Cálculo finalizado del área 'vacía'." -#: flatcamTools/ToolNonCopperClear.py:1773 -#: flatcamTools/ToolNonCopperClear.py:2134 +#: flatcamTools/ToolNonCopperClear.py:1774 +#: flatcamTools/ToolNonCopperClear.py:2135 msgid "NCC Tool clearing with tool diameter = " msgstr "Herram. NCC se está limpiando con el diá de la herram. = " -#: flatcamTools/ToolNonCopperClear.py:1776 -#: flatcamTools/ToolNonCopperClear.py:2137 +#: flatcamTools/ToolNonCopperClear.py:1777 +#: flatcamTools/ToolNonCopperClear.py:2138 msgid "started." msgstr "empezado." -#: flatcamTools/ToolNonCopperClear.py:1919 +#: flatcamTools/ToolNonCopperClear.py:1920 msgid "" "There is no NCC Geometry in the file.\n" "Usually it means that the tool diameter is too big for the painted " @@ -14738,26 +14733,26 @@ msgstr "" "grande para la geometría pintada.\n" "Cambie los parámetros de pintura e intente nuevamente." -#: flatcamTools/ToolNonCopperClear.py:1939 +#: flatcamTools/ToolNonCopperClear.py:1940 msgid "NCC Tool clear all done." msgstr "Herramienta NCC borrar todo hecho." -#: flatcamTools/ToolNonCopperClear.py:1941 +#: flatcamTools/ToolNonCopperClear.py:1942 msgid "NCC Tool clear all done but the copper features isolation is broken for" msgstr "" "La herramienta NCC borra todo, pero el aislamiento de las características de " "cobre está roto por" -#: flatcamTools/ToolNonCopperClear.py:1944 -#: flatcamTools/ToolNonCopperClear.py:2310 +#: flatcamTools/ToolNonCopperClear.py:1945 +#: flatcamTools/ToolNonCopperClear.py:2311 msgid "tools" msgstr "herramientas" -#: flatcamTools/ToolNonCopperClear.py:2306 +#: flatcamTools/ToolNonCopperClear.py:2307 msgid "NCC Tool Rest Machining clear all done." msgstr "NCC herramienta de mecanizado de reposo claro todo hecho." -#: flatcamTools/ToolNonCopperClear.py:2309 +#: flatcamTools/ToolNonCopperClear.py:2310 msgid "" "NCC Tool Rest Machining clear all done but the copper features isolation is " "broken for" @@ -14765,7 +14760,7 @@ msgstr "" "El mecanizado de reposo de herramientas NCC está claro, pero el aislamiento " "de características de cobre está roto por" -#: flatcamTools/ToolNonCopperClear.py:2756 +#: flatcamTools/ToolNonCopperClear.py:2757 msgid "" "Try to use the Buffering Type = Full in Preferences -> Gerber General. " "Reload the Gerber file after this change." @@ -15075,72 +15070,72 @@ msgstr "" "- 'Objeto de referencia' - hará una limpieza sin cobre dentro del área\n" "especificado por otro objeto." -#: flatcamTools/ToolPaint.py:978 +#: flatcamTools/ToolPaint.py:979 msgid "Paint Tool. Reading parameters." msgstr "Herramienta de pintura. Parámetros de lectura." -#: flatcamTools/ToolPaint.py:993 +#: flatcamTools/ToolPaint.py:994 #, python-format msgid "Could not retrieve object: %s" msgstr "No se pudo recuperar el objeto: %s" -#: flatcamTools/ToolPaint.py:1007 +#: flatcamTools/ToolPaint.py:1008 msgid "Can't do Paint on MultiGeo geometries" msgstr "No se puede Pintar en geometrías de geo-múltiple" -#: flatcamTools/ToolPaint.py:1040 +#: flatcamTools/ToolPaint.py:1041 msgid "Click on a polygon to paint it." msgstr "Haga clic en un polígono para pintarlo." -#: flatcamTools/ToolPaint.py:1059 +#: flatcamTools/ToolPaint.py:1060 msgid "Click the start point of the paint area." msgstr "Haga clic en el punto de inicio del área de pintura." -#: flatcamTools/ToolPaint.py:1127 +#: flatcamTools/ToolPaint.py:1128 msgid "Click to add next polygon or right click to start painting." msgstr "" "Haga clic para agregar el siguiente polígono o haga clic con el botón " "derecho para comenzar a pintar." -#: flatcamTools/ToolPaint.py:1140 +#: flatcamTools/ToolPaint.py:1141 msgid "Click to add/remove next polygon or right click to start painting." msgstr "" "Haga clic para agregar / eliminar el siguiente polígono o haga clic con el " "botón derecho para comenzar a pintar." -#: 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 +#: flatcamTools/ToolPaint.py:1349 flatcamTools/ToolPaint.py:1352 +#: flatcamTools/ToolPaint.py:1354 flatcamTools/ToolPaint.py:1886 +#: flatcamTools/ToolPaint.py:1890 flatcamTools/ToolPaint.py:1893 +#: flatcamTools/ToolPaint.py:2175 flatcamTools/ToolPaint.py:2180 +#: flatcamTools/ToolPaint.py:2183 flatcamTools/ToolPaint.py:2357 +#: flatcamTools/ToolPaint.py:2364 msgid "Paint Tool." msgstr "Herramienta de Pintura." -#: flatcamTools/ToolPaint.py:1348 flatcamTools/ToolPaint.py:1351 -#: flatcamTools/ToolPaint.py:1353 +#: flatcamTools/ToolPaint.py:1349 flatcamTools/ToolPaint.py:1352 +#: flatcamTools/ToolPaint.py:1354 msgid "Normal painting polygon task started." msgstr "Se inició la tarea normal de polígono de pintura." -#: flatcamTools/ToolPaint.py:1349 flatcamTools/ToolPaint.py:1711 -#: flatcamTools/ToolPaint.py:1886 flatcamTools/ToolPaint.py:2176 -#: flatcamTools/ToolPaint.py:2358 +#: flatcamTools/ToolPaint.py:1350 flatcamTools/ToolPaint.py:1712 +#: flatcamTools/ToolPaint.py:1887 flatcamTools/ToolPaint.py:2177 +#: flatcamTools/ToolPaint.py:2359 msgid "Buffering geometry..." msgstr "Almacenar la geometría ..." -#: flatcamTools/ToolPaint.py:1371 +#: flatcamTools/ToolPaint.py:1372 msgid "No polygon found." msgstr "No se encontró polígono." -#: flatcamTools/ToolPaint.py:1405 +#: flatcamTools/ToolPaint.py:1406 msgid "Painting polygon..." msgstr "Pintar polígono ..." -#: flatcamTools/ToolPaint.py:1453 +#: flatcamTools/ToolPaint.py:1454 msgid "Geometry could not be painted completely" msgstr "La Geometría no se pudo pintar completamente" -#: flatcamTools/ToolPaint.py:1486 +#: flatcamTools/ToolPaint.py:1487 msgid "" "Could not do Paint. Try a different combination of parameters. Or a " "different strategy of paint" @@ -15148,9 +15143,9 @@ msgstr "" "No se pudo Pintar. Pruebe con una combinación diferente de parámetros. O una " "estrategia diferente de pintura" -#: flatcamTools/ToolPaint.py:1538 flatcamTools/ToolPaint.py:1865 -#: flatcamTools/ToolPaint.py:2015 flatcamTools/ToolPaint.py:2336 -#: flatcamTools/ToolPaint.py:2490 +#: flatcamTools/ToolPaint.py:1539 flatcamTools/ToolPaint.py:1866 +#: flatcamTools/ToolPaint.py:2016 flatcamTools/ToolPaint.py:2337 +#: flatcamTools/ToolPaint.py:2491 msgid "" "There is no Painting Geometry in the file.\n" "Usually it means that the tool diameter is too big for the painted " @@ -15162,36 +15157,36 @@ msgstr "" "grande para la geometría pintada.\n" "Cambie los parámetros de pintura e intente nuevamente." -#: flatcamTools/ToolPaint.py:1544 +#: flatcamTools/ToolPaint.py:1545 msgid "Paint Single Done." msgstr "Pintar solo hecho." -#: flatcamTools/ToolPaint.py:1576 flatcamTools/ToolPaint.py:2043 -#: flatcamTools/ToolPaint.py:2518 +#: flatcamTools/ToolPaint.py:1577 flatcamTools/ToolPaint.py:2044 +#: flatcamTools/ToolPaint.py:2519 msgid "Polygon Paint started ..." msgstr "Polygon Pinta comenzó ..." -#: flatcamTools/ToolPaint.py:1628 flatcamTools/ToolPaint.py:2105 +#: flatcamTools/ToolPaint.py:1629 flatcamTools/ToolPaint.py:2106 msgid "Painting polygons..." msgstr "Pintar polígonos ..." -#: flatcamTools/ToolPaint.py:1710 flatcamTools/ToolPaint.py:1713 -#: flatcamTools/ToolPaint.py:1715 +#: flatcamTools/ToolPaint.py:1711 flatcamTools/ToolPaint.py:1714 +#: flatcamTools/ToolPaint.py:1716 msgid "Paint Tool. Normal painting all task started." msgstr "Herramienta de pintura. La pintura normal comenzó toda tarea." -#: flatcamTools/ToolPaint.py:1749 flatcamTools/ToolPaint.py:1921 -#: flatcamTools/ToolPaint.py:2223 flatcamTools/ToolPaint.py:2399 +#: flatcamTools/ToolPaint.py:1750 flatcamTools/ToolPaint.py:1922 +#: flatcamTools/ToolPaint.py:2224 flatcamTools/ToolPaint.py:2400 msgid "Painting with tool diameter = " msgstr "Pintar con diá de herram. = " -#: flatcamTools/ToolPaint.py:1752 flatcamTools/ToolPaint.py:1924 -#: flatcamTools/ToolPaint.py:2226 flatcamTools/ToolPaint.py:2402 +#: flatcamTools/ToolPaint.py:1753 flatcamTools/ToolPaint.py:1925 +#: flatcamTools/ToolPaint.py:2227 flatcamTools/ToolPaint.py:2403 msgid "started" msgstr "empezado" -#: flatcamTools/ToolPaint.py:1814 flatcamTools/ToolPaint.py:1970 -#: flatcamTools/ToolPaint.py:2286 flatcamTools/ToolPaint.py:2446 +#: flatcamTools/ToolPaint.py:1815 flatcamTools/ToolPaint.py:1971 +#: flatcamTools/ToolPaint.py:2287 flatcamTools/ToolPaint.py:2447 msgid "" "Could not do Paint All. Try a different combination of parameters. Or a " "different Method of paint" @@ -15199,33 +15194,33 @@ msgstr "" "No se pudo Pintar Todo. Pruebe con una combinación diferente de parámetros. " "O un método diferente de pintura" -#: flatcamTools/ToolPaint.py:1874 +#: flatcamTools/ToolPaint.py:1875 msgid "Paint All Done." msgstr "Pintar todo listo." -#: flatcamTools/ToolPaint.py:1885 flatcamTools/ToolPaint.py:1889 -#: flatcamTools/ToolPaint.py:1892 +#: flatcamTools/ToolPaint.py:1886 flatcamTools/ToolPaint.py:1890 +#: flatcamTools/ToolPaint.py:1893 msgid "Rest machining painting all task started." msgstr "Resto mecanizado pintando toda la tarea iniciada." -#: flatcamTools/ToolPaint.py:2024 flatcamTools/ToolPaint.py:2499 +#: flatcamTools/ToolPaint.py:2025 flatcamTools/ToolPaint.py:2500 msgid "Paint All with Rest-Machining done." msgstr "Pinte Todo con el mecanizado de descanso hecho." -#: flatcamTools/ToolPaint.py:2175 flatcamTools/ToolPaint.py:2179 -#: flatcamTools/ToolPaint.py:2182 +#: flatcamTools/ToolPaint.py:2176 flatcamTools/ToolPaint.py:2180 +#: flatcamTools/ToolPaint.py:2183 msgid "Normal painting area task started." msgstr "Se inició la tarea normal del área de pintura." -#: flatcamTools/ToolPaint.py:2345 +#: flatcamTools/ToolPaint.py:2346 msgid "Paint Area Done." msgstr "Área de pintura hecha." -#: flatcamTools/ToolPaint.py:2357 flatcamTools/ToolPaint.py:2363 +#: flatcamTools/ToolPaint.py:2358 flatcamTools/ToolPaint.py:2364 msgid "Rest machining painting area task started." msgstr "Se inició la tarea de área de pintura de mecanizado en reposo." -#: flatcamTools/ToolPaint.py:2360 +#: flatcamTools/ToolPaint.py:2361 msgid "Paint Tool. Rest machining painting area task started." msgstr "" "Herramienta de pintura. Se inició la tarea de área de pintura de mecanizado " @@ -16185,93 +16180,93 @@ msgstr "" "una geometría de dispensación de pasta de soldadura, y luego ver / guardar " "su código GC." -#: flatcamTools/ToolSolderPaste.py:914 +#: flatcamTools/ToolSolderPaste.py:917 msgid "Adding Nozzle tool cancelled. Tool already in Tool Table." msgstr "" "Se ha cancelado la adición de la herramienta Boquilla. Herramienta ya en la " "tabla de herramientas." -#: flatcamTools/ToolSolderPaste.py:920 +#: flatcamTools/ToolSolderPaste.py:923 msgid "New Nozzle tool added to Tool Table." msgstr "Nueva herramienta de boquillas agregada a la tabla de herramientas." -#: flatcamTools/ToolSolderPaste.py:963 +#: flatcamTools/ToolSolderPaste.py:966 msgid "Nozzle tool from Tool Table was edited." msgstr "Nueva herramienta de boquillas agregada a la tabla de herramientas." -#: flatcamTools/ToolSolderPaste.py:1021 +#: flatcamTools/ToolSolderPaste.py:1024 msgid "Delete failed. Select a Nozzle tool to delete." msgstr "" "Eliminar falló. Seleccione una herramienta de inyectores para eliminar." -#: flatcamTools/ToolSolderPaste.py:1027 +#: flatcamTools/ToolSolderPaste.py:1030 msgid "Nozzle tool(s) deleted from Tool Table." msgstr "Herramienta de boquilla (s) eliminada de la tabla de herramientas." -#: flatcamTools/ToolSolderPaste.py:1083 +#: flatcamTools/ToolSolderPaste.py:1086 msgid "No SolderPaste mask Gerber object loaded." msgstr "No se ha cargado el objeto Gerber de máscara de pasta de soldadura." -#: flatcamTools/ToolSolderPaste.py:1101 +#: flatcamTools/ToolSolderPaste.py:1104 msgid "Creating Solder Paste dispensing geometry." msgstr "Creación de geometría de dispensación de pasta de soldadura." -#: flatcamTools/ToolSolderPaste.py:1114 +#: flatcamTools/ToolSolderPaste.py:1117 msgid "No Nozzle tools in the tool table." msgstr "No hay herramientas de boquilla en la mesa de herramientas." -#: flatcamTools/ToolSolderPaste.py:1241 +#: flatcamTools/ToolSolderPaste.py:1244 msgid "Cancelled. Empty file, it has no geometry..." msgstr "Cancelado. Archivo vacío, no tiene geometría ..." -#: flatcamTools/ToolSolderPaste.py:1245 +#: flatcamTools/ToolSolderPaste.py:1248 msgid "Solder Paste geometry generated successfully" msgstr "Geometría de pasta de soldadura generada con éxito" -#: flatcamTools/ToolSolderPaste.py:1252 +#: flatcamTools/ToolSolderPaste.py:1255 msgid "Some or all pads have no solder due of inadequate nozzle diameters..." msgstr "" "Algunas o todas las almohadillas no tienen soldadura debido a los diámetros " "de boquilla inadecuados ..." -#: flatcamTools/ToolSolderPaste.py:1266 +#: flatcamTools/ToolSolderPaste.py:1269 msgid "Generating Solder Paste dispensing geometry..." msgstr "Generando geometría de dispensación de pasta de soldadura ..." -#: flatcamTools/ToolSolderPaste.py:1286 +#: flatcamTools/ToolSolderPaste.py:1289 msgid "There is no Geometry object available." msgstr "No hay ningún objeto de Geometría disponible." -#: flatcamTools/ToolSolderPaste.py:1291 +#: flatcamTools/ToolSolderPaste.py:1294 msgid "This Geometry can't be processed. NOT a solder_paste_tool geometry." msgstr "" "Esta Geometría no se puede procesar. NO es una geometría solder_paste_tool." -#: flatcamTools/ToolSolderPaste.py:1398 +#: flatcamTools/ToolSolderPaste.py:1401 msgid "ToolSolderPaste CNCjob created" msgstr "Herramienta soldar pegar CNCjob creado" -#: flatcamTools/ToolSolderPaste.py:1419 +#: flatcamTools/ToolSolderPaste.py:1422 msgid "SP GCode Editor" msgstr "SP GCode editor" -#: flatcamTools/ToolSolderPaste.py:1431 flatcamTools/ToolSolderPaste.py:1436 -#: flatcamTools/ToolSolderPaste.py:1491 +#: flatcamTools/ToolSolderPaste.py:1434 flatcamTools/ToolSolderPaste.py:1439 +#: flatcamTools/ToolSolderPaste.py:1494 msgid "" "This CNCJob object can't be processed. NOT a solder_paste_tool CNCJob object." msgstr "" "Este objeto CNCJob no se puede procesar. NO es un objeto CNCJob de " "herramienta de pasta de soldadura." -#: flatcamTools/ToolSolderPaste.py:1461 +#: flatcamTools/ToolSolderPaste.py:1464 msgid "No Gcode in the object" msgstr "No Gcode en el objeto" -#: flatcamTools/ToolSolderPaste.py:1501 +#: flatcamTools/ToolSolderPaste.py:1504 msgid "Export GCode ..." msgstr "Exportar GCode ..." -#: flatcamTools/ToolSolderPaste.py:1549 +#: flatcamTools/ToolSolderPaste.py:1552 msgid "Solder paste dispenser GCode file saved to" msgstr "Dispensador de pasta de soldadura Archivo GCode guardado en: %s" diff --git a/locale/fr/LC_MESSAGES/strings.mo b/locale/fr/LC_MESSAGES/strings.mo index 60eed08d..0eebc641 100644 Binary files a/locale/fr/LC_MESSAGES/strings.mo and b/locale/fr/LC_MESSAGES/strings.mo differ diff --git a/locale/fr/LC_MESSAGES/strings.po b/locale/fr/LC_MESSAGES/strings.po index a79d6e57..2c8471da 100644 --- a/locale/fr/LC_MESSAGES/strings.po +++ b/locale/fr/LC_MESSAGES/strings.po @@ -5,8 +5,8 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"POT-Creation-Date: 2019-12-14 20:19+0200\n" -"PO-Revision-Date: 2019-12-14 21:51+0200\n" +"POT-Creation-Date: 2019-12-15 16:27+0200\n" +"PO-Revision-Date: 2019-12-15 16:27+0200\n" "Last-Translator: \n" "Language-Team: \n" "Language: fr\n" @@ -22,17 +22,17 @@ msgstr "" "X-Poedit-SearchPathExcluded-1: doc\n" "X-Poedit-SearchPathExcluded-2: tests\n" -#: FlatCAMApp.py:999 +#: FlatCAMApp.py:1004 msgid "FlatCAM is initializing ..." msgstr "FlatCAM est en cours d'initialisation ..." -#: FlatCAMApp.py:1580 +#: FlatCAMApp.py:1585 msgid "Could not find the Language files. The App strings are missing." msgstr "" "Impossible de trouver les fichiers de langue. Les chaînes de l'application " "sont manquantes." -#: FlatCAMApp.py:1673 +#: FlatCAMApp.py:1678 msgid "" "FlatCAM is initializing ...\n" "Canvas initialization started." @@ -40,7 +40,7 @@ msgstr "" "FlatCAM est en cours d'initialisation ...\n" "L'initialisation de la toile a commencé." -#: FlatCAMApp.py:1691 +#: FlatCAMApp.py:1696 msgid "" "FlatCAM is initializing ...\n" "Canvas initialization started.\n" @@ -50,7 +50,7 @@ msgstr "" "L'initialisation de la toile a commencé.\n" "Initialisation de la toile terminée en" -#: FlatCAMApp.py:2388 +#: FlatCAMApp.py:2395 msgid "" "Type >help< to get started\n" "\n" @@ -58,13 +58,13 @@ msgstr "" "Tapez >help< pour commencer\n" "\n" -#: FlatCAMApp.py:2643 FlatCAMApp.py:9138 +#: FlatCAMApp.py:2650 FlatCAMApp.py:9170 msgid "New Project - Not saved" msgstr "Nouveau projet - Non enregistré" -#: FlatCAMApp.py:2718 FlatCAMApp.py:9206 FlatCAMApp.py:9243 FlatCAMApp.py:9284 -#: FlatCAMApp.py:9355 FlatCAMApp.py:10109 FlatCAMApp.py:11123 -#: FlatCAMApp.py:11182 +#: FlatCAMApp.py:2725 FlatCAMApp.py:9238 FlatCAMApp.py:9275 FlatCAMApp.py:9316 +#: FlatCAMApp.py:9387 FlatCAMApp.py:10141 FlatCAMApp.py:11155 +#: FlatCAMApp.py:11214 msgid "" "Canvas initialization started.\n" "Canvas initialization finished in" @@ -72,47 +72,47 @@ msgstr "" "L'initialisation de la toile a commencé.\n" "Initialisation de la toile terminée en" -#: FlatCAMApp.py:2720 +#: FlatCAMApp.py:2727 msgid "Executing Tcl Script ..." msgstr "Exécution du script Tcl ..." -#: FlatCAMApp.py:2735 +#: FlatCAMApp.py:2742 msgid "" "Found old default preferences files. Please reboot the application to update." msgstr "" "Anciens fichiers de préférences par défaut trouvés. Veuillez redémarrer " "l'application pour la mettre à jour." -#: FlatCAMApp.py:2779 ObjectCollection.py:90 flatcamTools/ToolImage.py:248 +#: FlatCAMApp.py:2786 ObjectCollection.py:90 flatcamTools/ToolImage.py:248 #: flatcamTools/ToolPcbWizard.py:301 flatcamTools/ToolPcbWizard.py:324 msgid "Open cancelled." msgstr "Ouvert annulé." -#: FlatCAMApp.py:2795 +#: FlatCAMApp.py:2802 msgid "Open Config file failed." msgstr "Le fichier de configuration ouvert a échoué." -#: FlatCAMApp.py:2810 +#: FlatCAMApp.py:2817 msgid "Open Script file failed." msgstr "Le fichier de script ouvert a échoué." -#: FlatCAMApp.py:2836 +#: FlatCAMApp.py:2843 msgid "Open Excellon file failed." msgstr "Le fichier de Excellon ouvert a échoué." -#: FlatCAMApp.py:2849 +#: FlatCAMApp.py:2856 msgid "Open GCode file failed." msgstr "Le fichier de G-code ouvert a échoué." -#: FlatCAMApp.py:2862 +#: FlatCAMApp.py:2869 msgid "Open Gerber file failed." msgstr "Le fichier de Gerber ouvert a échoué." -#: FlatCAMApp.py:3203 +#: FlatCAMApp.py:3223 msgid "Select a Geometry, Gerber or Excellon Object to edit." msgstr "Sélectionnez un objet Geometry, Gerber ou Excellon à modifier." -#: FlatCAMApp.py:3218 +#: FlatCAMApp.py:3238 msgid "" "Simultaneous editing of tools geometry in a MultiGeo Geometry is not " "possible.\n" @@ -122,82 +122,82 @@ msgstr "" "n'est pas possible.\n" "Modifiez une seule géométrie à la fois." -#: FlatCAMApp.py:3273 +#: FlatCAMApp.py:3293 msgid "Editor is activated ..." msgstr "L'éditeur est activé ..." -#: FlatCAMApp.py:3294 +#: FlatCAMApp.py:3314 msgid "Do you want to save the edited object?" msgstr "Voulez-vous enregistrer l'objet édité?" -#: FlatCAMApp.py:3295 flatcamGUI/FlatCAMGUI.py:1969 +#: FlatCAMApp.py:3315 flatcamGUI/FlatCAMGUI.py:2134 msgid "Close Editor" msgstr "Fermer l'éditeur" -#: 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 +#: FlatCAMApp.py:3318 FlatCAMApp.py:5029 FlatCAMApp.py:7889 FlatCAMApp.py:7915 +#: FlatCAMApp.py:9077 FlatCAMTranslation.py:108 FlatCAMTranslation.py:193 +#: flatcamGUI/PreferencesUI.py:1035 msgid "Yes" msgstr "Oui" -#: 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 +#: FlatCAMApp.py:3319 FlatCAMApp.py:5030 FlatCAMApp.py:7890 FlatCAMApp.py:7916 +#: FlatCAMApp.py:9078 FlatCAMTranslation.py:109 FlatCAMTranslation.py:194 +#: flatcamGUI/PreferencesUI.py:1036 flatcamGUI/PreferencesUI.py:4095 +#: flatcamGUI/PreferencesUI.py:4520 flatcamTools/ToolNonCopperClear.py:189 #: flatcamTools/ToolPaint.py:161 msgid "No" msgstr "Non" -#: FlatCAMApp.py:3300 FlatCAMApp.py:5003 FlatCAMApp.py:5839 FlatCAMApp.py:7157 -#: FlatCAMApp.py:9047 FlatCAMCommon.py:702 flatcamGUI/FlatCAMGUI.py:1117 +#: FlatCAMApp.py:3320 FlatCAMApp.py:5031 FlatCAMApp.py:5867 FlatCAMApp.py:7185 +#: FlatCAMApp.py:9079 FlatCAMCommon.py:702 flatcamGUI/FlatCAMGUI.py:1233 msgid "Cancel" msgstr "Annuler" -#: FlatCAMApp.py:3328 +#: FlatCAMApp.py:3348 msgid "Object empty after edit." msgstr "Objet vide après édition." -#: FlatCAMApp.py:3377 FlatCAMApp.py:3397 FlatCAMApp.py:3412 +#: FlatCAMApp.py:3397 FlatCAMApp.py:3417 FlatCAMApp.py:3432 msgid "Select a Gerber, Geometry or Excellon Object to update." msgstr "Sélectionnez un objet Gerber, Geometry ou Excellon à mettre à jour." -#: FlatCAMApp.py:3381 +#: FlatCAMApp.py:3401 msgid "is updated, returning to App..." msgstr "est mis à jour, revenant à l'App ..." -#: FlatCAMApp.py:3776 FlatCAMApp.py:3850 FlatCAMApp.py:4863 +#: FlatCAMApp.py:3796 FlatCAMApp.py:3870 FlatCAMApp.py:4891 msgid "Could not load defaults file." msgstr "Impossible de charger le fichier par défaut." -#: FlatCAMApp.py:3788 FlatCAMApp.py:3859 FlatCAMApp.py:4872 +#: FlatCAMApp.py:3808 FlatCAMApp.py:3879 FlatCAMApp.py:4900 msgid "Failed to parse defaults file." msgstr "Échec de l'analyse du fichier par défaut." -#: FlatCAMApp.py:3830 FlatCAMApp.py:3834 +#: FlatCAMApp.py:3850 FlatCAMApp.py:3854 msgid "Import FlatCAM Preferences" msgstr "Importer les préférences FlatCAM" -#: FlatCAMApp.py:3841 +#: FlatCAMApp.py:3861 msgid "FlatCAM preferences import cancelled." msgstr "Importation des préférences FlatCAM annulée." -#: FlatCAMApp.py:3864 +#: FlatCAMApp.py:3884 msgid "Imported Defaults from" msgstr "Valeurs par défaut importées de" -#: FlatCAMApp.py:3884 FlatCAMApp.py:3889 +#: FlatCAMApp.py:3904 FlatCAMApp.py:3909 msgid "Export FlatCAM Preferences" msgstr "Exporter les préférences FlatCAM" -#: FlatCAMApp.py:3897 +#: FlatCAMApp.py:3917 msgid "FlatCAM preferences export cancelled." msgstr "Exportation des préférences FlatCAM annulée." -#: FlatCAMApp.py:3906 FlatCAMApp.py:10338 FlatCAMApp.py:10386 -#: FlatCAMApp.py:10509 FlatCAMApp.py:10648 FlatCAMCommon.py:378 -#: FlatCAMCommon.py:1094 FlatCAMObj.py:6721 +#: FlatCAMApp.py:3926 FlatCAMApp.py:10370 FlatCAMApp.py:10418 +#: FlatCAMApp.py:10541 FlatCAMApp.py:10680 FlatCAMCommon.py:378 +#: FlatCAMCommon.py:1094 FlatCAMObj.py:6724 #: flatcamEditors/FlatCAMTextEditor.py:228 flatcamTools/ToolFilm.py:1019 -#: flatcamTools/ToolFilm.py:1195 flatcamTools/ToolSolderPaste.py:1541 +#: flatcamTools/ToolFilm.py:1195 flatcamTools/ToolSolderPaste.py:1544 msgid "" "Permission denied, saving not possible.\n" "Most likely another app is holding the file open and not accessible." @@ -206,99 +206,99 @@ msgstr "" "Très probablement, une autre application tient le fichier ouvert et n'est " "pas accessible." -#: FlatCAMApp.py:3919 +#: FlatCAMApp.py:3939 msgid "Could not load preferences file." msgstr "Impossible de charger le fichier de préférences." -#: FlatCAMApp.py:3939 FlatCAMApp.py:4919 +#: FlatCAMApp.py:3959 FlatCAMApp.py:4947 msgid "Failed to write defaults to file." msgstr "Échec d'écriture par défaut dans le fichier." -#: FlatCAMApp.py:3945 +#: FlatCAMApp.py:3965 msgid "Exported preferences to" msgstr "Préférences exportées vers" -#: FlatCAMApp.py:3962 +#: FlatCAMApp.py:3982 msgid "FlatCAM Preferences Folder opened." msgstr "Dossier Préférences FlatCAM ouvert." -#: FlatCAMApp.py:4045 +#: FlatCAMApp.py:4065 msgid "Failed to open recent files file for writing." msgstr "Échec d'ouverture du fichier récent en écriture." -#: FlatCAMApp.py:4056 +#: FlatCAMApp.py:4076 msgid "Failed to open recent projects file for writing." msgstr "Échec d'ouverture du fichier de projets récents en écriture." -#: FlatCAMApp.py:4142 flatcamParsers/ParseExcellon.py:886 -#: flatcamTools/ToolSolderPaste.py:1327 +#: FlatCAMApp.py:4162 flatcamParsers/ParseExcellon.py:886 +#: flatcamTools/ToolSolderPaste.py:1330 msgid "An internal error has ocurred. See shell.\n" msgstr "Une erreur interne s'est produite. Voir shell.\n" -#: FlatCAMApp.py:4143 +#: FlatCAMApp.py:4163 #, python-brace-format msgid "" "Object ({kind}) failed because: {error} \n" "\n" msgstr "L'objet ({kind}) a échoué car: {error}\n" -#: FlatCAMApp.py:4163 +#: FlatCAMApp.py:4183 msgid "Converting units to " msgstr "Conversion d'unités en " -#: FlatCAMApp.py:4266 +#: FlatCAMApp.py:4286 msgid "CREATE A NEW FLATCAM TCL SCRIPT" msgstr "CRÉER UN NOUVEAU SCRIPT FLATCAM TCL" -#: FlatCAMApp.py:4267 +#: FlatCAMApp.py:4287 msgid "TCL Tutorial is here" msgstr "Le didacticiel TCL est ici" -#: FlatCAMApp.py:4269 +#: FlatCAMApp.py:4289 msgid "FlatCAM commands list" msgstr "Liste des commandes FlatCAM" -#: FlatCAMApp.py:4320 FlatCAMApp.py:4326 FlatCAMApp.py:4332 FlatCAMApp.py:4338 -#: FlatCAMApp.py:4344 FlatCAMApp.py:4350 +#: FlatCAMApp.py:4340 FlatCAMApp.py:4346 FlatCAMApp.py:4352 FlatCAMApp.py:4358 +#: FlatCAMApp.py:4364 FlatCAMApp.py:4370 msgid "created/selected" msgstr "créé / sélectionné" -#: FlatCAMApp.py:4365 FlatCAMApp.py:7237 FlatCAMObj.py:263 FlatCAMObj.py:294 +#: FlatCAMApp.py:4385 FlatCAMApp.py:7265 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 "Traçage" -#: FlatCAMApp.py:4426 flatcamGUI/FlatCAMGUI.py:467 +#: FlatCAMApp.py:4448 flatcamGUI/FlatCAMGUI.py:493 msgid "About FlatCAM" msgstr "À propos de FlatCAM" -#: FlatCAMApp.py:4452 +#: FlatCAMApp.py:4474 msgid "2D Computer-Aided Printed Circuit Board Manufacturing" msgstr "Fabrication de cartes de circuits imprimés 2D assistées par ordinateur" -#: FlatCAMApp.py:4453 +#: FlatCAMApp.py:4475 msgid "Development" msgstr "Développement" -#: FlatCAMApp.py:4454 +#: FlatCAMApp.py:4476 msgid "DOWNLOAD" msgstr "TÉLÉCHARGER" -#: FlatCAMApp.py:4455 +#: FlatCAMApp.py:4477 msgid "Issue tracker" msgstr "Traqueur d'incidents" -#: FlatCAMApp.py:4459 FlatCAMApp.py:4794 +#: FlatCAMApp.py:4481 FlatCAMApp.py:4822 msgid "Close" msgstr "Proche" -#: FlatCAMApp.py:4474 +#: FlatCAMApp.py:4496 msgid "Licensed under the MIT license" msgstr "Sous licence MIT" -#: FlatCAMApp.py:4483 +#: FlatCAMApp.py:4505 msgid "" "Permission is hereby granted, free of charge, to any person obtaining a " "copy\n" @@ -350,7 +350,7 @@ msgstr "" "DANS\n" "LES LOGICIELS." -#: FlatCAMApp.py:4505 +#: FlatCAMApp.py:4527 msgid "" "Some of the icons used are from the following sources:
Icônes de " "oNline Web Fonts" -#: FlatCAMApp.py:4537 +#: FlatCAMApp.py:4559 msgid "Splash" msgstr "Éclaboussure" -#: FlatCAMApp.py:4543 +#: FlatCAMApp.py:4565 msgid "Programmers" msgstr "Programmeurs" -#: FlatCAMApp.py:4549 +#: FlatCAMApp.py:4571 msgid "Translators" msgstr "Traducteurs" -#: FlatCAMApp.py:4555 +#: FlatCAMApp.py:4577 msgid "License" msgstr "Licence" -#: FlatCAMApp.py:4561 +#: FlatCAMApp.py:4583 msgid "Attributions" msgstr "Attributions" -#: FlatCAMApp.py:4584 +#: FlatCAMApp.py:4606 msgid "Programmer" msgstr "Programmeur" -#: FlatCAMApp.py:4585 +#: FlatCAMApp.py:4607 msgid "Status" msgstr "Statut" -#: FlatCAMApp.py:4586 FlatCAMApp.py:4657 +#: FlatCAMApp.py:4608 FlatCAMApp.py:4686 msgid "E-mail" msgstr "Email" -#: FlatCAMApp.py:4594 -#| msgid "Maintainer >= 2019" +#: FlatCAMApp.py:4616 msgid "BETA Maintainer >= 2019" msgstr "Mainteneur BETA> = 2019" -#: FlatCAMApp.py:4654 +#: FlatCAMApp.py:4683 msgid "Language" msgstr "La langue" -#: FlatCAMApp.py:4655 +#: FlatCAMApp.py:4684 msgid "Translator" msgstr "Traducteur" -#: FlatCAMApp.py:4656 +#: FlatCAMApp.py:4685 msgid "Corrections" msgstr "Les corrections" -#: FlatCAMApp.py:4765 FlatCAMApp.py:4773 FlatCAMApp.py:7906 -#: flatcamGUI/FlatCAMGUI.py:451 +#: FlatCAMApp.py:4794 FlatCAMApp.py:4802 FlatCAMApp.py:7934 +#: flatcamGUI/FlatCAMGUI.py:475 msgid "Bookmarks Manager" msgstr "Gestionnaire de favoris" -#: FlatCAMApp.py:4785 +#: FlatCAMApp.py:4813 msgid "" "This entry will resolve to another website if:\n" "\n" @@ -440,35 +439,35 @@ msgstr "" "Si vous ne pouvez pas obtenir d'informations sur FlatCAM beta\n" "utilisez le lien de chaîne YouTube dans le menu Aide." -#: FlatCAMApp.py:4792 +#: FlatCAMApp.py:4820 msgid "Alternative website" msgstr "Site alternatif" -#: FlatCAMApp.py:4923 FlatCAMApp.py:7870 +#: FlatCAMApp.py:4951 FlatCAMApp.py:7898 msgid "Preferences saved." msgstr "Préférences enregistrées." -#: FlatCAMApp.py:4951 +#: FlatCAMApp.py:4979 msgid "Could not load factory defaults file." msgstr "Impossible de charger le fichier de paramètres d'usine." -#: FlatCAMApp.py:4961 +#: FlatCAMApp.py:4989 msgid "Failed to parse factory defaults file." msgstr "Échec de l'analyse du fichier des paramètres d'usine." -#: FlatCAMApp.py:4977 +#: FlatCAMApp.py:5005 msgid "Failed to write factory defaults to file." msgstr "Échec de l'écriture des paramètres d'usine par défaut dans le fichier." -#: FlatCAMApp.py:4981 +#: FlatCAMApp.py:5009 msgid "Factory defaults saved." msgstr "Les paramètres d'usine par défaut ont été enregistrés." -#: FlatCAMApp.py:4991 flatcamGUI/FlatCAMGUI.py:3691 +#: FlatCAMApp.py:5019 flatcamGUI/FlatCAMGUI.py:3926 msgid "Application is saving the project. Please wait ..." msgstr "L'application enregistre le projet. S'il vous plaît, attendez ..." -#: FlatCAMApp.py:4996 FlatCAMTranslation.py:166 +#: FlatCAMApp.py:5024 FlatCAMTranslation.py:188 msgid "" "There are files/objects modified in FlatCAM. \n" "Do you want to Save the project?" @@ -476,30 +475,30 @@ msgstr "" "Il y a des fichiers / objets modifiés dans FlatCAM.\n" "Voulez-vous enregistrer le projet?" -#: FlatCAMApp.py:4999 FlatCAMApp.py:9043 FlatCAMTranslation.py:169 +#: FlatCAMApp.py:5027 FlatCAMApp.py:9075 FlatCAMTranslation.py:191 msgid "Save changes" msgstr "Sauvegarder les modifications" -#: FlatCAMApp.py:5240 +#: FlatCAMApp.py:5268 msgid "Selected Excellon file extensions registered with FlatCAM." msgstr "" "Extensions de fichier Excellon sélectionnées enregistrées avec FlatCAM." -#: FlatCAMApp.py:5262 +#: FlatCAMApp.py:5290 msgid "Selected GCode file extensions registered with FlatCAM." msgstr "Extensions de fichier GCode sélectionnées enregistrées avec FlatCAM." -#: FlatCAMApp.py:5284 +#: FlatCAMApp.py:5312 msgid "Selected Gerber file extensions registered with FlatCAM." msgstr "Extensions de fichiers Gerber sélectionnées enregistrées avec FlatCAM." -#: FlatCAMApp.py:5472 FlatCAMApp.py:5529 FlatCAMApp.py:5557 +#: FlatCAMApp.py:5500 FlatCAMApp.py:5557 FlatCAMApp.py:5585 msgid "At least two objects are required for join. Objects currently selected" msgstr "" "Au moins deux objets sont requis pour la jointure. Objets actuellement " "sélectionnés" -#: FlatCAMApp.py:5481 +#: FlatCAMApp.py:5509 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 " @@ -516,51 +515,51 @@ msgstr "" "attendu.\n" "Vérifiez le GCODE généré." -#: FlatCAMApp.py:5493 +#: FlatCAMApp.py:5521 msgid "Multigeo. Geometry merging finished" msgstr "Multigeo. Fusion de la géométrie terminée" -#: FlatCAMApp.py:5502 +#: FlatCAMApp.py:5530 msgid "Geometry merging finished" msgstr "Fusion de la géométrie terminée" -#: FlatCAMApp.py:5524 +#: FlatCAMApp.py:5552 msgid "Failed. Excellon joining works only on Excellon objects." msgstr "Échoué. Excellon rejoindre ne travaille que sur des objets Excellon." -#: FlatCAMApp.py:5534 +#: FlatCAMApp.py:5562 msgid "Excellon merging finished" msgstr "Fusion de la Excellon terminée" -#: FlatCAMApp.py:5552 +#: FlatCAMApp.py:5580 msgid "Failed. Gerber joining works only on Gerber objects." msgstr "Échoué. La jonction de Gerber ne fonctionne que sur des objets Gerber." -#: FlatCAMApp.py:5562 +#: FlatCAMApp.py:5590 msgid "Gerber merging finished" msgstr "Fusion de Gerber terminée" -#: FlatCAMApp.py:5582 FlatCAMApp.py:5617 +#: FlatCAMApp.py:5610 FlatCAMApp.py:5645 msgid "Failed. Select a Geometry Object and try again." msgstr "Échoué. Sélectionnez un objet de géométrie et réessayez." -#: FlatCAMApp.py:5586 FlatCAMApp.py:5622 +#: FlatCAMApp.py:5614 FlatCAMApp.py:5650 msgid "Expected a FlatCAMGeometry, got" msgstr "Échoué. Sélectionnez un objet de géométrie et réessayez" -#: FlatCAMApp.py:5599 +#: FlatCAMApp.py:5627 msgid "A Geometry object was converted to MultiGeo type." msgstr "Un objet Geometry a été converti en type MultiGeo." -#: FlatCAMApp.py:5637 +#: FlatCAMApp.py:5665 msgid "A Geometry object was converted to SingleGeo type." msgstr "Un objet Geometry a été converti en type SingleGeo." -#: FlatCAMApp.py:5833 +#: FlatCAMApp.py:5861 msgid "Toggle Units" msgstr "Basculer les Unités" -#: FlatCAMApp.py:5835 +#: FlatCAMApp.py:5863 msgid "" "Changing the units of the project\n" "will scale all objects.\n" @@ -572,50 +571,50 @@ msgstr "" "\n" "Voulez-vous continuer?" -#: FlatCAMApp.py:5838 FlatCAMApp.py:7080 FlatCAMApp.py:7156 FlatCAMApp.py:9408 -#: FlatCAMApp.py:9422 FlatCAMApp.py:9776 FlatCAMApp.py:9787 +#: FlatCAMApp.py:5866 FlatCAMApp.py:7108 FlatCAMApp.py:7184 FlatCAMApp.py:9440 +#: FlatCAMApp.py:9454 FlatCAMApp.py:9808 FlatCAMApp.py:9819 msgid "Ok" msgstr "D'accord" -#: FlatCAMApp.py:5887 +#: FlatCAMApp.py:5915 msgid "Converted units to" msgstr "Unités converties en" -#: FlatCAMApp.py:5901 +#: FlatCAMApp.py:5929 msgid "Units conversion cancelled." msgstr "La conversion des unités a été annulée." -#: FlatCAMApp.py:6774 +#: FlatCAMApp.py:6802 msgid "Detachable Tabs" msgstr "Onglets détachables" -#: FlatCAMApp.py:6993 FlatCAMApp.py:7040 FlatCAMApp.py:7696 FlatCAMApp.py:7759 -#: FlatCAMApp.py:7825 +#: FlatCAMApp.py:7021 FlatCAMApp.py:7068 FlatCAMApp.py:7724 FlatCAMApp.py:7787 +#: FlatCAMApp.py:7853 msgid "Preferences" msgstr "Préférences" -#: FlatCAMApp.py:6996 +#: FlatCAMApp.py:7024 msgid "Preferences applied." msgstr "Préférences appliquées." -#: FlatCAMApp.py:7045 +#: FlatCAMApp.py:7073 msgid "Preferences closed without saving." msgstr "Les préférences se sont fermées sans enregistrer." -#: FlatCAMApp.py:7068 flatcamTools/ToolNonCopperClear.py:596 -#: flatcamTools/ToolNonCopperClear.py:992 flatcamTools/ToolPaint.py:507 -#: flatcamTools/ToolSolderPaste.py:562 flatcamTools/ToolSolderPaste.py:889 +#: FlatCAMApp.py:7096 flatcamTools/ToolNonCopperClear.py:597 +#: flatcamTools/ToolNonCopperClear.py:993 flatcamTools/ToolPaint.py:508 +#: flatcamTools/ToolSolderPaste.py:562 flatcamTools/ToolSolderPaste.py:892 msgid "Please enter a tool diameter with non-zero value, in Float format." msgstr "" "Veuillez saisir un diamètre d’outil avec une valeur non nulle, au format " "réel." -#: FlatCAMApp.py:7073 flatcamTools/ToolNonCopperClear.py:600 -#: flatcamTools/ToolPaint.py:511 flatcamTools/ToolSolderPaste.py:566 +#: FlatCAMApp.py:7101 flatcamTools/ToolNonCopperClear.py:601 +#: flatcamTools/ToolPaint.py:512 flatcamTools/ToolSolderPaste.py:566 msgid "Adding Tool cancelled" msgstr "Outil d'ajout annulé" -#: FlatCAMApp.py:7076 +#: FlatCAMApp.py:7104 msgid "" "Adding Tool works only when Advanced is checked.\n" "Go to Preferences -> General - Show Advanced Options." @@ -623,11 +622,11 @@ msgstr "" "L'ajout d'outil ne fonctionne que lorsque l'option Avancé est cochée.\n" "Allez dans Préférences -> Général - Afficher les options avancées." -#: FlatCAMApp.py:7151 +#: FlatCAMApp.py:7179 msgid "Delete objects" msgstr "Supprimer des objets" -#: FlatCAMApp.py:7154 +#: FlatCAMApp.py:7182 msgid "" "Are you sure you want to permanently delete\n" "the selected objects?" @@ -635,51 +634,51 @@ msgstr "" "Êtes-vous sûr de vouloir supprimer définitivement\n" "les objets sélectionnés?" -#: FlatCAMApp.py:7185 +#: FlatCAMApp.py:7213 msgid "Object(s) deleted" msgstr "Objet (s) supprimé (s)" -#: FlatCAMApp.py:7189 +#: FlatCAMApp.py:7217 msgid "Failed. No object(s) selected..." msgstr "Échoué. Aucun objet sélectionné ..." -#: FlatCAMApp.py:7191 +#: FlatCAMApp.py:7219 msgid "Save the work in Editor and try again ..." msgstr "Enregistrez le travail dans l'éditeur et réessayez ..." -#: FlatCAMApp.py:7221 +#: FlatCAMApp.py:7249 msgid "Object deleted" msgstr "Objet supprimé" -#: FlatCAMApp.py:7248 +#: FlatCAMApp.py:7276 msgid "Click to set the origin ..." msgstr "Cliquez pour définir l'origine ..." -#: FlatCAMApp.py:7270 +#: FlatCAMApp.py:7298 msgid "Setting Origin..." msgstr "Réglage de l'Origine ..." -#: FlatCAMApp.py:7282 +#: FlatCAMApp.py:7310 msgid "Origin set" msgstr "Ensemble d'origine" -#: FlatCAMApp.py:7289 +#: FlatCAMApp.py:7317 msgid "Origin coordinates specified but incomplete." msgstr "Coordonnées d'origine spécifiées mais incomplètes." -#: FlatCAMApp.py:7347 +#: FlatCAMApp.py:7375 msgid "Jump to ..." msgstr "Sauter à ..." -#: FlatCAMApp.py:7348 +#: FlatCAMApp.py:7376 msgid "Enter the coordinates in format X,Y:" msgstr "Entrez les coordonnées au format X, Y:" -#: FlatCAMApp.py:7356 +#: FlatCAMApp.py:7384 msgid "Wrong coordinates. Enter coordinates in format: X,Y" msgstr "Mauvaises coordonnées. Entrez les coordonnées au format: X, Y" -#: FlatCAMApp.py:7424 flatcamEditors/FlatCAMExcEditor.py:3518 +#: FlatCAMApp.py:7452 flatcamEditors/FlatCAMExcEditor.py:3518 #: flatcamEditors/FlatCAMExcEditor.py:3526 #: flatcamEditors/FlatCAMGeoEditor.py:3885 #: flatcamEditors/FlatCAMGeoEditor.py:3900 @@ -688,54 +687,54 @@ msgstr "Mauvaises coordonnées. Entrez les coordonnées au format: X, Y" #: flatcamEditors/FlatCAMGrbEditor.py:1446 #: flatcamEditors/FlatCAMGrbEditor.py:1704 #: flatcamEditors/FlatCAMGrbEditor.py:4368 -#: flatcamEditors/FlatCAMGrbEditor.py:4383 flatcamGUI/FlatCAMGUI.py:2871 -#: flatcamGUI/FlatCAMGUI.py:2883 +#: flatcamEditors/FlatCAMGrbEditor.py:4383 flatcamGUI/FlatCAMGUI.py:3106 +#: flatcamGUI/FlatCAMGUI.py:3118 msgid "Done." msgstr "Terminé." -#: FlatCAMApp.py:7576 FlatCAMApp.py:7647 +#: FlatCAMApp.py:7604 FlatCAMApp.py:7675 msgid "No object is selected. Select an object and try again." msgstr "Aucun objet n'est sélectionné. Sélectionnez un objet et réessayez." -#: FlatCAMApp.py:7667 +#: FlatCAMApp.py:7695 msgid "" "Aborting. The current task will be gracefully closed as soon as possible..." msgstr "" "Abandonner La tâche en cours sera clôturée dans les meilleurs délais ..." -#: FlatCAMApp.py:7673 +#: FlatCAMApp.py:7701 msgid "The current task was gracefully closed on user request..." msgstr "" "La tâche en cours a été fermée avec élégance à la demande de " "l'utilisateur ..." -#: FlatCAMApp.py:7756 +#: FlatCAMApp.py:7784 msgid "Preferences edited but not saved." msgstr "Préférences modifiées mais non enregistrées." -#: FlatCAMApp.py:7770 FlatCAMApp.py:7782 FlatCAMApp.py:7799 FlatCAMApp.py:7816 -#: FlatCAMApp.py:7876 FlatCAMCommon.py:1161 FlatCAMCommon.py:1336 -#: FlatCAMObj.py:4213 +#: FlatCAMApp.py:7798 FlatCAMApp.py:7810 FlatCAMApp.py:7827 FlatCAMApp.py:7844 +#: FlatCAMApp.py:7904 FlatCAMCommon.py:1161 FlatCAMCommon.py:1336 +#: FlatCAMObj.py:4216 msgid "Tools Database" msgstr "Base de données d'outils" -#: FlatCAMApp.py:7796 +#: FlatCAMApp.py:7824 msgid "Tools in Tools Database edited but not saved." msgstr "" "Les outils de la base de données d'outils ont été modifiés mais pas " "enregistrés." -#: FlatCAMApp.py:7820 +#: FlatCAMApp.py:7848 msgid "Tool from DB added in Tool Table." msgstr "Outil de la base de données ajouté dans la table d'outils." -#: FlatCAMApp.py:7822 +#: FlatCAMApp.py:7850 msgid "Adding tool from DB is not allowed for this object." msgstr "" "L'ajout d'outil à partir de la base de données n'est pas autorisé pour cet " "objet." -#: FlatCAMApp.py:7856 +#: FlatCAMApp.py:7884 msgid "" "One or more values are changed.\n" "Do you want to save the Preferences?" @@ -743,11 +742,11 @@ msgstr "" "Une ou plusieurs valeurs sont modifiées.\n" "Voulez-vous enregistrer les préférences?" -#: FlatCAMApp.py:7858 flatcamGUI/FlatCAMGUI.py:220 +#: FlatCAMApp.py:7886 flatcamGUI/FlatCAMGUI.py:222 msgid "Save Preferences" msgstr "Enregistrer les préf" -#: FlatCAMApp.py:7882 +#: FlatCAMApp.py:7910 msgid "" "One or more Tools are edited.\n" "Do you want to update the Tools Database?" @@ -755,96 +754,96 @@ msgstr "" "Un ou plusieurs outils sont modifiés.\n" "Voulez-vous mettre à jour la base de données d'outils?" -#: FlatCAMApp.py:7884 +#: FlatCAMApp.py:7912 msgid "Save Tools Database" msgstr "Enregistrer la base de données d'outils" -#: FlatCAMApp.py:7903 FlatCAMApp.py:10015 FlatCAMObj.py:6456 +#: FlatCAMApp.py:7931 FlatCAMApp.py:10047 FlatCAMObj.py:6459 msgid "Code Editor" msgstr "Éditeur de code" -#: FlatCAMApp.py:7921 +#: FlatCAMApp.py:7949 msgid "No object selected to Flip on Y axis." msgstr "Aucun objet sélectionné pour basculer sur l’axe Y." -#: FlatCAMApp.py:7947 +#: FlatCAMApp.py:7975 msgid "Flip on Y axis done." msgstr "Tournez sur l'axe des Y fait." -#: FlatCAMApp.py:7949 FlatCAMApp.py:7991 +#: FlatCAMApp.py:7977 FlatCAMApp.py:8019 #: flatcamEditors/FlatCAMGrbEditor.py:5773 msgid "Flip action was not executed." msgstr "L'Action de retournement n'a pas été exécutée." -#: FlatCAMApp.py:7963 +#: FlatCAMApp.py:7991 msgid "No object selected to Flip on X axis." msgstr "Aucun objet sélectionné pour basculer sur l’axe X." -#: FlatCAMApp.py:7989 +#: FlatCAMApp.py:8017 msgid "Flip on X axis done." msgstr "Tournez sur l'axe X fait." -#: FlatCAMApp.py:8005 +#: FlatCAMApp.py:8033 msgid "No object selected to Rotate." msgstr "Aucun objet sélectionné pour faire pivoter." -#: FlatCAMApp.py:8008 FlatCAMApp.py:8055 FlatCAMApp.py:8088 +#: FlatCAMApp.py:8036 FlatCAMApp.py:8083 FlatCAMApp.py:8116 msgid "Transform" msgstr "Transformer" -#: FlatCAMApp.py:8008 FlatCAMApp.py:8055 FlatCAMApp.py:8088 +#: FlatCAMApp.py:8036 FlatCAMApp.py:8083 FlatCAMApp.py:8116 msgid "Enter the Angle value:" msgstr "Entrez la valeur de l'angle:" -#: FlatCAMApp.py:8039 +#: FlatCAMApp.py:8067 msgid "Rotation done." msgstr "Rotation effectuée." -#: FlatCAMApp.py:8041 +#: FlatCAMApp.py:8069 msgid "Rotation movement was not executed." msgstr "Le mouvement de rotation n'a pas été exécuté." -#: FlatCAMApp.py:8053 +#: FlatCAMApp.py:8081 msgid "No object selected to Skew/Shear on X axis." msgstr "Aucun objet sélectionné pour incliner / cisailler sur l'axe X." -#: FlatCAMApp.py:8075 +#: FlatCAMApp.py:8103 msgid "Skew on X axis done." msgstr "Inclinaison sur l'axe X terminée." -#: FlatCAMApp.py:8086 +#: FlatCAMApp.py:8114 msgid "No object selected to Skew/Shear on Y axis." msgstr "" "Aucun objet sélectionné pour incliner / cisailler sur l'axe des ordonnées." -#: FlatCAMApp.py:8108 +#: FlatCAMApp.py:8136 msgid "Skew on Y axis done." msgstr "Inclinaison sur l'axe des Y faite." -#: FlatCAMApp.py:8256 FlatCAMApp.py:8303 flatcamGUI/FlatCAMGUI.py:429 -#: flatcamGUI/FlatCAMGUI.py:1465 +#: FlatCAMApp.py:8284 FlatCAMApp.py:8331 flatcamGUI/FlatCAMGUI.py:451 +#: flatcamGUI/FlatCAMGUI.py:1581 msgid "Select All" msgstr "Tout sélectionner" -#: FlatCAMApp.py:8260 FlatCAMApp.py:8307 flatcamGUI/FlatCAMGUI.py:432 +#: FlatCAMApp.py:8288 FlatCAMApp.py:8335 flatcamGUI/FlatCAMGUI.py:453 msgid "Deselect All" msgstr "Tout déselectionner" -#: FlatCAMApp.py:8323 +#: FlatCAMApp.py:8351 msgid "All objects are selected." msgstr "Tous les objets sont sélectionnés." -#: FlatCAMApp.py:8333 +#: FlatCAMApp.py:8361 msgid "Objects selection is cleared." msgstr "La sélection des objets est effacée." -#: FlatCAMApp.py:8349 flatcamGUI/FlatCAMGUI.py:1458 +#: FlatCAMApp.py:8378 flatcamGUI/FlatCAMGUI.py:1574 msgid "Grid On/Off" msgstr "Grille On/Off" -#: FlatCAMApp.py:8362 flatcamEditors/FlatCAMGeoEditor.py:940 +#: FlatCAMApp.py:8393 flatcamEditors/FlatCAMGeoEditor.py:940 #: flatcamEditors/FlatCAMGrbEditor.py:2503 -#: flatcamEditors/FlatCAMGrbEditor.py:5346 flatcamGUI/ObjectUI.py:1265 +#: flatcamEditors/FlatCAMGrbEditor.py:5346 flatcamGUI/ObjectUI.py:1304 #: flatcamTools/ToolDblSided.py:185 flatcamTools/ToolDblSided.py:238 #: flatcamTools/ToolNonCopperClear.py:286 flatcamTools/ToolPaint.py:188 #: flatcamTools/ToolSolderPaste.py:121 flatcamTools/ToolSolderPaste.py:591 @@ -852,78 +851,78 @@ msgstr "Grille On/Off" msgid "Add" msgstr "Ajouter" -#: FlatCAMApp.py:8363 FlatCAMObj.py:3900 +#: FlatCAMApp.py:8395 FlatCAMObj.py:3902 #: flatcamEditors/FlatCAMGrbEditor.py:2508 -#: 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 +#: flatcamEditors/FlatCAMGrbEditor.py:2656 flatcamGUI/FlatCAMGUI.py:654 +#: flatcamGUI/FlatCAMGUI.py:965 flatcamGUI/FlatCAMGUI.py:1987 +#: flatcamGUI/FlatCAMGUI.py:2130 flatcamGUI/FlatCAMGUI.py:2524 +#: flatcamGUI/ObjectUI.py:1330 flatcamTools/ToolNonCopperClear.py:298 #: flatcamTools/ToolPaint.py:200 flatcamTools/ToolSolderPaste.py:127 -#: flatcamTools/ToolSolderPaste.py:593 +#: flatcamTools/ToolSolderPaste.py:594 msgid "Delete" msgstr "Effacer" -#: FlatCAMApp.py:8376 +#: FlatCAMApp.py:8408 msgid "New Grid ..." msgstr "Nouvelle grille ..." -#: FlatCAMApp.py:8377 +#: FlatCAMApp.py:8409 msgid "Enter a Grid Value:" msgstr "Entrez une valeur de grille:" -#: FlatCAMApp.py:8385 FlatCAMApp.py:8412 +#: FlatCAMApp.py:8417 FlatCAMApp.py:8444 msgid "Please enter a grid value with non-zero value, in Float format." msgstr "" "Veuillez entrer une valeur de grille avec une valeur non nulle, au format " "réel." -#: FlatCAMApp.py:8391 +#: FlatCAMApp.py:8423 msgid "New Grid added" msgstr "Nouvelle grille ajoutée" -#: FlatCAMApp.py:8394 +#: FlatCAMApp.py:8426 msgid "Grid already exists" msgstr "La grille existe déjà" -#: FlatCAMApp.py:8397 +#: FlatCAMApp.py:8429 msgid "Adding New Grid cancelled" msgstr "Ajout d'une nouvelle grille annulée" -#: FlatCAMApp.py:8419 +#: FlatCAMApp.py:8451 msgid " Grid Value does not exist" msgstr " Grid Value does not exist" -#: FlatCAMApp.py:8422 +#: FlatCAMApp.py:8454 msgid "Grid Value deleted" msgstr "Valeur de grille supprimée" -#: FlatCAMApp.py:8425 +#: FlatCAMApp.py:8457 msgid "Delete Grid value cancelled" msgstr "Supprimer la valeur de grille annulée" -#: FlatCAMApp.py:8431 +#: FlatCAMApp.py:8463 msgid "Key Shortcut List" msgstr "Liste de raccourcis clavier" -#: FlatCAMApp.py:8465 +#: FlatCAMApp.py:8497 msgid " No object selected to copy it's name" msgstr " Aucun objet sélectionné pour copier son nom" -#: FlatCAMApp.py:8469 +#: FlatCAMApp.py:8501 msgid "Name copied on clipboard ..." msgstr "Nom copié dans le presse-papiers ..." -#: FlatCAMApp.py:8666 flatcamEditors/FlatCAMGrbEditor.py:4300 +#: FlatCAMApp.py:8698 flatcamEditors/FlatCAMGrbEditor.py:4300 msgid "Coordinates copied to clipboard." msgstr "Coordonnées copiées dans le presse-papier." -#: 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 +#: FlatCAMApp.py:8912 FlatCAMApp.py:8918 FlatCAMApp.py:8924 FlatCAMApp.py:8930 +#: ObjectCollection.py:792 ObjectCollection.py:798 ObjectCollection.py:804 +#: ObjectCollection.py:810 ObjectCollection.py:816 ObjectCollection.py:822 msgid "selected" msgstr "choisi" -#: FlatCAMApp.py:9040 +#: FlatCAMApp.py:9072 msgid "" "There are files/objects opened in FlatCAM.\n" "Creating a New project will delete them.\n" @@ -933,371 +932,371 @@ msgstr "" "La création d'un nouveau projet les supprimera.\n" "Voulez-vous enregistrer le projet?" -#: FlatCAMApp.py:9062 +#: FlatCAMApp.py:9094 msgid "New Project created" msgstr "Nouveau projet créé" -#: FlatCAMApp.py:9197 FlatCAMApp.py:9201 flatcamGUI/FlatCAMGUI.py:696 -#: flatcamGUI/FlatCAMGUI.py:2149 +#: FlatCAMApp.py:9229 FlatCAMApp.py:9233 flatcamGUI/FlatCAMGUI.py:741 +#: flatcamGUI/FlatCAMGUI.py:2317 msgid "Open Gerber" msgstr "Gerber ouvert" -#: FlatCAMApp.py:9208 +#: FlatCAMApp.py:9240 msgid "Opening Gerber file." msgstr "Ouvrir le fichier Gerber." -#: FlatCAMApp.py:9214 +#: FlatCAMApp.py:9246 msgid "Open Gerber cancelled." msgstr "Ouvert Gerber annulé." -#: FlatCAMApp.py:9235 FlatCAMApp.py:9239 flatcamGUI/FlatCAMGUI.py:697 -#: flatcamGUI/FlatCAMGUI.py:2150 +#: FlatCAMApp.py:9267 FlatCAMApp.py:9271 flatcamGUI/FlatCAMGUI.py:743 +#: flatcamGUI/FlatCAMGUI.py:2319 msgid "Open Excellon" msgstr "Excellon ouvert" -#: FlatCAMApp.py:9245 +#: FlatCAMApp.py:9277 msgid "Opening Excellon file." msgstr "Ouverture du fichier Excellon." -#: FlatCAMApp.py:9251 +#: FlatCAMApp.py:9283 msgid " Open Excellon cancelled." msgstr " Ouvert Excellon annulé." -#: FlatCAMApp.py:9275 FlatCAMApp.py:9279 +#: FlatCAMApp.py:9307 FlatCAMApp.py:9311 msgid "Open G-Code" msgstr "G-code ouvert" -#: FlatCAMApp.py:9286 +#: FlatCAMApp.py:9318 msgid "Opening G-Code file." msgstr "Ouverture du fichier G-Code." -#: FlatCAMApp.py:9292 +#: FlatCAMApp.py:9324 msgid "Open G-Code cancelled." msgstr "Ouvert G-code annulé." -#: FlatCAMApp.py:9310 FlatCAMApp.py:9313 flatcamGUI/FlatCAMGUI.py:1467 +#: FlatCAMApp.py:9342 FlatCAMApp.py:9345 flatcamGUI/FlatCAMGUI.py:1583 msgid "Open Project" msgstr "Projet ouvert" -#: FlatCAMApp.py:9322 +#: FlatCAMApp.py:9354 msgid "Open Project cancelled." msgstr "Projet ouvert annulé." -#: FlatCAMApp.py:9346 FlatCAMApp.py:9350 +#: FlatCAMApp.py:9378 FlatCAMApp.py:9382 msgid "Open HPGL2" msgstr "Ouvrir le HPGL2" -#: FlatCAMApp.py:9357 +#: FlatCAMApp.py:9389 msgid "Opening HPGL2 file." msgstr "Ouvrir le fichier HPGL2." -#: FlatCAMApp.py:9362 +#: FlatCAMApp.py:9394 msgid "Open HPGL2 file cancelled." msgstr "Ouvrir HPGL2annulé." -#: FlatCAMApp.py:9380 FlatCAMApp.py:9383 +#: FlatCAMApp.py:9412 FlatCAMApp.py:9415 msgid "Open Configuration File" msgstr "Ouvrir le fichier de configuration" -#: FlatCAMApp.py:9388 +#: FlatCAMApp.py:9420 msgid "Open Config cancelled." msgstr "Configuration ouverte annulée." -#: FlatCAMApp.py:9404 FlatCAMApp.py:9772 FlatCAMApp.py:10246 +#: FlatCAMApp.py:9436 FlatCAMApp.py:9804 FlatCAMApp.py:10278 msgid "No object selected." msgstr "Aucun objet sélectionné." -#: FlatCAMApp.py:9405 FlatCAMApp.py:9773 +#: FlatCAMApp.py:9437 FlatCAMApp.py:9805 msgid "Please Select a Geometry object to export" msgstr "Veuillez sélectionner un objet de géométrie à exporter" -#: FlatCAMApp.py:9419 +#: FlatCAMApp.py:9451 msgid "Only Geometry, Gerber and CNCJob objects can be used." msgstr "Seuls les objets Geometry, Gerber et CNCJob peuvent être utilisés." -#: FlatCAMApp.py:9432 FlatCAMApp.py:9436 flatcamTools/ToolQRCode.py:827 +#: FlatCAMApp.py:9464 FlatCAMApp.py:9468 flatcamTools/ToolQRCode.py:827 #: flatcamTools/ToolQRCode.py:831 msgid "Export SVG" msgstr "Exporter en SVG" -#: FlatCAMApp.py:9442 flatcamTools/ToolQRCode.py:836 +#: FlatCAMApp.py:9474 flatcamTools/ToolQRCode.py:836 msgid " Export SVG cancelled." msgstr " Export SVG annulé." -#: FlatCAMApp.py:9463 +#: FlatCAMApp.py:9495 msgid "Data must be a 3D array with last dimension 3 or 4" msgstr "" "Les données doivent être un tableau 3D avec la dernière dimension 3 ou 4" -#: FlatCAMApp.py:9469 FlatCAMApp.py:9473 +#: FlatCAMApp.py:9501 FlatCAMApp.py:9505 msgid "Export PNG Image" msgstr "Exporter une image PNG" -#: FlatCAMApp.py:9478 +#: FlatCAMApp.py:9510 msgid "Export PNG cancelled." msgstr "Exportation PNG annulée." -#: FlatCAMApp.py:9502 +#: FlatCAMApp.py:9534 msgid "No object selected. Please select an Gerber object to export." msgstr "" "Aucun objet sélectionné. Veuillez sélectionner un objet Gerber à exporter." -#: FlatCAMApp.py:9508 FlatCAMApp.py:9731 +#: FlatCAMApp.py:9540 FlatCAMApp.py:9763 msgid "Failed. Only Gerber objects can be saved as Gerber files..." msgstr "" "Échoué. Seuls les objets Gerber peuvent être enregistrés en tant que " "fichiers Gerber ..." -#: FlatCAMApp.py:9520 +#: FlatCAMApp.py:9552 msgid "Save Gerber source file" msgstr "Enregistrer le fichier source Gerber" -#: FlatCAMApp.py:9526 +#: FlatCAMApp.py:9558 msgid "Save Gerber source file cancelled." msgstr "Enregistrer le fichier source Gerber annulé." -#: FlatCAMApp.py:9546 +#: FlatCAMApp.py:9578 msgid "No object selected. Please select an Script object to export." msgstr "" "Aucun objet sélectionné. Veuillez sélectionner un objet de script à exporter." -#: FlatCAMApp.py:9552 +#: FlatCAMApp.py:9584 msgid "Failed. Only Script objects can be saved as TCL Script files..." msgstr "" "Échoué. Seuls les objets de script peuvent être enregistrés en tant que " "fichiers de script TCL ..." -#: FlatCAMApp.py:9564 +#: FlatCAMApp.py:9596 msgid "Save Script source file" msgstr "Enregistrer le fichier source du script" -#: FlatCAMApp.py:9570 +#: FlatCAMApp.py:9602 msgid "Save Script source file cancelled." msgstr "Enregistrer le fichier source du script annulé." -#: FlatCAMApp.py:9590 +#: FlatCAMApp.py:9622 msgid "No object selected. Please select an Document object to export." msgstr "" "Aucun objet sélectionné. Veuillez sélectionner un objet Document à exporter." -#: FlatCAMApp.py:9596 +#: FlatCAMApp.py:9628 msgid "Failed. Only Document objects can be saved as Document files..." msgstr "" "Échoué. Seuls les objets Document peuvent être enregistrés en tant que " "fichiers Document ..." -#: FlatCAMApp.py:9608 +#: FlatCAMApp.py:9640 msgid "Save Document source file" msgstr "Enregistrer le fichier source du document" -#: FlatCAMApp.py:9614 +#: FlatCAMApp.py:9646 msgid "Save Document source file cancelled." msgstr "Enregistrer le fichier source du document annulé." -#: FlatCAMApp.py:9634 +#: FlatCAMApp.py:9666 msgid "No object selected. Please select an Excellon object to export." msgstr "" "Aucun objet sélectionné. Veuillez sélectionner un objet Excellon à exporter." -#: FlatCAMApp.py:9640 FlatCAMApp.py:9684 FlatCAMApp.py:10422 +#: FlatCAMApp.py:9672 FlatCAMApp.py:9716 FlatCAMApp.py:10454 msgid "Failed. Only Excellon objects can be saved as Excellon files..." msgstr "" "Échoué. Seuls les objets Excellon peuvent être enregistrés en tant que " "fichiers Excellon ..." -#: FlatCAMApp.py:9648 FlatCAMApp.py:9652 +#: FlatCAMApp.py:9680 FlatCAMApp.py:9684 msgid "Save Excellon source file" msgstr "Enregistrer le fichier source Excellon" -#: FlatCAMApp.py:9658 +#: FlatCAMApp.py:9690 msgid "Saving Excellon source file cancelled." msgstr "Enregistrement du fichier source Excellon annulé." -#: FlatCAMApp.py:9678 +#: FlatCAMApp.py:9710 msgid "No object selected. Please Select an Excellon object to export." msgstr "" "Aucun objet sélectionné. Veuillez sélectionner un objet Excellon à exporter." -#: FlatCAMApp.py:9692 FlatCAMApp.py:9696 +#: FlatCAMApp.py:9724 FlatCAMApp.py:9728 msgid "Export Excellon" msgstr "Exporter Excellon" -#: FlatCAMApp.py:9702 +#: FlatCAMApp.py:9734 msgid "Export Excellon cancelled." msgstr "Exporter Excellon annulé." -#: FlatCAMApp.py:9725 +#: FlatCAMApp.py:9757 msgid "No object selected. Please Select an Gerber object to export." msgstr "" "Aucun objet sélectionné. Veuillez sélectionner un objet Gerber à exporter." -#: FlatCAMApp.py:9739 FlatCAMApp.py:9743 +#: FlatCAMApp.py:9771 FlatCAMApp.py:9775 msgid "Export Gerber" msgstr "Export Gerber" -#: FlatCAMApp.py:9749 +#: FlatCAMApp.py:9781 msgid "Export Gerber cancelled." msgstr "Export Gerber annulé." -#: FlatCAMApp.py:9784 +#: FlatCAMApp.py:9816 msgid "Only Geometry objects can be used." msgstr "Seuls les objets de géométrie peuvent être utilisés." -#: FlatCAMApp.py:9798 FlatCAMApp.py:9802 +#: FlatCAMApp.py:9830 FlatCAMApp.py:9834 msgid "Export DXF" msgstr "Exportation DXF" -#: FlatCAMApp.py:9809 +#: FlatCAMApp.py:9841 msgid "Export DXF cancelled." msgstr "Exportation DXF annulée." -#: FlatCAMApp.py:9829 FlatCAMApp.py:9832 +#: FlatCAMApp.py:9861 FlatCAMApp.py:9864 msgid "Import SVG" msgstr "Importer SVG" -#: FlatCAMApp.py:9842 +#: FlatCAMApp.py:9874 msgid "Open SVG cancelled." msgstr "Ouvrir SVG annulé." -#: FlatCAMApp.py:9861 FlatCAMApp.py:9865 +#: FlatCAMApp.py:9893 FlatCAMApp.py:9897 msgid "Import DXF" msgstr "Importation DXF" -#: FlatCAMApp.py:9875 +#: FlatCAMApp.py:9907 msgid "Open DXF cancelled." msgstr "Ouvrir DXF annulé." -#: FlatCAMApp.py:9917 +#: FlatCAMApp.py:9949 msgid "Viewing the source code of the selected object." msgstr "Affichage du code source de l'objet sélectionné." -#: FlatCAMApp.py:9918 FlatCAMObj.py:6442 FlatCAMObj.py:7043 +#: FlatCAMApp.py:9950 FlatCAMObj.py:6445 FlatCAMObj.py:7046 msgid "Loading..." msgstr "Chargement..." -#: FlatCAMApp.py:9924 FlatCAMApp.py:9928 +#: FlatCAMApp.py:9956 FlatCAMApp.py:9960 msgid "Select an Gerber or Excellon file to view it's source file." msgstr "" "Sélectionnez un fichier Gerber ou Excellon pour afficher son fichier source." -#: FlatCAMApp.py:9942 +#: FlatCAMApp.py:9974 msgid "Source Editor" msgstr "Éditeur de source" -#: FlatCAMApp.py:9982 FlatCAMApp.py:9989 +#: FlatCAMApp.py:10014 FlatCAMApp.py:10021 msgid "There is no selected object for which to see it's source file code." msgstr "" "Il n'y a pas d'objet sélectionné pour lequel voir son code de fichier source." -#: FlatCAMApp.py:10001 +#: FlatCAMApp.py:10033 msgid "Failed to load the source code for the selected object" msgstr "Échec du chargement du code source pour l'objet sélectionné" -#: FlatCAMApp.py:10043 +#: FlatCAMApp.py:10075 msgid "New TCL script file created in Code Editor." msgstr "Nouveau fichier de script TCL créé dans l'éditeur de code." -#: FlatCAMApp.py:10081 FlatCAMApp.py:10083 +#: FlatCAMApp.py:10113 FlatCAMApp.py:10115 msgid "Open TCL script" msgstr "Ouvrir le script TCL" -#: FlatCAMApp.py:10087 +#: FlatCAMApp.py:10119 msgid "Open TCL script cancelled." msgstr "Ouvrir le script TCL annulé." -#: FlatCAMApp.py:10111 +#: FlatCAMApp.py:10143 msgid "Executing FlatCAMScript file." msgstr "Exécution du fichier FlatCAMScript." -#: FlatCAMApp.py:10118 FlatCAMApp.py:10121 +#: FlatCAMApp.py:10150 FlatCAMApp.py:10153 msgid "Run TCL script" msgstr "Exécuter le script TCL" -#: FlatCAMApp.py:10131 +#: FlatCAMApp.py:10163 msgid "Run TCL script cancelled." msgstr "Exécuter le script TCL annulé." -#: FlatCAMApp.py:10147 +#: FlatCAMApp.py:10179 msgid "TCL script file opened in Code Editor and executed." msgstr "Fichier de script TCL ouvert dans l'éditeur de code et exécuté." -#: FlatCAMApp.py:10198 FlatCAMApp.py:10204 +#: FlatCAMApp.py:10230 FlatCAMApp.py:10236 msgid "Save Project As ..." msgstr "Enregistrer le projet sous ..." -#: FlatCAMApp.py:10200 flatcamGUI/FlatCAMGUI.py:909 -#: flatcamGUI/FlatCAMGUI.py:1899 +#: FlatCAMApp.py:10232 flatcamGUI/FlatCAMGUI.py:1025 +#: flatcamGUI/FlatCAMGUI.py:2022 msgid "Project" msgstr "Projet" -#: FlatCAMApp.py:10209 +#: FlatCAMApp.py:10241 msgid "Save Project cancelled." msgstr "Enregistrer le projet annulé." -#: FlatCAMApp.py:10216 +#: FlatCAMApp.py:10248 msgid "The object is used by another application." msgstr "L'objet est utilisé par une autre application." -#: FlatCAMApp.py:10252 FlatCAMApp.py:10259 flatcamGUI/FlatCAMGUI.py:261 +#: FlatCAMApp.py:10284 FlatCAMApp.py:10291 flatcamGUI/FlatCAMGUI.py:265 msgid "Save Object as PDF ..." msgstr "Enregistrer l'objet au format PDF ...Enregistrer le projet sous ..." -#: FlatCAMApp.py:10264 +#: FlatCAMApp.py:10296 msgid "Save Object PDF cancelled." msgstr "Enregistrer l'objet PDF annulé." -#: FlatCAMApp.py:10302 +#: FlatCAMApp.py:10334 msgid "Exporting SVG" msgstr "Exporter du SVG" -#: FlatCAMApp.py:10346 +#: FlatCAMApp.py:10378 msgid "SVG file exported to" msgstr "Fichier SVG exporté vers" -#: FlatCAMApp.py:10371 +#: FlatCAMApp.py:10403 msgid "" "Save cancelled because source file is empty. Try to export the Gerber file." msgstr "" "Enregistrement annulé car le fichier source est vide. Essayez d'exporter le " "fichier Gerber." -#: FlatCAMApp.py:10517 +#: FlatCAMApp.py:10549 msgid "Excellon file exported to" msgstr "Fichier Excellon exporté vers" -#: FlatCAMApp.py:10526 +#: FlatCAMApp.py:10558 msgid "Exporting Excellon" msgstr "Exporter Excellon" -#: FlatCAMApp.py:10532 FlatCAMApp.py:10540 +#: FlatCAMApp.py:10564 FlatCAMApp.py:10572 msgid "Could not export Excellon file." msgstr "Impossible d'exporter le fichier Excellon." -#: FlatCAMApp.py:10656 +#: FlatCAMApp.py:10688 msgid "Gerber file exported to" msgstr "Fichier Gerber exporté vers" -#: FlatCAMApp.py:10664 +#: FlatCAMApp.py:10696 msgid "Exporting Gerber" msgstr "Exporter Gerber" -#: FlatCAMApp.py:10670 FlatCAMApp.py:10678 +#: FlatCAMApp.py:10702 FlatCAMApp.py:10710 msgid "Could not export Gerber file." msgstr "Impossible d'exporter le fichier Gerber." -#: FlatCAMApp.py:10712 +#: FlatCAMApp.py:10744 msgid "DXF file exported to" msgstr "Fichier DXF exporté vers" -#: FlatCAMApp.py:10718 +#: FlatCAMApp.py:10750 msgid "Exporting DXF" msgstr "Exportation DXF" -#: FlatCAMApp.py:10723 FlatCAMApp.py:10730 +#: FlatCAMApp.py:10755 FlatCAMApp.py:10762 msgid "Could not export DXF file." msgstr "Impossible d'exporter le fichier DXF." -#: FlatCAMApp.py:10753 FlatCAMApp.py:10796 flatcamTools/ToolImage.py:278 +#: FlatCAMApp.py:10785 FlatCAMApp.py:10828 flatcamTools/ToolImage.py:278 msgid "" "Not supported type is picked as parameter. Only Geometry and Gerber are " "supported" @@ -1305,87 +1304,87 @@ msgstr "" "Le type non pris en charge est sélectionné en tant que paramètre. Seuls " "Geometry et Gerber sont supportés" -#: FlatCAMApp.py:10763 +#: FlatCAMApp.py:10795 msgid "Importing SVG" msgstr "Importer du SVG" -#: 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 +#: FlatCAMApp.py:10806 FlatCAMApp.py:10848 FlatCAMApp.py:10907 +#: FlatCAMApp.py:10974 FlatCAMApp.py:11037 FlatCAMApp.py:11104 +#: FlatCAMApp.py:11142 flatcamTools/ToolImage.py:298 #: flatcamTools/ToolPDF.py:225 msgid "Opened" msgstr "Ouvert" -#: FlatCAMApp.py:10805 +#: FlatCAMApp.py:10837 msgid "Importing DXF" msgstr "Importation de DXF" -#: FlatCAMApp.py:10841 FlatCAMApp.py:11031 +#: FlatCAMApp.py:10873 FlatCAMApp.py:11063 msgid "Failed to open file" msgstr "Échec de l'ouverture du fichier" -#: FlatCAMApp.py:10844 FlatCAMApp.py:11034 +#: FlatCAMApp.py:10876 FlatCAMApp.py:11066 msgid "Failed to parse file" msgstr "Échec de l'analyse du fichier" -#: FlatCAMApp.py:10849 FlatCAMApp.py:10910 FlatCAMApp.py:11039 -#: FlatCAMObj.py:5004 flatcamEditors/FlatCAMGrbEditor.py:4110 +#: FlatCAMApp.py:10881 FlatCAMApp.py:10942 FlatCAMApp.py:11071 +#: FlatCAMObj.py:5007 flatcamEditors/FlatCAMGrbEditor.py:4110 #: flatcamTools/ToolPcbWizard.py:437 msgid "An internal error has occurred. See shell.\n" msgstr "Une erreur interne s'est produite. Voir shell.\n" -#: FlatCAMApp.py:10856 +#: FlatCAMApp.py:10888 msgid "Object is not Gerber file or empty. Aborting object creation." msgstr "" "L'objet n'est pas un fichier Gerber ou vide. Abandon de la création d'objet." -#: FlatCAMApp.py:10861 +#: FlatCAMApp.py:10893 msgid "Opening Gerber" msgstr "Ouverture Gerber" -#: FlatCAMApp.py:10868 +#: FlatCAMApp.py:10900 msgid " Open Gerber failed. Probable not a Gerber file." msgstr " Open Gerber a échoué. Probablement pas un fichier Gerber." -#: FlatCAMApp.py:10900 flatcamTools/ToolPcbWizard.py:427 +#: FlatCAMApp.py:10932 flatcamTools/ToolPcbWizard.py:427 msgid "This is not Excellon file." msgstr "Ce n'est pas un fichier Excellon." -#: FlatCAMApp.py:10904 +#: FlatCAMApp.py:10936 msgid "Cannot open file" msgstr "Ne peut pas ouvrir le fichier" -#: FlatCAMApp.py:10924 flatcamTools/ToolPDF.py:275 +#: FlatCAMApp.py:10956 flatcamTools/ToolPDF.py:275 #: flatcamTools/ToolPcbWizard.py:451 msgid "No geometry found in file" msgstr "Aucune géométrie trouvée dans le fichier" -#: FlatCAMApp.py:10927 +#: FlatCAMApp.py:10959 msgid "Opening Excellon." msgstr "Ouverture Excellon." -#: FlatCAMApp.py:10934 +#: FlatCAMApp.py:10966 msgid "Open Excellon file failed. Probable not an Excellon file." msgstr "" "Le fichier Open Excellon a échoué. Probablement pas un fichier Excellon." -#: FlatCAMApp.py:10965 +#: FlatCAMApp.py:10997 msgid "Reading GCode file" msgstr "Lecture du fichier GCode" -#: FlatCAMApp.py:10972 +#: FlatCAMApp.py:11004 msgid "Failed to open" msgstr "Impossible d'ouvrir" -#: FlatCAMApp.py:10980 +#: FlatCAMApp.py:11012 msgid "This is not GCODE" msgstr "Ce n'est pas GCODE" -#: FlatCAMApp.py:10985 +#: FlatCAMApp.py:11017 msgid "Opening G-Code." msgstr "Ouverture G-Code." -#: FlatCAMApp.py:10994 +#: FlatCAMApp.py:11026 msgid "" "Failed to create CNCJob Object. Probable not a GCode file. Try to load it " "from File menu.\n" @@ -1397,68 +1396,68 @@ msgstr "" "La tentative de création d'un objet FlatCAM CNCJob à partir d'un fichier G-" "Code a échoué pendant le traitement" -#: FlatCAMApp.py:11053 +#: FlatCAMApp.py:11085 msgid "Object is not HPGL2 file or empty. Aborting object creation." msgstr "" "L'objet n'est pas un fichier HPGL2 ou vide. Abandon de la création d'objet." -#: FlatCAMApp.py:11058 +#: FlatCAMApp.py:11090 msgid "Opening HPGL2" msgstr "Ouverture HPGL2" -#: FlatCAMApp.py:11065 +#: FlatCAMApp.py:11097 msgid " Open HPGL2 failed. Probable not a HPGL2 file." msgstr " Open HPGL2 a échoué. Probablement pas un fichier HPGL2 ." -#: FlatCAMApp.py:11086 +#: FlatCAMApp.py:11118 msgid "Opening TCL Script..." msgstr "Ouverture du script TCL ..." -#: FlatCAMApp.py:11094 +#: FlatCAMApp.py:11126 msgid "TCL script file opened in Code Editor." msgstr "Fichier de script TCL ouvert dans l'éditeur de code." -#: FlatCAMApp.py:11097 +#: FlatCAMApp.py:11129 msgid "Failed to open TCL Script." msgstr "Impossible d'ouvrir le script TCL." -#: FlatCAMApp.py:11125 +#: FlatCAMApp.py:11157 msgid "Opening FlatCAM Config file." msgstr "Ouverture du fichier FlatCAM Config." -#: FlatCAMApp.py:11153 +#: FlatCAMApp.py:11185 msgid "Failed to open config file" msgstr "Impossible d'ouvrir le fichier de configuration" -#: FlatCAMApp.py:11179 +#: FlatCAMApp.py:11211 msgid "Loading Project ... Please Wait ..." msgstr "Chargement du projet ... Veuillez patienter ..." -#: FlatCAMApp.py:11184 +#: FlatCAMApp.py:11216 msgid "Opening FlatCAM Project file." msgstr "Ouverture du fichier de projet FlatCAM." -#: FlatCAMApp.py:11194 FlatCAMApp.py:11212 +#: FlatCAMApp.py:11226 FlatCAMApp.py:11244 msgid "Failed to open project file" msgstr "Impossible d'ouvrir le fichier de projet" -#: FlatCAMApp.py:11246 +#: FlatCAMApp.py:11278 msgid "Loading Project ... restoring" msgstr "Chargement du projet ... en cours de restauration" -#: FlatCAMApp.py:11255 +#: FlatCAMApp.py:11287 msgid "Project loaded from" msgstr "Projet chargé à partir de" -#: FlatCAMApp.py:11318 +#: FlatCAMApp.py:11350 msgid "Redrawing all objects" msgstr "Redessiner tous les objets" -#: FlatCAMApp.py:11350 +#: FlatCAMApp.py:11382 msgid "Available commands:\n" msgstr "Commandes disponibles:\n" -#: FlatCAMApp.py:11352 +#: FlatCAMApp.py:11384 msgid "" "\n" "\n" @@ -1470,51 +1469,51 @@ msgstr "" "Tapez help pour l'utiliser.\n" " Exemple: help open_gerber" -#: FlatCAMApp.py:11502 +#: FlatCAMApp.py:11534 msgid "Shows list of commands." msgstr "Affiche la liste des commandes." -#: FlatCAMApp.py:11564 +#: FlatCAMApp.py:11596 msgid "Failed to load recent item list." msgstr "Échec du chargement de la liste des éléments récents." -#: FlatCAMApp.py:11572 +#: FlatCAMApp.py:11604 msgid "Failed to parse recent item list." msgstr "Échec de l'analyse de la liste des éléments récents." -#: FlatCAMApp.py:11583 +#: FlatCAMApp.py:11615 msgid "Failed to load recent projects item list." msgstr "Échec du chargement de la liste d'éléments des projets récents." -#: FlatCAMApp.py:11591 +#: FlatCAMApp.py:11623 msgid "Failed to parse recent project item list." msgstr "Échec de l'analyse de la liste des éléments de projet récents." -#: FlatCAMApp.py:11650 +#: FlatCAMApp.py:11683 msgid "Clear Recent projects" msgstr "Effacer les projets récents" -#: FlatCAMApp.py:11673 +#: FlatCAMApp.py:11707 msgid "Clear Recent files" msgstr "Effacer les fichiers récents" -#: FlatCAMApp.py:11690 flatcamGUI/FlatCAMGUI.py:1133 +#: FlatCAMApp.py:11724 flatcamGUI/FlatCAMGUI.py:1249 msgid "Shortcut Key List" msgstr "Liste des touches de raccourci" -#: FlatCAMApp.py:11764 +#: FlatCAMApp.py:11798 msgid "Selected Tab - Choose an Item from Project Tab" msgstr "Onglet sélectionné - Choisissez un élément dans l'onglet Projet" -#: FlatCAMApp.py:11765 +#: FlatCAMApp.py:11799 msgid "Details" msgstr "Détails" -#: FlatCAMApp.py:11767 +#: FlatCAMApp.py:11801 msgid "The normal flow when working in FlatCAM is the following:" msgstr "Le flux normal lorsque vous travaillez dans FlatCAM est le suivant:" -#: FlatCAMApp.py:11768 +#: FlatCAMApp.py:11802 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 " @@ -1524,7 +1523,7 @@ msgstr "" "SVG dans FlatCAM à l'aide des barres d'outils, des raccourcis clavier ou " "même en glissant-déposant les fichiers sur l'interface graphique." -#: FlatCAMApp.py:11771 +#: FlatCAMApp.py:11805 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 " @@ -1535,7 +1534,7 @@ msgstr "" "FLATCAM ou par le biais du menu (ou de la barre d’outils) proposé dans " "l’application." -#: FlatCAMApp.py:11774 +#: FlatCAMApp.py:11808 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 " @@ -1548,7 +1547,7 @@ msgstr "" "TAB sera mis à jour avec les propriétés de l'objet en fonction de son type: " "Gerber, Excellon, géométrie ou objet CNCJob." -#: FlatCAMApp.py:11778 +#: FlatCAMApp.py:11812 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 " @@ -1562,7 +1561,7 @@ msgstr "" "l'objet sur la toile pour amener l'onglet sélectionné et le renseigner même " "s'il n'était pas net." -#: FlatCAMApp.py:11782 +#: FlatCAMApp.py:11816 msgid "" "You can change the parameters in this screen and the flow direction is like " "this:" @@ -1570,7 +1569,7 @@ msgstr "" "Vous pouvez modifier les paramètres dans cet écran et le sens du flux est le " "suivant:" -#: FlatCAMApp.py:11783 +#: FlatCAMApp.py:11817 msgid "" "Gerber/Excellon Object --> Change Parameter --> Generate Geometry --> " "Geometry Object --> Add tools (change param in Selected Tab) --> Generate " @@ -1583,7 +1582,7 @@ msgstr "" "Vérifier le GCode (via Edition CNC Code) et / ou ajouter / ajouter au code " "GCode (à nouveau dans l’onglet SÉLECTIONNÉ) -> Enregistrer le code GC." -#: FlatCAMApp.py:11787 +#: FlatCAMApp.py:11821 msgid "" "A list of key shortcuts is available through an menu entry in Help --> " "Shortcuts List or through its own key shortcut: F3." @@ -1591,24 +1590,24 @@ msgstr "" "Une liste des raccourcis clavier est disponible via une entrée de menu dans " "Aide -> Liste des raccourcis ou via son propre raccourci clavier: F3." -#: FlatCAMApp.py:11848 +#: FlatCAMApp.py:11882 msgid "Failed checking for latest version. Could not connect." msgstr "" "Échec de la vérification de la dernière version. N'a pas pu se connecter." -#: FlatCAMApp.py:11856 +#: FlatCAMApp.py:11890 msgid "Could not parse information about latest version." msgstr "Impossible d'analyser les informations sur la dernière version." -#: FlatCAMApp.py:11867 +#: FlatCAMApp.py:11901 msgid "FlatCAM is up to date!" msgstr "FlatCAM est à jour!" -#: FlatCAMApp.py:11872 +#: FlatCAMApp.py:11906 msgid "Newer Version Available" msgstr "Nouvelle version disponible" -#: FlatCAMApp.py:11873 +#: FlatCAMApp.py:11907 msgid "" "There is a newer version of FlatCAM available for download:\n" "\n" @@ -1616,63 +1615,63 @@ msgstr "" "Une version plus récente de FlatCAM est disponible au téléchargement:\n" "\n" -#: FlatCAMApp.py:11875 +#: FlatCAMApp.py:11909 msgid "info" msgstr "info" -#: FlatCAMApp.py:11954 +#: FlatCAMApp.py:11988 msgid "All plots disabled." msgstr "Toutes les parcelles désactivées." -#: FlatCAMApp.py:11961 +#: FlatCAMApp.py:11995 msgid "All non selected plots disabled." msgstr "Toutes les parcelles non sélectionnées sont désactivées." -#: FlatCAMApp.py:11968 +#: FlatCAMApp.py:12002 msgid "All plots enabled." msgstr "Toutes les parcelles activées." -#: FlatCAMApp.py:11975 +#: FlatCAMApp.py:12009 msgid "Selected plots enabled..." msgstr "Parcelles sélectionnées activées ..." -#: FlatCAMApp.py:11984 +#: FlatCAMApp.py:12018 msgid "Selected plots disabled..." msgstr "Parcelles sélectionnées désactivées ..." -#: FlatCAMApp.py:12003 +#: FlatCAMApp.py:12037 msgid "Enabling plots ..." msgstr "Activation des parcelles ..." -#: FlatCAMApp.py:12043 +#: FlatCAMApp.py:12077 msgid "Disabling plots ..." msgstr "Désactiver les parcelles ..." -#: FlatCAMApp.py:12065 +#: FlatCAMApp.py:12099 msgid "Working ..." msgstr "Travail ..." -#: FlatCAMApp.py:12104 +#: FlatCAMApp.py:12138 msgid "Saving FlatCAM Project" msgstr "Enregistrement du projet FlatCAM" -#: FlatCAMApp.py:12124 FlatCAMApp.py:12162 +#: FlatCAMApp.py:12158 FlatCAMApp.py:12196 msgid "Project saved to" msgstr "Projet enregistré dans" -#: FlatCAMApp.py:12144 +#: FlatCAMApp.py:12178 msgid "Failed to verify project file" msgstr "Échec de la vérification du fichier de projet" -#: FlatCAMApp.py:12144 FlatCAMApp.py:12153 FlatCAMApp.py:12165 +#: FlatCAMApp.py:12178 FlatCAMApp.py:12187 FlatCAMApp.py:12199 msgid "Retry to save it." msgstr "Réessayez de le sauvegarder." -#: FlatCAMApp.py:12153 FlatCAMApp.py:12165 +#: FlatCAMApp.py:12187 FlatCAMApp.py:12199 msgid "Failed to parse saved project file" msgstr "Échec de l'analyse du fichier de projet enregistré" -#: FlatCAMApp.py:12281 +#: FlatCAMApp.py:12315 msgid "The user requested a graceful exit of the current task." msgstr "L'utilisateur a demandé une sortie en douceur de la tâche en cours." @@ -1754,7 +1753,7 @@ msgstr "Signet supprimé." msgid "Export FlatCAM Bookmarks" msgstr "Exporter les signets FlatCAM" -#: FlatCAMCommon.py:363 flatcamGUI/FlatCAMGUI.py:448 +#: FlatCAMCommon.py:363 flatcamGUI/FlatCAMGUI.py:472 msgid "Bookmarks" msgstr "Favoris" @@ -1786,13 +1785,13 @@ msgstr "Importation de favoris FlatCAM annulée." msgid "Imported Bookmarks from" msgstr "Favoris importés de" -#: FlatCAMCommon.py:477 FlatCAMObj.py:3588 FlatCAMObj.py:4589 -#: FlatCAMObj.py:4590 FlatCAMObj.py:4599 +#: FlatCAMCommon.py:477 FlatCAMObj.py:3588 FlatCAMObj.py:4592 +#: FlatCAMObj.py:4593 FlatCAMObj.py:4602 msgid "Iso" msgstr "Iso" #: FlatCAMCommon.py:477 FlatCAMCommon.py:1012 FlatCAMObj.py:1351 -#: FlatCAMObj.py:3588 FlatCAMObj.py:3861 FlatCAMObj.py:4149 +#: FlatCAMObj.py:3588 FlatCAMObj.py:3861 FlatCAMObj.py:4152 msgid "Rough" msgstr "Rugueux" @@ -1805,12 +1804,12 @@ msgid "Tool Name" msgstr "Nom de l'outil" #: FlatCAMCommon.py:514 flatcamEditors/FlatCAMExcEditor.py:1527 -#: flatcamGUI/ObjectUI.py:1256 flatcamTools/ToolNonCopperClear.py:271 +#: flatcamGUI/ObjectUI.py:1295 flatcamTools/ToolNonCopperClear.py:271 #: flatcamTools/ToolPaint.py:176 msgid "Tool Dia" msgstr "Dia. de l'outil" -#: FlatCAMCommon.py:515 flatcamGUI/ObjectUI.py:1239 +#: FlatCAMCommon.py:515 flatcamGUI/ObjectUI.py:1278 msgid "Tool Offset" msgstr "Décalage d'outil" @@ -1818,8 +1817,8 @@ msgstr "Décalage d'outil" msgid "Custom Offset" msgstr "Décalage personnalisé" -#: FlatCAMCommon.py:517 flatcamGUI/ObjectUI.py:293 -#: flatcamGUI/PreferencesUI.py:1626 flatcamGUI/PreferencesUI.py:3991 +#: FlatCAMCommon.py:517 flatcamGUI/ObjectUI.py:304 +#: flatcamGUI/PreferencesUI.py:1627 flatcamGUI/PreferencesUI.py:3992 #: flatcamTools/ToolNonCopperClear.py:213 msgid "Tool Type" msgstr "Type d'outil" @@ -1828,11 +1827,11 @@ msgstr "Type d'outil" msgid "Tool Shape" msgstr "Forme d'outil" -#: 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 +#: FlatCAMCommon.py:519 flatcamGUI/ObjectUI.py:345 flatcamGUI/ObjectUI.py:820 +#: flatcamGUI/ObjectUI.py:1405 flatcamGUI/ObjectUI.py:1928 +#: flatcamGUI/PreferencesUI.py:1667 flatcamGUI/PreferencesUI.py:2335 +#: flatcamGUI/PreferencesUI.py:3180 flatcamGUI/PreferencesUI.py:4037 +#: flatcamGUI/PreferencesUI.py:4291 flatcamGUI/PreferencesUI.py:5115 #: flatcamTools/ToolCalculators.py:114 flatcamTools/ToolCutOut.py:132 #: flatcamTools/ToolNonCopperClear.py:254 msgid "Cut Z" @@ -1854,9 +1853,9 @@ msgstr "Dia. en V" msgid "V-Angle" msgstr "Angle en V" -#: 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 +#: FlatCAMCommon.py:524 flatcamGUI/ObjectUI.py:839 flatcamGUI/ObjectUI.py:1452 +#: flatcamGUI/PreferencesUI.py:2353 flatcamGUI/PreferencesUI.py:3233 +#: flatcamGUI/PreferencesUI.py:6467 flatcamTools/ToolCalibration.py:74 msgid "Travel Z" msgstr "Voyage Z" @@ -1872,12 +1871,12 @@ msgstr "Avance Z" msgid "FR Rapids" msgstr "Avance Rapides" -#: FlatCAMCommon.py:528 flatcamGUI/PreferencesUI.py:2427 +#: FlatCAMCommon.py:528 flatcamGUI/PreferencesUI.py:2428 msgid "Spindle Speed" msgstr "Vitesse de broche" -#: FlatCAMCommon.py:529 flatcamGUI/ObjectUI.py:939 flatcamGUI/ObjectUI.py:1582 -#: flatcamGUI/PreferencesUI.py:2439 flatcamGUI/PreferencesUI.py:3353 +#: FlatCAMCommon.py:529 flatcamGUI/ObjectUI.py:963 flatcamGUI/ObjectUI.py:1621 +#: flatcamGUI/PreferencesUI.py:2440 flatcamGUI/PreferencesUI.py:3354 msgid "Dwell" msgstr "Habiter" @@ -1885,8 +1884,8 @@ msgstr "Habiter" msgid "Dwelltime" msgstr "Temps d'attente" -#: FlatCAMCommon.py:531 flatcamGUI/ObjectUI.py:958 -#: flatcamGUI/PreferencesUI.py:2461 flatcamGUI/PreferencesUI.py:3375 +#: FlatCAMCommon.py:531 flatcamGUI/ObjectUI.py:982 +#: flatcamGUI/PreferencesUI.py:2462 flatcamGUI/PreferencesUI.py:3376 msgid "Preprocessor" msgstr "Post-processeur" @@ -1906,8 +1905,8 @@ msgstr "Changement d'outil" msgid "Toolchange XY" msgstr "Changement d'outils X, Y" -#: FlatCAMCommon.py:536 flatcamGUI/PreferencesUI.py:2378 -#: flatcamGUI/PreferencesUI.py:3264 flatcamGUI/PreferencesUI.py:6503 +#: FlatCAMCommon.py:536 flatcamGUI/PreferencesUI.py:2379 +#: flatcamGUI/PreferencesUI.py:3265 flatcamGUI/PreferencesUI.py:6504 #: flatcamTools/ToolCalibration.py:111 msgid "Toolchange Z" msgstr "Changement d'outil Z" @@ -2350,13 +2349,13 @@ msgstr "Mise à l'échelle..." msgid "Skewing..." msgstr "Fausser..." -#: FlatCAMObj.py:723 FlatCAMObj.py:2710 FlatCAMObj.py:3904 -#: flatcamGUI/PreferencesUI.py:1123 flatcamGUI/PreferencesUI.py:2257 +#: FlatCAMObj.py:723 FlatCAMObj.py:2710 FlatCAMObj.py:3907 +#: flatcamGUI/PreferencesUI.py:1124 flatcamGUI/PreferencesUI.py:2258 msgid "Basic" msgstr "De base" -#: FlatCAMObj.py:745 FlatCAMObj.py:2722 FlatCAMObj.py:3925 -#: flatcamGUI/PreferencesUI.py:1124 +#: FlatCAMObj.py:745 FlatCAMObj.py:2722 FlatCAMObj.py:3928 +#: flatcamGUI/PreferencesUI.py:1125 msgid "Advanced" msgstr "Avancé" @@ -2364,16 +2363,16 @@ msgstr "Avancé" msgid "Buffering solid geometry" msgstr "Mise en tampon de la géométrie solide" -#: FlatCAMObj.py:965 camlib.py:965 flatcamGUI/PreferencesUI.py:1700 +#: FlatCAMObj.py:965 camlib.py:965 flatcamGUI/PreferencesUI.py:1701 #: flatcamTools/ToolCopperThieving.py:1010 #: flatcamTools/ToolCopperThieving.py:1199 #: flatcamTools/ToolCopperThieving.py:1211 -#: flatcamTools/ToolNonCopperClear.py:1628 -#: flatcamTools/ToolNonCopperClear.py:1726 -#: flatcamTools/ToolNonCopperClear.py:1738 -#: flatcamTools/ToolNonCopperClear.py:1987 -#: flatcamTools/ToolNonCopperClear.py:2083 -#: flatcamTools/ToolNonCopperClear.py:2095 +#: flatcamTools/ToolNonCopperClear.py:1629 +#: flatcamTools/ToolNonCopperClear.py:1727 +#: flatcamTools/ToolNonCopperClear.py:1739 +#: flatcamTools/ToolNonCopperClear.py:1988 +#: flatcamTools/ToolNonCopperClear.py:2084 +#: flatcamTools/ToolNonCopperClear.py:2096 msgid "Buffering" msgstr "Mise en mémoire tampon" @@ -2389,7 +2388,7 @@ msgstr "Isoler ..." msgid "Click on a polygon to isolate it." msgstr "Cliquez sur un polygone pour l'isoler." -#: FlatCAMObj.py:1117 FlatCAMObj.py:1222 flatcamTools/ToolPaint.py:1125 +#: FlatCAMObj.py:1117 FlatCAMObj.py:1222 flatcamTools/ToolPaint.py:1126 msgid "Added polygon" msgstr "Polygone ajouté" @@ -2399,7 +2398,7 @@ msgstr "" "Cliquez pour ajouter le polygone suivant ou cliquez avec le bouton droit " "pour démarrer l'isolement." -#: FlatCAMObj.py:1131 flatcamTools/ToolPaint.py:1139 +#: FlatCAMObj.py:1131 flatcamTools/ToolPaint.py:1140 msgid "Removed polygon" msgstr "Polygone supprimé" @@ -2409,11 +2408,11 @@ msgstr "" "Cliquez pour ajouter / supprimer le polygone suivant ou cliquez avec le " "bouton droit pour démarrer l'isolement." -#: FlatCAMObj.py:1137 flatcamTools/ToolPaint.py:1145 +#: FlatCAMObj.py:1137 flatcamTools/ToolPaint.py:1146 msgid "No polygon detected under click position." msgstr "Aucun polygone détecté sous la position du clic." -#: FlatCAMObj.py:1158 flatcamTools/ToolPaint.py:1174 +#: FlatCAMObj.py:1158 flatcamTools/ToolPaint.py:1175 msgid "List of single polygons is empty. Aborting." msgstr "La liste des polygones simples est vide. Abandon." @@ -2422,8 +2421,8 @@ msgid "No polygon in selection." msgstr "Aucun polygone dans la sélection." #: FlatCAMObj.py:1301 FlatCAMObj.py:1430 -#: flatcamTools/ToolNonCopperClear.py:1657 -#: flatcamTools/ToolNonCopperClear.py:2011 +#: flatcamTools/ToolNonCopperClear.py:1658 +#: flatcamTools/ToolNonCopperClear.py:2012 msgid "Isolation geometry could not be generated." msgstr "La géométrie d'isolation n'a pas pu être générée." @@ -2457,9 +2456,9 @@ msgid "Milling tool for DRILLS is larger than hole size. Cancelled." msgstr "" "L'outil de fraisage pour PERÇAGES est supérieur à la taille du trou. Annulé." -#: FlatCAMObj.py:3032 FlatCAMObj.py:4490 flatcamEditors/FlatCAMGeoEditor.py:408 -#: flatcamGUI/FlatCAMGUI.py:438 flatcamGUI/FlatCAMGUI.py:930 -#: flatcamGUI/ObjectUI.py:1314 +#: FlatCAMObj.py:3032 FlatCAMObj.py:4493 flatcamEditors/FlatCAMGeoEditor.py:408 +#: flatcamGUI/FlatCAMGUI.py:459 flatcamGUI/FlatCAMGUI.py:1046 +#: flatcamGUI/ObjectUI.py:1353 msgid "Tool" msgstr "Outil" @@ -2469,7 +2468,7 @@ msgstr "Numéro d'outil" #: FlatCAMObj.py:3048 FlatCAMObj.py:3141 FlatCAMObj.py:3259 #: flatcamEditors/FlatCAMExcEditor.py:1507 -#: flatcamEditors/FlatCAMExcEditor.py:2967 flatcamGUI/ObjectUI.py:753 +#: flatcamEditors/FlatCAMExcEditor.py:2967 flatcamGUI/ObjectUI.py:777 #: flatcamTools/ToolNonCopperClear.py:120 flatcamTools/ToolPaint.py:123 #: flatcamTools/ToolPcbWizard.py:76 flatcamTools/ToolProperties.py:396 #: flatcamTools/ToolProperties.py:449 flatcamTools/ToolSolderPaste.py:84 @@ -2505,7 +2504,7 @@ msgstr "" "Format de valeur incorrect pour self.defaults [\"feedrate_probe\"] ou self." "options [\"feedrate_probe\"]" -#: FlatCAMObj.py:3341 FlatCAMObj.py:5311 FlatCAMObj.py:5315 FlatCAMObj.py:5450 +#: FlatCAMObj.py:3341 FlatCAMObj.py:5314 FlatCAMObj.py:5318 FlatCAMObj.py:5453 msgid "Generating CNC Code" msgstr "Génération de code CNC" @@ -2513,17 +2512,17 @@ msgstr "Génération de code CNC" msgid "Add from Tool DB" msgstr "Ajouter à partir de la BD d'outils" -#: 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 +#: FlatCAMObj.py:3899 flatcamGUI/FlatCAMGUI.py:652 flatcamGUI/FlatCAMGUI.py:768 +#: flatcamGUI/FlatCAMGUI.py:963 flatcamGUI/FlatCAMGUI.py:1984 +#: flatcamGUI/FlatCAMGUI.py:2128 flatcamGUI/FlatCAMGUI.py:2343 +#: flatcamGUI/FlatCAMGUI.py:2522 flatcamGUI/ObjectUI.py:1324 #: flatcamTools/ToolPanelize.py:534 flatcamTools/ToolPanelize.py:561 #: flatcamTools/ToolPanelize.py:660 flatcamTools/ToolPanelize.py:694 #: flatcamTools/ToolPanelize.py:759 msgid "Copy" msgstr "Copie" -#: FlatCAMObj.py:3985 FlatCAMObj.py:4354 FlatCAMObj.py:5061 FlatCAMObj.py:5701 +#: FlatCAMObj.py:3988 FlatCAMObj.py:4357 FlatCAMObj.py:5064 FlatCAMObj.py:5704 #: flatcamEditors/FlatCAMExcEditor.py:2459 #: flatcamEditors/FlatCAMGeoEditor.py:1078 #: flatcamEditors/FlatCAMGeoEditor.py:1112 @@ -2532,62 +2531,62 @@ msgstr "Copie" #: 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 +#: flatcamTools/ToolNonCopperClear.py:1058 +#: flatcamTools/ToolNonCopperClear.py:1466 flatcamTools/ToolPaint.py:841 +#: flatcamTools/ToolPaint.py:1025 flatcamTools/ToolPaint.py:2097 +#: flatcamTools/ToolSolderPaste.py:882 flatcamTools/ToolSolderPaste.py:957 msgid "Wrong value format entered, use a number." msgstr "Mauvais format de valeur entré, utilisez un nombre." -#: FlatCAMObj.py:4123 +#: FlatCAMObj.py:4126 msgid "Please enter the desired tool diameter in Float format." msgstr "Veuillez saisir le diamètre de l'outil souhaité au format réel." -#: FlatCAMObj.py:4193 +#: FlatCAMObj.py:4196 msgid "Tool added in Tool Table." msgstr "Outil ajouté dans la table d'outils." -#: FlatCAMObj.py:4197 +#: FlatCAMObj.py:4200 msgid "Default Tool added. Wrong value format entered." msgstr "Outil par défaut ajouté. Format de valeur incorrect entré." -#: FlatCAMObj.py:4304 FlatCAMObj.py:4313 +#: FlatCAMObj.py:4307 FlatCAMObj.py:4316 msgid "Failed. Select a tool to copy." msgstr "Échoué. Sélectionnez un outil à copier." -#: FlatCAMObj.py:4340 +#: FlatCAMObj.py:4343 msgid "Tool was copied in Tool Table." msgstr "L'outil a été copié dans la table d'outils." -#: FlatCAMObj.py:4368 +#: FlatCAMObj.py:4371 msgid "Tool was edited in Tool Table." msgstr "L'outil a été édité dans Tool Table." -#: FlatCAMObj.py:4397 FlatCAMObj.py:4406 +#: FlatCAMObj.py:4400 FlatCAMObj.py:4409 msgid "Failed. Select a tool to delete." msgstr "Échoué. Sélectionnez un outil à supprimer." -#: FlatCAMObj.py:4429 +#: FlatCAMObj.py:4432 msgid "Tool was deleted in Tool Table." msgstr "L'outil a été supprimé dans la table d'outils." -#: FlatCAMObj.py:4490 flatcamGUI/ObjectUI.py:1314 +#: FlatCAMObj.py:4493 flatcamGUI/ObjectUI.py:1353 msgid "Parameters for" msgstr "Paramètres pour" -#: FlatCAMObj.py:4921 +#: FlatCAMObj.py:4924 msgid "This Geometry can't be processed because it is" msgstr "Cette géométrie ne peut pas être traitée car elle est" -#: FlatCAMObj.py:4923 +#: FlatCAMObj.py:4926 msgid "geometry" msgstr "geometry" -#: FlatCAMObj.py:4966 +#: FlatCAMObj.py:4969 msgid "Failed. No tool selected in the tool table ..." msgstr "Échoué. Aucun outil sélectionné dans la table d'outils ..." -#: FlatCAMObj.py:5066 FlatCAMObj.py:5219 +#: FlatCAMObj.py:5069 FlatCAMObj.py:5222 msgid "" "Tool Offset is selected in Tool Table but no value is provided.\n" "Add a Tool Offset or change the Offset Type." @@ -2596,44 +2595,44 @@ msgstr "" "n’est fournie.\n" "Ajoutez un décalage d'outil ou changez le type de décalage." -#: FlatCAMObj.py:5131 FlatCAMObj.py:5280 +#: FlatCAMObj.py:5134 FlatCAMObj.py:5283 msgid "G-Code parsing in progress..." msgstr "Analyse du code G en cours ..." -#: FlatCAMObj.py:5133 FlatCAMObj.py:5282 +#: FlatCAMObj.py:5136 FlatCAMObj.py:5285 msgid "G-Code parsing finished..." msgstr "L'analyse du code G est terminée ..." -#: FlatCAMObj.py:5141 +#: FlatCAMObj.py:5144 msgid "Finished G-Code processing" msgstr "Traitement du code G terminé" -#: FlatCAMObj.py:5143 FlatCAMObj.py:5294 +#: FlatCAMObj.py:5146 FlatCAMObj.py:5297 msgid "G-Code processing failed with error" msgstr "Le traitement du code G a échoué avec une erreur" -#: FlatCAMObj.py:5189 flatcamTools/ToolSolderPaste.py:1300 +#: FlatCAMObj.py:5192 flatcamTools/ToolSolderPaste.py:1303 msgid "Cancelled. Empty file, it has no geometry" msgstr "Annulé. Fichier vide, il n'a pas de géométrie" -#: FlatCAMObj.py:5292 FlatCAMObj.py:5443 +#: FlatCAMObj.py:5295 FlatCAMObj.py:5446 msgid "Finished G-Code processing..." msgstr "Traitement terminé du code G ..." -#: FlatCAMObj.py:5313 FlatCAMObj.py:5317 FlatCAMObj.py:5453 +#: FlatCAMObj.py:5316 FlatCAMObj.py:5320 FlatCAMObj.py:5456 msgid "CNCjob created" msgstr "CNCjob créé" -#: FlatCAMObj.py:5484 FlatCAMObj.py:5493 flatcamParsers/ParseGerber.py:1750 +#: FlatCAMObj.py:5487 FlatCAMObj.py:5496 flatcamParsers/ParseGerber.py:1750 #: flatcamParsers/ParseGerber.py:1760 msgid "Scale factor has to be a number: integer or float." msgstr "Le facteur d'échelle doit être un nombre: entier ou réel." -#: FlatCAMObj.py:5557 +#: FlatCAMObj.py:5560 msgid "Geometry Scale done." msgstr "Échelle de géométrie terminée." -#: FlatCAMObj.py:5574 flatcamParsers/ParseGerber.py:1876 +#: FlatCAMObj.py:5577 flatcamParsers/ParseGerber.py:1876 msgid "" "An (x,y) pair of values are needed. Probable you entered only one value in " "the Offset field." @@ -2641,11 +2640,11 @@ msgstr "" "Une paire de valeurs (x, y) est nécessaire. Vous avez probablement entré une " "seule valeur dans le champ Décalage." -#: FlatCAMObj.py:5631 +#: FlatCAMObj.py:5634 msgid "Geometry Offset done." msgstr "Décalage de géométrie effectué." -#: FlatCAMObj.py:5660 +#: FlatCAMObj.py:5663 msgid "" "The Toolchange X,Y field in Edit -> Preferences has to be in the format (x, " "y)\n" @@ -2655,79 +2654,79 @@ msgstr "" "y)\n" "mais maintenant il n'y a qu'une seule valeur, pas deux." -#: FlatCAMObj.py:6335 FlatCAMObj.py:6993 FlatCAMObj.py:7189 +#: FlatCAMObj.py:6338 FlatCAMObj.py:6996 FlatCAMObj.py:7192 msgid "Basic" msgstr "De base" -#: FlatCAMObj.py:6341 FlatCAMObj.py:6997 FlatCAMObj.py:7193 +#: FlatCAMObj.py:6344 FlatCAMObj.py:7000 FlatCAMObj.py:7196 msgid "Advanced" msgstr "Avancé" -#: FlatCAMObj.py:6384 +#: FlatCAMObj.py:6387 msgid "Plotting..." msgstr "Traçage..." -#: FlatCAMObj.py:6407 FlatCAMObj.py:6412 flatcamTools/ToolSolderPaste.py:1506 +#: FlatCAMObj.py:6410 FlatCAMObj.py:6415 flatcamTools/ToolSolderPaste.py:1509 msgid "Export Machine Code ..." msgstr "Exporter le code machine ..." -#: FlatCAMObj.py:6417 flatcamTools/ToolSolderPaste.py:1510 +#: FlatCAMObj.py:6420 flatcamTools/ToolSolderPaste.py:1513 msgid "Export Machine Code cancelled ..." msgstr "Exporter le code machine annulé ..." -#: FlatCAMObj.py:6439 +#: FlatCAMObj.py:6442 msgid "Machine Code file saved to" msgstr "Fichier de code machine enregistré dans" -#: FlatCAMObj.py:6493 flatcamTools/ToolCalibration.py:1083 +#: FlatCAMObj.py:6496 flatcamTools/ToolCalibration.py:1083 msgid "Loaded Machine Code into Code Editor" msgstr "Code machine chargé dans l'éditeur de code" -#: FlatCAMObj.py:6628 +#: FlatCAMObj.py:6631 msgid "This CNCJob object can't be processed because it is a" msgstr "Cet objet CNCJob ne peut pas être traité car il est" -#: FlatCAMObj.py:6630 +#: FlatCAMObj.py:6633 msgid "CNCJob object" msgstr "Objet CNCJob" -#: FlatCAMObj.py:6681 +#: FlatCAMObj.py:6684 msgid "G-code does not have a units code: either G20 or G21" msgstr "G-code n'a pas de code d'unités: G20 ou G21" -#: FlatCAMObj.py:6695 +#: FlatCAMObj.py:6698 msgid "Cancelled. The Toolchange Custom code is enabled but it's empty." msgstr "Annulé. Le code personnalisé Toolchange est activé mais vide." -#: FlatCAMObj.py:6700 +#: FlatCAMObj.py:6703 msgid "Toolchange G-code was replaced by a custom code." msgstr "Toolchange G-code a été remplacé par un code personnalisé." -#: FlatCAMObj.py:6717 flatcamEditors/FlatCAMTextEditor.py:224 -#: flatcamTools/ToolSolderPaste.py:1537 +#: FlatCAMObj.py:6720 flatcamEditors/FlatCAMTextEditor.py:224 +#: flatcamTools/ToolSolderPaste.py:1540 msgid "No such file or directory" msgstr "Aucun fichier ou répertoire de ce nom" -#: FlatCAMObj.py:6731 flatcamEditors/FlatCAMTextEditor.py:236 +#: FlatCAMObj.py:6734 flatcamEditors/FlatCAMTextEditor.py:236 msgid "Saved to" msgstr "Enregistré dans" -#: FlatCAMObj.py:6741 FlatCAMObj.py:6751 +#: FlatCAMObj.py:6744 FlatCAMObj.py:6754 msgid "" "The used preprocessor file has to have in it's name: 'toolchange_custom'" msgstr "" "Le fichier de post-traitement utilisé doit avoir pour nom: " "'toolchange_custom'" -#: FlatCAMObj.py:6755 +#: FlatCAMObj.py:6758 msgid "There is no preprocessor file." msgstr "Il n'y a pas de fichier de post-processeur." -#: FlatCAMObj.py:7012 +#: FlatCAMObj.py:7015 msgid "Script Editor" msgstr "Éditeur de script" -#: FlatCAMObj.py:7293 +#: FlatCAMObj.py:7296 msgid "Document Editor" msgstr "Éditeur de Document" @@ -2735,24 +2734,24 @@ msgstr "Éditeur de Document" msgid "processes running." msgstr "processus en cours d'exécution." -#: FlatCAMTranslation.py:92 +#: FlatCAMTranslation.py:103 msgid "The application will restart." msgstr "L'application va redémarrer." -#: FlatCAMTranslation.py:94 +#: FlatCAMTranslation.py:105 msgid "Are you sure do you want to change the current language to" msgstr "Etes-vous sûr de vouloir changer la langue actuelle en" -#: FlatCAMTranslation.py:95 +#: FlatCAMTranslation.py:106 msgid "Apply Language ..." msgstr "Appliquer la langue ..." -#: ObjectCollection.py:453 +#: ObjectCollection.py:454 #, python-brace-format msgid "Object renamed from {old} to {new}" msgstr "Objet renommé de {old} à {new}" -#: ObjectCollection.py:852 +#: ObjectCollection.py:853 msgid "Cause of error" msgstr "Cause d'erreur" @@ -3082,8 +3081,8 @@ msgstr "" "pour le redimensionner." #: flatcamEditors/FlatCAMExcEditor.py:983 -#: flatcamEditors/FlatCAMExcEditor.py:1052 flatcamGUI/FlatCAMGUI.py:2892 -#: flatcamGUI/FlatCAMGUI.py:3105 flatcamGUI/FlatCAMGUI.py:3322 +#: flatcamEditors/FlatCAMExcEditor.py:1052 flatcamGUI/FlatCAMGUI.py:3127 +#: flatcamGUI/FlatCAMGUI.py:3340 flatcamGUI/FlatCAMGUI.py:3557 msgid "Cancelled." msgstr "Annulé." @@ -3111,7 +3110,7 @@ msgstr "Terminé. Foret (s) Déplacement terminé." msgid "Done. Drill(s) copied." msgstr "Terminé. Percer des trous copiés." -#: flatcamEditors/FlatCAMExcEditor.py:1480 flatcamGUI/PreferencesUI.py:2820 +#: flatcamEditors/FlatCAMExcEditor.py:1480 flatcamGUI/PreferencesUI.py:2821 msgid "Excellon Editor" msgstr "Excellent éditeur" @@ -3120,13 +3119,13 @@ msgstr "Excellent éditeur" msgid "Name:" msgstr "Nom:" -#: flatcamEditors/FlatCAMExcEditor.py:1493 flatcamGUI/ObjectUI.py:733 -#: flatcamGUI/ObjectUI.py:1145 flatcamTools/ToolNonCopperClear.py:109 +#: flatcamEditors/FlatCAMExcEditor.py:1493 flatcamGUI/ObjectUI.py:757 +#: flatcamGUI/ObjectUI.py:1184 flatcamTools/ToolNonCopperClear.py:109 #: flatcamTools/ToolPaint.py:112 flatcamTools/ToolSolderPaste.py:73 msgid "Tools Table" msgstr "Tableau des outils" -#: flatcamEditors/FlatCAMExcEditor.py:1495 flatcamGUI/ObjectUI.py:735 +#: flatcamEditors/FlatCAMExcEditor.py:1495 flatcamGUI/ObjectUI.py:759 msgid "" "Tools in this Excellon object\n" "when are used for drilling." @@ -3146,8 +3145,8 @@ msgstr "" "Ajouter / Supprimer un outil à la liste d'outils\n" "pour cet objet Excellon." -#: flatcamEditors/FlatCAMExcEditor.py:1529 flatcamGUI/ObjectUI.py:1258 -#: flatcamGUI/PreferencesUI.py:2851 +#: flatcamEditors/FlatCAMExcEditor.py:1529 flatcamGUI/ObjectUI.py:1297 +#: flatcamGUI/PreferencesUI.py:2852 msgid "Diameter for the new tool" msgstr "Diamètre pour le nouvel outil" @@ -3175,7 +3174,7 @@ msgstr "" "Supprimer un outil dans la liste des outils\n" "en sélectionnant une ligne dans la table d'outils." -#: flatcamEditors/FlatCAMExcEditor.py:1573 flatcamGUI/FlatCAMGUI.py:1749 +#: flatcamEditors/FlatCAMExcEditor.py:1573 flatcamGUI/FlatCAMGUI.py:1865 msgid "Resize Drill(s)" msgstr "Redim. les Forets" @@ -3199,8 +3198,8 @@ msgstr "Redimensionner" msgid "Resize drill(s)" msgstr "Redimensionner les forets" -#: flatcamEditors/FlatCAMExcEditor.py:1622 flatcamGUI/FlatCAMGUI.py:1748 -#: flatcamGUI/FlatCAMGUI.py:1958 +#: flatcamEditors/FlatCAMExcEditor.py:1622 flatcamGUI/FlatCAMGUI.py:1864 +#: flatcamGUI/FlatCAMGUI.py:2116 msgid "Add Drill Array" msgstr "Ajouter un Tableau de Forage" @@ -3224,17 +3223,17 @@ msgstr "Linéaire" #: flatcamEditors/FlatCAMExcEditor.py:1634 #: flatcamEditors/FlatCAMExcEditor.py:1848 -#: flatcamEditors/FlatCAMGrbEditor.py:2696 flatcamGUI/ObjectUI.py:300 -#: flatcamGUI/PreferencesUI.py:3999 flatcamGUI/PreferencesUI.py:6396 +#: flatcamEditors/FlatCAMGrbEditor.py:2696 flatcamGUI/ObjectUI.py:311 +#: flatcamGUI/PreferencesUI.py:4000 flatcamGUI/PreferencesUI.py:6397 #: flatcamTools/ToolFiducials.py:220 flatcamTools/ToolNonCopperClear.py:221 msgid "Circular" msgstr "Circulaire" -#: flatcamEditors/FlatCAMExcEditor.py:1642 flatcamGUI/PreferencesUI.py:2862 +#: flatcamEditors/FlatCAMExcEditor.py:1642 flatcamGUI/PreferencesUI.py:2863 msgid "Nr of drills" msgstr "Nb de Forages" -#: flatcamEditors/FlatCAMExcEditor.py:1643 flatcamGUI/PreferencesUI.py:2864 +#: flatcamEditors/FlatCAMExcEditor.py:1643 flatcamGUI/PreferencesUI.py:2865 msgid "Specify how many drills to be in the array." msgstr "Spécifiez combien d'exercices doivent figurer dans le tableau." @@ -3245,14 +3244,14 @@ msgstr "Spécifiez combien d'exercices doivent figurer dans le tableau." #: flatcamEditors/FlatCAMExcEditor.py:1927 #: flatcamEditors/FlatCAMGrbEditor.py:1524 #: flatcamEditors/FlatCAMGrbEditor.py:2724 -#: flatcamEditors/FlatCAMGrbEditor.py:2773 flatcamGUI/PreferencesUI.py:2972 +#: flatcamEditors/FlatCAMGrbEditor.py:2773 flatcamGUI/PreferencesUI.py:2973 msgid "Direction" msgstr "Direction" #: flatcamEditors/FlatCAMExcEditor.py:1663 #: flatcamEditors/FlatCAMExcEditor.py:1878 -#: flatcamEditors/FlatCAMGrbEditor.py:2726 flatcamGUI/PreferencesUI.py:1940 -#: flatcamGUI/PreferencesUI.py:2880 flatcamGUI/PreferencesUI.py:3028 +#: flatcamEditors/FlatCAMGrbEditor.py:2726 flatcamGUI/PreferencesUI.py:1941 +#: flatcamGUI/PreferencesUI.py:2881 flatcamGUI/PreferencesUI.py:3029 msgid "" "Direction on which the linear array is oriented:\n" "- 'X' - horizontal axis \n" @@ -3267,9 +3266,9 @@ msgstr "" #: flatcamEditors/FlatCAMExcEditor.py:1670 #: flatcamEditors/FlatCAMExcEditor.py:1792 #: flatcamEditors/FlatCAMExcEditor.py:1885 -#: flatcamEditors/FlatCAMGrbEditor.py:2733 flatcamGUI/PreferencesUI.py:1946 -#: flatcamGUI/PreferencesUI.py:2886 flatcamGUI/PreferencesUI.py:2981 -#: flatcamGUI/PreferencesUI.py:3034 flatcamGUI/PreferencesUI.py:4822 +#: flatcamEditors/FlatCAMGrbEditor.py:2733 flatcamGUI/PreferencesUI.py:1947 +#: flatcamGUI/PreferencesUI.py:2887 flatcamGUI/PreferencesUI.py:2982 +#: flatcamGUI/PreferencesUI.py:3035 flatcamGUI/PreferencesUI.py:4823 #: flatcamTools/ToolFilm.py:256 msgid "X" msgstr "X" @@ -3277,9 +3276,9 @@ msgstr "X" #: flatcamEditors/FlatCAMExcEditor.py:1671 #: flatcamEditors/FlatCAMExcEditor.py:1793 #: flatcamEditors/FlatCAMExcEditor.py:1886 -#: flatcamEditors/FlatCAMGrbEditor.py:2734 flatcamGUI/PreferencesUI.py:1947 -#: flatcamGUI/PreferencesUI.py:2887 flatcamGUI/PreferencesUI.py:2982 -#: flatcamGUI/PreferencesUI.py:3035 flatcamGUI/PreferencesUI.py:4823 +#: flatcamEditors/FlatCAMGrbEditor.py:2734 flatcamGUI/PreferencesUI.py:1948 +#: flatcamGUI/PreferencesUI.py:2888 flatcamGUI/PreferencesUI.py:2983 +#: flatcamGUI/PreferencesUI.py:3036 flatcamGUI/PreferencesUI.py:4824 #: flatcamTools/ToolFilm.py:257 msgid "Y" msgstr "Y" @@ -3294,11 +3293,11 @@ msgstr "Y" #: flatcamEditors/FlatCAMExcEditor.py:1939 #: flatcamEditors/FlatCAMGrbEditor.py:2735 #: flatcamEditors/FlatCAMGrbEditor.py:2752 -#: flatcamEditors/FlatCAMGrbEditor.py:2788 flatcamGUI/PreferencesUI.py:1948 -#: 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 +#: flatcamEditors/FlatCAMGrbEditor.py:2788 flatcamGUI/PreferencesUI.py:1949 +#: flatcamGUI/PreferencesUI.py:1967 flatcamGUI/PreferencesUI.py:2889 +#: flatcamGUI/PreferencesUI.py:2908 flatcamGUI/PreferencesUI.py:2984 +#: flatcamGUI/PreferencesUI.py:2989 flatcamGUI/PreferencesUI.py:3037 +#: flatcamGUI/PreferencesUI.py:3058 flatcamGUI/PreferencesUI.py:5216 #: flatcamTools/ToolDistance.py:66 flatcamTools/ToolDistanceMin.py:68 #: flatcamTools/ToolTransform.py:62 msgid "Angle" @@ -3306,15 +3305,15 @@ msgstr "Angle" #: flatcamEditors/FlatCAMExcEditor.py:1676 #: flatcamEditors/FlatCAMExcEditor.py:1891 -#: flatcamEditors/FlatCAMGrbEditor.py:2739 flatcamGUI/PreferencesUI.py:1954 -#: flatcamGUI/PreferencesUI.py:2894 flatcamGUI/PreferencesUI.py:3042 +#: flatcamEditors/FlatCAMGrbEditor.py:2739 flatcamGUI/PreferencesUI.py:1955 +#: flatcamGUI/PreferencesUI.py:2895 flatcamGUI/PreferencesUI.py:3043 msgid "Pitch" msgstr "Pas" #: flatcamEditors/FlatCAMExcEditor.py:1678 #: flatcamEditors/FlatCAMExcEditor.py:1893 -#: flatcamEditors/FlatCAMGrbEditor.py:2741 flatcamGUI/PreferencesUI.py:1956 -#: flatcamGUI/PreferencesUI.py:2896 flatcamGUI/PreferencesUI.py:3044 +#: flatcamEditors/FlatCAMGrbEditor.py:2741 flatcamGUI/PreferencesUI.py:1957 +#: flatcamGUI/PreferencesUI.py:2897 flatcamGUI/PreferencesUI.py:3045 msgid "Pitch = Distance between elements of the array." msgstr "Pas = Distance entre les éléments du tableau." @@ -3343,26 +3342,26 @@ msgstr "" #: flatcamEditors/FlatCAMExcEditor.py:1719 #: flatcamEditors/FlatCAMExcEditor.py:1935 -#: flatcamEditors/FlatCAMGrbEditor.py:2783 flatcamGUI/PreferencesUI.py:1988 -#: flatcamGUI/PreferencesUI.py:2634 flatcamGUI/PreferencesUI.py:2930 -#: flatcamGUI/PreferencesUI.py:3080 flatcamGUI/PreferencesUI.py:3508 +#: flatcamEditors/FlatCAMGrbEditor.py:2783 flatcamGUI/PreferencesUI.py:1989 +#: flatcamGUI/PreferencesUI.py:2635 flatcamGUI/PreferencesUI.py:2931 +#: flatcamGUI/PreferencesUI.py:3081 flatcamGUI/PreferencesUI.py:3509 msgid "CW" msgstr "CW" #: flatcamEditors/FlatCAMExcEditor.py:1720 #: flatcamEditors/FlatCAMExcEditor.py:1936 -#: flatcamEditors/FlatCAMGrbEditor.py:2784 flatcamGUI/PreferencesUI.py:1989 -#: flatcamGUI/PreferencesUI.py:2635 flatcamGUI/PreferencesUI.py:2931 -#: flatcamGUI/PreferencesUI.py:3081 flatcamGUI/PreferencesUI.py:3509 +#: flatcamEditors/FlatCAMGrbEditor.py:2784 flatcamGUI/PreferencesUI.py:1990 +#: flatcamGUI/PreferencesUI.py:2636 flatcamGUI/PreferencesUI.py:2932 +#: flatcamGUI/PreferencesUI.py:3082 flatcamGUI/PreferencesUI.py:3510 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:2909 -#: flatcamGUI/PreferencesUI.py:2939 flatcamGUI/PreferencesUI.py:3059 -#: flatcamGUI/PreferencesUI.py:3089 +#: flatcamEditors/FlatCAMGrbEditor.py:2790 flatcamGUI/PreferencesUI.py:1969 +#: flatcamGUI/PreferencesUI.py:1998 flatcamGUI/PreferencesUI.py:2910 +#: flatcamGUI/PreferencesUI.py:2940 flatcamGUI/PreferencesUI.py:3060 +#: flatcamGUI/PreferencesUI.py:3090 msgid "Angle at which each element in circular array is placed." msgstr "Angle auquel chaque élément du tableau circulaire est placé." @@ -3378,16 +3377,16 @@ msgstr "" "Paramètres pour l'ajout d'une fente (trou de forme ovale)\n" "soit seul, soit faisant partie d'un tableau." -#: flatcamEditors/FlatCAMExcEditor.py:1769 flatcamGUI/PreferencesUI.py:2956 +#: flatcamEditors/FlatCAMExcEditor.py:1769 flatcamGUI/PreferencesUI.py:2957 #: flatcamTools/ToolProperties.py:555 msgid "Length" msgstr "Longueur" -#: flatcamEditors/FlatCAMExcEditor.py:1771 flatcamGUI/PreferencesUI.py:2958 +#: flatcamEditors/FlatCAMExcEditor.py:1771 flatcamGUI/PreferencesUI.py:2959 msgid "Length = The length of the slot." msgstr "Longueur = La longueur de la fente." -#: flatcamEditors/FlatCAMExcEditor.py:1785 flatcamGUI/PreferencesUI.py:2974 +#: flatcamEditors/FlatCAMExcEditor.py:1785 flatcamGUI/PreferencesUI.py:2975 msgid "" "Direction on which the slot is oriented:\n" "- 'X' - horizontal axis \n" @@ -3427,11 +3426,11 @@ msgstr "" "Sélectionnez le type de matrice à percer.\n" "Il peut être linéaire X (Y) ou circulaire" -#: flatcamEditors/FlatCAMExcEditor.py:1856 flatcamGUI/PreferencesUI.py:3013 +#: flatcamEditors/FlatCAMExcEditor.py:1856 flatcamGUI/PreferencesUI.py:3014 msgid "Nr of slots" msgstr "Nb de Fentes" -#: flatcamEditors/FlatCAMExcEditor.py:1857 flatcamGUI/PreferencesUI.py:3015 +#: flatcamEditors/FlatCAMExcEditor.py:1857 flatcamGUI/PreferencesUI.py:3016 msgid "Specify how many slots to be in the array." msgstr "Spécifiez le nombre de Fente dans le Tableau." @@ -3443,7 +3442,7 @@ msgstr "" "Outil déjà dans la liste d'outils d'origine ou réelle.\n" "Enregistrez et rééditez Excellon si vous devez ajouter cet outil. " -#: flatcamEditors/FlatCAMExcEditor.py:2480 flatcamGUI/FlatCAMGUI.py:3491 +#: flatcamEditors/FlatCAMExcEditor.py:2480 flatcamGUI/FlatCAMGUI.py:3726 msgid "Added new tool with dia" msgstr "Ajout d'un nouvel outil avec dia" @@ -3519,7 +3518,7 @@ msgid "Round" msgstr "Rond" #: flatcamEditors/FlatCAMGeoEditor.py:96 -#: flatcamEditors/FlatCAMGrbEditor.py:2552 flatcamGUI/PreferencesUI.py:5989 +#: flatcamEditors/FlatCAMGrbEditor.py:2552 flatcamGUI/PreferencesUI.py:5990 #: flatcamTools/ToolQRCode.py:198 msgid "Square" msgstr "Carré" @@ -3542,8 +3541,8 @@ msgid "Full Buffer" msgstr "Plein tampon" #: flatcamEditors/FlatCAMGeoEditor.py:133 -#: flatcamEditors/FlatCAMGeoEditor.py:2758 flatcamGUI/FlatCAMGUI.py:1658 -#: flatcamGUI/PreferencesUI.py:2008 +#: flatcamEditors/FlatCAMGeoEditor.py:2758 flatcamGUI/FlatCAMGUI.py:1774 +#: flatcamGUI/PreferencesUI.py:2009 msgid "Buffer Tool" msgstr "Outil Tampon" @@ -3563,7 +3562,7 @@ msgstr "" msgid "Font" msgstr "Police" -#: flatcamEditors/FlatCAMGeoEditor.py:324 flatcamGUI/FlatCAMGUI.py:1919 +#: flatcamEditors/FlatCAMGeoEditor.py:324 flatcamGUI/FlatCAMGUI.py:2054 msgid "Text" msgstr "Texte" @@ -3571,13 +3570,13 @@ msgstr "Texte" msgid "Text Tool" msgstr "Outil Texte" -#: flatcamEditors/FlatCAMGeoEditor.py:442 flatcamGUI/ObjectUI.py:348 -#: flatcamGUI/PreferencesUI.py:1449 flatcamGUI/PreferencesUI.py:3144 -#: flatcamGUI/PreferencesUI.py:4500 +#: flatcamEditors/FlatCAMGeoEditor.py:442 flatcamGUI/ObjectUI.py:359 +#: flatcamGUI/PreferencesUI.py:1450 flatcamGUI/PreferencesUI.py:3145 +#: flatcamGUI/PreferencesUI.py:4501 msgid "Tool dia" msgstr "Outil dia" -#: flatcamEditors/FlatCAMGeoEditor.py:444 flatcamGUI/PreferencesUI.py:4502 +#: flatcamEditors/FlatCAMGeoEditor.py:444 flatcamGUI/PreferencesUI.py:4503 msgid "" "Diameter of the tool to\n" "be used in the operation." @@ -3585,13 +3584,13 @@ msgstr "" "Diamètre de l'outil à\n" "être utilisé dans l'opération." -#: flatcamEditors/FlatCAMGeoEditor.py:455 flatcamGUI/PreferencesUI.py:4107 -#: flatcamGUI/PreferencesUI.py:4532 flatcamTools/ToolNonCopperClear.py:319 +#: flatcamEditors/FlatCAMGeoEditor.py:455 flatcamGUI/PreferencesUI.py:4108 +#: flatcamGUI/PreferencesUI.py:4533 flatcamTools/ToolNonCopperClear.py:319 #: flatcamTools/ToolPaint.py:219 msgid "Overlap Rate" msgstr "Taux de chevauchement" -#: flatcamEditors/FlatCAMGeoEditor.py:457 flatcamGUI/PreferencesUI.py:4534 +#: flatcamEditors/FlatCAMGeoEditor.py:457 flatcamGUI/PreferencesUI.py:4535 #: flatcamTools/ToolPaint.py:221 msgid "" "How much (fraction) of the tool width to overlap each tool pass.\n" @@ -3612,17 +3611,17 @@ msgstr "" "Valeurs plus élevées = traitement lent et exécution lente sur la CNC\n" "à cause de trop de chemins." -#: 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 +#: flatcamEditors/FlatCAMGeoEditor.py:475 flatcamGUI/PreferencesUI.py:4127 +#: flatcamGUI/PreferencesUI.py:4348 flatcamGUI/PreferencesUI.py:4553 +#: flatcamGUI/PreferencesUI.py:6107 flatcamGUI/PreferencesUI.py:6264 +#: flatcamGUI/PreferencesUI.py:6349 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 "Marge" -#: flatcamEditors/FlatCAMGeoEditor.py:477 flatcamGUI/PreferencesUI.py:4554 +#: flatcamEditors/FlatCAMGeoEditor.py:477 flatcamGUI/PreferencesUI.py:4555 #: flatcamTools/ToolPaint.py:240 msgid "" "Distance by which to avoid\n" @@ -3633,8 +3632,8 @@ msgstr "" "les bords du polygone à\n" "être peint." -#: flatcamEditors/FlatCAMGeoEditor.py:489 flatcamGUI/PreferencesUI.py:4139 -#: flatcamGUI/PreferencesUI.py:4567 flatcamTools/ToolNonCopperClear.py:348 +#: flatcamEditors/FlatCAMGeoEditor.py:489 flatcamGUI/PreferencesUI.py:4140 +#: flatcamGUI/PreferencesUI.py:4568 flatcamTools/ToolNonCopperClear.py:348 #: flatcamTools/ToolPaint.py:251 msgid "Method" msgstr "Méthode" @@ -3648,20 +3647,20 @@ msgstr "" "l’intérieur.
Basé sur les semences:vers l’extérieur depuis les " "semences." -#: flatcamEditors/FlatCAMGeoEditor.py:496 flatcamGUI/PreferencesUI.py:4148 -#: flatcamGUI/PreferencesUI.py:4576 flatcamTools/ToolNonCopperClear.py:357 +#: flatcamEditors/FlatCAMGeoEditor.py:496 flatcamGUI/PreferencesUI.py:4149 +#: flatcamGUI/PreferencesUI.py:4577 flatcamTools/ToolNonCopperClear.py:357 #: flatcamTools/ToolPaint.py:260 msgid "Standard" msgstr "La norme" -#: flatcamEditors/FlatCAMGeoEditor.py:497 flatcamGUI/PreferencesUI.py:4149 -#: flatcamGUI/PreferencesUI.py:4577 flatcamTools/ToolNonCopperClear.py:358 +#: flatcamEditors/FlatCAMGeoEditor.py:497 flatcamGUI/PreferencesUI.py:4150 +#: flatcamGUI/PreferencesUI.py:4578 flatcamTools/ToolNonCopperClear.py:358 #: flatcamTools/ToolPaint.py:261 msgid "Seed-based" msgstr "À base de semences" -#: flatcamEditors/FlatCAMGeoEditor.py:498 flatcamGUI/PreferencesUI.py:4150 -#: flatcamGUI/PreferencesUI.py:4578 flatcamTools/ToolNonCopperClear.py:359 +#: flatcamEditors/FlatCAMGeoEditor.py:498 flatcamGUI/PreferencesUI.py:4151 +#: flatcamGUI/PreferencesUI.py:4579 flatcamTools/ToolNonCopperClear.py:359 #: flatcamTools/ToolPaint.py:262 msgid "Straight lines" msgstr "Lignes droites" @@ -3670,8 +3669,8 @@ msgstr "Lignes droites" msgid "Connect:" msgstr "Relier:" -#: flatcamEditors/FlatCAMGeoEditor.py:507 flatcamGUI/PreferencesUI.py:4159 -#: flatcamGUI/PreferencesUI.py:4585 flatcamTools/ToolNonCopperClear.py:366 +#: flatcamEditors/FlatCAMGeoEditor.py:507 flatcamGUI/PreferencesUI.py:4160 +#: flatcamGUI/PreferencesUI.py:4586 flatcamTools/ToolNonCopperClear.py:366 #: flatcamTools/ToolPaint.py:269 msgid "" "Draw lines between resulting\n" @@ -3684,8 +3683,8 @@ msgstr "" msgid "Contour:" msgstr "Contour:" -#: flatcamEditors/FlatCAMGeoEditor.py:517 flatcamGUI/PreferencesUI.py:4170 -#: flatcamGUI/PreferencesUI.py:4595 flatcamTools/ToolNonCopperClear.py:375 +#: flatcamEditors/FlatCAMGeoEditor.py:517 flatcamGUI/PreferencesUI.py:4171 +#: flatcamGUI/PreferencesUI.py:4596 flatcamTools/ToolNonCopperClear.py:375 #: flatcamTools/ToolPaint.py:278 msgid "" "Cut around the perimeter of the polygon\n" @@ -3694,13 +3693,13 @@ msgstr "" "Couper autour du périmètre du polygone\n" "pour couper les bords rugueux." -#: flatcamEditors/FlatCAMGeoEditor.py:529 flatcamGUI/FlatCAMGUI.py:1921 +#: flatcamEditors/FlatCAMGeoEditor.py:529 flatcamGUI/FlatCAMGUI.py:2058 msgid "Paint" msgstr "Peindre" -#: flatcamEditors/FlatCAMGeoEditor.py:547 flatcamGUI/FlatCAMGUI.py:749 -#: flatcamGUI/FlatCAMGUI.py:2194 flatcamGUI/ObjectUI.py:1694 -#: flatcamTools/ToolPaint.py:41 flatcamTools/ToolPaint.py:538 +#: flatcamEditors/FlatCAMGeoEditor.py:547 flatcamGUI/FlatCAMGUI.py:819 +#: flatcamGUI/FlatCAMGUI.py:2388 flatcamGUI/ObjectUI.py:1733 +#: flatcamTools/ToolPaint.py:41 flatcamTools/ToolPaint.py:539 msgid "Paint Tool" msgstr "Outil de Peinture" @@ -3711,7 +3710,7 @@ msgstr "Peinture annulée. Aucune forme sélectionnée." #: flatcamEditors/FlatCAMGeoEditor.py:597 #: flatcamEditors/FlatCAMGeoEditor.py:2784 #: flatcamEditors/FlatCAMGeoEditor.py:2814 -#: flatcamEditors/FlatCAMGeoEditor.py:2844 flatcamGUI/PreferencesUI.py:3140 +#: flatcamEditors/FlatCAMGeoEditor.py:2844 flatcamGUI/PreferencesUI.py:3141 #: flatcamTools/ToolProperties.py:120 flatcamTools/ToolProperties.py:158 msgid "Tools" msgstr "Outils" @@ -3719,15 +3718,15 @@ msgstr "Outils" #: flatcamEditors/FlatCAMGeoEditor.py:608 #: flatcamEditors/FlatCAMGeoEditor.py:992 #: flatcamEditors/FlatCAMGrbEditor.py:5011 -#: flatcamEditors/FlatCAMGrbEditor.py:5408 flatcamGUI/FlatCAMGUI.py:762 -#: flatcamGUI/FlatCAMGUI.py:2207 flatcamTools/ToolTransform.py:371 +#: flatcamEditors/FlatCAMGrbEditor.py:5408 flatcamGUI/FlatCAMGUI.py:840 +#: flatcamGUI/FlatCAMGUI.py:2406 flatcamTools/ToolTransform.py:371 msgid "Transform Tool" msgstr "Outil de Transformation" #: flatcamEditors/FlatCAMGeoEditor.py:609 #: flatcamEditors/FlatCAMGeoEditor.py:674 #: flatcamEditors/FlatCAMGrbEditor.py:5012 -#: flatcamEditors/FlatCAMGrbEditor.py:5077 flatcamGUI/PreferencesUI.py:5207 +#: flatcamEditors/FlatCAMGrbEditor.py:5077 flatcamGUI/PreferencesUI.py:5208 #: flatcamTools/ToolTransform.py:25 flatcamTools/ToolTransform.py:79 msgid "Rotate" msgstr "Tourner" @@ -3739,10 +3738,10 @@ msgstr "Inclinaison/Cisaillement" #: flatcamEditors/FlatCAMGeoEditor.py:611 #: flatcamEditors/FlatCAMGrbEditor.py:2600 -#: 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 +#: flatcamEditors/FlatCAMGrbEditor.py:5014 flatcamGUI/FlatCAMGUI.py:954 +#: flatcamGUI/FlatCAMGUI.py:1986 flatcamGUI/FlatCAMGUI.py:2101 +#: flatcamGUI/FlatCAMGUI.py:2514 flatcamGUI/ObjectUI.py:103 +#: flatcamGUI/ObjectUI.py:121 flatcamGUI/PreferencesUI.py:5258 #: flatcamTools/ToolTransform.py:27 msgid "Scale" msgstr "Mise à l'échelle" @@ -3753,17 +3752,17 @@ msgid "Mirror (Flip)" msgstr "Miroir (flip)" #: 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 +#: flatcamEditors/FlatCAMGrbEditor.py:5016 flatcamGUI/ObjectUI.py:132 +#: flatcamGUI/ObjectUI.py:148 flatcamGUI/ObjectUI.py:1217 +#: flatcamGUI/ObjectUI.py:1918 flatcamGUI/PreferencesUI.py:4196 +#: flatcamGUI/PreferencesUI.py:5305 flatcamTools/ToolNonCopperClear.py:397 #: flatcamTools/ToolTransform.py:29 msgid "Offset" msgstr "Décalage" #: flatcamEditors/FlatCAMGeoEditor.py:626 -#: flatcamEditors/FlatCAMGrbEditor.py:5029 flatcamGUI/FlatCAMGUI.py:709 -#: flatcamGUI/FlatCAMGUI.py:2160 +#: flatcamEditors/FlatCAMGrbEditor.py:5029 flatcamGUI/FlatCAMGUI.py:761 +#: flatcamGUI/FlatCAMGUI.py:2335 msgid "Editor" msgstr "Éditeur" @@ -3773,7 +3772,7 @@ msgid "Angle:" msgstr "Angle:" #: flatcamEditors/FlatCAMGeoEditor.py:660 -#: flatcamEditors/FlatCAMGrbEditor.py:5063 flatcamGUI/PreferencesUI.py:5217 +#: flatcamEditors/FlatCAMGrbEditor.py:5063 flatcamGUI/PreferencesUI.py:5218 #: flatcamTools/ToolTransform.py:64 msgid "" "Angle for Rotation action, in degrees.\n" @@ -3805,8 +3804,8 @@ msgstr "Angle X:" #: flatcamEditors/FlatCAMGeoEditor.py:701 #: flatcamEditors/FlatCAMGeoEditor.py:721 #: flatcamEditors/FlatCAMGrbEditor.py:5104 -#: flatcamEditors/FlatCAMGrbEditor.py:5124 flatcamGUI/PreferencesUI.py:5236 -#: flatcamGUI/PreferencesUI.py:5250 flatcamTools/ToolCalibration.py:508 +#: flatcamEditors/FlatCAMGrbEditor.py:5124 flatcamGUI/PreferencesUI.py:5237 +#: flatcamGUI/PreferencesUI.py:5251 flatcamTools/ToolCalibration.py:508 #: flatcamTools/ToolCalibration.py:521 msgid "" "Angle for Skew action, in degrees.\n" @@ -3887,7 +3886,7 @@ msgid "Scale Y" msgstr "Mise à l'échelle Y" #: flatcamEditors/FlatCAMGeoEditor.py:800 -#: flatcamEditors/FlatCAMGrbEditor.py:5203 flatcamGUI/PreferencesUI.py:5286 +#: flatcamEditors/FlatCAMGrbEditor.py:5203 flatcamGUI/PreferencesUI.py:5287 #: flatcamTools/ToolTransform.py:191 msgid "Link" msgstr "Lien" @@ -3902,7 +3901,7 @@ msgstr "" "en utilisant le facteur d'échelle X pour les deux axes." #: flatcamEditors/FlatCAMGeoEditor.py:808 -#: flatcamEditors/FlatCAMGrbEditor.py:5211 flatcamGUI/PreferencesUI.py:5294 +#: flatcamEditors/FlatCAMGrbEditor.py:5211 flatcamGUI/PreferencesUI.py:5295 #: flatcamTools/ToolTransform.py:199 msgid "Scale Reference" msgstr "Référence d'échelle" @@ -4472,10 +4471,10 @@ msgstr "avec diamètre" msgid "Copy cancelled. No shape selected." msgstr "Copie annulée. Aucune forme sélectionnée." -#: 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 +#: flatcamEditors/FlatCAMGeoEditor.py:4025 flatcamGUI/FlatCAMGUI.py:3435 +#: flatcamGUI/FlatCAMGUI.py:3482 flatcamGUI/FlatCAMGUI.py:3501 +#: flatcamGUI/FlatCAMGUI.py:3636 flatcamGUI/FlatCAMGUI.py:3649 +#: flatcamGUI/FlatCAMGUI.py:3683 flatcamGUI/FlatCAMGUI.py:3741 msgid "Click on target point." msgstr "Cliquez sur le point cible." @@ -4708,62 +4707,62 @@ msgstr "Terminé. Déplacement des ouvertures terminé." msgid "Done. Apertures copied." msgstr "Terminé. Ouvertures copiées." -#: flatcamEditors/FlatCAMGrbEditor.py:2376 flatcamGUI/FlatCAMGUI.py:1934 -#: flatcamGUI/PreferencesUI.py:1847 +#: flatcamEditors/FlatCAMGrbEditor.py:2376 flatcamGUI/FlatCAMGUI.py:2079 +#: flatcamGUI/PreferencesUI.py:1848 msgid "Gerber Editor" msgstr "Gerber éditeur" -#: flatcamEditors/FlatCAMGrbEditor.py:2396 flatcamGUI/ObjectUI.py:212 +#: flatcamEditors/FlatCAMGrbEditor.py:2396 flatcamGUI/ObjectUI.py:223 #: flatcamTools/ToolProperties.py:156 msgid "Apertures" msgstr "Les ouvertures" -#: flatcamEditors/FlatCAMGrbEditor.py:2398 flatcamGUI/ObjectUI.py:214 +#: flatcamEditors/FlatCAMGrbEditor.py:2398 flatcamGUI/ObjectUI.py:225 msgid "Apertures Table for the Gerber Object." msgstr "Tableau des Ouvertures pour l'objet Gerber." #: flatcamEditors/FlatCAMGrbEditor.py:2409 -#: flatcamEditors/FlatCAMGrbEditor.py:3755 flatcamGUI/ObjectUI.py:247 +#: flatcamEditors/FlatCAMGrbEditor.py:3755 flatcamGUI/ObjectUI.py:258 msgid "Code" msgstr "Code" #: flatcamEditors/FlatCAMGrbEditor.py:2409 -#: flatcamEditors/FlatCAMGrbEditor.py:3755 flatcamGUI/ObjectUI.py:247 -#: flatcamGUI/ObjectUI.py:1178 flatcamGUI/ObjectUI.py:1866 +#: flatcamEditors/FlatCAMGrbEditor.py:3755 flatcamGUI/ObjectUI.py:258 +#: flatcamGUI/ObjectUI.py:1217 flatcamGUI/ObjectUI.py:1918 msgid "Type" msgstr "Type" #: flatcamEditors/FlatCAMGrbEditor.py:2409 -#: flatcamEditors/FlatCAMGrbEditor.py:3755 flatcamGUI/ObjectUI.py:247 -#: flatcamGUI/PreferencesUI.py:6201 flatcamGUI/PreferencesUI.py:6230 -#: flatcamGUI/PreferencesUI.py:6332 flatcamTools/ToolCopperThieving.py:260 +#: flatcamEditors/FlatCAMGrbEditor.py:3755 flatcamGUI/ObjectUI.py:258 +#: flatcamGUI/PreferencesUI.py:6202 flatcamGUI/PreferencesUI.py:6231 +#: flatcamGUI/PreferencesUI.py:6333 flatcamTools/ToolCopperThieving.py:260 #: flatcamTools/ToolCopperThieving.py:300 flatcamTools/ToolFiducials.py:156 msgid "Size" msgstr "Taille" #: flatcamEditors/FlatCAMGrbEditor.py:2409 -#: flatcamEditors/FlatCAMGrbEditor.py:3755 flatcamGUI/ObjectUI.py:247 +#: flatcamEditors/FlatCAMGrbEditor.py:3755 flatcamGUI/ObjectUI.py:258 msgid "Dim" msgstr "Dim" -#: flatcamEditors/FlatCAMGrbEditor.py:2413 flatcamGUI/ObjectUI.py:251 +#: flatcamEditors/FlatCAMGrbEditor.py:2413 flatcamGUI/ObjectUI.py:262 msgid "Index" msgstr "Indice" #: flatcamEditors/FlatCAMGrbEditor.py:2415 -#: flatcamEditors/FlatCAMGrbEditor.py:2444 flatcamGUI/ObjectUI.py:253 +#: flatcamEditors/FlatCAMGrbEditor.py:2444 flatcamGUI/ObjectUI.py:264 msgid "Aperture Code" msgstr "Code d'Ouverture" -#: flatcamEditors/FlatCAMGrbEditor.py:2417 flatcamGUI/ObjectUI.py:255 +#: flatcamEditors/FlatCAMGrbEditor.py:2417 flatcamGUI/ObjectUI.py:266 msgid "Type of aperture: circular, rectangle, macros etc" msgstr "Type d'ouverture: circulaire, rectangle, macros, etc" -#: flatcamEditors/FlatCAMGrbEditor.py:2419 flatcamGUI/ObjectUI.py:257 +#: flatcamEditors/FlatCAMGrbEditor.py:2419 flatcamGUI/ObjectUI.py:268 msgid "Aperture Size:" msgstr "Taille d'Ouverture:" -#: flatcamEditors/FlatCAMGrbEditor.py:2421 flatcamGUI/ObjectUI.py:259 +#: flatcamEditors/FlatCAMGrbEditor.py:2421 flatcamGUI/ObjectUI.py:270 msgid "" "Aperture Dimensions:\n" " - (width, height) for R, O type.\n" @@ -4773,7 +4772,7 @@ msgstr "" "  - (largeur, hauteur) pour le type R, O.\n" "  - (dia, nVertices) pour le type P" -#: flatcamEditors/FlatCAMGrbEditor.py:2445 flatcamGUI/PreferencesUI.py:1878 +#: flatcamEditors/FlatCAMGrbEditor.py:2445 flatcamGUI/PreferencesUI.py:1879 msgid "Code for the new aperture" msgstr "Code pour la nouvelle ouverture" @@ -4849,7 +4848,7 @@ msgstr "Ouverture du Tampon" msgid "Buffer a aperture in the aperture list" msgstr "Buffer une ouverture dans la liste des ouvertures" -#: flatcamEditors/FlatCAMGrbEditor.py:2542 flatcamGUI/PreferencesUI.py:2012 +#: flatcamEditors/FlatCAMGrbEditor.py:2542 flatcamGUI/PreferencesUI.py:2013 msgid "Buffer distance" msgstr "Distance Tampon" @@ -4871,9 +4870,9 @@ msgstr "" "  - \"Biseauté:\" le coin est une ligne qui relie directement les " "fonctionnalités réunies dans le coin" -#: flatcamEditors/FlatCAMGrbEditor.py:2560 flatcamGUI/FlatCAMGUI.py:842 -#: flatcamGUI/FlatCAMGUI.py:1868 flatcamGUI/FlatCAMGUI.py:1920 -#: flatcamGUI/FlatCAMGUI.py:1947 flatcamGUI/FlatCAMGUI.py:2283 +#: flatcamEditors/FlatCAMGrbEditor.py:2560 flatcamGUI/FlatCAMGUI.py:952 +#: flatcamGUI/FlatCAMGUI.py:1984 flatcamGUI/FlatCAMGUI.py:2056 +#: flatcamGUI/FlatCAMGUI.py:2099 flatcamGUI/FlatCAMGUI.py:2512 msgid "Buffer" msgstr "Tampon" @@ -4885,7 +4884,7 @@ msgstr "Échelle d'Ouverture" msgid "Scale a aperture in the aperture list" msgstr "Mettre à l'échelle une ouverture dans la liste des ouvertures" -#: flatcamEditors/FlatCAMGrbEditor.py:2585 flatcamGUI/PreferencesUI.py:2027 +#: flatcamEditors/FlatCAMGrbEditor.py:2585 flatcamGUI/PreferencesUI.py:2028 msgid "Scale factor" msgstr "Facteur d'échelle" @@ -4949,8 +4948,8 @@ msgstr "Effacer" msgid "Clear all the markings." msgstr "Effacer toutes les marques." -#: flatcamEditors/FlatCAMGrbEditor.py:2684 flatcamGUI/FlatCAMGUI.py:832 -#: flatcamGUI/FlatCAMGUI.py:1868 flatcamGUI/FlatCAMGUI.py:2273 +#: flatcamEditors/FlatCAMGrbEditor.py:2684 flatcamGUI/FlatCAMGUI.py:937 +#: flatcamGUI/FlatCAMGUI.py:1984 flatcamGUI/FlatCAMGUI.py:2497 msgid "Add Pad Array" msgstr "Ajouter un Tableau de Pads" @@ -4966,11 +4965,11 @@ msgstr "" "Sélectionnez le type de tableau de pads à créer.\n" "Il peut être linéaire X (Y) ou circulaire" -#: flatcamEditors/FlatCAMGrbEditor.py:2703 flatcamGUI/PreferencesUI.py:1915 +#: flatcamEditors/FlatCAMGrbEditor.py:2703 flatcamGUI/PreferencesUI.py:1916 msgid "Nr of pads" msgstr "Nombre de pads" -#: flatcamEditors/FlatCAMGrbEditor.py:2705 flatcamGUI/PreferencesUI.py:1917 +#: flatcamEditors/FlatCAMGrbEditor.py:2705 flatcamGUI/PreferencesUI.py:1918 msgid "Specify how many pads to be in the array." msgstr "Spécifiez combien de pads doivent être dans le tableau." @@ -5177,9 +5176,9 @@ msgstr "" msgid "String to replace the one in the Find box throughout the text." msgstr "Chaîne pour remplacer celle de la zone Rechercher dans tout le texte." -#: flatcamEditors/FlatCAMTextEditor.py:87 flatcamGUI/ObjectUI.py:471 -#: flatcamGUI/ObjectUI.py:1759 flatcamGUI/PreferencesUI.py:1494 -#: flatcamGUI/PreferencesUI.py:3641 flatcamGUI/PreferencesUI.py:4616 +#: flatcamEditors/FlatCAMTextEditor.py:87 flatcamGUI/ObjectUI.py:482 +#: flatcamGUI/ObjectUI.py:1811 flatcamGUI/PreferencesUI.py:1495 +#: flatcamGUI/PreferencesUI.py:3642 flatcamGUI/PreferencesUI.py:4617 msgid "All" msgstr "Tout" @@ -5243,7 +5242,7 @@ msgid "Code Editor content copied to clipboard ..." msgstr "Contenu de l'éditeur de code copié dans le Presse-papiers ..." #: flatcamGUI/FlatCAMGUI.py:52 flatcamGUI/FlatCAMGUI.py:54 -#: flatcamGUI/FlatCAMGUI.py:1891 +#: flatcamGUI/FlatCAMGUI.py:2009 msgid "Toggle Panel" msgstr "Basculer le Panneau" @@ -5263,91 +5262,91 @@ msgstr "Va créer un nouveau projet vierge" msgid "&New" msgstr "Nouveau" -#: flatcamGUI/FlatCAMGUI.py:79 +#: flatcamGUI/FlatCAMGUI.py:80 msgid "Geometry\tN" msgstr "Géométrie\tN" -#: flatcamGUI/FlatCAMGUI.py:81 +#: flatcamGUI/FlatCAMGUI.py:82 msgid "Will create a new, empty Geometry Object." msgstr "Crée un nouvel objet de géométrie vide." -#: flatcamGUI/FlatCAMGUI.py:83 +#: flatcamGUI/FlatCAMGUI.py:84 msgid "Gerber\tB" msgstr "Gerber\tB" -#: flatcamGUI/FlatCAMGUI.py:85 +#: flatcamGUI/FlatCAMGUI.py:86 msgid "Will create a new, empty Gerber Object." msgstr "Crée un nouvel objet Gerber vide." -#: flatcamGUI/FlatCAMGUI.py:87 +#: flatcamGUI/FlatCAMGUI.py:88 msgid "Excellon\tL" msgstr "Excellon\tL" -#: flatcamGUI/FlatCAMGUI.py:89 +#: flatcamGUI/FlatCAMGUI.py:90 msgid "Will create a new, empty Excellon Object." msgstr "Va créer un nouvel objet vide vide." -#: flatcamGUI/FlatCAMGUI.py:93 +#: flatcamGUI/FlatCAMGUI.py:94 msgid "Document\tD" msgstr "Document\tD" -#: flatcamGUI/FlatCAMGUI.py:95 +#: flatcamGUI/FlatCAMGUI.py:96 msgid "Will create a new, empty Document Object." msgstr "Crée un nouvel objet de document vide." -#: flatcamGUI/FlatCAMGUI.py:98 flatcamGUI/FlatCAMGUI.py:3837 +#: flatcamGUI/FlatCAMGUI.py:99 flatcamGUI/FlatCAMGUI.py:4075 #: flatcamTools/ToolPcbWizard.py:62 flatcamTools/ToolPcbWizard.py:69 msgid "Open" msgstr "Ouvert" -#: flatcamGUI/FlatCAMGUI.py:102 +#: flatcamGUI/FlatCAMGUI.py:103 msgid "Open &Project ..." msgstr "Projet ouvert ..." -#: flatcamGUI/FlatCAMGUI.py:108 flatcamGUI/FlatCAMGUI.py:3846 +#: flatcamGUI/FlatCAMGUI.py:109 flatcamGUI/FlatCAMGUI.py:4085 msgid "Open &Gerber ...\tCTRL+G" msgstr "Gerber ouvert...\tCTRL+G" -#: flatcamGUI/FlatCAMGUI.py:113 flatcamGUI/FlatCAMGUI.py:3851 +#: flatcamGUI/FlatCAMGUI.py:114 flatcamGUI/FlatCAMGUI.py:4090 msgid "Open &Excellon ...\tCTRL+E" msgstr "Excellon ouvert ...\tCTRL+E" -#: flatcamGUI/FlatCAMGUI.py:117 flatcamGUI/FlatCAMGUI.py:3855 +#: flatcamGUI/FlatCAMGUI.py:118 flatcamGUI/FlatCAMGUI.py:4095 msgid "Open G-&Code ..." msgstr "Ouvrir G-Code ..." -#: flatcamGUI/FlatCAMGUI.py:123 +#: flatcamGUI/FlatCAMGUI.py:124 msgid "Open Config ..." msgstr "Ouvrez la configuration ..." -#: flatcamGUI/FlatCAMGUI.py:127 +#: flatcamGUI/FlatCAMGUI.py:128 msgid "Recent projects" msgstr "Les projets récents" -#: flatcamGUI/FlatCAMGUI.py:128 +#: flatcamGUI/FlatCAMGUI.py:129 msgid "Recent files" msgstr "Fichiers récents" -#: flatcamGUI/FlatCAMGUI.py:134 +#: flatcamGUI/FlatCAMGUI.py:135 msgid "Scripting" msgstr "Scripting" -#: flatcamGUI/FlatCAMGUI.py:137 flatcamGUI/FlatCAMGUI.py:739 -#: flatcamGUI/FlatCAMGUI.py:2186 +#: flatcamGUI/FlatCAMGUI.py:138 flatcamGUI/FlatCAMGUI.py:803 +#: flatcamGUI/FlatCAMGUI.py:2374 msgid "New Script ..." msgstr "Nouveau script ..." -#: flatcamGUI/FlatCAMGUI.py:138 flatcamGUI/FlatCAMGUI.py:740 -#: flatcamGUI/FlatCAMGUI.py:2187 +#: flatcamGUI/FlatCAMGUI.py:139 flatcamGUI/FlatCAMGUI.py:805 +#: flatcamGUI/FlatCAMGUI.py:2376 msgid "Open Script ..." msgstr "Script ouvert ..." -#: flatcamGUI/FlatCAMGUI.py:140 flatcamGUI/FlatCAMGUI.py:741 -#: flatcamGUI/FlatCAMGUI.py:2188 flatcamGUI/FlatCAMGUI.py:3826 +#: flatcamGUI/FlatCAMGUI.py:141 flatcamGUI/FlatCAMGUI.py:807 +#: flatcamGUI/FlatCAMGUI.py:2378 flatcamGUI/FlatCAMGUI.py:4064 msgid "Run Script ..." msgstr "Exécutez le script ..." -#: flatcamGUI/FlatCAMGUI.py:142 flatcamGUI/FlatCAMGUI.py:3828 +#: flatcamGUI/FlatCAMGUI.py:143 flatcamGUI/FlatCAMGUI.py:4066 msgid "" "Will run the opened Tcl Script thus\n" "enabling the automation of certain\n" @@ -5357,47 +5356,47 @@ msgstr "" "permettant l’automatisation de certaines\n" "fonctions de FlatCAM." -#: flatcamGUI/FlatCAMGUI.py:155 +#: flatcamGUI/FlatCAMGUI.py:156 msgid "Import" msgstr "Importation" -#: flatcamGUI/FlatCAMGUI.py:157 +#: flatcamGUI/FlatCAMGUI.py:158 msgid "&SVG as Geometry Object ..." msgstr "SVG comme objet de géométrie ..." -#: flatcamGUI/FlatCAMGUI.py:160 +#: flatcamGUI/FlatCAMGUI.py:161 msgid "&SVG as Gerber Object ..." msgstr "SVG comme objet Gerber ..." -#: flatcamGUI/FlatCAMGUI.py:165 +#: flatcamGUI/FlatCAMGUI.py:166 msgid "&DXF as Geometry Object ..." msgstr "DXF comme objet de géométrie ..." -#: flatcamGUI/FlatCAMGUI.py:168 +#: flatcamGUI/FlatCAMGUI.py:169 msgid "&DXF as Gerber Object ..." msgstr "DXF en tant qu'objet Gerber ..." -#: flatcamGUI/FlatCAMGUI.py:172 +#: flatcamGUI/FlatCAMGUI.py:173 msgid "HPGL2 as Geometry Object ..." msgstr "HPGL2 comme objet géométrique ..." -#: flatcamGUI/FlatCAMGUI.py:177 +#: flatcamGUI/FlatCAMGUI.py:178 msgid "Export" msgstr "Exportation" -#: flatcamGUI/FlatCAMGUI.py:180 +#: flatcamGUI/FlatCAMGUI.py:181 msgid "Export &SVG ..." msgstr "Exporter SVG ..." -#: flatcamGUI/FlatCAMGUI.py:183 +#: flatcamGUI/FlatCAMGUI.py:184 msgid "Export DXF ..." msgstr "Exporter DXF ..." -#: flatcamGUI/FlatCAMGUI.py:188 +#: flatcamGUI/FlatCAMGUI.py:189 msgid "Export &PNG ..." msgstr "Exporter PNG ..." -#: flatcamGUI/FlatCAMGUI.py:190 +#: flatcamGUI/FlatCAMGUI.py:191 msgid "" "Will export an image in PNG format,\n" "the saved image will contain the visual \n" @@ -5407,11 +5406,11 @@ msgstr "" "l'image enregistrée contiendra le visuel\n" "informations actuellement dans la zone de tracé FlatCAM." -#: flatcamGUI/FlatCAMGUI.py:199 +#: flatcamGUI/FlatCAMGUI.py:200 msgid "Export &Excellon ..." msgstr "Exporter Excellon ..." -#: flatcamGUI/FlatCAMGUI.py:201 +#: flatcamGUI/FlatCAMGUI.py:202 msgid "" "Will export an Excellon Object as Excellon file,\n" "the coordinates format, the file units and zeros\n" @@ -5421,11 +5420,11 @@ msgstr "" "le format des coordonnées, les unités de fichier et les zéros\n" "sont définies dans Préférences -> Excellon Export." -#: flatcamGUI/FlatCAMGUI.py:208 +#: flatcamGUI/FlatCAMGUI.py:209 msgid "Export &Gerber ..." msgstr "Exporter Gerber ..." -#: flatcamGUI/FlatCAMGUI.py:210 +#: flatcamGUI/FlatCAMGUI.py:211 msgid "" "Will export an Gerber Object as Gerber file,\n" "the coordinates format, the file units and zeros\n" @@ -5435,61 +5434,61 @@ msgstr "" "le format des coordonnées, les unités de fichier et les zéros\n" "sont définies dans Préférences -> Exportation Gerber." -#: flatcamGUI/FlatCAMGUI.py:226 +#: flatcamGUI/FlatCAMGUI.py:229 msgid "Backup" msgstr "Sauvegarde" -#: flatcamGUI/FlatCAMGUI.py:230 +#: flatcamGUI/FlatCAMGUI.py:233 msgid "Import Preferences from file ..." msgstr "Importer les préférences du fichier ..." -#: flatcamGUI/FlatCAMGUI.py:235 +#: flatcamGUI/FlatCAMGUI.py:238 msgid "Export Preferences to file ..." msgstr "Exporter les préférences dans un fichier ..." -#: flatcamGUI/FlatCAMGUI.py:241 flatcamGUI/FlatCAMGUI.py:612 -#: flatcamGUI/FlatCAMGUI.py:1109 +#: flatcamGUI/FlatCAMGUI.py:244 flatcamGUI/FlatCAMGUI.py:656 +#: flatcamGUI/FlatCAMGUI.py:1225 msgid "Save" msgstr "Sauver" -#: flatcamGUI/FlatCAMGUI.py:244 +#: flatcamGUI/FlatCAMGUI.py:248 msgid "&Save Project ..." msgstr "Sauvegarder le projet ..." -#: flatcamGUI/FlatCAMGUI.py:249 +#: flatcamGUI/FlatCAMGUI.py:253 msgid "Save Project &As ...\tCTRL+S" msgstr "Enregistrer le projet sous...\tCTRL+S" -#: flatcamGUI/FlatCAMGUI.py:254 +#: flatcamGUI/FlatCAMGUI.py:258 msgid "Save Project C&opy ..." msgstr "Enregistrer la copie du projet ..." -#: flatcamGUI/FlatCAMGUI.py:268 +#: flatcamGUI/FlatCAMGUI.py:273 msgid "E&xit" msgstr "Sortie" -#: flatcamGUI/FlatCAMGUI.py:276 flatcamGUI/FlatCAMGUI.py:609 -#: flatcamGUI/FlatCAMGUI.py:1968 +#: flatcamGUI/FlatCAMGUI.py:281 flatcamGUI/FlatCAMGUI.py:650 +#: flatcamGUI/FlatCAMGUI.py:2132 msgid "Edit" msgstr "Modifier" -#: flatcamGUI/FlatCAMGUI.py:279 +#: flatcamGUI/FlatCAMGUI.py:285 msgid "Edit Object\tE" msgstr "Editer un objet\tE" -#: flatcamGUI/FlatCAMGUI.py:280 +#: flatcamGUI/FlatCAMGUI.py:287 msgid "Close Editor\tCTRL+S" msgstr "Fermer l'éditeur\tCTRL+S" -#: flatcamGUI/FlatCAMGUI.py:288 +#: flatcamGUI/FlatCAMGUI.py:296 msgid "Conversion" msgstr "Conversion" -#: flatcamGUI/FlatCAMGUI.py:290 +#: flatcamGUI/FlatCAMGUI.py:298 msgid "&Join Geo/Gerber/Exc -> Geo" msgstr "Rejoindre Geo/Gerber/Exc -> Geo" -#: flatcamGUI/FlatCAMGUI.py:292 +#: flatcamGUI/FlatCAMGUI.py:300 msgid "" "Merge a selection of objects, which can be of type:\n" "- Gerber\n" @@ -5503,30 +5502,30 @@ msgstr "" "- Géométrie\n" "dans un nouvel objet de géométrie combo." -#: flatcamGUI/FlatCAMGUI.py:299 +#: flatcamGUI/FlatCAMGUI.py:307 msgid "Join Excellon(s) -> Excellon" msgstr "Rejoignez Excellon(s) -> Excellon" -#: flatcamGUI/FlatCAMGUI.py:301 +#: flatcamGUI/FlatCAMGUI.py:309 msgid "Merge a selection of Excellon objects into a new combo Excellon object." msgstr "" "Fusionner une sélection d'objets Excellon dans un nouvel objet Excellon " "combo." -#: flatcamGUI/FlatCAMGUI.py:304 +#: flatcamGUI/FlatCAMGUI.py:312 msgid "Join Gerber(s) -> Gerber" msgstr "Rejoindre Gerber(s) -> Gerber" -#: flatcamGUI/FlatCAMGUI.py:306 +#: flatcamGUI/FlatCAMGUI.py:314 msgid "Merge a selection of Gerber objects into a new combo Gerber object." msgstr "" "Fusionner une sélection d'objets Gerber dans un nouvel objet Gerber combiné." -#: flatcamGUI/FlatCAMGUI.py:311 +#: flatcamGUI/FlatCAMGUI.py:319 msgid "Convert Single to MultiGeo" msgstr "Convertir Unique en MultiGeo" -#: flatcamGUI/FlatCAMGUI.py:313 +#: flatcamGUI/FlatCAMGUI.py:321 msgid "" "Will convert a Geometry object from single_geometry type\n" "to a multi_geometry type." @@ -5534,11 +5533,11 @@ msgstr "" "Convertira un objet Geometry à partir d'un type de géométrie unique\n" "à un type multi géométrie." -#: flatcamGUI/FlatCAMGUI.py:317 +#: flatcamGUI/FlatCAMGUI.py:325 msgid "Convert Multi to SingleGeo" msgstr "Convertir Multi en Unique Geo" -#: flatcamGUI/FlatCAMGUI.py:319 +#: flatcamGUI/FlatCAMGUI.py:327 msgid "" "Will convert a Geometry object from multi_geometry type\n" "to a single_geometry type." @@ -5546,702 +5545,702 @@ msgstr "" "Convertira un objet Geometry de type multi geometry\n" "à un seul type de géométrie." -#: flatcamGUI/FlatCAMGUI.py:325 +#: flatcamGUI/FlatCAMGUI.py:334 msgid "Convert Any to Geo" msgstr "Convertir n'importe quel en Geo" -#: flatcamGUI/FlatCAMGUI.py:327 +#: flatcamGUI/FlatCAMGUI.py:337 msgid "Convert Any to Gerber" msgstr "Convertir n'importe lequel en gerber" -#: flatcamGUI/FlatCAMGUI.py:332 +#: flatcamGUI/FlatCAMGUI.py:343 msgid "&Copy\tCTRL+C" msgstr "Copie\tCTRL+C" -#: flatcamGUI/FlatCAMGUI.py:336 +#: flatcamGUI/FlatCAMGUI.py:348 msgid "&Delete\tDEL" msgstr "Supprimer\tDEL" -#: flatcamGUI/FlatCAMGUI.py:340 +#: flatcamGUI/FlatCAMGUI.py:353 msgid "Se&t Origin\tO" msgstr "Définir L'origine\tO" -#: flatcamGUI/FlatCAMGUI.py:341 +#: flatcamGUI/FlatCAMGUI.py:355 msgid "Jump to Location\tJ" msgstr "Aller à l'emplacement\tJ" -#: flatcamGUI/FlatCAMGUI.py:346 +#: flatcamGUI/FlatCAMGUI.py:360 msgid "Toggle Units\tQ" msgstr "Basculer les Unités\tQ" -#: flatcamGUI/FlatCAMGUI.py:347 +#: flatcamGUI/FlatCAMGUI.py:362 msgid "&Select All\tCTRL+A" msgstr "Tout sélectionner\tCTRL+A" -#: flatcamGUI/FlatCAMGUI.py:351 +#: flatcamGUI/FlatCAMGUI.py:367 msgid "&Preferences\tSHIFT+P" msgstr "Préférences\tSHIFT+P" -#: flatcamGUI/FlatCAMGUI.py:357 flatcamTools/ToolProperties.py:153 +#: flatcamGUI/FlatCAMGUI.py:373 flatcamTools/ToolProperties.py:153 msgid "Options" msgstr "Les options" -#: flatcamGUI/FlatCAMGUI.py:359 +#: flatcamGUI/FlatCAMGUI.py:375 msgid "&Rotate Selection\tSHIFT+(R)" msgstr "Faire pivoter la sélection\tSHIFT+(R)" -#: flatcamGUI/FlatCAMGUI.py:364 +#: flatcamGUI/FlatCAMGUI.py:380 msgid "&Skew on X axis\tSHIFT+X" msgstr "Fausser sur l'axe X\tSHIFT+X" -#: flatcamGUI/FlatCAMGUI.py:366 +#: flatcamGUI/FlatCAMGUI.py:382 msgid "S&kew on Y axis\tSHIFT+Y" msgstr "Fausser sur l'axe Y\tSHIFT+Y" -#: flatcamGUI/FlatCAMGUI.py:371 +#: flatcamGUI/FlatCAMGUI.py:387 msgid "Flip on &X axis\tX" msgstr "Miroir sur l'axe X\tX" -#: flatcamGUI/FlatCAMGUI.py:373 +#: flatcamGUI/FlatCAMGUI.py:389 msgid "Flip on &Y axis\tY" msgstr "Miroir sur l'axe Y\tY" -#: flatcamGUI/FlatCAMGUI.py:378 +#: flatcamGUI/FlatCAMGUI.py:394 msgid "View source\tALT+S" msgstr "Voir la source\tALT+S" -#: flatcamGUI/FlatCAMGUI.py:380 +#: flatcamGUI/FlatCAMGUI.py:396 msgid "Tools DataBase\tCTRL+D" msgstr "Base de Données d'outils\tCTRL+D" -#: flatcamGUI/FlatCAMGUI.py:387 flatcamGUI/FlatCAMGUI.py:1904 +#: flatcamGUI/FlatCAMGUI.py:403 flatcamGUI/FlatCAMGUI.py:2029 msgid "View" msgstr "Vue" -#: flatcamGUI/FlatCAMGUI.py:388 +#: flatcamGUI/FlatCAMGUI.py:405 msgid "Enable all plots\tALT+1" msgstr "Activer tous les dessins\tALT+1" -#: flatcamGUI/FlatCAMGUI.py:390 +#: flatcamGUI/FlatCAMGUI.py:407 msgid "Disable all plots\tALT+2" msgstr "Désactiver tous les dessins\tALT+2" -#: flatcamGUI/FlatCAMGUI.py:392 +#: flatcamGUI/FlatCAMGUI.py:409 msgid "Disable non-selected\tALT+3" msgstr "Désactiver les non sélectionnés\tALT+3" -#: flatcamGUI/FlatCAMGUI.py:395 +#: flatcamGUI/FlatCAMGUI.py:413 msgid "&Zoom Fit\tV" msgstr "Ajustement du Zoom\tV" -#: flatcamGUI/FlatCAMGUI.py:396 +#: flatcamGUI/FlatCAMGUI.py:415 msgid "&Zoom In\t=" msgstr "Agrandir\t=" -#: flatcamGUI/FlatCAMGUI.py:397 +#: flatcamGUI/FlatCAMGUI.py:417 msgid "&Zoom Out\t-" msgstr "Dézoomer\t-" -#: flatcamGUI/FlatCAMGUI.py:401 +#: flatcamGUI/FlatCAMGUI.py:422 msgid "Redraw All\tF5" msgstr "Tout redessiner\tF5" -#: flatcamGUI/FlatCAMGUI.py:405 +#: flatcamGUI/FlatCAMGUI.py:426 msgid "Toggle Code Editor\tSHIFT+E" msgstr "Basculer l'éditeur de code\tSHIFT+E" -#: flatcamGUI/FlatCAMGUI.py:408 +#: flatcamGUI/FlatCAMGUI.py:429 msgid "&Toggle FullScreen\tALT+F10" msgstr "Passer en plein écran\tALT+F10" -#: flatcamGUI/FlatCAMGUI.py:410 +#: flatcamGUI/FlatCAMGUI.py:431 msgid "&Toggle Plot Area\tCTRL+F10" msgstr "Basculer la zone de tracé\tCTRL+F10" -#: flatcamGUI/FlatCAMGUI.py:412 +#: flatcamGUI/FlatCAMGUI.py:433 msgid "&Toggle Project/Sel/Tool\t`" msgstr "Basculer Projet / Sel / Outil\t`" -#: flatcamGUI/FlatCAMGUI.py:416 +#: flatcamGUI/FlatCAMGUI.py:437 msgid "&Toggle Grid Snap\tG" msgstr "Basculer la grille\tG" -#: flatcamGUI/FlatCAMGUI.py:418 +#: flatcamGUI/FlatCAMGUI.py:439 msgid "&Toggle Grid Lines\tALT+G" msgstr "Basculer les lignes de la grille\tALT+G" -#: flatcamGUI/FlatCAMGUI.py:419 +#: flatcamGUI/FlatCAMGUI.py:441 msgid "&Toggle Axis\tSHIFT+G" msgstr "Basculer l'axe\tSHIFT+G" -#: flatcamGUI/FlatCAMGUI.py:422 +#: flatcamGUI/FlatCAMGUI.py:443 msgid "Toggle Workspace\tSHIFT+W" msgstr "Basculer l'espace de travail\tSHIFT+W" -#: flatcamGUI/FlatCAMGUI.py:427 +#: flatcamGUI/FlatCAMGUI.py:448 msgid "Objects" msgstr "Objets" -#: flatcamGUI/FlatCAMGUI.py:440 +#: flatcamGUI/FlatCAMGUI.py:462 msgid "&Command Line\tS" msgstr "&Ligne de commande\tS" -#: flatcamGUI/FlatCAMGUI.py:445 +#: flatcamGUI/FlatCAMGUI.py:467 msgid "Help" msgstr "Aide" -#: flatcamGUI/FlatCAMGUI.py:446 +#: flatcamGUI/FlatCAMGUI.py:469 msgid "Online Help\tF1" msgstr "Aide en ligne\tF1" -#: flatcamGUI/FlatCAMGUI.py:454 +#: flatcamGUI/FlatCAMGUI.py:479 msgid "Report a bug" msgstr "Signaler une erreur" -#: flatcamGUI/FlatCAMGUI.py:457 +#: flatcamGUI/FlatCAMGUI.py:482 msgid "Excellon Specification" msgstr "Excellon Spécification" -#: flatcamGUI/FlatCAMGUI.py:459 +#: flatcamGUI/FlatCAMGUI.py:484 msgid "Gerber Specification" msgstr "Gerber Spécifications" -#: flatcamGUI/FlatCAMGUI.py:464 +#: flatcamGUI/FlatCAMGUI.py:489 msgid "Shortcuts List\tF3" msgstr "Liste des raccourcis\tF3" -#: flatcamGUI/FlatCAMGUI.py:465 +#: flatcamGUI/FlatCAMGUI.py:491 msgid "YouTube Channel\tF4" msgstr "Chaîne Youtube\tF4" -#: flatcamGUI/FlatCAMGUI.py:476 +#: flatcamGUI/FlatCAMGUI.py:502 msgid "Add Circle\tO" msgstr "Ajouter un Cercle\tO" -#: flatcamGUI/FlatCAMGUI.py:478 +#: flatcamGUI/FlatCAMGUI.py:505 msgid "Add Arc\tA" msgstr "Ajouter un Arc\tA" -#: flatcamGUI/FlatCAMGUI.py:481 +#: flatcamGUI/FlatCAMGUI.py:508 msgid "Add Rectangle\tR" msgstr "Ajouter un Rectangle\tR" -#: flatcamGUI/FlatCAMGUI.py:484 +#: flatcamGUI/FlatCAMGUI.py:511 msgid "Add Polygon\tN" msgstr "Ajouter un Polygone\tN" -#: flatcamGUI/FlatCAMGUI.py:486 +#: flatcamGUI/FlatCAMGUI.py:514 msgid "Add Path\tP" msgstr "Ajouter un Chemin\tP" -#: flatcamGUI/FlatCAMGUI.py:488 +#: flatcamGUI/FlatCAMGUI.py:517 msgid "Add Text\tT" msgstr "Ajouter du Texte\tT" -#: flatcamGUI/FlatCAMGUI.py:491 +#: flatcamGUI/FlatCAMGUI.py:520 msgid "Polygon Union\tU" msgstr "Union de Polygones\tU" -#: flatcamGUI/FlatCAMGUI.py:493 +#: flatcamGUI/FlatCAMGUI.py:522 msgid "Polygon Intersection\tE" msgstr "Intersection de Polygones\tE" -#: flatcamGUI/FlatCAMGUI.py:495 +#: flatcamGUI/FlatCAMGUI.py:524 msgid "Polygon Subtraction\tS" msgstr "Soustraction de Polygone\tS" -#: flatcamGUI/FlatCAMGUI.py:499 +#: flatcamGUI/FlatCAMGUI.py:528 msgid "Cut Path\tX" msgstr "Chemin Coupé\tX" -#: flatcamGUI/FlatCAMGUI.py:501 +#: flatcamGUI/FlatCAMGUI.py:531 msgid "Copy Geom\tC" msgstr "Copier la Géométrie\tC" -#: flatcamGUI/FlatCAMGUI.py:503 +#: flatcamGUI/FlatCAMGUI.py:533 msgid "Delete Shape\tDEL" msgstr "Supprimer la Forme\tDEL" -#: flatcamGUI/FlatCAMGUI.py:506 flatcamGUI/FlatCAMGUI.py:588 +#: flatcamGUI/FlatCAMGUI.py:537 flatcamGUI/FlatCAMGUI.py:624 msgid "Move\tM" msgstr "Déplacer\tM" -#: flatcamGUI/FlatCAMGUI.py:508 +#: flatcamGUI/FlatCAMGUI.py:539 msgid "Buffer Tool\tB" msgstr "Outil Tampon\tB" -#: flatcamGUI/FlatCAMGUI.py:511 +#: flatcamGUI/FlatCAMGUI.py:542 msgid "Paint Tool\tI" msgstr "Outil de Peinture\tI" -#: flatcamGUI/FlatCAMGUI.py:514 +#: flatcamGUI/FlatCAMGUI.py:545 msgid "Transform Tool\tALT+R" msgstr "Outil de Transformation\tALT+R" -#: flatcamGUI/FlatCAMGUI.py:518 +#: flatcamGUI/FlatCAMGUI.py:549 msgid "Toggle Corner Snap\tK" msgstr "Basculer le Coin accrocher\tK" -#: flatcamGUI/FlatCAMGUI.py:524 +#: flatcamGUI/FlatCAMGUI.py:555 msgid ">Excellon Editor<" msgstr ">Excellent Éditeur<" -#: flatcamGUI/FlatCAMGUI.py:528 +#: flatcamGUI/FlatCAMGUI.py:559 msgid "Add Drill Array\tA" msgstr "Ajouter un Tableau de Forage\tA" -#: flatcamGUI/FlatCAMGUI.py:530 +#: flatcamGUI/FlatCAMGUI.py:561 msgid "Add Drill\tD" msgstr "Ajouter une Forage\tD" -#: flatcamGUI/FlatCAMGUI.py:534 +#: flatcamGUI/FlatCAMGUI.py:565 msgid "Add Slot Array\tQ" msgstr "Ajouter un Tableau de Fente\tQ" -#: flatcamGUI/FlatCAMGUI.py:536 +#: flatcamGUI/FlatCAMGUI.py:567 msgid "Add Slot\tW" msgstr "Ajouter une Fente\tW" -#: flatcamGUI/FlatCAMGUI.py:540 +#: flatcamGUI/FlatCAMGUI.py:571 msgid "Resize Drill(S)\tR" msgstr "Redimensionner le Foret\tR" -#: flatcamGUI/FlatCAMGUI.py:542 flatcamGUI/FlatCAMGUI.py:583 +#: flatcamGUI/FlatCAMGUI.py:574 flatcamGUI/FlatCAMGUI.py:618 msgid "Copy\tC" msgstr "Copie\tC" -#: flatcamGUI/FlatCAMGUI.py:544 flatcamGUI/FlatCAMGUI.py:585 +#: flatcamGUI/FlatCAMGUI.py:576 flatcamGUI/FlatCAMGUI.py:620 msgid "Delete\tDEL" msgstr "Supprimer\tDEL" -#: flatcamGUI/FlatCAMGUI.py:549 +#: flatcamGUI/FlatCAMGUI.py:581 msgid "Move Drill(s)\tM" msgstr "Déplacer les Forets\tM" -#: flatcamGUI/FlatCAMGUI.py:554 +#: flatcamGUI/FlatCAMGUI.py:586 msgid ">Gerber Editor<" msgstr ">Gerber Éditeur<" -#: flatcamGUI/FlatCAMGUI.py:558 +#: flatcamGUI/FlatCAMGUI.py:590 msgid "Add Pad\tP" msgstr "Ajouter un Pad\tP" -#: flatcamGUI/FlatCAMGUI.py:560 +#: flatcamGUI/FlatCAMGUI.py:592 msgid "Add Pad Array\tA" msgstr "Ajouter un Tableau de Pad\tA" -#: flatcamGUI/FlatCAMGUI.py:562 +#: flatcamGUI/FlatCAMGUI.py:594 msgid "Add Track\tT" msgstr "Ajouter une Piste\tT" -#: flatcamGUI/FlatCAMGUI.py:564 +#: flatcamGUI/FlatCAMGUI.py:596 msgid "Add Region\tN" msgstr "Ajouter une Région\tN" -#: flatcamGUI/FlatCAMGUI.py:568 +#: flatcamGUI/FlatCAMGUI.py:600 msgid "Poligonize\tALT+N" msgstr "Polygoniser\tALT+N" -#: flatcamGUI/FlatCAMGUI.py:570 +#: flatcamGUI/FlatCAMGUI.py:602 msgid "Add SemiDisc\tE" msgstr "Ajouter un Semi-Disque\tE" -#: flatcamGUI/FlatCAMGUI.py:571 +#: flatcamGUI/FlatCAMGUI.py:604 msgid "Add Disc\tD" msgstr "Ajouter un Disque\tD" -#: flatcamGUI/FlatCAMGUI.py:573 +#: flatcamGUI/FlatCAMGUI.py:606 msgid "Buffer\tB" msgstr "Tampon\tB" -#: flatcamGUI/FlatCAMGUI.py:574 +#: flatcamGUI/FlatCAMGUI.py:608 msgid "Scale\tS" msgstr "Échelle\tS" -#: flatcamGUI/FlatCAMGUI.py:576 +#: flatcamGUI/FlatCAMGUI.py:610 msgid "Mark Area\tALT+A" msgstr "Zone de Marque\tALT+A" -#: flatcamGUI/FlatCAMGUI.py:578 +#: flatcamGUI/FlatCAMGUI.py:612 msgid "Eraser\tCTRL+E" msgstr "La Gomme\tCTRL+E" -#: flatcamGUI/FlatCAMGUI.py:580 +#: flatcamGUI/FlatCAMGUI.py:614 msgid "Transform\tALT+R" msgstr "Transformation\tALT+R" -#: flatcamGUI/FlatCAMGUI.py:603 +#: flatcamGUI/FlatCAMGUI.py:640 msgid "Enable Plot" msgstr "Activer le Tracé" -#: flatcamGUI/FlatCAMGUI.py:604 +#: flatcamGUI/FlatCAMGUI.py:642 msgid "Disable Plot" msgstr "Désactiver le Tracé" -#: flatcamGUI/FlatCAMGUI.py:606 +#: flatcamGUI/FlatCAMGUI.py:645 msgid "Generate CNC" msgstr "Générer CNC" -#: flatcamGUI/FlatCAMGUI.py:607 +#: flatcamGUI/FlatCAMGUI.py:647 msgid "View Source" msgstr "Voir la source" -#: flatcamGUI/FlatCAMGUI.py:615 flatcamGUI/FlatCAMGUI.py:1974 +#: flatcamGUI/FlatCAMGUI.py:660 flatcamGUI/FlatCAMGUI.py:2141 #: flatcamTools/ToolProperties.py:30 msgid "Properties" msgstr "Propriétés" -#: flatcamGUI/FlatCAMGUI.py:644 +#: flatcamGUI/FlatCAMGUI.py:689 msgid "File Toolbar" msgstr "Barre d'outils de fichiers" -#: flatcamGUI/FlatCAMGUI.py:648 +#: flatcamGUI/FlatCAMGUI.py:693 msgid "Edit Toolbar" msgstr "Barre d'outils de editer" -#: flatcamGUI/FlatCAMGUI.py:652 +#: flatcamGUI/FlatCAMGUI.py:697 msgid "View Toolbar" msgstr "Barre d'outils de vue" -#: flatcamGUI/FlatCAMGUI.py:656 +#: flatcamGUI/FlatCAMGUI.py:701 msgid "Shell Toolbar" msgstr "Barre d'outils Shell" -#: flatcamGUI/FlatCAMGUI.py:660 +#: flatcamGUI/FlatCAMGUI.py:705 msgid "Tools Toolbar" msgstr "Barre d'outils de outils" -#: flatcamGUI/FlatCAMGUI.py:664 +#: flatcamGUI/FlatCAMGUI.py:709 msgid "Excellon Editor Toolbar" msgstr "Barre d'outils de l'éditeur Excellon" -#: flatcamGUI/FlatCAMGUI.py:670 +#: flatcamGUI/FlatCAMGUI.py:715 msgid "Geometry Editor Toolbar" msgstr "Barre d'outils de l'éditeur de Géométrie" -#: flatcamGUI/FlatCAMGUI.py:674 +#: flatcamGUI/FlatCAMGUI.py:719 msgid "Gerber Editor Toolbar" msgstr "Barre d'outils de l'éditeur Gerber" -#: flatcamGUI/FlatCAMGUI.py:678 +#: flatcamGUI/FlatCAMGUI.py:723 msgid "Grid Toolbar" msgstr "Barre d'outils de la Grille" -#: flatcamGUI/FlatCAMGUI.py:699 flatcamGUI/FlatCAMGUI.py:2152 +#: flatcamGUI/FlatCAMGUI.py:746 flatcamGUI/FlatCAMGUI.py:2322 msgid "Open project" msgstr "Projet ouvert" -#: flatcamGUI/FlatCAMGUI.py:700 flatcamGUI/FlatCAMGUI.py:2153 +#: flatcamGUI/FlatCAMGUI.py:748 flatcamGUI/FlatCAMGUI.py:2324 msgid "Save project" msgstr "Sauvegarder le projet" -#: flatcamGUI/FlatCAMGUI.py:705 flatcamGUI/FlatCAMGUI.py:2156 +#: flatcamGUI/FlatCAMGUI.py:754 flatcamGUI/FlatCAMGUI.py:2328 msgid "New Blank Geometry" msgstr "Nouvelle Géométrie vierge" -#: flatcamGUI/FlatCAMGUI.py:706 flatcamGUI/FlatCAMGUI.py:2157 +#: flatcamGUI/FlatCAMGUI.py:756 flatcamGUI/FlatCAMGUI.py:2330 msgid "New Blank Gerber" msgstr "Nouveau Gerber vierge" -#: flatcamGUI/FlatCAMGUI.py:707 flatcamGUI/FlatCAMGUI.py:2158 +#: flatcamGUI/FlatCAMGUI.py:758 flatcamGUI/FlatCAMGUI.py:2332 msgid "New Blank Excellon" msgstr "Nouveau Excellon vierge" -#: flatcamGUI/FlatCAMGUI.py:711 flatcamGUI/FlatCAMGUI.py:2162 +#: flatcamGUI/FlatCAMGUI.py:763 flatcamGUI/FlatCAMGUI.py:2338 msgid "Save Object and close the Editor" msgstr "Enregistrer un objet et fermer l'éditeur" -#: flatcamGUI/FlatCAMGUI.py:716 flatcamGUI/FlatCAMGUI.py:2167 +#: flatcamGUI/FlatCAMGUI.py:770 flatcamGUI/FlatCAMGUI.py:2345 msgid "&Delete" msgstr "Supprimer" -#: flatcamGUI/FlatCAMGUI.py:718 flatcamGUI/FlatCAMGUI.py:1466 -#: flatcamGUI/FlatCAMGUI.py:1665 flatcamGUI/FlatCAMGUI.py:2169 +#: flatcamGUI/FlatCAMGUI.py:773 flatcamGUI/FlatCAMGUI.py:1582 +#: flatcamGUI/FlatCAMGUI.py:1781 flatcamGUI/FlatCAMGUI.py:2348 #: flatcamTools/ToolDistance.py:30 flatcamTools/ToolDistance.py:160 msgid "Distance Tool" msgstr "Outil de Distance" -#: flatcamGUI/FlatCAMGUI.py:720 flatcamGUI/FlatCAMGUI.py:2171 +#: flatcamGUI/FlatCAMGUI.py:775 flatcamGUI/FlatCAMGUI.py:2350 msgid "Distance Min Tool" msgstr "Outil Distance Min" -#: flatcamGUI/FlatCAMGUI.py:721 flatcamGUI/FlatCAMGUI.py:1459 -#: flatcamGUI/FlatCAMGUI.py:2172 +#: flatcamGUI/FlatCAMGUI.py:777 flatcamGUI/FlatCAMGUI.py:1575 +#: flatcamGUI/FlatCAMGUI.py:2352 msgid "Set Origin" msgstr "Définir l'origine" -#: flatcamGUI/FlatCAMGUI.py:722 flatcamGUI/FlatCAMGUI.py:2173 +#: flatcamGUI/FlatCAMGUI.py:779 flatcamGUI/FlatCAMGUI.py:2354 msgid "Jump to Location" msgstr "Aller à l'emplacement" -#: flatcamGUI/FlatCAMGUI.py:727 flatcamGUI/FlatCAMGUI.py:2176 +#: flatcamGUI/FlatCAMGUI.py:785 flatcamGUI/FlatCAMGUI.py:2358 msgid "&Replot" msgstr "Re-Tracé" -#: flatcamGUI/FlatCAMGUI.py:728 flatcamGUI/FlatCAMGUI.py:2177 +#: flatcamGUI/FlatCAMGUI.py:787 flatcamGUI/FlatCAMGUI.py:2360 msgid "&Clear plot" msgstr "Effacer la Trace" -#: flatcamGUI/FlatCAMGUI.py:729 flatcamGUI/FlatCAMGUI.py:1462 -#: flatcamGUI/FlatCAMGUI.py:2178 +#: flatcamGUI/FlatCAMGUI.py:789 flatcamGUI/FlatCAMGUI.py:1578 +#: flatcamGUI/FlatCAMGUI.py:2362 msgid "Zoom In" msgstr "Agrandir" -#: flatcamGUI/FlatCAMGUI.py:730 flatcamGUI/FlatCAMGUI.py:1462 -#: flatcamGUI/FlatCAMGUI.py:2179 +#: flatcamGUI/FlatCAMGUI.py:791 flatcamGUI/FlatCAMGUI.py:1578 +#: flatcamGUI/FlatCAMGUI.py:2364 msgid "Zoom Out" msgstr "Dézoomer" -#: flatcamGUI/FlatCAMGUI.py:731 flatcamGUI/FlatCAMGUI.py:1461 -#: flatcamGUI/FlatCAMGUI.py:1905 flatcamGUI/FlatCAMGUI.py:2180 +#: flatcamGUI/FlatCAMGUI.py:793 flatcamGUI/FlatCAMGUI.py:1577 +#: flatcamGUI/FlatCAMGUI.py:2031 flatcamGUI/FlatCAMGUI.py:2366 msgid "Zoom Fit" msgstr "Ajustement du Zoom" -#: flatcamGUI/FlatCAMGUI.py:738 flatcamGUI/FlatCAMGUI.py:2185 +#: flatcamGUI/FlatCAMGUI.py:801 flatcamGUI/FlatCAMGUI.py:2372 msgid "&Command Line" msgstr "&Ligne de commande" -#: flatcamGUI/FlatCAMGUI.py:746 flatcamGUI/FlatCAMGUI.py:2191 +#: flatcamGUI/FlatCAMGUI.py:813 flatcamGUI/FlatCAMGUI.py:2382 msgid "2Sided Tool" msgstr "Outil 2 faces" -#: flatcamGUI/FlatCAMGUI.py:747 flatcamGUI/ObjectUI.py:577 +#: flatcamGUI/FlatCAMGUI.py:815 flatcamGUI/ObjectUI.py:588 #: flatcamTools/ToolCutOut.py:434 msgid "Cutout Tool" msgstr "Outil de Découpe" -#: flatcamGUI/FlatCAMGUI.py:748 flatcamGUI/FlatCAMGUI.py:2193 -#: flatcamGUI/ObjectUI.py:555 flatcamGUI/ObjectUI.py:1712 -#: flatcamTools/ToolNonCopperClear.py:637 +#: flatcamGUI/FlatCAMGUI.py:817 flatcamGUI/FlatCAMGUI.py:2386 +#: flatcamGUI/ObjectUI.py:566 flatcamGUI/ObjectUI.py:1751 +#: flatcamTools/ToolNonCopperClear.py:638 msgid "NCC Tool" msgstr "Outil de la NCC" -#: flatcamGUI/FlatCAMGUI.py:752 flatcamGUI/FlatCAMGUI.py:2197 +#: flatcamGUI/FlatCAMGUI.py:823 flatcamGUI/FlatCAMGUI.py:2392 msgid "Panel Tool" msgstr "Outil de Panneau" -#: flatcamGUI/FlatCAMGUI.py:753 flatcamGUI/FlatCAMGUI.py:2198 +#: flatcamGUI/FlatCAMGUI.py:825 flatcamGUI/FlatCAMGUI.py:2394 #: flatcamTools/ToolFilm.py:578 msgid "Film Tool" msgstr "Outil de Film" -#: flatcamGUI/FlatCAMGUI.py:754 flatcamGUI/FlatCAMGUI.py:2200 +#: flatcamGUI/FlatCAMGUI.py:827 flatcamGUI/FlatCAMGUI.py:2397 #: flatcamTools/ToolSolderPaste.py:547 msgid "SolderPaste Tool" msgstr "Outil de Pâte à souder" -#: flatcamGUI/FlatCAMGUI.py:755 flatcamGUI/FlatCAMGUI.py:2201 +#: flatcamGUI/FlatCAMGUI.py:829 flatcamGUI/FlatCAMGUI.py:2399 #: flatcamTools/ToolSub.py:35 msgid "Subtract Tool" msgstr "Outil de Soustraction" -#: flatcamGUI/FlatCAMGUI.py:756 flatcamTools/ToolRulesCheck.py:607 +#: flatcamGUI/FlatCAMGUI.py:831 flatcamTools/ToolRulesCheck.py:607 msgid "Rules Tool" msgstr "Outil de Règles" -#: flatcamGUI/FlatCAMGUI.py:757 flatcamGUI/FlatCAMGUI.py:1477 +#: flatcamGUI/FlatCAMGUI.py:833 flatcamGUI/FlatCAMGUI.py:1593 #: flatcamTools/ToolOptimal.py:34 flatcamTools/ToolOptimal.py:310 msgid "Optimal Tool" msgstr "Outil de Optimal" -#: flatcamGUI/FlatCAMGUI.py:761 flatcamGUI/FlatCAMGUI.py:1475 -#: flatcamGUI/FlatCAMGUI.py:2206 +#: flatcamGUI/FlatCAMGUI.py:838 flatcamGUI/FlatCAMGUI.py:1591 +#: flatcamGUI/FlatCAMGUI.py:2404 msgid "Calculators Tool" msgstr "Outil de Calcul" -#: flatcamGUI/FlatCAMGUI.py:763 flatcamGUI/FlatCAMGUI.py:1478 -#: flatcamGUI/FlatCAMGUI.py:2208 flatcamTools/ToolQRCode.py:43 +#: flatcamGUI/FlatCAMGUI.py:842 flatcamGUI/FlatCAMGUI.py:1594 +#: flatcamGUI/FlatCAMGUI.py:2408 flatcamTools/ToolQRCode.py:43 #: flatcamTools/ToolQRCode.py:382 msgid "QRCode Tool" msgstr "Outil QRCode" -#: flatcamGUI/FlatCAMGUI.py:765 flatcamGUI/FlatCAMGUI.py:2210 +#: flatcamGUI/FlatCAMGUI.py:844 flatcamGUI/FlatCAMGUI.py:2410 #: flatcamTools/ToolCopperThieving.py:40 flatcamTools/ToolCopperThieving.py:566 msgid "Copper Thieving Tool" msgstr "Outil de Copper Thieving" -#: flatcamGUI/FlatCAMGUI.py:767 flatcamGUI/FlatCAMGUI.py:1475 -#: flatcamGUI/FlatCAMGUI.py:2212 flatcamTools/ToolFiducials.py:33 +#: flatcamGUI/FlatCAMGUI.py:847 flatcamGUI/FlatCAMGUI.py:1591 +#: flatcamGUI/FlatCAMGUI.py:2413 flatcamTools/ToolFiducials.py:33 #: flatcamTools/ToolFiducials.py:393 msgid "Fiducials Tool" msgstr "Outil Fiduciaire" -#: flatcamGUI/FlatCAMGUI.py:768 flatcamGUI/FlatCAMGUI.py:2213 +#: flatcamGUI/FlatCAMGUI.py:849 flatcamGUI/FlatCAMGUI.py:2415 #: flatcamTools/ToolCalibration.py:37 flatcamTools/ToolCalibration.py:762 msgid "Calibration Tool" msgstr "Outil d'Étalonnage" -#: flatcamGUI/FlatCAMGUI.py:773 flatcamGUI/FlatCAMGUI.py:792 -#: flatcamGUI/FlatCAMGUI.py:830 flatcamGUI/FlatCAMGUI.py:2216 -#: flatcamGUI/FlatCAMGUI.py:2271 +#: flatcamGUI/FlatCAMGUI.py:855 flatcamGUI/FlatCAMGUI.py:881 +#: flatcamGUI/FlatCAMGUI.py:933 flatcamGUI/FlatCAMGUI.py:2419 +#: flatcamGUI/FlatCAMGUI.py:2493 msgid "Select" msgstr "Sélectionner" -#: flatcamGUI/FlatCAMGUI.py:774 flatcamGUI/FlatCAMGUI.py:2217 +#: flatcamGUI/FlatCAMGUI.py:857 flatcamGUI/FlatCAMGUI.py:2421 msgid "Add Drill Hole" msgstr "Ajouter une Forage" -#: flatcamGUI/FlatCAMGUI.py:776 flatcamGUI/FlatCAMGUI.py:2219 +#: flatcamGUI/FlatCAMGUI.py:859 flatcamGUI/FlatCAMGUI.py:2423 msgid "Add Drill Hole Array" msgstr "Ajouter un Tableau de Forage" -#: flatcamGUI/FlatCAMGUI.py:777 flatcamGUI/FlatCAMGUI.py:1750 -#: flatcamGUI/FlatCAMGUI.py:1960 flatcamGUI/FlatCAMGUI.py:2221 +#: flatcamGUI/FlatCAMGUI.py:861 flatcamGUI/FlatCAMGUI.py:1866 +#: flatcamGUI/FlatCAMGUI.py:2119 flatcamGUI/FlatCAMGUI.py:2427 msgid "Add Slot" msgstr "Ajouter une Fente" -#: flatcamGUI/FlatCAMGUI.py:779 flatcamGUI/FlatCAMGUI.py:1749 -#: flatcamGUI/FlatCAMGUI.py:1961 flatcamGUI/FlatCAMGUI.py:2223 +#: flatcamGUI/FlatCAMGUI.py:863 flatcamGUI/FlatCAMGUI.py:1865 +#: flatcamGUI/FlatCAMGUI.py:2121 flatcamGUI/FlatCAMGUI.py:2429 msgid "Add Slot Array" msgstr "Ajouter un Tableau de Fente" -#: flatcamGUI/FlatCAMGUI.py:780 flatcamGUI/FlatCAMGUI.py:1963 -#: flatcamGUI/FlatCAMGUI.py:2220 +#: flatcamGUI/FlatCAMGUI.py:865 flatcamGUI/FlatCAMGUI.py:2124 +#: flatcamGUI/FlatCAMGUI.py:2425 msgid "Resize Drill" msgstr "Redimensionner Forage" -#: flatcamGUI/FlatCAMGUI.py:783 flatcamGUI/FlatCAMGUI.py:2226 +#: flatcamGUI/FlatCAMGUI.py:869 flatcamGUI/FlatCAMGUI.py:2433 msgid "Copy Drill" msgstr "Copier une Forage" -#: flatcamGUI/FlatCAMGUI.py:784 flatcamGUI/FlatCAMGUI.py:2228 +#: flatcamGUI/FlatCAMGUI.py:871 flatcamGUI/FlatCAMGUI.py:2435 msgid "Delete Drill" msgstr "Supprimer une Forage" -#: flatcamGUI/FlatCAMGUI.py:787 flatcamGUI/FlatCAMGUI.py:2231 +#: flatcamGUI/FlatCAMGUI.py:875 flatcamGUI/FlatCAMGUI.py:2439 msgid "Move Drill" msgstr "Déplacer uen Forage" -#: flatcamGUI/FlatCAMGUI.py:793 flatcamGUI/FlatCAMGUI.py:2235 +#: flatcamGUI/FlatCAMGUI.py:883 flatcamGUI/FlatCAMGUI.py:2445 msgid "Add Circle" msgstr "Ajouter un Cercle" -#: flatcamGUI/FlatCAMGUI.py:794 flatcamGUI/FlatCAMGUI.py:2236 +#: flatcamGUI/FlatCAMGUI.py:885 flatcamGUI/FlatCAMGUI.py:2447 msgid "Add Arc" msgstr "Ajouter un Arc" -#: flatcamGUI/FlatCAMGUI.py:796 flatcamGUI/FlatCAMGUI.py:2238 +#: flatcamGUI/FlatCAMGUI.py:887 flatcamGUI/FlatCAMGUI.py:2449 msgid "Add Rectangle" msgstr "Ajouter un Rectangle" -#: flatcamGUI/FlatCAMGUI.py:799 flatcamGUI/FlatCAMGUI.py:2241 +#: flatcamGUI/FlatCAMGUI.py:891 flatcamGUI/FlatCAMGUI.py:2453 msgid "Add Path" msgstr "Ajouter un Chemin" -#: flatcamGUI/FlatCAMGUI.py:800 flatcamGUI/FlatCAMGUI.py:2243 +#: flatcamGUI/FlatCAMGUI.py:893 flatcamGUI/FlatCAMGUI.py:2455 msgid "Add Polygon" msgstr "Ajouter un Polygone" -#: flatcamGUI/FlatCAMGUI.py:802 flatcamGUI/FlatCAMGUI.py:2245 +#: flatcamGUI/FlatCAMGUI.py:896 flatcamGUI/FlatCAMGUI.py:2458 msgid "Add Text" msgstr "Ajouter du Texte" -#: flatcamGUI/FlatCAMGUI.py:803 flatcamGUI/FlatCAMGUI.py:2246 +#: flatcamGUI/FlatCAMGUI.py:898 flatcamGUI/FlatCAMGUI.py:2460 msgid "Add Buffer" msgstr "Ajouter un Tampon" -#: flatcamGUI/FlatCAMGUI.py:804 flatcamGUI/FlatCAMGUI.py:2247 +#: flatcamGUI/FlatCAMGUI.py:900 flatcamGUI/FlatCAMGUI.py:2462 msgid "Paint Shape" msgstr "Peindre une Forme" -#: flatcamGUI/FlatCAMGUI.py:805 flatcamGUI/FlatCAMGUI.py:847 -#: flatcamGUI/FlatCAMGUI.py:1922 flatcamGUI/FlatCAMGUI.py:1950 -#: flatcamGUI/FlatCAMGUI.py:2248 flatcamGUI/FlatCAMGUI.py:2287 +#: flatcamGUI/FlatCAMGUI.py:902 flatcamGUI/FlatCAMGUI.py:959 +#: flatcamGUI/FlatCAMGUI.py:2060 flatcamGUI/FlatCAMGUI.py:2105 +#: flatcamGUI/FlatCAMGUI.py:2464 flatcamGUI/FlatCAMGUI.py:2518 msgid "Eraser" msgstr "La Gomme" -#: flatcamGUI/FlatCAMGUI.py:808 flatcamGUI/FlatCAMGUI.py:2251 +#: flatcamGUI/FlatCAMGUI.py:906 flatcamGUI/FlatCAMGUI.py:2468 msgid "Polygon Union" msgstr "Union de Polygones" -#: flatcamGUI/FlatCAMGUI.py:809 flatcamGUI/FlatCAMGUI.py:2252 +#: flatcamGUI/FlatCAMGUI.py:908 flatcamGUI/FlatCAMGUI.py:2470 msgid "Polygon Explode" msgstr "Éclatement de polygone" -#: flatcamGUI/FlatCAMGUI.py:812 flatcamGUI/FlatCAMGUI.py:2255 +#: flatcamGUI/FlatCAMGUI.py:911 flatcamGUI/FlatCAMGUI.py:2473 msgid "Polygon Intersection" msgstr "Intersection de Polygones" -#: flatcamGUI/FlatCAMGUI.py:814 flatcamGUI/FlatCAMGUI.py:2257 +#: flatcamGUI/FlatCAMGUI.py:913 flatcamGUI/FlatCAMGUI.py:2475 msgid "Polygon Subtraction" msgstr "Soustraction de Polygone" -#: flatcamGUI/FlatCAMGUI.py:817 flatcamGUI/FlatCAMGUI.py:2260 +#: flatcamGUI/FlatCAMGUI.py:917 flatcamGUI/FlatCAMGUI.py:2479 msgid "Cut Path" msgstr "Chemin Coupé" -#: flatcamGUI/FlatCAMGUI.py:818 +#: flatcamGUI/FlatCAMGUI.py:919 msgid "Copy Shape(s)" msgstr "Copier les Formes" -#: flatcamGUI/FlatCAMGUI.py:821 +#: flatcamGUI/FlatCAMGUI.py:922 msgid "Delete Shape '-'" msgstr "Supprimer la Forme" -#: flatcamGUI/FlatCAMGUI.py:823 flatcamGUI/FlatCAMGUI.py:854 -#: flatcamGUI/FlatCAMGUI.py:1929 flatcamGUI/FlatCAMGUI.py:1954 -#: flatcamGUI/FlatCAMGUI.py:2265 flatcamGUI/FlatCAMGUI.py:2294 +#: flatcamGUI/FlatCAMGUI.py:924 flatcamGUI/FlatCAMGUI.py:967 +#: flatcamGUI/FlatCAMGUI.py:2072 flatcamGUI/FlatCAMGUI.py:2109 +#: flatcamGUI/FlatCAMGUI.py:2485 flatcamGUI/FlatCAMGUI.py:2526 msgid "Transformations" msgstr "Transformations" -#: flatcamGUI/FlatCAMGUI.py:825 +#: flatcamGUI/FlatCAMGUI.py:927 msgid "Move Objects " msgstr "Déplacer des objets " -#: flatcamGUI/FlatCAMGUI.py:831 flatcamGUI/FlatCAMGUI.py:1869 -#: flatcamGUI/FlatCAMGUI.py:2272 +#: flatcamGUI/FlatCAMGUI.py:935 flatcamGUI/FlatCAMGUI.py:1985 +#: flatcamGUI/FlatCAMGUI.py:2495 msgid "Add Pad" msgstr "Ajouter un Pad" -#: flatcamGUI/FlatCAMGUI.py:833 flatcamGUI/FlatCAMGUI.py:1870 -#: flatcamGUI/FlatCAMGUI.py:2274 +#: flatcamGUI/FlatCAMGUI.py:939 flatcamGUI/FlatCAMGUI.py:1986 +#: flatcamGUI/FlatCAMGUI.py:2499 msgid "Add Track" msgstr "Ajouter une Piste" -#: flatcamGUI/FlatCAMGUI.py:834 flatcamGUI/FlatCAMGUI.py:1869 -#: flatcamGUI/FlatCAMGUI.py:2275 +#: flatcamGUI/FlatCAMGUI.py:941 flatcamGUI/FlatCAMGUI.py:1985 +#: flatcamGUI/FlatCAMGUI.py:2501 msgid "Add Region" msgstr "Ajouter une Région" -#: flatcamGUI/FlatCAMGUI.py:836 flatcamGUI/FlatCAMGUI.py:1942 -#: flatcamGUI/FlatCAMGUI.py:2277 +#: flatcamGUI/FlatCAMGUI.py:943 flatcamGUI/FlatCAMGUI.py:2091 +#: flatcamGUI/FlatCAMGUI.py:2503 msgid "Poligonize" msgstr "Polygoniser" -#: flatcamGUI/FlatCAMGUI.py:838 flatcamGUI/FlatCAMGUI.py:1943 -#: flatcamGUI/FlatCAMGUI.py:2279 +#: flatcamGUI/FlatCAMGUI.py:946 flatcamGUI/FlatCAMGUI.py:2093 +#: flatcamGUI/FlatCAMGUI.py:2506 msgid "SemiDisc" msgstr "Semi Disque" -#: flatcamGUI/FlatCAMGUI.py:839 flatcamGUI/FlatCAMGUI.py:1944 -#: flatcamGUI/FlatCAMGUI.py:2280 +#: flatcamGUI/FlatCAMGUI.py:948 flatcamGUI/FlatCAMGUI.py:2095 +#: flatcamGUI/FlatCAMGUI.py:2508 msgid "Disc" msgstr "Disque" -#: flatcamGUI/FlatCAMGUI.py:845 flatcamGUI/FlatCAMGUI.py:1949 -#: flatcamGUI/FlatCAMGUI.py:2286 +#: flatcamGUI/FlatCAMGUI.py:956 flatcamGUI/FlatCAMGUI.py:2103 +#: flatcamGUI/FlatCAMGUI.py:2516 msgid "Mark Area" msgstr "Zone de Marque" -#: flatcamGUI/FlatCAMGUI.py:856 flatcamGUI/FlatCAMGUI.py:1869 -#: flatcamGUI/FlatCAMGUI.py:1932 flatcamGUI/FlatCAMGUI.py:1973 -#: flatcamGUI/FlatCAMGUI.py:2296 flatcamTools/ToolMove.py:28 +#: flatcamGUI/FlatCAMGUI.py:970 flatcamGUI/FlatCAMGUI.py:1985 +#: flatcamGUI/FlatCAMGUI.py:2076 flatcamGUI/FlatCAMGUI.py:2139 +#: flatcamGUI/FlatCAMGUI.py:2529 flatcamTools/ToolMove.py:28 msgid "Move" msgstr "Déplacer" -#: flatcamGUI/FlatCAMGUI.py:863 flatcamGUI/FlatCAMGUI.py:2302 +#: flatcamGUI/FlatCAMGUI.py:978 flatcamGUI/FlatCAMGUI.py:2536 msgid "Snap to grid" msgstr "Aligner sur la Grille" -#: flatcamGUI/FlatCAMGUI.py:866 flatcamGUI/FlatCAMGUI.py:2305 +#: flatcamGUI/FlatCAMGUI.py:981 flatcamGUI/FlatCAMGUI.py:2539 msgid "Grid X snapping distance" msgstr "Distance d'accrochage de la grille X" -#: flatcamGUI/FlatCAMGUI.py:871 flatcamGUI/FlatCAMGUI.py:2310 +#: flatcamGUI/FlatCAMGUI.py:986 flatcamGUI/FlatCAMGUI.py:2544 msgid "Grid Y snapping distance" msgstr "Distance d'accrochage de la grille Y" -#: flatcamGUI/FlatCAMGUI.py:877 flatcamGUI/FlatCAMGUI.py:2316 +#: flatcamGUI/FlatCAMGUI.py:992 flatcamGUI/FlatCAMGUI.py:2550 msgid "" "When active, value on Grid_X\n" "is copied to the Grid_Y value." @@ -6249,63 +6248,63 @@ msgstr "" "Lorsque actif, valeur sur Grid_X\n" "est copié dans la valeur Grid_Y." -#: flatcamGUI/FlatCAMGUI.py:883 flatcamGUI/FlatCAMGUI.py:2322 +#: flatcamGUI/FlatCAMGUI.py:999 flatcamGUI/FlatCAMGUI.py:2557 msgid "Snap to corner" msgstr "Accrocher au coin" -#: flatcamGUI/FlatCAMGUI.py:887 flatcamGUI/FlatCAMGUI.py:2326 +#: flatcamGUI/FlatCAMGUI.py:1003 flatcamGUI/FlatCAMGUI.py:2561 #: flatcamGUI/PreferencesUI.py:348 msgid "Max. magnet distance" msgstr "Max. distance d'aimant" -#: flatcamGUI/FlatCAMGUI.py:921 +#: flatcamGUI/FlatCAMGUI.py:1037 msgid "Selected" msgstr "Choisi" -#: flatcamGUI/FlatCAMGUI.py:948 flatcamGUI/FlatCAMGUI.py:956 +#: flatcamGUI/FlatCAMGUI.py:1064 flatcamGUI/FlatCAMGUI.py:1072 msgid "Plot Area" msgstr "Zone de Dessin" -#: flatcamGUI/FlatCAMGUI.py:983 +#: flatcamGUI/FlatCAMGUI.py:1099 msgid "General" msgstr "Général" -#: flatcamGUI/FlatCAMGUI.py:998 flatcamTools/ToolCopperThieving.py:74 +#: flatcamGUI/FlatCAMGUI.py:1114 flatcamTools/ToolCopperThieving.py:74 #: flatcamTools/ToolDblSided.py:57 flatcamTools/ToolOptimal.py:71 #: flatcamTools/ToolQRCode.py:77 msgid "GERBER" msgstr "GERBER" -#: flatcamGUI/FlatCAMGUI.py:1008 flatcamTools/ToolDblSided.py:85 +#: flatcamGUI/FlatCAMGUI.py:1124 flatcamTools/ToolDblSided.py:85 msgid "EXCELLON" msgstr "EXCELLON" -#: flatcamGUI/FlatCAMGUI.py:1018 flatcamTools/ToolDblSided.py:113 +#: flatcamGUI/FlatCAMGUI.py:1134 flatcamTools/ToolDblSided.py:113 msgid "GEOMETRY" msgstr "GÉOMÉTRIE" -#: flatcamGUI/FlatCAMGUI.py:1028 +#: flatcamGUI/FlatCAMGUI.py:1144 msgid "CNC-JOB" msgstr "CNC-JOB" -#: flatcamGUI/FlatCAMGUI.py:1037 flatcamGUI/ObjectUI.py:544 -#: flatcamGUI/ObjectUI.py:1687 +#: flatcamGUI/FlatCAMGUI.py:1153 flatcamGUI/ObjectUI.py:555 +#: flatcamGUI/ObjectUI.py:1726 msgid "TOOLS" msgstr "OUTILS" -#: flatcamGUI/FlatCAMGUI.py:1046 +#: flatcamGUI/FlatCAMGUI.py:1162 msgid "TOOLS 2" msgstr "OUTILS 2" -#: flatcamGUI/FlatCAMGUI.py:1056 +#: flatcamGUI/FlatCAMGUI.py:1172 msgid "UTILITIES" msgstr "UTILITAIRES" -#: flatcamGUI/FlatCAMGUI.py:1073 +#: flatcamGUI/FlatCAMGUI.py:1189 msgid "Import Preferences" msgstr "Préférences d'importation" -#: flatcamGUI/FlatCAMGUI.py:1076 +#: flatcamGUI/FlatCAMGUI.py:1192 msgid "" "Import a full set of FlatCAM settings from a file\n" "previously saved on HDD.\n" @@ -6319,11 +6318,11 @@ msgstr "" "FlatCAM enregistre automatiquement un fichier 'factory_defaults'\n" "au premier départ. Ne supprimez pas ce fichier." -#: flatcamGUI/FlatCAMGUI.py:1083 +#: flatcamGUI/FlatCAMGUI.py:1199 msgid "Export Preferences" msgstr "Préférences d'exportation" -#: flatcamGUI/FlatCAMGUI.py:1086 +#: flatcamGUI/FlatCAMGUI.py:1202 msgid "" "Export a full set of FlatCAM settings in a file\n" "that is saved on HDD." @@ -6331,23 +6330,23 @@ msgstr "" "Exporter un ensemble complet de paramètres FlatCAM dans un fichier\n" "qui est enregistré sur le disque dur." -#: flatcamGUI/FlatCAMGUI.py:1091 +#: flatcamGUI/FlatCAMGUI.py:1207 msgid "Open Pref Folder" msgstr "Ouvrir le dossier Pref" -#: flatcamGUI/FlatCAMGUI.py:1094 +#: flatcamGUI/FlatCAMGUI.py:1210 msgid "Open the folder where FlatCAM save the preferences files." msgstr "Ouvrez le dossier où FlatCAM enregistre les fichiers de préférences." -#: flatcamGUI/FlatCAMGUI.py:1102 +#: flatcamGUI/FlatCAMGUI.py:1218 msgid "Apply" msgstr "Appliquer" -#: flatcamGUI/FlatCAMGUI.py:1105 +#: flatcamGUI/FlatCAMGUI.py:1221 msgid "Apply the current preferences without saving to a file." msgstr "Appliquez les préférences actuelles sans enregistrer dans un fichier." -#: flatcamGUI/FlatCAMGUI.py:1112 +#: flatcamGUI/FlatCAMGUI.py:1228 msgid "" "Save the current settings in the 'current_defaults' file\n" "which is the file storing the working default preferences." @@ -6355,532 +6354,532 @@ msgstr "" "Enregistrer les paramètres actuels dans le fichier 'current_defaults'\n" "qui est le fichier stockant les préférences de travail par défaut." -#: flatcamGUI/FlatCAMGUI.py:1120 +#: flatcamGUI/FlatCAMGUI.py:1236 msgid "Will not save the changes and will close the preferences window." msgstr "" "N'enregistrera pas les modifications et fermera la fenêtre des préférences." -#: flatcamGUI/FlatCAMGUI.py:1456 +#: flatcamGUI/FlatCAMGUI.py:1572 msgid "SHOW SHORTCUT LIST" msgstr "MONTRER LISTE DES RACCOURCIS" -#: flatcamGUI/FlatCAMGUI.py:1456 +#: flatcamGUI/FlatCAMGUI.py:1572 msgid "Switch to Project Tab" msgstr "Passer à l'onglet Projet" -#: flatcamGUI/FlatCAMGUI.py:1456 +#: flatcamGUI/FlatCAMGUI.py:1572 msgid "Switch to Selected Tab" msgstr "Passer à l'onglet Sélectionné" -#: flatcamGUI/FlatCAMGUI.py:1457 +#: flatcamGUI/FlatCAMGUI.py:1573 msgid "Switch to Tool Tab" msgstr "Basculer vers l'onglet Outil" -#: flatcamGUI/FlatCAMGUI.py:1458 +#: flatcamGUI/FlatCAMGUI.py:1574 msgid "New Gerber" msgstr "Nouveau Gerber" -#: flatcamGUI/FlatCAMGUI.py:1458 +#: flatcamGUI/FlatCAMGUI.py:1574 msgid "Edit Object (if selected)" msgstr "Editer objet (si sélectionné)" -#: flatcamGUI/FlatCAMGUI.py:1458 +#: flatcamGUI/FlatCAMGUI.py:1574 msgid "Jump to Coordinates" msgstr "Aller aux coordonnées" -#: flatcamGUI/FlatCAMGUI.py:1459 +#: flatcamGUI/FlatCAMGUI.py:1575 msgid "New Excellon" msgstr "Nouvelle Excellon" -#: flatcamGUI/FlatCAMGUI.py:1459 +#: flatcamGUI/FlatCAMGUI.py:1575 msgid "Move Obj" msgstr "Déplacer Obj" -#: flatcamGUI/FlatCAMGUI.py:1459 +#: flatcamGUI/FlatCAMGUI.py:1575 msgid "New Geometry" msgstr "Nouvelle Géométrie" -#: flatcamGUI/FlatCAMGUI.py:1459 +#: flatcamGUI/FlatCAMGUI.py:1575 msgid "Change Units" msgstr "Changer d'unités" -#: flatcamGUI/FlatCAMGUI.py:1460 +#: flatcamGUI/FlatCAMGUI.py:1576 msgid "Open Properties Tool" msgstr "Ouvrir les Propriétés" -#: flatcamGUI/FlatCAMGUI.py:1460 +#: flatcamGUI/FlatCAMGUI.py:1576 msgid "Rotate by 90 degree CW" msgstr "Rotation de 90 degrés CW" -#: flatcamGUI/FlatCAMGUI.py:1460 +#: flatcamGUI/FlatCAMGUI.py:1576 msgid "Shell Toggle" msgstr "Shell bascule" -#: flatcamGUI/FlatCAMGUI.py:1461 +#: flatcamGUI/FlatCAMGUI.py:1577 msgid "" "Add a Tool (when in Geometry Selected Tab or in Tools NCC or Tools Paint)" msgstr "" "Ajouter un outil (dans l'onglet Géométrie sélectionnée ou dans Outils NCC ou " "Outils de Peinture)" -#: flatcamGUI/FlatCAMGUI.py:1462 +#: flatcamGUI/FlatCAMGUI.py:1578 msgid "Flip on X_axis" msgstr "Miroir sur l'axe des X" -#: flatcamGUI/FlatCAMGUI.py:1462 +#: flatcamGUI/FlatCAMGUI.py:1578 msgid "Flip on Y_axis" msgstr "Miroir sur l'axe des Y" -#: flatcamGUI/FlatCAMGUI.py:1465 +#: flatcamGUI/FlatCAMGUI.py:1581 msgid "Copy Obj" msgstr "Copier Obj" -#: flatcamGUI/FlatCAMGUI.py:1465 +#: flatcamGUI/FlatCAMGUI.py:1581 msgid "Open Tools Database" msgstr "Ouvrir la BD des outils" -#: flatcamGUI/FlatCAMGUI.py:1466 +#: flatcamGUI/FlatCAMGUI.py:1582 msgid "Open Excellon File" msgstr "Ouvrir le fichier Excellon" -#: flatcamGUI/FlatCAMGUI.py:1466 +#: flatcamGUI/FlatCAMGUI.py:1582 msgid "Open Gerber File" msgstr "Ouvrir le fichier Gerber" -#: flatcamGUI/FlatCAMGUI.py:1466 +#: flatcamGUI/FlatCAMGUI.py:1582 msgid "New Project" msgstr "Nouveau Projet" -#: flatcamGUI/FlatCAMGUI.py:1467 flatcamTools/ToolPDF.py:42 +#: flatcamGUI/FlatCAMGUI.py:1583 flatcamTools/ToolPDF.py:42 msgid "PDF Import Tool" msgstr "Outil d'importation PDF" -#: flatcamGUI/FlatCAMGUI.py:1467 +#: flatcamGUI/FlatCAMGUI.py:1583 msgid "Save Project As" msgstr "Enregistrer le projet sous" -#: flatcamGUI/FlatCAMGUI.py:1467 +#: flatcamGUI/FlatCAMGUI.py:1583 msgid "Toggle Plot Area" msgstr "Basculer la Zone de Tracé" -#: flatcamGUI/FlatCAMGUI.py:1470 +#: flatcamGUI/FlatCAMGUI.py:1586 msgid "Copy Obj_Name" msgstr "Copier Nom Obj" -#: flatcamGUI/FlatCAMGUI.py:1471 +#: flatcamGUI/FlatCAMGUI.py:1587 msgid "Toggle Code Editor" msgstr "Basculer l'éditeur de Code" -#: flatcamGUI/FlatCAMGUI.py:1471 +#: flatcamGUI/FlatCAMGUI.py:1587 msgid "Toggle the axis" msgstr "Basculer l'axe" -#: flatcamGUI/FlatCAMGUI.py:1471 flatcamGUI/FlatCAMGUI.py:1663 -#: flatcamGUI/FlatCAMGUI.py:1750 flatcamGUI/FlatCAMGUI.py:1872 +#: flatcamGUI/FlatCAMGUI.py:1587 flatcamGUI/FlatCAMGUI.py:1779 +#: flatcamGUI/FlatCAMGUI.py:1866 flatcamGUI/FlatCAMGUI.py:1988 msgid "Distance Minimum Tool" msgstr "Outil de Distance Minimum" -#: flatcamGUI/FlatCAMGUI.py:1471 +#: flatcamGUI/FlatCAMGUI.py:1587 msgid "Open Preferences Window" msgstr "Ouvrir la fenêtre de Préférences" -#: flatcamGUI/FlatCAMGUI.py:1472 +#: flatcamGUI/FlatCAMGUI.py:1588 msgid "Rotate by 90 degree CCW" msgstr "Faire pivoter de 90 degrés dans le sens anti-horaire" -#: flatcamGUI/FlatCAMGUI.py:1472 +#: flatcamGUI/FlatCAMGUI.py:1588 msgid "Run a Script" msgstr "Exécuter un script" -#: flatcamGUI/FlatCAMGUI.py:1472 +#: flatcamGUI/FlatCAMGUI.py:1588 msgid "Toggle the workspace" msgstr "Basculer l'espace de travail" -#: flatcamGUI/FlatCAMGUI.py:1472 +#: flatcamGUI/FlatCAMGUI.py:1588 msgid "Skew on X axis" msgstr "Fausser sur l'axe X" -#: flatcamGUI/FlatCAMGUI.py:1473 +#: flatcamGUI/FlatCAMGUI.py:1589 msgid "Skew on Y axis" msgstr "Fausser sur l'axe Y" -#: flatcamGUI/FlatCAMGUI.py:1475 +#: flatcamGUI/FlatCAMGUI.py:1591 msgid "2-Sided PCB Tool" msgstr "Outil de PCB double face" -#: flatcamGUI/FlatCAMGUI.py:1475 +#: flatcamGUI/FlatCAMGUI.py:1591 msgid "Transformations Tool" msgstr "Outil de Transformation" -#: flatcamGUI/FlatCAMGUI.py:1476 +#: flatcamGUI/FlatCAMGUI.py:1592 msgid "Solder Paste Dispensing Tool" msgstr "Outil d'application de Pâte à souder" -#: flatcamGUI/FlatCAMGUI.py:1477 +#: flatcamGUI/FlatCAMGUI.py:1593 msgid "Film PCB Tool" msgstr "Outil de PCB film" -#: flatcamGUI/FlatCAMGUI.py:1477 +#: flatcamGUI/FlatCAMGUI.py:1593 msgid "Non-Copper Clearing Tool" msgstr "Outil de Nettoyage sans Cuivre" -#: flatcamGUI/FlatCAMGUI.py:1478 +#: flatcamGUI/FlatCAMGUI.py:1594 msgid "Paint Area Tool" msgstr "Outil de Zone de Peinture" -#: flatcamGUI/FlatCAMGUI.py:1478 +#: flatcamGUI/FlatCAMGUI.py:1594 msgid "Rules Check Tool" msgstr "Outil de Vérification des Règles" -#: flatcamGUI/FlatCAMGUI.py:1479 +#: flatcamGUI/FlatCAMGUI.py:1595 msgid "View File Source" msgstr "Voir le fichier Source" -#: flatcamGUI/FlatCAMGUI.py:1480 +#: flatcamGUI/FlatCAMGUI.py:1596 msgid "Cutout PCB Tool" msgstr "Outil de Découpe PCB" -#: flatcamGUI/FlatCAMGUI.py:1480 +#: flatcamGUI/FlatCAMGUI.py:1596 msgid "Enable all Plots" msgstr "Activer tous les Dessins" -#: flatcamGUI/FlatCAMGUI.py:1480 +#: flatcamGUI/FlatCAMGUI.py:1596 msgid "Disable all Plots" msgstr "Désactiver tous les Dessins" -#: flatcamGUI/FlatCAMGUI.py:1480 +#: flatcamGUI/FlatCAMGUI.py:1596 msgid "Disable Non-selected Plots" msgstr "Désactiver les Dessins non sélectionnés" -#: flatcamGUI/FlatCAMGUI.py:1481 +#: flatcamGUI/FlatCAMGUI.py:1597 msgid "Toggle Full Screen" msgstr "Passer en plein écran" -#: flatcamGUI/FlatCAMGUI.py:1484 +#: flatcamGUI/FlatCAMGUI.py:1600 msgid "Abort current task (gracefully)" msgstr "Abandonner la tâche en cours (avec élégance)" -#: flatcamGUI/FlatCAMGUI.py:1487 +#: flatcamGUI/FlatCAMGUI.py:1603 msgid "Open Online Manual" msgstr "Ouvrir le manuel en ligne" -#: flatcamGUI/FlatCAMGUI.py:1488 +#: flatcamGUI/FlatCAMGUI.py:1604 msgid "Open Online Tutorials" msgstr "Ouvrir des tutoriels en ligne" -#: flatcamGUI/FlatCAMGUI.py:1488 +#: flatcamGUI/FlatCAMGUI.py:1604 msgid "Refresh Plots" msgstr "Actualiser les Dessins" -#: flatcamGUI/FlatCAMGUI.py:1488 flatcamTools/ToolSolderPaste.py:503 +#: flatcamGUI/FlatCAMGUI.py:1604 flatcamTools/ToolSolderPaste.py:503 msgid "Delete Object" msgstr "Supprimer un objet" -#: flatcamGUI/FlatCAMGUI.py:1488 +#: flatcamGUI/FlatCAMGUI.py:1604 msgid "Alternate: Delete Tool" msgstr "Autre: Suppression de Outil" -#: flatcamGUI/FlatCAMGUI.py:1489 +#: flatcamGUI/FlatCAMGUI.py:1605 msgid "(left to Key_1)Toogle Notebook Area (Left Side)" msgstr "(à gauche de Key_1) Basculer la zone du bloc-notes (côté gauche)" -#: flatcamGUI/FlatCAMGUI.py:1489 +#: flatcamGUI/FlatCAMGUI.py:1605 msgid "En(Dis)able Obj Plot" msgstr "(Dés)activer Obj Dessin" -#: flatcamGUI/FlatCAMGUI.py:1490 +#: flatcamGUI/FlatCAMGUI.py:1606 msgid "Deselects all objects" msgstr "Désélectionne tous les objets" -#: flatcamGUI/FlatCAMGUI.py:1504 +#: flatcamGUI/FlatCAMGUI.py:1620 msgid "Editor Shortcut list" msgstr "Liste des raccourcis de l'éditeur" -#: flatcamGUI/FlatCAMGUI.py:1658 +#: flatcamGUI/FlatCAMGUI.py:1774 msgid "GEOMETRY EDITOR" msgstr "EDITEUR DE GEOMETRIE" -#: flatcamGUI/FlatCAMGUI.py:1658 +#: flatcamGUI/FlatCAMGUI.py:1774 msgid "Draw an Arc" msgstr "Dessiner un arc" -#: flatcamGUI/FlatCAMGUI.py:1658 +#: flatcamGUI/FlatCAMGUI.py:1774 msgid "Copy Geo Item" msgstr "Copier un élém. de Géo" -#: flatcamGUI/FlatCAMGUI.py:1659 +#: flatcamGUI/FlatCAMGUI.py:1775 msgid "Within Add Arc will toogle the ARC direction: CW or CCW" msgstr "Dans Ajouter un arc va toogle la direction de l'ARC: CW ou CCW" -#: flatcamGUI/FlatCAMGUI.py:1659 +#: flatcamGUI/FlatCAMGUI.py:1775 msgid "Polygon Intersection Tool" msgstr "Outil d'intersection de polygones" -#: flatcamGUI/FlatCAMGUI.py:1660 +#: flatcamGUI/FlatCAMGUI.py:1776 msgid "Geo Paint Tool" msgstr "Outil de peinture géo" -#: flatcamGUI/FlatCAMGUI.py:1660 flatcamGUI/FlatCAMGUI.py:1749 -#: flatcamGUI/FlatCAMGUI.py:1869 +#: flatcamGUI/FlatCAMGUI.py:1776 flatcamGUI/FlatCAMGUI.py:1865 +#: flatcamGUI/FlatCAMGUI.py:1985 msgid "Jump to Location (x, y)" msgstr "Aller à l'emplacement (x, y)" -#: flatcamGUI/FlatCAMGUI.py:1660 +#: flatcamGUI/FlatCAMGUI.py:1776 msgid "Toggle Corner Snap" msgstr "Basculement d'angle" -#: flatcamGUI/FlatCAMGUI.py:1660 +#: flatcamGUI/FlatCAMGUI.py:1776 msgid "Move Geo Item" msgstr "Déplacer un élément de géométrie" -#: flatcamGUI/FlatCAMGUI.py:1661 +#: flatcamGUI/FlatCAMGUI.py:1777 msgid "Within Add Arc will cycle through the ARC modes" msgstr "Dans Ajouter Arc passera en revue les modes ARC" -#: flatcamGUI/FlatCAMGUI.py:1661 +#: flatcamGUI/FlatCAMGUI.py:1777 msgid "Draw a Polygon" msgstr "Dessine un polygone" -#: flatcamGUI/FlatCAMGUI.py:1661 +#: flatcamGUI/FlatCAMGUI.py:1777 msgid "Draw a Circle" msgstr "Dessiner un cercle" -#: flatcamGUI/FlatCAMGUI.py:1662 +#: flatcamGUI/FlatCAMGUI.py:1778 msgid "Draw a Path" msgstr "Dessiner un chemin" -#: flatcamGUI/FlatCAMGUI.py:1662 +#: flatcamGUI/FlatCAMGUI.py:1778 msgid "Draw Rectangle" msgstr "Dessiner un rectangle" -#: flatcamGUI/FlatCAMGUI.py:1662 +#: flatcamGUI/FlatCAMGUI.py:1778 msgid "Polygon Subtraction Tool" msgstr "Outil de soustraction de polygone" -#: flatcamGUI/FlatCAMGUI.py:1662 +#: flatcamGUI/FlatCAMGUI.py:1778 msgid "Add Text Tool" msgstr "Ajouter un outil de texte" -#: flatcamGUI/FlatCAMGUI.py:1663 +#: flatcamGUI/FlatCAMGUI.py:1779 msgid "Polygon Union Tool" msgstr "Outil union de polygones" -#: flatcamGUI/FlatCAMGUI.py:1663 +#: flatcamGUI/FlatCAMGUI.py:1779 msgid "Flip shape on X axis" msgstr "Refléter la forme sur l'axe X" -#: flatcamGUI/FlatCAMGUI.py:1663 +#: flatcamGUI/FlatCAMGUI.py:1779 msgid "Flip shape on Y axis" msgstr "Refléter la forme sur l'axe Y" -#: flatcamGUI/FlatCAMGUI.py:1664 +#: flatcamGUI/FlatCAMGUI.py:1780 msgid "Skew shape on X axis" msgstr "Fausser de la forme sur l'axe X" -#: flatcamGUI/FlatCAMGUI.py:1664 +#: flatcamGUI/FlatCAMGUI.py:1780 msgid "Skew shape on Y axis" msgstr "Fausser de la forme sur l'axe Y" -#: flatcamGUI/FlatCAMGUI.py:1664 +#: flatcamGUI/FlatCAMGUI.py:1780 msgid "Editor Transformation Tool" msgstr "Outil de transformation de l'éditeur" -#: flatcamGUI/FlatCAMGUI.py:1665 +#: flatcamGUI/FlatCAMGUI.py:1781 msgid "Offset shape on X axis" msgstr "Forme décalée sur l'axe X" -#: flatcamGUI/FlatCAMGUI.py:1665 +#: flatcamGUI/FlatCAMGUI.py:1781 msgid "Offset shape on Y axis" msgstr "Forme décalée sur l'axe Y" -#: flatcamGUI/FlatCAMGUI.py:1666 flatcamGUI/FlatCAMGUI.py:1752 -#: flatcamGUI/FlatCAMGUI.py:1874 +#: flatcamGUI/FlatCAMGUI.py:1782 flatcamGUI/FlatCAMGUI.py:1868 +#: flatcamGUI/FlatCAMGUI.py:1990 msgid "Save Object and Exit Editor" msgstr "Enregistrer l'objet et quitter l'éditeur" -#: flatcamGUI/FlatCAMGUI.py:1666 +#: flatcamGUI/FlatCAMGUI.py:1782 msgid "Polygon Cut Tool" msgstr "Outil de coupe de polygone" -#: flatcamGUI/FlatCAMGUI.py:1667 +#: flatcamGUI/FlatCAMGUI.py:1783 msgid "Rotate Geometry" msgstr "Faire pivoter la géométrie" -#: flatcamGUI/FlatCAMGUI.py:1667 +#: flatcamGUI/FlatCAMGUI.py:1783 msgid "Finish drawing for certain tools" msgstr "Terminer le dessin pour certains outils" -#: flatcamGUI/FlatCAMGUI.py:1667 flatcamGUI/FlatCAMGUI.py:1752 -#: flatcamGUI/FlatCAMGUI.py:1872 +#: flatcamGUI/FlatCAMGUI.py:1783 flatcamGUI/FlatCAMGUI.py:1868 +#: flatcamGUI/FlatCAMGUI.py:1988 msgid "Abort and return to Select" msgstr "Abort and return to Select" -#: flatcamGUI/FlatCAMGUI.py:1668 flatcamGUI/FlatCAMGUI.py:2263 +#: flatcamGUI/FlatCAMGUI.py:1784 flatcamGUI/FlatCAMGUI.py:2483 msgid "Delete Shape" msgstr "Supprimer la forme" -#: flatcamGUI/FlatCAMGUI.py:1748 +#: flatcamGUI/FlatCAMGUI.py:1864 msgid "EXCELLON EDITOR" msgstr "ÉDITEUR EXCELLON" -#: flatcamGUI/FlatCAMGUI.py:1748 +#: flatcamGUI/FlatCAMGUI.py:1864 msgid "Copy Drill(s)" msgstr "Copier les Forets" -#: flatcamGUI/FlatCAMGUI.py:1748 flatcamGUI/FlatCAMGUI.py:1957 +#: flatcamGUI/FlatCAMGUI.py:1864 flatcamGUI/FlatCAMGUI.py:2114 msgid "Add Drill" msgstr "Ajouter une Foret" -#: flatcamGUI/FlatCAMGUI.py:1749 +#: flatcamGUI/FlatCAMGUI.py:1865 msgid "Move Drill(s)" msgstr "Déplacer les Forets" -#: flatcamGUI/FlatCAMGUI.py:1750 +#: flatcamGUI/FlatCAMGUI.py:1866 msgid "Add a new Tool" msgstr "Ajouter un nouvel outil" -#: flatcamGUI/FlatCAMGUI.py:1751 +#: flatcamGUI/FlatCAMGUI.py:1867 msgid "Delete Drill(s)" msgstr "Supprimer les Forets" -#: flatcamGUI/FlatCAMGUI.py:1751 +#: flatcamGUI/FlatCAMGUI.py:1867 msgid "Alternate: Delete Tool(s)" msgstr "Autre: Supprimer outil(s)" -#: flatcamGUI/FlatCAMGUI.py:1868 +#: flatcamGUI/FlatCAMGUI.py:1984 msgid "GERBER EDITOR" msgstr "GERBER ÉDITEUR" -#: flatcamGUI/FlatCAMGUI.py:1868 +#: flatcamGUI/FlatCAMGUI.py:1984 msgid "Add Disc" msgstr "Ajouter un Disque" -#: flatcamGUI/FlatCAMGUI.py:1868 +#: flatcamGUI/FlatCAMGUI.py:1984 msgid "Add SemiDisc" msgstr "Ajouter un Semi-disque" -#: flatcamGUI/FlatCAMGUI.py:1870 +#: flatcamGUI/FlatCAMGUI.py:1986 msgid "Within Track & Region Tools will cycle in REVERSE the bend modes" msgstr "" "Dans les Outils de Piste et de Région, les modes de pliage sont inversés" -#: flatcamGUI/FlatCAMGUI.py:1871 +#: flatcamGUI/FlatCAMGUI.py:1987 msgid "Within Track & Region Tools will cycle FORWARD the bend modes" msgstr "" "Dans les Outils de Piste et de Région, les modes de pliage sont répétés en " "boucle" -#: flatcamGUI/FlatCAMGUI.py:1872 +#: flatcamGUI/FlatCAMGUI.py:1988 msgid "Alternate: Delete Apertures" msgstr "Autre: Supprimer les ouvertures" -#: flatcamGUI/FlatCAMGUI.py:1873 +#: flatcamGUI/FlatCAMGUI.py:1989 msgid "Eraser Tool" msgstr "Outil pour Effacer" -#: flatcamGUI/FlatCAMGUI.py:1874 flatcamGUI/PreferencesUI.py:2038 +#: flatcamGUI/FlatCAMGUI.py:1990 flatcamGUI/PreferencesUI.py:2039 msgid "Mark Area Tool" msgstr "Outil Zone de Marquage" -#: flatcamGUI/FlatCAMGUI.py:1874 +#: flatcamGUI/FlatCAMGUI.py:1990 msgid "Poligonize Tool" msgstr "Outil Polygoniser" -#: flatcamGUI/FlatCAMGUI.py:1874 +#: flatcamGUI/FlatCAMGUI.py:1990 msgid "Transformation Tool" msgstr "Outil de Transformation" -#: flatcamGUI/FlatCAMGUI.py:1890 +#: flatcamGUI/FlatCAMGUI.py:2007 msgid "Toggle Visibility" msgstr "Basculer la Visibilité" -#: flatcamGUI/FlatCAMGUI.py:1894 +#: flatcamGUI/FlatCAMGUI.py:2013 msgid "New" msgstr "Nouveau" -#: flatcamGUI/FlatCAMGUI.py:1895 flatcamTools/ToolCalibration.py:634 +#: flatcamGUI/FlatCAMGUI.py:2015 flatcamTools/ToolCalibration.py:634 msgid "Geometry" msgstr "Géométrie" -#: flatcamGUI/FlatCAMGUI.py:1897 flatcamTools/ToolCalibration.py:197 +#: flatcamGUI/FlatCAMGUI.py:2019 flatcamTools/ToolCalibration.py:197 #: flatcamTools/ToolCalibration.py:634 flatcamTools/ToolFilm.py:359 msgid "Excellon" msgstr "Excellon" -#: flatcamGUI/FlatCAMGUI.py:1902 +#: flatcamGUI/FlatCAMGUI.py:2026 msgid "Grids" msgstr "Des grilles" -#: flatcamGUI/FlatCAMGUI.py:1906 +#: flatcamGUI/FlatCAMGUI.py:2033 msgid "Clear Plot" msgstr "Effacer le Dessin" -#: flatcamGUI/FlatCAMGUI.py:1907 +#: flatcamGUI/FlatCAMGUI.py:2035 msgid "Replot" msgstr "Re-Tracé" -#: flatcamGUI/FlatCAMGUI.py:1910 +#: flatcamGUI/FlatCAMGUI.py:2039 msgid "Geo Editor" msgstr "Éditeur de Géo" -#: flatcamGUI/FlatCAMGUI.py:1911 +#: flatcamGUI/FlatCAMGUI.py:2041 msgid "Path" msgstr "Chemin" -#: flatcamGUI/FlatCAMGUI.py:1912 +#: flatcamGUI/FlatCAMGUI.py:2043 msgid "Rectangle" msgstr "Rectangle" -#: flatcamGUI/FlatCAMGUI.py:1914 +#: flatcamGUI/FlatCAMGUI.py:2046 msgid "Circle" msgstr "Cercle" -#: flatcamGUI/FlatCAMGUI.py:1915 +#: flatcamGUI/FlatCAMGUI.py:2048 msgid "Polygon" msgstr "Polygone" -#: flatcamGUI/FlatCAMGUI.py:1916 +#: flatcamGUI/FlatCAMGUI.py:2050 msgid "Arc" msgstr "Arc" -#: flatcamGUI/FlatCAMGUI.py:1925 +#: flatcamGUI/FlatCAMGUI.py:2064 msgid "Union" msgstr "Union" -#: flatcamGUI/FlatCAMGUI.py:1926 +#: flatcamGUI/FlatCAMGUI.py:2066 msgid "Intersection" msgstr "Intersection" -#: flatcamGUI/FlatCAMGUI.py:1927 +#: flatcamGUI/FlatCAMGUI.py:2068 msgid "Subtraction" msgstr "Soustraction" -#: flatcamGUI/FlatCAMGUI.py:1928 flatcamGUI/ObjectUI.py:1761 -#: flatcamGUI/PreferencesUI.py:3643 +#: flatcamGUI/FlatCAMGUI.py:2070 flatcamGUI/ObjectUI.py:1813 +#: flatcamGUI/PreferencesUI.py:3644 msgid "Cut" msgstr "Couper" -#: flatcamGUI/FlatCAMGUI.py:1935 +#: flatcamGUI/FlatCAMGUI.py:2081 msgid "Pad" msgstr "Pad" -#: flatcamGUI/FlatCAMGUI.py:1936 +#: flatcamGUI/FlatCAMGUI.py:2083 msgid "Pad Array" msgstr "Tableau Pad" -#: flatcamGUI/FlatCAMGUI.py:1939 +#: flatcamGUI/FlatCAMGUI.py:2087 msgid "Track" msgstr "Piste" -#: flatcamGUI/FlatCAMGUI.py:1940 +#: flatcamGUI/FlatCAMGUI.py:2089 msgid "Region" msgstr "Région" -#: flatcamGUI/FlatCAMGUI.py:1956 +#: flatcamGUI/FlatCAMGUI.py:2112 msgid "Exc Editor" msgstr "Éditeur Excellon" -#: flatcamGUI/FlatCAMGUI.py:1986 +#: flatcamGUI/FlatCAMGUI.py:2153 msgid "" "Relative neasurement.\n" "Reference is last click position" @@ -6888,7 +6887,7 @@ msgstr "" "Mesure relative\n" "La référence est la position du dernier clic" -#: flatcamGUI/FlatCAMGUI.py:1992 +#: flatcamGUI/FlatCAMGUI.py:2159 msgid "" "Absolute neasurement.\n" "Reference is (X=0, Y= 0) position" @@ -6896,27 +6895,27 @@ msgstr "" "Mesure absolue.\n" "La référence est (X = 0, Y = 0) position" -#: flatcamGUI/FlatCAMGUI.py:2099 +#: flatcamGUI/FlatCAMGUI.py:2266 msgid "Lock Toolbars" msgstr "Verrouiller les barres d'outils" -#: flatcamGUI/FlatCAMGUI.py:2192 +#: flatcamGUI/FlatCAMGUI.py:2384 msgid "&Cutout Tool" msgstr "Outil de Découpe" -#: flatcamGUI/FlatCAMGUI.py:2234 +#: flatcamGUI/FlatCAMGUI.py:2443 msgid "Select 'Esc'" msgstr "Sélectionnez 'Esc'" -#: flatcamGUI/FlatCAMGUI.py:2261 +#: flatcamGUI/FlatCAMGUI.py:2481 msgid "Copy Objects" msgstr "Copier des objets" -#: flatcamGUI/FlatCAMGUI.py:2268 +#: flatcamGUI/FlatCAMGUI.py:2489 msgid "Move Objects" msgstr "Déplacer des objets" -#: flatcamGUI/FlatCAMGUI.py:2813 +#: flatcamGUI/FlatCAMGUI.py:3048 msgid "" "Please first select a geometry item to be cutted\n" "then select the geometry item that will be cutted\n" @@ -6928,12 +6927,12 @@ msgstr "" "sur le premier article. Appuyez à la fin de la touche ~ X ~ ou\n" "le bouton de la barre d'outils." -#: flatcamGUI/FlatCAMGUI.py:2820 flatcamGUI/FlatCAMGUI.py:2964 -#: flatcamGUI/FlatCAMGUI.py:3023 flatcamGUI/FlatCAMGUI.py:3043 +#: flatcamGUI/FlatCAMGUI.py:3055 flatcamGUI/FlatCAMGUI.py:3199 +#: flatcamGUI/FlatCAMGUI.py:3258 flatcamGUI/FlatCAMGUI.py:3278 msgid "Warning" msgstr "Attention" -#: flatcamGUI/FlatCAMGUI.py:2959 +#: flatcamGUI/FlatCAMGUI.py:3194 msgid "" "Please select geometry items \n" "on which to perform Intersection Tool." @@ -6941,7 +6940,7 @@ msgstr "" "Veuillez sélectionner des éléments de géométrie\n" "sur lequel exécuter l'outil Intersection." -#: flatcamGUI/FlatCAMGUI.py:3018 +#: flatcamGUI/FlatCAMGUI.py:3253 msgid "" "Please select geometry items \n" "on which to perform Substraction Tool." @@ -6949,7 +6948,7 @@ msgstr "" "Veuillez sélectionner des éléments de géométrie\n" "sur lequel effectuer l'outil de Soustraction." -#: flatcamGUI/FlatCAMGUI.py:3038 +#: flatcamGUI/FlatCAMGUI.py:3273 msgid "" "Please select geometry items \n" "on which to perform union." @@ -6957,52 +6956,52 @@ msgstr "" "Veuillez sélectionner des éléments de géométrie\n" "sur lequel effectuer l'union." -#: flatcamGUI/FlatCAMGUI.py:3122 flatcamGUI/FlatCAMGUI.py:3340 +#: flatcamGUI/FlatCAMGUI.py:3357 flatcamGUI/FlatCAMGUI.py:3575 msgid "Cancelled. Nothing selected to delete." msgstr "Annulé. Rien de sélectionné à supprimer." -#: flatcamGUI/FlatCAMGUI.py:3207 flatcamGUI/FlatCAMGUI.py:3408 +#: flatcamGUI/FlatCAMGUI.py:3442 flatcamGUI/FlatCAMGUI.py:3643 msgid "Cancelled. Nothing selected to copy." msgstr "Annulé. Rien n'est sélectionné pour copier." -#: flatcamGUI/FlatCAMGUI.py:3254 flatcamGUI/FlatCAMGUI.py:3455 +#: flatcamGUI/FlatCAMGUI.py:3489 flatcamGUI/FlatCAMGUI.py:3690 msgid "Cancelled. Nothing selected to move." msgstr "Annulé. Rien de sélectionné pour bouger." -#: flatcamGUI/FlatCAMGUI.py:3481 +#: flatcamGUI/FlatCAMGUI.py:3716 msgid "New Tool ..." msgstr "Nouvel outil ..." -#: flatcamGUI/FlatCAMGUI.py:3482 flatcamTools/ToolNonCopperClear.py:588 -#: flatcamTools/ToolPaint.py:499 flatcamTools/ToolSolderPaste.py:554 +#: flatcamGUI/FlatCAMGUI.py:3717 flatcamTools/ToolNonCopperClear.py:589 +#: flatcamTools/ToolPaint.py:500 flatcamTools/ToolSolderPaste.py:554 msgid "Enter a Tool Diameter" msgstr "Entrer un diamètre d'outil" -#: flatcamGUI/FlatCAMGUI.py:3494 +#: flatcamGUI/FlatCAMGUI.py:3729 msgid "Adding Tool cancelled ..." msgstr "Ajout de l'outil annulé ..." -#: flatcamGUI/FlatCAMGUI.py:3537 +#: flatcamGUI/FlatCAMGUI.py:3772 msgid "Distance Tool exit..." msgstr "Distance Outil sortie ..." -#: flatcamGUI/FlatCAMGUI.py:3747 flatcamGUI/FlatCAMGUI.py:3754 +#: flatcamGUI/FlatCAMGUI.py:3982 flatcamGUI/FlatCAMGUI.py:3989 msgid "Idle." msgstr "Au repos." -#: flatcamGUI/FlatCAMGUI.py:3783 +#: flatcamGUI/FlatCAMGUI.py:4020 msgid "Application started ..." msgstr "L'application a commencé ..." -#: flatcamGUI/FlatCAMGUI.py:3784 +#: flatcamGUI/FlatCAMGUI.py:4021 msgid "Hello!" msgstr "Salut!" -#: flatcamGUI/FlatCAMGUI.py:3840 +#: flatcamGUI/FlatCAMGUI.py:4079 msgid "Open Project ..." msgstr "Projet ouvert ..." -#: flatcamGUI/FlatCAMGUI.py:3865 +#: flatcamGUI/FlatCAMGUI.py:4105 msgid "Exit" msgstr "Sortie" @@ -7010,7 +7009,7 @@ msgstr "Sortie" msgid "FlatCAM Object" msgstr "Objet FlatCAM" -#: flatcamGUI/ObjectUI.py:66 +#: flatcamGUI/ObjectUI.py:77 msgid "" "BASIC is suitable for a beginner. Many parameters\n" "are hidden from the user in this mode.\n" @@ -7028,15 +7027,15 @@ msgstr "" "Édition -> Préférences -> Général et vérifiez:\n" "Bouton radio 'APP. NIVEAU'." -#: flatcamGUI/ObjectUI.py:94 +#: flatcamGUI/ObjectUI.py:105 msgid "Change the size of the object." msgstr "Changer la taille de l'objet." -#: flatcamGUI/ObjectUI.py:100 +#: flatcamGUI/ObjectUI.py:111 msgid "Factor" msgstr "Facteur" -#: flatcamGUI/ObjectUI.py:102 +#: flatcamGUI/ObjectUI.py:113 msgid "" "Factor by which to multiply\n" "geometric features of this object.\n" @@ -7046,19 +7045,19 @@ msgstr "" "caractéristiques géométriques de cet objet.\n" "Les expressions sont autorisées. Par exemple: 1 / 25.4" -#: flatcamGUI/ObjectUI.py:112 +#: flatcamGUI/ObjectUI.py:123 msgid "Perform scaling operation." msgstr "Effectuer l'opération de mise à l'échelle." -#: flatcamGUI/ObjectUI.py:123 +#: flatcamGUI/ObjectUI.py:134 msgid "Change the position of this object." msgstr "Changer la position de cet objet." -#: flatcamGUI/ObjectUI.py:128 +#: flatcamGUI/ObjectUI.py:139 msgid "Vector" msgstr "Vecteur" -#: flatcamGUI/ObjectUI.py:130 +#: flatcamGUI/ObjectUI.py:141 msgid "" "Amount by which to move the object\n" "in the x and y axes in (x, y) format.\n" @@ -7068,60 +7067,60 @@ msgstr "" "dans les axes x et y au format (x, y).\n" "Les expressions sont autorisées. Par exemple: (1/3.2, 0.5*3)" -#: flatcamGUI/ObjectUI.py:139 +#: flatcamGUI/ObjectUI.py:150 msgid "Perform the offset operation." msgstr "Effectuer l'opération de décalage." -#: flatcamGUI/ObjectUI.py:156 +#: flatcamGUI/ObjectUI.py:167 msgid "Gerber Object" msgstr "Objet de Gerber" -#: 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 +#: flatcamGUI/ObjectUI.py:182 flatcamGUI/ObjectUI.py:767 +#: flatcamGUI/ObjectUI.py:1205 flatcamGUI/ObjectUI.py:1907 +#: flatcamGUI/PreferencesUI.py:1361 flatcamGUI/PreferencesUI.py:3119 +#: flatcamGUI/PreferencesUI.py:3629 msgid "Plot (show) this object." msgstr "Tracer (afficher) cet objet." -#: flatcamGUI/ObjectUI.py:173 flatcamGUI/ObjectUI.py:741 -#: flatcamGUI/PreferencesUI.py:1358 flatcamGUI/PreferencesUI.py:2084 -#: flatcamGUI/PreferencesUI.py:3116 +#: flatcamGUI/ObjectUI.py:184 flatcamGUI/ObjectUI.py:765 +#: flatcamGUI/PreferencesUI.py:1359 flatcamGUI/PreferencesUI.py:2085 +#: flatcamGUI/PreferencesUI.py:3117 msgid "Plot" msgstr "Dessin" -#: 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 +#: flatcamGUI/ObjectUI.py:189 flatcamGUI/ObjectUI.py:726 +#: flatcamGUI/ObjectUI.py:1159 flatcamGUI/ObjectUI.py:1797 +#: flatcamGUI/PreferencesUI.py:1338 flatcamGUI/PreferencesUI.py:2079 +#: flatcamGUI/PreferencesUI.py:3113 flatcamGUI/PreferencesUI.py:3618 msgid "Plot Options" msgstr "Options de Tracé" -#: flatcamGUI/ObjectUI.py:184 flatcamGUI/ObjectUI.py:703 -#: flatcamGUI/PreferencesUI.py:1344 flatcamGUI/PreferencesUI.py:2090 -#: flatcamGUI/PreferencesUI.py:6153 flatcamTools/ToolCopperThieving.py:190 +#: flatcamGUI/ObjectUI.py:195 flatcamGUI/ObjectUI.py:727 +#: flatcamGUI/PreferencesUI.py:1345 flatcamGUI/PreferencesUI.py:2091 +#: flatcamGUI/PreferencesUI.py:6154 flatcamTools/ToolCopperThieving.py:190 msgid "Solid" msgstr "Solide" -#: flatcamGUI/ObjectUI.py:186 flatcamGUI/PreferencesUI.py:1346 +#: flatcamGUI/ObjectUI.py:197 flatcamGUI/PreferencesUI.py:1347 msgid "Solid color polygons." msgstr "Polygones de couleur unie." -#: flatcamGUI/ObjectUI.py:192 +#: flatcamGUI/ObjectUI.py:203 msgid "Multi-Color" msgstr "Multicolore" -#: flatcamGUI/ObjectUI.py:194 flatcamGUI/PreferencesUI.py:1353 +#: flatcamGUI/ObjectUI.py:205 flatcamGUI/PreferencesUI.py:1354 msgid "Draw polygons in different colors." msgstr "Dessine des polygones de différentes couleurs." -#: flatcamGUI/ObjectUI.py:202 flatcamGUI/ObjectUI.py:714 -#: flatcamGUI/ObjectUI.py:1126 flatcamGUI/ObjectUI.py:1775 -#: flatcamGUI/ObjectUI.py:2067 flatcamGUI/ObjectUI.py:2122 +#: flatcamGUI/ObjectUI.py:213 flatcamGUI/ObjectUI.py:738 +#: flatcamGUI/ObjectUI.py:1165 flatcamGUI/ObjectUI.py:1827 +#: flatcamGUI/ObjectUI.py:2130 flatcamGUI/ObjectUI.py:2196 #: flatcamTools/ToolCalibration.py:235 flatcamTools/ToolFiducials.py:73 msgid "Name" msgstr "Nom" -#: flatcamGUI/ObjectUI.py:223 +#: flatcamGUI/ObjectUI.py:234 msgid "" "Toggle the display of the Gerber Apertures Table.\n" "When unchecked, it will delete all mark shapes\n" @@ -7132,11 +7131,11 @@ msgstr "" "supprimées\n" "qui sont dessinés sur une toile." -#: flatcamGUI/ObjectUI.py:233 +#: flatcamGUI/ObjectUI.py:244 msgid "Mark All" msgstr "Marquer tout" -#: flatcamGUI/ObjectUI.py:235 +#: flatcamGUI/ObjectUI.py:246 msgid "" "When checked it will display all the apertures.\n" "When unchecked, it will delete all mark shapes\n" @@ -7147,15 +7146,15 @@ msgstr "" "supprimées\n" "qui sont dessinés sur une toile." -#: flatcamGUI/ObjectUI.py:263 +#: flatcamGUI/ObjectUI.py:274 msgid "Mark the aperture instances on canvas." msgstr "Marquez les occurrences d’ouverture sur la toile." -#: flatcamGUI/ObjectUI.py:275 flatcamGUI/PreferencesUI.py:1438 +#: flatcamGUI/ObjectUI.py:286 flatcamGUI/PreferencesUI.py:1439 msgid "Isolation Routing" msgstr "Routage d'isolement" -#: flatcamGUI/ObjectUI.py:277 flatcamGUI/PreferencesUI.py:1440 +#: flatcamGUI/ObjectUI.py:288 flatcamGUI/PreferencesUI.py:1441 msgid "" "Create a Geometry object with\n" "toolpaths to cut outside polygons." @@ -7163,7 +7162,7 @@ msgstr "" "Créez un objet de géométrie avec\n" "parcours d’outils pour couper des polygones extérieurs." -#: flatcamGUI/ObjectUI.py:295 flatcamGUI/PreferencesUI.py:1628 +#: flatcamGUI/ObjectUI.py:306 flatcamGUI/PreferencesUI.py:1629 msgid "" "Choose what tool to use for Gerber isolation:\n" "'Circular' or 'V-shape'.\n" @@ -7175,30 +7174,30 @@ msgstr "" "Lorsque la \"forme en V\" est sélectionnée, l'outil\n" "Le diamètre dépendra de la profondeur de coupe choisie." -#: flatcamGUI/ObjectUI.py:301 +#: flatcamGUI/ObjectUI.py:312 msgid "V-Shape" msgstr "Forme en V" -#: flatcamGUI/ObjectUI.py:307 flatcamGUI/ObjectUI.py:1335 -#: flatcamGUI/PreferencesUI.py:1640 flatcamGUI/PreferencesUI.py:4010 +#: flatcamGUI/ObjectUI.py:318 flatcamGUI/ObjectUI.py:1374 +#: flatcamGUI/PreferencesUI.py:1641 flatcamGUI/PreferencesUI.py:4011 #: flatcamTools/ToolNonCopperClear.py:231 msgid "V-Tip Dia" msgstr "Dia V-Tip" -#: flatcamGUI/ObjectUI.py:309 flatcamGUI/ObjectUI.py:1338 -#: flatcamGUI/PreferencesUI.py:1642 flatcamGUI/PreferencesUI.py:4012 +#: flatcamGUI/ObjectUI.py:320 flatcamGUI/ObjectUI.py:1377 +#: flatcamGUI/PreferencesUI.py:1643 flatcamGUI/PreferencesUI.py:4013 #: flatcamTools/ToolNonCopperClear.py:233 msgid "The tip diameter for V-Shape Tool" msgstr "Le diamètre de la pointe pour l'outil en forme de V" -#: flatcamGUI/ObjectUI.py:320 flatcamGUI/ObjectUI.py:1350 -#: flatcamGUI/PreferencesUI.py:1653 flatcamGUI/PreferencesUI.py:4022 +#: flatcamGUI/ObjectUI.py:331 flatcamGUI/ObjectUI.py:1389 +#: flatcamGUI/PreferencesUI.py:1654 flatcamGUI/PreferencesUI.py:4023 #: flatcamTools/ToolNonCopperClear.py:242 msgid "V-Tip Angle" msgstr "Angle en V-tip" -#: flatcamGUI/ObjectUI.py:322 flatcamGUI/ObjectUI.py:1353 -#: flatcamGUI/PreferencesUI.py:1655 flatcamGUI/PreferencesUI.py:4024 +#: flatcamGUI/ObjectUI.py:333 flatcamGUI/ObjectUI.py:1392 +#: flatcamGUI/PreferencesUI.py:1656 flatcamGUI/PreferencesUI.py:4025 #: flatcamTools/ToolNonCopperClear.py:244 msgid "" "The tip angle for V-Shape Tool.\n" @@ -7207,9 +7206,9 @@ msgstr "" "L'angle de pointe pour l'outil en forme de V\n" "En degré." -#: flatcamGUI/ObjectUI.py:336 flatcamGUI/ObjectUI.py:1369 -#: flatcamGUI/PreferencesUI.py:1668 flatcamGUI/PreferencesUI.py:3181 -#: flatcamGUI/PreferencesUI.py:4293 flatcamTools/ToolCutOut.py:135 +#: flatcamGUI/ObjectUI.py:347 flatcamGUI/ObjectUI.py:1408 +#: flatcamGUI/PreferencesUI.py:1669 flatcamGUI/PreferencesUI.py:3182 +#: flatcamGUI/PreferencesUI.py:4294 flatcamTools/ToolCutOut.py:135 msgid "" "Cutting depth (negative)\n" "below the copper surface." @@ -7217,7 +7216,7 @@ msgstr "" "Profondeur de coupe (négatif)\n" "sous la surface de cuivre." -#: flatcamGUI/ObjectUI.py:350 +#: flatcamGUI/ObjectUI.py:361 msgid "" "Diameter of the cutting tool.\n" "If you want to have an isolation path\n" @@ -7231,11 +7230,11 @@ msgstr "" "fonction, utilisez une valeur négative pour\n" "ce paramètre." -#: flatcamGUI/ObjectUI.py:366 flatcamGUI/PreferencesUI.py:1462 +#: flatcamGUI/ObjectUI.py:377 flatcamGUI/PreferencesUI.py:1463 msgid "# Passes" msgstr "# Passes" -#: flatcamGUI/ObjectUI.py:368 flatcamGUI/PreferencesUI.py:1464 +#: flatcamGUI/ObjectUI.py:379 flatcamGUI/PreferencesUI.py:1465 msgid "" "Width of the isolation gap in\n" "number (integer) of tool widths." @@ -7243,24 +7242,24 @@ msgstr "" "Largeur du fossé d'isolement dans\n" "nombre (entier) de largeurs d'outil." -#: flatcamGUI/ObjectUI.py:378 flatcamGUI/PreferencesUI.py:1474 +#: flatcamGUI/ObjectUI.py:389 flatcamGUI/PreferencesUI.py:1475 msgid "Pass overlap" msgstr "Passe chevauchement" -#: flatcamGUI/ObjectUI.py:380 flatcamGUI/PreferencesUI.py:1476 +#: flatcamGUI/ObjectUI.py:391 flatcamGUI/PreferencesUI.py:1477 msgid "How much (fraction) of the tool width to overlap each tool pass." msgstr "" "La quantité (fraction) de la largeur de l'outil qui chevauche chaque passe " "d'outil." -#: flatcamGUI/ObjectUI.py:392 flatcamGUI/PreferencesUI.py:1501 -#: flatcamGUI/PreferencesUI.py:3594 flatcamGUI/PreferencesUI.py:4067 +#: flatcamGUI/ObjectUI.py:403 flatcamGUI/PreferencesUI.py:1502 +#: flatcamGUI/PreferencesUI.py:3595 flatcamGUI/PreferencesUI.py:4068 #: flatcamTools/ToolNonCopperClear.py:162 msgid "Milling Type" msgstr "Type de fraisage" -#: flatcamGUI/ObjectUI.py:394 flatcamGUI/PreferencesUI.py:1503 -#: flatcamGUI/PreferencesUI.py:3596 +#: flatcamGUI/ObjectUI.py:405 flatcamGUI/PreferencesUI.py:1504 +#: flatcamGUI/PreferencesUI.py:3597 msgid "" "Milling type:\n" "- climb / best for precision milling and to reduce tool usage\n" @@ -7271,29 +7270,29 @@ msgstr "" "d'outils\n" "- conventionnel / utile quand il n'y a pas de compensation de jeu" -#: flatcamGUI/ObjectUI.py:398 flatcamGUI/PreferencesUI.py:1508 -#: flatcamGUI/PreferencesUI.py:3600 flatcamGUI/PreferencesUI.py:4074 +#: flatcamGUI/ObjectUI.py:409 flatcamGUI/PreferencesUI.py:1509 +#: flatcamGUI/PreferencesUI.py:3601 flatcamGUI/PreferencesUI.py:4075 #: flatcamTools/ToolNonCopperClear.py:169 msgid "Climb" msgstr "Monté" -#: flatcamGUI/ObjectUI.py:399 +#: flatcamGUI/ObjectUI.py:410 msgid "Conventional" msgstr "Conventionnel" -#: flatcamGUI/ObjectUI.py:404 +#: flatcamGUI/ObjectUI.py:415 msgid "Combine" msgstr "Combiner" -#: flatcamGUI/ObjectUI.py:406 flatcamGUI/PreferencesUI.py:1515 +#: flatcamGUI/ObjectUI.py:417 flatcamGUI/PreferencesUI.py:1516 msgid "Combine all passes into one object" msgstr "Combine tous les passages dans un objet" -#: flatcamGUI/ObjectUI.py:410 flatcamGUI/PreferencesUI.py:1607 +#: flatcamGUI/ObjectUI.py:421 flatcamGUI/PreferencesUI.py:1608 msgid "\"Follow\"" msgstr "\"Suivre\"" -#: flatcamGUI/ObjectUI.py:411 flatcamGUI/PreferencesUI.py:1609 +#: flatcamGUI/ObjectUI.py:422 flatcamGUI/PreferencesUI.py:1610 msgid "" "Generate a 'Follow' geometry.\n" "This means that it will cut through\n" @@ -7303,11 +7302,11 @@ msgstr "" "Cela signifie qu'il va couper à travers\n" "le milieu de la trace." -#: flatcamGUI/ObjectUI.py:417 +#: flatcamGUI/ObjectUI.py:428 msgid "Except" msgstr "Sauf" -#: flatcamGUI/ObjectUI.py:420 +#: flatcamGUI/ObjectUI.py:431 msgid "" "When the isolation geometry is generated,\n" "by checking this, the area of the object bellow\n" @@ -7317,12 +7316,12 @@ msgstr "" "en cochant cela, la zone de l'objet ci-dessous\n" "sera soustrait de la géométrie d'isolation." -#: flatcamGUI/ObjectUI.py:442 flatcamTools/ToolNonCopperClear.py:82 +#: flatcamGUI/ObjectUI.py:453 flatcamTools/ToolNonCopperClear.py:82 #: flatcamTools/ToolPaint.py:85 msgid "Obj Type" msgstr "Type d'objet" -#: flatcamGUI/ObjectUI.py:444 +#: flatcamGUI/ObjectUI.py:455 msgid "" "Specify the type of object to be excepted from isolation.\n" "It can be of type: Gerber or Geometry.\n" @@ -7334,22 +7333,22 @@ msgstr "" "Ce qui est sélectionné ici dictera le genre\n" "des objets qui vont remplir la liste déroulante 'Object'." -#: flatcamGUI/ObjectUI.py:457 flatcamGUI/PreferencesUI.py:6453 +#: flatcamGUI/ObjectUI.py:468 flatcamGUI/PreferencesUI.py:6454 #: flatcamTools/ToolCalibration.py:186 flatcamTools/ToolNonCopperClear.py:100 #: flatcamTools/ToolPaint.py:103 flatcamTools/ToolPanelize.py:81 #: flatcamTools/ToolPanelize.py:94 msgid "Object" msgstr "Objet" -#: flatcamGUI/ObjectUI.py:458 +#: flatcamGUI/ObjectUI.py:469 msgid "Object whose area will be removed from isolation geometry." msgstr "Objet dont l'aire sera retirée de la géométrie d'isolation." -#: flatcamGUI/ObjectUI.py:465 flatcamGUI/PreferencesUI.py:1488 +#: flatcamGUI/ObjectUI.py:476 flatcamGUI/PreferencesUI.py:1489 msgid "Scope" msgstr "Portée" -#: flatcamGUI/ObjectUI.py:467 flatcamGUI/PreferencesUI.py:1490 +#: flatcamGUI/ObjectUI.py:478 flatcamGUI/PreferencesUI.py:1491 msgid "" "Isolation scope. Choose what to isolate:\n" "- 'All' -> Isolate all the polygons in the object\n" @@ -7359,16 +7358,16 @@ msgstr "" "- 'Tout' -> Isoler tous les polygones de l'objet\n" "- 'Sélection' -> Isoler une sélection de polygones." -#: flatcamGUI/ObjectUI.py:472 flatcamGUI/PreferencesUI.py:1495 -#: flatcamGUI/PreferencesUI.py:4603 flatcamTools/ToolPaint.py:300 +#: flatcamGUI/ObjectUI.py:483 flatcamGUI/PreferencesUI.py:1496 +#: flatcamGUI/PreferencesUI.py:4604 flatcamTools/ToolPaint.py:300 msgid "Selection" msgstr "Sélection" -#: flatcamGUI/ObjectUI.py:480 flatcamGUI/PreferencesUI.py:1681 +#: flatcamGUI/ObjectUI.py:491 flatcamGUI/PreferencesUI.py:1682 msgid "Isolation Type" msgstr "Type d'isolement" -#: flatcamGUI/ObjectUI.py:482 flatcamGUI/PreferencesUI.py:1683 +#: flatcamGUI/ObjectUI.py:493 flatcamGUI/PreferencesUI.py:1684 msgid "" "Choose how the isolation will be executed:\n" "- 'Full' -> complete isolation of polygons\n" @@ -7389,26 +7388,24 @@ msgstr "" "à l'intérieur du polygone (par exemple, le polygone est une forme de `` " "beignet '')." -#: flatcamGUI/ObjectUI.py:491 flatcamGUI/PreferencesUI.py:1692 -#: flatcamGUI/PreferencesUI.py:1708 +#: flatcamGUI/ObjectUI.py:502 flatcamGUI/PreferencesUI.py:1693 +#: flatcamGUI/PreferencesUI.py:1709 msgid "Full" msgstr "Plein" -#: flatcamGUI/ObjectUI.py:492 -#| msgid "Exit" +#: flatcamGUI/ObjectUI.py:503 msgid "Ext" msgstr "Ext" -#: flatcamGUI/ObjectUI.py:493 -#| msgid "Int Geo" +#: flatcamGUI/ObjectUI.py:504 msgid "Int" msgstr "Int" -#: flatcamGUI/ObjectUI.py:498 +#: flatcamGUI/ObjectUI.py:509 msgid "Generate Isolation Geometry" msgstr "Générer une géométrie d'isolation" -#: flatcamGUI/ObjectUI.py:506 +#: flatcamGUI/ObjectUI.py:517 msgid "" "Create a Geometry object with toolpaths to cut \n" "isolation outside, inside or on both sides of the\n" @@ -7430,11 +7427,11 @@ msgstr "" "à l'intérieur de la fonction Gerber, utilisez un outil négatif\n" "diamètre ci-dessus." -#: flatcamGUI/ObjectUI.py:518 +#: flatcamGUI/ObjectUI.py:529 msgid "Buffer Solid Geometry" msgstr "Tampon Géométrie Solide" -#: flatcamGUI/ObjectUI.py:520 +#: flatcamGUI/ObjectUI.py:531 msgid "" "This button is shown only when the Gerber file\n" "is loaded without buffering.\n" @@ -7446,11 +7443,11 @@ msgstr "" "En cliquant sur cela créera la géométrie en mémoire tampon\n" "requis pour l'isolement." -#: flatcamGUI/ObjectUI.py:548 +#: flatcamGUI/ObjectUI.py:559 msgid "Clear N-copper" msgstr "N-Cuivre Clair" -#: flatcamGUI/ObjectUI.py:550 flatcamGUI/PreferencesUI.py:3974 +#: flatcamGUI/ObjectUI.py:561 flatcamGUI/PreferencesUI.py:3975 msgid "" "Create a Geometry object with\n" "toolpaths to cut all non-copper regions." @@ -7458,7 +7455,7 @@ msgstr "" "Créez un objet de géométrie avec\n" "des parcours pour couper toutes les régions non-cuivre." -#: flatcamGUI/ObjectUI.py:557 flatcamGUI/ObjectUI.py:1714 +#: flatcamGUI/ObjectUI.py:568 flatcamGUI/ObjectUI.py:1753 #: flatcamTools/ToolNonCopperClear.py:479 msgid "" "Create the Geometry Object\n" @@ -7467,11 +7464,11 @@ msgstr "" "Créer l'objet de géométrie\n" "pour un routage non-cuivre." -#: flatcamGUI/ObjectUI.py:570 +#: flatcamGUI/ObjectUI.py:581 msgid "Board cutout" msgstr "Découpe de la planche" -#: flatcamGUI/ObjectUI.py:572 flatcamGUI/PreferencesUI.py:4266 +#: flatcamGUI/ObjectUI.py:583 flatcamGUI/PreferencesUI.py:4267 msgid "" "Create toolpaths to cut around\n" "the PCB and separate it from\n" @@ -7481,7 +7478,7 @@ msgstr "" "le PCB et séparez-le de\n" "la planche d'origine." -#: flatcamGUI/ObjectUI.py:579 +#: flatcamGUI/ObjectUI.py:590 msgid "" "Generate the geometry for\n" "the board cutout." @@ -7489,11 +7486,11 @@ msgstr "" "Générer la géométrie pour\n" "la découpe de la planche." -#: flatcamGUI/ObjectUI.py:597 flatcamGUI/PreferencesUI.py:1520 +#: flatcamGUI/ObjectUI.py:608 flatcamGUI/PreferencesUI.py:1521 msgid "Non-copper regions" msgstr "Régions non-cuivre" -#: flatcamGUI/ObjectUI.py:599 flatcamGUI/PreferencesUI.py:1522 +#: flatcamGUI/ObjectUI.py:610 flatcamGUI/PreferencesUI.py:1523 msgid "" "Create polygons covering the\n" "areas without copper on the PCB.\n" @@ -7507,12 +7504,12 @@ msgstr "" "objet. Peut être utilisé pour tout enlever\n" "cuivre provenant d'une région spécifiée." -#: flatcamGUI/ObjectUI.py:609 flatcamGUI/ObjectUI.py:650 -#: flatcamGUI/PreferencesUI.py:1534 flatcamGUI/PreferencesUI.py:1562 +#: flatcamGUI/ObjectUI.py:620 flatcamGUI/ObjectUI.py:661 +#: flatcamGUI/PreferencesUI.py:1535 flatcamGUI/PreferencesUI.py:1563 msgid "Boundary Margin" msgstr "Marge limite" -#: flatcamGUI/ObjectUI.py:611 flatcamGUI/PreferencesUI.py:1536 +#: flatcamGUI/ObjectUI.py:622 flatcamGUI/PreferencesUI.py:1537 msgid "" "Specify the edge of the PCB\n" "by drawing a box around all\n" @@ -7524,27 +7521,27 @@ msgstr "" "objets avec ce minimum\n" "distance." -#: flatcamGUI/ObjectUI.py:626 flatcamGUI/ObjectUI.py:664 -#: flatcamGUI/PreferencesUI.py:1549 flatcamGUI/PreferencesUI.py:1575 +#: flatcamGUI/ObjectUI.py:637 flatcamGUI/ObjectUI.py:675 +#: flatcamGUI/PreferencesUI.py:1550 flatcamGUI/PreferencesUI.py:1576 msgid "Rounded Geo" msgstr "Géométrie Arrondie" -#: flatcamGUI/ObjectUI.py:628 flatcamGUI/PreferencesUI.py:1551 +#: flatcamGUI/ObjectUI.py:639 flatcamGUI/PreferencesUI.py:1552 msgid "Resulting geometry will have rounded corners." msgstr "La géométrie résultante aura des coins arrondis." -#: flatcamGUI/ObjectUI.py:632 flatcamGUI/ObjectUI.py:673 +#: flatcamGUI/ObjectUI.py:643 flatcamGUI/ObjectUI.py:684 #: flatcamTools/ToolSolderPaste.py:133 msgid "Generate Geo" msgstr "Générer de la Géo" -#: flatcamGUI/ObjectUI.py:642 flatcamGUI/PreferencesUI.py:1556 -#: flatcamGUI/PreferencesUI.py:5983 flatcamTools/ToolPanelize.py:95 +#: flatcamGUI/ObjectUI.py:653 flatcamGUI/PreferencesUI.py:1557 +#: flatcamGUI/PreferencesUI.py:5984 flatcamTools/ToolPanelize.py:95 #: flatcamTools/ToolQRCode.py:192 msgid "Bounding Box" msgstr "Cadre de sélection" -#: flatcamGUI/ObjectUI.py:644 +#: flatcamGUI/ObjectUI.py:655 msgid "" "Create a geometry surrounding the Gerber object.\n" "Square shape." @@ -7552,7 +7549,7 @@ msgstr "" "Créez une géométrie entourant l'objet Gerber.\n" "Forme carree." -#: flatcamGUI/ObjectUI.py:652 flatcamGUI/PreferencesUI.py:1564 +#: flatcamGUI/ObjectUI.py:663 flatcamGUI/PreferencesUI.py:1565 msgid "" "Distance of the edges of the box\n" "to the nearest polygon." @@ -7560,7 +7557,7 @@ msgstr "" "Distance des bords de la boîte\n" "au polygone le plus proche." -#: flatcamGUI/ObjectUI.py:666 flatcamGUI/PreferencesUI.py:1577 +#: flatcamGUI/ObjectUI.py:677 flatcamGUI/PreferencesUI.py:1578 msgid "" "If the bounding box is \n" "to have rounded corners\n" @@ -7572,33 +7569,33 @@ msgstr "" "leur rayon est égal à\n" "la marge." -#: flatcamGUI/ObjectUI.py:675 +#: flatcamGUI/ObjectUI.py:686 msgid "Generate the Geometry object." msgstr "Générez l'objet Geometry." -#: flatcamGUI/ObjectUI.py:691 +#: flatcamGUI/ObjectUI.py:715 msgid "Excellon Object" msgstr "Excellent objet" -#: flatcamGUI/ObjectUI.py:705 +#: flatcamGUI/ObjectUI.py:729 msgid "Solid circles." msgstr "Cercles pleins." -#: flatcamGUI/ObjectUI.py:753 flatcamGUI/ObjectUI.py:1876 +#: flatcamGUI/ObjectUI.py:777 flatcamGUI/ObjectUI.py:1928 #: flatcamTools/ToolProperties.py:161 msgid "Drills" msgstr "Forage" -#: flatcamGUI/ObjectUI.py:753 flatcamGUI/ObjectUI.py:1876 -#: flatcamGUI/PreferencesUI.py:2952 flatcamTools/ToolProperties.py:162 +#: flatcamGUI/ObjectUI.py:777 flatcamGUI/ObjectUI.py:1928 +#: flatcamGUI/PreferencesUI.py:2953 flatcamTools/ToolProperties.py:162 msgid "Slots" msgstr "Fentes" -#: flatcamGUI/ObjectUI.py:754 flatcamGUI/PreferencesUI.py:2555 +#: flatcamGUI/ObjectUI.py:778 flatcamGUI/PreferencesUI.py:2556 msgid "Offset Z" msgstr "Décalage Z" -#: flatcamGUI/ObjectUI.py:758 +#: flatcamGUI/ObjectUI.py:782 msgid "" "This is the Tool Number.\n" "When ToolChange is checked, on toolchange event this value\n" @@ -7613,7 +7610,7 @@ msgstr "" "\n" "Ici, les outils sont sélectionnés pour la génération de code G." -#: flatcamGUI/ObjectUI.py:763 flatcamGUI/ObjectUI.py:1191 +#: flatcamGUI/ObjectUI.py:787 flatcamGUI/ObjectUI.py:1230 #: flatcamTools/ToolPaint.py:137 msgid "" "Tool Diameter. It's value (in current FlatCAM units) \n" @@ -7622,7 +7619,7 @@ msgstr "" "Diamètre de l'outil. C'est sa valeur (en unités FlatCAM actuelles)\n" "est la largeur de coupe dans le matériau." -#: flatcamGUI/ObjectUI.py:766 +#: flatcamGUI/ObjectUI.py:790 msgid "" "The number of Drill holes. Holes that are drilled with\n" "a drill bit." @@ -7630,7 +7627,7 @@ msgstr "" "Le nombre de trous de forage. Trous percés de\n" "un foret." -#: flatcamGUI/ObjectUI.py:769 +#: flatcamGUI/ObjectUI.py:793 msgid "" "The number of Slot holes. Holes that are created by\n" "milling them with an endmill bit." @@ -7638,7 +7635,7 @@ msgstr "" "Le nombre de trous de fente. Trous créés par\n" "les fraiser avec un bit de fraise." -#: flatcamGUI/ObjectUI.py:772 flatcamGUI/PreferencesUI.py:2557 +#: flatcamGUI/ObjectUI.py:796 flatcamGUI/PreferencesUI.py:2558 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" @@ -7649,7 +7646,7 @@ msgstr "" "la pointe.\n" "La valeur ici peut compenser le paramètre Cut Z." -#: flatcamGUI/ObjectUI.py:776 +#: flatcamGUI/ObjectUI.py:800 msgid "" "Toggle display of the drills for the current tool.\n" "This does not select the tools for G-code generation." @@ -7657,12 +7654,12 @@ msgstr "" "Basculer l'affichage des exercices pour l'outil actuel.\n" "Cela ne sélectionne pas les outils pour la génération de G-code." -#: flatcamGUI/ObjectUI.py:783 flatcamGUI/PreferencesUI.py:2323 -#: flatcamGUI/PreferencesUI.py:3167 +#: flatcamGUI/ObjectUI.py:807 flatcamGUI/PreferencesUI.py:2324 +#: flatcamGUI/PreferencesUI.py:3168 msgid "Create CNC Job" msgstr "Créer un travail CNC" -#: flatcamGUI/ObjectUI.py:785 +#: flatcamGUI/ObjectUI.py:809 msgid "" "Create a CNC Job object\n" "for this drill object." @@ -7670,7 +7667,7 @@ msgstr "" "Créer un objet de travail CNC\n" "pour cet objet de forage." -#: flatcamGUI/ObjectUI.py:798 flatcamGUI/PreferencesUI.py:2336 +#: flatcamGUI/ObjectUI.py:822 flatcamGUI/PreferencesUI.py:2337 msgid "" "Drill depth (negative)\n" "below the copper surface." @@ -7678,7 +7675,7 @@ msgstr "" "Profondeur de forage (négatif)\n" "sous la surface de cuivre." -#: flatcamGUI/ObjectUI.py:817 flatcamGUI/PreferencesUI.py:2354 +#: flatcamGUI/ObjectUI.py:841 flatcamGUI/PreferencesUI.py:2355 msgid "" "Tool height when travelling\n" "across the XY plane." @@ -7686,12 +7683,12 @@ msgstr "" "Hauteur de l'outil en voyage\n" "à travers le plan XY." -#: flatcamGUI/ObjectUI.py:834 flatcamGUI/ObjectUI.py:1439 -#: flatcamGUI/PreferencesUI.py:2369 flatcamGUI/PreferencesUI.py:3252 +#: flatcamGUI/ObjectUI.py:858 flatcamGUI/ObjectUI.py:1478 +#: flatcamGUI/PreferencesUI.py:2370 flatcamGUI/PreferencesUI.py:3253 msgid "Tool change" msgstr "Changement d'outil" -#: flatcamGUI/ObjectUI.py:836 flatcamGUI/PreferencesUI.py:2371 +#: flatcamGUI/ObjectUI.py:860 flatcamGUI/PreferencesUI.py:2372 msgid "" "Include tool-change sequence\n" "in G-Code (Pause for tool change)." @@ -7699,12 +7696,12 @@ msgstr "" "Inclure la séquence de changement d'outil\n" "dans G-Code (Pause pour changement d’outil)." -#: flatcamGUI/ObjectUI.py:842 flatcamGUI/ObjectUI.py:1432 +#: flatcamGUI/ObjectUI.py:866 flatcamGUI/ObjectUI.py:1471 msgid "Tool change Z" msgstr "Changement d'outil Z" -#: flatcamGUI/ObjectUI.py:844 flatcamGUI/ObjectUI.py:1435 -#: flatcamGUI/PreferencesUI.py:2380 flatcamGUI/PreferencesUI.py:3267 +#: flatcamGUI/ObjectUI.py:868 flatcamGUI/ObjectUI.py:1474 +#: flatcamGUI/PreferencesUI.py:2381 flatcamGUI/PreferencesUI.py:3268 msgid "" "Z-axis position (height) for\n" "tool change." @@ -7712,12 +7709,12 @@ msgstr "" "Position de l'axe Z (hauteur) pour\n" "changement d'outil." -#: flatcamGUI/ObjectUI.py:862 flatcamGUI/PreferencesUI.py:2575 -#: flatcamGUI/PreferencesUI.py:3420 +#: flatcamGUI/ObjectUI.py:886 flatcamGUI/PreferencesUI.py:2576 +#: flatcamGUI/PreferencesUI.py:3421 msgid "Start move Z" msgstr "Commencer le mouv. Z" -#: flatcamGUI/ObjectUI.py:864 flatcamGUI/PreferencesUI.py:2577 +#: flatcamGUI/ObjectUI.py:888 flatcamGUI/PreferencesUI.py:2578 msgid "" "Height of the tool just after start.\n" "Delete the value if you don't need this feature." @@ -7725,13 +7722,13 @@ msgstr "" "Hauteur de l'outil juste après le démarrage.\n" "Supprimez la valeur si vous n'avez pas besoin de cette fonctionnalité." -#: flatcamGUI/ObjectUI.py:872 flatcamGUI/ObjectUI.py:1473 -#: flatcamGUI/PreferencesUI.py:2395 flatcamGUI/PreferencesUI.py:3286 +#: flatcamGUI/ObjectUI.py:896 flatcamGUI/ObjectUI.py:1512 +#: flatcamGUI/PreferencesUI.py:2396 flatcamGUI/PreferencesUI.py:3287 msgid "End move Z" msgstr "Fin du mouve. Z" -#: flatcamGUI/ObjectUI.py:874 flatcamGUI/ObjectUI.py:1475 -#: flatcamGUI/PreferencesUI.py:2397 flatcamGUI/PreferencesUI.py:3288 +#: flatcamGUI/ObjectUI.py:898 flatcamGUI/ObjectUI.py:1514 +#: flatcamGUI/PreferencesUI.py:2398 flatcamGUI/PreferencesUI.py:3289 msgid "" "Height of the tool after\n" "the last move at the end of the job." @@ -7739,13 +7736,13 @@ msgstr "" "Hauteur de l'outil après\n" "le dernier mouvement à la fin du travail." -#: flatcamGUI/ObjectUI.py:891 flatcamGUI/ObjectUI.py:1506 -#: flatcamGUI/PreferencesUI.py:2412 flatcamGUI/PreferencesUI.py:3321 -#: flatcamGUI/PreferencesUI.py:5497 flatcamTools/ToolSolderPaste.py:264 +#: flatcamGUI/ObjectUI.py:915 flatcamGUI/ObjectUI.py:1545 +#: flatcamGUI/PreferencesUI.py:2413 flatcamGUI/PreferencesUI.py:3322 +#: flatcamGUI/PreferencesUI.py:5498 flatcamTools/ToolSolderPaste.py:264 msgid "Feedrate Z" msgstr "Avance Z" -#: flatcamGUI/ObjectUI.py:893 flatcamGUI/PreferencesUI.py:2414 +#: flatcamGUI/ObjectUI.py:917 flatcamGUI/PreferencesUI.py:2415 msgid "" "Tool speed while drilling\n" "(in units per minute).\n" @@ -7757,12 +7754,12 @@ msgstr "" "Ce qu'on appelle \"avance\".\n" "Ceci est pour le mouvement linéaire G01." -#: flatcamGUI/ObjectUI.py:907 flatcamGUI/ObjectUI.py:1521 -#: flatcamGUI/PreferencesUI.py:2585 flatcamGUI/PreferencesUI.py:3430 +#: flatcamGUI/ObjectUI.py:931 flatcamGUI/ObjectUI.py:1560 +#: flatcamGUI/PreferencesUI.py:2586 flatcamGUI/PreferencesUI.py:3431 msgid "Feedrate Rapids" msgstr "Avance rapide" -#: flatcamGUI/ObjectUI.py:909 flatcamGUI/PreferencesUI.py:2587 +#: flatcamGUI/ObjectUI.py:933 flatcamGUI/PreferencesUI.py:2588 msgid "" "Tool speed while drilling\n" "(in units per minute).\n" @@ -7776,12 +7773,12 @@ msgstr "" "C'est utile seulement pour Marlin,\n" "ignorer pour les autres cas." -#: flatcamGUI/ObjectUI.py:927 flatcamGUI/ObjectUI.py:1566 -#: flatcamGUI/PreferencesUI.py:3337 +#: flatcamGUI/ObjectUI.py:951 flatcamGUI/ObjectUI.py:1605 +#: flatcamGUI/PreferencesUI.py:3338 msgid "Spindle speed" msgstr "Vitesse de broche" -#: flatcamGUI/ObjectUI.py:929 flatcamGUI/PreferencesUI.py:2429 +#: flatcamGUI/ObjectUI.py:953 flatcamGUI/PreferencesUI.py:2430 msgid "" "Speed of the spindle\n" "in RPM (optional)" @@ -7789,8 +7786,8 @@ msgstr "" "Vitesse de la broche\n" "en tours / minute (optionnel)" -#: flatcamGUI/ObjectUI.py:941 flatcamGUI/ObjectUI.py:1585 -#: flatcamGUI/PreferencesUI.py:2441 flatcamGUI/PreferencesUI.py:3355 +#: flatcamGUI/ObjectUI.py:965 flatcamGUI/ObjectUI.py:1624 +#: flatcamGUI/PreferencesUI.py:2442 flatcamGUI/PreferencesUI.py:3356 msgid "" "Pause to allow the spindle to reach its\n" "speed before cutting." @@ -7798,12 +7795,12 @@ msgstr "" "Pause pour permettre à la broche d’atteindre son\n" "vitesse avant de couper." -#: flatcamGUI/ObjectUI.py:950 flatcamGUI/ObjectUI.py:1595 -#: flatcamGUI/PreferencesUI.py:2446 flatcamGUI/PreferencesUI.py:3360 +#: flatcamGUI/ObjectUI.py:974 flatcamGUI/ObjectUI.py:1634 +#: flatcamGUI/PreferencesUI.py:2447 flatcamGUI/PreferencesUI.py:3361 msgid "Number of time units for spindle to dwell." msgstr "Nombre d'unités de temps pendant lesquelles la broche s'arrête." -#: flatcamGUI/ObjectUI.py:960 flatcamGUI/PreferencesUI.py:2463 +#: flatcamGUI/ObjectUI.py:984 flatcamGUI/PreferencesUI.py:2464 msgid "" "The preprocessor JSON file that dictates\n" "Gcode output." @@ -7811,13 +7808,13 @@ msgstr "" "Le fichier JSON post-processeur qui dicte\n" "Sortie Gcode." -#: flatcamGUI/ObjectUI.py:969 flatcamGUI/ObjectUI.py:1615 -#: flatcamGUI/PreferencesUI.py:2601 flatcamGUI/PreferencesUI.py:3471 +#: flatcamGUI/ObjectUI.py:993 flatcamGUI/ObjectUI.py:1654 +#: flatcamGUI/PreferencesUI.py:2602 flatcamGUI/PreferencesUI.py:3472 msgid "Probe Z depth" msgstr "Prof.r de la sonde Z" -#: flatcamGUI/ObjectUI.py:971 flatcamGUI/ObjectUI.py:1617 -#: flatcamGUI/PreferencesUI.py:2603 flatcamGUI/PreferencesUI.py:3473 +#: flatcamGUI/ObjectUI.py:995 flatcamGUI/ObjectUI.py:1656 +#: flatcamGUI/PreferencesUI.py:2604 flatcamGUI/PreferencesUI.py:3474 msgid "" "The maximum depth that the probe is allowed\n" "to probe. Negative value, in current units." @@ -7825,21 +7822,21 @@ msgstr "" "La profondeur maximale autorisée pour la sonde\n" "sonder. Valeur négative, en unités actuelles." -#: flatcamGUI/ObjectUI.py:985 flatcamGUI/ObjectUI.py:1632 -#: flatcamGUI/PreferencesUI.py:2614 flatcamGUI/PreferencesUI.py:3486 +#: flatcamGUI/ObjectUI.py:1009 flatcamGUI/ObjectUI.py:1671 +#: flatcamGUI/PreferencesUI.py:2615 flatcamGUI/PreferencesUI.py:3487 msgid "Feedrate Probe" msgstr "Sonde d'avance" -#: flatcamGUI/ObjectUI.py:987 flatcamGUI/ObjectUI.py:1634 -#: flatcamGUI/PreferencesUI.py:2616 flatcamGUI/PreferencesUI.py:3488 +#: flatcamGUI/ObjectUI.py:1011 flatcamGUI/ObjectUI.py:1673 +#: flatcamGUI/PreferencesUI.py:2617 flatcamGUI/PreferencesUI.py:3489 msgid "The feedrate used while the probe is probing." msgstr "L'avance utilisée pendant le sondage." -#: flatcamGUI/ObjectUI.py:1013 flatcamGUI/PreferencesUI.py:2472 +#: flatcamGUI/ObjectUI.py:1037 flatcamGUI/PreferencesUI.py:2473 msgid "Gcode" msgstr "Gcode" -#: flatcamGUI/ObjectUI.py:1015 +#: flatcamGUI/ObjectUI.py:1039 msgid "" "Choose what to use for GCode generation:\n" "'Drills', 'Slots' or 'Both'.\n" @@ -7851,19 +7848,19 @@ msgstr "" "Lorsque vous choisissez \"Fentes\" ou \"Les deux\", les slots seront\n" "converti en une série d'exercices." -#: flatcamGUI/ObjectUI.py:1029 +#: flatcamGUI/ObjectUI.py:1053 msgid "Create Drills GCode" msgstr "Créer un forage GCode" -#: flatcamGUI/ObjectUI.py:1031 +#: flatcamGUI/ObjectUI.py:1055 msgid "Generate the CNC Job." msgstr "Générez le travail CNC." -#: flatcamGUI/ObjectUI.py:1042 flatcamGUI/PreferencesUI.py:2490 +#: flatcamGUI/ObjectUI.py:1066 flatcamGUI/PreferencesUI.py:2491 msgid "Mill Holes" msgstr "Fraiser les Trous" -#: flatcamGUI/ObjectUI.py:1044 +#: flatcamGUI/ObjectUI.py:1068 msgid "" "Create Geometry for milling holes.\n" "Select from the Tools Table above the hole dias to be\n" @@ -7873,20 +7870,20 @@ msgstr "" "Sélectionnez dans le tableau des outils au-dessus du diamètre du trou à\n" "fraisé. Utilisez la colonne # pour effectuer la sélection." -#: flatcamGUI/ObjectUI.py:1050 flatcamGUI/PreferencesUI.py:2496 +#: flatcamGUI/ObjectUI.py:1074 flatcamGUI/PreferencesUI.py:2497 msgid "Drill Tool dia" msgstr "Dia. de l'outil de forage" -#: flatcamGUI/ObjectUI.py:1052 flatcamGUI/PreferencesUI.py:1451 -#: flatcamGUI/PreferencesUI.py:2498 +#: flatcamGUI/ObjectUI.py:1076 flatcamGUI/PreferencesUI.py:1452 +#: flatcamGUI/PreferencesUI.py:2499 msgid "Diameter of the cutting tool." msgstr "Diamètre de l'outil de coupe." -#: flatcamGUI/ObjectUI.py:1059 +#: flatcamGUI/ObjectUI.py:1083 msgid "Mill Drills Geo" msgstr "Fraiser Géo des Trous" -#: flatcamGUI/ObjectUI.py:1061 +#: flatcamGUI/ObjectUI.py:1085 msgid "" "Create the Geometry Object\n" "for milling DRILLS toolpaths." @@ -7894,11 +7891,11 @@ msgstr "" "Créer l'objet de géométrie\n" "pour fraiser des parcours d’outils." -#: flatcamGUI/ObjectUI.py:1075 flatcamGUI/PreferencesUI.py:2507 +#: flatcamGUI/ObjectUI.py:1099 flatcamGUI/PreferencesUI.py:2508 msgid "Slot Tool dia" msgstr "Fente outil dia" -#: flatcamGUI/ObjectUI.py:1077 flatcamGUI/PreferencesUI.py:2509 +#: flatcamGUI/ObjectUI.py:1101 flatcamGUI/PreferencesUI.py:2510 msgid "" "Diameter of the cutting tool\n" "when milling slots." @@ -7906,11 +7903,11 @@ msgstr "" "Diamètre de l'outil de coupe\n" "lors du fraisage des fentes." -#: flatcamGUI/ObjectUI.py:1086 +#: flatcamGUI/ObjectUI.py:1110 msgid "Mill Slots Geo" msgstr "Fraiser la Géo de la Fente" -#: flatcamGUI/ObjectUI.py:1088 +#: flatcamGUI/ObjectUI.py:1112 msgid "" "Create the Geometry Object\n" "for milling SLOTS toolpaths." @@ -7918,11 +7915,11 @@ msgstr "" "Créer l'objet de géométrie\n" "pour fraiser des parcours d’outils." -#: flatcamGUI/ObjectUI.py:1115 flatcamTools/ToolCutOut.py:315 +#: flatcamGUI/ObjectUI.py:1152 flatcamTools/ToolCutOut.py:315 msgid "Geometry Object" msgstr "Objet de géométrie" -#: flatcamGUI/ObjectUI.py:1147 +#: flatcamGUI/ObjectUI.py:1186 msgid "" "Tools in this Geometry object used for cutting.\n" "The 'Offset' entry will set an offset for the cut.\n" @@ -7953,23 +7950,23 @@ msgstr "" "a montré des entrées de formulaire d’interface utilisateur nommées V-Tip Dia " "et V-Tip Angle." -#: flatcamGUI/ObjectUI.py:1164 flatcamGUI/ObjectUI.py:1853 -#: flatcamGUI/PreferencesUI.py:3627 +#: flatcamGUI/ObjectUI.py:1203 flatcamGUI/ObjectUI.py:1905 +#: flatcamGUI/PreferencesUI.py:3628 msgid "Plot Object" msgstr "Dessiner un objet" -#: flatcamGUI/ObjectUI.py:1178 flatcamGUI/ObjectUI.py:1866 -#: flatcamGUI/ObjectUI.py:1876 flatcamGUI/PreferencesUI.py:6172 +#: flatcamGUI/ObjectUI.py:1217 flatcamGUI/ObjectUI.py:1918 +#: flatcamGUI/ObjectUI.py:1928 flatcamGUI/PreferencesUI.py:6173 #: flatcamTools/ToolCopperThieving.py:220 msgid "Dia" msgstr "Dia" -#: flatcamGUI/ObjectUI.py:1178 flatcamGUI/ObjectUI.py:1866 +#: flatcamGUI/ObjectUI.py:1217 flatcamGUI/ObjectUI.py:1918 #: flatcamTools/ToolNonCopperClear.py:120 flatcamTools/ToolPaint.py:123 msgid "TT" msgstr "TT" -#: flatcamGUI/ObjectUI.py:1185 +#: flatcamGUI/ObjectUI.py:1224 msgid "" "This is the Tool Number.\n" "When ToolChange is checked, on toolchange event this value\n" @@ -7980,7 +7977,7 @@ msgstr "" "cette valeur\n" "sera montré comme un T1, T2 ... Tn" -#: flatcamGUI/ObjectUI.py:1196 +#: flatcamGUI/ObjectUI.py:1235 msgid "" "The value for the Offset can be:\n" "- Path -> There is no offset, the tool cut will be done through the geometry " @@ -7996,7 +7993,7 @@ msgstr "" "créer une \"poche\".\n" "- Extérieur -> L'outil coupé suivra la ligne géométrique à l'extérieur." -#: flatcamGUI/ObjectUI.py:1203 +#: flatcamGUI/ObjectUI.py:1242 msgid "" "The (Operation) Type has only informative value. Usually the UI form " "values \n" @@ -8018,7 +8015,7 @@ msgstr "" "Pour l'isolation, nous avons besoin d'une vitesse d'avance plus faible car " "elle utilise un foret à pointe fine." -#: flatcamGUI/ObjectUI.py:1212 +#: flatcamGUI/ObjectUI.py:1251 msgid "" "The Tool Type (TT) can be:\n" "- Circular with 1 ... 4 teeth -> it is informative only. Being circular the " @@ -8048,7 +8045,7 @@ msgstr "" "Le choix du type d'outil en forme de V sélectionne automatiquement le type " "d'opération comme isolement." -#: flatcamGUI/ObjectUI.py:1224 +#: flatcamGUI/ObjectUI.py:1263 msgid "" "Plot column. It is visible only for MultiGeo geometries, meaning geometries " "that holds the geometry\n" @@ -8066,7 +8063,7 @@ msgstr "" "activer / désactiver le tracé sur le canevas.\n" "pour l'outil correspondant." -#: flatcamGUI/ObjectUI.py:1242 +#: flatcamGUI/ObjectUI.py:1281 msgid "" "The value to offset the cut when \n" "the Offset type selected is 'Offset'.\n" @@ -8078,7 +8075,7 @@ msgstr "" "La valeur peut être positive pour 'dehors'\n" "coupé et négatif pour «à l'intérieur» coupé." -#: flatcamGUI/ObjectUI.py:1267 +#: flatcamGUI/ObjectUI.py:1306 msgid "" "Add a new tool to the Tool Table\n" "with the specified diameter." @@ -8086,11 +8083,11 @@ msgstr "" "Ajouter un nouvel outil à la table d'outils\n" "avec le diamètre spécifié." -#: flatcamGUI/ObjectUI.py:1275 +#: flatcamGUI/ObjectUI.py:1314 msgid "Add Tool from DataBase" msgstr "Ajouter un outil à partir de la BD" -#: flatcamGUI/ObjectUI.py:1277 +#: flatcamGUI/ObjectUI.py:1316 msgid "" "Add a new tool to the Tool Table\n" "from the Tool DataBase." @@ -8098,7 +8095,7 @@ msgstr "" "Ajouter un nouvel outil à la table d'outils\n" "à partir de la base de données d'outils." -#: flatcamGUI/ObjectUI.py:1287 +#: flatcamGUI/ObjectUI.py:1326 msgid "" "Copy a selection of tools in the Tool Table\n" "by first selecting a row in the Tool Table." @@ -8106,7 +8103,7 @@ msgstr "" "Copier une sélection d'outils dans la table d'outils\n" "en sélectionnant d'abord une ligne dans la table d'outils." -#: flatcamGUI/ObjectUI.py:1293 +#: flatcamGUI/ObjectUI.py:1332 msgid "" "Delete a selection of tools in the Tool Table\n" "by first selecting a row in the Tool Table." @@ -8114,7 +8111,7 @@ msgstr "" "Supprimer une sélection d'outils dans la table d'outils\n" "en sélectionnant d'abord une ligne dans la table d'outils." -#: flatcamGUI/ObjectUI.py:1317 +#: flatcamGUI/ObjectUI.py:1356 msgid "" "The data used for creating GCode.\n" "Each tool store it's own set of such data." @@ -8122,13 +8119,13 @@ msgstr "" "Les données utilisées pour créer le GCode.\n" "Chaque outil stocke son propre ensemble de données." -#: flatcamGUI/ObjectUI.py:1387 flatcamGUI/PreferencesUI.py:3199 -#: flatcamGUI/PreferencesUI.py:4311 flatcamTools/ToolCutOut.py:153 +#: flatcamGUI/ObjectUI.py:1426 flatcamGUI/PreferencesUI.py:3200 +#: flatcamGUI/PreferencesUI.py:4312 flatcamTools/ToolCutOut.py:153 msgid "Multi-Depth" msgstr "Multi-profondeur" -#: flatcamGUI/ObjectUI.py:1390 flatcamGUI/PreferencesUI.py:3202 -#: flatcamGUI/PreferencesUI.py:4314 flatcamTools/ToolCutOut.py:156 +#: flatcamGUI/ObjectUI.py:1429 flatcamGUI/PreferencesUI.py:3203 +#: flatcamGUI/PreferencesUI.py:4315 flatcamTools/ToolCutOut.py:156 msgid "" "Use multiple passes to limit\n" "the cut depth in each pass. Will\n" @@ -8140,12 +8137,12 @@ msgstr "" "couper plusieurs fois jusqu'à ce que Cut Z soit\n" "atteint." -#: flatcamGUI/ObjectUI.py:1404 flatcamGUI/PreferencesUI.py:4326 +#: flatcamGUI/ObjectUI.py:1443 flatcamGUI/PreferencesUI.py:4327 #: flatcamTools/ToolCutOut.py:170 msgid "Depth of each pass (positive)." msgstr "Profondeur de chaque passage (positif)." -#: flatcamGUI/ObjectUI.py:1415 flatcamGUI/PreferencesUI.py:3234 +#: flatcamGUI/ObjectUI.py:1454 flatcamGUI/PreferencesUI.py:3235 msgid "" "Height of the tool when\n" "moving without cutting." @@ -8153,7 +8150,7 @@ msgstr "" "Hauteur de l'outil quand\n" "se déplacer sans couper." -#: flatcamGUI/ObjectUI.py:1442 flatcamGUI/PreferencesUI.py:3255 +#: flatcamGUI/ObjectUI.py:1481 flatcamGUI/PreferencesUI.py:3256 msgid "" "Include tool-change sequence\n" "in the Machine Code (Pause for tool change)." @@ -8161,12 +8158,12 @@ msgstr "" "Inclure la séquence de changement d'outil\n" "dans le code machine (pause pour changement d'outil)." -#: flatcamGUI/ObjectUI.py:1492 flatcamGUI/PreferencesUI.py:3306 -#: flatcamGUI/PreferencesUI.py:5484 flatcamTools/ToolSolderPaste.py:252 +#: flatcamGUI/ObjectUI.py:1531 flatcamGUI/PreferencesUI.py:3307 +#: flatcamGUI/PreferencesUI.py:5485 flatcamTools/ToolSolderPaste.py:252 msgid "Feedrate X-Y" msgstr "Avance X-Y" -#: flatcamGUI/ObjectUI.py:1494 flatcamGUI/PreferencesUI.py:3308 +#: flatcamGUI/ObjectUI.py:1533 flatcamGUI/PreferencesUI.py:3309 msgid "" "Cutting speed in the XY\n" "plane in units per minute" @@ -8174,7 +8171,7 @@ msgstr "" "Vitesse de coupe dans le XY\n" "avion en unités par minute" -#: flatcamGUI/ObjectUI.py:1508 flatcamGUI/PreferencesUI.py:3323 +#: flatcamGUI/ObjectUI.py:1547 flatcamGUI/PreferencesUI.py:3324 msgid "" "Cutting speed in the XY\n" "plane in units per minute.\n" @@ -8184,7 +8181,7 @@ msgstr "" "avion en unités par minute.\n" "Cela s'appelle aussi plonger." -#: flatcamGUI/ObjectUI.py:1523 flatcamGUI/PreferencesUI.py:3432 +#: flatcamGUI/ObjectUI.py:1562 flatcamGUI/PreferencesUI.py:3433 msgid "" "Cutting speed in the XY plane\n" "(in units per minute).\n" @@ -8198,12 +8195,12 @@ msgstr "" "C'est utile seulement pour Marlin,\n" "ignorer pour les autres cas." -#: flatcamGUI/ObjectUI.py:1541 flatcamGUI/PreferencesUI.py:3448 +#: flatcamGUI/ObjectUI.py:1580 flatcamGUI/PreferencesUI.py:3449 msgid "Re-cut" msgstr "Re-coupé" -#: flatcamGUI/ObjectUI.py:1543 flatcamGUI/ObjectUI.py:1555 -#: flatcamGUI/PreferencesUI.py:3450 flatcamGUI/PreferencesUI.py:3462 +#: flatcamGUI/ObjectUI.py:1582 flatcamGUI/ObjectUI.py:1594 +#: flatcamGUI/PreferencesUI.py:3451 flatcamGUI/PreferencesUI.py:3463 msgid "" "In order to remove possible\n" "copper leftovers where first cut\n" @@ -8215,7 +8212,7 @@ msgstr "" "rencontre avec la dernière coupe, nous générons un\n" "coupe étendue sur la première section coupée." -#: flatcamGUI/ObjectUI.py:1569 flatcamGUI/PreferencesUI.py:3340 +#: flatcamGUI/ObjectUI.py:1608 flatcamGUI/PreferencesUI.py:3341 msgid "" "Speed of the spindle in RPM (optional).\n" "If LASER preprocessor is used,\n" @@ -8225,12 +8222,12 @@ msgstr "" "Si le post-processeur LASER est utilisé,\n" "cette valeur est la puissance du laser." -#: flatcamGUI/ObjectUI.py:1603 flatcamGUI/PreferencesUI.py:5573 +#: flatcamGUI/ObjectUI.py:1642 flatcamGUI/PreferencesUI.py:5574 #: flatcamTools/ToolSolderPaste.py:334 msgid "PostProcessor" msgstr "Post-processeur" -#: flatcamGUI/ObjectUI.py:1605 flatcamGUI/PreferencesUI.py:3377 +#: flatcamGUI/ObjectUI.py:1644 flatcamGUI/PreferencesUI.py:3378 msgid "" "The Preprocessor file that dictates\n" "the Machine Code (like GCode, RML, HPGL) output." @@ -8238,11 +8235,11 @@ msgstr "" "Le fichier post-processeur qui dicte\n" "le code machine (comme GCode, RML, HPGL." -#: flatcamGUI/ObjectUI.py:1652 +#: flatcamGUI/ObjectUI.py:1691 msgid "Apply parameters to all tools" msgstr "Appliquer des paramètres à tous les outils" -#: flatcamGUI/ObjectUI.py:1654 +#: flatcamGUI/ObjectUI.py:1693 msgid "" "The parameters in the current form will be applied\n" "on all the tools from the Tool Table." @@ -8250,7 +8247,7 @@ msgstr "" "Les paramètres du formulaire actuel seront appliqués\n" "sur tous les outils de la table d'outils." -#: flatcamGUI/ObjectUI.py:1663 +#: flatcamGUI/ObjectUI.py:1702 msgid "" "Add at least one tool in the tool-table.\n" "Click the header to select all, or Ctrl + LMB\n" @@ -8260,19 +8257,19 @@ msgstr "" "Cliquez sur l'en-tête pour tout sélectionner, ou Ctrl + LMB\n" "pour la sélection personnalisée des outils." -#: flatcamGUI/ObjectUI.py:1670 +#: flatcamGUI/ObjectUI.py:1709 msgid "Generate CNCJob object" msgstr "Générer un objet CNCJob" -#: flatcamGUI/ObjectUI.py:1672 +#: flatcamGUI/ObjectUI.py:1711 msgid "Generate the CNC Job object." msgstr "Générez l'objet Travail CNC." -#: flatcamGUI/ObjectUI.py:1689 +#: flatcamGUI/ObjectUI.py:1728 msgid "Launch Paint Tool in Tools Tab." msgstr "Lancer L'outil de Peinture dans l'onglet Outils." -#: flatcamGUI/ObjectUI.py:1697 flatcamGUI/PreferencesUI.py:4489 +#: flatcamGUI/ObjectUI.py:1736 flatcamGUI/PreferencesUI.py:4490 msgid "" "Creates tool paths to cover the\n" "whole area of a polygon (remove\n" @@ -8284,15 +8281,15 @@ msgstr "" "tout en cuivre). Tu vas être interrogé\n" "cliquer sur le polygone désiré." -#: flatcamGUI/ObjectUI.py:1737 +#: flatcamGUI/ObjectUI.py:1788 msgid "CNC Job Object" msgstr "Objet de travail CNC" -#: flatcamGUI/ObjectUI.py:1748 flatcamGUI/PreferencesUI.py:3632 +#: flatcamGUI/ObjectUI.py:1800 flatcamGUI/PreferencesUI.py:3633 msgid "Plot kind" msgstr "Dessiner genre" -#: flatcamGUI/ObjectUI.py:1751 flatcamGUI/PreferencesUI.py:3634 +#: flatcamGUI/ObjectUI.py:1803 flatcamGUI/PreferencesUI.py:3635 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" @@ -8304,15 +8301,15 @@ msgstr "" "au-dessus de la pièce ou il peut être de type 'Couper',\n" "ce qui signifie les mouvements qui coupent dans le matériau." -#: flatcamGUI/ObjectUI.py:1760 flatcamGUI/PreferencesUI.py:3642 +#: flatcamGUI/ObjectUI.py:1812 flatcamGUI/PreferencesUI.py:3643 msgid "Travel" msgstr "Voyage" -#: flatcamGUI/ObjectUI.py:1764 flatcamGUI/PreferencesUI.py:3651 +#: flatcamGUI/ObjectUI.py:1816 flatcamGUI/PreferencesUI.py:3652 msgid "Display Annotation" msgstr "Afficher l'annotation" -#: flatcamGUI/ObjectUI.py:1766 flatcamGUI/PreferencesUI.py:3653 +#: flatcamGUI/ObjectUI.py:1818 flatcamGUI/PreferencesUI.py:3654 msgid "" "This selects if to display text annotation on the plot.\n" "When checked it will display numbers in order for each end\n" @@ -8322,11 +8319,11 @@ msgstr "" "Lorsque coché, il affichera les numéros dans l'ordre pour chaque extrémité\n" "d'une ligne de voyage." -#: flatcamGUI/ObjectUI.py:1781 +#: flatcamGUI/ObjectUI.py:1833 msgid "Travelled dist." msgstr "Dist. parcourue" -#: flatcamGUI/ObjectUI.py:1783 flatcamGUI/ObjectUI.py:1788 +#: flatcamGUI/ObjectUI.py:1835 flatcamGUI/ObjectUI.py:1840 msgid "" "This is the total travelled distance on X-Y plane.\n" "In current units." @@ -8334,11 +8331,11 @@ msgstr "" "C’est la distance totale parcourue sur l’avion X-Y.\n" "En unités actuelles." -#: flatcamGUI/ObjectUI.py:1793 +#: flatcamGUI/ObjectUI.py:1845 msgid "Estimated time" msgstr "Temps estimé" -#: flatcamGUI/ObjectUI.py:1795 flatcamGUI/ObjectUI.py:1800 +#: flatcamGUI/ObjectUI.py:1847 flatcamGUI/ObjectUI.py:1852 msgid "" "This is the estimated time to do the routing/drilling,\n" "without the time spent in ToolChange events." @@ -8346,11 +8343,11 @@ msgstr "" "Ceci est le temps estimé pour faire le routage / forage,\n" "sans le temps passé dans les événements ToolChange." -#: flatcamGUI/ObjectUI.py:1835 +#: flatcamGUI/ObjectUI.py:1887 msgid "CNC Tools Table" msgstr "Table d'outils CNC" -#: flatcamGUI/ObjectUI.py:1838 +#: flatcamGUI/ObjectUI.py:1890 msgid "" "Tools in this CNCJob object used for cutting.\n" "The tool diameter is used for plotting on canvas.\n" @@ -8373,24 +8370,24 @@ msgstr "" "Le 'type d'outil' (TT) peut être circulaire avec 1 à 4 dents (C1..C4),\n" "balle (B) ou en forme de V (V)." -#: flatcamGUI/ObjectUI.py:1866 flatcamGUI/ObjectUI.py:1877 +#: flatcamGUI/ObjectUI.py:1918 flatcamGUI/ObjectUI.py:1929 msgid "P" msgstr "P" -#: flatcamGUI/ObjectUI.py:1887 +#: flatcamGUI/ObjectUI.py:1939 msgid "Update Plot" msgstr "Mise à jour du Tracé" -#: flatcamGUI/ObjectUI.py:1889 +#: flatcamGUI/ObjectUI.py:1941 msgid "Update the plot." msgstr "Mettre à jour le dessin." -#: flatcamGUI/ObjectUI.py:1896 flatcamGUI/PreferencesUI.py:3819 +#: flatcamGUI/ObjectUI.py:1948 flatcamGUI/PreferencesUI.py:3820 msgid "Export CNC Code" msgstr "Exporter le code CNC" -#: flatcamGUI/ObjectUI.py:1898 flatcamGUI/PreferencesUI.py:3760 -#: flatcamGUI/PreferencesUI.py:3821 +#: flatcamGUI/ObjectUI.py:1950 flatcamGUI/PreferencesUI.py:3761 +#: flatcamGUI/PreferencesUI.py:3822 msgid "" "Export and save G-Code to\n" "make this object to a file." @@ -8398,12 +8395,12 @@ msgstr "" "Exporter et sauvegarder le code G dans\n" "transformez cet objet en fichier." -#: flatcamGUI/ObjectUI.py:1904 +#: flatcamGUI/ObjectUI.py:1956 msgid "Prepend to CNC Code" msgstr "Ajouter au début un code CNC" -#: flatcamGUI/ObjectUI.py:1906 flatcamGUI/ObjectUI.py:1913 -#: flatcamGUI/PreferencesUI.py:3776 flatcamGUI/PreferencesUI.py:3783 +#: flatcamGUI/ObjectUI.py:1958 flatcamGUI/ObjectUI.py:1965 +#: flatcamGUI/PreferencesUI.py:3777 flatcamGUI/PreferencesUI.py:3784 msgid "" "Type here any G-Code commands you would\n" "like to add at the beginning of the G-Code file." @@ -8411,12 +8408,12 @@ msgstr "" "Tapez ici toutes les commandes G-Code que vous feriez\n" "souhaite ajouter au début du fichier G-Code." -#: flatcamGUI/ObjectUI.py:1919 +#: flatcamGUI/ObjectUI.py:1971 msgid "Append to CNC Code" msgstr "Ajouter au code CNC final" -#: flatcamGUI/ObjectUI.py:1921 flatcamGUI/ObjectUI.py:1929 -#: flatcamGUI/PreferencesUI.py:3792 flatcamGUI/PreferencesUI.py:3800 +#: flatcamGUI/ObjectUI.py:1973 flatcamGUI/ObjectUI.py:1981 +#: flatcamGUI/PreferencesUI.py:3793 flatcamGUI/PreferencesUI.py:3801 msgid "" "Type here any G-Code commands you would\n" "like to append to the generated file.\n" @@ -8426,11 +8423,11 @@ msgstr "" "tiens à ajouter à la fin du fichier généré.\n" "I.e .: M2 (fin du programme)" -#: flatcamGUI/ObjectUI.py:1943 flatcamGUI/PreferencesUI.py:3827 +#: flatcamGUI/ObjectUI.py:1995 flatcamGUI/PreferencesUI.py:3828 msgid "Toolchange G-Code" msgstr "Code de changement d'outils" -#: flatcamGUI/ObjectUI.py:1946 flatcamGUI/PreferencesUI.py:3830 +#: flatcamGUI/ObjectUI.py:1998 flatcamGUI/PreferencesUI.py:3831 msgid "" "Type here any G-Code commands you would\n" "like to be executed when Toolchange event is encountered.\n" @@ -8452,7 +8449,7 @@ msgstr "" "qui a 'toolchange_custom' dans son nom et qui est construit\n" "ayant comme modèle le fichier posprocessor 'Toolchange Custom'." -#: flatcamGUI/ObjectUI.py:1961 flatcamGUI/PreferencesUI.py:3853 +#: flatcamGUI/ObjectUI.py:2013 flatcamGUI/PreferencesUI.py:3854 msgid "" "Type here any G-Code commands you would\n" "like to be executed when Toolchange event is encountered.\n" @@ -8470,11 +8467,11 @@ msgstr "" "WARNING: it can be used only with a preprocessor file\n" "that has 'toolchange_custom' in it's name." -#: flatcamGUI/ObjectUI.py:1976 flatcamGUI/PreferencesUI.py:3869 +#: flatcamGUI/ObjectUI.py:2028 flatcamGUI/PreferencesUI.py:3870 msgid "Use Toolchange Macro" msgstr "Utiliser la macro Toolchange" -#: flatcamGUI/ObjectUI.py:1978 flatcamGUI/PreferencesUI.py:3871 +#: flatcamGUI/ObjectUI.py:2030 flatcamGUI/PreferencesUI.py:3872 msgid "" "Check this box if you want to use\n" "a Custom Toolchange GCode (macro)." @@ -8482,7 +8479,7 @@ msgstr "" "Cochez cette case si vous souhaitez utiliser\n" "un GCode personnalisé Toolchange (macro)." -#: flatcamGUI/ObjectUI.py:1986 flatcamGUI/PreferencesUI.py:3883 +#: flatcamGUI/ObjectUI.py:2038 flatcamGUI/PreferencesUI.py:3884 msgid "" "A list of the FlatCAM variables that can be used\n" "in the Toolchange event.\n" @@ -8492,74 +8489,74 @@ msgstr "" "dans l'événement Toolchange.\n" "Ils doivent être entourés du symbole '%%'" -#: 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 +#: flatcamGUI/ObjectUI.py:2045 flatcamGUI/PreferencesUI.py:1852 +#: flatcamGUI/PreferencesUI.py:2825 flatcamGUI/PreferencesUI.py:3570 +#: flatcamGUI/PreferencesUI.py:3891 flatcamGUI/PreferencesUI.py:3973 +#: flatcamGUI/PreferencesUI.py:4265 flatcamGUI/PreferencesUI.py:4424 +#: flatcamGUI/PreferencesUI.py:4646 flatcamGUI/PreferencesUI.py:4943 +#: flatcamGUI/PreferencesUI.py:5194 flatcamGUI/PreferencesUI.py:5370 +#: flatcamGUI/PreferencesUI.py:5595 flatcamGUI/PreferencesUI.py:5617 +#: flatcamGUI/PreferencesUI.py:5841 flatcamGUI/PreferencesUI.py:5878 +#: flatcamGUI/PreferencesUI.py:6072 flatcamGUI/PreferencesUI.py:6326 +#: flatcamGUI/PreferencesUI.py:6442 flatcamTools/ToolCopperThieving.py:89 #: flatcamTools/ToolFiducials.py:149 flatcamTools/ToolNonCopperClear.py:315 msgid "Parameters" msgstr "Paramètres" -#: flatcamGUI/ObjectUI.py:1996 flatcamGUI/PreferencesUI.py:3893 +#: flatcamGUI/ObjectUI.py:2048 flatcamGUI/PreferencesUI.py:3894 msgid "FlatCAM CNC parameters" msgstr "Paramètres CNC FlatCAM" -#: flatcamGUI/ObjectUI.py:1997 flatcamGUI/PreferencesUI.py:3894 +#: flatcamGUI/ObjectUI.py:2049 flatcamGUI/PreferencesUI.py:3895 msgid "tool number" msgstr "numéro d'outil" -#: flatcamGUI/ObjectUI.py:1998 flatcamGUI/PreferencesUI.py:3895 +#: flatcamGUI/ObjectUI.py:2050 flatcamGUI/PreferencesUI.py:3896 msgid "tool diameter" msgstr "diamètre de l'outil" -#: flatcamGUI/ObjectUI.py:1999 flatcamGUI/PreferencesUI.py:3896 +#: flatcamGUI/ObjectUI.py:2051 flatcamGUI/PreferencesUI.py:3897 msgid "for Excellon, total number of drills" msgstr "pour Excellon, nombre total de trous de forage" -#: flatcamGUI/ObjectUI.py:2001 flatcamGUI/PreferencesUI.py:3898 +#: flatcamGUI/ObjectUI.py:2053 flatcamGUI/PreferencesUI.py:3899 msgid "X coord for Toolchange" msgstr "Coord X pour changement d'outil" -#: flatcamGUI/ObjectUI.py:2002 flatcamGUI/PreferencesUI.py:3899 +#: flatcamGUI/ObjectUI.py:2054 flatcamGUI/PreferencesUI.py:3900 msgid "Y coord for Toolchange" msgstr "Coord Y pour changement d'outil" -#: flatcamGUI/ObjectUI.py:2003 flatcamGUI/PreferencesUI.py:3901 +#: flatcamGUI/ObjectUI.py:2055 flatcamGUI/PreferencesUI.py:3902 msgid "Z coord for Toolchange" msgstr "Coords Z pour le Changement d'Outil" -#: flatcamGUI/ObjectUI.py:2004 +#: flatcamGUI/ObjectUI.py:2056 msgid "depth where to cut" msgstr "profondeur où couper" -#: flatcamGUI/ObjectUI.py:2005 +#: flatcamGUI/ObjectUI.py:2057 msgid "height where to travel" msgstr "hauteur où voyager" -#: flatcamGUI/ObjectUI.py:2006 flatcamGUI/PreferencesUI.py:3904 +#: flatcamGUI/ObjectUI.py:2058 flatcamGUI/PreferencesUI.py:3905 msgid "the step value for multidepth cut" msgstr "la valeur de pas pour la coupe multiple" -#: flatcamGUI/ObjectUI.py:2008 flatcamGUI/PreferencesUI.py:3906 +#: flatcamGUI/ObjectUI.py:2060 flatcamGUI/PreferencesUI.py:3907 msgid "the value for the spindle speed" msgstr "la valeur de la vitesse de broche" -#: flatcamGUI/ObjectUI.py:2010 +#: flatcamGUI/ObjectUI.py:2062 msgid "time to dwell to allow the spindle to reach it's set RPM" msgstr "" "temps de repos pour permettre à la broche d'atteindre son régime défini" -#: flatcamGUI/ObjectUI.py:2026 +#: flatcamGUI/ObjectUI.py:2078 msgid "View CNC Code" msgstr "Voir le code CNC" -#: flatcamGUI/ObjectUI.py:2028 +#: flatcamGUI/ObjectUI.py:2080 msgid "" "Opens TAB to view/modify/print G-Code\n" "file." @@ -8567,11 +8564,11 @@ msgstr "" "Ouvre l'onglet pour afficher / modifier / imprimer le code G\n" "fichier." -#: flatcamGUI/ObjectUI.py:2033 +#: flatcamGUI/ObjectUI.py:2085 msgid "Save CNC Code" msgstr "Enregistrer le code CNC" -#: flatcamGUI/ObjectUI.py:2035 +#: flatcamGUI/ObjectUI.py:2087 msgid "" "Opens dialog to save G-Code\n" "file." @@ -8579,79 +8576,79 @@ msgstr "" "Ouvre la boîte de dialogue pour enregistrer le code G\n" "fichier." -#: flatcamGUI/ObjectUI.py:2055 +#: flatcamGUI/ObjectUI.py:2118 msgid "Script Object" msgstr "Objet de script" -#: flatcamGUI/ObjectUI.py:2077 flatcamGUI/ObjectUI.py:2139 +#: flatcamGUI/ObjectUI.py:2140 flatcamGUI/ObjectUI.py:2213 msgid "Auto Completer" msgstr "Compléteur automatique" -#: flatcamGUI/ObjectUI.py:2079 +#: flatcamGUI/ObjectUI.py:2142 msgid "This selects if the auto completer is enabled in the Script Editor." msgstr "" "Ceci sélectionne si le compléteur automatique est activé dans l'éditeur de " "script." -#: flatcamGUI/ObjectUI.py:2110 +#: flatcamGUI/ObjectUI.py:2184 msgid "Document Object" msgstr "Objet de Document" -#: flatcamGUI/ObjectUI.py:2141 +#: flatcamGUI/ObjectUI.py:2215 msgid "This selects if the auto completer is enabled in the Document Editor." msgstr "" "Ceci sélectionne si le compléteur automatique est activé dans l'éditeur de " "document." -#: flatcamGUI/ObjectUI.py:2159 +#: flatcamGUI/ObjectUI.py:2233 msgid "Font Type" msgstr "Type de Police" -#: flatcamGUI/ObjectUI.py:2176 +#: flatcamGUI/ObjectUI.py:2250 msgid "Font Size" msgstr "Taille de Police" -#: flatcamGUI/ObjectUI.py:2212 +#: flatcamGUI/ObjectUI.py:2286 msgid "Alignment" msgstr "Alignement" -#: flatcamGUI/ObjectUI.py:2217 +#: flatcamGUI/ObjectUI.py:2291 msgid "Align Left" msgstr "Alignez à gauche" -#: flatcamGUI/ObjectUI.py:2222 +#: flatcamGUI/ObjectUI.py:2296 msgid "Center" msgstr "Centre" -#: flatcamGUI/ObjectUI.py:2227 +#: flatcamGUI/ObjectUI.py:2301 msgid "Align Right" msgstr "Aligner à droite" -#: flatcamGUI/ObjectUI.py:2232 +#: flatcamGUI/ObjectUI.py:2306 msgid "Justify" msgstr "Aligner à justifier" -#: flatcamGUI/ObjectUI.py:2239 +#: flatcamGUI/ObjectUI.py:2313 msgid "Font Color" msgstr "Couleur de la Police" -#: flatcamGUI/ObjectUI.py:2241 +#: flatcamGUI/ObjectUI.py:2315 msgid "Set the font color for the selected text" msgstr "Définir la couleur de la police pour le texte sélectionné" -#: flatcamGUI/ObjectUI.py:2255 +#: flatcamGUI/ObjectUI.py:2329 msgid "Selection Color" msgstr "Couleur de sélection" -#: flatcamGUI/ObjectUI.py:2257 +#: flatcamGUI/ObjectUI.py:2331 msgid "Set the selection color when doing text selection." msgstr "Définissez la couleur de sélection lors de la sélection du texte." -#: flatcamGUI/ObjectUI.py:2271 +#: flatcamGUI/ObjectUI.py:2345 msgid "Tab Size" msgstr "Taille de l'onglet" -#: flatcamGUI/ObjectUI.py:2273 +#: flatcamGUI/ObjectUI.py:2347 msgid "Set the tab size. In pixels. Default value is 80 pixels." msgstr "" "Définissez la taille de l'onglet. En pixels. La valeur par défaut est 80 " @@ -8717,7 +8714,7 @@ msgstr "" msgid "Wk. Orientation" msgstr "Orientation de ET" -#: flatcamGUI/PreferencesUI.py:430 flatcamGUI/PreferencesUI.py:4853 +#: flatcamGUI/PreferencesUI.py:430 flatcamGUI/PreferencesUI.py:4854 #: flatcamTools/ToolFilm.py:420 msgid "" "Can be:\n" @@ -8728,12 +8725,12 @@ msgstr "" "- Portrait\n" "- Paysage" -#: flatcamGUI/PreferencesUI.py:434 flatcamGUI/PreferencesUI.py:4857 +#: flatcamGUI/PreferencesUI.py:434 flatcamGUI/PreferencesUI.py:4858 #: flatcamTools/ToolFilm.py:424 msgid "Portrait" msgstr "Portrait" -#: flatcamGUI/PreferencesUI.py:435 flatcamGUI/PreferencesUI.py:4858 +#: flatcamGUI/PreferencesUI.py:435 flatcamGUI/PreferencesUI.py:4859 #: flatcamTools/ToolFilm.py:425 msgid "Landscape" msgstr "Paysage" @@ -8936,7 +8933,7 @@ msgstr "" "Activer la prise en charge haute DPI pour FlatCAM.\n" "Il sera appliqué au prochain démarrage de l'application." -#: flatcamGUI/PreferencesUI.py:782 flatcamGUI/PreferencesUI.py:1032 +#: flatcamGUI/PreferencesUI.py:782 flatcamGUI/PreferencesUI.py:1033 msgid "Clear GUI Settings" msgstr "Effacer les param. de GUI" @@ -9025,19 +9022,19 @@ msgid "Enable display of the splash screen at application startup." msgstr "" "Activer l'affichage de l'écran de démarrage au démarrage de l'application." -#: flatcamGUI/PreferencesUI.py:899 +#: flatcamGUI/PreferencesUI.py:900 msgid "Sys Tray Icon" msgstr "Icône Sys Tray" -#: flatcamGUI/PreferencesUI.py:901 +#: flatcamGUI/PreferencesUI.py:902 msgid "Enable display of FlatCAM icon in Sys Tray." msgstr "Activer l’affichage de l’icône FlatCAM dans Sys Tray." -#: flatcamGUI/PreferencesUI.py:909 +#: flatcamGUI/PreferencesUI.py:910 msgid "Shell at StartUp" msgstr "Shell au démarrage" -#: flatcamGUI/PreferencesUI.py:911 flatcamGUI/PreferencesUI.py:916 +#: flatcamGUI/PreferencesUI.py:912 flatcamGUI/PreferencesUI.py:917 msgid "" "Check this box if you want the shell to\n" "start automatically at startup." @@ -9045,11 +9042,11 @@ msgstr "" "Cochez cette case si vous voulez que le shell\n" "démarrer automatiquement au démarrage." -#: flatcamGUI/PreferencesUI.py:924 +#: flatcamGUI/PreferencesUI.py:925 msgid "Project at StartUp" msgstr "Projet au démarrage" -#: flatcamGUI/PreferencesUI.py:926 flatcamGUI/PreferencesUI.py:931 +#: flatcamGUI/PreferencesUI.py:927 flatcamGUI/PreferencesUI.py:932 msgid "" "Check this box if you want the project/selected/tool tab area to\n" "to be shown automatically at startup." @@ -9058,11 +9055,11 @@ msgstr "" "outil\n" "à afficher automatiquement au démarrage." -#: flatcamGUI/PreferencesUI.py:939 +#: flatcamGUI/PreferencesUI.py:940 msgid "Project AutoHide" msgstr "Masquer auto le projet" -#: flatcamGUI/PreferencesUI.py:941 flatcamGUI/PreferencesUI.py:947 +#: flatcamGUI/PreferencesUI.py:942 flatcamGUI/PreferencesUI.py:948 msgid "" "Check this box if you want the project/selected/tool tab area to\n" "hide automatically when there are no objects loaded and\n" @@ -9073,11 +9070,11 @@ msgstr "" "se cacher automatiquement quand il n'y a pas d'objets chargés et\n" "pour montrer chaque fois qu'un nouvel objet est créé." -#: flatcamGUI/PreferencesUI.py:958 +#: flatcamGUI/PreferencesUI.py:959 msgid "Enable ToolTips" msgstr "Activer les info-bulles" -#: flatcamGUI/PreferencesUI.py:960 flatcamGUI/PreferencesUI.py:965 +#: flatcamGUI/PreferencesUI.py:961 flatcamGUI/PreferencesUI.py:966 msgid "" "Check this box if you want to have toolTips displayed\n" "when hovering with mouse over items throughout the App." @@ -9085,11 +9082,11 @@ msgstr "" "Cochez cette case si vous souhaitez afficher les info-bulles\n" "lorsque vous survolez avec la souris sur des éléments dans l’application." -#: flatcamGUI/PreferencesUI.py:973 +#: flatcamGUI/PreferencesUI.py:974 msgid "Mouse Cursor" msgstr "Curseur de la souris" -#: flatcamGUI/PreferencesUI.py:975 +#: flatcamGUI/PreferencesUI.py:976 msgid "" "Choose a mouse cursor shape.\n" "- Small -> with a customizable size.\n" @@ -9099,27 +9096,27 @@ msgstr "" "- Petit -> avec une taille personnalisable.\n" "- Grand -> Lignes infinies" -#: flatcamGUI/PreferencesUI.py:981 +#: flatcamGUI/PreferencesUI.py:982 msgid "Small" msgstr "Petit" -#: flatcamGUI/PreferencesUI.py:982 +#: flatcamGUI/PreferencesUI.py:983 msgid "Big" msgstr "Grand" -#: flatcamGUI/PreferencesUI.py:988 +#: flatcamGUI/PreferencesUI.py:989 msgid "Mouse Cursor Size" msgstr "Taille du curseur de la souris" -#: flatcamGUI/PreferencesUI.py:990 +#: flatcamGUI/PreferencesUI.py:991 msgid "Set the size of the mouse cursor, in pixels." msgstr "Définissez la taille du curseur de la souris, en pixels." -#: flatcamGUI/PreferencesUI.py:1001 +#: flatcamGUI/PreferencesUI.py:1002 msgid "Delete object confirmation" msgstr "Supprimer la conf. de l'objet" -#: flatcamGUI/PreferencesUI.py:1003 +#: flatcamGUI/PreferencesUI.py:1004 msgid "" "When checked the application will ask for user confirmation\n" "whenever the Delete object(s) event is triggered, either by\n" @@ -9129,22 +9126,22 @@ msgstr "" "chaque fois que l'événement Delete object (s) est déclenché, soit par\n" "raccourci de menu ou raccourci clavier." -#: flatcamGUI/PreferencesUI.py:1029 +#: flatcamGUI/PreferencesUI.py:1030 msgid "Are you sure you want to delete the GUI Settings? \n" msgstr "Êtes-vous sûr de vouloir supprimer les paramètres de GUI?\n" -#: flatcamGUI/PreferencesUI.py:1053 +#: flatcamGUI/PreferencesUI.py:1054 msgid "App Preferences" msgstr "Préférences de l'app" -#: flatcamGUI/PreferencesUI.py:1063 flatcamGUI/PreferencesUI.py:1388 -#: flatcamGUI/PreferencesUI.py:1763 flatcamGUI/PreferencesUI.py:2686 +#: flatcamGUI/PreferencesUI.py:1064 flatcamGUI/PreferencesUI.py:1389 +#: flatcamGUI/PreferencesUI.py:1764 flatcamGUI/PreferencesUI.py:2687 #: flatcamTools/ToolDistance.py:49 flatcamTools/ToolDistanceMin.py:49 #: flatcamTools/ToolPcbWizard.py:127 flatcamTools/ToolProperties.py:152 msgid "Units" msgstr "Unités" -#: flatcamGUI/PreferencesUI.py:1064 +#: flatcamGUI/PreferencesUI.py:1065 msgid "" "The default value for FlatCAM units.\n" "Whatever is selected here is set every time\n" @@ -9154,22 +9151,22 @@ msgstr "" "Tout ce qui est sélectionné ici est défini à chaque fois\n" "FLatCAM est démarré." -#: flatcamGUI/PreferencesUI.py:1067 flatcamGUI/PreferencesUI.py:1394 -#: flatcamGUI/PreferencesUI.py:1769 flatcamGUI/PreferencesUI.py:2223 -#: flatcamGUI/PreferencesUI.py:2692 flatcamTools/ToolCalculators.py:62 +#: flatcamGUI/PreferencesUI.py:1068 flatcamGUI/PreferencesUI.py:1395 +#: flatcamGUI/PreferencesUI.py:1770 flatcamGUI/PreferencesUI.py:2224 +#: flatcamGUI/PreferencesUI.py:2693 flatcamTools/ToolCalculators.py:62 #: flatcamTools/ToolPcbWizard.py:126 msgid "MM" msgstr "MM" -#: flatcamGUI/PreferencesUI.py:1068 +#: flatcamGUI/PreferencesUI.py:1069 msgid "IN" msgstr "PO" -#: flatcamGUI/PreferencesUI.py:1074 +#: flatcamGUI/PreferencesUI.py:1075 msgid "Precision MM" msgstr "Précision MM" -#: flatcamGUI/PreferencesUI.py:1076 +#: flatcamGUI/PreferencesUI.py:1077 msgid "" "The number of decimals used throughout the application\n" "when the set units are in METRIC system.\n" @@ -9179,11 +9176,11 @@ msgstr "" "lorsque les unités définies sont dans le système METRIC.\n" "Toute modification ici nécessite un redémarrage de l'application." -#: flatcamGUI/PreferencesUI.py:1088 +#: flatcamGUI/PreferencesUI.py:1089 msgid "Precision INCH" msgstr "Précision INCH" -#: flatcamGUI/PreferencesUI.py:1090 +#: flatcamGUI/PreferencesUI.py:1091 msgid "" "The number of decimals used throughout the application\n" "when the set units are in INCH system.\n" @@ -9193,11 +9190,11 @@ msgstr "" "lorsque les unités définies sont dans le système INCH.\n" "Toute modification ici nécessite un redémarrage de l'application." -#: flatcamGUI/PreferencesUI.py:1102 +#: flatcamGUI/PreferencesUI.py:1103 msgid "Graphic Engine" msgstr "Moteur graphique" -#: flatcamGUI/PreferencesUI.py:1103 +#: flatcamGUI/PreferencesUI.py:1104 msgid "" "Choose what graphic engine to use in FlatCAM.\n" "Legacy(2D) -> reduced functionality, slow performance but enhanced " @@ -9217,19 +9214,19 @@ msgstr "" "donc\n" "utilisez le mode Héritage (2D)." -#: flatcamGUI/PreferencesUI.py:1109 +#: flatcamGUI/PreferencesUI.py:1110 msgid "Legacy(2D)" msgstr "Heritage(2D)" -#: flatcamGUI/PreferencesUI.py:1110 +#: flatcamGUI/PreferencesUI.py:1111 msgid "OpenGL(3D)" msgstr "OpenGL(3D)" -#: flatcamGUI/PreferencesUI.py:1117 +#: flatcamGUI/PreferencesUI.py:1118 msgid "APP. LEVEL" msgstr "APP. NIVEAU" -#: flatcamGUI/PreferencesUI.py:1118 +#: flatcamGUI/PreferencesUI.py:1119 msgid "" "Choose the default level of usage for FlatCAM.\n" "BASIC level -> reduced functionality, best for beginner's.\n" @@ -9245,11 +9242,11 @@ msgstr "" "Le choix ici influencera les paramètres dans\n" "l'onglet Sélectionné pour toutes sortes d'objets FlatCAM." -#: flatcamGUI/PreferencesUI.py:1130 +#: flatcamGUI/PreferencesUI.py:1131 msgid "Portable app" msgstr "App. portable" -#: flatcamGUI/PreferencesUI.py:1131 +#: flatcamGUI/PreferencesUI.py:1132 msgid "" "Choose if the application should run as portable.\n" "\n" @@ -9263,19 +9260,19 @@ msgstr "" "ce qui signifie que les fichiers de préférences seront sauvegardés\n" "dans le dossier de l'application, dans le sous-dossier lib\\config." -#: flatcamGUI/PreferencesUI.py:1141 +#: flatcamGUI/PreferencesUI.py:1142 msgid "Languages" msgstr "Langages" -#: flatcamGUI/PreferencesUI.py:1142 +#: flatcamGUI/PreferencesUI.py:1143 msgid "Set the language used throughout FlatCAM." msgstr "Définissez la langue utilisée dans FlatCAM." -#: flatcamGUI/PreferencesUI.py:1148 +#: flatcamGUI/PreferencesUI.py:1149 msgid "Apply Language" msgstr "Appliquer la langue" -#: flatcamGUI/PreferencesUI.py:1149 +#: flatcamGUI/PreferencesUI.py:1150 msgid "" "Set the language used throughout FlatCAM.\n" "The app will restart after click.Windows: When FlatCAM is installed in " @@ -9293,11 +9290,11 @@ msgstr "" "fonctions de sécurité. Dans ce cas, la langue sera\n" "appliqué au prochain démarrage de l'application." -#: flatcamGUI/PreferencesUI.py:1161 +#: flatcamGUI/PreferencesUI.py:1162 msgid "Version Check" msgstr "Vérific. de la version" -#: flatcamGUI/PreferencesUI.py:1163 flatcamGUI/PreferencesUI.py:1168 +#: flatcamGUI/PreferencesUI.py:1164 flatcamGUI/PreferencesUI.py:1169 msgid "" "Check this box if you want to check\n" "for a new version automatically at startup." @@ -9305,11 +9302,11 @@ msgstr "" "Cochez cette case si vous voulez vérifier\n" "pour une nouvelle version automatiquement au démarrage." -#: flatcamGUI/PreferencesUI.py:1176 +#: flatcamGUI/PreferencesUI.py:1177 msgid "Send Stats" msgstr "Envoyer des stat" -#: flatcamGUI/PreferencesUI.py:1178 flatcamGUI/PreferencesUI.py:1183 +#: flatcamGUI/PreferencesUI.py:1179 flatcamGUI/PreferencesUI.py:1184 msgid "" "Check this box if you agree to send anonymous\n" "stats automatically at startup, to help improve FlatCAM." @@ -9317,11 +9314,11 @@ msgstr "" "Cochez cette case si vous acceptez d'envoyer un message anonyme\n" "stats automatiquement au démarrage, pour aider à améliorer FlatCAM." -#: flatcamGUI/PreferencesUI.py:1193 +#: flatcamGUI/PreferencesUI.py:1194 msgid "Pan Button" msgstr "Bouton pan" -#: flatcamGUI/PreferencesUI.py:1194 +#: flatcamGUI/PreferencesUI.py:1195 msgid "" "Select the mouse button to use for panning:\n" "- MMB --> Middle Mouse Button\n" @@ -9331,35 +9328,35 @@ msgstr "" "- MMB -> Bouton central de la souris\n" "- RMB -> bouton droit de la souris" -#: flatcamGUI/PreferencesUI.py:1197 +#: flatcamGUI/PreferencesUI.py:1198 msgid "MMB" msgstr "MMB" -#: flatcamGUI/PreferencesUI.py:1198 +#: flatcamGUI/PreferencesUI.py:1199 msgid "RMB" msgstr "RMB" -#: flatcamGUI/PreferencesUI.py:1204 +#: flatcamGUI/PreferencesUI.py:1205 msgid "Multiple Sel" msgstr "Sél multiple" -#: flatcamGUI/PreferencesUI.py:1205 +#: flatcamGUI/PreferencesUI.py:1206 msgid "Select the key used for multiple selection." msgstr "Sélectionnez la clé utilisée pour la sélection multiple." -#: flatcamGUI/PreferencesUI.py:1206 +#: flatcamGUI/PreferencesUI.py:1207 msgid "CTRL" msgstr "CTRL" -#: flatcamGUI/PreferencesUI.py:1207 +#: flatcamGUI/PreferencesUI.py:1208 msgid "SHIFT" msgstr "SHIFT" -#: flatcamGUI/PreferencesUI.py:1213 +#: flatcamGUI/PreferencesUI.py:1214 msgid "Workers number" msgstr "No de travailleurs" -#: flatcamGUI/PreferencesUI.py:1215 flatcamGUI/PreferencesUI.py:1224 +#: flatcamGUI/PreferencesUI.py:1216 flatcamGUI/PreferencesUI.py:1225 msgid "" "The number of Qthreads made available to the App.\n" "A bigger number may finish the jobs more quickly but\n" @@ -9375,11 +9372,11 @@ msgstr "" "La valeur par défaut est 2.\n" "Après modification, il sera appliqué au prochain démarrage de l'application." -#: flatcamGUI/PreferencesUI.py:1237 +#: flatcamGUI/PreferencesUI.py:1238 msgid "Geo Tolerance" msgstr "Géo Tolérance" -#: flatcamGUI/PreferencesUI.py:1239 flatcamGUI/PreferencesUI.py:1248 +#: flatcamGUI/PreferencesUI.py:1240 flatcamGUI/PreferencesUI.py:1249 msgid "" "This value can counter the effect of the Circle Steps\n" "parameter. Default value is 0.01.\n" @@ -9395,11 +9392,11 @@ msgstr "" "performance. Une valeur plus élevée fournira plus\n" "performance au détriment du niveau de détail." -#: flatcamGUI/PreferencesUI.py:1263 +#: flatcamGUI/PreferencesUI.py:1264 msgid "\"Open\" behavior" msgstr "Comportement \"ouvert\"" -#: flatcamGUI/PreferencesUI.py:1265 +#: flatcamGUI/PreferencesUI.py:1266 msgid "" "When checked the path for the last saved file is used when saving files,\n" "and the path for the last opened file is used when opening files.\n" @@ -9416,11 +9413,11 @@ msgstr "" "dernier: soit le\n" "chemin pour sauvegarder les fichiers ou chemin pour ouvrir les fichiers." -#: flatcamGUI/PreferencesUI.py:1274 +#: flatcamGUI/PreferencesUI.py:1275 msgid "Save Compressed Project" msgstr "Enregistrer le projet compressé" -#: flatcamGUI/PreferencesUI.py:1276 +#: flatcamGUI/PreferencesUI.py:1277 msgid "" "Whether to save a compressed or uncompressed project.\n" "When checked it will save a compressed FlatCAM project." @@ -9428,11 +9425,11 @@ msgstr "" "Que ce soit pour sauvegarder un projet compressé ou non compressé.\n" "Lorsque coché, un projet FlatCAM compressé sera enregistré." -#: flatcamGUI/PreferencesUI.py:1285 +#: flatcamGUI/PreferencesUI.py:1286 msgid "Compression" msgstr "Compression" -#: flatcamGUI/PreferencesUI.py:1287 +#: flatcamGUI/PreferencesUI.py:1288 msgid "" "The level of compression used when saving\n" "a FlatCAM project. Higher value means better compression\n" @@ -9443,11 +9440,11 @@ msgstr "" "compression\n" "mais nécessitent plus d’utilisation de RAM et plus de temps de traitement." -#: flatcamGUI/PreferencesUI.py:1299 +#: flatcamGUI/PreferencesUI.py:1300 msgid "Bookmarks limit" msgstr "Limite de favoris" -#: flatcamGUI/PreferencesUI.py:1301 +#: flatcamGUI/PreferencesUI.py:1302 msgid "" "The maximum number of bookmarks that may be installed in the menu.\n" "The number of bookmarks in the bookmark manager may be greater\n" @@ -9457,11 +9454,11 @@ msgstr "" "Le nombre de signets dans le gestionnaire de favoris peut être supérieur\n" "mais le menu tiendra seulement beaucoup." -#: flatcamGUI/PreferencesUI.py:1310 +#: flatcamGUI/PreferencesUI.py:1311 msgid "Allow Machinist Unsafe Settings" msgstr "Autoriser les paramètres dangereux du machiniste" -#: flatcamGUI/PreferencesUI.py:1312 +#: flatcamGUI/PreferencesUI.py:1313 msgid "" "If checked, some of the application settings will be allowed\n" "to have values that are usually unsafe to use.\n" @@ -9478,20 +9475,20 @@ msgstr "" "<>: Ne changez rien à moins que vous sachiez ce que vous " "faites !!!" -#: flatcamGUI/PreferencesUI.py:1333 +#: flatcamGUI/PreferencesUI.py:1334 msgid "Gerber General" msgstr "Gerber Général" -#: flatcamGUI/PreferencesUI.py:1351 +#: flatcamGUI/PreferencesUI.py:1352 msgid "M-Color" msgstr "Couleur-M" -#: flatcamGUI/PreferencesUI.py:1365 flatcamGUI/PreferencesUI.py:3128 -#: flatcamGUI/PreferencesUI.py:3664 flatcamGUI/PreferencesUI.py:6079 +#: flatcamGUI/PreferencesUI.py:1366 flatcamGUI/PreferencesUI.py:3129 +#: flatcamGUI/PreferencesUI.py:3665 flatcamGUI/PreferencesUI.py:6080 msgid "Circle Steps" msgstr "Étapes de cercle" -#: flatcamGUI/PreferencesUI.py:1367 +#: flatcamGUI/PreferencesUI.py:1368 msgid "" "The number of circle steps for Gerber \n" "circular aperture linear approximation." @@ -9499,11 +9496,11 @@ msgstr "" "Le nombre d'étapes du cercle pour Gerber\n" "approximation linéaire ouverture circulaire." -#: flatcamGUI/PreferencesUI.py:1379 +#: flatcamGUI/PreferencesUI.py:1380 msgid "Default Values" msgstr "Défauts" -#: flatcamGUI/PreferencesUI.py:1381 +#: flatcamGUI/PreferencesUI.py:1382 msgid "" "Those values will be used as fallback values\n" "in case that they are not found in the Gerber file." @@ -9511,25 +9508,25 @@ msgstr "" "Ces valeurs seront utilisées comme valeurs de secours\n" "au cas où ils ne seraient pas trouvés dans le fichier Gerber." -#: flatcamGUI/PreferencesUI.py:1390 flatcamGUI/PreferencesUI.py:1396 -#: flatcamGUI/PreferencesUI.py:1765 flatcamGUI/PreferencesUI.py:1771 +#: flatcamGUI/PreferencesUI.py:1391 flatcamGUI/PreferencesUI.py:1397 +#: flatcamGUI/PreferencesUI.py:1766 flatcamGUI/PreferencesUI.py:1772 msgid "The units used in the Gerber file." msgstr "Les unités utilisées dans le fichier Gerber." -#: flatcamGUI/PreferencesUI.py:1393 flatcamGUI/PreferencesUI.py:1768 -#: flatcamGUI/PreferencesUI.py:2124 flatcamGUI/PreferencesUI.py:2222 -#: flatcamGUI/PreferencesUI.py:2691 flatcamTools/ToolCalculators.py:61 +#: flatcamGUI/PreferencesUI.py:1394 flatcamGUI/PreferencesUI.py:1769 +#: flatcamGUI/PreferencesUI.py:2125 flatcamGUI/PreferencesUI.py:2223 +#: flatcamGUI/PreferencesUI.py:2692 flatcamTools/ToolCalculators.py:61 #: flatcamTools/ToolPcbWizard.py:125 msgid "INCH" msgstr "PO" -#: flatcamGUI/PreferencesUI.py:1403 flatcamGUI/PreferencesUI.py:1817 -#: flatcamGUI/PreferencesUI.py:2759 +#: flatcamGUI/PreferencesUI.py:1404 flatcamGUI/PreferencesUI.py:1818 +#: flatcamGUI/PreferencesUI.py:2760 msgid "Zeros" msgstr "Zéros" -#: flatcamGUI/PreferencesUI.py:1406 flatcamGUI/PreferencesUI.py:1416 -#: flatcamGUI/PreferencesUI.py:1820 flatcamGUI/PreferencesUI.py:1830 +#: flatcamGUI/PreferencesUI.py:1407 flatcamGUI/PreferencesUI.py:1417 +#: flatcamGUI/PreferencesUI.py:1821 flatcamGUI/PreferencesUI.py:1831 msgid "" "This sets the type of Gerber zeros.\n" "If LZ then Leading Zeros are removed and\n" @@ -9543,41 +9540,41 @@ msgstr "" "Si TZ est coché, les zéros de fin sont supprimés\n" "et les principaux zéros sont conservés." -#: flatcamGUI/PreferencesUI.py:1413 flatcamGUI/PreferencesUI.py:1827 -#: flatcamGUI/PreferencesUI.py:2198 flatcamGUI/PreferencesUI.py:2769 +#: flatcamGUI/PreferencesUI.py:1414 flatcamGUI/PreferencesUI.py:1828 +#: flatcamGUI/PreferencesUI.py:2199 flatcamGUI/PreferencesUI.py:2770 #: flatcamTools/ToolPcbWizard.py:111 msgid "LZ" msgstr "LZ" -#: flatcamGUI/PreferencesUI.py:1414 flatcamGUI/PreferencesUI.py:1828 -#: flatcamGUI/PreferencesUI.py:2199 flatcamGUI/PreferencesUI.py:2770 +#: flatcamGUI/PreferencesUI.py:1415 flatcamGUI/PreferencesUI.py:1829 +#: flatcamGUI/PreferencesUI.py:2200 flatcamGUI/PreferencesUI.py:2771 #: flatcamTools/ToolPcbWizard.py:112 msgid "TZ" msgstr "TZ" -#: flatcamGUI/PreferencesUI.py:1435 +#: flatcamGUI/PreferencesUI.py:1436 msgid "Gerber Options" msgstr "Options de Gerber" -#: flatcamGUI/PreferencesUI.py:1509 flatcamGUI/PreferencesUI.py:3601 -#: flatcamGUI/PreferencesUI.py:4075 flatcamTools/ToolNonCopperClear.py:170 +#: flatcamGUI/PreferencesUI.py:1510 flatcamGUI/PreferencesUI.py:3602 +#: flatcamGUI/PreferencesUI.py:4076 flatcamTools/ToolNonCopperClear.py:170 msgid "Conv." msgstr "Conv." -#: flatcamGUI/PreferencesUI.py:1513 +#: flatcamGUI/PreferencesUI.py:1514 msgid "Combine Passes" msgstr "Combiner les passes" -#: flatcamGUI/PreferencesUI.py:1591 +#: flatcamGUI/PreferencesUI.py:1592 msgid "Gerber Adv. Options" msgstr "Options avancées Gerber" -#: flatcamGUI/PreferencesUI.py:1595 flatcamGUI/PreferencesUI.py:2544 -#: flatcamGUI/PreferencesUI.py:3399 +#: flatcamGUI/PreferencesUI.py:1596 flatcamGUI/PreferencesUI.py:2545 +#: flatcamGUI/PreferencesUI.py:3400 msgid "Advanced Options" msgstr "Options avancées" -#: flatcamGUI/PreferencesUI.py:1597 +#: flatcamGUI/PreferencesUI.py:1598 msgid "" "A list of Gerber advanced parameters.\n" "Those parameters are available only for\n" @@ -9587,11 +9584,11 @@ msgstr "" "Ces paramètres ne sont disponibles que pour\n" "App avancée. Niveau." -#: flatcamGUI/PreferencesUI.py:1616 +#: flatcamGUI/PreferencesUI.py:1617 msgid "Table Show/Hide" msgstr "Tableau Afficher/Masquer" -#: flatcamGUI/PreferencesUI.py:1618 +#: flatcamGUI/PreferencesUI.py:1619 msgid "" "Toggle the display of the Gerber Apertures Table.\n" "Also, on hide, it will delete all mark shapes\n" @@ -9601,15 +9598,15 @@ msgstr "" "En outre, sur cacher, il va supprimer toutes les formes de marque\n" "qui sont dessinés sur une toile." -#: flatcamGUI/PreferencesUI.py:1693 +#: flatcamGUI/PreferencesUI.py:1694 msgid "Exterior" msgstr "Extérieur" -#: flatcamGUI/PreferencesUI.py:1694 +#: flatcamGUI/PreferencesUI.py:1695 msgid "Interior" msgstr "Intérieur" -#: flatcamGUI/PreferencesUI.py:1702 +#: flatcamGUI/PreferencesUI.py:1703 msgid "" "Buffering type:\n" "- None --> best performance, fast file loading but no so good display\n" @@ -9623,19 +9620,19 @@ msgstr "" "par défaut.\n" "<< AVERTISSEMENT >>: Ne changez cela que si vous savez ce que vous faites !!!" -#: flatcamGUI/PreferencesUI.py:1707 flatcamGUI/PreferencesUI.py:4821 -#: flatcamGUI/PreferencesUI.py:6377 flatcamTools/ToolFiducials.py:201 +#: flatcamGUI/PreferencesUI.py:1708 flatcamGUI/PreferencesUI.py:4822 +#: flatcamGUI/PreferencesUI.py:6378 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 msgid "None" msgstr "Aucun" -#: flatcamGUI/PreferencesUI.py:1713 +#: flatcamGUI/PreferencesUI.py:1714 msgid "Simplify" msgstr "Simplifier" -#: flatcamGUI/PreferencesUI.py:1715 +#: flatcamGUI/PreferencesUI.py:1716 msgid "" "When checked all the Gerber polygons will be\n" "loaded with simplification having a set tolerance.\n" @@ -9645,23 +9642,23 @@ msgstr "" "chargé de simplification ayant une tolérance définie.\n" "<< AVERTISSEMENT >>: Ne changez cela que si vous savez ce que vous faites !!!" -#: flatcamGUI/PreferencesUI.py:1722 +#: flatcamGUI/PreferencesUI.py:1723 msgid "Tolerance" msgstr "Tolérance" -#: flatcamGUI/PreferencesUI.py:1723 +#: flatcamGUI/PreferencesUI.py:1724 msgid "Tolerance for polygon simplification." msgstr "Tolérance pour la simplification des polygones." -#: flatcamGUI/PreferencesUI.py:1748 +#: flatcamGUI/PreferencesUI.py:1749 msgid "Gerber Export" msgstr "Gerber exportation" -#: flatcamGUI/PreferencesUI.py:1752 flatcamGUI/PreferencesUI.py:2675 +#: flatcamGUI/PreferencesUI.py:1753 flatcamGUI/PreferencesUI.py:2676 msgid "Export Options" msgstr "Options d'exportation" -#: flatcamGUI/PreferencesUI.py:1754 +#: flatcamGUI/PreferencesUI.py:1755 msgid "" "The parameters set here are used in the file exported\n" "when using the File -> Export -> Export Gerber menu entry." @@ -9670,11 +9667,11 @@ msgstr "" "lors de l'utilisation de l'entrée de menu Fichier -> Exporter -> Exporter " "Gerber." -#: flatcamGUI/PreferencesUI.py:1777 flatcamGUI/PreferencesUI.py:2700 +#: flatcamGUI/PreferencesUI.py:1778 flatcamGUI/PreferencesUI.py:2701 msgid "Int/Decimals" msgstr "Entiers/Décim" -#: flatcamGUI/PreferencesUI.py:1779 +#: flatcamGUI/PreferencesUI.py:1780 msgid "" "The number of digits in the whole part of the number\n" "and in the fractional part of the number." @@ -9682,7 +9679,7 @@ msgstr "" "Le nombre de chiffres dans la partie entière du numéro\n" "et dans la fraction du nombre." -#: flatcamGUI/PreferencesUI.py:1792 +#: flatcamGUI/PreferencesUI.py:1793 msgid "" "This numbers signify the number of digits in\n" "the whole part of Gerber coordinates." @@ -9690,7 +9687,7 @@ msgstr "" "Ces chiffres représentent le nombre de chiffres en\n" "toute la partie des coordonnées de Gerber." -#: flatcamGUI/PreferencesUI.py:1808 +#: flatcamGUI/PreferencesUI.py:1809 msgid "" "This numbers signify the number of digits in\n" "the decimal part of Gerber coordinates." @@ -9698,16 +9695,16 @@ msgstr "" "Ces chiffres représentent le nombre de chiffres en\n" "la partie décimale des coordonnées de Gerber." -#: flatcamGUI/PreferencesUI.py:1853 +#: flatcamGUI/PreferencesUI.py:1854 msgid "A list of Gerber Editor parameters." msgstr "Une liste de paramètres de l'éditeur Gerber." -#: flatcamGUI/PreferencesUI.py:1861 flatcamGUI/PreferencesUI.py:2834 -#: flatcamGUI/PreferencesUI.py:3579 flatcamGUI/PreferencesUI.py:6040 +#: flatcamGUI/PreferencesUI.py:1862 flatcamGUI/PreferencesUI.py:2835 +#: flatcamGUI/PreferencesUI.py:3580 flatcamGUI/PreferencesUI.py:6041 msgid "Selection limit" msgstr "Limite de sélection" -#: flatcamGUI/PreferencesUI.py:1863 +#: flatcamGUI/PreferencesUI.py:1864 msgid "" "Set the number of selected Gerber geometry\n" "items above which the utility geometry\n" @@ -9721,23 +9718,23 @@ msgstr "" "Augmente les performances lors du déplacement d'un\n" "grand nombre d'éléments géométriques." -#: flatcamGUI/PreferencesUI.py:1876 +#: flatcamGUI/PreferencesUI.py:1877 msgid "New Aperture code" msgstr "Nouveau code d'ouverture" -#: flatcamGUI/PreferencesUI.py:1889 +#: flatcamGUI/PreferencesUI.py:1890 msgid "New Aperture size" msgstr "Nouvelle taille d'ouverture" -#: flatcamGUI/PreferencesUI.py:1891 +#: flatcamGUI/PreferencesUI.py:1892 msgid "Size for the new aperture" msgstr "Taille pour la nouvelle ouverture" -#: flatcamGUI/PreferencesUI.py:1902 +#: flatcamGUI/PreferencesUI.py:1903 msgid "New Aperture type" msgstr "Nouveau type d'ouverture" -#: flatcamGUI/PreferencesUI.py:1904 +#: flatcamGUI/PreferencesUI.py:1905 msgid "" "Type for the new aperture.\n" "Can be 'C', 'R' or 'O'." @@ -9745,35 +9742,35 @@ msgstr "" "Tapez pour la nouvelle ouverture.\n" "Peut être 'C', 'R' ou 'O'." -#: flatcamGUI/PreferencesUI.py:1926 +#: flatcamGUI/PreferencesUI.py:1927 msgid "Aperture Dimensions" msgstr "Dimensions d'ouverture" -#: flatcamGUI/PreferencesUI.py:1928 flatcamGUI/PreferencesUI.py:3146 -#: flatcamGUI/PreferencesUI.py:3984 +#: flatcamGUI/PreferencesUI.py:1929 flatcamGUI/PreferencesUI.py:3147 +#: flatcamGUI/PreferencesUI.py:3985 msgid "Diameters of the cutting tools, separated by ','" msgstr "Diamètres des outils de coupe, séparés par ','" -#: flatcamGUI/PreferencesUI.py:1934 +#: flatcamGUI/PreferencesUI.py:1935 msgid "Linear Pad Array" msgstr "Tableau de Pad Linéaire" -#: flatcamGUI/PreferencesUI.py:1938 flatcamGUI/PreferencesUI.py:2878 -#: flatcamGUI/PreferencesUI.py:3026 +#: flatcamGUI/PreferencesUI.py:1939 flatcamGUI/PreferencesUI.py:2879 +#: flatcamGUI/PreferencesUI.py:3027 msgid "Linear Direction" msgstr "Direction linéaire" -#: flatcamGUI/PreferencesUI.py:1978 +#: flatcamGUI/PreferencesUI.py:1979 msgid "Circular Pad Array" msgstr "Tableau de Pad Circulaire" -#: flatcamGUI/PreferencesUI.py:1982 flatcamGUI/PreferencesUI.py:2924 -#: flatcamGUI/PreferencesUI.py:3074 +#: flatcamGUI/PreferencesUI.py:1983 flatcamGUI/PreferencesUI.py:2925 +#: flatcamGUI/PreferencesUI.py:3075 msgid "Circular Direction" msgstr "Direction circulaire" -#: flatcamGUI/PreferencesUI.py:1984 flatcamGUI/PreferencesUI.py:2926 -#: flatcamGUI/PreferencesUI.py:3076 +#: flatcamGUI/PreferencesUI.py:1985 flatcamGUI/PreferencesUI.py:2927 +#: flatcamGUI/PreferencesUI.py:3077 msgid "" "Direction for circular array.\n" "Can be CW = clockwise or CCW = counter clockwise." @@ -9781,48 +9778,48 @@ msgstr "" "Direction pour tableau circulaire.\n" "Peut être CW = sens horaire ou CCW = sens antihoraire." -#: flatcamGUI/PreferencesUI.py:1995 flatcamGUI/PreferencesUI.py:2937 -#: flatcamGUI/PreferencesUI.py:3087 +#: flatcamGUI/PreferencesUI.py:1996 flatcamGUI/PreferencesUI.py:2938 +#: flatcamGUI/PreferencesUI.py:3088 msgid "Circular Angle" msgstr "Angle Circulaire" -#: flatcamGUI/PreferencesUI.py:2014 +#: flatcamGUI/PreferencesUI.py:2015 msgid "Distance at which to buffer the Gerber element." msgstr "Distance à laquelle tamponner l'élément de Gerber." -#: flatcamGUI/PreferencesUI.py:2023 +#: flatcamGUI/PreferencesUI.py:2024 msgid "Scale Tool" msgstr "Outil d'échelle" -#: flatcamGUI/PreferencesUI.py:2029 +#: flatcamGUI/PreferencesUI.py:2030 msgid "Factor to scale the Gerber element." msgstr "Facteur d'échelle de l'élément de Gerber." -#: flatcamGUI/PreferencesUI.py:2042 +#: flatcamGUI/PreferencesUI.py:2043 msgid "Threshold low" msgstr "Seuil bas" -#: flatcamGUI/PreferencesUI.py:2044 +#: flatcamGUI/PreferencesUI.py:2045 msgid "Threshold value under which the apertures are not marked." msgstr "Valeur seuil sous laquelle les ouvertures ne sont pas marquées." -#: flatcamGUI/PreferencesUI.py:2054 +#: flatcamGUI/PreferencesUI.py:2055 msgid "Threshold high" msgstr "Seuil haut" -#: flatcamGUI/PreferencesUI.py:2056 +#: flatcamGUI/PreferencesUI.py:2057 msgid "Threshold value over which the apertures are not marked." msgstr "Valeur seuil sur laquelle les ouvertures ne sont pas marquées." -#: flatcamGUI/PreferencesUI.py:2074 +#: flatcamGUI/PreferencesUI.py:2075 msgid "Excellon General" msgstr "Excellon Général" -#: flatcamGUI/PreferencesUI.py:2097 +#: flatcamGUI/PreferencesUI.py:2098 msgid "Excellon Format" msgstr "Format Excellon" -#: flatcamGUI/PreferencesUI.py:2099 +#: flatcamGUI/PreferencesUI.py:2100 msgid "" "The NC drill files, usually named Excellon files\n" "are files that can be found in different formats.\n" @@ -9864,12 +9861,12 @@ msgstr "" "Sprint Layout 2: 4 INCH LZ\n" "KiCAD 3: 5 IN TZ" -#: flatcamGUI/PreferencesUI.py:2127 +#: flatcamGUI/PreferencesUI.py:2128 msgid "Default values for INCH are 2:4" msgstr "Les valeurs par défaut pour INCH sont 2: 4" -#: flatcamGUI/PreferencesUI.py:2134 flatcamGUI/PreferencesUI.py:2165 -#: flatcamGUI/PreferencesUI.py:2714 +#: flatcamGUI/PreferencesUI.py:2135 flatcamGUI/PreferencesUI.py:2166 +#: flatcamGUI/PreferencesUI.py:2715 msgid "" "This numbers signify the number of digits in\n" "the whole part of Excellon coordinates." @@ -9877,8 +9874,8 @@ msgstr "" "Ces chiffres représentent le nombre de chiffres en\n" "toute la partie des coordonnées Excellon." -#: flatcamGUI/PreferencesUI.py:2147 flatcamGUI/PreferencesUI.py:2178 -#: flatcamGUI/PreferencesUI.py:2727 +#: flatcamGUI/PreferencesUI.py:2148 flatcamGUI/PreferencesUI.py:2179 +#: flatcamGUI/PreferencesUI.py:2728 msgid "" "This numbers signify the number of digits in\n" "the decimal part of Excellon coordinates." @@ -9886,19 +9883,19 @@ msgstr "" "Ces chiffres représentent le nombre de chiffres en\n" "la partie décimale des coordonnées Excellon." -#: flatcamGUI/PreferencesUI.py:2155 +#: flatcamGUI/PreferencesUI.py:2156 msgid "METRIC" msgstr "MÉTRIQUE" -#: flatcamGUI/PreferencesUI.py:2158 +#: flatcamGUI/PreferencesUI.py:2159 msgid "Default values for METRIC are 3:3" msgstr "Les valeurs par défaut pour MÉTRIQUE sont 3: 3" -#: flatcamGUI/PreferencesUI.py:2187 +#: flatcamGUI/PreferencesUI.py:2188 msgid "Default Zeros" msgstr "Zéros par Défaut" -#: flatcamGUI/PreferencesUI.py:2190 flatcamGUI/PreferencesUI.py:2762 +#: flatcamGUI/PreferencesUI.py:2191 flatcamGUI/PreferencesUI.py:2763 msgid "" "This sets the type of Excellon zeros.\n" "If LZ then Leading Zeros are kept and\n" @@ -9912,7 +9909,7 @@ msgstr "" "Si TZ est coché, les zéros suivants sont conservés\n" "et les zéros non significatifs sont supprimés." -#: flatcamGUI/PreferencesUI.py:2201 +#: flatcamGUI/PreferencesUI.py:2202 msgid "" "This sets the default type of Excellon zeros.\n" "If it is not detected in the parsed file the value here\n" @@ -9928,11 +9925,11 @@ msgstr "" "Si TZ est coché, les zéros suivants sont conservés\n" "et les zéros non significatifs sont supprimés." -#: flatcamGUI/PreferencesUI.py:2211 +#: flatcamGUI/PreferencesUI.py:2212 msgid "Default Units" msgstr "Unités par Défaut" -#: flatcamGUI/PreferencesUI.py:2214 +#: flatcamGUI/PreferencesUI.py:2215 msgid "" "This sets the default units of Excellon files.\n" "If it is not detected in the parsed file the value here\n" @@ -9944,7 +9941,7 @@ msgstr "" "sera utilisé. Certains fichiers Excellon n’ont pas d’en-tête\n" "donc ce paramètre sera utilisé." -#: flatcamGUI/PreferencesUI.py:2225 +#: flatcamGUI/PreferencesUI.py:2226 msgid "" "This sets the units of Excellon files.\n" "Some Excellon files don't have an header\n" @@ -9954,19 +9951,19 @@ msgstr "" "Certains fichiers Excellon n'ont pas d'en-tête\n" "donc ce paramètre sera utilisé." -#: flatcamGUI/PreferencesUI.py:2231 +#: flatcamGUI/PreferencesUI.py:2232 msgid "Update Export settings" msgstr "Mettre à jour les param d'export" -#: flatcamGUI/PreferencesUI.py:2239 +#: flatcamGUI/PreferencesUI.py:2240 msgid "Excellon Optimization" msgstr "Optimisation Excellon" -#: flatcamGUI/PreferencesUI.py:2242 +#: flatcamGUI/PreferencesUI.py:2243 msgid "Algorithm:" msgstr "Algorithme:" -#: flatcamGUI/PreferencesUI.py:2244 flatcamGUI/PreferencesUI.py:2261 +#: flatcamGUI/PreferencesUI.py:2245 flatcamGUI/PreferencesUI.py:2262 msgid "" "This sets the optimization type for the Excellon drill path.\n" "If <> is checked then Google OR-Tools algorithm with\n" @@ -9989,19 +9986,19 @@ msgstr "" "Si ce contrôle est désactivé, FlatCAM fonctionne en mode 32 bits et utilise\n" "Algorithme Travelling Salesman pour l’optimisation des chemins." -#: flatcamGUI/PreferencesUI.py:2256 +#: flatcamGUI/PreferencesUI.py:2257 msgid "MetaHeuristic" msgstr "MetaHeuristic" -#: flatcamGUI/PreferencesUI.py:2258 +#: flatcamGUI/PreferencesUI.py:2259 msgid "TSA" msgstr "TSA" -#: flatcamGUI/PreferencesUI.py:2273 +#: flatcamGUI/PreferencesUI.py:2274 msgid "Optimization Time" msgstr "Temps d'optimisation" -#: flatcamGUI/PreferencesUI.py:2276 +#: flatcamGUI/PreferencesUI.py:2277 msgid "" "When OR-Tools Metaheuristic (MH) is enabled there is a\n" "maximum threshold for how much time is spent doing the\n" @@ -10013,11 +10010,11 @@ msgstr "" "optimisation du chemin. Cette durée maximale est définie ici.\n" "En secondes." -#: flatcamGUI/PreferencesUI.py:2319 +#: flatcamGUI/PreferencesUI.py:2320 msgid "Excellon Options" msgstr "Les options Excellon" -#: flatcamGUI/PreferencesUI.py:2325 +#: flatcamGUI/PreferencesUI.py:2326 msgid "" "Parameters used to create a CNC Job object\n" "for this drill object." @@ -10025,11 +10022,11 @@ msgstr "" "Paramètres utilisés pour créer un objet Travail CNC\n" "pour cet objet de forage." -#: flatcamGUI/PreferencesUI.py:2444 flatcamGUI/PreferencesUI.py:3358 +#: flatcamGUI/PreferencesUI.py:2445 flatcamGUI/PreferencesUI.py:3359 msgid "Duration" msgstr "Durée" -#: flatcamGUI/PreferencesUI.py:2474 +#: flatcamGUI/PreferencesUI.py:2475 msgid "" "Choose what to use for GCode generation:\n" "'Drills', 'Slots' or 'Both'.\n" @@ -10041,19 +10038,19 @@ msgstr "" "Lorsque vous choisissez \"Fentes\" ou \"Les Deux\", les fentes seront\n" "converti en forages." -#: flatcamGUI/PreferencesUI.py:2492 +#: flatcamGUI/PreferencesUI.py:2493 msgid "Create Geometry for milling holes." msgstr "Créer une géométrie pour fraiser des trous." -#: flatcamGUI/PreferencesUI.py:2524 +#: flatcamGUI/PreferencesUI.py:2525 msgid "Defaults" msgstr "Défauts" -#: flatcamGUI/PreferencesUI.py:2537 +#: flatcamGUI/PreferencesUI.py:2538 msgid "Excellon Adv. Options" msgstr "Excellon Opt. avancées" -#: flatcamGUI/PreferencesUI.py:2546 +#: flatcamGUI/PreferencesUI.py:2547 msgid "" "A list of Excellon advanced parameters.\n" "Those parameters are available only for\n" @@ -10063,19 +10060,19 @@ msgstr "" "Ces paramètres ne sont disponibles que pour\n" "App avancée. Niveau." -#: flatcamGUI/PreferencesUI.py:2567 +#: flatcamGUI/PreferencesUI.py:2568 msgid "Toolchange X,Y" msgstr "Changement d'outils X, Y" -#: flatcamGUI/PreferencesUI.py:2569 flatcamGUI/PreferencesUI.py:3413 +#: flatcamGUI/PreferencesUI.py:2570 flatcamGUI/PreferencesUI.py:3414 msgid "Toolchange X,Y position." msgstr "Changement d'outil en position X et Y." -#: flatcamGUI/PreferencesUI.py:2626 flatcamGUI/PreferencesUI.py:3500 +#: flatcamGUI/PreferencesUI.py:2627 flatcamGUI/PreferencesUI.py:3501 msgid "Spindle direction" msgstr "Direction du moteur" -#: flatcamGUI/PreferencesUI.py:2628 flatcamGUI/PreferencesUI.py:3502 +#: flatcamGUI/PreferencesUI.py:2629 flatcamGUI/PreferencesUI.py:3503 msgid "" "This sets the direction that the spindle is rotating.\n" "It can be either:\n" @@ -10087,11 +10084,11 @@ msgstr "" "- CW = dans le sens des aiguilles d'une montre ou\n" "- CCW = dans le sens antihoraire" -#: flatcamGUI/PreferencesUI.py:2639 flatcamGUI/PreferencesUI.py:3514 +#: flatcamGUI/PreferencesUI.py:2640 flatcamGUI/PreferencesUI.py:3515 msgid "Fast Plunge" msgstr "Plongée rapide" -#: flatcamGUI/PreferencesUI.py:2641 flatcamGUI/PreferencesUI.py:3516 +#: flatcamGUI/PreferencesUI.py:2642 flatcamGUI/PreferencesUI.py:3517 msgid "" "By checking this, the vertical move from\n" "Z_Toolchange to Z_move is done with G0,\n" @@ -10104,11 +10101,11 @@ msgstr "" "AVERTISSEMENT: le déplacement est effectué à l'aide de Toolchange X, Y " "coords." -#: flatcamGUI/PreferencesUI.py:2650 +#: flatcamGUI/PreferencesUI.py:2651 msgid "Fast Retract" msgstr "Retrait Rapide" -#: flatcamGUI/PreferencesUI.py:2652 +#: flatcamGUI/PreferencesUI.py:2653 msgid "" "Exit hole strategy.\n" " - When uncheked, while exiting the drilled hole the drill bit\n" @@ -10127,11 +10124,11 @@ msgstr "" "(hauteur de déplacement) est fait aussi vite que possible (G0) en un seul " "mouvement." -#: flatcamGUI/PreferencesUI.py:2671 +#: flatcamGUI/PreferencesUI.py:2672 msgid "Excellon Export" msgstr "Excellon exportation" -#: flatcamGUI/PreferencesUI.py:2677 +#: flatcamGUI/PreferencesUI.py:2678 msgid "" "The parameters set here are used in the file exported\n" "when using the File -> Export -> Export Excellon menu entry." @@ -10140,11 +10137,11 @@ msgstr "" "lors de l'utilisation de l'entrée de menu Fichier -> Exporter -> Exporter " "Excellon." -#: flatcamGUI/PreferencesUI.py:2688 flatcamGUI/PreferencesUI.py:2694 +#: flatcamGUI/PreferencesUI.py:2689 flatcamGUI/PreferencesUI.py:2695 msgid "The units used in the Excellon file." msgstr "Les unités utilisées dans le fichier Excellon." -#: flatcamGUI/PreferencesUI.py:2702 +#: flatcamGUI/PreferencesUI.py:2703 msgid "" "The NC drill files, usually named Excellon files\n" "are files that can be found in different formats.\n" @@ -10156,11 +10153,11 @@ msgstr "" "Ici, nous définissons le format utilisé lorsque le\n" "les coordonnées n'utilisent pas de période." -#: flatcamGUI/PreferencesUI.py:2736 +#: flatcamGUI/PreferencesUI.py:2737 msgid "Format" msgstr "Format" -#: flatcamGUI/PreferencesUI.py:2738 flatcamGUI/PreferencesUI.py:2748 +#: flatcamGUI/PreferencesUI.py:2739 flatcamGUI/PreferencesUI.py:2749 msgid "" "Select the kind of coordinates format used.\n" "Coordinates can be saved with decimal point or without.\n" @@ -10176,15 +10173,15 @@ msgstr "" "De plus, il faudra préciser si LZ = zéros non significatifs sont conservés\n" "ou TZ = les zéros de fin sont conservés." -#: flatcamGUI/PreferencesUI.py:2745 +#: flatcamGUI/PreferencesUI.py:2746 msgid "Decimal" msgstr "Décimal" -#: flatcamGUI/PreferencesUI.py:2746 +#: flatcamGUI/PreferencesUI.py:2747 msgid "No-Decimal" msgstr "Aucune décimale" -#: flatcamGUI/PreferencesUI.py:2772 +#: flatcamGUI/PreferencesUI.py:2773 msgid "" "This sets the default type of Excellon zeros.\n" "If LZ then Leading Zeros are kept and\n" @@ -10198,11 +10195,11 @@ msgstr "" "Si TZ est coché, les zéros suivants sont conservés\n" "et les zéros non significatifs sont supprimés." -#: flatcamGUI/PreferencesUI.py:2782 +#: flatcamGUI/PreferencesUI.py:2783 msgid "Slot type" msgstr "Type d'fentes" -#: flatcamGUI/PreferencesUI.py:2785 flatcamGUI/PreferencesUI.py:2795 +#: flatcamGUI/PreferencesUI.py:2786 flatcamGUI/PreferencesUI.py:2796 msgid "" "This sets how the slots will be exported.\n" "If ROUTED then the slots will be routed\n" @@ -10216,19 +10213,19 @@ msgstr "" "Si percé (G85) les emplacements seront exportés\n" "en utilisant la commande slot foré (G85)." -#: flatcamGUI/PreferencesUI.py:2792 +#: flatcamGUI/PreferencesUI.py:2793 msgid "Routed" msgstr "Routé" -#: flatcamGUI/PreferencesUI.py:2793 +#: flatcamGUI/PreferencesUI.py:2794 msgid "Drilled(G85)" msgstr "Percé(G85)" -#: flatcamGUI/PreferencesUI.py:2826 +#: flatcamGUI/PreferencesUI.py:2827 msgid "A list of Excellon Editor parameters." msgstr "Une liste des paramètres de l'éditeur Excellon." -#: flatcamGUI/PreferencesUI.py:2836 +#: flatcamGUI/PreferencesUI.py:2837 msgid "" "Set the number of selected Excellon geometry\n" "items above which the utility geometry\n" @@ -10242,19 +10239,19 @@ msgstr "" "Augmente les performances lors du déplacement d'un\n" "grand nombre d'éléments géométriques." -#: flatcamGUI/PreferencesUI.py:2849 flatcamGUI/PreferencesUI.py:4055 +#: flatcamGUI/PreferencesUI.py:2850 flatcamGUI/PreferencesUI.py:4056 msgid "New Tool Dia" msgstr "Nouvel Outil Dia" -#: flatcamGUI/PreferencesUI.py:2874 +#: flatcamGUI/PreferencesUI.py:2875 msgid "Linear Drill Array" msgstr "Matrice de Forage Linéaire" -#: flatcamGUI/PreferencesUI.py:2920 +#: flatcamGUI/PreferencesUI.py:2921 msgid "Circular Drill Array" msgstr "Matrice de Forage Circulaires" -#: flatcamGUI/PreferencesUI.py:2990 +#: flatcamGUI/PreferencesUI.py:2991 msgid "" "Angle at which the slot is placed.\n" "The precision is of max 2 decimals.\n" @@ -10266,19 +10263,19 @@ msgstr "" "La valeur minimale est: -359,99 degrés.\n" "La valeur maximale est: 360,00 degrés." -#: flatcamGUI/PreferencesUI.py:3009 +#: flatcamGUI/PreferencesUI.py:3010 msgid "Linear Slot Array" msgstr "Matrice de Fente Linéaire" -#: flatcamGUI/PreferencesUI.py:3070 +#: flatcamGUI/PreferencesUI.py:3071 msgid "Circular Slot Array" msgstr "Matrice de Fente Circulaire" -#: flatcamGUI/PreferencesUI.py:3108 +#: flatcamGUI/PreferencesUI.py:3109 msgid "Geometry General" msgstr "Géométrie Général" -#: flatcamGUI/PreferencesUI.py:3130 +#: flatcamGUI/PreferencesUI.py:3131 msgid "" "The number of circle steps for Geometry \n" "circle and arc shapes linear approximation." @@ -10286,11 +10283,11 @@ msgstr "" "Nombre d'étapes de cercle pour Géométrie\n" "approximation linéaire des formes de cercle et d'arc." -#: flatcamGUI/PreferencesUI.py:3161 +#: flatcamGUI/PreferencesUI.py:3162 msgid "Geometry Options" msgstr "Options de Géométrie" -#: flatcamGUI/PreferencesUI.py:3169 +#: flatcamGUI/PreferencesUI.py:3170 msgid "" "Create a CNC Job object\n" "tracing the contours of this\n" @@ -10300,11 +10297,11 @@ msgstr "" "traçant les contours de cette\n" "Objet de géométrie." -#: flatcamGUI/PreferencesUI.py:3211 +#: flatcamGUI/PreferencesUI.py:3212 msgid "Depth/Pass" msgstr "Profondeur/Pass" -#: flatcamGUI/PreferencesUI.py:3213 +#: flatcamGUI/PreferencesUI.py:3214 msgid "" "The depth to cut on each pass,\n" "when multidepth is enabled.\n" @@ -10318,11 +10315,11 @@ msgstr "" "c'est une fraction de la profondeur\n" "qui a une valeur négative." -#: flatcamGUI/PreferencesUI.py:3393 +#: flatcamGUI/PreferencesUI.py:3394 msgid "Geometry Adv. Options" msgstr "Géométrie Adv. Les options" -#: flatcamGUI/PreferencesUI.py:3401 +#: flatcamGUI/PreferencesUI.py:3402 msgid "" "A list of Geometry advanced parameters.\n" "Those parameters are available only for\n" @@ -10332,13 +10329,13 @@ msgstr "" "Ces paramètres ne sont disponibles que pour\n" "App avancée. Niveau." -#: flatcamGUI/PreferencesUI.py:3411 flatcamGUI/PreferencesUI.py:5470 -#: flatcamGUI/PreferencesUI.py:6517 flatcamTools/ToolCalibration.py:125 +#: flatcamGUI/PreferencesUI.py:3412 flatcamGUI/PreferencesUI.py:5471 +#: flatcamGUI/PreferencesUI.py:6518 flatcamTools/ToolCalibration.py:125 #: flatcamTools/ToolSolderPaste.py:239 msgid "Toolchange X-Y" msgstr "Changement d'outils X-Y" -#: flatcamGUI/PreferencesUI.py:3422 +#: flatcamGUI/PreferencesUI.py:3423 msgid "" "Height of the tool just after starting the work.\n" "Delete the value if you don't need this feature." @@ -10346,11 +10343,11 @@ msgstr "" "Hauteur de l'outil juste après le début du travail.\n" "Supprimez la valeur si vous n'avez pas besoin de cette fonctionnalité." -#: flatcamGUI/PreferencesUI.py:3526 +#: flatcamGUI/PreferencesUI.py:3527 msgid "Segment X size" msgstr "Taille du seg. X" -#: flatcamGUI/PreferencesUI.py:3528 +#: flatcamGUI/PreferencesUI.py:3529 msgid "" "The size of the trace segment on the X axis.\n" "Useful for auto-leveling.\n" @@ -10360,11 +10357,11 @@ msgstr "" "Utile pour le nivellement automatique.\n" "Une valeur de 0 signifie aucune segmentation sur l'axe X." -#: flatcamGUI/PreferencesUI.py:3542 +#: flatcamGUI/PreferencesUI.py:3543 msgid "Segment Y size" msgstr "Taille du seg. Y" -#: flatcamGUI/PreferencesUI.py:3544 +#: flatcamGUI/PreferencesUI.py:3545 msgid "" "The size of the trace segment on the Y axis.\n" "Useful for auto-leveling.\n" @@ -10374,15 +10371,15 @@ msgstr "" "Utile pour le nivellement automatique.\n" "Une valeur de 0 signifie aucune segmentation sur l'axe Y." -#: flatcamGUI/PreferencesUI.py:3565 +#: flatcamGUI/PreferencesUI.py:3566 msgid "Geometry Editor" msgstr "Éditeur de Géométrie" -#: flatcamGUI/PreferencesUI.py:3571 +#: flatcamGUI/PreferencesUI.py:3572 msgid "A list of Geometry Editor parameters." msgstr "Une liste de paramètres de L'éditeur de Géométrie." -#: flatcamGUI/PreferencesUI.py:3581 flatcamGUI/PreferencesUI.py:6042 +#: flatcamGUI/PreferencesUI.py:3582 flatcamGUI/PreferencesUI.py:6043 msgid "" "Set the number of selected geometry\n" "items above which the utility geometry\n" @@ -10396,11 +10393,11 @@ msgstr "" "Augmente les performances lors du déplacement d'un\n" "grand nombre d'éléments géométriques." -#: flatcamGUI/PreferencesUI.py:3613 +#: flatcamGUI/PreferencesUI.py:3614 msgid "CNC Job General" msgstr "CNCJob Général" -#: flatcamGUI/PreferencesUI.py:3666 +#: flatcamGUI/PreferencesUI.py:3667 msgid "" "The number of circle steps for GCode \n" "circle and arc shapes linear approximation." @@ -10408,11 +10405,11 @@ msgstr "" "Nombre d'étapes du cercle pour GCode\n" "approximation linéaire des formes de cercle et d'arc." -#: flatcamGUI/PreferencesUI.py:3675 +#: flatcamGUI/PreferencesUI.py:3676 msgid "Travel dia" msgstr "Voyage DIa" -#: flatcamGUI/PreferencesUI.py:3677 +#: flatcamGUI/PreferencesUI.py:3678 msgid "" "The width of the travel lines to be\n" "rendered in the plot." @@ -10420,11 +10417,11 @@ msgstr "" "La largeur des lignes de voyage à être\n" "rendu dans l'intrigue." -#: flatcamGUI/PreferencesUI.py:3693 +#: flatcamGUI/PreferencesUI.py:3694 msgid "Coordinates decimals" msgstr "Coord décimales" -#: flatcamGUI/PreferencesUI.py:3695 +#: flatcamGUI/PreferencesUI.py:3696 msgid "" "The number of decimals to be used for \n" "the X, Y, Z coordinates in CNC code (GCODE, etc.)" @@ -10432,11 +10429,11 @@ msgstr "" "Le nombre de décimales à utiliser pour\n" "les coordonnées X, Y, Z en code CNC (GCODE, etc.)" -#: flatcamGUI/PreferencesUI.py:3706 +#: flatcamGUI/PreferencesUI.py:3707 msgid "Feedrate decimals" msgstr "Avance décimale" -#: flatcamGUI/PreferencesUI.py:3708 +#: flatcamGUI/PreferencesUI.py:3709 msgid "" "The number of decimals to be used for \n" "the Feedrate parameter in CNC code (GCODE, etc.)" @@ -10444,11 +10441,11 @@ msgstr "" "Le nombre de décimales à utiliser pour\n" "le paramètre Feedrate en code CNC (GCODE, etc.)" -#: flatcamGUI/PreferencesUI.py:3719 +#: flatcamGUI/PreferencesUI.py:3720 msgid "Coordinates type" msgstr "Type de coord" -#: flatcamGUI/PreferencesUI.py:3721 +#: flatcamGUI/PreferencesUI.py:3722 msgid "" "The type of coordinates to be used in Gcode.\n" "Can be:\n" @@ -10460,19 +10457,19 @@ msgstr "" "- G90 absolu -> la référence est l'origine x = 0, y = 0\n" "- Incrémental G91 -> la référence est la position précédente" -#: flatcamGUI/PreferencesUI.py:3727 +#: flatcamGUI/PreferencesUI.py:3728 msgid "Absolute G90" msgstr "G90 absolu" -#: flatcamGUI/PreferencesUI.py:3728 +#: flatcamGUI/PreferencesUI.py:3729 msgid "Incremental G91" msgstr "G91 incrémentiel" -#: flatcamGUI/PreferencesUI.py:3738 +#: flatcamGUI/PreferencesUI.py:3739 msgid "Force Windows style line-ending" msgstr "Forcer la fin de ligne de style Windows" -#: flatcamGUI/PreferencesUI.py:3740 +#: flatcamGUI/PreferencesUI.py:3741 msgid "" "When checked will force a Windows style line-ending\n" "(\\r\\n) on non-Windows OS's." @@ -10480,65 +10477,65 @@ msgstr "" "Lorsqu'elle est cochée, la fin de ligne de style Windows\n" "(\\r \\n) sur les systèmes d'exploitation non Windows." -#: flatcamGUI/PreferencesUI.py:3754 +#: flatcamGUI/PreferencesUI.py:3755 msgid "CNC Job Options" msgstr "Options CNCjob" -#: flatcamGUI/PreferencesUI.py:3758 +#: flatcamGUI/PreferencesUI.py:3759 msgid "Export G-Code" msgstr "Exporter le code G" -#: flatcamGUI/PreferencesUI.py:3774 +#: flatcamGUI/PreferencesUI.py:3775 msgid "Prepend to G-Code" msgstr "Préfixer au G-Code" -#: flatcamGUI/PreferencesUI.py:3790 +#: flatcamGUI/PreferencesUI.py:3791 msgid "Append to G-Code" msgstr "Ajouter au G-Code" -#: flatcamGUI/PreferencesUI.py:3816 +#: flatcamGUI/PreferencesUI.py:3817 msgid "CNC Job Adv. Options" msgstr "Options avan. de CNCjob" -#: flatcamGUI/PreferencesUI.py:3902 +#: flatcamGUI/PreferencesUI.py:3903 msgid "Z depth for the cut" msgstr "Z profondeur pour la coupe" -#: flatcamGUI/PreferencesUI.py:3903 +#: flatcamGUI/PreferencesUI.py:3904 msgid "Z height for travel" msgstr "Z hauteur pour le voyage" -#: flatcamGUI/PreferencesUI.py:3909 +#: flatcamGUI/PreferencesUI.py:3910 msgid "dwelltime = time to dwell to allow the spindle to reach it's set RPM" msgstr "" "dwelltime = temps de repos pour permettre à la broche d'atteindre son régime " "défini" -#: flatcamGUI/PreferencesUI.py:3928 +#: flatcamGUI/PreferencesUI.py:3929 msgid "Annotation Size" msgstr "Taille de l'annotation" -#: flatcamGUI/PreferencesUI.py:3930 +#: flatcamGUI/PreferencesUI.py:3931 msgid "The font size of the annotation text. In pixels." msgstr "La taille de la police du texte d'annotation. En pixels." -#: flatcamGUI/PreferencesUI.py:3940 +#: flatcamGUI/PreferencesUI.py:3941 msgid "Annotation Color" msgstr "Couleur de l'annotation" -#: flatcamGUI/PreferencesUI.py:3942 +#: flatcamGUI/PreferencesUI.py:3943 msgid "Set the font color for the annotation texts." msgstr "Définissez la couleur de la police pour les textes d'annotation." -#: flatcamGUI/PreferencesUI.py:3968 +#: flatcamGUI/PreferencesUI.py:3969 msgid "NCC Tool Options" msgstr "Options de L'outil de la NCC" -#: flatcamGUI/PreferencesUI.py:3982 flatcamGUI/PreferencesUI.py:5380 +#: flatcamGUI/PreferencesUI.py:3983 flatcamGUI/PreferencesUI.py:5381 msgid "Tools dia" msgstr "Outils dia" -#: flatcamGUI/PreferencesUI.py:3993 flatcamGUI/PreferencesUI.py:4001 +#: flatcamGUI/PreferencesUI.py:3994 flatcamGUI/PreferencesUI.py:4002 #: flatcamTools/ToolNonCopperClear.py:215 #: flatcamTools/ToolNonCopperClear.py:223 msgid "" @@ -10550,11 +10547,11 @@ msgstr "" "- 'Forme en V'\n" "- circulaire" -#: flatcamGUI/PreferencesUI.py:3998 flatcamTools/ToolNonCopperClear.py:220 +#: flatcamGUI/PreferencesUI.py:3999 flatcamTools/ToolNonCopperClear.py:220 msgid "V-shape" msgstr "Forme en V" -#: flatcamGUI/PreferencesUI.py:4038 flatcamGUI/PreferencesUI.py:4047 +#: flatcamGUI/PreferencesUI.py:4039 flatcamGUI/PreferencesUI.py:4048 #: flatcamTools/ToolNonCopperClear.py:256 #: flatcamTools/ToolNonCopperClear.py:264 msgid "" @@ -10564,13 +10561,13 @@ msgstr "" "Profondeur de la coupe dans le matériau. Valeur négative.\n" "En unités FlatCAM." -#: flatcamGUI/PreferencesUI.py:4057 +#: flatcamGUI/PreferencesUI.py:4058 msgid "The new tool diameter (cut width) to add in the tool table." msgstr "" "Le nouveau diamètre d'outil (largeur de coupe) à ajouter dans la table " "d'outils." -#: flatcamGUI/PreferencesUI.py:4069 flatcamGUI/PreferencesUI.py:4077 +#: flatcamGUI/PreferencesUI.py:4070 flatcamGUI/PreferencesUI.py:4078 #: flatcamTools/ToolNonCopperClear.py:164 #: flatcamTools/ToolNonCopperClear.py:172 msgid "" @@ -10583,13 +10580,13 @@ msgstr "" "d'outils\n" "- conventionnel / utile quand il n'y a pas de compensation de jeu" -#: flatcamGUI/PreferencesUI.py:4086 flatcamGUI/PreferencesUI.py:4511 +#: flatcamGUI/PreferencesUI.py:4087 flatcamGUI/PreferencesUI.py:4512 #: flatcamTools/ToolNonCopperClear.py:181 flatcamTools/ToolPaint.py:153 msgid "Tool order" msgstr "L'ordre des Outils" -#: flatcamGUI/PreferencesUI.py:4087 flatcamGUI/PreferencesUI.py:4097 -#: flatcamGUI/PreferencesUI.py:4512 flatcamGUI/PreferencesUI.py:4522 +#: flatcamGUI/PreferencesUI.py:4088 flatcamGUI/PreferencesUI.py:4098 +#: flatcamGUI/PreferencesUI.py:4513 flatcamGUI/PreferencesUI.py:4523 #: flatcamTools/ToolNonCopperClear.py:182 #: flatcamTools/ToolNonCopperClear.py:192 flatcamTools/ToolPaint.py:154 #: flatcamTools/ToolPaint.py:164 @@ -10614,17 +10611,17 @@ msgstr "" "commande\n" "en sens inverse et désactivez ce contrôle." -#: flatcamGUI/PreferencesUI.py:4095 flatcamGUI/PreferencesUI.py:4520 +#: flatcamGUI/PreferencesUI.py:4096 flatcamGUI/PreferencesUI.py:4521 #: flatcamTools/ToolNonCopperClear.py:190 flatcamTools/ToolPaint.py:162 msgid "Forward" msgstr "L'avant" -#: flatcamGUI/PreferencesUI.py:4096 flatcamGUI/PreferencesUI.py:4521 +#: flatcamGUI/PreferencesUI.py:4097 flatcamGUI/PreferencesUI.py:4522 #: flatcamTools/ToolNonCopperClear.py:191 flatcamTools/ToolPaint.py:163 msgid "Reverse" msgstr "Inverse" -#: flatcamGUI/PreferencesUI.py:4109 flatcamTools/ToolNonCopperClear.py:321 +#: flatcamGUI/PreferencesUI.py:4110 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" @@ -10644,14 +10641,14 @@ msgstr "" "Valeurs plus élevées = traitement lent et exécution lente sur la CNC\n" "à cause de trop de chemins." -#: flatcamGUI/PreferencesUI.py:4128 flatcamGUI/PreferencesUI.py:6108 -#: flatcamGUI/PreferencesUI.py:6350 flatcamGUI/PreferencesUI.py:6414 +#: flatcamGUI/PreferencesUI.py:4129 flatcamGUI/PreferencesUI.py:6109 +#: flatcamGUI/PreferencesUI.py:6351 flatcamGUI/PreferencesUI.py:6415 #: flatcamTools/ToolCopperThieving.py:113 flatcamTools/ToolFiducials.py:174 #: flatcamTools/ToolFiducials.py:237 flatcamTools/ToolNonCopperClear.py:339 msgid "Bounding box margin." msgstr "Marge du cadre de sélection." -#: flatcamGUI/PreferencesUI.py:4141 flatcamGUI/PreferencesUI.py:4569 +#: flatcamGUI/PreferencesUI.py:4142 flatcamGUI/PreferencesUI.py:4570 #: flatcamTools/ToolNonCopperClear.py:350 msgid "" "Algorithm for non-copper clearing:
Standard: Fixed step inwards." @@ -10662,22 +10659,22 @@ msgstr "" "fixe.
Basé sur les Semences : Sortant des semences
Basé " "sur les Lignes : lignes parallèles." -#: flatcamGUI/PreferencesUI.py:4157 flatcamGUI/PreferencesUI.py:4583 +#: flatcamGUI/PreferencesUI.py:4158 flatcamGUI/PreferencesUI.py:4584 #: flatcamTools/ToolNonCopperClear.py:364 flatcamTools/ToolPaint.py:267 msgid "Connect" msgstr "Relier" -#: flatcamGUI/PreferencesUI.py:4168 flatcamGUI/PreferencesUI.py:4593 +#: flatcamGUI/PreferencesUI.py:4169 flatcamGUI/PreferencesUI.py:4594 #: flatcamTools/ToolNonCopperClear.py:373 flatcamTools/ToolPaint.py:276 msgid "Contour" msgstr "Contour" -#: flatcamGUI/PreferencesUI.py:4179 flatcamTools/ToolNonCopperClear.py:382 +#: flatcamGUI/PreferencesUI.py:4180 flatcamTools/ToolNonCopperClear.py:382 #: flatcamTools/ToolPaint.py:285 msgid "Rest M." msgstr "Repos U." -#: flatcamGUI/PreferencesUI.py:4181 flatcamTools/ToolNonCopperClear.py:384 +#: flatcamGUI/PreferencesUI.py:4182 flatcamTools/ToolNonCopperClear.py:384 msgid "" "If checked, use 'rest machining'.\n" "Basically it will clear copper outside PCB features,\n" @@ -10695,7 +10692,7 @@ msgstr "" "plus de cuivre à nettoyer ou il n'y a plus d'outils.\n" "Si non coché, utilisez l'algorithme standard." -#: flatcamGUI/PreferencesUI.py:4197 flatcamTools/ToolNonCopperClear.py:399 +#: flatcamGUI/PreferencesUI.py:4198 flatcamTools/ToolNonCopperClear.py:399 #: flatcamTools/ToolNonCopperClear.py:411 msgid "" "If used, it will add an offset to the copper features.\n" @@ -10708,11 +10705,11 @@ msgstr "" "des caractéristiques de cuivre.\n" "La valeur peut être comprise entre 0 et 10 unités FlatCAM." -#: flatcamGUI/PreferencesUI.py:4208 flatcamTools/ToolNonCopperClear.py:409 +#: flatcamGUI/PreferencesUI.py:4209 flatcamTools/ToolNonCopperClear.py:409 msgid "Offset value" msgstr "Valeur de Décalage" -#: flatcamGUI/PreferencesUI.py:4210 +#: flatcamGUI/PreferencesUI.py:4211 msgid "" "If used, it will add an offset to the copper features.\n" "The copper clearing will finish to a distance\n" @@ -10724,26 +10721,26 @@ msgstr "" "des caractéristiques de cuivre.\n" "La valeur peut être comprise entre 0 et 9999.9 unités FlatCAM." -#: flatcamGUI/PreferencesUI.py:4225 flatcamGUI/PreferencesUI.py:6120 +#: flatcamGUI/PreferencesUI.py:4226 flatcamGUI/PreferencesUI.py:6121 #: flatcamTools/ToolCopperThieving.py:125 #: flatcamTools/ToolNonCopperClear.py:435 msgid "Itself" msgstr "Lui-même" -#: flatcamGUI/PreferencesUI.py:4226 flatcamGUI/PreferencesUI.py:4615 +#: flatcamGUI/PreferencesUI.py:4227 flatcamGUI/PreferencesUI.py:4616 msgid "Area" msgstr "Zone" -#: flatcamGUI/PreferencesUI.py:4227 flatcamGUI/PreferencesUI.py:4617 +#: flatcamGUI/PreferencesUI.py:4228 flatcamGUI/PreferencesUI.py:4618 msgid "Ref" msgstr "Réf" -#: flatcamGUI/PreferencesUI.py:4228 flatcamGUI/PreferencesUI.py:4794 +#: flatcamGUI/PreferencesUI.py:4229 flatcamGUI/PreferencesUI.py:4795 #: flatcamTools/ToolFilm.py:219 msgid "Reference" msgstr "Référence" -#: flatcamGUI/PreferencesUI.py:4230 +#: flatcamGUI/PreferencesUI.py:4231 msgid "" "- 'Itself' - the non copper clearing extent\n" "is based on the object that is copper cleared.\n" @@ -10763,19 +10760,19 @@ msgstr "" "- 'Objet de référence' - effectuera un nettoyage sans cuivre dans la zone\n" "spécifié par un autre objet." -#: flatcamGUI/PreferencesUI.py:4242 flatcamGUI/PreferencesUI.py:4623 +#: flatcamGUI/PreferencesUI.py:4243 flatcamGUI/PreferencesUI.py:4624 msgid "Normal" msgstr "Ordinaire" -#: flatcamGUI/PreferencesUI.py:4243 flatcamGUI/PreferencesUI.py:4624 +#: flatcamGUI/PreferencesUI.py:4244 flatcamGUI/PreferencesUI.py:4625 msgid "Progressive" msgstr "Progressif" -#: flatcamGUI/PreferencesUI.py:4244 +#: flatcamGUI/PreferencesUI.py:4245 msgid "NCC Plotting" msgstr "Dessin de la NCC" -#: flatcamGUI/PreferencesUI.py:4246 +#: flatcamGUI/PreferencesUI.py:4247 msgid "" "- 'Normal' - normal plotting, done at the end of the NCC job\n" "- 'Progressive' - after each shape is generated it will be plotted." @@ -10783,16 +10780,16 @@ msgstr "" "- 'Normal' - tracé normal, effectué à la fin du travail de la NCC\n" "- 'Progressif' - après chaque forme générée, elle sera tracée." -#: flatcamGUI/PreferencesUI.py:4260 +#: flatcamGUI/PreferencesUI.py:4261 msgid "Cutout Tool Options" msgstr "Options de l'Outil de Découpe" -#: flatcamGUI/PreferencesUI.py:4275 flatcamTools/ToolCalculators.py:123 +#: flatcamGUI/PreferencesUI.py:4276 flatcamTools/ToolCalculators.py:123 #: flatcamTools/ToolCutOut.py:123 msgid "Tool Diameter" msgstr "Dia de l'outil" -#: flatcamGUI/PreferencesUI.py:4277 flatcamTools/ToolCutOut.py:125 +#: flatcamGUI/PreferencesUI.py:4278 flatcamTools/ToolCutOut.py:125 msgid "" "Diameter of the tool used to cutout\n" "the PCB shape out of the surrounding material." @@ -10800,11 +10797,11 @@ msgstr "" "Diamètre de l'outil utilisé pour la découpe\n" "la forme de PCB hors du matériau environnant." -#: flatcamGUI/PreferencesUI.py:4332 flatcamTools/ToolCutOut.py:104 +#: flatcamGUI/PreferencesUI.py:4333 flatcamTools/ToolCutOut.py:104 msgid "Object kind" msgstr "Type d'objet" -#: flatcamGUI/PreferencesUI.py:4334 flatcamTools/ToolCutOut.py:106 +#: flatcamGUI/PreferencesUI.py:4335 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 " @@ -10816,15 +10813,15 @@ msgstr "" "est fait\n" "sur beaucoup de contours individuels de PCB." -#: flatcamGUI/PreferencesUI.py:4341 flatcamTools/ToolCutOut.py:112 +#: flatcamGUI/PreferencesUI.py:4342 flatcamTools/ToolCutOut.py:112 msgid "Single" msgstr "Seul" -#: flatcamGUI/PreferencesUI.py:4342 flatcamTools/ToolCutOut.py:113 +#: flatcamGUI/PreferencesUI.py:4343 flatcamTools/ToolCutOut.py:113 msgid "Panel" msgstr "Panneau" -#: flatcamGUI/PreferencesUI.py:4349 flatcamTools/ToolCutOut.py:184 +#: flatcamGUI/PreferencesUI.py:4350 flatcamTools/ToolCutOut.py:184 msgid "" "Margin over bounds. A positive value here\n" "will make the cutout of the PCB further from\n" @@ -10834,11 +10831,11 @@ msgstr "" "fera la découpe du PCB plus loin de\n" "la frontière de PCB" -#: flatcamGUI/PreferencesUI.py:4362 flatcamTools/ToolCutOut.py:195 +#: flatcamGUI/PreferencesUI.py:4363 flatcamTools/ToolCutOut.py:195 msgid "Gap size" msgstr "Taille de l'espace" -#: flatcamGUI/PreferencesUI.py:4364 flatcamTools/ToolCutOut.py:197 +#: flatcamGUI/PreferencesUI.py:4365 flatcamTools/ToolCutOut.py:197 msgid "" "The size of the bridge gaps in the cutout\n" "used to keep the board connected to\n" @@ -10850,11 +10847,11 @@ msgstr "" "le matériau environnant (celui\n" "à partir duquel le circuit imprimé est découpé)." -#: flatcamGUI/PreferencesUI.py:4378 flatcamTools/ToolCutOut.py:239 +#: flatcamGUI/PreferencesUI.py:4379 flatcamTools/ToolCutOut.py:239 msgid "Gaps" msgstr "Lacunes" -#: flatcamGUI/PreferencesUI.py:4380 +#: flatcamGUI/PreferencesUI.py:4381 msgid "" "Number of gaps used for the cutout.\n" "There can be maximum 8 bridges/gaps.\n" @@ -10878,11 +10875,11 @@ msgstr "" "- 2tb - 2 * Haut + 2 * Bas\n" "- 8 - 2 * gauche + 2 * droite + 2 * en haut + 2 * en bas" -#: flatcamGUI/PreferencesUI.py:4403 +#: flatcamGUI/PreferencesUI.py:4404 msgid "Convex Sh." msgstr "Forme conv." -#: flatcamGUI/PreferencesUI.py:4405 flatcamTools/ToolCutOut.py:217 +#: flatcamGUI/PreferencesUI.py:4406 flatcamTools/ToolCutOut.py:217 msgid "" "Create a convex shape surrounding the entire PCB.\n" "Used only if the source object type is Gerber." @@ -10890,11 +10887,11 @@ msgstr "" "Créez une forme convexe entourant tout le circuit imprimé.\n" "Utilisé uniquement si le type d'objet source est Gerber." -#: flatcamGUI/PreferencesUI.py:4419 +#: flatcamGUI/PreferencesUI.py:4420 msgid "2Sided Tool Options" msgstr "Options des Outils 2 faces" -#: flatcamGUI/PreferencesUI.py:4425 +#: flatcamGUI/PreferencesUI.py:4426 msgid "" "A tool to help in creating a double sided\n" "PCB using alignment holes." @@ -10902,36 +10899,36 @@ msgstr "" "Un outil pour aider à créer un double face\n" "PCB utilisant des trous d'alignement." -#: flatcamGUI/PreferencesUI.py:4439 flatcamTools/ToolDblSided.py:276 +#: flatcamGUI/PreferencesUI.py:4440 flatcamTools/ToolDblSided.py:276 msgid "Drill dia" msgstr "Forage dia" -#: flatcamGUI/PreferencesUI.py:4441 flatcamTools/ToolDblSided.py:267 +#: flatcamGUI/PreferencesUI.py:4442 flatcamTools/ToolDblSided.py:267 #: flatcamTools/ToolDblSided.py:278 msgid "Diameter of the drill for the alignment holes." msgstr "Diamètre du foret pour les trous d'alignement." -#: flatcamGUI/PreferencesUI.py:4450 flatcamTools/ToolDblSided.py:144 +#: flatcamGUI/PreferencesUI.py:4451 flatcamTools/ToolDblSided.py:144 msgid "Mirror Axis:" msgstr "Axe du miroir:" -#: flatcamGUI/PreferencesUI.py:4452 flatcamTools/ToolDblSided.py:145 +#: flatcamGUI/PreferencesUI.py:4453 flatcamTools/ToolDblSided.py:145 msgid "Mirror vertically (X) or horizontally (Y)." msgstr "Miroir verticalement (X) ou horizontalement (Y)." -#: flatcamGUI/PreferencesUI.py:4461 flatcamTools/ToolDblSided.py:154 +#: flatcamGUI/PreferencesUI.py:4462 flatcamTools/ToolDblSided.py:154 msgid "Point" msgstr "Point" -#: flatcamGUI/PreferencesUI.py:4462 flatcamTools/ToolDblSided.py:155 +#: flatcamGUI/PreferencesUI.py:4463 flatcamTools/ToolDblSided.py:155 msgid "Box" msgstr "Box" -#: flatcamGUI/PreferencesUI.py:4463 flatcamTools/ToolDblSided.py:156 +#: flatcamGUI/PreferencesUI.py:4464 flatcamTools/ToolDblSided.py:156 msgid "Axis Ref" msgstr "Réf d'axe" -#: flatcamGUI/PreferencesUI.py:4465 flatcamTools/ToolDblSided.py:158 +#: flatcamGUI/PreferencesUI.py:4466 flatcamTools/ToolDblSided.py:158 msgid "" "The axis should pass through a point or cut\n" " a specified box (in a FlatCAM object) through \n" @@ -10941,15 +10938,15 @@ msgstr "" "une zone spécifiée (dans un objet FlatCAM) via\n" "le centre." -#: flatcamGUI/PreferencesUI.py:4481 +#: flatcamGUI/PreferencesUI.py:4482 msgid "Paint Tool Options" msgstr "Options de l'Outil de Peinture" -#: flatcamGUI/PreferencesUI.py:4487 +#: flatcamGUI/PreferencesUI.py:4488 msgid "Parameters:" msgstr "Paramètres:" -#: flatcamGUI/PreferencesUI.py:4605 flatcamTools/ToolPaint.py:302 +#: flatcamGUI/PreferencesUI.py:4606 flatcamTools/ToolPaint.py:302 #: flatcamTools/ToolPaint.py:319 msgid "" "How to select Polygons to be painted.\n" @@ -10974,15 +10971,15 @@ msgstr "" "- «Objet de référence» - effectuera un nettoyage sans cuivre dans la zone\n" "spécifié par un autre objet." -#: flatcamGUI/PreferencesUI.py:4614 +#: flatcamGUI/PreferencesUI.py:4615 msgid "Sel" msgstr "Sél" -#: flatcamGUI/PreferencesUI.py:4625 +#: flatcamGUI/PreferencesUI.py:4626 msgid "Paint Plotting" msgstr "Peinture dessin" -#: flatcamGUI/PreferencesUI.py:4627 +#: flatcamGUI/PreferencesUI.py:4628 msgid "" "- 'Normal' - normal plotting, done at the end of the Paint job\n" "- 'Progressive' - after each shape is generated it will be plotted." @@ -10990,11 +10987,11 @@ msgstr "" "- 'Normal' - traçage normal, effectué à la fin du travail de peinture\n" "- 'Progressif' - après chaque forme générée, elle sera tracée." -#: flatcamGUI/PreferencesUI.py:4641 +#: flatcamGUI/PreferencesUI.py:4642 msgid "Film Tool Options" msgstr "Options de l'Outil de Film" -#: flatcamGUI/PreferencesUI.py:4647 +#: flatcamGUI/PreferencesUI.py:4648 msgid "" "Create a PCB film from a Gerber or Geometry\n" "FlatCAM object.\n" @@ -11004,11 +11001,11 @@ msgstr "" "Objet FlatCAM.\n" "Le fichier est enregistré au format SVG." -#: flatcamGUI/PreferencesUI.py:4658 +#: flatcamGUI/PreferencesUI.py:4659 msgid "Film Type" msgstr "Type de Film" -#: flatcamGUI/PreferencesUI.py:4660 flatcamTools/ToolFilm.py:300 +#: flatcamGUI/PreferencesUI.py:4661 flatcamTools/ToolFilm.py:300 msgid "" "Generate a Positive black film or a Negative film.\n" "Positive means that it will print the features\n" @@ -11024,19 +11021,19 @@ msgstr "" "avec du blanc sur une toile noire.\n" "Le format de film est SVG." -#: flatcamGUI/PreferencesUI.py:4671 +#: flatcamGUI/PreferencesUI.py:4672 msgid "Film Color" msgstr "Couleur du film" -#: flatcamGUI/PreferencesUI.py:4673 +#: flatcamGUI/PreferencesUI.py:4674 msgid "Set the film color when positive film is selected." msgstr "Définissez la couleur du film lorsque le film positif est sélectionné." -#: flatcamGUI/PreferencesUI.py:4696 flatcamTools/ToolFilm.py:316 +#: flatcamGUI/PreferencesUI.py:4697 flatcamTools/ToolFilm.py:316 msgid "Border" msgstr "Bordure" -#: flatcamGUI/PreferencesUI.py:4698 flatcamTools/ToolFilm.py:318 +#: flatcamGUI/PreferencesUI.py:4699 flatcamTools/ToolFilm.py:318 msgid "" "Specify a border around the object.\n" "Only for negative film.\n" @@ -11056,11 +11053,11 @@ msgstr "" "couleur blanche comme le reste et qui peut confondre avec le\n" "environnement si pas pour cette frontière." -#: flatcamGUI/PreferencesUI.py:4715 flatcamTools/ToolFilm.py:283 +#: flatcamGUI/PreferencesUI.py:4716 flatcamTools/ToolFilm.py:283 msgid "Scale Stroke" msgstr "Course de l'échelle" -#: flatcamGUI/PreferencesUI.py:4717 flatcamTools/ToolFilm.py:285 +#: flatcamGUI/PreferencesUI.py:4718 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 " @@ -11073,11 +11070,11 @@ msgstr "" "par conséquent, les caractéristiques fines peuvent être plus affectées par " "ce paramètre." -#: flatcamGUI/PreferencesUI.py:4724 flatcamTools/ToolFilm.py:141 +#: flatcamGUI/PreferencesUI.py:4725 flatcamTools/ToolFilm.py:141 msgid "Film Adjustments" msgstr "Ajustements de film" -#: flatcamGUI/PreferencesUI.py:4726 flatcamTools/ToolFilm.py:143 +#: flatcamGUI/PreferencesUI.py:4727 flatcamTools/ToolFilm.py:143 msgid "" "Sometime the printers will distort the print shape, especially the Laser " "types.\n" @@ -11088,11 +11085,11 @@ msgstr "" "Cette section fournit les outils permettant de compenser les distorsions " "d’impression." -#: flatcamGUI/PreferencesUI.py:4733 flatcamTools/ToolFilm.py:150 +#: flatcamGUI/PreferencesUI.py:4734 flatcamTools/ToolFilm.py:150 msgid "Scale Film geometry" msgstr "Mettre à l'échelle la géo du film" -#: flatcamGUI/PreferencesUI.py:4735 flatcamTools/ToolFilm.py:152 +#: flatcamGUI/PreferencesUI.py:4736 flatcamTools/ToolFilm.py:152 msgid "" "A value greater than 1 will stretch the film\n" "while a value less than 1 will jolt it." @@ -11100,21 +11097,21 @@ msgstr "" "Une valeur supérieure à 1 étendra le film\n" "alors qu'une valeur inférieure à 1 la secouera." -#: flatcamGUI/PreferencesUI.py:4745 flatcamGUI/PreferencesUI.py:5265 +#: flatcamGUI/PreferencesUI.py:4746 flatcamGUI/PreferencesUI.py:5266 #: flatcamTools/ToolFilm.py:162 flatcamTools/ToolTransform.py:147 msgid "X factor" msgstr "Facteur X" -#: flatcamGUI/PreferencesUI.py:4754 flatcamGUI/PreferencesUI.py:5278 +#: flatcamGUI/PreferencesUI.py:4755 flatcamGUI/PreferencesUI.py:5279 #: flatcamTools/ToolFilm.py:171 flatcamTools/ToolTransform.py:168 msgid "Y factor" msgstr "Facteur Y" -#: flatcamGUI/PreferencesUI.py:4764 flatcamTools/ToolFilm.py:189 +#: flatcamGUI/PreferencesUI.py:4765 flatcamTools/ToolFilm.py:189 msgid "Skew Film geometry" msgstr "Inclinez la géo du film" -#: flatcamGUI/PreferencesUI.py:4766 flatcamTools/ToolFilm.py:191 +#: flatcamGUI/PreferencesUI.py:4767 flatcamTools/ToolFilm.py:191 msgid "" "Positive values will skew to the right\n" "while negative values will skew to the left." @@ -11122,17 +11119,17 @@ msgstr "" "Les valeurs positives seront biaisées vers la droite\n" "tandis que les valeurs négatives inclineront vers la gauche." -#: flatcamGUI/PreferencesUI.py:4776 flatcamGUI/PreferencesUI.py:5234 +#: flatcamGUI/PreferencesUI.py:4777 flatcamGUI/PreferencesUI.py:5235 #: flatcamTools/ToolFilm.py:201 flatcamTools/ToolTransform.py:97 msgid "X angle" msgstr "Angle X" -#: flatcamGUI/PreferencesUI.py:4785 flatcamGUI/PreferencesUI.py:5248 +#: flatcamGUI/PreferencesUI.py:4786 flatcamGUI/PreferencesUI.py:5249 #: flatcamTools/ToolFilm.py:210 flatcamTools/ToolTransform.py:119 msgid "Y angle" msgstr "Angle Y" -#: flatcamGUI/PreferencesUI.py:4796 flatcamTools/ToolFilm.py:221 +#: flatcamGUI/PreferencesUI.py:4797 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." @@ -11140,57 +11137,57 @@ msgstr "" "Le point de référence à utiliser comme origine pour l'inclinaison.\n" "Ce peut être l'un des quatre points de la boîte englobante de la géométrie." -#: flatcamGUI/PreferencesUI.py:4799 flatcamTools/ToolFiducials.py:87 +#: flatcamGUI/PreferencesUI.py:4800 flatcamTools/ToolFiducials.py:87 #: flatcamTools/ToolFilm.py:224 msgid "Bottom Left" msgstr "En bas à gauche" -#: flatcamGUI/PreferencesUI.py:4800 flatcamTools/ToolFilm.py:225 +#: flatcamGUI/PreferencesUI.py:4801 flatcamTools/ToolFilm.py:225 msgid "Top Left" msgstr "En haut à gauche" -#: flatcamGUI/PreferencesUI.py:4801 flatcamTools/ToolFilm.py:226 +#: flatcamGUI/PreferencesUI.py:4802 flatcamTools/ToolFilm.py:226 msgid "Bottom Right" msgstr "En bas à droite" -#: flatcamGUI/PreferencesUI.py:4802 flatcamTools/ToolFilm.py:227 +#: flatcamGUI/PreferencesUI.py:4803 flatcamTools/ToolFilm.py:227 msgid "Top right" msgstr "En haut à droite" -#: flatcamGUI/PreferencesUI.py:4810 flatcamTools/ToolFilm.py:244 +#: flatcamGUI/PreferencesUI.py:4811 flatcamTools/ToolFilm.py:244 msgid "Mirror Film geometry" msgstr "Refléter la géo du film" -#: flatcamGUI/PreferencesUI.py:4812 flatcamTools/ToolFilm.py:246 +#: flatcamGUI/PreferencesUI.py:4813 flatcamTools/ToolFilm.py:246 msgid "Mirror the film geometry on the selected axis or on both." msgstr "Reflétez la géométrie du film sur l'axe sélectionné ou sur les deux." -#: flatcamGUI/PreferencesUI.py:4824 flatcamTools/ToolFilm.py:258 +#: flatcamGUI/PreferencesUI.py:4825 flatcamTools/ToolFilm.py:258 msgid "Both" msgstr "Tous les deux" -#: flatcamGUI/PreferencesUI.py:4826 flatcamTools/ToolFilm.py:260 +#: flatcamGUI/PreferencesUI.py:4827 flatcamTools/ToolFilm.py:260 msgid "Mirror axis" msgstr "Axe du miroir" -#: flatcamGUI/PreferencesUI.py:4836 flatcamTools/ToolFilm.py:403 +#: flatcamGUI/PreferencesUI.py:4837 flatcamTools/ToolFilm.py:403 msgid "SVG" msgstr "SVG" -#: flatcamGUI/PreferencesUI.py:4837 flatcamTools/ToolFilm.py:404 +#: flatcamGUI/PreferencesUI.py:4838 flatcamTools/ToolFilm.py:404 msgid "PNG" msgstr "PNG" -#: flatcamGUI/PreferencesUI.py:4838 flatcamTools/ToolFilm.py:405 +#: flatcamGUI/PreferencesUI.py:4839 flatcamTools/ToolFilm.py:405 msgid "PDF" msgstr "PDF" -#: flatcamGUI/PreferencesUI.py:4841 flatcamTools/ToolFilm.py:298 +#: flatcamGUI/PreferencesUI.py:4842 flatcamTools/ToolFilm.py:298 #: flatcamTools/ToolFilm.py:408 msgid "Film Type:" msgstr "Type de Film:" -#: flatcamGUI/PreferencesUI.py:4843 flatcamTools/ToolFilm.py:410 +#: flatcamGUI/PreferencesUI.py:4844 flatcamTools/ToolFilm.py:410 msgid "" "The file type of the saved film. Can be:\n" "- 'SVG' -> open-source vectorial format\n" @@ -11202,23 +11199,23 @@ msgstr "" "- 'PNG' -> image raster\n" "- 'PDF' -> format de document portable" -#: flatcamGUI/PreferencesUI.py:4852 flatcamTools/ToolFilm.py:419 +#: flatcamGUI/PreferencesUI.py:4853 flatcamTools/ToolFilm.py:419 msgid "Page Orientation" msgstr "Orientation de la page" -#: flatcamGUI/PreferencesUI.py:4865 flatcamTools/ToolFilm.py:432 +#: flatcamGUI/PreferencesUI.py:4866 flatcamTools/ToolFilm.py:432 msgid "Page Size" msgstr "Taille de la page" -#: flatcamGUI/PreferencesUI.py:4866 flatcamTools/ToolFilm.py:433 +#: flatcamGUI/PreferencesUI.py:4867 flatcamTools/ToolFilm.py:433 msgid "A selection of standard ISO 216 page sizes." msgstr "Une sélection de formats de page ISO 216 standard." -#: flatcamGUI/PreferencesUI.py:4938 +#: flatcamGUI/PreferencesUI.py:4939 msgid "Panelize Tool Options" msgstr "Options de l'Outil Panéliser" -#: flatcamGUI/PreferencesUI.py:4944 +#: flatcamGUI/PreferencesUI.py:4945 msgid "" "Create an object that contains an array of (x, y) elements,\n" "each element is a copy of the source object spaced\n" @@ -11228,11 +11225,11 @@ msgstr "" "chaque élément est une copie de l'objet source espacé\n" "à une distance X, Y distance les uns des autres." -#: flatcamGUI/PreferencesUI.py:4961 flatcamTools/ToolPanelize.py:160 +#: flatcamGUI/PreferencesUI.py:4962 flatcamTools/ToolPanelize.py:160 msgid "Spacing cols" msgstr "Colonnes d'espacement" -#: flatcamGUI/PreferencesUI.py:4963 flatcamTools/ToolPanelize.py:162 +#: flatcamGUI/PreferencesUI.py:4964 flatcamTools/ToolPanelize.py:162 msgid "" "Spacing between columns of the desired panel.\n" "In current units." @@ -11240,11 +11237,11 @@ msgstr "" "Espacement entre les colonnes du panneau souhaité.\n" "En unités actuelles." -#: flatcamGUI/PreferencesUI.py:4975 flatcamTools/ToolPanelize.py:172 +#: flatcamGUI/PreferencesUI.py:4976 flatcamTools/ToolPanelize.py:172 msgid "Spacing rows" msgstr "Lignes d'espacement" -#: flatcamGUI/PreferencesUI.py:4977 flatcamTools/ToolPanelize.py:174 +#: flatcamGUI/PreferencesUI.py:4978 flatcamTools/ToolPanelize.py:174 msgid "" "Spacing between rows of the desired panel.\n" "In current units." @@ -11252,36 +11249,36 @@ msgstr "" "Espacement entre les lignes du panneau souhaité.\n" "En unités actuelles." -#: flatcamGUI/PreferencesUI.py:4988 flatcamTools/ToolPanelize.py:183 +#: flatcamGUI/PreferencesUI.py:4989 flatcamTools/ToolPanelize.py:183 msgid "Columns" msgstr "Colonnes" -#: flatcamGUI/PreferencesUI.py:4990 flatcamTools/ToolPanelize.py:185 +#: flatcamGUI/PreferencesUI.py:4991 flatcamTools/ToolPanelize.py:185 msgid "Number of columns of the desired panel" msgstr "Nombre de colonnes du panneau désiré" -#: flatcamGUI/PreferencesUI.py:5000 flatcamTools/ToolPanelize.py:193 +#: flatcamGUI/PreferencesUI.py:5001 flatcamTools/ToolPanelize.py:193 msgid "Rows" msgstr "Lignes" -#: flatcamGUI/PreferencesUI.py:5002 flatcamTools/ToolPanelize.py:195 +#: flatcamGUI/PreferencesUI.py:5003 flatcamTools/ToolPanelize.py:195 msgid "Number of rows of the desired panel" msgstr "Nombre de lignes du panneau désiré" -#: flatcamGUI/PreferencesUI.py:5008 flatcamTools/ToolCalibration.py:196 +#: flatcamGUI/PreferencesUI.py:5009 flatcamTools/ToolCalibration.py:196 #: flatcamTools/ToolCalibration.py:634 flatcamTools/ToolPanelize.py:201 msgid "Gerber" msgstr "Gerber" -#: flatcamGUI/PreferencesUI.py:5009 flatcamTools/ToolPanelize.py:202 +#: flatcamGUI/PreferencesUI.py:5010 flatcamTools/ToolPanelize.py:202 msgid "Geo" msgstr "Géo" -#: flatcamGUI/PreferencesUI.py:5010 flatcamTools/ToolPanelize.py:203 +#: flatcamGUI/PreferencesUI.py:5011 flatcamTools/ToolPanelize.py:203 msgid "Panel Type" msgstr "Type de Panneau" -#: flatcamGUI/PreferencesUI.py:5012 +#: flatcamGUI/PreferencesUI.py:5013 msgid "" "Choose the type of object for the panel object:\n" "- Gerber\n" @@ -11291,11 +11288,11 @@ msgstr "" "- Gerber\n" "- Géométrie" -#: flatcamGUI/PreferencesUI.py:5021 +#: flatcamGUI/PreferencesUI.py:5022 msgid "Constrain within" msgstr "Contraindre à l'intérieur" -#: flatcamGUI/PreferencesUI.py:5023 flatcamTools/ToolPanelize.py:215 +#: flatcamGUI/PreferencesUI.py:5024 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" @@ -11309,11 +11306,11 @@ msgstr "" "le panneau final aura autant de colonnes et de lignes que\n" "ils correspondent parfaitement à la zone sélectionnée." -#: flatcamGUI/PreferencesUI.py:5036 flatcamTools/ToolPanelize.py:227 +#: flatcamGUI/PreferencesUI.py:5037 flatcamTools/ToolPanelize.py:227 msgid "Width (DX)" msgstr "Largeur (DX)" -#: flatcamGUI/PreferencesUI.py:5038 flatcamTools/ToolPanelize.py:229 +#: flatcamGUI/PreferencesUI.py:5039 flatcamTools/ToolPanelize.py:229 msgid "" "The width (DX) within which the panel must fit.\n" "In current units." @@ -11321,11 +11318,11 @@ msgstr "" "La largeur (DX) dans laquelle le panneau doit tenir.\n" "En unités actuelles." -#: flatcamGUI/PreferencesUI.py:5049 flatcamTools/ToolPanelize.py:238 +#: flatcamGUI/PreferencesUI.py:5050 flatcamTools/ToolPanelize.py:238 msgid "Height (DY)" msgstr "Hauteur (DY)" -#: flatcamGUI/PreferencesUI.py:5051 flatcamTools/ToolPanelize.py:240 +#: flatcamGUI/PreferencesUI.py:5052 flatcamTools/ToolPanelize.py:240 msgid "" "The height (DY)within which the panel must fit.\n" "In current units." @@ -11333,15 +11330,15 @@ msgstr "" "La hauteur (DY) à laquelle le panneau doit s’adapter.\n" "En unités actuelles." -#: flatcamGUI/PreferencesUI.py:5065 +#: flatcamGUI/PreferencesUI.py:5066 msgid "Calculators Tool Options" msgstr "Options de l'Outil Calcul" -#: flatcamGUI/PreferencesUI.py:5069 flatcamTools/ToolCalculators.py:25 +#: flatcamGUI/PreferencesUI.py:5070 flatcamTools/ToolCalculators.py:25 msgid "V-Shape Tool Calculator" msgstr "Calculateur d'Outils en V" -#: flatcamGUI/PreferencesUI.py:5071 +#: flatcamGUI/PreferencesUI.py:5072 msgid "" "Calculate the tool diameter for a given V-shape tool,\n" "having the tip diameter, tip angle and\n" @@ -11351,11 +11348,11 @@ msgstr "" "ayant le diamètre de la pointe, son angle et\n" "profondeur de coupe en tant que paramètres." -#: flatcamGUI/PreferencesUI.py:5086 flatcamTools/ToolCalculators.py:94 +#: flatcamGUI/PreferencesUI.py:5087 flatcamTools/ToolCalculators.py:94 msgid "Tip Diameter" msgstr "Dia de la pointe" -#: flatcamGUI/PreferencesUI.py:5088 flatcamTools/ToolCalculators.py:102 +#: flatcamGUI/PreferencesUI.py:5089 flatcamTools/ToolCalculators.py:102 msgid "" "This is the tool tip diameter.\n" "It is specified by manufacturer." @@ -11363,11 +11360,11 @@ msgstr "" "C'est le diamètre de la pointe de l'outil.\n" "Il est spécifié par le fabricant." -#: flatcamGUI/PreferencesUI.py:5100 flatcamTools/ToolCalculators.py:105 +#: flatcamGUI/PreferencesUI.py:5101 flatcamTools/ToolCalculators.py:105 msgid "Tip Angle" msgstr "Angle de pointe" -#: flatcamGUI/PreferencesUI.py:5102 +#: flatcamGUI/PreferencesUI.py:5103 msgid "" "This is the angle on the tip of the tool.\n" "It is specified by manufacturer." @@ -11375,7 +11372,7 @@ msgstr "" "C'est l'angle sur la pointe de l'outil.\n" "Il est spécifié par le fabricant." -#: flatcamGUI/PreferencesUI.py:5116 +#: flatcamGUI/PreferencesUI.py:5117 msgid "" "This is depth to cut into material.\n" "In the CNCJob object it is the CutZ parameter." @@ -11383,11 +11380,11 @@ msgstr "" "C'est la profondeur à couper dans le matériau.\n" "Dans l'objet CNCJob, il s'agit du paramètre CutZ." -#: flatcamGUI/PreferencesUI.py:5123 flatcamTools/ToolCalculators.py:27 +#: flatcamGUI/PreferencesUI.py:5124 flatcamTools/ToolCalculators.py:27 msgid "ElectroPlating Calculator" msgstr "Calculateur d'électrodéposition" -#: flatcamGUI/PreferencesUI.py:5125 flatcamTools/ToolCalculators.py:158 +#: flatcamGUI/PreferencesUI.py:5126 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 " @@ -11398,27 +11395,27 @@ msgstr "" "en utilisant une méthode comme l’encre grahite, l’encre hypophosphite de " "calcium ou le chlorure de palladium." -#: flatcamGUI/PreferencesUI.py:5139 flatcamTools/ToolCalculators.py:167 +#: flatcamGUI/PreferencesUI.py:5140 flatcamTools/ToolCalculators.py:167 msgid "Board Length" msgstr "Longueur" -#: flatcamGUI/PreferencesUI.py:5141 flatcamTools/ToolCalculators.py:173 +#: flatcamGUI/PreferencesUI.py:5142 flatcamTools/ToolCalculators.py:173 msgid "This is the board length. In centimeters." msgstr "Ceci est la longueur du conseil. En centimètres." -#: flatcamGUI/PreferencesUI.py:5151 flatcamTools/ToolCalculators.py:175 +#: flatcamGUI/PreferencesUI.py:5152 flatcamTools/ToolCalculators.py:175 msgid "Board Width" msgstr "Largeur" -#: flatcamGUI/PreferencesUI.py:5153 flatcamTools/ToolCalculators.py:181 +#: flatcamGUI/PreferencesUI.py:5154 flatcamTools/ToolCalculators.py:181 msgid "This is the board width.In centimeters." msgstr "C'est la largeur de la planche.En centimètres." -#: flatcamGUI/PreferencesUI.py:5158 flatcamTools/ToolCalculators.py:183 +#: flatcamGUI/PreferencesUI.py:5159 flatcamTools/ToolCalculators.py:183 msgid "Current Density" msgstr "Densité de courant" -#: flatcamGUI/PreferencesUI.py:5164 flatcamTools/ToolCalculators.py:190 +#: flatcamGUI/PreferencesUI.py:5165 flatcamTools/ToolCalculators.py:190 msgid "" "Current density to pass through the board. \n" "In Amps per Square Feet ASF." @@ -11426,11 +11423,11 @@ msgstr "" "Densité de courant électrique à traverser le tableau.\n" "En ampères par pieds carrés ASF." -#: flatcamGUI/PreferencesUI.py:5170 flatcamTools/ToolCalculators.py:193 +#: flatcamGUI/PreferencesUI.py:5171 flatcamTools/ToolCalculators.py:193 msgid "Copper Growth" msgstr "Croissance du cuivre" -#: flatcamGUI/PreferencesUI.py:5176 flatcamTools/ToolCalculators.py:200 +#: flatcamGUI/PreferencesUI.py:5177 flatcamTools/ToolCalculators.py:200 msgid "" "How thick the copper growth is intended to be.\n" "In microns." @@ -11438,11 +11435,11 @@ msgstr "" "Quelle épaisseur doit avoir la croissance du cuivre.\n" "En microns." -#: flatcamGUI/PreferencesUI.py:5189 +#: flatcamGUI/PreferencesUI.py:5190 msgid "Transform Tool Options" msgstr "Options de l'Outil de Transformation" -#: flatcamGUI/PreferencesUI.py:5195 +#: flatcamGUI/PreferencesUI.py:5196 msgid "" "Various transformations that can be applied\n" "on a FlatCAM object." @@ -11450,19 +11447,19 @@ msgstr "" "Diverses transformations pouvant être appliquées\n" "sur un objet FlatCAM." -#: flatcamGUI/PreferencesUI.py:5226 +#: flatcamGUI/PreferencesUI.py:5227 msgid "Skew" msgstr "Fausser" -#: flatcamGUI/PreferencesUI.py:5267 flatcamTools/ToolTransform.py:149 +#: flatcamGUI/PreferencesUI.py:5268 flatcamTools/ToolTransform.py:149 msgid "Factor for scaling on X axis." msgstr "Facteur de mise à l'échelle sur l'axe X." -#: flatcamGUI/PreferencesUI.py:5280 flatcamTools/ToolTransform.py:170 +#: flatcamGUI/PreferencesUI.py:5281 flatcamTools/ToolTransform.py:170 msgid "Factor for scaling on Y axis." msgstr "Facteur de mise à l'échelle sur l'axe Y." -#: flatcamGUI/PreferencesUI.py:5288 flatcamTools/ToolTransform.py:193 +#: flatcamGUI/PreferencesUI.py:5289 flatcamTools/ToolTransform.py:193 msgid "" "Scale the selected object(s)\n" "using the Scale_X factor for both axis." @@ -11470,7 +11467,7 @@ msgstr "" "Mettre à l'échelle le ou les objets sélectionnés\n" "en utilisant le facteur d'échelle X pour les deux axes." -#: flatcamGUI/PreferencesUI.py:5296 flatcamTools/ToolTransform.py:201 +#: flatcamGUI/PreferencesUI.py:5297 flatcamTools/ToolTransform.py:201 msgid "" "Scale the selected object(s)\n" "using the origin reference when checked,\n" @@ -11482,27 +11479,27 @@ msgstr "" "et le centre de la plus grande boîte englobante\n" "des objets sélectionnés lorsqu'il est décoché." -#: flatcamGUI/PreferencesUI.py:5312 flatcamTools/ToolTransform.py:216 +#: flatcamGUI/PreferencesUI.py:5313 flatcamTools/ToolTransform.py:216 msgid "X val" msgstr "Valeur X" -#: flatcamGUI/PreferencesUI.py:5314 flatcamTools/ToolTransform.py:218 +#: flatcamGUI/PreferencesUI.py:5315 flatcamTools/ToolTransform.py:218 msgid "Distance to offset on X axis. In current units." msgstr "Distance à compenser sur l'axe X. En unités actuelles." -#: flatcamGUI/PreferencesUI.py:5325 flatcamTools/ToolTransform.py:237 +#: flatcamGUI/PreferencesUI.py:5326 flatcamTools/ToolTransform.py:237 msgid "Y val" msgstr "Valeur Y" -#: flatcamGUI/PreferencesUI.py:5327 flatcamTools/ToolTransform.py:239 +#: flatcamGUI/PreferencesUI.py:5328 flatcamTools/ToolTransform.py:239 msgid "Distance to offset on Y axis. In current units." msgstr "Distance à compenser sur l'axe X. En unités actuelles." -#: flatcamGUI/PreferencesUI.py:5333 flatcamTools/ToolTransform.py:284 +#: flatcamGUI/PreferencesUI.py:5334 flatcamTools/ToolTransform.py:284 msgid "Mirror Reference" msgstr "Référence du miroir" -#: flatcamGUI/PreferencesUI.py:5335 flatcamTools/ToolTransform.py:286 +#: flatcamGUI/PreferencesUI.py:5336 flatcamTools/ToolTransform.py:286 msgid "" "Flip the selected object(s)\n" "around the point in Point Entry Field.\n" @@ -11524,11 +11521,11 @@ msgstr "" "Ou entrez les coordonnées au format (x, y) dans le champ\n" "Pointez sur le champ Entrée et cliquez sur Basculer sur X (Y)." -#: flatcamGUI/PreferencesUI.py:5346 +#: flatcamGUI/PreferencesUI.py:5347 msgid "Mirror Reference point" msgstr "Miroir Point de référence" -#: flatcamGUI/PreferencesUI.py:5348 +#: flatcamGUI/PreferencesUI.py:5349 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" @@ -11539,11 +11536,11 @@ msgstr "" "Le \"x\" dans (x, y) sera utilisé lors de l'utilisation de Flip sur X et\n" "le 'y' dans (x, y) sera utilisé lors de l'utilisation de Flip sur Y et" -#: flatcamGUI/PreferencesUI.py:5365 +#: flatcamGUI/PreferencesUI.py:5366 msgid "SolderPaste Tool Options" msgstr "Options de l'Outil Pâte à souder" -#: flatcamGUI/PreferencesUI.py:5371 +#: flatcamGUI/PreferencesUI.py:5372 msgid "" "A tool to create GCode for dispensing\n" "solder paste onto a PCB." @@ -11551,47 +11548,47 @@ msgstr "" "Un outil pour créer le GCode pour la distribution\n" "souder la pâte sur un PCB." -#: flatcamGUI/PreferencesUI.py:5382 +#: flatcamGUI/PreferencesUI.py:5383 msgid "Diameters of nozzle tools, separated by ','" msgstr "Diamètres des outils de buse, séparés par ','" -#: flatcamGUI/PreferencesUI.py:5390 +#: flatcamGUI/PreferencesUI.py:5391 msgid "New Nozzle Dia" msgstr "Nouvelle Buse Dia" -#: flatcamGUI/PreferencesUI.py:5392 flatcamTools/ToolSolderPaste.py:106 +#: flatcamGUI/PreferencesUI.py:5393 flatcamTools/ToolSolderPaste.py:106 msgid "Diameter for the new Nozzle tool to add in the Tool Table" msgstr "Diamètre du nouvel outil Buse à ajouter dans le tableau des outils" -#: flatcamGUI/PreferencesUI.py:5408 flatcamTools/ToolSolderPaste.py:182 +#: flatcamGUI/PreferencesUI.py:5409 flatcamTools/ToolSolderPaste.py:182 msgid "Z Dispense Start" msgstr "Z début de la distribution" -#: flatcamGUI/PreferencesUI.py:5410 flatcamTools/ToolSolderPaste.py:184 +#: flatcamGUI/PreferencesUI.py:5411 flatcamTools/ToolSolderPaste.py:184 msgid "The height (Z) when solder paste dispensing starts." msgstr "La hauteur (Z) au début de la distribution de la pâte à braser." -#: flatcamGUI/PreferencesUI.py:5421 flatcamTools/ToolSolderPaste.py:194 +#: flatcamGUI/PreferencesUI.py:5422 flatcamTools/ToolSolderPaste.py:194 msgid "Z Dispense" msgstr "Z dispenser" -#: flatcamGUI/PreferencesUI.py:5423 flatcamTools/ToolSolderPaste.py:196 +#: flatcamGUI/PreferencesUI.py:5424 flatcamTools/ToolSolderPaste.py:196 msgid "The height (Z) when doing solder paste dispensing." msgstr "La hauteur (Z) lors de la distribution de la pâte à braser." -#: flatcamGUI/PreferencesUI.py:5434 flatcamTools/ToolSolderPaste.py:206 +#: flatcamGUI/PreferencesUI.py:5435 flatcamTools/ToolSolderPaste.py:206 msgid "Z Dispense Stop" msgstr "Z arrêt de distribution" -#: flatcamGUI/PreferencesUI.py:5436 flatcamTools/ToolSolderPaste.py:208 +#: flatcamGUI/PreferencesUI.py:5437 flatcamTools/ToolSolderPaste.py:208 msgid "The height (Z) when solder paste dispensing stops." msgstr "La hauteur (Z) lorsque la distribution de la pâte à braser s’arrête." -#: flatcamGUI/PreferencesUI.py:5447 flatcamTools/ToolSolderPaste.py:218 +#: flatcamGUI/PreferencesUI.py:5448 flatcamTools/ToolSolderPaste.py:218 msgid "Z Travel" msgstr "Z Voyage" -#: flatcamGUI/PreferencesUI.py:5449 flatcamTools/ToolSolderPaste.py:220 +#: flatcamGUI/PreferencesUI.py:5450 flatcamTools/ToolSolderPaste.py:220 msgid "" "The height (Z) for travel between pads\n" "(without dispensing solder paste)." @@ -11599,15 +11596,15 @@ msgstr "" "La hauteur (Z) pour le déplacement entre les patins\n" "(sans distribution de pâte à braser)." -#: flatcamGUI/PreferencesUI.py:5461 flatcamTools/ToolSolderPaste.py:231 +#: flatcamGUI/PreferencesUI.py:5462 flatcamTools/ToolSolderPaste.py:231 msgid "Z Toolchange" msgstr "Changement d'outil Z" -#: flatcamGUI/PreferencesUI.py:5463 flatcamTools/ToolSolderPaste.py:233 +#: flatcamGUI/PreferencesUI.py:5464 flatcamTools/ToolSolderPaste.py:233 msgid "The height (Z) for tool (nozzle) change." msgstr "La hauteur (Z) de l'outil (buse) change." -#: flatcamGUI/PreferencesUI.py:5472 flatcamTools/ToolSolderPaste.py:241 +#: flatcamGUI/PreferencesUI.py:5473 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." @@ -11615,11 +11612,11 @@ msgstr "" "L'emplacement X, Y de l'outil (buse) change.\n" "Le format est (x, y) où x et y sont des nombres réels." -#: flatcamGUI/PreferencesUI.py:5486 flatcamTools/ToolSolderPaste.py:254 +#: flatcamGUI/PreferencesUI.py:5487 flatcamTools/ToolSolderPaste.py:254 msgid "Feedrate (speed) while moving on the X-Y plane." msgstr "Avance (vitesse) en se déplaçant sur le plan X-Y." -#: flatcamGUI/PreferencesUI.py:5499 flatcamTools/ToolSolderPaste.py:266 +#: flatcamGUI/PreferencesUI.py:5500 flatcamTools/ToolSolderPaste.py:266 msgid "" "Feedrate (speed) while moving vertically\n" "(on Z plane)." @@ -11627,11 +11624,11 @@ msgstr "" "Avance (vitesse) en se déplaçant verticalement\n" "(sur le plan Z)." -#: flatcamGUI/PreferencesUI.py:5511 flatcamTools/ToolSolderPaste.py:277 +#: flatcamGUI/PreferencesUI.py:5512 flatcamTools/ToolSolderPaste.py:277 msgid "Feedrate Z Dispense" msgstr "Avance Z Distribution" -#: flatcamGUI/PreferencesUI.py:5513 +#: flatcamGUI/PreferencesUI.py:5514 msgid "" "Feedrate (speed) while moving up vertically\n" "to Dispense position (on Z plane)." @@ -11639,11 +11636,11 @@ msgstr "" "Avance (vitesse) en montant verticalement\n" "position de distribution (sur le plan Z)." -#: flatcamGUI/PreferencesUI.py:5524 flatcamTools/ToolSolderPaste.py:289 +#: flatcamGUI/PreferencesUI.py:5525 flatcamTools/ToolSolderPaste.py:289 msgid "Spindle Speed FWD" msgstr "Vitesse de Rot FWD" -#: flatcamGUI/PreferencesUI.py:5526 flatcamTools/ToolSolderPaste.py:291 +#: flatcamGUI/PreferencesUI.py:5527 flatcamTools/ToolSolderPaste.py:291 msgid "" "The dispenser speed while pushing solder paste\n" "through the dispenser nozzle." @@ -11651,19 +11648,19 @@ msgstr "" "La vitesse du distributeur en poussant la pâte à souder\n" "à travers la buse du distributeur." -#: flatcamGUI/PreferencesUI.py:5538 flatcamTools/ToolSolderPaste.py:302 +#: flatcamGUI/PreferencesUI.py:5539 flatcamTools/ToolSolderPaste.py:302 msgid "Dwell FWD" msgstr "Habiter AVANT" -#: flatcamGUI/PreferencesUI.py:5540 flatcamTools/ToolSolderPaste.py:304 +#: flatcamGUI/PreferencesUI.py:5541 flatcamTools/ToolSolderPaste.py:304 msgid "Pause after solder dispensing." msgstr "Pause après la distribution de la brasure." -#: flatcamGUI/PreferencesUI.py:5550 flatcamTools/ToolSolderPaste.py:313 +#: flatcamGUI/PreferencesUI.py:5551 flatcamTools/ToolSolderPaste.py:313 msgid "Spindle Speed REV" msgstr "Vitesse du moteur en REV" -#: flatcamGUI/PreferencesUI.py:5552 flatcamTools/ToolSolderPaste.py:315 +#: flatcamGUI/PreferencesUI.py:5553 flatcamTools/ToolSolderPaste.py:315 msgid "" "The dispenser speed while retracting solder paste\n" "through the dispenser nozzle." @@ -11671,11 +11668,11 @@ msgstr "" "La vitesse du distributeur lors du retrait de la pâte à souder\n" "à travers la buse du distributeur." -#: flatcamGUI/PreferencesUI.py:5564 flatcamTools/ToolSolderPaste.py:326 +#: flatcamGUI/PreferencesUI.py:5565 flatcamTools/ToolSolderPaste.py:326 msgid "Dwell REV" msgstr "Habiter INVERSE" -#: flatcamGUI/PreferencesUI.py:5566 flatcamTools/ToolSolderPaste.py:328 +#: flatcamGUI/PreferencesUI.py:5567 flatcamTools/ToolSolderPaste.py:328 msgid "" "Pause after solder paste dispenser retracted,\n" "to allow pressure equilibrium." @@ -11683,15 +11680,15 @@ msgstr "" "Pause après rétraction du distributeur de pâte à souder,\n" "permettre l'équilibre de la pression." -#: flatcamGUI/PreferencesUI.py:5575 flatcamTools/ToolSolderPaste.py:336 +#: flatcamGUI/PreferencesUI.py:5576 flatcamTools/ToolSolderPaste.py:336 msgid "Files that control the GCode generation." msgstr "Fichiers qui contrôlent la génération de GCode." -#: flatcamGUI/PreferencesUI.py:5590 +#: flatcamGUI/PreferencesUI.py:5591 msgid "Substractor Tool Options" msgstr "Options de l'Outil Soustracteur" -#: flatcamGUI/PreferencesUI.py:5596 +#: flatcamGUI/PreferencesUI.py:5597 msgid "" "A tool to substract one Gerber or Geometry object\n" "from another of the same type." @@ -11699,22 +11696,22 @@ msgstr "" "Un outil pour soustraire un objet Gerber ou Geometry\n" "d'un autre du même type." -#: flatcamGUI/PreferencesUI.py:5601 flatcamTools/ToolSub.py:149 +#: flatcamGUI/PreferencesUI.py:5602 flatcamTools/ToolSub.py:149 msgid "Close paths" msgstr "Fermer les chemins" -#: flatcamGUI/PreferencesUI.py:5602 +#: flatcamGUI/PreferencesUI.py:5603 msgid "" "Checking this will close the paths cut by the Geometry substractor object." msgstr "" "En cochant cette case, vous fermez les chemins coupés par l'objet " "soustracteur de géométrie." -#: flatcamGUI/PreferencesUI.py:5613 +#: flatcamGUI/PreferencesUI.py:5614 msgid "Check Rules Tool Options" msgstr "Options de l'outil de Vérif. des Règles" -#: flatcamGUI/PreferencesUI.py:5618 +#: flatcamGUI/PreferencesUI.py:5619 msgid "" "A tool to check if Gerber files are within a set\n" "of Manufacturing Rules." @@ -11722,20 +11719,20 @@ msgstr "" "Un outil pour vérifier si les fichiers Gerber sont dans un ensemble\n" "des règles de fabrication." -#: flatcamGUI/PreferencesUI.py:5628 flatcamTools/ToolRulesCheck.py:256 +#: flatcamGUI/PreferencesUI.py:5629 flatcamTools/ToolRulesCheck.py:256 #: flatcamTools/ToolRulesCheck.py:920 msgid "Trace Size" msgstr "Taille de trace" -#: flatcamGUI/PreferencesUI.py:5630 flatcamTools/ToolRulesCheck.py:258 +#: flatcamGUI/PreferencesUI.py:5631 flatcamTools/ToolRulesCheck.py:258 msgid "This checks if the minimum size for traces is met." msgstr "Ceci vérifie si la taille minimale des traces est respectée." -#: 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 +#: flatcamGUI/PreferencesUI.py:5641 flatcamGUI/PreferencesUI.py:5661 +#: flatcamGUI/PreferencesUI.py:5681 flatcamGUI/PreferencesUI.py:5701 +#: flatcamGUI/PreferencesUI.py:5721 flatcamGUI/PreferencesUI.py:5741 +#: flatcamGUI/PreferencesUI.py:5761 flatcamGUI/PreferencesUI.py:5781 +#: flatcamGUI/PreferencesUI.py:5803 flatcamGUI/PreferencesUI.py:5823 #: flatcamTools/ToolRulesCheck.py:268 flatcamTools/ToolRulesCheck.py:290 #: flatcamTools/ToolRulesCheck.py:313 flatcamTools/ToolRulesCheck.py:336 #: flatcamTools/ToolRulesCheck.py:359 flatcamTools/ToolRulesCheck.py:382 @@ -11744,16 +11741,16 @@ msgstr "Ceci vérifie si la taille minimale des traces est respectée." msgid "Min value" msgstr "Valeur min" -#: flatcamGUI/PreferencesUI.py:5642 flatcamTools/ToolRulesCheck.py:270 +#: flatcamGUI/PreferencesUI.py:5643 flatcamTools/ToolRulesCheck.py:270 msgid "Minimum acceptable trace size." msgstr "Taille de trace minimale acceptable." -#: flatcamGUI/PreferencesUI.py:5647 flatcamTools/ToolRulesCheck.py:277 +#: flatcamGUI/PreferencesUI.py:5648 flatcamTools/ToolRulesCheck.py:277 #: flatcamTools/ToolRulesCheck.py:1148 flatcamTools/ToolRulesCheck.py:1178 msgid "Copper to Copper clearance" msgstr "Distance de cuivre à cuivre" -#: flatcamGUI/PreferencesUI.py:5649 flatcamTools/ToolRulesCheck.py:279 +#: flatcamGUI/PreferencesUI.py:5650 flatcamTools/ToolRulesCheck.py:279 msgid "" "This checks if the minimum clearance between copper\n" "features is met." @@ -11761,23 +11758,23 @@ msgstr "" "Ceci vérifie si le jeu minimum entre le cuivre\n" "traces est rencontré." -#: 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 +#: flatcamGUI/PreferencesUI.py:5663 flatcamGUI/PreferencesUI.py:5683 +#: flatcamGUI/PreferencesUI.py:5703 flatcamGUI/PreferencesUI.py:5723 +#: flatcamGUI/PreferencesUI.py:5743 flatcamGUI/PreferencesUI.py:5763 +#: flatcamGUI/PreferencesUI.py:5825 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 "Distance minimale acceptable." -#: flatcamGUI/PreferencesUI.py:5667 flatcamTools/ToolRulesCheck.py:300 +#: flatcamGUI/PreferencesUI.py:5668 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 "Cuivre à la distance de contour" -#: flatcamGUI/PreferencesUI.py:5669 flatcamTools/ToolRulesCheck.py:302 +#: flatcamGUI/PreferencesUI.py:5670 flatcamTools/ToolRulesCheck.py:302 msgid "" "This checks if the minimum clearance between copper\n" "features and the outline is met." @@ -11785,11 +11782,11 @@ msgstr "" "Ceci vérifie si la distance minimale entre le cuivre\n" "traces et le contour est rencontré." -#: flatcamGUI/PreferencesUI.py:5687 flatcamTools/ToolRulesCheck.py:323 +#: flatcamGUI/PreferencesUI.py:5688 flatcamTools/ToolRulesCheck.py:323 msgid "Silk to Silk Clearance" msgstr "Sérigraphie à sérigraphie distance" -#: flatcamGUI/PreferencesUI.py:5689 flatcamTools/ToolRulesCheck.py:325 +#: flatcamGUI/PreferencesUI.py:5690 flatcamTools/ToolRulesCheck.py:325 msgid "" "This checks if the minimum clearance between silkscreen\n" "features and silkscreen features is met." @@ -11797,13 +11794,13 @@ msgstr "" "Ceci vérifie si la distance minimale entre sérigraphie\n" "les fonctionnalités et les fonctions de sérigraphie sont remplies." -#: flatcamGUI/PreferencesUI.py:5707 flatcamTools/ToolRulesCheck.py:346 +#: flatcamGUI/PreferencesUI.py:5708 flatcamTools/ToolRulesCheck.py:346 #: flatcamTools/ToolRulesCheck.py:1317 flatcamTools/ToolRulesCheck.py:1323 #: flatcamTools/ToolRulesCheck.py:1341 msgid "Silk to Solder Mask Clearance" msgstr "Distance de sérigraphie à masque de soudure" -#: flatcamGUI/PreferencesUI.py:5709 flatcamTools/ToolRulesCheck.py:348 +#: flatcamGUI/PreferencesUI.py:5710 flatcamTools/ToolRulesCheck.py:348 msgid "" "This checks if the minimum clearance between silkscreen\n" "features and soldermask features is met." @@ -11811,13 +11808,13 @@ msgstr "" "Ceci vérifie si la distance minimale entre sérigraphie\n" "les fonctionnalités et les fonctionnalités soldermask sont remplies." -#: flatcamGUI/PreferencesUI.py:5727 flatcamTools/ToolRulesCheck.py:369 +#: flatcamGUI/PreferencesUI.py:5728 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 "Sérigraphie à contour distance" -#: flatcamGUI/PreferencesUI.py:5729 flatcamTools/ToolRulesCheck.py:371 +#: flatcamGUI/PreferencesUI.py:5730 flatcamTools/ToolRulesCheck.py:371 msgid "" "This checks if the minimum clearance between silk\n" "features and the outline is met." @@ -11825,12 +11822,12 @@ msgstr "" "Ceci vérifie si la distance minimale entre sérigraphie\n" "traces et le contour est rencontré." -#: flatcamGUI/PreferencesUI.py:5747 flatcamTools/ToolRulesCheck.py:392 +#: flatcamGUI/PreferencesUI.py:5748 flatcamTools/ToolRulesCheck.py:392 #: flatcamTools/ToolRulesCheck.py:1409 flatcamTools/ToolRulesCheck.py:1436 msgid "Minimum Solder Mask Sliver" msgstr "Ruban de masque de soudure minimum" -#: flatcamGUI/PreferencesUI.py:5749 flatcamTools/ToolRulesCheck.py:394 +#: flatcamGUI/PreferencesUI.py:5750 flatcamTools/ToolRulesCheck.py:394 msgid "" "This checks if the minimum clearance between soldermask\n" "features and soldermask features is met." @@ -11838,13 +11835,13 @@ msgstr "" "Cette vérifie si la distance minimale entre soldermask\n" "traces et soldermask traces est rencontré." -#: flatcamGUI/PreferencesUI.py:5767 flatcamTools/ToolRulesCheck.py:415 +#: flatcamGUI/PreferencesUI.py:5768 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 "Anneau Minimum" -#: flatcamGUI/PreferencesUI.py:5769 flatcamTools/ToolRulesCheck.py:417 +#: flatcamGUI/PreferencesUI.py:5770 flatcamTools/ToolRulesCheck.py:417 msgid "" "This checks if the minimum copper ring left by drilling\n" "a hole into a pad is met." @@ -11852,16 +11849,16 @@ msgstr "" "Ceci vérifie si l'anneau de cuivre minimum laissé par le forage\n" "un trou dans un pad est rencontré." -#: flatcamGUI/PreferencesUI.py:5782 flatcamTools/ToolRulesCheck.py:430 +#: flatcamGUI/PreferencesUI.py:5783 flatcamTools/ToolRulesCheck.py:430 msgid "Minimum acceptable ring value." msgstr "Valeur de sonnerie minimale acceptable." -#: flatcamGUI/PreferencesUI.py:5789 flatcamTools/ToolRulesCheck.py:440 +#: flatcamGUI/PreferencesUI.py:5790 flatcamTools/ToolRulesCheck.py:440 #: flatcamTools/ToolRulesCheck.py:864 msgid "Hole to Hole Clearance" msgstr "Distance trou à trou" -#: flatcamGUI/PreferencesUI.py:5791 flatcamTools/ToolRulesCheck.py:442 +#: flatcamGUI/PreferencesUI.py:5792 flatcamTools/ToolRulesCheck.py:442 msgid "" "This checks if the minimum clearance between a drill hole\n" "and another drill hole is met." @@ -11869,16 +11866,16 @@ msgstr "" "Ceci vérifie si le jeu minimum entre un trou de forage\n" "et un autre trou de forage est rencontré." -#: flatcamGUI/PreferencesUI.py:5804 flatcamTools/ToolRulesCheck.py:478 +#: flatcamGUI/PreferencesUI.py:5805 flatcamTools/ToolRulesCheck.py:478 msgid "Minimum acceptable drill size." msgstr "Taille minimale acceptable du foret." -#: flatcamGUI/PreferencesUI.py:5809 flatcamTools/ToolRulesCheck.py:463 +#: flatcamGUI/PreferencesUI.py:5810 flatcamTools/ToolRulesCheck.py:463 #: flatcamTools/ToolRulesCheck.py:838 msgid "Hole Size" msgstr "Taille du trou" -#: flatcamGUI/PreferencesUI.py:5811 flatcamTools/ToolRulesCheck.py:465 +#: flatcamGUI/PreferencesUI.py:5812 flatcamTools/ToolRulesCheck.py:465 msgid "" "This checks if the drill holes\n" "sizes are above the threshold." @@ -11886,11 +11883,11 @@ msgstr "" "Ceci vérifie si les trous de forage\n" "les tailles sont au dessus du seuil." -#: flatcamGUI/PreferencesUI.py:5836 +#: flatcamGUI/PreferencesUI.py:5837 msgid "Optimal Tool Options" msgstr "Options de l'outil 'Optimal'" -#: flatcamGUI/PreferencesUI.py:5842 +#: flatcamGUI/PreferencesUI.py:5843 msgid "" "A tool to find the minimum distance between\n" "every two Gerber geometric elements" @@ -11898,20 +11895,20 @@ msgstr "" "Un outil pour trouver la distance minimale entre\n" "tous les deux éléments géométriques de Gerber" -#: flatcamGUI/PreferencesUI.py:5857 flatcamTools/ToolOptimal.py:78 +#: flatcamGUI/PreferencesUI.py:5858 flatcamTools/ToolOptimal.py:78 msgid "Precision" msgstr "Précision" -#: flatcamGUI/PreferencesUI.py:5859 +#: flatcamGUI/PreferencesUI.py:5860 msgid "Number of decimals for the distances and coordinates in this tool." msgstr "" "Nombre de décimales pour les distances et les coordonnées dans cet outil." -#: flatcamGUI/PreferencesUI.py:5873 +#: flatcamGUI/PreferencesUI.py:5874 msgid "QRCode Tool Options" msgstr "Options de l'outil QRCode" -#: flatcamGUI/PreferencesUI.py:5879 +#: flatcamGUI/PreferencesUI.py:5880 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." @@ -11920,11 +11917,11 @@ msgstr "" "dans un fichier Gerber sélectionné, ou il peut être exporté en tant que " "fichier." -#: flatcamGUI/PreferencesUI.py:5891 flatcamTools/ToolQRCode.py:99 +#: flatcamGUI/PreferencesUI.py:5892 flatcamTools/ToolQRCode.py:99 msgid "Version" msgstr "Version" -#: flatcamGUI/PreferencesUI.py:5893 flatcamTools/ToolQRCode.py:101 +#: flatcamGUI/PreferencesUI.py:5894 flatcamTools/ToolQRCode.py:101 msgid "" "QRCode version can have values from 1 (21x21 boxes)\n" "to 40 (177x177 boxes)." @@ -11932,11 +11929,11 @@ msgstr "" "La version QRCode peut avoir des valeurs de 1 (éléments 21x21)\n" "jusqu'à 40 (éléments 177x177)." -#: flatcamGUI/PreferencesUI.py:5904 flatcamTools/ToolQRCode.py:112 +#: flatcamGUI/PreferencesUI.py:5905 flatcamTools/ToolQRCode.py:112 msgid "Error correction" msgstr "Correction des erreurs" -#: flatcamGUI/PreferencesUI.py:5906 flatcamGUI/PreferencesUI.py:5917 +#: flatcamGUI/PreferencesUI.py:5907 flatcamGUI/PreferencesUI.py:5918 #: flatcamTools/ToolQRCode.py:114 flatcamTools/ToolQRCode.py:125 #, python-format msgid "" @@ -11952,11 +11949,11 @@ msgstr "" "Q = 25 %% maximum d'erreurs peuvent être corrigées\n" "H = maximum 30 %% d'erreurs peuvent être corrigées." -#: flatcamGUI/PreferencesUI.py:5927 flatcamTools/ToolQRCode.py:135 +#: flatcamGUI/PreferencesUI.py:5928 flatcamTools/ToolQRCode.py:135 msgid "Box Size" msgstr "Taille d'élément" -#: flatcamGUI/PreferencesUI.py:5929 flatcamTools/ToolQRCode.py:137 +#: flatcamGUI/PreferencesUI.py:5930 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." @@ -11964,11 +11961,11 @@ msgstr "" "La taille de l'élément contrôle la taille globale du QRcode\n" "en ajustant la taille de chaque case du code." -#: flatcamGUI/PreferencesUI.py:5940 flatcamTools/ToolQRCode.py:148 +#: flatcamGUI/PreferencesUI.py:5941 flatcamTools/ToolQRCode.py:148 msgid "Border Size" msgstr "Taille de bordure" -#: flatcamGUI/PreferencesUI.py:5942 flatcamTools/ToolQRCode.py:150 +#: flatcamGUI/PreferencesUI.py:5943 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." @@ -11976,23 +11973,23 @@ msgstr "" "Taille de la bordure QRCode. Combien d'éléments sont épais la bordure.\n" "La valeur par défaut est 4. La largeur du jeu autour du QRCode." -#: flatcamGUI/PreferencesUI.py:5953 flatcamTools/ToolQRCode.py:162 +#: flatcamGUI/PreferencesUI.py:5954 flatcamTools/ToolQRCode.py:162 msgid "QRCode Data" msgstr "Données QRCode" -#: flatcamGUI/PreferencesUI.py:5955 flatcamTools/ToolQRCode.py:164 +#: flatcamGUI/PreferencesUI.py:5956 flatcamTools/ToolQRCode.py:164 msgid "QRCode Data. Alphanumeric text to be encoded in the QRCode." msgstr "Données QRCode. Texte alphanumérique à encoder dans le QRCode." -#: flatcamGUI/PreferencesUI.py:5959 flatcamTools/ToolQRCode.py:168 +#: flatcamGUI/PreferencesUI.py:5960 flatcamTools/ToolQRCode.py:168 msgid "Add here the text to be included in the QRCode..." msgstr "Ajoutez ici le texte à inclure dans le QRCode ..." -#: flatcamGUI/PreferencesUI.py:5965 flatcamTools/ToolQRCode.py:174 +#: flatcamGUI/PreferencesUI.py:5966 flatcamTools/ToolQRCode.py:174 msgid "Polarity" msgstr "Polarité" -#: flatcamGUI/PreferencesUI.py:5967 flatcamTools/ToolQRCode.py:176 +#: flatcamGUI/PreferencesUI.py:5968 flatcamTools/ToolQRCode.py:176 msgid "" "Choose the polarity of the QRCode.\n" "It can be drawn in a negative way (squares are clear)\n" @@ -12002,17 +11999,17 @@ msgstr "" "Il peut être dessiné de manière négative (les carrés sont clairs)\n" "ou d'une manière positive (les carrés sont opaques)." -#: flatcamGUI/PreferencesUI.py:5971 flatcamTools/ToolFilm.py:296 +#: flatcamGUI/PreferencesUI.py:5972 flatcamTools/ToolFilm.py:296 #: flatcamTools/ToolQRCode.py:180 msgid "Negative" msgstr "Négatif" -#: flatcamGUI/PreferencesUI.py:5972 flatcamTools/ToolFilm.py:295 +#: flatcamGUI/PreferencesUI.py:5973 flatcamTools/ToolFilm.py:295 #: flatcamTools/ToolQRCode.py:181 msgid "Positive" msgstr "Positif" -#: flatcamGUI/PreferencesUI.py:5974 flatcamTools/ToolQRCode.py:183 +#: flatcamGUI/PreferencesUI.py:5975 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" @@ -12024,7 +12021,7 @@ msgstr "" "être ajouté comme positif. S'il est ajouté à un Gerber de cuivre\n" "fichier alors peut-être le QRCode peut être ajouté comme négatif." -#: flatcamGUI/PreferencesUI.py:5985 flatcamGUI/PreferencesUI.py:5991 +#: flatcamGUI/PreferencesUI.py:5986 flatcamGUI/PreferencesUI.py:5992 #: flatcamTools/ToolQRCode.py:194 flatcamTools/ToolQRCode.py:200 msgid "" "The bounding box, meaning the empty space that surrounds\n" @@ -12033,31 +12030,31 @@ msgstr "" "La boîte englobante, ce qui signifie l'espace vide qui entoure\n" "la géométrie QRCode, peut avoir une forme arrondie ou carrée." -#: flatcamGUI/PreferencesUI.py:5988 flatcamTools/ToolQRCode.py:197 +#: flatcamGUI/PreferencesUI.py:5989 flatcamTools/ToolQRCode.py:197 msgid "Rounded" msgstr "Arrondi" -#: flatcamGUI/PreferencesUI.py:5998 flatcamTools/ToolQRCode.py:228 +#: flatcamGUI/PreferencesUI.py:5999 flatcamTools/ToolQRCode.py:228 msgid "Fill Color" msgstr "La couleur de remplissage" -#: flatcamGUI/PreferencesUI.py:6000 flatcamTools/ToolQRCode.py:230 +#: flatcamGUI/PreferencesUI.py:6001 flatcamTools/ToolQRCode.py:230 msgid "Set the QRCode fill color (squares color)." msgstr "Définissez la couleur de remplissage QRCode (couleur des éléments)." -#: flatcamGUI/PreferencesUI.py:6019 flatcamTools/ToolQRCode.py:252 +#: flatcamGUI/PreferencesUI.py:6020 flatcamTools/ToolQRCode.py:252 msgid "Back Color" msgstr "Couleur de fond" -#: flatcamGUI/PreferencesUI.py:6021 flatcamTools/ToolQRCode.py:254 +#: flatcamGUI/PreferencesUI.py:6022 flatcamTools/ToolQRCode.py:254 msgid "Set the QRCode background color." msgstr "Définissez la couleur d'arrière-plan QRCode." -#: flatcamGUI/PreferencesUI.py:6061 +#: flatcamGUI/PreferencesUI.py:6062 msgid "Copper Thieving Tool Options" msgstr "Options d'outils de Copper Thieving" -#: flatcamGUI/PreferencesUI.py:6073 +#: flatcamGUI/PreferencesUI.py:6074 msgid "" "A tool to generate a Copper Thieving that can be added\n" "to a selected Gerber file." @@ -12065,16 +12062,16 @@ msgstr "" "Un outil pour générer un Copper Thieving qui peut être ajouté\n" "dans un fichier Gerber sélectionné." -#: flatcamGUI/PreferencesUI.py:6081 +#: flatcamGUI/PreferencesUI.py:6082 msgid "Number of steps (lines) used to interpolate circles." msgstr "Nombre d'étapes (lignes) utilisées pour interpoler les cercles." -#: flatcamGUI/PreferencesUI.py:6091 flatcamGUI/PreferencesUI.py:6295 +#: flatcamGUI/PreferencesUI.py:6092 flatcamGUI/PreferencesUI.py:6296 #: flatcamTools/ToolCopperThieving.py:96 flatcamTools/ToolCopperThieving.py:429 msgid "Clearance" msgstr "Dégagement" -#: flatcamGUI/PreferencesUI.py:6093 +#: flatcamGUI/PreferencesUI.py:6094 msgid "" "This set the distance between the copper Thieving components\n" "(the polygon fill may be split in multiple polygons)\n" @@ -12084,22 +12081,22 @@ msgstr "" "(le remplissage du polygone peut être divisé en plusieurs polygones)\n" "et les traces de cuivre dans le fichier Gerber." -#: flatcamGUI/PreferencesUI.py:6121 flatcamTools/ToolCopperThieving.py:126 +#: flatcamGUI/PreferencesUI.py:6122 flatcamTools/ToolCopperThieving.py:126 #: flatcamTools/ToolNonCopperClear.py:436 flatcamTools/ToolPaint.py:314 msgid "Area Selection" msgstr "Sélection de zone" -#: flatcamGUI/PreferencesUI.py:6122 flatcamTools/ToolCopperThieving.py:127 +#: flatcamGUI/PreferencesUI.py:6123 flatcamTools/ToolCopperThieving.py:127 #: flatcamTools/ToolNonCopperClear.py:437 flatcamTools/ToolPaint.py:316 msgid "Reference Object" msgstr "Objet de référence" -#: flatcamGUI/PreferencesUI.py:6124 flatcamTools/ToolCopperThieving.py:129 +#: flatcamGUI/PreferencesUI.py:6125 flatcamTools/ToolCopperThieving.py:129 #: flatcamTools/ToolNonCopperClear.py:439 msgid "Reference:" msgstr "Référence:" -#: flatcamGUI/PreferencesUI.py:6126 +#: flatcamGUI/PreferencesUI.py:6127 msgid "" "- 'Itself' - the copper Thieving extent is based on the object extent.\n" "- 'Area Selection' - left mouse click to start selection of the area to be " @@ -12114,20 +12111,20 @@ msgstr "" "- «Objet de référence» - effectuera un vol de cuivre dans la zone spécifiée " "par un autre objet." -#: flatcamGUI/PreferencesUI.py:6135 flatcamTools/ToolCopperThieving.py:170 +#: flatcamGUI/PreferencesUI.py:6136 flatcamTools/ToolCopperThieving.py:170 msgid "Rectangular" msgstr "Rectangulaire" -#: flatcamGUI/PreferencesUI.py:6136 flatcamTools/ToolCopperThieving.py:171 +#: flatcamGUI/PreferencesUI.py:6137 flatcamTools/ToolCopperThieving.py:171 msgid "Minimal" msgstr "Minimal" -#: flatcamGUI/PreferencesUI.py:6138 flatcamTools/ToolCopperThieving.py:173 +#: flatcamGUI/PreferencesUI.py:6139 flatcamTools/ToolCopperThieving.py:173 #: flatcamTools/ToolFilm.py:113 msgid "Box Type:" msgstr "Type de Box:" -#: flatcamGUI/PreferencesUI.py:6140 flatcamTools/ToolCopperThieving.py:175 +#: flatcamGUI/PreferencesUI.py:6141 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." @@ -12135,23 +12132,23 @@ msgstr "" "- 'Rectangulaire' - le cadre de délimitation sera de forme rectangulaire.\n" "- 'Minimal' - le cadre de délimitation aura la forme d'une coque convexe." -#: flatcamGUI/PreferencesUI.py:6154 flatcamTools/ToolCopperThieving.py:191 +#: flatcamGUI/PreferencesUI.py:6155 flatcamTools/ToolCopperThieving.py:191 msgid "Dots Grid" msgstr "Grille de points" -#: flatcamGUI/PreferencesUI.py:6155 flatcamTools/ToolCopperThieving.py:192 +#: flatcamGUI/PreferencesUI.py:6156 flatcamTools/ToolCopperThieving.py:192 msgid "Squares Grid" msgstr "Grille de carrés" -#: flatcamGUI/PreferencesUI.py:6156 flatcamTools/ToolCopperThieving.py:193 +#: flatcamGUI/PreferencesUI.py:6157 flatcamTools/ToolCopperThieving.py:193 msgid "Lines Grid" msgstr "Grille de lignes" -#: flatcamGUI/PreferencesUI.py:6158 flatcamTools/ToolCopperThieving.py:195 +#: flatcamGUI/PreferencesUI.py:6159 flatcamTools/ToolCopperThieving.py:195 msgid "Fill Type:" msgstr "Type de remplissage:" -#: flatcamGUI/PreferencesUI.py:6160 flatcamTools/ToolCopperThieving.py:197 +#: flatcamGUI/PreferencesUI.py:6161 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" @@ -12163,54 +12160,54 @@ msgstr "" "- 'Grille de carrés' - la zone vide sera remplie d'un motif de carrés.\n" "- 'Grille de lignes' - la zone vide sera remplie d'un motif de lignes." -#: flatcamGUI/PreferencesUI.py:6168 flatcamTools/ToolCopperThieving.py:216 +#: flatcamGUI/PreferencesUI.py:6169 flatcamTools/ToolCopperThieving.py:216 msgid "Dots Grid Parameters" msgstr "Paramètres de la grille de points" -#: flatcamGUI/PreferencesUI.py:6174 flatcamTools/ToolCopperThieving.py:222 +#: flatcamGUI/PreferencesUI.py:6175 flatcamTools/ToolCopperThieving.py:222 msgid "Dot diameter in Dots Grid." msgstr "Diamètre des points dans la grille des points." -#: flatcamGUI/PreferencesUI.py:6185 flatcamGUI/PreferencesUI.py:6214 -#: flatcamGUI/PreferencesUI.py:6243 flatcamTools/ToolCopperThieving.py:233 +#: flatcamGUI/PreferencesUI.py:6186 flatcamGUI/PreferencesUI.py:6215 +#: flatcamGUI/PreferencesUI.py:6244 flatcamTools/ToolCopperThieving.py:233 #: flatcamTools/ToolCopperThieving.py:273 #: flatcamTools/ToolCopperThieving.py:313 msgid "Spacing" msgstr "Espacement" -#: flatcamGUI/PreferencesUI.py:6187 flatcamTools/ToolCopperThieving.py:235 +#: flatcamGUI/PreferencesUI.py:6188 flatcamTools/ToolCopperThieving.py:235 msgid "Distance between each two dots in Dots Grid." msgstr "Distance entre deux points dans la grille de points." -#: flatcamGUI/PreferencesUI.py:6197 flatcamTools/ToolCopperThieving.py:256 +#: flatcamGUI/PreferencesUI.py:6198 flatcamTools/ToolCopperThieving.py:256 msgid "Squares Grid Parameters" msgstr "Paramètres de la grille des carrés" -#: flatcamGUI/PreferencesUI.py:6203 flatcamTools/ToolCopperThieving.py:262 +#: flatcamGUI/PreferencesUI.py:6204 flatcamTools/ToolCopperThieving.py:262 msgid "Square side size in Squares Grid." msgstr "Taille du côté carré dans la grille des carrés." -#: flatcamGUI/PreferencesUI.py:6216 flatcamTools/ToolCopperThieving.py:275 +#: flatcamGUI/PreferencesUI.py:6217 flatcamTools/ToolCopperThieving.py:275 msgid "Distance between each two squares in Squares Grid." msgstr "Distance entre deux carrés dans la grille des carrés." -#: flatcamGUI/PreferencesUI.py:6226 flatcamTools/ToolCopperThieving.py:296 +#: flatcamGUI/PreferencesUI.py:6227 flatcamTools/ToolCopperThieving.py:296 msgid "Lines Grid Parameters" msgstr "Paramètres de grille de lignes" -#: flatcamGUI/PreferencesUI.py:6232 flatcamTools/ToolCopperThieving.py:302 +#: flatcamGUI/PreferencesUI.py:6233 flatcamTools/ToolCopperThieving.py:302 msgid "Line thickness size in Lines Grid." msgstr "Taille d'épaisseur de ligne dans la grille de lignes." -#: flatcamGUI/PreferencesUI.py:6245 flatcamTools/ToolCopperThieving.py:315 +#: flatcamGUI/PreferencesUI.py:6246 flatcamTools/ToolCopperThieving.py:315 msgid "Distance between each two lines in Lines Grid." msgstr "Distance entre deux lignes dans la grille de lignes." -#: flatcamGUI/PreferencesUI.py:6255 flatcamTools/ToolCopperThieving.py:353 +#: flatcamGUI/PreferencesUI.py:6256 flatcamTools/ToolCopperThieving.py:353 msgid "Robber Bar Parameters" msgstr "Paramètres de la Robber Bar" -#: flatcamGUI/PreferencesUI.py:6257 flatcamTools/ToolCopperThieving.py:355 +#: flatcamGUI/PreferencesUI.py:6258 flatcamTools/ToolCopperThieving.py:355 msgid "" "Parameters used for the robber bar.\n" "Robber bar = copper border to help in pattern hole plating." @@ -12218,27 +12215,27 @@ msgstr "" "Paramètres utilisés pour la Robber Bar.\n" "Robber Bar = bordure en cuivre pour faciliter le placage des trous." -#: flatcamGUI/PreferencesUI.py:6265 flatcamTools/ToolCopperThieving.py:363 +#: flatcamGUI/PreferencesUI.py:6266 flatcamTools/ToolCopperThieving.py:363 msgid "Bounding box margin for robber bar." msgstr "Marge de la zone de délimitation pour la Robber Bar." -#: flatcamGUI/PreferencesUI.py:6276 flatcamTools/ToolCopperThieving.py:374 +#: flatcamGUI/PreferencesUI.py:6277 flatcamTools/ToolCopperThieving.py:374 msgid "Thickness" msgstr "Épaisseur" -#: flatcamGUI/PreferencesUI.py:6278 flatcamTools/ToolCopperThieving.py:376 +#: flatcamGUI/PreferencesUI.py:6279 flatcamTools/ToolCopperThieving.py:376 msgid "The robber bar thickness." msgstr "L'épaisseur de la Robber Bar." -#: flatcamGUI/PreferencesUI.py:6288 flatcamTools/ToolCopperThieving.py:407 +#: flatcamGUI/PreferencesUI.py:6289 flatcamTools/ToolCopperThieving.py:407 msgid "Pattern Plating Mask" msgstr "Masque de placage de motifs" -#: flatcamGUI/PreferencesUI.py:6290 flatcamTools/ToolCopperThieving.py:409 +#: flatcamGUI/PreferencesUI.py:6291 flatcamTools/ToolCopperThieving.py:409 msgid "Generate a mask for pattern plating." msgstr "Générez un masque pour le placage de motifs." -#: flatcamGUI/PreferencesUI.py:6297 flatcamTools/ToolCopperThieving.py:431 +#: flatcamGUI/PreferencesUI.py:6298 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." @@ -12246,16 +12243,16 @@ msgstr "" "La distance entre les éléments de Copper Thieving possibles\n" "et / ou Robber Bar et les ouvertures réelles dans le masque." -#: flatcamGUI/PreferencesUI.py:6316 +#: flatcamGUI/PreferencesUI.py:6317 msgid "Fiducials Tool Options" msgstr "Options de l'outil Fiducials" -#: flatcamGUI/PreferencesUI.py:6327 flatcamGUI/PreferencesUI.py:6443 +#: flatcamGUI/PreferencesUI.py:6328 flatcamGUI/PreferencesUI.py:6444 #: flatcamTools/ToolCopperThieving.py:91 flatcamTools/ToolFiducials.py:151 msgid "Parameters used for this tool." msgstr "Paramètres utilisés pour cet outil." -#: flatcamGUI/PreferencesUI.py:6334 flatcamTools/ToolFiducials.py:158 +#: flatcamGUI/PreferencesUI.py:6335 flatcamTools/ToolFiducials.py:158 msgid "" "This set the fiducial diameter if fiducial type is circular,\n" "otherwise is the size of the fiducial.\n" @@ -12265,19 +12262,19 @@ msgstr "" "sinon, c'est la taille du fiduciaire.\n" "L'ouverture du masque de soldat est double." -#: flatcamGUI/PreferencesUI.py:6362 flatcamTools/ToolFiducials.py:186 +#: flatcamGUI/PreferencesUI.py:6363 flatcamTools/ToolFiducials.py:186 msgid "Auto" msgstr "Auto" -#: flatcamGUI/PreferencesUI.py:6363 flatcamTools/ToolFiducials.py:187 +#: flatcamGUI/PreferencesUI.py:6364 flatcamTools/ToolFiducials.py:187 msgid "Manual" msgstr "Manuel" -#: flatcamGUI/PreferencesUI.py:6365 flatcamTools/ToolFiducials.py:189 +#: flatcamGUI/PreferencesUI.py:6366 flatcamTools/ToolFiducials.py:189 msgid "Mode:" msgstr "Mode:" -#: flatcamGUI/PreferencesUI.py:6367 +#: flatcamGUI/PreferencesUI.py:6368 msgid "" "- 'Auto' - automatic placement of fiducials in the corners of the bounding " "box.\n" @@ -12287,19 +12284,19 @@ msgstr "" "sélection.\n" "- «Manuel» - placement manuel des fiduciaires." -#: flatcamGUI/PreferencesUI.py:6375 flatcamTools/ToolFiducials.py:199 +#: flatcamGUI/PreferencesUI.py:6376 flatcamTools/ToolFiducials.py:199 msgid "Up" msgstr "Haut" -#: flatcamGUI/PreferencesUI.py:6376 flatcamTools/ToolFiducials.py:200 +#: flatcamGUI/PreferencesUI.py:6377 flatcamTools/ToolFiducials.py:200 msgid "Down" msgstr "Bas" -#: flatcamGUI/PreferencesUI.py:6379 flatcamTools/ToolFiducials.py:203 +#: flatcamGUI/PreferencesUI.py:6380 flatcamTools/ToolFiducials.py:203 msgid "Second fiducial" msgstr "Deuxième fiducial" -#: flatcamGUI/PreferencesUI.py:6381 flatcamTools/ToolFiducials.py:205 +#: flatcamGUI/PreferencesUI.py:6382 flatcamTools/ToolFiducials.py:205 msgid "" "The position for the second fiducial.\n" "- 'Up' - the order is: bottom-left, top-left, top-right.\n" @@ -12313,19 +12310,19 @@ msgstr "" "- «Aucun» - il n'y a pas de deuxième fiduciaire. L'ordre est: en bas à " "gauche, en haut à droite." -#: flatcamGUI/PreferencesUI.py:6397 flatcamTools/ToolFiducials.py:221 +#: flatcamGUI/PreferencesUI.py:6398 flatcamTools/ToolFiducials.py:221 msgid "Cross" msgstr "Croix" -#: flatcamGUI/PreferencesUI.py:6398 flatcamTools/ToolFiducials.py:222 +#: flatcamGUI/PreferencesUI.py:6399 flatcamTools/ToolFiducials.py:222 msgid "Chess" msgstr "Échecs" -#: flatcamGUI/PreferencesUI.py:6401 flatcamTools/ToolFiducials.py:224 +#: flatcamGUI/PreferencesUI.py:6402 flatcamTools/ToolFiducials.py:224 msgid "Fiducial Type" msgstr "Type fiduciaire" -#: flatcamGUI/PreferencesUI.py:6403 flatcamTools/ToolFiducials.py:226 +#: flatcamGUI/PreferencesUI.py:6404 flatcamTools/ToolFiducials.py:226 msgid "" "The type of fiducial.\n" "- 'Circular' - this is the regular fiducial.\n" @@ -12337,19 +12334,19 @@ msgstr "" "- 'Croix' - croix lignes fiduciales.\n" "- 'Échecs' - modèle d'échecs fiducial." -#: flatcamGUI/PreferencesUI.py:6412 flatcamTools/ToolFiducials.py:235 +#: flatcamGUI/PreferencesUI.py:6413 flatcamTools/ToolFiducials.py:235 msgid "Line thickness" msgstr "Épaisseur de ligne" -#: flatcamGUI/PreferencesUI.py:6432 +#: flatcamGUI/PreferencesUI.py:6433 msgid "Calibration Tool Options" msgstr "Options de l'outil d'Étalonnage" -#: flatcamGUI/PreferencesUI.py:6448 flatcamTools/ToolCalibration.py:181 +#: flatcamGUI/PreferencesUI.py:6449 flatcamTools/ToolCalibration.py:181 msgid "Source Type" msgstr "Type de Source" -#: flatcamGUI/PreferencesUI.py:6449 flatcamTools/ToolCalibration.py:182 +#: flatcamGUI/PreferencesUI.py:6450 flatcamTools/ToolCalibration.py:182 msgid "" "The source of calibration points.\n" "It can be:\n" @@ -12362,27 +12359,27 @@ msgstr "" "- Libre -> cliquez librement sur le canevas pour acquérir les points " "d'étalonnage" -#: flatcamGUI/PreferencesUI.py:6454 flatcamTools/ToolCalibration.py:187 +#: flatcamGUI/PreferencesUI.py:6455 flatcamTools/ToolCalibration.py:187 msgid "Free" msgstr "Libre" -#: flatcamGUI/PreferencesUI.py:6468 flatcamTools/ToolCalibration.py:76 +#: flatcamGUI/PreferencesUI.py:6469 flatcamTools/ToolCalibration.py:76 msgid "Height (Z) for travelling between the points." msgstr "Hauteur (Z) pour voyager entre les points." -#: flatcamGUI/PreferencesUI.py:6480 flatcamTools/ToolCalibration.py:88 +#: flatcamGUI/PreferencesUI.py:6481 flatcamTools/ToolCalibration.py:88 msgid "Verification Z" msgstr "Vérification Z" -#: flatcamGUI/PreferencesUI.py:6482 flatcamTools/ToolCalibration.py:90 +#: flatcamGUI/PreferencesUI.py:6483 flatcamTools/ToolCalibration.py:90 msgid "Height (Z) for checking the point." msgstr "Hauteur (Z) pour vérifier le point." -#: flatcamGUI/PreferencesUI.py:6494 flatcamTools/ToolCalibration.py:102 +#: flatcamGUI/PreferencesUI.py:6495 flatcamTools/ToolCalibration.py:102 msgid "Zero Z tool" msgstr "Remise à Zéro du Z pour l'Outil" -#: flatcamGUI/PreferencesUI.py:6496 flatcamTools/ToolCalibration.py:104 +#: flatcamGUI/PreferencesUI.py:6497 flatcamTools/ToolCalibration.py:104 msgid "" "Include a sequence to zero the height (Z)\n" "of the verification tool." @@ -12390,11 +12387,11 @@ msgstr "" "Inclure une séquence pour mettre à zéro la hauteur (Z)\n" "de l'outil de vérification." -#: flatcamGUI/PreferencesUI.py:6505 flatcamTools/ToolCalibration.py:113 +#: flatcamGUI/PreferencesUI.py:6506 flatcamTools/ToolCalibration.py:113 msgid "Height (Z) for mounting the verification probe." msgstr "Hauteur (Z) pour le montage de la sonde de vérification." -#: flatcamGUI/PreferencesUI.py:6519 flatcamTools/ToolCalibration.py:127 +#: flatcamGUI/PreferencesUI.py:6520 flatcamTools/ToolCalibration.py:127 msgid "" "Toolchange X,Y position.\n" "If no value is entered then the current\n" @@ -12404,11 +12401,11 @@ msgstr "" "Si aucune valeur n'est entrée, le courant\n" "(x, y) le point sera utilisé," -#: flatcamGUI/PreferencesUI.py:6530 flatcamTools/ToolCalibration.py:153 +#: flatcamGUI/PreferencesUI.py:6531 flatcamTools/ToolCalibration.py:153 msgid "Second point" msgstr "Deuxième point" -#: flatcamGUI/PreferencesUI.py:6532 flatcamTools/ToolCalibration.py:155 +#: flatcamGUI/PreferencesUI.py:6533 flatcamTools/ToolCalibration.py:155 msgid "" "Second point in the Gcode verification can be:\n" "- top-left -> the user will align the PCB vertically\n" @@ -12418,45 +12415,45 @@ msgstr "" "- en haut à gauche -> l'utilisateur alignera le PCB verticalement\n" "- en bas à droite -> l'utilisateur alignera le PCB horizontalement" -#: flatcamGUI/PreferencesUI.py:6536 flatcamTools/ToolCalibration.py:159 +#: flatcamGUI/PreferencesUI.py:6537 flatcamTools/ToolCalibration.py:159 msgid "Top-Left" msgstr "En haut à gauche" -#: flatcamGUI/PreferencesUI.py:6537 flatcamTools/ToolCalibration.py:160 +#: flatcamGUI/PreferencesUI.py:6538 flatcamTools/ToolCalibration.py:160 msgid "Bottom-Right" msgstr "En bas à droite" -#: flatcamGUI/PreferencesUI.py:6551 +#: flatcamGUI/PreferencesUI.py:6552 msgid "Excellon File associations" msgstr "Associations de fichiers Excellon" -#: flatcamGUI/PreferencesUI.py:6564 flatcamGUI/PreferencesUI.py:6637 -#: flatcamGUI/PreferencesUI.py:6707 flatcamGUI/PreferencesUI.py:6777 +#: flatcamGUI/PreferencesUI.py:6565 flatcamGUI/PreferencesUI.py:6638 +#: flatcamGUI/PreferencesUI.py:6708 flatcamGUI/PreferencesUI.py:6778 msgid "Restore" msgstr "Restaurer" -#: flatcamGUI/PreferencesUI.py:6565 flatcamGUI/PreferencesUI.py:6638 -#: flatcamGUI/PreferencesUI.py:6708 +#: flatcamGUI/PreferencesUI.py:6566 flatcamGUI/PreferencesUI.py:6639 +#: flatcamGUI/PreferencesUI.py:6709 msgid "Restore the extension list to the default state." msgstr "Restaurez la liste des extensions à l'état par défaut." -#: flatcamGUI/PreferencesUI.py:6566 flatcamGUI/PreferencesUI.py:6639 -#: flatcamGUI/PreferencesUI.py:6709 flatcamGUI/PreferencesUI.py:6779 +#: flatcamGUI/PreferencesUI.py:6567 flatcamGUI/PreferencesUI.py:6640 +#: flatcamGUI/PreferencesUI.py:6710 flatcamGUI/PreferencesUI.py:6780 msgid "Delete All" msgstr "Supprimer tout" -#: flatcamGUI/PreferencesUI.py:6567 flatcamGUI/PreferencesUI.py:6640 -#: flatcamGUI/PreferencesUI.py:6710 +#: flatcamGUI/PreferencesUI.py:6568 flatcamGUI/PreferencesUI.py:6641 +#: flatcamGUI/PreferencesUI.py:6711 msgid "Delete all extensions from the list." msgstr "Supprimer toutes les extensions de la liste." -#: flatcamGUI/PreferencesUI.py:6575 flatcamGUI/PreferencesUI.py:6648 -#: flatcamGUI/PreferencesUI.py:6718 +#: flatcamGUI/PreferencesUI.py:6576 flatcamGUI/PreferencesUI.py:6649 +#: flatcamGUI/PreferencesUI.py:6719 msgid "Extensions list" msgstr "Liste d'extensions" -#: flatcamGUI/PreferencesUI.py:6577 flatcamGUI/PreferencesUI.py:6650 -#: flatcamGUI/PreferencesUI.py:6720 +#: flatcamGUI/PreferencesUI.py:6578 flatcamGUI/PreferencesUI.py:6651 +#: flatcamGUI/PreferencesUI.py:6721 msgid "" "List of file extensions to be\n" "associated with FlatCAM." @@ -12464,43 +12461,43 @@ msgstr "" "Liste des extensions de fichier à être\n" "associé à FlatCAM." -#: flatcamGUI/PreferencesUI.py:6597 flatcamGUI/PreferencesUI.py:6670 -#: flatcamGUI/PreferencesUI.py:6739 flatcamGUI/PreferencesUI.py:6811 +#: flatcamGUI/PreferencesUI.py:6598 flatcamGUI/PreferencesUI.py:6671 +#: flatcamGUI/PreferencesUI.py:6740 flatcamGUI/PreferencesUI.py:6812 msgid "Extension" msgstr "Extension" -#: flatcamGUI/PreferencesUI.py:6598 flatcamGUI/PreferencesUI.py:6671 -#: flatcamGUI/PreferencesUI.py:6740 +#: flatcamGUI/PreferencesUI.py:6599 flatcamGUI/PreferencesUI.py:6672 +#: flatcamGUI/PreferencesUI.py:6741 msgid "A file extension to be added or deleted to the list." msgstr "Une extension de fichier à ajouter ou à supprimer à la liste." -#: flatcamGUI/PreferencesUI.py:6606 flatcamGUI/PreferencesUI.py:6679 -#: flatcamGUI/PreferencesUI.py:6748 +#: flatcamGUI/PreferencesUI.py:6607 flatcamGUI/PreferencesUI.py:6680 +#: flatcamGUI/PreferencesUI.py:6749 msgid "Add Extension" msgstr "Ajouter une extension" -#: flatcamGUI/PreferencesUI.py:6607 flatcamGUI/PreferencesUI.py:6680 -#: flatcamGUI/PreferencesUI.py:6749 +#: flatcamGUI/PreferencesUI.py:6608 flatcamGUI/PreferencesUI.py:6681 +#: flatcamGUI/PreferencesUI.py:6750 msgid "Add a file extension to the list" msgstr "Ajouter une extension de fichier à la liste" -#: flatcamGUI/PreferencesUI.py:6608 flatcamGUI/PreferencesUI.py:6681 -#: flatcamGUI/PreferencesUI.py:6750 +#: flatcamGUI/PreferencesUI.py:6609 flatcamGUI/PreferencesUI.py:6682 +#: flatcamGUI/PreferencesUI.py:6751 msgid "Delete Extension" msgstr "Supprimer l'extension" -#: flatcamGUI/PreferencesUI.py:6609 flatcamGUI/PreferencesUI.py:6682 -#: flatcamGUI/PreferencesUI.py:6751 +#: flatcamGUI/PreferencesUI.py:6610 flatcamGUI/PreferencesUI.py:6683 +#: flatcamGUI/PreferencesUI.py:6752 msgid "Delete a file extension from the list" msgstr "Supprimer une extension de fichier de la liste" -#: flatcamGUI/PreferencesUI.py:6616 flatcamGUI/PreferencesUI.py:6689 -#: flatcamGUI/PreferencesUI.py:6758 +#: flatcamGUI/PreferencesUI.py:6617 flatcamGUI/PreferencesUI.py:6690 +#: flatcamGUI/PreferencesUI.py:6759 msgid "Apply Association" msgstr "Appliquer l'association" -#: flatcamGUI/PreferencesUI.py:6617 flatcamGUI/PreferencesUI.py:6690 -#: flatcamGUI/PreferencesUI.py:6759 +#: flatcamGUI/PreferencesUI.py:6618 flatcamGUI/PreferencesUI.py:6691 +#: flatcamGUI/PreferencesUI.py:6760 msgid "" "Apply the file associations between\n" "FlatCAM and the files with above extensions.\n" @@ -12512,31 +12509,31 @@ msgstr "" "Ils seront actifs après la prochaine ouverture de session.\n" "Cela ne fonctionne que sous Windows." -#: flatcamGUI/PreferencesUI.py:6634 +#: flatcamGUI/PreferencesUI.py:6635 msgid "GCode File associations" msgstr "Associations de fichiers GCode" -#: flatcamGUI/PreferencesUI.py:6704 +#: flatcamGUI/PreferencesUI.py:6705 msgid "Gerber File associations" msgstr "Associations de fichiers Gerber" -#: flatcamGUI/PreferencesUI.py:6774 +#: flatcamGUI/PreferencesUI.py:6775 msgid "Autocompleter Keywords" msgstr "Mots-clés d'auto-complétion" -#: flatcamGUI/PreferencesUI.py:6778 +#: flatcamGUI/PreferencesUI.py:6779 msgid "Restore the autocompleter keywords list to the default state." msgstr "Restaurez la liste de mots-clés d'auto-complétion à l'état par défaut." -#: flatcamGUI/PreferencesUI.py:6780 +#: flatcamGUI/PreferencesUI.py:6781 msgid "Delete all autocompleter keywords from the list." msgstr "Supprimer tous les mots clés autocompleter de la liste." -#: flatcamGUI/PreferencesUI.py:6788 +#: flatcamGUI/PreferencesUI.py:6789 msgid "Keywords list" msgstr "Liste des mots clés" -#: flatcamGUI/PreferencesUI.py:6790 +#: flatcamGUI/PreferencesUI.py:6791 msgid "" "List of keywords used by\n" "the autocompleter in FlatCAM.\n" @@ -12548,23 +12545,23 @@ msgstr "" "L'auto-compléteur est installé\n" "dans l'éditeur de code et pour le shell Tcl." -#: flatcamGUI/PreferencesUI.py:6812 +#: flatcamGUI/PreferencesUI.py:6813 msgid "A keyword to be added or deleted to the list." msgstr "Un mot clé à ajouter ou à supprimer à la liste." -#: flatcamGUI/PreferencesUI.py:6820 +#: flatcamGUI/PreferencesUI.py:6821 msgid "Add keyword" msgstr "Ajouter un mot clé" -#: flatcamGUI/PreferencesUI.py:6821 +#: flatcamGUI/PreferencesUI.py:6822 msgid "Add a keyword to the list" msgstr "Ajouter un mot clé à la liste" -#: flatcamGUI/PreferencesUI.py:6822 +#: flatcamGUI/PreferencesUI.py:6823 msgid "Delete keyword" msgstr "Supprimer le mot clé" -#: flatcamGUI/PreferencesUI.py:6823 +#: flatcamGUI/PreferencesUI.py:6824 msgid "Delete a keyword from the list" msgstr "Supprimer un mot clé de la liste" @@ -13257,7 +13254,6 @@ msgid "mm" msgstr "mm" #: flatcamTools/ToolCopperThieving.py:458 -#| msgid "info" msgid "in" msgstr "in" @@ -13319,9 +13315,9 @@ msgstr "Outil de Copper Thieving fait." #: flatcamTools/ToolCopperThieving.py:754 #: flatcamTools/ToolCopperThieving.py:787 flatcamTools/ToolCutOut.py:466 -#: flatcamTools/ToolCutOut.py:640 flatcamTools/ToolNonCopperClear.py:1156 -#: flatcamTools/ToolNonCopperClear.py:1197 -#: flatcamTools/ToolNonCopperClear.py:1229 flatcamTools/ToolPaint.py:1079 +#: flatcamTools/ToolCutOut.py:640 flatcamTools/ToolNonCopperClear.py:1157 +#: flatcamTools/ToolNonCopperClear.py:1198 +#: flatcamTools/ToolNonCopperClear.py:1230 flatcamTools/ToolPaint.py:1080 #: flatcamTools/ToolPanelize.py:401 flatcamTools/ToolPanelize.py:416 #: flatcamTools/ToolSub.py:288 flatcamTools/ToolSub.py:301 #: flatcamTools/ToolSub.py:492 flatcamTools/ToolSub.py:507 @@ -13331,7 +13327,7 @@ msgid "Could not retrieve object" msgstr "Impossible de récupérer l'objet" #: flatcamTools/ToolCopperThieving.py:764 -#: flatcamTools/ToolNonCopperClear.py:1210 +#: flatcamTools/ToolNonCopperClear.py:1211 msgid "Click the start point of the area." msgstr "Cliquez sur le point de départ de la zone." @@ -13340,7 +13336,7 @@ msgid "Click the end point of the filling area." msgstr "Cliquez sur le point final de la zone de remplissage." #: flatcamTools/ToolCopperThieving.py:821 -#: flatcamTools/ToolNonCopperClear.py:1266 flatcamTools/ToolPaint.py:1206 +#: flatcamTools/ToolNonCopperClear.py:1267 flatcamTools/ToolPaint.py:1207 msgid "Zone added. Click to start adding next zone or right click to finish." msgstr "" "Zone ajoutée. Cliquez pour commencer à ajouter la zone suivante ou faites un " @@ -13374,12 +13370,12 @@ msgid "Geometry not supported for bounding box" msgstr "Géométrie non prise en charge pour le cadre de sélection" #: flatcamTools/ToolCopperThieving.py:1061 -#: flatcamTools/ToolNonCopperClear.py:1517 flatcamTools/ToolPaint.py:2571 +#: flatcamTools/ToolNonCopperClear.py:1518 flatcamTools/ToolPaint.py:2572 msgid "No object available." msgstr "Aucun objet disponible." #: flatcamTools/ToolCopperThieving.py:1098 -#: flatcamTools/ToolNonCopperClear.py:1559 +#: flatcamTools/ToolNonCopperClear.py:1560 msgid "The reference object type is not supported." msgstr "Le type d'objet de référence n'est pas pris en charge." @@ -13593,8 +13589,8 @@ msgstr "" msgid "Any form CutOut operation finished." msgstr "Opération de découpe Forme Libre terminée." -#: flatcamTools/ToolCutOut.py:644 flatcamTools/ToolNonCopperClear.py:1160 -#: flatcamTools/ToolPaint.py:999 flatcamTools/ToolPanelize.py:406 +#: flatcamTools/ToolCutOut.py:644 flatcamTools/ToolNonCopperClear.py:1161 +#: flatcamTools/ToolPaint.py:1000 flatcamTools/ToolPanelize.py:406 #: tclCommands/TclCommandBbox.py:70 tclCommands/TclCommandNregions.py:70 msgid "Object not found" msgstr "Objet non trouvé" @@ -14046,7 +14042,6 @@ msgid "Will add a polygon on the copper layer to serve as fiducial." msgstr "Ajoutera un polygone sur la couche de cuivre pour servir de repère." #: flatcamTools/ToolFiducials.py:285 -#| msgid "New Blank Gerber" msgid "Soldermask Gerber" msgstr "Soldermask Gerber" @@ -14614,113 +14609,113 @@ msgstr "" msgid "Generate Geometry" msgstr "Générer de la Géométrie" -#: flatcamTools/ToolNonCopperClear.py:587 flatcamTools/ToolPaint.py:498 +#: flatcamTools/ToolNonCopperClear.py:588 flatcamTools/ToolPaint.py:499 #: flatcamTools/ToolSolderPaste.py:553 msgid "New Tool" msgstr "Nouvel Outil" -#: flatcamTools/ToolNonCopperClear.py:986 flatcamTools/ToolPaint.py:771 -#: flatcamTools/ToolSolderPaste.py:884 +#: flatcamTools/ToolNonCopperClear.py:987 flatcamTools/ToolPaint.py:772 +#: flatcamTools/ToolSolderPaste.py:887 msgid "Please enter a tool diameter to add, in Float format." msgstr "Veuillez saisir un diamètre d'outil à ajouter, au format réel." -#: flatcamTools/ToolNonCopperClear.py:1017 flatcamTools/ToolPaint.py:796 +#: flatcamTools/ToolNonCopperClear.py:1018 flatcamTools/ToolPaint.py:797 msgid "Adding tool cancelled. Tool already in Tool Table." msgstr "Ajout de l'outil annulé. Outil déjà dans la table d'outils." -#: flatcamTools/ToolNonCopperClear.py:1022 flatcamTools/ToolPaint.py:802 +#: flatcamTools/ToolNonCopperClear.py:1023 flatcamTools/ToolPaint.py:803 msgid "New tool added to Tool Table." msgstr "Nouvel outil ajouté à la table d'outils." -#: flatcamTools/ToolNonCopperClear.py:1066 flatcamTools/ToolPaint.py:848 +#: flatcamTools/ToolNonCopperClear.py:1067 flatcamTools/ToolPaint.py:849 msgid "Tool from Tool Table was edited." msgstr "L'outil de la table d'outils a été modifié." -#: flatcamTools/ToolNonCopperClear.py:1077 flatcamTools/ToolPaint.py:860 -#: flatcamTools/ToolSolderPaste.py:975 +#: flatcamTools/ToolNonCopperClear.py:1078 flatcamTools/ToolPaint.py:861 +#: flatcamTools/ToolSolderPaste.py:978 msgid "Edit cancelled. New diameter value is already in the Tool Table." msgstr "" "Modifier annulé. La nouvelle valeur de diamètre est déjà dans la table " "d'outils." -#: flatcamTools/ToolNonCopperClear.py:1124 flatcamTools/ToolPaint.py:958 +#: flatcamTools/ToolNonCopperClear.py:1125 flatcamTools/ToolPaint.py:959 msgid "Delete failed. Select a tool to delete." msgstr "La suppression a échoué. Sélectionnez un outil à supprimer." -#: flatcamTools/ToolNonCopperClear.py:1129 flatcamTools/ToolPaint.py:964 +#: flatcamTools/ToolNonCopperClear.py:1130 flatcamTools/ToolPaint.py:965 msgid "Tool(s) deleted from Tool Table." msgstr "Outil (s) supprimé (s) de la table d'outils." -#: flatcamTools/ToolNonCopperClear.py:1176 +#: flatcamTools/ToolNonCopperClear.py:1177 msgid "Wrong Tool Dia value format entered, use a number." msgstr "Mauvais outil Format de valeur Dia entré, utilisez un nombre." -#: flatcamTools/ToolNonCopperClear.py:1185 flatcamTools/ToolPaint.py:1028 +#: flatcamTools/ToolNonCopperClear.py:1186 flatcamTools/ToolPaint.py:1029 msgid "No selected tools in Tool Table." msgstr "Aucun outil sélectionné dans la table d'outils." -#: flatcamTools/ToolNonCopperClear.py:1260 flatcamTools/ToolPaint.py:1200 +#: flatcamTools/ToolNonCopperClear.py:1261 flatcamTools/ToolPaint.py:1201 msgid "Click the end point of the paint area." msgstr "Cliquez sur le point final de la zone de peinture." -#: flatcamTools/ToolNonCopperClear.py:1414 -#: flatcamTools/ToolNonCopperClear.py:1416 +#: flatcamTools/ToolNonCopperClear.py:1415 +#: flatcamTools/ToolNonCopperClear.py:1417 msgid "Non-Copper clearing ..." msgstr "Dégagement sans cuivre ..." -#: flatcamTools/ToolNonCopperClear.py:1426 +#: flatcamTools/ToolNonCopperClear.py:1427 msgid "NCC Tool started. Reading parameters." msgstr "L'outil NCC a commencé. Lecture des paramètres." -#: flatcamTools/ToolNonCopperClear.py:1489 +#: flatcamTools/ToolNonCopperClear.py:1490 msgid "NCC Tool. Preparing non-copper polygons." msgstr "Outil de la NCC. Préparer des polygones non en cuivre." -#: flatcamTools/ToolNonCopperClear.py:1585 +#: flatcamTools/ToolNonCopperClear.py:1586 msgid "" "NCC Tool. Finished non-copper polygons. Normal copper clearing task started." msgstr "" "Outil de la NCC. Polygones non-cuivre finis. La tâche normale de nettoyage " "du cuivre a commencé." -#: flatcamTools/ToolNonCopperClear.py:1617 +#: flatcamTools/ToolNonCopperClear.py:1618 msgid "NCC Tool. Calculate 'empty' area." msgstr "Outil de la NCC. Calculez la surface \"vide\"." -#: flatcamTools/ToolNonCopperClear.py:1630 -#: flatcamTools/ToolNonCopperClear.py:1729 -#: flatcamTools/ToolNonCopperClear.py:1741 -#: flatcamTools/ToolNonCopperClear.py:1990 -#: flatcamTools/ToolNonCopperClear.py:2086 -#: flatcamTools/ToolNonCopperClear.py:2098 +#: flatcamTools/ToolNonCopperClear.py:1631 +#: flatcamTools/ToolNonCopperClear.py:1730 +#: flatcamTools/ToolNonCopperClear.py:1742 +#: flatcamTools/ToolNonCopperClear.py:1991 +#: flatcamTools/ToolNonCopperClear.py:2087 +#: flatcamTools/ToolNonCopperClear.py:2099 msgid "Buffering finished" msgstr "Mise en mémoire tampon terminée" -#: flatcamTools/ToolNonCopperClear.py:1748 -#: flatcamTools/ToolNonCopperClear.py:2104 +#: flatcamTools/ToolNonCopperClear.py:1749 +#: flatcamTools/ToolNonCopperClear.py:2105 msgid "The selected object is not suitable for copper clearing." msgstr "L'objet sélectionné ne convient pas à la clarification du cuivre." -#: flatcamTools/ToolNonCopperClear.py:1753 -#: flatcamTools/ToolNonCopperClear.py:2109 +#: flatcamTools/ToolNonCopperClear.py:1754 +#: flatcamTools/ToolNonCopperClear.py:2110 msgid "Could not get the extent of the area to be non copper cleared." msgstr "Impossible d'obtenir que l'étendue de la zone soit non dépolluée." -#: flatcamTools/ToolNonCopperClear.py:1760 +#: flatcamTools/ToolNonCopperClear.py:1761 msgid "NCC Tool. Finished calculation of 'empty' area." msgstr "Outil de la NCC. Terminé le calcul de la zone \"vide\"." -#: flatcamTools/ToolNonCopperClear.py:1773 -#: flatcamTools/ToolNonCopperClear.py:2134 +#: flatcamTools/ToolNonCopperClear.py:1774 +#: flatcamTools/ToolNonCopperClear.py:2135 msgid "NCC Tool clearing with tool diameter = " msgstr "Outil de la NCC. Dégagement avec diamètre de l'outil = " -#: flatcamTools/ToolNonCopperClear.py:1776 -#: flatcamTools/ToolNonCopperClear.py:2137 +#: flatcamTools/ToolNonCopperClear.py:1777 +#: flatcamTools/ToolNonCopperClear.py:2138 msgid "started." msgstr "commencé." -#: flatcamTools/ToolNonCopperClear.py:1919 +#: flatcamTools/ToolNonCopperClear.py:1920 msgid "" "There is no NCC Geometry in the file.\n" "Usually it means that the tool diameter is too big for the painted " @@ -14732,26 +14727,26 @@ msgstr "" "géométrie peinte.\n" "Modifiez les paramètres de peinture et réessayez." -#: flatcamTools/ToolNonCopperClear.py:1939 +#: flatcamTools/ToolNonCopperClear.py:1940 msgid "NCC Tool clear all done." msgstr "Outil de la NCC. Effacer tout fait." -#: flatcamTools/ToolNonCopperClear.py:1941 +#: flatcamTools/ToolNonCopperClear.py:1942 msgid "NCC Tool clear all done but the copper features isolation is broken for" msgstr "" "Outil de la CCN. Effacer tout fait, mais l'isolation des caractéristiques de " "cuivre est cassée pour" -#: flatcamTools/ToolNonCopperClear.py:1944 -#: flatcamTools/ToolNonCopperClear.py:2310 +#: flatcamTools/ToolNonCopperClear.py:1945 +#: flatcamTools/ToolNonCopperClear.py:2311 msgid "tools" msgstr "outils" -#: flatcamTools/ToolNonCopperClear.py:2306 +#: flatcamTools/ToolNonCopperClear.py:2307 msgid "NCC Tool Rest Machining clear all done." msgstr "Outil de la NCC. Reste l'usinage clair tout fait." -#: flatcamTools/ToolNonCopperClear.py:2309 +#: flatcamTools/ToolNonCopperClear.py:2310 msgid "" "NCC Tool Rest Machining clear all done but the copper features isolation is " "broken for" @@ -14759,7 +14754,7 @@ msgstr "" "Outil de la NCC. Reste l'usinage clair, tout est fait, mais l'isolation des " "caractéristiques en cuivre est cassée" -#: flatcamTools/ToolNonCopperClear.py:2756 +#: flatcamTools/ToolNonCopperClear.py:2757 msgid "" "Try to use the Buffering Type = Full in Preferences -> Gerber General. " "Reload the Gerber file after this change." @@ -15068,72 +15063,72 @@ msgstr "" "- 'Objet de référence' - effectuera un nettoyage sans cuivre dans la zone\n" "spécifié par un autre objet." -#: flatcamTools/ToolPaint.py:978 +#: flatcamTools/ToolPaint.py:979 msgid "Paint Tool. Reading parameters." msgstr "Outil de Peinture. Lecture des paramètres." -#: flatcamTools/ToolPaint.py:993 +#: flatcamTools/ToolPaint.py:994 #, python-format msgid "Could not retrieve object: %s" msgstr "Impossible de récupérer l'objet: %s" -#: flatcamTools/ToolPaint.py:1007 +#: flatcamTools/ToolPaint.py:1008 msgid "Can't do Paint on MultiGeo geometries" msgstr "Impossible de peindre sur des géométries MultiGeo" -#: flatcamTools/ToolPaint.py:1040 +#: flatcamTools/ToolPaint.py:1041 msgid "Click on a polygon to paint it." msgstr "Cliquez sur un polygone pour le peindre." -#: flatcamTools/ToolPaint.py:1059 +#: flatcamTools/ToolPaint.py:1060 msgid "Click the start point of the paint area." msgstr "Cliquez sur le point de départ de la zone de peinture." -#: flatcamTools/ToolPaint.py:1127 +#: flatcamTools/ToolPaint.py:1128 msgid "Click to add next polygon or right click to start painting." msgstr "" "Cliquez pour ajouter le polygone suivant ou cliquez avec le bouton droit " "pour commencer à peindre." -#: flatcamTools/ToolPaint.py:1140 +#: flatcamTools/ToolPaint.py:1141 msgid "Click to add/remove next polygon or right click to start painting." msgstr "" "Cliquez pour ajouter / supprimer le polygone suivant ou cliquez avec le " "bouton droit pour commencer à peindre." -#: 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 +#: flatcamTools/ToolPaint.py:1349 flatcamTools/ToolPaint.py:1352 +#: flatcamTools/ToolPaint.py:1354 flatcamTools/ToolPaint.py:1886 +#: flatcamTools/ToolPaint.py:1890 flatcamTools/ToolPaint.py:1893 +#: flatcamTools/ToolPaint.py:2175 flatcamTools/ToolPaint.py:2180 +#: flatcamTools/ToolPaint.py:2183 flatcamTools/ToolPaint.py:2357 +#: flatcamTools/ToolPaint.py:2364 msgid "Paint Tool." msgstr "Outil de Peinture." -#: flatcamTools/ToolPaint.py:1348 flatcamTools/ToolPaint.py:1351 -#: flatcamTools/ToolPaint.py:1353 +#: flatcamTools/ToolPaint.py:1349 flatcamTools/ToolPaint.py:1352 +#: flatcamTools/ToolPaint.py:1354 msgid "Normal painting polygon task started." msgstr "La tâche de peinture normale du polygone a commencé." -#: flatcamTools/ToolPaint.py:1349 flatcamTools/ToolPaint.py:1711 -#: flatcamTools/ToolPaint.py:1886 flatcamTools/ToolPaint.py:2176 -#: flatcamTools/ToolPaint.py:2358 +#: flatcamTools/ToolPaint.py:1350 flatcamTools/ToolPaint.py:1712 +#: flatcamTools/ToolPaint.py:1887 flatcamTools/ToolPaint.py:2177 +#: flatcamTools/ToolPaint.py:2359 msgid "Buffering geometry..." msgstr "Mise en tampon de la géométrie ..." -#: flatcamTools/ToolPaint.py:1371 +#: flatcamTools/ToolPaint.py:1372 msgid "No polygon found." msgstr "Aucun polygone trouvé." -#: flatcamTools/ToolPaint.py:1405 +#: flatcamTools/ToolPaint.py:1406 msgid "Painting polygon..." msgstr "Peinture polygone ..." -#: flatcamTools/ToolPaint.py:1453 +#: flatcamTools/ToolPaint.py:1454 msgid "Geometry could not be painted completely" msgstr "La géométrie n'a pas pu être peinte complètement" -#: flatcamTools/ToolPaint.py:1486 +#: flatcamTools/ToolPaint.py:1487 msgid "" "Could not do Paint. Try a different combination of parameters. Or a " "different strategy of paint" @@ -15141,9 +15136,9 @@ msgstr "" "Impossible de faire de la Peinture. Essayez une combinaison de paramètres " "différente. Ou une stratégie de peinture différente" -#: flatcamTools/ToolPaint.py:1538 flatcamTools/ToolPaint.py:1865 -#: flatcamTools/ToolPaint.py:2015 flatcamTools/ToolPaint.py:2336 -#: flatcamTools/ToolPaint.py:2490 +#: flatcamTools/ToolPaint.py:1539 flatcamTools/ToolPaint.py:1866 +#: flatcamTools/ToolPaint.py:2016 flatcamTools/ToolPaint.py:2337 +#: flatcamTools/ToolPaint.py:2491 msgid "" "There is no Painting Geometry in the file.\n" "Usually it means that the tool diameter is too big for the painted " @@ -15155,36 +15150,36 @@ msgstr "" "géométrie peinte.\n" "Modifiez les paramètres de peinture et réessayez." -#: flatcamTools/ToolPaint.py:1544 +#: flatcamTools/ToolPaint.py:1545 msgid "Paint Single Done." msgstr "La Peinture Simple était terminée." -#: flatcamTools/ToolPaint.py:1576 flatcamTools/ToolPaint.py:2043 -#: flatcamTools/ToolPaint.py:2518 +#: flatcamTools/ToolPaint.py:1577 flatcamTools/ToolPaint.py:2044 +#: flatcamTools/ToolPaint.py:2519 msgid "Polygon Paint started ..." msgstr "Polygon Paint a commencé ..." -#: flatcamTools/ToolPaint.py:1628 flatcamTools/ToolPaint.py:2105 +#: flatcamTools/ToolPaint.py:1629 flatcamTools/ToolPaint.py:2106 msgid "Painting polygons..." msgstr "Peindre des polygones ..." -#: flatcamTools/ToolPaint.py:1710 flatcamTools/ToolPaint.py:1713 -#: flatcamTools/ToolPaint.py:1715 +#: flatcamTools/ToolPaint.py:1711 flatcamTools/ToolPaint.py:1714 +#: flatcamTools/ToolPaint.py:1716 msgid "Paint Tool. Normal painting all task started." msgstr "Outil de Peinture. Peinture normale toutes les tâches ont commencé." -#: flatcamTools/ToolPaint.py:1749 flatcamTools/ToolPaint.py:1921 -#: flatcamTools/ToolPaint.py:2223 flatcamTools/ToolPaint.py:2399 +#: flatcamTools/ToolPaint.py:1750 flatcamTools/ToolPaint.py:1922 +#: flatcamTools/ToolPaint.py:2224 flatcamTools/ToolPaint.py:2400 msgid "Painting with tool diameter = " msgstr "Peinture avec diamètre d'outil = " -#: flatcamTools/ToolPaint.py:1752 flatcamTools/ToolPaint.py:1924 -#: flatcamTools/ToolPaint.py:2226 flatcamTools/ToolPaint.py:2402 +#: flatcamTools/ToolPaint.py:1753 flatcamTools/ToolPaint.py:1925 +#: flatcamTools/ToolPaint.py:2227 flatcamTools/ToolPaint.py:2403 msgid "started" msgstr "commencé" -#: flatcamTools/ToolPaint.py:1814 flatcamTools/ToolPaint.py:1970 -#: flatcamTools/ToolPaint.py:2286 flatcamTools/ToolPaint.py:2446 +#: flatcamTools/ToolPaint.py:1815 flatcamTools/ToolPaint.py:1971 +#: flatcamTools/ToolPaint.py:2287 flatcamTools/ToolPaint.py:2447 msgid "" "Could not do Paint All. Try a different combination of parameters. Or a " "different Method of paint" @@ -15192,33 +15187,33 @@ msgstr "" "Impossible de Tout Peindre. Essayez une combinaison de paramètres " "différente. Ou une autre méthode de peinture" -#: flatcamTools/ToolPaint.py:1874 +#: flatcamTools/ToolPaint.py:1875 msgid "Paint All Done." msgstr "Peindre Tout fait." -#: flatcamTools/ToolPaint.py:1885 flatcamTools/ToolPaint.py:1889 -#: flatcamTools/ToolPaint.py:1892 +#: flatcamTools/ToolPaint.py:1886 flatcamTools/ToolPaint.py:1890 +#: flatcamTools/ToolPaint.py:1893 msgid "Rest machining painting all task started." msgstr "Reste l'usinage en peignant toutes les tâches commencées." -#: flatcamTools/ToolPaint.py:2024 flatcamTools/ToolPaint.py:2499 +#: flatcamTools/ToolPaint.py:2025 flatcamTools/ToolPaint.py:2500 msgid "Paint All with Rest-Machining done." msgstr "Peignez tout avec le reste de l'usinage fait." -#: flatcamTools/ToolPaint.py:2175 flatcamTools/ToolPaint.py:2179 -#: flatcamTools/ToolPaint.py:2182 +#: flatcamTools/ToolPaint.py:2176 flatcamTools/ToolPaint.py:2180 +#: flatcamTools/ToolPaint.py:2183 msgid "Normal painting area task started." msgstr "La tâche de zone de peinture normale a commencé." -#: flatcamTools/ToolPaint.py:2345 +#: flatcamTools/ToolPaint.py:2346 msgid "Paint Area Done." msgstr "Peinture de la Zone réalisée." -#: flatcamTools/ToolPaint.py:2357 flatcamTools/ToolPaint.py:2363 +#: flatcamTools/ToolPaint.py:2358 flatcamTools/ToolPaint.py:2364 msgid "Rest machining painting area task started." msgstr "Reste l'usinage de peinture de la zone de travail a commencé." -#: flatcamTools/ToolPaint.py:2360 +#: flatcamTools/ToolPaint.py:2361 msgid "Paint Tool. Rest machining painting area task started." msgstr "" "Outil de peinture. Reste l'usinage de la peinture de la zone: tâche " @@ -15709,7 +15704,6 @@ msgid "Export a SVG file with the QRCode content." msgstr "Exportez un fichier SVG avec le contenu QRCode." #: flatcamTools/ToolQRCode.py:286 -#| msgid "Export G-Code" msgid "Export QRCode PNG" msgstr "Exporter le QRCode PNG" @@ -16180,92 +16174,92 @@ msgstr "" "une géométrie de distribution de la pâte à souder, puis affichez / " "enregistrez son GCode." -#: flatcamTools/ToolSolderPaste.py:914 +#: flatcamTools/ToolSolderPaste.py:917 msgid "Adding Nozzle tool cancelled. Tool already in Tool Table." msgstr "" "L'ajout de l'outil de buse est annulé. Outil déjà dans la table d'outils." -#: flatcamTools/ToolSolderPaste.py:920 +#: flatcamTools/ToolSolderPaste.py:923 msgid "New Nozzle tool added to Tool Table." msgstr "Nouvel Outil de Buse ajouté à la table d'outils." -#: flatcamTools/ToolSolderPaste.py:963 +#: flatcamTools/ToolSolderPaste.py:966 msgid "Nozzle tool from Tool Table was edited." msgstr "L'outil de buse de la table d'outils a été modifié." -#: flatcamTools/ToolSolderPaste.py:1021 +#: flatcamTools/ToolSolderPaste.py:1024 msgid "Delete failed. Select a Nozzle tool to delete." msgstr "La suppression a échoué. Sélectionnez un outil de buse à supprimer." -#: flatcamTools/ToolSolderPaste.py:1027 +#: flatcamTools/ToolSolderPaste.py:1030 msgid "Nozzle tool(s) deleted from Tool Table." msgstr "Outil (s) de buse supprimé (s) de la table d'outils." -#: flatcamTools/ToolSolderPaste.py:1083 +#: flatcamTools/ToolSolderPaste.py:1086 msgid "No SolderPaste mask Gerber object loaded." msgstr "Aucun objet Gerber de masque de pâte à souder chargé." -#: flatcamTools/ToolSolderPaste.py:1101 +#: flatcamTools/ToolSolderPaste.py:1104 msgid "Creating Solder Paste dispensing geometry." msgstr "Création de la géométrie de distribution de pâte à souder." -#: flatcamTools/ToolSolderPaste.py:1114 +#: flatcamTools/ToolSolderPaste.py:1117 msgid "No Nozzle tools in the tool table." msgstr "Aucun outil de buse dans la table à outils." -#: flatcamTools/ToolSolderPaste.py:1241 +#: flatcamTools/ToolSolderPaste.py:1244 msgid "Cancelled. Empty file, it has no geometry..." msgstr "Annulé. Fichier vide, il n'a pas de géométrie ..." -#: flatcamTools/ToolSolderPaste.py:1245 +#: flatcamTools/ToolSolderPaste.py:1248 msgid "Solder Paste geometry generated successfully" msgstr "Géométrie de pâte à souder générée avec succès" -#: flatcamTools/ToolSolderPaste.py:1252 +#: flatcamTools/ToolSolderPaste.py:1255 msgid "Some or all pads have no solder due of inadequate nozzle diameters..." msgstr "" "Certains ou tous les tampons n'ont pas de soudure en raison de diamètres de " "buse inadéquats ..." -#: flatcamTools/ToolSolderPaste.py:1266 +#: flatcamTools/ToolSolderPaste.py:1269 msgid "Generating Solder Paste dispensing geometry..." msgstr "Génération de géométrie de distribution de pâte à souder ..." -#: flatcamTools/ToolSolderPaste.py:1286 +#: flatcamTools/ToolSolderPaste.py:1289 msgid "There is no Geometry object available." msgstr "Il n'y a pas d'objet Géométrie disponible." -#: flatcamTools/ToolSolderPaste.py:1291 +#: flatcamTools/ToolSolderPaste.py:1294 msgid "This Geometry can't be processed. NOT a solder_paste_tool geometry." msgstr "" "Cette géométrie ne peut pas être traitée. PAS une géométrie " "solder_paste_tool." -#: flatcamTools/ToolSolderPaste.py:1398 +#: flatcamTools/ToolSolderPaste.py:1401 msgid "ToolSolderPaste CNCjob created" msgstr "Outil de Pâte à Souder CNCjob créé" -#: flatcamTools/ToolSolderPaste.py:1419 +#: flatcamTools/ToolSolderPaste.py:1422 msgid "SP GCode Editor" msgstr "Éditeur SP GCode" -#: flatcamTools/ToolSolderPaste.py:1431 flatcamTools/ToolSolderPaste.py:1436 -#: flatcamTools/ToolSolderPaste.py:1491 +#: flatcamTools/ToolSolderPaste.py:1434 flatcamTools/ToolSolderPaste.py:1439 +#: flatcamTools/ToolSolderPaste.py:1494 msgid "" "This CNCJob object can't be processed. NOT a solder_paste_tool CNCJob object." msgstr "" "Cet objet CNCJob ne peut pas être traité. PAS un objet CNCJob " "solder_paste_tool." -#: flatcamTools/ToolSolderPaste.py:1461 +#: flatcamTools/ToolSolderPaste.py:1464 msgid "No Gcode in the object" msgstr "Pas de Gcode dans l'objet" -#: flatcamTools/ToolSolderPaste.py:1501 +#: flatcamTools/ToolSolderPaste.py:1504 msgid "Export GCode ..." msgstr "Exporter le GCode ..." -#: flatcamTools/ToolSolderPaste.py:1549 +#: flatcamTools/ToolSolderPaste.py:1552 msgid "Solder paste dispenser GCode file saved to" msgstr "Fichier GCode du distributeur de pâte à souder enregistré dans" diff --git a/locale/pt_BR/LC_MESSAGES/strings.mo b/locale/pt_BR/LC_MESSAGES/strings.mo index 40b7f9f5..4e56918a 100644 Binary files a/locale/pt_BR/LC_MESSAGES/strings.mo and b/locale/pt_BR/LC_MESSAGES/strings.mo differ diff --git a/locale/pt_BR/LC_MESSAGES/strings.po b/locale/pt_BR/LC_MESSAGES/strings.po index 2a33914c..e60c5f0a 100644 --- a/locale/pt_BR/LC_MESSAGES/strings.po +++ b/locale/pt_BR/LC_MESSAGES/strings.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"POT-Creation-Date: 2019-12-14 03:03+0200\n" -"PO-Revision-Date: 2019-12-14 03:19+0200\n" +"POT-Creation-Date: 2019-12-15 16:27+0200\n" +"PO-Revision-Date: 2019-12-15 16:27+0200\n" "Last-Translator: Carlos Stein \n" "Language-Team: \n" "Language: pt_BR\n" @@ -18,17 +18,17 @@ msgstr "" "X-Poedit-SearchPathExcluded-1: doc\n" "X-Poedit-SearchPathExcluded-2: tests\n" -#: FlatCAMApp.py:999 +#: FlatCAMApp.py:1004 msgid "FlatCAM is initializing ..." msgstr "FlatCAM está inicializando...." -#: FlatCAMApp.py:1580 +#: FlatCAMApp.py:1585 msgid "Could not find the Language files. The App strings are missing." msgstr "" "Não foi possível encontrar os arquivos de idioma. Estão faltando as strings " "do aplicativo." -#: FlatCAMApp.py:1673 +#: FlatCAMApp.py:1678 msgid "" "FlatCAM is initializing ...\n" "Canvas initialization started." @@ -36,7 +36,7 @@ msgstr "" "FlatCAM está inicializando....\n" "Inicialização do Canvas iniciada." -#: FlatCAMApp.py:1691 +#: FlatCAMApp.py:1696 msgid "" "FlatCAM is initializing ...\n" "Canvas initialization started.\n" @@ -46,7 +46,7 @@ msgstr "" "Inicialização do Canvas iniciada.\n" "Inicialização do Canvas concluída em" -#: FlatCAMApp.py:2388 +#: FlatCAMApp.py:2395 msgid "" "Type >help< to get started\n" "\n" @@ -54,13 +54,13 @@ msgstr "" "Digite >help< para iniciar\n" "\n" -#: FlatCAMApp.py:2643 FlatCAMApp.py:9138 +#: FlatCAMApp.py:2650 FlatCAMApp.py:9170 msgid "New Project - Not saved" msgstr "Novo Projeto - Não salvo" -#: FlatCAMApp.py:2718 FlatCAMApp.py:9206 FlatCAMApp.py:9243 FlatCAMApp.py:9284 -#: FlatCAMApp.py:9355 FlatCAMApp.py:10109 FlatCAMApp.py:11123 -#: FlatCAMApp.py:11182 +#: FlatCAMApp.py:2725 FlatCAMApp.py:9238 FlatCAMApp.py:9275 FlatCAMApp.py:9316 +#: FlatCAMApp.py:9387 FlatCAMApp.py:10141 FlatCAMApp.py:11155 +#: FlatCAMApp.py:11214 msgid "" "Canvas initialization started.\n" "Canvas initialization finished in" @@ -68,47 +68,47 @@ msgstr "" "Inicialização do Canvas iniciada.\n" "Inicialização do Canvas concluída em" -#: FlatCAMApp.py:2720 +#: FlatCAMApp.py:2727 msgid "Executing Tcl Script ..." msgstr "Executando Script Tcl..." -#: FlatCAMApp.py:2735 +#: FlatCAMApp.py:2742 msgid "" "Found old default preferences files. Please reboot the application to update." msgstr "" "Arquivos de preferências padrão antigos encontrados. Por favor, reinicie o " "aplicativo para atualizar." -#: FlatCAMApp.py:2779 ObjectCollection.py:90 flatcamTools/ToolImage.py:248 +#: FlatCAMApp.py:2786 ObjectCollection.py:90 flatcamTools/ToolImage.py:248 #: flatcamTools/ToolPcbWizard.py:301 flatcamTools/ToolPcbWizard.py:324 msgid "Open cancelled." msgstr "Abrir cancelado." -#: FlatCAMApp.py:2795 +#: FlatCAMApp.py:2802 msgid "Open Config file failed." msgstr "Falha ao abrir o arquivo de Configuração." -#: FlatCAMApp.py:2810 +#: FlatCAMApp.py:2817 msgid "Open Script file failed." msgstr "Falha ao abrir o arquivo de Script." -#: FlatCAMApp.py:2836 +#: FlatCAMApp.py:2843 msgid "Open Excellon file failed." msgstr "Falha ao abrir o arquivo Excellon." -#: FlatCAMApp.py:2849 +#: FlatCAMApp.py:2856 msgid "Open GCode file failed." msgstr "Falha ao abrir o arquivo G-Code." -#: FlatCAMApp.py:2862 +#: FlatCAMApp.py:2869 msgid "Open Gerber file failed." msgstr "Falha ao abrir o arquivo Gerber." -#: FlatCAMApp.py:3203 +#: FlatCAMApp.py:3223 msgid "Select a Geometry, Gerber or Excellon Object to edit." msgstr "Selecione um Objeto Geometria, Gerber ou Excellon para editar." -#: FlatCAMApp.py:3218 +#: FlatCAMApp.py:3238 msgid "" "Simultaneous editing of tools geometry in a MultiGeo Geometry is not " "possible.\n" @@ -118,82 +118,82 @@ msgstr "" "possível. \n" "Edite apenas uma geometria por vez." -#: FlatCAMApp.py:3273 +#: FlatCAMApp.py:3293 msgid "Editor is activated ..." msgstr "Editor está ativado ..." -#: FlatCAMApp.py:3294 +#: FlatCAMApp.py:3314 msgid "Do you want to save the edited object?" msgstr "Você quer salvar o objeto editado?" -#: FlatCAMApp.py:3295 flatcamGUI/FlatCAMGUI.py:1969 +#: FlatCAMApp.py:3315 flatcamGUI/FlatCAMGUI.py:2134 msgid "Close Editor" msgstr "Fechar Editor" -#: 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 +#: FlatCAMApp.py:3318 FlatCAMApp.py:5029 FlatCAMApp.py:7889 FlatCAMApp.py:7915 +#: FlatCAMApp.py:9077 FlatCAMTranslation.py:108 FlatCAMTranslation.py:193 +#: flatcamGUI/PreferencesUI.py:1035 msgid "Yes" msgstr "Sim" -#: 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 +#: FlatCAMApp.py:3319 FlatCAMApp.py:5030 FlatCAMApp.py:7890 FlatCAMApp.py:7916 +#: FlatCAMApp.py:9078 FlatCAMTranslation.py:109 FlatCAMTranslation.py:194 +#: flatcamGUI/PreferencesUI.py:1036 flatcamGUI/PreferencesUI.py:4095 +#: flatcamGUI/PreferencesUI.py:4520 flatcamTools/ToolNonCopperClear.py:189 #: flatcamTools/ToolPaint.py:161 msgid "No" msgstr "Não" -#: FlatCAMApp.py:3300 FlatCAMApp.py:5003 FlatCAMApp.py:5839 FlatCAMApp.py:7157 -#: FlatCAMApp.py:9047 FlatCAMCommon.py:702 flatcamGUI/FlatCAMGUI.py:1117 +#: FlatCAMApp.py:3320 FlatCAMApp.py:5031 FlatCAMApp.py:5867 FlatCAMApp.py:7185 +#: FlatCAMApp.py:9079 FlatCAMCommon.py:702 flatcamGUI/FlatCAMGUI.py:1233 msgid "Cancel" msgstr "Cancelar" -#: FlatCAMApp.py:3328 +#: FlatCAMApp.py:3348 msgid "Object empty after edit." msgstr "Objeto vazio após a edição." -#: FlatCAMApp.py:3377 FlatCAMApp.py:3397 FlatCAMApp.py:3412 +#: FlatCAMApp.py:3397 FlatCAMApp.py:3417 FlatCAMApp.py:3432 msgid "Select a Gerber, Geometry or Excellon Object to update." msgstr "Selecione um objeto Gerber, Geometria ou Excellon para atualizar." -#: FlatCAMApp.py:3381 +#: FlatCAMApp.py:3401 msgid "is updated, returning to App..." msgstr "está atualizado, retornando ao App..." -#: FlatCAMApp.py:3776 FlatCAMApp.py:3850 FlatCAMApp.py:4863 +#: FlatCAMApp.py:3796 FlatCAMApp.py:3870 FlatCAMApp.py:4891 msgid "Could not load defaults file." msgstr "Não foi possível carregar o arquivo com os padrões." -#: FlatCAMApp.py:3788 FlatCAMApp.py:3859 FlatCAMApp.py:4872 +#: FlatCAMApp.py:3808 FlatCAMApp.py:3879 FlatCAMApp.py:4900 msgid "Failed to parse defaults file." msgstr "Falha ao analisar o arquivo com os padrões." -#: FlatCAMApp.py:3830 FlatCAMApp.py:3834 +#: FlatCAMApp.py:3850 FlatCAMApp.py:3854 msgid "Import FlatCAM Preferences" msgstr "Importar Preferências do FlatCAM" -#: FlatCAMApp.py:3841 +#: FlatCAMApp.py:3861 msgid "FlatCAM preferences import cancelled." msgstr "Importação de preferências do FlatCAM cancelada." -#: FlatCAMApp.py:3864 +#: FlatCAMApp.py:3884 msgid "Imported Defaults from" msgstr "Padrões importados de" -#: FlatCAMApp.py:3884 FlatCAMApp.py:3889 +#: FlatCAMApp.py:3904 FlatCAMApp.py:3909 msgid "Export FlatCAM Preferences" msgstr "Exportar Preferências do FlatCAM" -#: FlatCAMApp.py:3897 +#: FlatCAMApp.py:3917 msgid "FlatCAM preferences export cancelled." msgstr "Exportação de preferências do FlatCAM cancelada." -#: FlatCAMApp.py:3906 FlatCAMApp.py:10338 FlatCAMApp.py:10386 -#: FlatCAMApp.py:10509 FlatCAMApp.py:10648 FlatCAMCommon.py:378 -#: FlatCAMCommon.py:1094 FlatCAMObj.py:6721 +#: FlatCAMApp.py:3926 FlatCAMApp.py:10370 FlatCAMApp.py:10418 +#: FlatCAMApp.py:10541 FlatCAMApp.py:10680 FlatCAMCommon.py:378 +#: FlatCAMCommon.py:1094 FlatCAMObj.py:6724 #: flatcamEditors/FlatCAMTextEditor.py:228 flatcamTools/ToolFilm.py:1019 -#: flatcamTools/ToolFilm.py:1195 flatcamTools/ToolSolderPaste.py:1541 +#: flatcamTools/ToolFilm.py:1195 flatcamTools/ToolSolderPaste.py:1544 msgid "" "Permission denied, saving not possible.\n" "Most likely another app is holding the file open and not accessible." @@ -202,36 +202,36 @@ msgstr "" "É provável que outro aplicativo esteja mantendo o arquivo aberto e não " "acessível." -#: FlatCAMApp.py:3919 +#: FlatCAMApp.py:3939 msgid "Could not load preferences file." msgstr "Não foi possível carregar o arquivo com as preferências." -#: FlatCAMApp.py:3939 FlatCAMApp.py:4919 +#: FlatCAMApp.py:3959 FlatCAMApp.py:4947 msgid "Failed to write defaults to file." msgstr "Falha ao gravar os padrões no arquivo." -#: FlatCAMApp.py:3945 +#: FlatCAMApp.py:3965 msgid "Exported preferences to" msgstr "Preferências exportadas para" -#: FlatCAMApp.py:3962 +#: FlatCAMApp.py:3982 msgid "FlatCAM Preferences Folder opened." msgstr "Pasta com Preferências FlatCAM aberta." -#: FlatCAMApp.py:4045 +#: FlatCAMApp.py:4065 msgid "Failed to open recent files file for writing." msgstr "Falha ao abrir o arquivo com lista de arquivos recentes para gravação." -#: FlatCAMApp.py:4056 +#: FlatCAMApp.py:4076 msgid "Failed to open recent projects file for writing." msgstr "Falha ao abrir o arquivo com lista de projetos recentes para gravação." -#: FlatCAMApp.py:4142 flatcamParsers/ParseExcellon.py:886 -#: flatcamTools/ToolSolderPaste.py:1327 +#: FlatCAMApp.py:4162 flatcamParsers/ParseExcellon.py:886 +#: flatcamTools/ToolSolderPaste.py:1330 msgid "An internal error has ocurred. See shell.\n" msgstr "Ocorreu um erro interno. Veja shell (linha de comando).\n" -#: FlatCAMApp.py:4143 +#: FlatCAMApp.py:4163 #, python-brace-format msgid "" "Object ({kind}) failed because: {error} \n" @@ -240,63 +240,63 @@ msgstr "" "Objeto ({kind}) falhou porque: {error} \n" "\n" -#: FlatCAMApp.py:4163 +#: FlatCAMApp.py:4183 msgid "Converting units to " msgstr "Convertendo unidades para " -#: FlatCAMApp.py:4266 +#: FlatCAMApp.py:4286 msgid "CREATE A NEW FLATCAM TCL SCRIPT" msgstr "CRIAR UM NOVO SCRIPT FLATCAM TCL" -#: FlatCAMApp.py:4267 +#: FlatCAMApp.py:4287 msgid "TCL Tutorial is here" msgstr "Tutorial TCL está aqui" -#: FlatCAMApp.py:4269 +#: FlatCAMApp.py:4289 msgid "FlatCAM commands list" msgstr "Lista de comandos FlatCAM" -#: FlatCAMApp.py:4320 FlatCAMApp.py:4326 FlatCAMApp.py:4332 FlatCAMApp.py:4338 -#: FlatCAMApp.py:4344 FlatCAMApp.py:4350 +#: FlatCAMApp.py:4340 FlatCAMApp.py:4346 FlatCAMApp.py:4352 FlatCAMApp.py:4358 +#: FlatCAMApp.py:4364 FlatCAMApp.py:4370 msgid "created/selected" msgstr "criado / selecionado" -#: FlatCAMApp.py:4365 FlatCAMApp.py:7237 FlatCAMObj.py:263 FlatCAMObj.py:294 +#: FlatCAMApp.py:4385 FlatCAMApp.py:7265 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 "Plotando" -#: FlatCAMApp.py:4426 flatcamGUI/FlatCAMGUI.py:467 +#: FlatCAMApp.py:4448 flatcamGUI/FlatCAMGUI.py:493 msgid "About FlatCAM" msgstr "Sobre FlatCAM" -#: FlatCAMApp.py:4452 +#: FlatCAMApp.py:4474 msgid "2D Computer-Aided Printed Circuit Board Manufacturing" msgstr "Fabricação de Placas de Circuito Impresso 2D Assistida por Computador" -#: FlatCAMApp.py:4453 +#: FlatCAMApp.py:4475 msgid "Development" msgstr "Desenvolvimento" -#: FlatCAMApp.py:4454 +#: FlatCAMApp.py:4476 msgid "DOWNLOAD" msgstr "DOWNLOAD" -#: FlatCAMApp.py:4455 +#: FlatCAMApp.py:4477 msgid "Issue tracker" msgstr "Rastreador de problemas" -#: FlatCAMApp.py:4459 FlatCAMApp.py:4794 +#: FlatCAMApp.py:4481 FlatCAMApp.py:4822 msgid "Close" msgstr "Fechar" -#: FlatCAMApp.py:4474 +#: FlatCAMApp.py:4496 msgid "Licensed under the MIT license" msgstr "Licenciado sob licença do MIT" -#: FlatCAMApp.py:4483 +#: FlatCAMApp.py:4505 msgid "" "Permission is hereby granted, free of charge, to any person obtaining a " "copy\n" @@ -344,7 +344,7 @@ msgstr "" "OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n" "THE SOFTWARE." -#: FlatCAMApp.py:4505 +#: FlatCAMApp.py:4527 msgid "" "Some of the icons used are from the following sources:
Icons by FreepikIcons8
Ícones por oNline Web Fonts" -#: FlatCAMApp.py:4537 +#: FlatCAMApp.py:4559 msgid "Splash" msgstr "Abertura" -#: FlatCAMApp.py:4543 +#: FlatCAMApp.py:4565 msgid "Programmers" msgstr "Programadores" -#: FlatCAMApp.py:4549 +#: FlatCAMApp.py:4571 msgid "Translators" msgstr "Tradutores" -#: FlatCAMApp.py:4555 +#: FlatCAMApp.py:4577 msgid "License" msgstr "Licença" -#: FlatCAMApp.py:4561 +#: FlatCAMApp.py:4583 msgid "Attributions" msgstr "Atribuições" -#: FlatCAMApp.py:4584 +#: FlatCAMApp.py:4606 msgid "Programmer" msgstr "Programador" -#: FlatCAMApp.py:4585 +#: FlatCAMApp.py:4607 msgid "Status" msgstr "Status" -#: FlatCAMApp.py:4586 FlatCAMApp.py:4657 +#: FlatCAMApp.py:4608 FlatCAMApp.py:4686 msgid "E-mail" msgstr "E-mail" -#: FlatCAMApp.py:4594 +#: FlatCAMApp.py:4616 msgid "BETA Maintainer >= 2019" msgstr "Mantenedor BETA >= 2019" -#: FlatCAMApp.py:4654 +#: FlatCAMApp.py:4683 msgid "Language" msgstr "Idioma" -#: FlatCAMApp.py:4655 +#: FlatCAMApp.py:4684 msgid "Translator" msgstr "Tradutor" -#: FlatCAMApp.py:4656 +#: FlatCAMApp.py:4685 msgid "Corrections" msgstr "Correções" -#: FlatCAMApp.py:4765 FlatCAMApp.py:4773 FlatCAMApp.py:7906 -#: flatcamGUI/FlatCAMGUI.py:451 +#: FlatCAMApp.py:4794 FlatCAMApp.py:4802 FlatCAMApp.py:7934 +#: flatcamGUI/FlatCAMGUI.py:475 msgid "Bookmarks Manager" msgstr "Gerenciados de Favoritos" -#: FlatCAMApp.py:4785 +#: FlatCAMApp.py:4813 msgid "" "This entry will resolve to another website if:\n" "\n" @@ -433,35 +433,35 @@ msgstr "" "Se você não conseguir obter informações sobre o FlatCAM beta\n" "use o link do canal do YouTube no menu Ajuda." -#: FlatCAMApp.py:4792 +#: FlatCAMApp.py:4820 msgid "Alternative website" msgstr "Site alternativo" -#: FlatCAMApp.py:4923 FlatCAMApp.py:7870 +#: FlatCAMApp.py:4951 FlatCAMApp.py:7898 msgid "Preferences saved." msgstr "Preferências salvas." -#: FlatCAMApp.py:4951 +#: FlatCAMApp.py:4979 msgid "Could not load factory defaults file." msgstr "Não foi possível carregar o arquivo de padrões de fábrica." -#: FlatCAMApp.py:4961 +#: FlatCAMApp.py:4989 msgid "Failed to parse factory defaults file." msgstr "Falha ao analisar o arquivo de padrões de fábrica." -#: FlatCAMApp.py:4977 +#: FlatCAMApp.py:5005 msgid "Failed to write factory defaults to file." msgstr "Falha ao gravar os padrões de fábrica no arquivo." -#: FlatCAMApp.py:4981 +#: FlatCAMApp.py:5009 msgid "Factory defaults saved." msgstr "Padrões de fábrica salvos." -#: FlatCAMApp.py:4991 flatcamGUI/FlatCAMGUI.py:3691 +#: FlatCAMApp.py:5019 flatcamGUI/FlatCAMGUI.py:3926 msgid "Application is saving the project. Please wait ..." msgstr "O aplicativo está salvando o projeto. Por favor, espere ..." -#: FlatCAMApp.py:4996 FlatCAMTranslation.py:166 +#: FlatCAMApp.py:5024 FlatCAMTranslation.py:188 msgid "" "There are files/objects modified in FlatCAM. \n" "Do you want to Save the project?" @@ -469,33 +469,33 @@ msgstr "" "Existem arquivos/objetos modificados no FlatCAM. \n" "Você quer salvar o projeto?" -#: FlatCAMApp.py:4999 FlatCAMApp.py:9043 FlatCAMTranslation.py:169 +#: FlatCAMApp.py:5027 FlatCAMApp.py:9075 FlatCAMTranslation.py:191 msgid "Save changes" msgstr "Salvar alterações" -#: FlatCAMApp.py:5240 +#: FlatCAMApp.py:5268 msgid "Selected Excellon file extensions registered with FlatCAM." msgstr "" "As extensões de arquivo Excellon selecionadas foram registradas para o " "FlatCAM." -#: FlatCAMApp.py:5262 +#: FlatCAMApp.py:5290 msgid "Selected GCode file extensions registered with FlatCAM." msgstr "" "As extensões de arquivo G-Code selecionadas foram registradas para o FlatCAM." -#: FlatCAMApp.py:5284 +#: FlatCAMApp.py:5312 msgid "Selected Gerber file extensions registered with FlatCAM." msgstr "" "As extensões de arquivo Gerber selecionadas foram registradas para o FlatCAM." -#: FlatCAMApp.py:5472 FlatCAMApp.py:5529 FlatCAMApp.py:5557 +#: FlatCAMApp.py:5500 FlatCAMApp.py:5557 FlatCAMApp.py:5585 msgid "At least two objects are required for join. Objects currently selected" msgstr "" "São necessários pelo menos dois objetos para unir. Objetos atualmente " "selecionados" -#: FlatCAMApp.py:5481 +#: FlatCAMApp.py:5509 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 " @@ -511,51 +511,51 @@ msgstr "" "perdidas e o resultado pode não ser o esperado.\n" "Verifique o G-CODE gerado." -#: FlatCAMApp.py:5493 +#: FlatCAMApp.py:5521 msgid "Multigeo. Geometry merging finished" msgstr "Multigeo. Fusão de geometria concluída" -#: FlatCAMApp.py:5502 +#: FlatCAMApp.py:5530 msgid "Geometry merging finished" msgstr "Fusão de geometria concluída" -#: FlatCAMApp.py:5524 +#: FlatCAMApp.py:5552 msgid "Failed. Excellon joining works only on Excellon objects." msgstr "Falha. A união de Excellon funciona apenas em objetos Excellon." -#: FlatCAMApp.py:5534 +#: FlatCAMApp.py:5562 msgid "Excellon merging finished" msgstr "Fusão de Excellon concluída" -#: FlatCAMApp.py:5552 +#: FlatCAMApp.py:5580 msgid "Failed. Gerber joining works only on Gerber objects." msgstr "Falha. A união de Gerber funciona apenas em objetos Gerber." -#: FlatCAMApp.py:5562 +#: FlatCAMApp.py:5590 msgid "Gerber merging finished" msgstr "Fusão de Gerber concluída" -#: FlatCAMApp.py:5582 FlatCAMApp.py:5617 +#: FlatCAMApp.py:5610 FlatCAMApp.py:5645 msgid "Failed. Select a Geometry Object and try again." msgstr "Falha. Selecione um Objeto de Geometria e tente novamente." -#: FlatCAMApp.py:5586 FlatCAMApp.py:5622 +#: FlatCAMApp.py:5614 FlatCAMApp.py:5650 msgid "Expected a FlatCAMGeometry, got" msgstr "Geometria FlatCAM esperada, recebido" -#: FlatCAMApp.py:5599 +#: FlatCAMApp.py:5627 msgid "A Geometry object was converted to MultiGeo type." msgstr "Um objeto Geometria foi convertido para o tipo MultiGeo." -#: FlatCAMApp.py:5637 +#: FlatCAMApp.py:5665 msgid "A Geometry object was converted to SingleGeo type." msgstr "Um objeto Geometria foi convertido para o tipo Único." -#: FlatCAMApp.py:5833 +#: FlatCAMApp.py:5861 msgid "Toggle Units" msgstr "Alternar Unidades" -#: FlatCAMApp.py:5835 +#: FlatCAMApp.py:5863 msgid "" "Changing the units of the project\n" "will scale all objects.\n" @@ -567,50 +567,50 @@ msgstr "" "\n" "Você quer continuar?" -#: FlatCAMApp.py:5838 FlatCAMApp.py:7080 FlatCAMApp.py:7156 FlatCAMApp.py:9408 -#: FlatCAMApp.py:9422 FlatCAMApp.py:9776 FlatCAMApp.py:9787 +#: FlatCAMApp.py:5866 FlatCAMApp.py:7108 FlatCAMApp.py:7184 FlatCAMApp.py:9440 +#: FlatCAMApp.py:9454 FlatCAMApp.py:9808 FlatCAMApp.py:9819 msgid "Ok" msgstr "Ok" -#: FlatCAMApp.py:5887 +#: FlatCAMApp.py:5915 msgid "Converted units to" msgstr "Unidades convertidas para" -#: FlatCAMApp.py:5901 +#: FlatCAMApp.py:5929 msgid "Units conversion cancelled." msgstr "Conversão de unidades cancelada." -#: FlatCAMApp.py:6774 +#: FlatCAMApp.py:6802 msgid "Detachable Tabs" msgstr "Abas Destacáveis" -#: FlatCAMApp.py:6993 FlatCAMApp.py:7040 FlatCAMApp.py:7696 FlatCAMApp.py:7759 -#: FlatCAMApp.py:7825 +#: FlatCAMApp.py:7021 FlatCAMApp.py:7068 FlatCAMApp.py:7724 FlatCAMApp.py:7787 +#: FlatCAMApp.py:7853 msgid "Preferences" msgstr "Preferências" -#: FlatCAMApp.py:6996 +#: FlatCAMApp.py:7024 msgid "Preferences applied." msgstr "Preferências aplicadas." -#: FlatCAMApp.py:7045 +#: FlatCAMApp.py:7073 msgid "Preferences closed without saving." msgstr "Preferências fechadas sem salvar." -#: FlatCAMApp.py:7068 flatcamTools/ToolNonCopperClear.py:596 -#: flatcamTools/ToolNonCopperClear.py:992 flatcamTools/ToolPaint.py:507 -#: flatcamTools/ToolSolderPaste.py:562 flatcamTools/ToolSolderPaste.py:889 +#: FlatCAMApp.py:7096 flatcamTools/ToolNonCopperClear.py:597 +#: flatcamTools/ToolNonCopperClear.py:993 flatcamTools/ToolPaint.py:508 +#: flatcamTools/ToolSolderPaste.py:562 flatcamTools/ToolSolderPaste.py:892 msgid "Please enter a tool diameter with non-zero value, in Float format." msgstr "" "Insira um diâmetro de ferramenta com valor diferente de zero, no formato " "Flutuante." -#: FlatCAMApp.py:7073 flatcamTools/ToolNonCopperClear.py:600 -#: flatcamTools/ToolPaint.py:511 flatcamTools/ToolSolderPaste.py:566 +#: FlatCAMApp.py:7101 flatcamTools/ToolNonCopperClear.py:601 +#: flatcamTools/ToolPaint.py:512 flatcamTools/ToolSolderPaste.py:566 msgid "Adding Tool cancelled" msgstr "Adicionar ferramenta cancelada" -#: FlatCAMApp.py:7076 +#: FlatCAMApp.py:7104 msgid "" "Adding Tool works only when Advanced is checked.\n" "Go to Preferences -> General - Show Advanced Options." @@ -618,11 +618,11 @@ msgstr "" "Adicionar Ferramenta funciona somente no modo Avançado.\n" "Vá em Preferências -> Geral - Mostrar Opções Avançadas." -#: FlatCAMApp.py:7151 +#: FlatCAMApp.py:7179 msgid "Delete objects" msgstr "Excluir objetos" -#: FlatCAMApp.py:7154 +#: FlatCAMApp.py:7182 msgid "" "Are you sure you want to permanently delete\n" "the selected objects?" @@ -630,51 +630,51 @@ msgstr "" "Você tem certeza de que deseja excluir permanentemente\n" "os objetos selecionados?" -#: FlatCAMApp.py:7185 +#: FlatCAMApp.py:7213 msgid "Object(s) deleted" msgstr "Objeto(s) excluído(s)" -#: FlatCAMApp.py:7189 +#: FlatCAMApp.py:7217 msgid "Failed. No object(s) selected..." msgstr "Falha. Nenhum objeto selecionado..." -#: FlatCAMApp.py:7191 +#: FlatCAMApp.py:7219 msgid "Save the work in Editor and try again ..." msgstr "Salve o trabalho no Editor e tente novamente ..." -#: FlatCAMApp.py:7221 +#: FlatCAMApp.py:7249 msgid "Object deleted" msgstr "Objeto excluído" -#: FlatCAMApp.py:7248 +#: FlatCAMApp.py:7276 msgid "Click to set the origin ..." msgstr "Clique para definir a origem ..." -#: FlatCAMApp.py:7270 +#: FlatCAMApp.py:7298 msgid "Setting Origin..." msgstr "Definindo Origem..." -#: FlatCAMApp.py:7282 +#: FlatCAMApp.py:7310 msgid "Origin set" msgstr "Origem definida" -#: FlatCAMApp.py:7289 +#: FlatCAMApp.py:7317 msgid "Origin coordinates specified but incomplete." msgstr "Coordenadas de origem especificadas, mas incompletas." -#: FlatCAMApp.py:7347 +#: FlatCAMApp.py:7375 msgid "Jump to ..." msgstr "Pular para ..." -#: FlatCAMApp.py:7348 +#: FlatCAMApp.py:7376 msgid "Enter the coordinates in format X,Y:" msgstr "Digite as coordenadas no formato X,Y:" -#: FlatCAMApp.py:7356 +#: FlatCAMApp.py:7384 msgid "Wrong coordinates. Enter coordinates in format: X,Y" msgstr "Coordenadas erradas. Insira as coordenadas no formato X,Y" -#: FlatCAMApp.py:7424 flatcamEditors/FlatCAMExcEditor.py:3518 +#: FlatCAMApp.py:7452 flatcamEditors/FlatCAMExcEditor.py:3518 #: flatcamEditors/FlatCAMExcEditor.py:3526 #: flatcamEditors/FlatCAMGeoEditor.py:3885 #: flatcamEditors/FlatCAMGeoEditor.py:3900 @@ -683,49 +683,49 @@ msgstr "Coordenadas erradas. Insira as coordenadas no formato X,Y" #: flatcamEditors/FlatCAMGrbEditor.py:1446 #: flatcamEditors/FlatCAMGrbEditor.py:1704 #: flatcamEditors/FlatCAMGrbEditor.py:4368 -#: flatcamEditors/FlatCAMGrbEditor.py:4383 flatcamGUI/FlatCAMGUI.py:2871 -#: flatcamGUI/FlatCAMGUI.py:2883 +#: flatcamEditors/FlatCAMGrbEditor.py:4383 flatcamGUI/FlatCAMGUI.py:3106 +#: flatcamGUI/FlatCAMGUI.py:3118 msgid "Done." msgstr "Pronto." -#: FlatCAMApp.py:7576 FlatCAMApp.py:7647 +#: FlatCAMApp.py:7604 FlatCAMApp.py:7675 msgid "No object is selected. Select an object and try again." msgstr "Nenhum objeto está selecionado. Selecione um objeto e tente novamente." -#: FlatCAMApp.py:7667 +#: FlatCAMApp.py:7695 msgid "" "Aborting. The current task will be gracefully closed as soon as possible..." msgstr "" "Abortando. A tarefa atual será fechada normalmente o mais rápido possível ..." -#: FlatCAMApp.py:7673 +#: FlatCAMApp.py:7701 msgid "The current task was gracefully closed on user request..." msgstr "" "A tarefa atual foi fechada normalmente mediante solicitação do usuário ..." -#: FlatCAMApp.py:7756 +#: FlatCAMApp.py:7784 msgid "Preferences edited but not saved." msgstr "Preferências editadas, mas não salvas." -#: FlatCAMApp.py:7770 FlatCAMApp.py:7782 FlatCAMApp.py:7799 FlatCAMApp.py:7816 -#: FlatCAMApp.py:7876 FlatCAMCommon.py:1161 FlatCAMCommon.py:1336 -#: FlatCAMObj.py:4213 +#: FlatCAMApp.py:7798 FlatCAMApp.py:7810 FlatCAMApp.py:7827 FlatCAMApp.py:7844 +#: FlatCAMApp.py:7904 FlatCAMCommon.py:1161 FlatCAMCommon.py:1336 +#: FlatCAMObj.py:4216 msgid "Tools Database" msgstr "Banco de Dados de Ferramentas" -#: FlatCAMApp.py:7796 +#: FlatCAMApp.py:7824 msgid "Tools in Tools Database edited but not saved." msgstr "Ferramenta editada, mas não salva." -#: FlatCAMApp.py:7820 +#: FlatCAMApp.py:7848 msgid "Tool from DB added in Tool Table." msgstr "Ferramenta do Banco de Dados adicionada na Tabela de Ferramentas." -#: FlatCAMApp.py:7822 +#: FlatCAMApp.py:7850 msgid "Adding tool from DB is not allowed for this object." msgstr "Adição de ferramenta do Banco de Dados não permitida para este objeto." -#: FlatCAMApp.py:7856 +#: FlatCAMApp.py:7884 msgid "" "One or more values are changed.\n" "Do you want to save the Preferences?" @@ -733,11 +733,11 @@ msgstr "" "Um ou mais valores foram alterados.\n" "Você deseja salvar as preferências?" -#: FlatCAMApp.py:7858 flatcamGUI/FlatCAMGUI.py:220 +#: FlatCAMApp.py:7886 flatcamGUI/FlatCAMGUI.py:222 msgid "Save Preferences" msgstr "Salvar Preferências" -#: FlatCAMApp.py:7882 +#: FlatCAMApp.py:7910 msgid "" "One or more Tools are edited.\n" "Do you want to update the Tools Database?" @@ -745,95 +745,95 @@ msgstr "" "Um ou mais Ferramentas foram editadas.\n" "Você deseja salvar o Banco de Dados de Ferramentas?" -#: FlatCAMApp.py:7884 +#: FlatCAMApp.py:7912 msgid "Save Tools Database" msgstr "Salvar Banco de Dados" -#: FlatCAMApp.py:7903 FlatCAMApp.py:10015 FlatCAMObj.py:6456 +#: FlatCAMApp.py:7931 FlatCAMApp.py:10047 FlatCAMObj.py:6459 msgid "Code Editor" msgstr "Editor de Códigos" -#: FlatCAMApp.py:7921 +#: FlatCAMApp.py:7949 msgid "No object selected to Flip on Y axis." msgstr "Nenhum objeto selecionado para Espelhar no eixo Y." -#: FlatCAMApp.py:7947 +#: FlatCAMApp.py:7975 msgid "Flip on Y axis done." msgstr "Espelhado no eixo Y." -#: FlatCAMApp.py:7949 FlatCAMApp.py:7991 +#: FlatCAMApp.py:7977 FlatCAMApp.py:8019 #: flatcamEditors/FlatCAMGrbEditor.py:5773 msgid "Flip action was not executed." msgstr "A ação de espelhamento não foi executada." -#: FlatCAMApp.py:7963 +#: FlatCAMApp.py:7991 msgid "No object selected to Flip on X axis." msgstr "Nenhum objeto selecionado para Espelhar no eixo X." -#: FlatCAMApp.py:7989 +#: FlatCAMApp.py:8017 msgid "Flip on X axis done." msgstr "Espelhado no eixo X." -#: FlatCAMApp.py:8005 +#: FlatCAMApp.py:8033 msgid "No object selected to Rotate." msgstr "Nenhum objeto selecionado para Girar." -#: FlatCAMApp.py:8008 FlatCAMApp.py:8055 FlatCAMApp.py:8088 +#: FlatCAMApp.py:8036 FlatCAMApp.py:8083 FlatCAMApp.py:8116 msgid "Transform" msgstr "Transformar" -#: FlatCAMApp.py:8008 FlatCAMApp.py:8055 FlatCAMApp.py:8088 +#: FlatCAMApp.py:8036 FlatCAMApp.py:8083 FlatCAMApp.py:8116 msgid "Enter the Angle value:" msgstr "Digite o valor do Ângulo:" -#: FlatCAMApp.py:8039 +#: FlatCAMApp.py:8067 msgid "Rotation done." msgstr "Rotação realizada." -#: FlatCAMApp.py:8041 +#: FlatCAMApp.py:8069 msgid "Rotation movement was not executed." msgstr "O movimento de rotação não foi executado." -#: FlatCAMApp.py:8053 +#: FlatCAMApp.py:8081 msgid "No object selected to Skew/Shear on X axis." msgstr "Nenhum objeto selecionado para Inclinar no eixo X." -#: FlatCAMApp.py:8075 +#: FlatCAMApp.py:8103 msgid "Skew on X axis done." msgstr "Inclinação no eixo X concluída." -#: FlatCAMApp.py:8086 +#: FlatCAMApp.py:8114 msgid "No object selected to Skew/Shear on Y axis." msgstr "Nenhum objeto selecionado para Inclinar no eixo Y." -#: FlatCAMApp.py:8108 +#: FlatCAMApp.py:8136 msgid "Skew on Y axis done." msgstr "Inclinação no eixo Y concluída." -#: FlatCAMApp.py:8256 FlatCAMApp.py:8303 flatcamGUI/FlatCAMGUI.py:429 -#: flatcamGUI/FlatCAMGUI.py:1465 +#: FlatCAMApp.py:8284 FlatCAMApp.py:8331 flatcamGUI/FlatCAMGUI.py:451 +#: flatcamGUI/FlatCAMGUI.py:1581 msgid "Select All" msgstr "Selecionar Todos" -#: FlatCAMApp.py:8260 FlatCAMApp.py:8307 flatcamGUI/FlatCAMGUI.py:432 +#: FlatCAMApp.py:8288 FlatCAMApp.py:8335 flatcamGUI/FlatCAMGUI.py:453 msgid "Deselect All" msgstr "Desmarcar todos" -#: FlatCAMApp.py:8323 +#: FlatCAMApp.py:8351 msgid "All objects are selected." msgstr "Todos os objetos estão selecionados." -#: FlatCAMApp.py:8333 +#: FlatCAMApp.py:8361 msgid "Objects selection is cleared." msgstr "A seleção de objetos é limpa." -#: FlatCAMApp.py:8349 flatcamGUI/FlatCAMGUI.py:1458 +#: FlatCAMApp.py:8378 flatcamGUI/FlatCAMGUI.py:1574 msgid "Grid On/Off" msgstr "Liga/Desliga a Grade" -#: FlatCAMApp.py:8362 flatcamEditors/FlatCAMGeoEditor.py:940 +#: FlatCAMApp.py:8393 flatcamEditors/FlatCAMGeoEditor.py:940 #: flatcamEditors/FlatCAMGrbEditor.py:2503 -#: flatcamEditors/FlatCAMGrbEditor.py:5346 flatcamGUI/ObjectUI.py:1265 +#: flatcamEditors/FlatCAMGrbEditor.py:5346 flatcamGUI/ObjectUI.py:1304 #: flatcamTools/ToolDblSided.py:185 flatcamTools/ToolDblSided.py:238 #: flatcamTools/ToolNonCopperClear.py:286 flatcamTools/ToolPaint.py:188 #: flatcamTools/ToolSolderPaste.py:121 flatcamTools/ToolSolderPaste.py:591 @@ -841,78 +841,78 @@ msgstr "Liga/Desliga a Grade" msgid "Add" msgstr "Adicionar" -#: FlatCAMApp.py:8363 FlatCAMObj.py:3900 +#: FlatCAMApp.py:8395 FlatCAMObj.py:3902 #: flatcamEditors/FlatCAMGrbEditor.py:2508 -#: 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 +#: flatcamEditors/FlatCAMGrbEditor.py:2656 flatcamGUI/FlatCAMGUI.py:654 +#: flatcamGUI/FlatCAMGUI.py:965 flatcamGUI/FlatCAMGUI.py:1987 +#: flatcamGUI/FlatCAMGUI.py:2130 flatcamGUI/FlatCAMGUI.py:2524 +#: flatcamGUI/ObjectUI.py:1330 flatcamTools/ToolNonCopperClear.py:298 #: flatcamTools/ToolPaint.py:200 flatcamTools/ToolSolderPaste.py:127 -#: flatcamTools/ToolSolderPaste.py:593 +#: flatcamTools/ToolSolderPaste.py:594 msgid "Delete" msgstr "Excluir" -#: FlatCAMApp.py:8376 +#: FlatCAMApp.py:8408 msgid "New Grid ..." msgstr "Nova Grade ..." -#: FlatCAMApp.py:8377 +#: FlatCAMApp.py:8409 msgid "Enter a Grid Value:" msgstr "Digite um valor para grade:" -#: FlatCAMApp.py:8385 FlatCAMApp.py:8412 +#: FlatCAMApp.py:8417 FlatCAMApp.py:8444 msgid "Please enter a grid value with non-zero value, in Float format." msgstr "" "Por favor, insira um valor de grade com valor diferente de zero, no formato " "Flutuante." -#: FlatCAMApp.py:8391 +#: FlatCAMApp.py:8423 msgid "New Grid added" msgstr "Nova Grade adicionada" -#: FlatCAMApp.py:8394 +#: FlatCAMApp.py:8426 msgid "Grid already exists" msgstr "Grade já existe" -#: FlatCAMApp.py:8397 +#: FlatCAMApp.py:8429 msgid "Adding New Grid cancelled" msgstr "Adicionar nova grade cancelada" -#: FlatCAMApp.py:8419 +#: FlatCAMApp.py:8451 msgid " Grid Value does not exist" msgstr " O valor da grade não existe" -#: FlatCAMApp.py:8422 +#: FlatCAMApp.py:8454 msgid "Grid Value deleted" msgstr "Grade apagada" -#: FlatCAMApp.py:8425 +#: FlatCAMApp.py:8457 msgid "Delete Grid value cancelled" msgstr "Excluir valor de grade cancelado" -#: FlatCAMApp.py:8431 +#: FlatCAMApp.py:8463 msgid "Key Shortcut List" msgstr "Lista de Teclas de Atalho" -#: FlatCAMApp.py:8465 +#: FlatCAMApp.py:8497 msgid " No object selected to copy it's name" msgstr " Nenhum objeto selecionado para copiar nome" -#: FlatCAMApp.py:8469 +#: FlatCAMApp.py:8501 msgid "Name copied on clipboard ..." msgstr "Nome copiado para a área de transferência..." -#: FlatCAMApp.py:8666 flatcamEditors/FlatCAMGrbEditor.py:4300 +#: FlatCAMApp.py:8698 flatcamEditors/FlatCAMGrbEditor.py:4300 msgid "Coordinates copied to clipboard." msgstr "Coordenadas copiadas para a área de transferência." -#: 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 +#: FlatCAMApp.py:8912 FlatCAMApp.py:8918 FlatCAMApp.py:8924 FlatCAMApp.py:8930 +#: ObjectCollection.py:792 ObjectCollection.py:798 ObjectCollection.py:804 +#: ObjectCollection.py:810 ObjectCollection.py:816 ObjectCollection.py:822 msgid "selected" msgstr "selecionado" -#: FlatCAMApp.py:9040 +#: FlatCAMApp.py:9072 msgid "" "There are files/objects opened in FlatCAM.\n" "Creating a New project will delete them.\n" @@ -922,369 +922,369 @@ msgstr "" "Criar um novo projeto irá apagá-los.\n" "Você deseja Salvar o Projeto?" -#: FlatCAMApp.py:9062 +#: FlatCAMApp.py:9094 msgid "New Project created" msgstr "Novo Projeto criado" -#: FlatCAMApp.py:9197 FlatCAMApp.py:9201 flatcamGUI/FlatCAMGUI.py:696 -#: flatcamGUI/FlatCAMGUI.py:2149 +#: FlatCAMApp.py:9229 FlatCAMApp.py:9233 flatcamGUI/FlatCAMGUI.py:741 +#: flatcamGUI/FlatCAMGUI.py:2317 msgid "Open Gerber" msgstr "Abrir Gerber" -#: FlatCAMApp.py:9208 +#: FlatCAMApp.py:9240 msgid "Opening Gerber file." msgstr "Abrindo Arquivo Gerber." -#: FlatCAMApp.py:9214 +#: FlatCAMApp.py:9246 msgid "Open Gerber cancelled." msgstr "Abrir Gerber cancelado." -#: FlatCAMApp.py:9235 FlatCAMApp.py:9239 flatcamGUI/FlatCAMGUI.py:697 -#: flatcamGUI/FlatCAMGUI.py:2150 +#: FlatCAMApp.py:9267 FlatCAMApp.py:9271 flatcamGUI/FlatCAMGUI.py:743 +#: flatcamGUI/FlatCAMGUI.py:2319 msgid "Open Excellon" msgstr "Abrir Excellon" -#: FlatCAMApp.py:9245 +#: FlatCAMApp.py:9277 msgid "Opening Excellon file." msgstr "Abrindo Arquivo Excellon." -#: FlatCAMApp.py:9251 +#: FlatCAMApp.py:9283 msgid " Open Excellon cancelled." msgstr " Abrir Excellon cancelado." -#: FlatCAMApp.py:9275 FlatCAMApp.py:9279 +#: FlatCAMApp.py:9307 FlatCAMApp.py:9311 msgid "Open G-Code" msgstr "Abrir G-Code" -#: FlatCAMApp.py:9286 +#: FlatCAMApp.py:9318 msgid "Opening G-Code file." msgstr "Abrindo Arquivo G-Code." -#: FlatCAMApp.py:9292 +#: FlatCAMApp.py:9324 msgid "Open G-Code cancelled." msgstr "Abrir G-Code cancelado." -#: FlatCAMApp.py:9310 FlatCAMApp.py:9313 flatcamGUI/FlatCAMGUI.py:1467 +#: FlatCAMApp.py:9342 FlatCAMApp.py:9345 flatcamGUI/FlatCAMGUI.py:1583 msgid "Open Project" msgstr "Abrir Projeto" -#: FlatCAMApp.py:9322 +#: FlatCAMApp.py:9354 msgid "Open Project cancelled." msgstr "Abrir Projeto cancelado." -#: FlatCAMApp.py:9346 FlatCAMApp.py:9350 +#: FlatCAMApp.py:9378 FlatCAMApp.py:9382 msgid "Open HPGL2" msgstr "Abrir HPGL2" -#: FlatCAMApp.py:9357 +#: FlatCAMApp.py:9389 msgid "Opening HPGL2 file." msgstr "Abrindo Arquivo HPGL2 ." -#: FlatCAMApp.py:9362 +#: FlatCAMApp.py:9394 msgid "Open HPGL2 file cancelled." msgstr "Abrir HPGL2 cancelado." -#: FlatCAMApp.py:9380 FlatCAMApp.py:9383 +#: FlatCAMApp.py:9412 FlatCAMApp.py:9415 msgid "Open Configuration File" msgstr "Abrir Arquivo de Configuração" -#: FlatCAMApp.py:9388 +#: FlatCAMApp.py:9420 msgid "Open Config cancelled." msgstr "Abrir Arquivo de Configuração cancelado." -#: FlatCAMApp.py:9404 FlatCAMApp.py:9772 FlatCAMApp.py:10246 +#: FlatCAMApp.py:9436 FlatCAMApp.py:9804 FlatCAMApp.py:10278 msgid "No object selected." msgstr "Nenhum objeto selecionado." -#: FlatCAMApp.py:9405 FlatCAMApp.py:9773 +#: FlatCAMApp.py:9437 FlatCAMApp.py:9805 msgid "Please Select a Geometry object to export" msgstr "Por favor, selecione um objeto Geometria para exportar" -#: FlatCAMApp.py:9419 +#: FlatCAMApp.py:9451 msgid "Only Geometry, Gerber and CNCJob objects can be used." msgstr "Somente objetos Geometria, Gerber e Trabalho CNC podem ser usados." -#: FlatCAMApp.py:9432 FlatCAMApp.py:9436 flatcamTools/ToolQRCode.py:827 +#: FlatCAMApp.py:9464 FlatCAMApp.py:9468 flatcamTools/ToolQRCode.py:827 #: flatcamTools/ToolQRCode.py:831 msgid "Export SVG" msgstr "Exportar SVG" -#: FlatCAMApp.py:9442 flatcamTools/ToolQRCode.py:836 +#: FlatCAMApp.py:9474 flatcamTools/ToolQRCode.py:836 msgid " Export SVG cancelled." msgstr " Exportar SVG cancelado." -#: FlatCAMApp.py:9463 +#: FlatCAMApp.py:9495 msgid "Data must be a 3D array with last dimension 3 or 4" msgstr "Os dados devem ser uma matriz 3D com a última dimensão 3 ou 4" -#: FlatCAMApp.py:9469 FlatCAMApp.py:9473 +#: FlatCAMApp.py:9501 FlatCAMApp.py:9505 msgid "Export PNG Image" msgstr "Exportar Imagem PNG" -#: FlatCAMApp.py:9478 +#: FlatCAMApp.py:9510 msgid "Export PNG cancelled." msgstr "Exportar PNG cancelado." -#: FlatCAMApp.py:9502 +#: FlatCAMApp.py:9534 msgid "No object selected. Please select an Gerber object to export." msgstr "" "Nenhum objeto selecionado. Por favor, selecione um objeto Gerber para " "exportar." -#: FlatCAMApp.py:9508 FlatCAMApp.py:9731 +#: FlatCAMApp.py:9540 FlatCAMApp.py:9763 msgid "Failed. Only Gerber objects can be saved as Gerber files..." msgstr "" "Falhou. Somente objetos Gerber podem ser salvos como arquivos Gerber..." -#: FlatCAMApp.py:9520 +#: FlatCAMApp.py:9552 msgid "Save Gerber source file" msgstr "Salvar arquivo fonte Gerber" -#: FlatCAMApp.py:9526 +#: FlatCAMApp.py:9558 msgid "Save Gerber source file cancelled." msgstr "Salvar arquivo fonte Gerber cancelado." -#: FlatCAMApp.py:9546 +#: FlatCAMApp.py:9578 msgid "No object selected. Please select an Script object to export." msgstr "" "Nenhum objeto selecionado. Por favor, selecione um Script para exportar." -#: FlatCAMApp.py:9552 +#: FlatCAMApp.py:9584 msgid "Failed. Only Script objects can be saved as TCL Script files..." msgstr "Falhou. Somente Scripts podem ser salvos como arquivos Scripts TCL..." -#: FlatCAMApp.py:9564 +#: FlatCAMApp.py:9596 msgid "Save Script source file" msgstr "Salvar arquivo fonte do Script" -#: FlatCAMApp.py:9570 +#: FlatCAMApp.py:9602 msgid "Save Script source file cancelled." msgstr "Salvar arquivo fonte Script cancelado." -#: FlatCAMApp.py:9590 +#: FlatCAMApp.py:9622 msgid "No object selected. Please select an Document object to export." msgstr "" "Nenhum objeto selecionado. Por favor, selecione um Documento para exportar." -#: FlatCAMApp.py:9596 +#: FlatCAMApp.py:9628 msgid "Failed. Only Document objects can be saved as Document files..." msgstr "" "Falhou. Somente objetos Documentos podem ser salvos como arquivos " "Documentos..." -#: FlatCAMApp.py:9608 +#: FlatCAMApp.py:9640 msgid "Save Document source file" msgstr "Salvar o arquivo fonte Documento" -#: FlatCAMApp.py:9614 +#: FlatCAMApp.py:9646 msgid "Save Document source file cancelled." msgstr "Salvar arquivo fonte Documento cancelado." -#: FlatCAMApp.py:9634 +#: FlatCAMApp.py:9666 msgid "No object selected. Please select an Excellon object to export." msgstr "" "Nenhum objeto selecionado. Por favor, selecione um objeto Excellon para " "exportar." -#: FlatCAMApp.py:9640 FlatCAMApp.py:9684 FlatCAMApp.py:10422 +#: FlatCAMApp.py:9672 FlatCAMApp.py:9716 FlatCAMApp.py:10454 msgid "Failed. Only Excellon objects can be saved as Excellon files..." msgstr "" "Falhou. Somente objetos Excellon podem ser salvos como arquivos Excellon..." -#: FlatCAMApp.py:9648 FlatCAMApp.py:9652 +#: FlatCAMApp.py:9680 FlatCAMApp.py:9684 msgid "Save Excellon source file" msgstr "Salvar o arquivo fonte Excellon" -#: FlatCAMApp.py:9658 +#: FlatCAMApp.py:9690 msgid "Saving Excellon source file cancelled." msgstr "Salvar arquivo fonte Excellon cancelado." -#: FlatCAMApp.py:9678 +#: FlatCAMApp.py:9710 msgid "No object selected. Please Select an Excellon object to export." msgstr "" "Nenhum objeto selecionado. Por favor, selecione um objeto Excellon para " "exportar." -#: FlatCAMApp.py:9692 FlatCAMApp.py:9696 +#: FlatCAMApp.py:9724 FlatCAMApp.py:9728 msgid "Export Excellon" msgstr "Exportar Excellon" -#: FlatCAMApp.py:9702 +#: FlatCAMApp.py:9734 msgid "Export Excellon cancelled." msgstr "Exportar Excellon cancelado." -#: FlatCAMApp.py:9725 +#: FlatCAMApp.py:9757 msgid "No object selected. Please Select an Gerber object to export." msgstr "" "Nenhum objeto selecionado. Por favor, selecione um objeto Gerber para " "exportar." -#: FlatCAMApp.py:9739 FlatCAMApp.py:9743 +#: FlatCAMApp.py:9771 FlatCAMApp.py:9775 msgid "Export Gerber" msgstr "Exportar Gerber" -#: FlatCAMApp.py:9749 +#: FlatCAMApp.py:9781 msgid "Export Gerber cancelled." msgstr "Exportar Gerber cancelado." -#: FlatCAMApp.py:9784 +#: FlatCAMApp.py:9816 msgid "Only Geometry objects can be used." msgstr "Apenas objetos Geometria podem ser usados." -#: FlatCAMApp.py:9798 FlatCAMApp.py:9802 +#: FlatCAMApp.py:9830 FlatCAMApp.py:9834 msgid "Export DXF" msgstr "Exportar DXF" -#: FlatCAMApp.py:9809 +#: FlatCAMApp.py:9841 msgid "Export DXF cancelled." msgstr "Exportar DXF cancelado." -#: FlatCAMApp.py:9829 FlatCAMApp.py:9832 +#: FlatCAMApp.py:9861 FlatCAMApp.py:9864 msgid "Import SVG" msgstr "Importar SVG" -#: FlatCAMApp.py:9842 +#: FlatCAMApp.py:9874 msgid "Open SVG cancelled." msgstr "Abrir SVG cancelado." -#: FlatCAMApp.py:9861 FlatCAMApp.py:9865 +#: FlatCAMApp.py:9893 FlatCAMApp.py:9897 msgid "Import DXF" msgstr "Importar DXF" -#: FlatCAMApp.py:9875 +#: FlatCAMApp.py:9907 msgid "Open DXF cancelled." msgstr "Abrir DXF cancelado." -#: FlatCAMApp.py:9917 +#: FlatCAMApp.py:9949 msgid "Viewing the source code of the selected object." msgstr "Vendo o código fonte do objeto selecionado." -#: FlatCAMApp.py:9918 FlatCAMObj.py:6442 FlatCAMObj.py:7043 +#: FlatCAMApp.py:9950 FlatCAMObj.py:6445 FlatCAMObj.py:7046 msgid "Loading..." msgstr "Lendo..." -#: FlatCAMApp.py:9924 FlatCAMApp.py:9928 +#: FlatCAMApp.py:9956 FlatCAMApp.py:9960 msgid "Select an Gerber or Excellon file to view it's source file." msgstr "" "Selecione um arquivo Gerber ou Excellon para visualizar o arquivo fonte." -#: FlatCAMApp.py:9942 +#: FlatCAMApp.py:9974 msgid "Source Editor" msgstr "Editor de Fontes" -#: FlatCAMApp.py:9982 FlatCAMApp.py:9989 +#: FlatCAMApp.py:10014 FlatCAMApp.py:10021 msgid "There is no selected object for which to see it's source file code." msgstr "Nenhum objeto selecionado para ver o código fonte do arquivo." -#: FlatCAMApp.py:10001 +#: FlatCAMApp.py:10033 msgid "Failed to load the source code for the selected object" msgstr "Falha ao ler o código fonte do objeto selecionado" -#: FlatCAMApp.py:10043 +#: FlatCAMApp.py:10075 msgid "New TCL script file created in Code Editor." msgstr "Novo arquivo de script TCL criado no Editor de Códigos." -#: FlatCAMApp.py:10081 FlatCAMApp.py:10083 +#: FlatCAMApp.py:10113 FlatCAMApp.py:10115 msgid "Open TCL script" msgstr "Abrir script TCL" -#: FlatCAMApp.py:10087 +#: FlatCAMApp.py:10119 msgid "Open TCL script cancelled." msgstr "Abrir script TCL cancelado." -#: FlatCAMApp.py:10111 +#: FlatCAMApp.py:10143 msgid "Executing FlatCAMScript file." msgstr "Executando arquivo de Script FlatCAM." -#: FlatCAMApp.py:10118 FlatCAMApp.py:10121 +#: FlatCAMApp.py:10150 FlatCAMApp.py:10153 msgid "Run TCL script" msgstr "Executar script TCL" -#: FlatCAMApp.py:10131 +#: FlatCAMApp.py:10163 msgid "Run TCL script cancelled." msgstr "Executar script TCL cancelado." -#: FlatCAMApp.py:10147 +#: FlatCAMApp.py:10179 msgid "TCL script file opened in Code Editor and executed." msgstr "Arquivo de script TCL aberto no Editor de Código e executado." -#: FlatCAMApp.py:10198 FlatCAMApp.py:10204 +#: FlatCAMApp.py:10230 FlatCAMApp.py:10236 msgid "Save Project As ..." msgstr "Salvar Projeto Como..." -#: FlatCAMApp.py:10200 flatcamGUI/FlatCAMGUI.py:909 -#: flatcamGUI/FlatCAMGUI.py:1899 +#: FlatCAMApp.py:10232 flatcamGUI/FlatCAMGUI.py:1025 +#: flatcamGUI/FlatCAMGUI.py:2022 msgid "Project" msgstr "Projeto" -#: FlatCAMApp.py:10209 +#: FlatCAMApp.py:10241 msgid "Save Project cancelled." msgstr "Salvar Projeto cancelado." -#: FlatCAMApp.py:10216 +#: FlatCAMApp.py:10248 msgid "The object is used by another application." msgstr "O objeto é usado por outro aplicativo." -#: FlatCAMApp.py:10252 FlatCAMApp.py:10259 flatcamGUI/FlatCAMGUI.py:261 +#: FlatCAMApp.py:10284 FlatCAMApp.py:10291 flatcamGUI/FlatCAMGUI.py:265 msgid "Save Object as PDF ..." msgstr "Salvar objeto como PDF ..." -#: FlatCAMApp.py:10264 +#: FlatCAMApp.py:10296 msgid "Save Object PDF cancelled." msgstr "Salvar PDF do objeto cancelado." -#: FlatCAMApp.py:10302 +#: FlatCAMApp.py:10334 msgid "Exporting SVG" msgstr "Exportando SVG" -#: FlatCAMApp.py:10346 +#: FlatCAMApp.py:10378 msgid "SVG file exported to" msgstr "Arquivo SVG exportado para" -#: FlatCAMApp.py:10371 +#: FlatCAMApp.py:10403 msgid "" "Save cancelled because source file is empty. Try to export the Gerber file." msgstr "" "Salvar cancelado porque o arquivo de origem está vazio. Tente exportar o " "arquivo Gerber." -#: FlatCAMApp.py:10517 +#: FlatCAMApp.py:10549 msgid "Excellon file exported to" msgstr "Arquivo Excellon exportado para" -#: FlatCAMApp.py:10526 +#: FlatCAMApp.py:10558 msgid "Exporting Excellon" msgstr "Exportando Excellon" -#: FlatCAMApp.py:10532 FlatCAMApp.py:10540 +#: FlatCAMApp.py:10564 FlatCAMApp.py:10572 msgid "Could not export Excellon file." msgstr "Não foi possível exportar o arquivo Excellon." -#: FlatCAMApp.py:10656 +#: FlatCAMApp.py:10688 msgid "Gerber file exported to" msgstr "Arquivo Gerber exportado para" -#: FlatCAMApp.py:10664 +#: FlatCAMApp.py:10696 msgid "Exporting Gerber" msgstr "Exportando Gerber" -#: FlatCAMApp.py:10670 FlatCAMApp.py:10678 +#: FlatCAMApp.py:10702 FlatCAMApp.py:10710 msgid "Could not export Gerber file." msgstr "Não foi possível exportar o arquivo Gerber." -#: FlatCAMApp.py:10712 +#: FlatCAMApp.py:10744 msgid "DXF file exported to" msgstr "Arquivo DXF exportado para" -#: FlatCAMApp.py:10718 +#: FlatCAMApp.py:10750 msgid "Exporting DXF" msgstr "Exportando DXF" -#: FlatCAMApp.py:10723 FlatCAMApp.py:10730 +#: FlatCAMApp.py:10755 FlatCAMApp.py:10762 msgid "Could not export DXF file." msgstr "Não foi possível exportar o arquivo DXF." -#: FlatCAMApp.py:10753 FlatCAMApp.py:10796 flatcamTools/ToolImage.py:278 +#: FlatCAMApp.py:10785 FlatCAMApp.py:10828 flatcamTools/ToolImage.py:278 msgid "" "Not supported type is picked as parameter. Only Geometry and Gerber are " "supported" @@ -1292,87 +1292,87 @@ msgstr "" "O tipo escolhido não é suportado como parâmetro. Apenas Geometria e Gerber " "são suportados" -#: FlatCAMApp.py:10763 +#: FlatCAMApp.py:10795 msgid "Importing SVG" msgstr "Importando SVG" -#: 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 +#: FlatCAMApp.py:10806 FlatCAMApp.py:10848 FlatCAMApp.py:10907 +#: FlatCAMApp.py:10974 FlatCAMApp.py:11037 FlatCAMApp.py:11104 +#: FlatCAMApp.py:11142 flatcamTools/ToolImage.py:298 #: flatcamTools/ToolPDF.py:225 msgid "Opened" msgstr "Aberto" -#: FlatCAMApp.py:10805 +#: FlatCAMApp.py:10837 msgid "Importing DXF" msgstr "Importando DXF" -#: FlatCAMApp.py:10841 FlatCAMApp.py:11031 +#: FlatCAMApp.py:10873 FlatCAMApp.py:11063 msgid "Failed to open file" msgstr "Falha ao abrir o arquivo" -#: FlatCAMApp.py:10844 FlatCAMApp.py:11034 +#: FlatCAMApp.py:10876 FlatCAMApp.py:11066 msgid "Failed to parse file" msgstr "Falha ao analisar o arquivo" -#: FlatCAMApp.py:10849 FlatCAMApp.py:10910 FlatCAMApp.py:11039 -#: FlatCAMObj.py:5004 flatcamEditors/FlatCAMGrbEditor.py:4110 +#: FlatCAMApp.py:10881 FlatCAMApp.py:10942 FlatCAMApp.py:11071 +#: FlatCAMObj.py:5007 flatcamEditors/FlatCAMGrbEditor.py:4110 #: flatcamTools/ToolPcbWizard.py:437 msgid "An internal error has occurred. See shell.\n" msgstr "Ocorreu um erro interno. Veja shell. (linha de comando)\n" -#: FlatCAMApp.py:10856 +#: FlatCAMApp.py:10888 msgid "Object is not Gerber file or empty. Aborting object creation." msgstr "" "O objeto não é um arquivo Gerber ou está vazio. Abortando a criação de " "objetos." -#: FlatCAMApp.py:10861 +#: FlatCAMApp.py:10893 msgid "Opening Gerber" msgstr "Abrindo Gerber" -#: FlatCAMApp.py:10868 +#: FlatCAMApp.py:10900 msgid " Open Gerber failed. Probable not a Gerber file." msgstr " Abrir Gerber falhou. Provavelmente não é um arquivo Gerber." -#: FlatCAMApp.py:10900 flatcamTools/ToolPcbWizard.py:427 +#: FlatCAMApp.py:10932 flatcamTools/ToolPcbWizard.py:427 msgid "This is not Excellon file." msgstr "Este não é um arquivo Excellon." -#: FlatCAMApp.py:10904 +#: FlatCAMApp.py:10936 msgid "Cannot open file" msgstr "Não é possível abrir o arquivo" -#: FlatCAMApp.py:10924 flatcamTools/ToolPDF.py:275 +#: FlatCAMApp.py:10956 flatcamTools/ToolPDF.py:275 #: flatcamTools/ToolPcbWizard.py:451 msgid "No geometry found in file" msgstr "Nenhuma geometria encontrada no arquivo" -#: FlatCAMApp.py:10927 +#: FlatCAMApp.py:10959 msgid "Opening Excellon." msgstr "Abrindo Excellon." -#: FlatCAMApp.py:10934 +#: FlatCAMApp.py:10966 msgid "Open Excellon file failed. Probable not an Excellon file." msgstr "Falha ao abrir Excellon. Provavelmente não é um arquivo Excellon." -#: FlatCAMApp.py:10965 +#: FlatCAMApp.py:10997 msgid "Reading GCode file" msgstr "Lendo Arquivo G-Code" -#: FlatCAMApp.py:10972 +#: FlatCAMApp.py:11004 msgid "Failed to open" msgstr "Falha ao abrir" -#: FlatCAMApp.py:10980 +#: FlatCAMApp.py:11012 msgid "This is not GCODE" msgstr "Não é G-Code" -#: FlatCAMApp.py:10985 +#: FlatCAMApp.py:11017 msgid "Opening G-Code." msgstr "Abrindo G-Code." -#: FlatCAMApp.py:10994 +#: FlatCAMApp.py:11026 msgid "" "Failed to create CNCJob Object. Probable not a GCode file. Try to load it " "from File menu.\n" @@ -1384,69 +1384,69 @@ msgstr "" "A tentativa de criar um objeto de Trabalho CNC do arquivo G-Code falhou " "durante o processamento" -#: FlatCAMApp.py:11053 +#: FlatCAMApp.py:11085 msgid "Object is not HPGL2 file or empty. Aborting object creation." msgstr "" "O objeto não é um arquivo HPGL2 ou está vazio. Interrompendo a criação de " "objetos." -#: FlatCAMApp.py:11058 +#: FlatCAMApp.py:11090 msgid "Opening HPGL2" msgstr "Abrindo o HPGL2" -#: FlatCAMApp.py:11065 +#: FlatCAMApp.py:11097 msgid " Open HPGL2 failed. Probable not a HPGL2 file." msgstr " Falha no HPGL2 aberto. Provavelmente não é um arquivo HPGL2." -#: FlatCAMApp.py:11086 +#: FlatCAMApp.py:11118 msgid "Opening TCL Script..." msgstr "Abrindo script TCL..." -#: FlatCAMApp.py:11094 +#: FlatCAMApp.py:11126 msgid "TCL script file opened in Code Editor." msgstr "Arquivo de script TCL aberto no Editor de Códigos." -#: FlatCAMApp.py:11097 +#: FlatCAMApp.py:11129 msgid "Failed to open TCL Script." msgstr "Falha ao abrir o Script TCL." -#: FlatCAMApp.py:11125 +#: FlatCAMApp.py:11157 msgid "Opening FlatCAM Config file." msgstr "Abrindo arquivo de Configuração." -#: FlatCAMApp.py:11153 +#: FlatCAMApp.py:11185 msgid "Failed to open config file" msgstr "Falha ao abrir o arquivo de configuração" -#: FlatCAMApp.py:11179 +#: FlatCAMApp.py:11211 msgid "Loading Project ... Please Wait ..." msgstr "Carregando projeto ... Por favor aguarde ..." -#: FlatCAMApp.py:11184 +#: FlatCAMApp.py:11216 msgid "Opening FlatCAM Project file." msgstr "Abrindo Projeto FlatCAM." -#: FlatCAMApp.py:11194 FlatCAMApp.py:11212 +#: FlatCAMApp.py:11226 FlatCAMApp.py:11244 msgid "Failed to open project file" msgstr "Falha ao abrir o arquivo de projeto" -#: FlatCAMApp.py:11246 +#: FlatCAMApp.py:11278 msgid "Loading Project ... restoring" msgstr "Carregando projeto ... restaurando" -#: FlatCAMApp.py:11255 +#: FlatCAMApp.py:11287 msgid "Project loaded from" msgstr "Projeto carregado de" -#: FlatCAMApp.py:11318 +#: FlatCAMApp.py:11350 msgid "Redrawing all objects" msgstr "Redesenha todos os objetos" -#: FlatCAMApp.py:11350 +#: FlatCAMApp.py:11382 msgid "Available commands:\n" msgstr "Comandos disponíveis:\n" -#: FlatCAMApp.py:11352 +#: FlatCAMApp.py:11384 msgid "" "\n" "\n" @@ -1458,51 +1458,51 @@ msgstr "" "Digite help para forma de uso.\n" " Exemplo: help open_gerber" -#: FlatCAMApp.py:11502 +#: FlatCAMApp.py:11534 msgid "Shows list of commands." msgstr "Mostra a lista de comandos." -#: FlatCAMApp.py:11564 +#: FlatCAMApp.py:11596 msgid "Failed to load recent item list." msgstr "Falha ao carregar a lista de itens recentes." -#: FlatCAMApp.py:11572 +#: FlatCAMApp.py:11604 msgid "Failed to parse recent item list." msgstr "Falha ao analisar a lista de itens recentes." -#: FlatCAMApp.py:11583 +#: FlatCAMApp.py:11615 msgid "Failed to load recent projects item list." msgstr "Falha ao carregar a lista de projetos recentes." -#: FlatCAMApp.py:11591 +#: FlatCAMApp.py:11623 msgid "Failed to parse recent project item list." msgstr "Falha ao analisar a lista de projetos recentes." -#: FlatCAMApp.py:11650 +#: FlatCAMApp.py:11683 msgid "Clear Recent projects" msgstr "Limpar Projetos Recentes" -#: FlatCAMApp.py:11673 +#: FlatCAMApp.py:11707 msgid "Clear Recent files" msgstr "Limpar Arquivos Recentes" -#: FlatCAMApp.py:11690 flatcamGUI/FlatCAMGUI.py:1133 +#: FlatCAMApp.py:11724 flatcamGUI/FlatCAMGUI.py:1249 msgid "Shortcut Key List" msgstr "Lista de Teclas de Atalho" -#: FlatCAMApp.py:11764 +#: FlatCAMApp.py:11798 msgid "Selected Tab - Choose an Item from Project Tab" msgstr "Guia Selecionado - Escolha um item na guia Projeto" -#: FlatCAMApp.py:11765 +#: FlatCAMApp.py:11799 msgid "Details" msgstr "Detalhes" -#: FlatCAMApp.py:11767 +#: FlatCAMApp.py:11801 msgid "The normal flow when working in FlatCAM is the following:" msgstr "O fluxo normal ao trabalhar no FlatCAM é o seguinte:" -#: FlatCAMApp.py:11768 +#: FlatCAMApp.py:11802 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 " @@ -1512,7 +1512,7 @@ msgstr "" "para o FlatCAM usando a barra de ferramentas, tecla de atalho ou arrastando " "e soltando um arquivo na GUI." -#: FlatCAMApp.py:11771 +#: FlatCAMApp.py:11805 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 " @@ -1522,7 +1522,7 @@ msgstr "" "usando o menu ou a barra de ferramentas, tecla de atalho ou arrastando e " "soltando um arquivo na GUI." -#: FlatCAMApp.py:11774 +#: FlatCAMApp.py:11808 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 " @@ -1534,7 +1534,7 @@ msgstr "" "Projeto, a ABA SELECIONADO será atualizada com as propriedades do objeto de " "acordo com seu tipo: Gerber, Excellon, Geometria ou Trabalho CNC." -#: FlatCAMApp.py:11778 +#: FlatCAMApp.py:11812 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 " @@ -1548,14 +1548,14 @@ msgstr "" "na tela exibirá a ABA SELECIONADO e a preencherá mesmo que ela esteja fora " "de foco." -#: FlatCAMApp.py:11782 +#: FlatCAMApp.py:11816 msgid "" "You can change the parameters in this screen and the flow direction is like " "this:" msgstr "" "Você pode alterar os parâmetros nesta tela e a direção do fluxo é assim:" -#: FlatCAMApp.py:11783 +#: FlatCAMApp.py:11817 msgid "" "Gerber/Excellon Object --> Change Parameter --> Generate Geometry --> " "Geometry Object --> Add tools (change param in Selected Tab) --> Generate " @@ -1568,7 +1568,7 @@ msgstr "" "Código CNC) e/ou adicionar código no início ou no final do G-Code (na Aba " "Selecionado) --> Salvar G-Code." -#: FlatCAMApp.py:11787 +#: FlatCAMApp.py:11821 msgid "" "A list of key shortcuts is available through an menu entry in Help --> " "Shortcuts List or through its own key shortcut: F3." @@ -1577,24 +1577,24 @@ msgstr "" "menu em Ajuda --> Lista de Atalhos ou através da sua própria tecla de " "atalho: F3." -#: FlatCAMApp.py:11848 +#: FlatCAMApp.py:11882 msgid "Failed checking for latest version. Could not connect." msgstr "" "Falha na verificação da versão mais recente. Não foi possível conectar." -#: FlatCAMApp.py:11856 +#: FlatCAMApp.py:11890 msgid "Could not parse information about latest version." msgstr "Não foi possível analisar informações sobre a versão mais recente." -#: FlatCAMApp.py:11867 +#: FlatCAMApp.py:11901 msgid "FlatCAM is up to date!" msgstr "O FlatCAM está atualizado!" -#: FlatCAMApp.py:11872 +#: FlatCAMApp.py:11906 msgid "Newer Version Available" msgstr "Nova Versão Disponível" -#: FlatCAMApp.py:11873 +#: FlatCAMApp.py:11907 msgid "" "There is a newer version of FlatCAM available for download:\n" "\n" @@ -1602,63 +1602,63 @@ msgstr "" "Existe uma versão mais nova do FlatCAM disponível para download:\n" "\n" -#: FlatCAMApp.py:11875 +#: FlatCAMApp.py:11909 msgid "info" msgstr "info" -#: FlatCAMApp.py:11954 +#: FlatCAMApp.py:11988 msgid "All plots disabled." msgstr "Todos os gráficos desabilitados." -#: FlatCAMApp.py:11961 +#: FlatCAMApp.py:11995 msgid "All non selected plots disabled." msgstr "Todos os gráficos não selecionados desabilitados." -#: FlatCAMApp.py:11968 +#: FlatCAMApp.py:12002 msgid "All plots enabled." msgstr "Todos os gráficos habilitados." -#: FlatCAMApp.py:11975 +#: FlatCAMApp.py:12009 msgid "Selected plots enabled..." msgstr "Gráficos selecionados habilitados..." -#: FlatCAMApp.py:11984 +#: FlatCAMApp.py:12018 msgid "Selected plots disabled..." msgstr "Gráficos selecionados desabilitados..." -#: FlatCAMApp.py:12003 +#: FlatCAMApp.py:12037 msgid "Enabling plots ..." msgstr "Habilitando gráficos..." -#: FlatCAMApp.py:12043 +#: FlatCAMApp.py:12077 msgid "Disabling plots ..." msgstr "Desabilitando gráficos..." -#: FlatCAMApp.py:12065 +#: FlatCAMApp.py:12099 msgid "Working ..." msgstr "Trabalhando ..." -#: FlatCAMApp.py:12104 +#: FlatCAMApp.py:12138 msgid "Saving FlatCAM Project" msgstr "Salvando o Projeto FlatCAM" -#: FlatCAMApp.py:12124 FlatCAMApp.py:12162 +#: FlatCAMApp.py:12158 FlatCAMApp.py:12196 msgid "Project saved to" msgstr "Projeto salvo em" -#: FlatCAMApp.py:12144 +#: FlatCAMApp.py:12178 msgid "Failed to verify project file" msgstr "Falha ao verificar o arquivo do projeto" -#: FlatCAMApp.py:12144 FlatCAMApp.py:12153 FlatCAMApp.py:12165 +#: FlatCAMApp.py:12178 FlatCAMApp.py:12187 FlatCAMApp.py:12199 msgid "Retry to save it." msgstr "Tente salvá-lo novamente." -#: FlatCAMApp.py:12153 FlatCAMApp.py:12165 +#: FlatCAMApp.py:12187 FlatCAMApp.py:12199 msgid "Failed to parse saved project file" msgstr "Falha ao analisar o arquivo de projeto salvo" -#: FlatCAMApp.py:12281 +#: FlatCAMApp.py:12315 msgid "The user requested a graceful exit of the current task." msgstr "O usuário solicitou uma saída normal da tarefa atual." @@ -1740,7 +1740,7 @@ msgstr "Favorito removido." msgid "Export FlatCAM Bookmarks" msgstr "Exportar Favoritos do FlatCAM" -#: FlatCAMCommon.py:363 flatcamGUI/FlatCAMGUI.py:448 +#: FlatCAMCommon.py:363 flatcamGUI/FlatCAMGUI.py:472 msgid "Bookmarks" msgstr "Favoritos" @@ -1772,13 +1772,13 @@ msgstr "Importação de favoritos do FlatCAM cancelada." msgid "Imported Bookmarks from" msgstr "Favoritos importados de" -#: FlatCAMCommon.py:477 FlatCAMObj.py:3588 FlatCAMObj.py:4589 -#: FlatCAMObj.py:4590 FlatCAMObj.py:4599 +#: FlatCAMCommon.py:477 FlatCAMObj.py:3588 FlatCAMObj.py:4592 +#: FlatCAMObj.py:4593 FlatCAMObj.py:4602 msgid "Iso" msgstr "Isolação" #: FlatCAMCommon.py:477 FlatCAMCommon.py:1012 FlatCAMObj.py:1351 -#: FlatCAMObj.py:3588 FlatCAMObj.py:3861 FlatCAMObj.py:4149 +#: FlatCAMObj.py:3588 FlatCAMObj.py:3861 FlatCAMObj.py:4152 msgid "Rough" msgstr "Desbaste" @@ -1791,12 +1791,12 @@ msgid "Tool Name" msgstr "Nome da Ferramenta" #: FlatCAMCommon.py:514 flatcamEditors/FlatCAMExcEditor.py:1527 -#: flatcamGUI/ObjectUI.py:1256 flatcamTools/ToolNonCopperClear.py:271 +#: flatcamGUI/ObjectUI.py:1295 flatcamTools/ToolNonCopperClear.py:271 #: flatcamTools/ToolPaint.py:176 msgid "Tool Dia" msgstr "Diâmetro da Ferramenta" -#: FlatCAMCommon.py:515 flatcamGUI/ObjectUI.py:1239 +#: FlatCAMCommon.py:515 flatcamGUI/ObjectUI.py:1278 msgid "Tool Offset" msgstr "Deslocamento" @@ -1804,8 +1804,8 @@ msgstr "Deslocamento" msgid "Custom Offset" msgstr "Deslocamento Personalizado" -#: FlatCAMCommon.py:517 flatcamGUI/ObjectUI.py:293 -#: flatcamGUI/PreferencesUI.py:1626 flatcamGUI/PreferencesUI.py:3991 +#: FlatCAMCommon.py:517 flatcamGUI/ObjectUI.py:304 +#: flatcamGUI/PreferencesUI.py:1627 flatcamGUI/PreferencesUI.py:3992 #: flatcamTools/ToolNonCopperClear.py:213 msgid "Tool Type" msgstr "Tipo de Ferramenta" @@ -1814,11 +1814,11 @@ msgstr "Tipo de Ferramenta" msgid "Tool Shape" msgstr "Formato" -#: 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 +#: FlatCAMCommon.py:519 flatcamGUI/ObjectUI.py:345 flatcamGUI/ObjectUI.py:820 +#: flatcamGUI/ObjectUI.py:1405 flatcamGUI/ObjectUI.py:1928 +#: flatcamGUI/PreferencesUI.py:1667 flatcamGUI/PreferencesUI.py:2335 +#: flatcamGUI/PreferencesUI.py:3180 flatcamGUI/PreferencesUI.py:4037 +#: flatcamGUI/PreferencesUI.py:4291 flatcamGUI/PreferencesUI.py:5115 #: flatcamTools/ToolCalculators.py:114 flatcamTools/ToolCutOut.py:132 #: flatcamTools/ToolNonCopperClear.py:254 msgid "Cut Z" @@ -1840,9 +1840,9 @@ msgstr "Dia-V" msgid "V-Angle" msgstr "Angulo-V" -#: 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 +#: FlatCAMCommon.py:524 flatcamGUI/ObjectUI.py:839 flatcamGUI/ObjectUI.py:1452 +#: flatcamGUI/PreferencesUI.py:2353 flatcamGUI/PreferencesUI.py:3233 +#: flatcamGUI/PreferencesUI.py:6467 flatcamTools/ToolCalibration.py:74 msgid "Travel Z" msgstr "Altura do Deslocamento" @@ -1858,12 +1858,12 @@ msgstr "VA Z" msgid "FR Rapids" msgstr "VA Rápida" -#: FlatCAMCommon.py:528 flatcamGUI/PreferencesUI.py:2427 +#: FlatCAMCommon.py:528 flatcamGUI/PreferencesUI.py:2428 msgid "Spindle Speed" msgstr "Velocidade do Spindle" -#: FlatCAMCommon.py:529 flatcamGUI/ObjectUI.py:939 flatcamGUI/ObjectUI.py:1582 -#: flatcamGUI/PreferencesUI.py:2439 flatcamGUI/PreferencesUI.py:3353 +#: FlatCAMCommon.py:529 flatcamGUI/ObjectUI.py:963 flatcamGUI/ObjectUI.py:1621 +#: flatcamGUI/PreferencesUI.py:2440 flatcamGUI/PreferencesUI.py:3354 msgid "Dwell" msgstr "Esperar Velocidade" @@ -1871,8 +1871,8 @@ msgstr "Esperar Velocidade" msgid "Dwelltime" msgstr "Tempo de Espera" -#: FlatCAMCommon.py:531 flatcamGUI/ObjectUI.py:958 -#: flatcamGUI/PreferencesUI.py:2461 flatcamGUI/PreferencesUI.py:3375 +#: FlatCAMCommon.py:531 flatcamGUI/ObjectUI.py:982 +#: flatcamGUI/PreferencesUI.py:2462 flatcamGUI/PreferencesUI.py:3376 msgid "Preprocessor" msgstr "Pré-processador" @@ -1892,8 +1892,8 @@ msgstr "Troca de Ferramentas" msgid "Toolchange XY" msgstr "Troca de ferramenta XY" -#: FlatCAMCommon.py:536 flatcamGUI/PreferencesUI.py:2378 -#: flatcamGUI/PreferencesUI.py:3264 flatcamGUI/PreferencesUI.py:6503 +#: FlatCAMCommon.py:536 flatcamGUI/PreferencesUI.py:2379 +#: flatcamGUI/PreferencesUI.py:3265 flatcamGUI/PreferencesUI.py:6504 #: flatcamTools/ToolCalibration.py:111 msgid "Toolchange Z" msgstr "Altura da Troca" @@ -2332,13 +2332,13 @@ msgstr "Dimensionando..." msgid "Skewing..." msgstr "Inclinando..." -#: FlatCAMObj.py:723 FlatCAMObj.py:2710 FlatCAMObj.py:3904 -#: flatcamGUI/PreferencesUI.py:1123 flatcamGUI/PreferencesUI.py:2257 +#: FlatCAMObj.py:723 FlatCAMObj.py:2710 FlatCAMObj.py:3907 +#: flatcamGUI/PreferencesUI.py:1124 flatcamGUI/PreferencesUI.py:2258 msgid "Basic" msgstr "Básico" -#: FlatCAMObj.py:745 FlatCAMObj.py:2722 FlatCAMObj.py:3925 -#: flatcamGUI/PreferencesUI.py:1124 +#: FlatCAMObj.py:745 FlatCAMObj.py:2722 FlatCAMObj.py:3928 +#: flatcamGUI/PreferencesUI.py:1125 msgid "Advanced" msgstr "Avançado" @@ -2346,16 +2346,16 @@ msgstr "Avançado" msgid "Buffering solid geometry" msgstr "Buffer de geometria sólida" -#: FlatCAMObj.py:965 camlib.py:965 flatcamGUI/PreferencesUI.py:1700 +#: FlatCAMObj.py:965 camlib.py:965 flatcamGUI/PreferencesUI.py:1701 #: flatcamTools/ToolCopperThieving.py:1010 #: flatcamTools/ToolCopperThieving.py:1199 #: flatcamTools/ToolCopperThieving.py:1211 -#: flatcamTools/ToolNonCopperClear.py:1628 -#: flatcamTools/ToolNonCopperClear.py:1726 -#: flatcamTools/ToolNonCopperClear.py:1738 -#: flatcamTools/ToolNonCopperClear.py:1987 -#: flatcamTools/ToolNonCopperClear.py:2083 -#: flatcamTools/ToolNonCopperClear.py:2095 +#: flatcamTools/ToolNonCopperClear.py:1629 +#: flatcamTools/ToolNonCopperClear.py:1727 +#: flatcamTools/ToolNonCopperClear.py:1739 +#: flatcamTools/ToolNonCopperClear.py:1988 +#: flatcamTools/ToolNonCopperClear.py:2084 +#: flatcamTools/ToolNonCopperClear.py:2096 msgid "Buffering" msgstr "Criando buffer" @@ -2371,7 +2371,7 @@ msgstr "Isolando..." msgid "Click on a polygon to isolate it." msgstr "Clique em um polígono para isolá-lo." -#: FlatCAMObj.py:1117 FlatCAMObj.py:1222 flatcamTools/ToolPaint.py:1125 +#: FlatCAMObj.py:1117 FlatCAMObj.py:1222 flatcamTools/ToolPaint.py:1126 msgid "Added polygon" msgstr "Polígono adicionado" @@ -2381,7 +2381,7 @@ msgstr "" "Clique para adicionar o próximo polígono ou clique com o botão direito do " "mouse para iniciar a isolação." -#: FlatCAMObj.py:1131 flatcamTools/ToolPaint.py:1139 +#: FlatCAMObj.py:1131 flatcamTools/ToolPaint.py:1140 msgid "Removed polygon" msgstr "Polígono removido" @@ -2391,11 +2391,11 @@ msgstr "" "Clique para adicionar/remover o próximo polígono ou clique com o botão " "direito do mouse para iniciar a isolação." -#: FlatCAMObj.py:1137 flatcamTools/ToolPaint.py:1145 +#: FlatCAMObj.py:1137 flatcamTools/ToolPaint.py:1146 msgid "No polygon detected under click position." msgstr "Nenhum polígono detectado na posição do clique." -#: FlatCAMObj.py:1158 flatcamTools/ToolPaint.py:1174 +#: FlatCAMObj.py:1158 flatcamTools/ToolPaint.py:1175 msgid "List of single polygons is empty. Aborting." msgstr "A lista de polígonos únicos está vazia. Abortando." @@ -2404,8 +2404,8 @@ msgid "No polygon in selection." msgstr "Nenhum polígono na seleção." #: FlatCAMObj.py:1301 FlatCAMObj.py:1430 -#: flatcamTools/ToolNonCopperClear.py:1657 -#: flatcamTools/ToolNonCopperClear.py:2011 +#: flatcamTools/ToolNonCopperClear.py:1658 +#: flatcamTools/ToolNonCopperClear.py:2012 msgid "Isolation geometry could not be generated." msgstr "A geometria de isolação não pôde ser gerada." @@ -2437,9 +2437,9 @@ msgstr "Selecione uma ou mais ferramentas da lista e tente novamente." msgid "Milling tool for DRILLS is larger than hole size. Cancelled." msgstr "A ferramenta BROCA é maior que o tamanho do furo. Cancelado." -#: FlatCAMObj.py:3032 FlatCAMObj.py:4490 flatcamEditors/FlatCAMGeoEditor.py:408 -#: flatcamGUI/FlatCAMGUI.py:438 flatcamGUI/FlatCAMGUI.py:930 -#: flatcamGUI/ObjectUI.py:1314 +#: FlatCAMObj.py:3032 FlatCAMObj.py:4493 flatcamEditors/FlatCAMGeoEditor.py:408 +#: flatcamGUI/FlatCAMGUI.py:459 flatcamGUI/FlatCAMGUI.py:1046 +#: flatcamGUI/ObjectUI.py:1353 msgid "Tool" msgstr "Ferramenta" @@ -2449,7 +2449,7 @@ msgstr "Ferramenta_nr" #: FlatCAMObj.py:3048 FlatCAMObj.py:3141 FlatCAMObj.py:3259 #: flatcamEditors/FlatCAMExcEditor.py:1507 -#: flatcamEditors/FlatCAMExcEditor.py:2967 flatcamGUI/ObjectUI.py:753 +#: flatcamEditors/FlatCAMExcEditor.py:2967 flatcamGUI/ObjectUI.py:777 #: flatcamTools/ToolNonCopperClear.py:120 flatcamTools/ToolPaint.py:123 #: flatcamTools/ToolPcbWizard.py:76 flatcamTools/ToolProperties.py:396 #: flatcamTools/ToolProperties.py:449 flatcamTools/ToolSolderPaste.py:84 @@ -2485,7 +2485,7 @@ msgstr "" "Valor com formato incorreto para self.defaults[\"feedrate_probe\"] ou self." "options[\"feedrate_probe\"]" -#: FlatCAMObj.py:3341 FlatCAMObj.py:5311 FlatCAMObj.py:5315 FlatCAMObj.py:5450 +#: FlatCAMObj.py:3341 FlatCAMObj.py:5314 FlatCAMObj.py:5318 FlatCAMObj.py:5453 msgid "Generating CNC Code" msgstr "Gerando Código CNC" @@ -2493,17 +2493,17 @@ msgstr "Gerando Código CNC" msgid "Add from Tool DB" msgstr "Adicionar Ferramenta do BD" -#: 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 +#: FlatCAMObj.py:3899 flatcamGUI/FlatCAMGUI.py:652 flatcamGUI/FlatCAMGUI.py:768 +#: flatcamGUI/FlatCAMGUI.py:963 flatcamGUI/FlatCAMGUI.py:1984 +#: flatcamGUI/FlatCAMGUI.py:2128 flatcamGUI/FlatCAMGUI.py:2343 +#: flatcamGUI/FlatCAMGUI.py:2522 flatcamGUI/ObjectUI.py:1324 #: flatcamTools/ToolPanelize.py:534 flatcamTools/ToolPanelize.py:561 #: flatcamTools/ToolPanelize.py:660 flatcamTools/ToolPanelize.py:694 #: flatcamTools/ToolPanelize.py:759 msgid "Copy" msgstr "Copiar" -#: FlatCAMObj.py:3985 FlatCAMObj.py:4354 FlatCAMObj.py:5061 FlatCAMObj.py:5701 +#: FlatCAMObj.py:3988 FlatCAMObj.py:4357 FlatCAMObj.py:5064 FlatCAMObj.py:5704 #: flatcamEditors/FlatCAMExcEditor.py:2459 #: flatcamEditors/FlatCAMGeoEditor.py:1078 #: flatcamEditors/FlatCAMGeoEditor.py:1112 @@ -2512,63 +2512,63 @@ msgstr "Copiar" #: 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 +#: flatcamTools/ToolNonCopperClear.py:1058 +#: flatcamTools/ToolNonCopperClear.py:1466 flatcamTools/ToolPaint.py:841 +#: flatcamTools/ToolPaint.py:1025 flatcamTools/ToolPaint.py:2097 +#: flatcamTools/ToolSolderPaste.py:882 flatcamTools/ToolSolderPaste.py:957 msgid "Wrong value format entered, use a number." msgstr "Formato incorreto, use um número." -#: FlatCAMObj.py:4123 +#: FlatCAMObj.py:4126 msgid "Please enter the desired tool diameter in Float format." msgstr "" "Por favor, insira o diâmetro da ferramenta desejada no formato Flutuante." -#: FlatCAMObj.py:4193 +#: FlatCAMObj.py:4196 msgid "Tool added in Tool Table." msgstr "Ferramenta adicionada na Tabela de Ferramentas." -#: FlatCAMObj.py:4197 +#: FlatCAMObj.py:4200 msgid "Default Tool added. Wrong value format entered." msgstr "Ferramenta padrão adicionada. Valor inserico com formato incorreto." -#: FlatCAMObj.py:4304 FlatCAMObj.py:4313 +#: FlatCAMObj.py:4307 FlatCAMObj.py:4316 msgid "Failed. Select a tool to copy." msgstr "Falhou. Selecione uma ferramenta para copiar." -#: FlatCAMObj.py:4340 +#: FlatCAMObj.py:4343 msgid "Tool was copied in Tool Table." msgstr "A ferramenta foi copiada na tabela de ferramentas." -#: FlatCAMObj.py:4368 +#: FlatCAMObj.py:4371 msgid "Tool was edited in Tool Table." msgstr "A ferramenta foi editada na Tabela de Ferramentas." -#: FlatCAMObj.py:4397 FlatCAMObj.py:4406 +#: FlatCAMObj.py:4400 FlatCAMObj.py:4409 msgid "Failed. Select a tool to delete." msgstr "Falhou. Selecione uma ferramenta para excluir." -#: FlatCAMObj.py:4429 +#: FlatCAMObj.py:4432 msgid "Tool was deleted in Tool Table." msgstr "A ferramenta foi eliminada da Tabela de Ferramentas." -#: FlatCAMObj.py:4490 flatcamGUI/ObjectUI.py:1314 +#: FlatCAMObj.py:4493 flatcamGUI/ObjectUI.py:1353 msgid "Parameters for" msgstr "Parâmetros para" -#: FlatCAMObj.py:4921 +#: FlatCAMObj.py:4924 msgid "This Geometry can't be processed because it is" msgstr "Esta Geometria não pode ser processada porque é" -#: FlatCAMObj.py:4923 +#: FlatCAMObj.py:4926 msgid "geometry" msgstr "geometria" -#: FlatCAMObj.py:4966 +#: FlatCAMObj.py:4969 msgid "Failed. No tool selected in the tool table ..." msgstr "Falhou. Nenhuma ferramenta selecionada na tabela de ferramentas ..." -#: FlatCAMObj.py:5066 FlatCAMObj.py:5219 +#: FlatCAMObj.py:5069 FlatCAMObj.py:5222 msgid "" "Tool Offset is selected in Tool Table but no value is provided.\n" "Add a Tool Offset or change the Offset Type." @@ -2577,44 +2577,44 @@ msgstr "" "valor foi fornecido.\n" "Adicione um Deslocamento de Ferramenta ou altere o Tipo de Deslocamento." -#: FlatCAMObj.py:5131 FlatCAMObj.py:5280 +#: FlatCAMObj.py:5134 FlatCAMObj.py:5283 msgid "G-Code parsing in progress..." msgstr "Análisando o G-Code..." -#: FlatCAMObj.py:5133 FlatCAMObj.py:5282 +#: FlatCAMObj.py:5136 FlatCAMObj.py:5285 msgid "G-Code parsing finished..." msgstr "Análise do G-Code finalisada..." -#: FlatCAMObj.py:5141 +#: FlatCAMObj.py:5144 msgid "Finished G-Code processing" msgstr "Processamento do G-Code concluído" -#: FlatCAMObj.py:5143 FlatCAMObj.py:5294 +#: FlatCAMObj.py:5146 FlatCAMObj.py:5297 msgid "G-Code processing failed with error" msgstr "Processamento do G-Code falhou com erro" -#: FlatCAMObj.py:5189 flatcamTools/ToolSolderPaste.py:1300 +#: FlatCAMObj.py:5192 flatcamTools/ToolSolderPaste.py:1303 msgid "Cancelled. Empty file, it has no geometry" msgstr "Cancelado. Arquivo vazio, não tem geometria" -#: FlatCAMObj.py:5292 FlatCAMObj.py:5443 +#: FlatCAMObj.py:5295 FlatCAMObj.py:5446 msgid "Finished G-Code processing..." msgstr "Processamento do G-Code finalisado..." -#: FlatCAMObj.py:5313 FlatCAMObj.py:5317 FlatCAMObj.py:5453 +#: FlatCAMObj.py:5316 FlatCAMObj.py:5320 FlatCAMObj.py:5456 msgid "CNCjob created" msgstr "Trabalho CNC criado" -#: FlatCAMObj.py:5484 FlatCAMObj.py:5493 flatcamParsers/ParseGerber.py:1750 +#: FlatCAMObj.py:5487 FlatCAMObj.py:5496 flatcamParsers/ParseGerber.py:1750 #: flatcamParsers/ParseGerber.py:1760 msgid "Scale factor has to be a number: integer or float." msgstr "O fator de escala deve ser um número: inteiro ou flutuante." -#: FlatCAMObj.py:5557 +#: FlatCAMObj.py:5560 msgid "Geometry Scale done." msgstr "Redimensionamento de geometria feita." -#: FlatCAMObj.py:5574 flatcamParsers/ParseGerber.py:1876 +#: FlatCAMObj.py:5577 flatcamParsers/ParseGerber.py:1876 msgid "" "An (x,y) pair of values are needed. Probable you entered only one value in " "the Offset field." @@ -2622,11 +2622,11 @@ msgstr "" "Um par (x,y) de valores é necessário. Provavelmente você digitou apenas um " "valor no campo Deslocamento." -#: FlatCAMObj.py:5631 +#: FlatCAMObj.py:5634 msgid "Geometry Offset done." msgstr "Deslocamento de Geometria concluído." -#: FlatCAMObj.py:5660 +#: FlatCAMObj.py:5663 msgid "" "The Toolchange X,Y field in Edit -> Preferences has to be in the format (x, " "y)\n" @@ -2636,82 +2636,82 @@ msgstr "" "formato (x, y).\n" "Agora está com apenas um valor, não dois." -#: FlatCAMObj.py:6335 FlatCAMObj.py:6993 FlatCAMObj.py:7189 +#: FlatCAMObj.py:6338 FlatCAMObj.py:6996 FlatCAMObj.py:7192 msgid "Basic" msgstr "Básico" -#: FlatCAMObj.py:6341 FlatCAMObj.py:6997 FlatCAMObj.py:7193 +#: FlatCAMObj.py:6344 FlatCAMObj.py:7000 FlatCAMObj.py:7196 msgid "Advanced" msgstr "Avançado" -#: FlatCAMObj.py:6384 +#: FlatCAMObj.py:6387 msgid "Plotting..." msgstr "Plotando..." -#: FlatCAMObj.py:6407 FlatCAMObj.py:6412 flatcamTools/ToolSolderPaste.py:1506 +#: FlatCAMObj.py:6410 FlatCAMObj.py:6415 flatcamTools/ToolSolderPaste.py:1509 msgid "Export Machine Code ..." msgstr "Exportar Código da Máquina ..." -#: FlatCAMObj.py:6417 flatcamTools/ToolSolderPaste.py:1510 +#: FlatCAMObj.py:6420 flatcamTools/ToolSolderPaste.py:1513 msgid "Export Machine Code cancelled ..." msgstr "Exportar código da máquina cancelado ..." -#: FlatCAMObj.py:6439 +#: FlatCAMObj.py:6442 msgid "Machine Code file saved to" msgstr "Arquivo G-Code salvo em" -#: FlatCAMObj.py:6493 flatcamTools/ToolCalibration.py:1083 +#: FlatCAMObj.py:6496 flatcamTools/ToolCalibration.py:1083 msgid "Loaded Machine Code into Code Editor" msgstr "G-Code aberto no Editor de Códigos" -#: FlatCAMObj.py:6628 +#: FlatCAMObj.py:6631 msgid "This CNCJob object can't be processed because it is a" msgstr "Este objeto Trabalho CNC não pode ser processado porque é um" -#: FlatCAMObj.py:6630 +#: FlatCAMObj.py:6633 msgid "CNCJob object" msgstr "Objeto de Trabalho CNC" -#: FlatCAMObj.py:6681 +#: FlatCAMObj.py:6684 msgid "G-code does not have a units code: either G20 or G21" msgstr "O G-Code não possui um código de unidade: G20 ou G21" -#: FlatCAMObj.py:6695 +#: FlatCAMObj.py:6698 msgid "Cancelled. The Toolchange Custom code is enabled but it's empty." msgstr "" "Cancelado. O código personalizado para Troca de Ferramentas está ativado, " "mas está vazio." -#: FlatCAMObj.py:6700 +#: FlatCAMObj.py:6703 msgid "Toolchange G-code was replaced by a custom code." msgstr "" "O G-Code para Troca de Ferramentas foi substituído por um código " "personalizado." -#: FlatCAMObj.py:6717 flatcamEditors/FlatCAMTextEditor.py:224 -#: flatcamTools/ToolSolderPaste.py:1537 +#: FlatCAMObj.py:6720 flatcamEditors/FlatCAMTextEditor.py:224 +#: flatcamTools/ToolSolderPaste.py:1540 msgid "No such file or directory" msgstr "Nenhum arquivo ou diretório" -#: FlatCAMObj.py:6731 flatcamEditors/FlatCAMTextEditor.py:236 +#: FlatCAMObj.py:6734 flatcamEditors/FlatCAMTextEditor.py:236 msgid "Saved to" msgstr "Salvo em" -#: FlatCAMObj.py:6741 FlatCAMObj.py:6751 +#: FlatCAMObj.py:6744 FlatCAMObj.py:6754 msgid "" "The used preprocessor file has to have in it's name: 'toolchange_custom'" msgstr "" "O arquivo de pós-processamento deve ter em seu nome: 'toolchange_custom'" -#: FlatCAMObj.py:6755 +#: FlatCAMObj.py:6758 msgid "There is no preprocessor file." msgstr "Não há arquivo de pós-processamento." -#: FlatCAMObj.py:7012 +#: FlatCAMObj.py:7015 msgid "Script Editor" msgstr "Editor de Script" -#: FlatCAMObj.py:7293 +#: FlatCAMObj.py:7296 msgid "Document Editor" msgstr "Editor de Documento" @@ -2719,24 +2719,24 @@ msgstr "Editor de Documento" msgid "processes running." msgstr "processos executando." -#: FlatCAMTranslation.py:92 +#: FlatCAMTranslation.py:103 msgid "The application will restart." msgstr "O aplicativo reiniciará." -#: FlatCAMTranslation.py:94 +#: FlatCAMTranslation.py:105 msgid "Are you sure do you want to change the current language to" msgstr "Você tem certeza de que quer alterar o idioma para" -#: FlatCAMTranslation.py:95 +#: FlatCAMTranslation.py:106 msgid "Apply Language ..." msgstr "Aplicar o Idioma ..." -#: ObjectCollection.py:453 +#: ObjectCollection.py:454 #, python-brace-format msgid "Object renamed from {old} to {new}" msgstr "Objeto renomeado de {old} para {new}" -#: ObjectCollection.py:852 +#: ObjectCollection.py:853 msgid "Cause of error" msgstr "Motivo do erro" @@ -3065,8 +3065,8 @@ msgstr "" "redimensionar." #: flatcamEditors/FlatCAMExcEditor.py:983 -#: flatcamEditors/FlatCAMExcEditor.py:1052 flatcamGUI/FlatCAMGUI.py:2892 -#: flatcamGUI/FlatCAMGUI.py:3105 flatcamGUI/FlatCAMGUI.py:3322 +#: flatcamEditors/FlatCAMExcEditor.py:1052 flatcamGUI/FlatCAMGUI.py:3127 +#: flatcamGUI/FlatCAMGUI.py:3340 flatcamGUI/FlatCAMGUI.py:3557 msgid "Cancelled." msgstr "Cancelado." @@ -3091,7 +3091,7 @@ msgstr "Movimento do Furo realizado." msgid "Done. Drill(s) copied." msgstr "Furo(s) copiado(s)." -#: flatcamEditors/FlatCAMExcEditor.py:1480 flatcamGUI/PreferencesUI.py:2820 +#: flatcamEditors/FlatCAMExcEditor.py:1480 flatcamGUI/PreferencesUI.py:2821 msgid "Excellon Editor" msgstr "Editor Excellon" @@ -3100,13 +3100,13 @@ msgstr "Editor Excellon" msgid "Name:" msgstr "Nome:" -#: flatcamEditors/FlatCAMExcEditor.py:1493 flatcamGUI/ObjectUI.py:733 -#: flatcamGUI/ObjectUI.py:1145 flatcamTools/ToolNonCopperClear.py:109 +#: flatcamEditors/FlatCAMExcEditor.py:1493 flatcamGUI/ObjectUI.py:757 +#: flatcamGUI/ObjectUI.py:1184 flatcamTools/ToolNonCopperClear.py:109 #: flatcamTools/ToolPaint.py:112 flatcamTools/ToolSolderPaste.py:73 msgid "Tools Table" msgstr "Tabela de Ferramentas" -#: flatcamEditors/FlatCAMExcEditor.py:1495 flatcamGUI/ObjectUI.py:735 +#: flatcamEditors/FlatCAMExcEditor.py:1495 flatcamGUI/ObjectUI.py:759 msgid "" "Tools in this Excellon object\n" "when are used for drilling." @@ -3126,8 +3126,8 @@ msgstr "" "Adicionar/Excluir uma ferramenta para a lista de ferramentas\n" "para este objeto Excellon." -#: flatcamEditors/FlatCAMExcEditor.py:1529 flatcamGUI/ObjectUI.py:1258 -#: flatcamGUI/PreferencesUI.py:2851 +#: flatcamEditors/FlatCAMExcEditor.py:1529 flatcamGUI/ObjectUI.py:1297 +#: flatcamGUI/PreferencesUI.py:2852 msgid "Diameter for the new tool" msgstr "Diâmetro da nova ferramenta" @@ -3155,7 +3155,7 @@ msgstr "" "Exclui uma ferramenta da lista de ferramentas selecionando uma linha na " "tabela de ferramentas." -#: flatcamEditors/FlatCAMExcEditor.py:1573 flatcamGUI/FlatCAMGUI.py:1749 +#: flatcamEditors/FlatCAMExcEditor.py:1573 flatcamGUI/FlatCAMGUI.py:1865 msgid "Resize Drill(s)" msgstr "Redimensionar Furo(s)" @@ -3179,8 +3179,8 @@ msgstr "Redimensionar" msgid "Resize drill(s)" msgstr "Redimensionar furo(s)" -#: flatcamEditors/FlatCAMExcEditor.py:1622 flatcamGUI/FlatCAMGUI.py:1748 -#: flatcamGUI/FlatCAMGUI.py:1958 +#: flatcamEditors/FlatCAMExcEditor.py:1622 flatcamGUI/FlatCAMGUI.py:1864 +#: flatcamGUI/FlatCAMGUI.py:2116 msgid "Add Drill Array" msgstr "Adicionar Matriz de Furos" @@ -3204,17 +3204,17 @@ msgstr "Linear" #: flatcamEditors/FlatCAMExcEditor.py:1634 #: flatcamEditors/FlatCAMExcEditor.py:1848 -#: flatcamEditors/FlatCAMGrbEditor.py:2696 flatcamGUI/ObjectUI.py:300 -#: flatcamGUI/PreferencesUI.py:3999 flatcamGUI/PreferencesUI.py:6396 +#: flatcamEditors/FlatCAMGrbEditor.py:2696 flatcamGUI/ObjectUI.py:311 +#: flatcamGUI/PreferencesUI.py:4000 flatcamGUI/PreferencesUI.py:6397 #: flatcamTools/ToolFiducials.py:220 flatcamTools/ToolNonCopperClear.py:221 msgid "Circular" msgstr "Circular" -#: flatcamEditors/FlatCAMExcEditor.py:1642 flatcamGUI/PreferencesUI.py:2862 +#: flatcamEditors/FlatCAMExcEditor.py:1642 flatcamGUI/PreferencesUI.py:2863 msgid "Nr of drills" msgstr "Nº de furos" -#: flatcamEditors/FlatCAMExcEditor.py:1643 flatcamGUI/PreferencesUI.py:2864 +#: flatcamEditors/FlatCAMExcEditor.py:1643 flatcamGUI/PreferencesUI.py:2865 msgid "Specify how many drills to be in the array." msgstr "Especifique quantos furos devem estar na matriz." @@ -3225,14 +3225,14 @@ msgstr "Especifique quantos furos devem estar na matriz." #: flatcamEditors/FlatCAMExcEditor.py:1927 #: flatcamEditors/FlatCAMGrbEditor.py:1524 #: flatcamEditors/FlatCAMGrbEditor.py:2724 -#: flatcamEditors/FlatCAMGrbEditor.py:2773 flatcamGUI/PreferencesUI.py:2972 +#: flatcamEditors/FlatCAMGrbEditor.py:2773 flatcamGUI/PreferencesUI.py:2973 msgid "Direction" msgstr "Direção" #: flatcamEditors/FlatCAMExcEditor.py:1663 #: flatcamEditors/FlatCAMExcEditor.py:1878 -#: flatcamEditors/FlatCAMGrbEditor.py:2726 flatcamGUI/PreferencesUI.py:1940 -#: flatcamGUI/PreferencesUI.py:2880 flatcamGUI/PreferencesUI.py:3028 +#: flatcamEditors/FlatCAMGrbEditor.py:2726 flatcamGUI/PreferencesUI.py:1941 +#: flatcamGUI/PreferencesUI.py:2881 flatcamGUI/PreferencesUI.py:3029 msgid "" "Direction on which the linear array is oriented:\n" "- 'X' - horizontal axis \n" @@ -3247,9 +3247,9 @@ msgstr "" #: flatcamEditors/FlatCAMExcEditor.py:1670 #: flatcamEditors/FlatCAMExcEditor.py:1792 #: flatcamEditors/FlatCAMExcEditor.py:1885 -#: flatcamEditors/FlatCAMGrbEditor.py:2733 flatcamGUI/PreferencesUI.py:1946 -#: flatcamGUI/PreferencesUI.py:2886 flatcamGUI/PreferencesUI.py:2981 -#: flatcamGUI/PreferencesUI.py:3034 flatcamGUI/PreferencesUI.py:4822 +#: flatcamEditors/FlatCAMGrbEditor.py:2733 flatcamGUI/PreferencesUI.py:1947 +#: flatcamGUI/PreferencesUI.py:2887 flatcamGUI/PreferencesUI.py:2982 +#: flatcamGUI/PreferencesUI.py:3035 flatcamGUI/PreferencesUI.py:4823 #: flatcamTools/ToolFilm.py:256 msgid "X" msgstr "X" @@ -3257,9 +3257,9 @@ msgstr "X" #: flatcamEditors/FlatCAMExcEditor.py:1671 #: flatcamEditors/FlatCAMExcEditor.py:1793 #: flatcamEditors/FlatCAMExcEditor.py:1886 -#: flatcamEditors/FlatCAMGrbEditor.py:2734 flatcamGUI/PreferencesUI.py:1947 -#: flatcamGUI/PreferencesUI.py:2887 flatcamGUI/PreferencesUI.py:2982 -#: flatcamGUI/PreferencesUI.py:3035 flatcamGUI/PreferencesUI.py:4823 +#: flatcamEditors/FlatCAMGrbEditor.py:2734 flatcamGUI/PreferencesUI.py:1948 +#: flatcamGUI/PreferencesUI.py:2888 flatcamGUI/PreferencesUI.py:2983 +#: flatcamGUI/PreferencesUI.py:3036 flatcamGUI/PreferencesUI.py:4824 #: flatcamTools/ToolFilm.py:257 msgid "Y" msgstr "Y" @@ -3274,11 +3274,11 @@ msgstr "Y" #: flatcamEditors/FlatCAMExcEditor.py:1939 #: flatcamEditors/FlatCAMGrbEditor.py:2735 #: flatcamEditors/FlatCAMGrbEditor.py:2752 -#: flatcamEditors/FlatCAMGrbEditor.py:2788 flatcamGUI/PreferencesUI.py:1948 -#: 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 +#: flatcamEditors/FlatCAMGrbEditor.py:2788 flatcamGUI/PreferencesUI.py:1949 +#: flatcamGUI/PreferencesUI.py:1967 flatcamGUI/PreferencesUI.py:2889 +#: flatcamGUI/PreferencesUI.py:2908 flatcamGUI/PreferencesUI.py:2984 +#: flatcamGUI/PreferencesUI.py:2989 flatcamGUI/PreferencesUI.py:3037 +#: flatcamGUI/PreferencesUI.py:3058 flatcamGUI/PreferencesUI.py:5216 #: flatcamTools/ToolDistance.py:66 flatcamTools/ToolDistanceMin.py:68 #: flatcamTools/ToolTransform.py:62 msgid "Angle" @@ -3286,15 +3286,15 @@ msgstr "Ângulo" #: flatcamEditors/FlatCAMExcEditor.py:1676 #: flatcamEditors/FlatCAMExcEditor.py:1891 -#: flatcamEditors/FlatCAMGrbEditor.py:2739 flatcamGUI/PreferencesUI.py:1954 -#: flatcamGUI/PreferencesUI.py:2894 flatcamGUI/PreferencesUI.py:3042 +#: flatcamEditors/FlatCAMGrbEditor.py:2739 flatcamGUI/PreferencesUI.py:1955 +#: flatcamGUI/PreferencesUI.py:2895 flatcamGUI/PreferencesUI.py:3043 msgid "Pitch" msgstr "Passo" #: flatcamEditors/FlatCAMExcEditor.py:1678 #: flatcamEditors/FlatCAMExcEditor.py:1893 -#: flatcamEditors/FlatCAMGrbEditor.py:2741 flatcamGUI/PreferencesUI.py:1956 -#: flatcamGUI/PreferencesUI.py:2896 flatcamGUI/PreferencesUI.py:3044 +#: flatcamEditors/FlatCAMGrbEditor.py:2741 flatcamGUI/PreferencesUI.py:1957 +#: flatcamGUI/PreferencesUI.py:2897 flatcamGUI/PreferencesUI.py:3045 msgid "Pitch = Distance between elements of the array." msgstr "Passo = Distância entre os elementos da matriz." @@ -3322,26 +3322,26 @@ msgstr "" #: flatcamEditors/FlatCAMExcEditor.py:1719 #: flatcamEditors/FlatCAMExcEditor.py:1935 -#: flatcamEditors/FlatCAMGrbEditor.py:2783 flatcamGUI/PreferencesUI.py:1988 -#: flatcamGUI/PreferencesUI.py:2634 flatcamGUI/PreferencesUI.py:2930 -#: flatcamGUI/PreferencesUI.py:3080 flatcamGUI/PreferencesUI.py:3508 +#: flatcamEditors/FlatCAMGrbEditor.py:2783 flatcamGUI/PreferencesUI.py:1989 +#: flatcamGUI/PreferencesUI.py:2635 flatcamGUI/PreferencesUI.py:2931 +#: flatcamGUI/PreferencesUI.py:3081 flatcamGUI/PreferencesUI.py:3509 msgid "CW" msgstr "CW" #: flatcamEditors/FlatCAMExcEditor.py:1720 #: flatcamEditors/FlatCAMExcEditor.py:1936 -#: flatcamEditors/FlatCAMGrbEditor.py:2784 flatcamGUI/PreferencesUI.py:1989 -#: flatcamGUI/PreferencesUI.py:2635 flatcamGUI/PreferencesUI.py:2931 -#: flatcamGUI/PreferencesUI.py:3081 flatcamGUI/PreferencesUI.py:3509 +#: flatcamEditors/FlatCAMGrbEditor.py:2784 flatcamGUI/PreferencesUI.py:1990 +#: flatcamGUI/PreferencesUI.py:2636 flatcamGUI/PreferencesUI.py:2932 +#: flatcamGUI/PreferencesUI.py:3082 flatcamGUI/PreferencesUI.py:3510 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:2909 -#: flatcamGUI/PreferencesUI.py:2939 flatcamGUI/PreferencesUI.py:3059 -#: flatcamGUI/PreferencesUI.py:3089 +#: flatcamEditors/FlatCAMGrbEditor.py:2790 flatcamGUI/PreferencesUI.py:1969 +#: flatcamGUI/PreferencesUI.py:1998 flatcamGUI/PreferencesUI.py:2910 +#: flatcamGUI/PreferencesUI.py:2940 flatcamGUI/PreferencesUI.py:3060 +#: flatcamGUI/PreferencesUI.py:3090 msgid "Angle at which each element in circular array is placed." msgstr "Ângulo no qual cada elemento na matriz circular é colocado." @@ -3357,16 +3357,16 @@ msgstr "" "Parâmetros para adicionar uma ranhura (furo com forma oval),\n" "tanto única quanto parte de uma matriz." -#: flatcamEditors/FlatCAMExcEditor.py:1769 flatcamGUI/PreferencesUI.py:2956 +#: flatcamEditors/FlatCAMExcEditor.py:1769 flatcamGUI/PreferencesUI.py:2957 #: flatcamTools/ToolProperties.py:555 msgid "Length" msgstr "Comprimento" -#: flatcamEditors/FlatCAMExcEditor.py:1771 flatcamGUI/PreferencesUI.py:2958 +#: flatcamEditors/FlatCAMExcEditor.py:1771 flatcamGUI/PreferencesUI.py:2959 msgid "Length = The length of the slot." msgstr "Comprimento = o comprimento da ranhura." -#: flatcamEditors/FlatCAMExcEditor.py:1785 flatcamGUI/PreferencesUI.py:2974 +#: flatcamEditors/FlatCAMExcEditor.py:1785 flatcamGUI/PreferencesUI.py:2975 msgid "" "Direction on which the slot is oriented:\n" "- 'X' - horizontal axis \n" @@ -3406,11 +3406,11 @@ msgstr "" "Selecione o tipo de matriz de ranhuras para criar.\n" "Pode ser Linear X(Y) ou Circular" -#: flatcamEditors/FlatCAMExcEditor.py:1856 flatcamGUI/PreferencesUI.py:3013 +#: flatcamEditors/FlatCAMExcEditor.py:1856 flatcamGUI/PreferencesUI.py:3014 msgid "Nr of slots" msgstr "Nº de ranhuras" -#: flatcamEditors/FlatCAMExcEditor.py:1857 flatcamGUI/PreferencesUI.py:3015 +#: flatcamEditors/FlatCAMExcEditor.py:1857 flatcamGUI/PreferencesUI.py:3016 msgid "Specify how many slots to be in the array." msgstr "Especifique o número de ranhuras da matriz." @@ -3422,7 +3422,7 @@ msgstr "" "Ferramenta já na lista de ferramentas original ou atual.\n" "Salve e reedite Excellon se precisar adicionar essa ferramenta. " -#: flatcamEditors/FlatCAMExcEditor.py:2480 flatcamGUI/FlatCAMGUI.py:3491 +#: flatcamEditors/FlatCAMExcEditor.py:2480 flatcamGUI/FlatCAMGUI.py:3726 msgid "Added new tool with dia" msgstr "Adicionada nova ferramenta com diâmetro" @@ -3497,7 +3497,7 @@ msgid "Round" msgstr "Redondo" #: flatcamEditors/FlatCAMGeoEditor.py:96 -#: flatcamEditors/FlatCAMGrbEditor.py:2552 flatcamGUI/PreferencesUI.py:5989 +#: flatcamEditors/FlatCAMGrbEditor.py:2552 flatcamGUI/PreferencesUI.py:5990 #: flatcamTools/ToolQRCode.py:198 msgid "Square" msgstr "Quadrado" @@ -3520,8 +3520,8 @@ msgid "Full Buffer" msgstr "Buffer Completo" #: flatcamEditors/FlatCAMGeoEditor.py:133 -#: flatcamEditors/FlatCAMGeoEditor.py:2758 flatcamGUI/FlatCAMGUI.py:1658 -#: flatcamGUI/PreferencesUI.py:2008 +#: flatcamEditors/FlatCAMGeoEditor.py:2758 flatcamGUI/FlatCAMGUI.py:1774 +#: flatcamGUI/PreferencesUI.py:2009 msgid "Buffer Tool" msgstr "Ferramenta Buffer" @@ -3541,7 +3541,7 @@ msgstr "" msgid "Font" msgstr "Fonte" -#: flatcamEditors/FlatCAMGeoEditor.py:324 flatcamGUI/FlatCAMGUI.py:1919 +#: flatcamEditors/FlatCAMGeoEditor.py:324 flatcamGUI/FlatCAMGUI.py:2054 msgid "Text" msgstr "Texto" @@ -3549,13 +3549,13 @@ msgstr "Texto" msgid "Text Tool" msgstr "Ferramenta de Texto" -#: flatcamEditors/FlatCAMGeoEditor.py:442 flatcamGUI/ObjectUI.py:348 -#: flatcamGUI/PreferencesUI.py:1449 flatcamGUI/PreferencesUI.py:3144 -#: flatcamGUI/PreferencesUI.py:4500 +#: flatcamEditors/FlatCAMGeoEditor.py:442 flatcamGUI/ObjectUI.py:359 +#: flatcamGUI/PreferencesUI.py:1450 flatcamGUI/PreferencesUI.py:3145 +#: flatcamGUI/PreferencesUI.py:4501 msgid "Tool dia" msgstr "Diâmetro da Ferramenta" -#: flatcamEditors/FlatCAMGeoEditor.py:444 flatcamGUI/PreferencesUI.py:4502 +#: flatcamEditors/FlatCAMGeoEditor.py:444 flatcamGUI/PreferencesUI.py:4503 msgid "" "Diameter of the tool to\n" "be used in the operation." @@ -3563,13 +3563,13 @@ msgstr "" "Diâmetro da ferramenta para \n" "ser usada na operação." -#: flatcamEditors/FlatCAMGeoEditor.py:455 flatcamGUI/PreferencesUI.py:4107 -#: flatcamGUI/PreferencesUI.py:4532 flatcamTools/ToolNonCopperClear.py:319 +#: flatcamEditors/FlatCAMGeoEditor.py:455 flatcamGUI/PreferencesUI.py:4108 +#: flatcamGUI/PreferencesUI.py:4533 flatcamTools/ToolNonCopperClear.py:319 #: flatcamTools/ToolPaint.py:219 msgid "Overlap Rate" msgstr "Taxa de Sobreposição" -#: flatcamEditors/FlatCAMGeoEditor.py:457 flatcamGUI/PreferencesUI.py:4534 +#: flatcamEditors/FlatCAMGeoEditor.py:457 flatcamGUI/PreferencesUI.py:4535 #: flatcamTools/ToolPaint.py:221 msgid "" "How much (fraction) of the tool width to overlap each tool pass.\n" @@ -3588,17 +3588,17 @@ msgstr "" "Valores maiores = processamento lento e execução lenta no CNC \n" " devido ao número de caminhos." -#: 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 +#: flatcamEditors/FlatCAMGeoEditor.py:475 flatcamGUI/PreferencesUI.py:4127 +#: flatcamGUI/PreferencesUI.py:4348 flatcamGUI/PreferencesUI.py:4553 +#: flatcamGUI/PreferencesUI.py:6107 flatcamGUI/PreferencesUI.py:6264 +#: flatcamGUI/PreferencesUI.py:6349 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 "Margem" -#: flatcamEditors/FlatCAMGeoEditor.py:477 flatcamGUI/PreferencesUI.py:4554 +#: flatcamEditors/FlatCAMGeoEditor.py:477 flatcamGUI/PreferencesUI.py:4555 #: flatcamTools/ToolPaint.py:240 msgid "" "Distance by which to avoid\n" @@ -3609,8 +3609,8 @@ msgstr "" "as bordas do polígono para \n" "ser pintado." -#: flatcamEditors/FlatCAMGeoEditor.py:489 flatcamGUI/PreferencesUI.py:4139 -#: flatcamGUI/PreferencesUI.py:4567 flatcamTools/ToolNonCopperClear.py:348 +#: flatcamEditors/FlatCAMGeoEditor.py:489 flatcamGUI/PreferencesUI.py:4140 +#: flatcamGUI/PreferencesUI.py:4568 flatcamTools/ToolNonCopperClear.py:348 #: flatcamTools/ToolPaint.py:251 msgid "Method" msgstr "Método" @@ -3623,20 +3623,20 @@ msgstr "" "Algoritmo para pintar o polígono:
Padrão: Passo fixo para dentro." "
Baseado em semente: para fora da semente." -#: flatcamEditors/FlatCAMGeoEditor.py:496 flatcamGUI/PreferencesUI.py:4148 -#: flatcamGUI/PreferencesUI.py:4576 flatcamTools/ToolNonCopperClear.py:357 +#: flatcamEditors/FlatCAMGeoEditor.py:496 flatcamGUI/PreferencesUI.py:4149 +#: flatcamGUI/PreferencesUI.py:4577 flatcamTools/ToolNonCopperClear.py:357 #: flatcamTools/ToolPaint.py:260 msgid "Standard" msgstr "Padrão" -#: flatcamEditors/FlatCAMGeoEditor.py:497 flatcamGUI/PreferencesUI.py:4149 -#: flatcamGUI/PreferencesUI.py:4577 flatcamTools/ToolNonCopperClear.py:358 +#: flatcamEditors/FlatCAMGeoEditor.py:497 flatcamGUI/PreferencesUI.py:4150 +#: flatcamGUI/PreferencesUI.py:4578 flatcamTools/ToolNonCopperClear.py:358 #: flatcamTools/ToolPaint.py:261 msgid "Seed-based" msgstr "Baseado em semente" -#: flatcamEditors/FlatCAMGeoEditor.py:498 flatcamGUI/PreferencesUI.py:4150 -#: flatcamGUI/PreferencesUI.py:4578 flatcamTools/ToolNonCopperClear.py:359 +#: flatcamEditors/FlatCAMGeoEditor.py:498 flatcamGUI/PreferencesUI.py:4151 +#: flatcamGUI/PreferencesUI.py:4579 flatcamTools/ToolNonCopperClear.py:359 #: flatcamTools/ToolPaint.py:262 msgid "Straight lines" msgstr "Linhas retas" @@ -3645,8 +3645,8 @@ msgstr "Linhas retas" msgid "Connect:" msgstr "Conectar:" -#: flatcamEditors/FlatCAMGeoEditor.py:507 flatcamGUI/PreferencesUI.py:4159 -#: flatcamGUI/PreferencesUI.py:4585 flatcamTools/ToolNonCopperClear.py:366 +#: flatcamEditors/FlatCAMGeoEditor.py:507 flatcamGUI/PreferencesUI.py:4160 +#: flatcamGUI/PreferencesUI.py:4586 flatcamTools/ToolNonCopperClear.py:366 #: flatcamTools/ToolPaint.py:269 msgid "" "Draw lines between resulting\n" @@ -3659,21 +3659,21 @@ msgstr "" msgid "Contour:" msgstr "Contorno:" -#: flatcamEditors/FlatCAMGeoEditor.py:517 flatcamGUI/PreferencesUI.py:4170 -#: flatcamGUI/PreferencesUI.py:4595 flatcamTools/ToolNonCopperClear.py:375 +#: flatcamEditors/FlatCAMGeoEditor.py:517 flatcamGUI/PreferencesUI.py:4171 +#: flatcamGUI/PreferencesUI.py:4596 flatcamTools/ToolNonCopperClear.py:375 #: flatcamTools/ToolPaint.py:278 msgid "" "Cut around the perimeter of the polygon\n" "to trim rough edges." msgstr "Corta no perímetro do polígono para retirar as arestas." -#: flatcamEditors/FlatCAMGeoEditor.py:529 flatcamGUI/FlatCAMGUI.py:1921 +#: flatcamEditors/FlatCAMGeoEditor.py:529 flatcamGUI/FlatCAMGUI.py:2058 msgid "Paint" msgstr "Pintura" -#: flatcamEditors/FlatCAMGeoEditor.py:547 flatcamGUI/FlatCAMGUI.py:749 -#: flatcamGUI/FlatCAMGUI.py:2194 flatcamGUI/ObjectUI.py:1694 -#: flatcamTools/ToolPaint.py:41 flatcamTools/ToolPaint.py:538 +#: flatcamEditors/FlatCAMGeoEditor.py:547 flatcamGUI/FlatCAMGUI.py:819 +#: flatcamGUI/FlatCAMGUI.py:2388 flatcamGUI/ObjectUI.py:1733 +#: flatcamTools/ToolPaint.py:41 flatcamTools/ToolPaint.py:539 msgid "Paint Tool" msgstr "Ferramenta de Pintura" @@ -3684,7 +3684,7 @@ msgstr "Pintura cancelada. Nenhuma forma selecionada." #: flatcamEditors/FlatCAMGeoEditor.py:597 #: flatcamEditors/FlatCAMGeoEditor.py:2784 #: flatcamEditors/FlatCAMGeoEditor.py:2814 -#: flatcamEditors/FlatCAMGeoEditor.py:2844 flatcamGUI/PreferencesUI.py:3140 +#: flatcamEditors/FlatCAMGeoEditor.py:2844 flatcamGUI/PreferencesUI.py:3141 #: flatcamTools/ToolProperties.py:120 flatcamTools/ToolProperties.py:158 msgid "Tools" msgstr "Ferramentas" @@ -3692,15 +3692,15 @@ msgstr "Ferramentas" #: flatcamEditors/FlatCAMGeoEditor.py:608 #: flatcamEditors/FlatCAMGeoEditor.py:992 #: flatcamEditors/FlatCAMGrbEditor.py:5011 -#: flatcamEditors/FlatCAMGrbEditor.py:5408 flatcamGUI/FlatCAMGUI.py:762 -#: flatcamGUI/FlatCAMGUI.py:2207 flatcamTools/ToolTransform.py:371 +#: flatcamEditors/FlatCAMGrbEditor.py:5408 flatcamGUI/FlatCAMGUI.py:840 +#: flatcamGUI/FlatCAMGUI.py:2406 flatcamTools/ToolTransform.py:371 msgid "Transform Tool" msgstr "Ferramenta Transformar" #: flatcamEditors/FlatCAMGeoEditor.py:609 #: flatcamEditors/FlatCAMGeoEditor.py:674 #: flatcamEditors/FlatCAMGrbEditor.py:5012 -#: flatcamEditors/FlatCAMGrbEditor.py:5077 flatcamGUI/PreferencesUI.py:5207 +#: flatcamEditors/FlatCAMGrbEditor.py:5077 flatcamGUI/PreferencesUI.py:5208 #: flatcamTools/ToolTransform.py:25 flatcamTools/ToolTransform.py:79 msgid "Rotate" msgstr "Girar" @@ -3712,10 +3712,10 @@ msgstr "Inclinar" #: flatcamEditors/FlatCAMGeoEditor.py:611 #: flatcamEditors/FlatCAMGrbEditor.py:2600 -#: 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 +#: flatcamEditors/FlatCAMGrbEditor.py:5014 flatcamGUI/FlatCAMGUI.py:954 +#: flatcamGUI/FlatCAMGUI.py:1986 flatcamGUI/FlatCAMGUI.py:2101 +#: flatcamGUI/FlatCAMGUI.py:2514 flatcamGUI/ObjectUI.py:103 +#: flatcamGUI/ObjectUI.py:121 flatcamGUI/PreferencesUI.py:5258 #: flatcamTools/ToolTransform.py:27 msgid "Scale" msgstr "Redimensionar" @@ -3726,17 +3726,17 @@ msgid "Mirror (Flip)" msgstr "Espelhar (Flip)" #: 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 +#: flatcamEditors/FlatCAMGrbEditor.py:5016 flatcamGUI/ObjectUI.py:132 +#: flatcamGUI/ObjectUI.py:148 flatcamGUI/ObjectUI.py:1217 +#: flatcamGUI/ObjectUI.py:1918 flatcamGUI/PreferencesUI.py:4196 +#: flatcamGUI/PreferencesUI.py:5305 flatcamTools/ToolNonCopperClear.py:397 #: flatcamTools/ToolTransform.py:29 msgid "Offset" msgstr "Deslocar" #: flatcamEditors/FlatCAMGeoEditor.py:626 -#: flatcamEditors/FlatCAMGrbEditor.py:5029 flatcamGUI/FlatCAMGUI.py:709 -#: flatcamGUI/FlatCAMGUI.py:2160 +#: flatcamEditors/FlatCAMGrbEditor.py:5029 flatcamGUI/FlatCAMGUI.py:761 +#: flatcamGUI/FlatCAMGUI.py:2335 msgid "Editor" msgstr "Editor" @@ -3746,7 +3746,7 @@ msgid "Angle:" msgstr "Ângulo:" #: flatcamEditors/FlatCAMGeoEditor.py:660 -#: flatcamEditors/FlatCAMGrbEditor.py:5063 flatcamGUI/PreferencesUI.py:5217 +#: flatcamEditors/FlatCAMGrbEditor.py:5063 flatcamGUI/PreferencesUI.py:5218 #: flatcamTools/ToolTransform.py:64 msgid "" "Angle for Rotation action, in degrees.\n" @@ -3778,8 +3778,8 @@ msgstr "Ângulo X:" #: flatcamEditors/FlatCAMGeoEditor.py:701 #: flatcamEditors/FlatCAMGeoEditor.py:721 #: flatcamEditors/FlatCAMGrbEditor.py:5104 -#: flatcamEditors/FlatCAMGrbEditor.py:5124 flatcamGUI/PreferencesUI.py:5236 -#: flatcamGUI/PreferencesUI.py:5250 flatcamTools/ToolCalibration.py:508 +#: flatcamEditors/FlatCAMGrbEditor.py:5124 flatcamGUI/PreferencesUI.py:5237 +#: flatcamGUI/PreferencesUI.py:5251 flatcamTools/ToolCalibration.py:508 #: flatcamTools/ToolCalibration.py:521 msgid "" "Angle for Skew action, in degrees.\n" @@ -3860,7 +3860,7 @@ msgid "Scale Y" msgstr "Redimensionar Y" #: flatcamEditors/FlatCAMGeoEditor.py:800 -#: flatcamEditors/FlatCAMGrbEditor.py:5203 flatcamGUI/PreferencesUI.py:5286 +#: flatcamEditors/FlatCAMGrbEditor.py:5203 flatcamGUI/PreferencesUI.py:5287 #: flatcamTools/ToolTransform.py:191 msgid "Link" msgstr "Fixar Taxa" @@ -3875,7 +3875,7 @@ msgstr "" "usando o Fator de Escala X para ambos os eixos." #: flatcamEditors/FlatCAMGeoEditor.py:808 -#: flatcamEditors/FlatCAMGrbEditor.py:5211 flatcamGUI/PreferencesUI.py:5294 +#: flatcamEditors/FlatCAMGrbEditor.py:5211 flatcamGUI/PreferencesUI.py:5295 #: flatcamTools/ToolTransform.py:199 msgid "Scale Reference" msgstr "Referência de escala" @@ -4439,10 +4439,10 @@ msgstr "com diâmetro" msgid "Copy cancelled. No shape selected." msgstr "Cópia cancelada. Nenhuma forma selecionada." -#: 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 +#: flatcamEditors/FlatCAMGeoEditor.py:4025 flatcamGUI/FlatCAMGUI.py:3435 +#: flatcamGUI/FlatCAMGUI.py:3482 flatcamGUI/FlatCAMGUI.py:3501 +#: flatcamGUI/FlatCAMGUI.py:3636 flatcamGUI/FlatCAMGUI.py:3649 +#: flatcamGUI/FlatCAMGUI.py:3683 flatcamGUI/FlatCAMGUI.py:3741 msgid "Click on target point." msgstr "Clique no ponto alvo." @@ -4673,62 +4673,62 @@ msgstr "Aberturas movidas." msgid "Done. Apertures copied." msgstr "Aberturas copiadas." -#: flatcamEditors/FlatCAMGrbEditor.py:2376 flatcamGUI/FlatCAMGUI.py:1934 -#: flatcamGUI/PreferencesUI.py:1847 +#: flatcamEditors/FlatCAMGrbEditor.py:2376 flatcamGUI/FlatCAMGUI.py:2079 +#: flatcamGUI/PreferencesUI.py:1848 msgid "Gerber Editor" msgstr "Editor Gerber" -#: flatcamEditors/FlatCAMGrbEditor.py:2396 flatcamGUI/ObjectUI.py:212 +#: flatcamEditors/FlatCAMGrbEditor.py:2396 flatcamGUI/ObjectUI.py:223 #: flatcamTools/ToolProperties.py:156 msgid "Apertures" msgstr "Aberturas" -#: flatcamEditors/FlatCAMGrbEditor.py:2398 flatcamGUI/ObjectUI.py:214 +#: flatcamEditors/FlatCAMGrbEditor.py:2398 flatcamGUI/ObjectUI.py:225 msgid "Apertures Table for the Gerber Object." msgstr "Tabela de Aberturas para o Objeto Gerber." #: flatcamEditors/FlatCAMGrbEditor.py:2409 -#: flatcamEditors/FlatCAMGrbEditor.py:3755 flatcamGUI/ObjectUI.py:247 +#: flatcamEditors/FlatCAMGrbEditor.py:3755 flatcamGUI/ObjectUI.py:258 msgid "Code" msgstr "Código" #: flatcamEditors/FlatCAMGrbEditor.py:2409 -#: flatcamEditors/FlatCAMGrbEditor.py:3755 flatcamGUI/ObjectUI.py:247 -#: flatcamGUI/ObjectUI.py:1178 flatcamGUI/ObjectUI.py:1866 +#: flatcamEditors/FlatCAMGrbEditor.py:3755 flatcamGUI/ObjectUI.py:258 +#: flatcamGUI/ObjectUI.py:1217 flatcamGUI/ObjectUI.py:1918 msgid "Type" msgstr "Tipo" #: flatcamEditors/FlatCAMGrbEditor.py:2409 -#: flatcamEditors/FlatCAMGrbEditor.py:3755 flatcamGUI/ObjectUI.py:247 -#: flatcamGUI/PreferencesUI.py:6201 flatcamGUI/PreferencesUI.py:6230 -#: flatcamGUI/PreferencesUI.py:6332 flatcamTools/ToolCopperThieving.py:260 +#: flatcamEditors/FlatCAMGrbEditor.py:3755 flatcamGUI/ObjectUI.py:258 +#: flatcamGUI/PreferencesUI.py:6202 flatcamGUI/PreferencesUI.py:6231 +#: flatcamGUI/PreferencesUI.py:6333 flatcamTools/ToolCopperThieving.py:260 #: flatcamTools/ToolCopperThieving.py:300 flatcamTools/ToolFiducials.py:156 msgid "Size" msgstr "Tamanho" #: flatcamEditors/FlatCAMGrbEditor.py:2409 -#: flatcamEditors/FlatCAMGrbEditor.py:3755 flatcamGUI/ObjectUI.py:247 +#: flatcamEditors/FlatCAMGrbEditor.py:3755 flatcamGUI/ObjectUI.py:258 msgid "Dim" msgstr "Dim" -#: flatcamEditors/FlatCAMGrbEditor.py:2413 flatcamGUI/ObjectUI.py:251 +#: flatcamEditors/FlatCAMGrbEditor.py:2413 flatcamGUI/ObjectUI.py:262 msgid "Index" msgstr "Índice" #: flatcamEditors/FlatCAMGrbEditor.py:2415 -#: flatcamEditors/FlatCAMGrbEditor.py:2444 flatcamGUI/ObjectUI.py:253 +#: flatcamEditors/FlatCAMGrbEditor.py:2444 flatcamGUI/ObjectUI.py:264 msgid "Aperture Code" msgstr "Código de Abertura" -#: flatcamEditors/FlatCAMGrbEditor.py:2417 flatcamGUI/ObjectUI.py:255 +#: flatcamEditors/FlatCAMGrbEditor.py:2417 flatcamGUI/ObjectUI.py:266 msgid "Type of aperture: circular, rectangle, macros etc" msgstr "Tipo de abertura: circular, retângulo, macros etc" -#: flatcamEditors/FlatCAMGrbEditor.py:2419 flatcamGUI/ObjectUI.py:257 +#: flatcamEditors/FlatCAMGrbEditor.py:2419 flatcamGUI/ObjectUI.py:268 msgid "Aperture Size:" msgstr "Tamanho da abertura:" -#: flatcamEditors/FlatCAMGrbEditor.py:2421 flatcamGUI/ObjectUI.py:259 +#: flatcamEditors/FlatCAMGrbEditor.py:2421 flatcamGUI/ObjectUI.py:270 msgid "" "Aperture Dimensions:\n" " - (width, height) for R, O type.\n" @@ -4738,7 +4738,7 @@ msgstr "" " - (largura, altura) para o tipo R, O. \n" " - (dia, nVertices) para o tipo P" -#: flatcamEditors/FlatCAMGrbEditor.py:2445 flatcamGUI/PreferencesUI.py:1878 +#: flatcamEditors/FlatCAMGrbEditor.py:2445 flatcamGUI/PreferencesUI.py:1879 msgid "Code for the new aperture" msgstr "Código para a nova abertura" @@ -4814,7 +4814,7 @@ msgstr "Buffer Abertura" msgid "Buffer a aperture in the aperture list" msgstr "Buffer de uma abertura na lista de aberturas" -#: flatcamEditors/FlatCAMGrbEditor.py:2542 flatcamGUI/PreferencesUI.py:2012 +#: flatcamEditors/FlatCAMGrbEditor.py:2542 flatcamGUI/PreferencesUI.py:2013 msgid "Buffer distance" msgstr "Distância do buffer" @@ -4836,9 +4836,9 @@ msgstr "" " - 'Chanfrado:' o canto é uma linha que conecta diretamente os recursos " "reunidos no canto" -#: flatcamEditors/FlatCAMGrbEditor.py:2560 flatcamGUI/FlatCAMGUI.py:842 -#: flatcamGUI/FlatCAMGUI.py:1868 flatcamGUI/FlatCAMGUI.py:1920 -#: flatcamGUI/FlatCAMGUI.py:1947 flatcamGUI/FlatCAMGUI.py:2283 +#: flatcamEditors/FlatCAMGrbEditor.py:2560 flatcamGUI/FlatCAMGUI.py:952 +#: flatcamGUI/FlatCAMGUI.py:1984 flatcamGUI/FlatCAMGUI.py:2056 +#: flatcamGUI/FlatCAMGUI.py:2099 flatcamGUI/FlatCAMGUI.py:2512 msgid "Buffer" msgstr "Buffer" @@ -4850,7 +4850,7 @@ msgstr "Redim. Abertura" msgid "Scale a aperture in the aperture list" msgstr "Redimensiona uma abertura na lista de aberturas" -#: flatcamEditors/FlatCAMGrbEditor.py:2585 flatcamGUI/PreferencesUI.py:2027 +#: flatcamEditors/FlatCAMGrbEditor.py:2585 flatcamGUI/PreferencesUI.py:2028 msgid "Scale factor" msgstr "Fator de Escala" @@ -4914,8 +4914,8 @@ msgstr "Limpar" msgid "Clear all the markings." msgstr "Limpar todas as marcações." -#: flatcamEditors/FlatCAMGrbEditor.py:2684 flatcamGUI/FlatCAMGUI.py:832 -#: flatcamGUI/FlatCAMGUI.py:1868 flatcamGUI/FlatCAMGUI.py:2273 +#: flatcamEditors/FlatCAMGrbEditor.py:2684 flatcamGUI/FlatCAMGUI.py:937 +#: flatcamGUI/FlatCAMGUI.py:1984 flatcamGUI/FlatCAMGUI.py:2497 msgid "Add Pad Array" msgstr "Adicionar Matriz de Pads" @@ -4931,11 +4931,11 @@ msgstr "" "Selecione o tipo de matriz de pads para criar.\n" "Pode ser Linear X(Y) ou Circular" -#: flatcamEditors/FlatCAMGrbEditor.py:2703 flatcamGUI/PreferencesUI.py:1915 +#: flatcamEditors/FlatCAMGrbEditor.py:2703 flatcamGUI/PreferencesUI.py:1916 msgid "Nr of pads" msgstr "Nº de pads" -#: flatcamEditors/FlatCAMGrbEditor.py:2705 flatcamGUI/PreferencesUI.py:1917 +#: flatcamEditors/FlatCAMGrbEditor.py:2705 flatcamGUI/PreferencesUI.py:1918 msgid "Specify how many pads to be in the array." msgstr "Especifique quantos pads devem estar na matriz." @@ -5138,9 +5138,9 @@ msgstr "Substituirá o texto da caixa Localizar pelo texto da caixa Substituir." msgid "String to replace the one in the Find box throughout the text." msgstr "Texto para substituir o da caixa Localizar ao longo do texto." -#: flatcamEditors/FlatCAMTextEditor.py:87 flatcamGUI/ObjectUI.py:471 -#: flatcamGUI/ObjectUI.py:1759 flatcamGUI/PreferencesUI.py:1494 -#: flatcamGUI/PreferencesUI.py:3641 flatcamGUI/PreferencesUI.py:4616 +#: flatcamEditors/FlatCAMTextEditor.py:87 flatcamGUI/ObjectUI.py:482 +#: flatcamGUI/ObjectUI.py:1811 flatcamGUI/PreferencesUI.py:1495 +#: flatcamGUI/PreferencesUI.py:3642 flatcamGUI/PreferencesUI.py:4617 msgid "All" msgstr "Todos" @@ -5202,7 +5202,7 @@ msgid "Code Editor content copied to clipboard ..." msgstr "Conteúdo do Code Editor copiado para a área de transferência ..." #: flatcamGUI/FlatCAMGUI.py:52 flatcamGUI/FlatCAMGUI.py:54 -#: flatcamGUI/FlatCAMGUI.py:1891 +#: flatcamGUI/FlatCAMGUI.py:2009 msgid "Toggle Panel" msgstr "Alternar Painel" @@ -5222,91 +5222,91 @@ msgstr "Criará um novo projeto em branco" msgid "&New" msgstr "&Novo" -#: flatcamGUI/FlatCAMGUI.py:79 +#: flatcamGUI/FlatCAMGUI.py:80 msgid "Geometry\tN" msgstr "Geometria\tN" -#: flatcamGUI/FlatCAMGUI.py:81 +#: flatcamGUI/FlatCAMGUI.py:82 msgid "Will create a new, empty Geometry Object." msgstr "Criará um novo Objeto Geometria vazio." -#: flatcamGUI/FlatCAMGUI.py:83 +#: flatcamGUI/FlatCAMGUI.py:84 msgid "Gerber\tB" msgstr "Gerber\tB" -#: flatcamGUI/FlatCAMGUI.py:85 +#: flatcamGUI/FlatCAMGUI.py:86 msgid "Will create a new, empty Gerber Object." msgstr "Criará um novo Objeto Gerber vazio." -#: flatcamGUI/FlatCAMGUI.py:87 +#: flatcamGUI/FlatCAMGUI.py:88 msgid "Excellon\tL" msgstr "Excellon\tL" -#: flatcamGUI/FlatCAMGUI.py:89 +#: flatcamGUI/FlatCAMGUI.py:90 msgid "Will create a new, empty Excellon Object." msgstr "Criará um novo Objeto Excellon vazio." -#: flatcamGUI/FlatCAMGUI.py:93 +#: flatcamGUI/FlatCAMGUI.py:94 msgid "Document\tD" msgstr "Documento\tD" -#: flatcamGUI/FlatCAMGUI.py:95 +#: flatcamGUI/FlatCAMGUI.py:96 msgid "Will create a new, empty Document Object." msgstr "Criará um novo Objeto Documento vazio." -#: flatcamGUI/FlatCAMGUI.py:98 flatcamGUI/FlatCAMGUI.py:3837 +#: flatcamGUI/FlatCAMGUI.py:99 flatcamGUI/FlatCAMGUI.py:4075 #: flatcamTools/ToolPcbWizard.py:62 flatcamTools/ToolPcbWizard.py:69 msgid "Open" msgstr "Abrir" -#: flatcamGUI/FlatCAMGUI.py:102 +#: flatcamGUI/FlatCAMGUI.py:103 msgid "Open &Project ..." msgstr "Abrir &Projeto ..." -#: flatcamGUI/FlatCAMGUI.py:108 flatcamGUI/FlatCAMGUI.py:3846 +#: flatcamGUI/FlatCAMGUI.py:109 flatcamGUI/FlatCAMGUI.py:4085 msgid "Open &Gerber ...\tCTRL+G" msgstr "Abrir &Gerber ...\tCTRL+G" -#: flatcamGUI/FlatCAMGUI.py:113 flatcamGUI/FlatCAMGUI.py:3851 +#: flatcamGUI/FlatCAMGUI.py:114 flatcamGUI/FlatCAMGUI.py:4090 msgid "Open &Excellon ...\tCTRL+E" msgstr "Abrir &Excellon ...\tCTRL+E" -#: flatcamGUI/FlatCAMGUI.py:117 flatcamGUI/FlatCAMGUI.py:3855 +#: flatcamGUI/FlatCAMGUI.py:118 flatcamGUI/FlatCAMGUI.py:4095 msgid "Open G-&Code ..." msgstr "Abrir G-&Code ..." -#: flatcamGUI/FlatCAMGUI.py:123 +#: flatcamGUI/FlatCAMGUI.py:124 msgid "Open Config ..." msgstr "Abrir Configuração ..." -#: flatcamGUI/FlatCAMGUI.py:127 +#: flatcamGUI/FlatCAMGUI.py:128 msgid "Recent projects" msgstr "Projetos Recentes" -#: flatcamGUI/FlatCAMGUI.py:128 +#: flatcamGUI/FlatCAMGUI.py:129 msgid "Recent files" msgstr "Arquivos Recentes" -#: flatcamGUI/FlatCAMGUI.py:134 +#: flatcamGUI/FlatCAMGUI.py:135 msgid "Scripting" msgstr "Scripting" -#: flatcamGUI/FlatCAMGUI.py:137 flatcamGUI/FlatCAMGUI.py:739 -#: flatcamGUI/FlatCAMGUI.py:2186 +#: flatcamGUI/FlatCAMGUI.py:138 flatcamGUI/FlatCAMGUI.py:803 +#: flatcamGUI/FlatCAMGUI.py:2374 msgid "New Script ..." msgstr "Novo Script ..." -#: flatcamGUI/FlatCAMGUI.py:138 flatcamGUI/FlatCAMGUI.py:740 -#: flatcamGUI/FlatCAMGUI.py:2187 +#: flatcamGUI/FlatCAMGUI.py:139 flatcamGUI/FlatCAMGUI.py:805 +#: flatcamGUI/FlatCAMGUI.py:2376 msgid "Open Script ..." msgstr "Abrir Script ..." -#: flatcamGUI/FlatCAMGUI.py:140 flatcamGUI/FlatCAMGUI.py:741 -#: flatcamGUI/FlatCAMGUI.py:2188 flatcamGUI/FlatCAMGUI.py:3826 +#: flatcamGUI/FlatCAMGUI.py:141 flatcamGUI/FlatCAMGUI.py:807 +#: flatcamGUI/FlatCAMGUI.py:2378 flatcamGUI/FlatCAMGUI.py:4064 msgid "Run Script ..." msgstr "Executar Script ..." -#: flatcamGUI/FlatCAMGUI.py:142 flatcamGUI/FlatCAMGUI.py:3828 +#: flatcamGUI/FlatCAMGUI.py:143 flatcamGUI/FlatCAMGUI.py:4066 msgid "" "Will run the opened Tcl Script thus\n" "enabling the automation of certain\n" @@ -5316,47 +5316,47 @@ msgstr "" "ativando a automação de certas\n" "funções do FlatCAM." -#: flatcamGUI/FlatCAMGUI.py:155 +#: flatcamGUI/FlatCAMGUI.py:156 msgid "Import" msgstr "Importar" -#: flatcamGUI/FlatCAMGUI.py:157 +#: flatcamGUI/FlatCAMGUI.py:158 msgid "&SVG as Geometry Object ..." msgstr "&SVG como Objeto de Geometria ..." -#: flatcamGUI/FlatCAMGUI.py:160 +#: flatcamGUI/FlatCAMGUI.py:161 msgid "&SVG as Gerber Object ..." msgstr "&SVG como Objeto Gerber ..." -#: flatcamGUI/FlatCAMGUI.py:165 +#: flatcamGUI/FlatCAMGUI.py:166 msgid "&DXF as Geometry Object ..." msgstr "&DXF como Objeto de Geometria ..." -#: flatcamGUI/FlatCAMGUI.py:168 +#: flatcamGUI/FlatCAMGUI.py:169 msgid "&DXF as Gerber Object ..." msgstr "&DXF como Objeto Gerber ..." -#: flatcamGUI/FlatCAMGUI.py:172 +#: flatcamGUI/FlatCAMGUI.py:173 msgid "HPGL2 as Geometry Object ..." msgstr "HPGL2 como objeto de geometria ..." -#: flatcamGUI/FlatCAMGUI.py:177 +#: flatcamGUI/FlatCAMGUI.py:178 msgid "Export" msgstr "Exportar" -#: flatcamGUI/FlatCAMGUI.py:180 +#: flatcamGUI/FlatCAMGUI.py:181 msgid "Export &SVG ..." msgstr "Exportar &SVG ..." -#: flatcamGUI/FlatCAMGUI.py:183 +#: flatcamGUI/FlatCAMGUI.py:184 msgid "Export DXF ..." msgstr "Exportar DXF ..." -#: flatcamGUI/FlatCAMGUI.py:188 +#: flatcamGUI/FlatCAMGUI.py:189 msgid "Export &PNG ..." msgstr "Exportar &PNG ..." -#: flatcamGUI/FlatCAMGUI.py:190 +#: flatcamGUI/FlatCAMGUI.py:191 msgid "" "Will export an image in PNG format,\n" "the saved image will contain the visual \n" @@ -5366,11 +5366,11 @@ msgstr "" "A imagem salva conterá as informações\n" "visuais atualmente na área gráfica FlatCAM." -#: flatcamGUI/FlatCAMGUI.py:199 +#: flatcamGUI/FlatCAMGUI.py:200 msgid "Export &Excellon ..." msgstr "Exportar &Excellon ..." -#: flatcamGUI/FlatCAMGUI.py:201 +#: flatcamGUI/FlatCAMGUI.py:202 msgid "" "Will export an Excellon Object as Excellon file,\n" "the coordinates format, the file units and zeros\n" @@ -5380,11 +5380,11 @@ msgstr "" "O formato das coordenadas, das unidades de arquivo e dos zeros\n" "são definidos em Preferências -> Exportação de Excellon." -#: flatcamGUI/FlatCAMGUI.py:208 +#: flatcamGUI/FlatCAMGUI.py:209 msgid "Export &Gerber ..." msgstr "Exportar &Gerber ..." -#: flatcamGUI/FlatCAMGUI.py:210 +#: flatcamGUI/FlatCAMGUI.py:211 msgid "" "Will export an Gerber Object as Gerber file,\n" "the coordinates format, the file units and zeros\n" @@ -5394,61 +5394,61 @@ msgstr "" "O formato das coordenadas, das unidades de arquivo e dos zeros\n" "são definidos em Preferências -> Exportar Gerber." -#: flatcamGUI/FlatCAMGUI.py:226 +#: flatcamGUI/FlatCAMGUI.py:229 msgid "Backup" msgstr "Backup" -#: flatcamGUI/FlatCAMGUI.py:230 +#: flatcamGUI/FlatCAMGUI.py:233 msgid "Import Preferences from file ..." msgstr "Importar preferências de um arquivo ..." -#: flatcamGUI/FlatCAMGUI.py:235 +#: flatcamGUI/FlatCAMGUI.py:238 msgid "Export Preferences to file ..." msgstr "Exportar Preferências para um arquivo ..." -#: flatcamGUI/FlatCAMGUI.py:241 flatcamGUI/FlatCAMGUI.py:612 -#: flatcamGUI/FlatCAMGUI.py:1109 +#: flatcamGUI/FlatCAMGUI.py:244 flatcamGUI/FlatCAMGUI.py:656 +#: flatcamGUI/FlatCAMGUI.py:1225 msgid "Save" msgstr "Salvar" -#: flatcamGUI/FlatCAMGUI.py:244 +#: flatcamGUI/FlatCAMGUI.py:248 msgid "&Save Project ..." msgstr "&Salvar Projeto ..." -#: flatcamGUI/FlatCAMGUI.py:249 +#: flatcamGUI/FlatCAMGUI.py:253 msgid "Save Project &As ...\tCTRL+S" msgstr "S&alvar Projeto Como ...\tCTRL+S" -#: flatcamGUI/FlatCAMGUI.py:254 +#: flatcamGUI/FlatCAMGUI.py:258 msgid "Save Project C&opy ..." msgstr "Salvar Cópia do Pr&ojeto ..." -#: flatcamGUI/FlatCAMGUI.py:268 +#: flatcamGUI/FlatCAMGUI.py:273 msgid "E&xit" msgstr "Sair" -#: flatcamGUI/FlatCAMGUI.py:276 flatcamGUI/FlatCAMGUI.py:609 -#: flatcamGUI/FlatCAMGUI.py:1968 +#: flatcamGUI/FlatCAMGUI.py:281 flatcamGUI/FlatCAMGUI.py:650 +#: flatcamGUI/FlatCAMGUI.py:2132 msgid "Edit" msgstr "Editar" -#: flatcamGUI/FlatCAMGUI.py:279 +#: flatcamGUI/FlatCAMGUI.py:285 msgid "Edit Object\tE" msgstr "Editar Objeto\tE" -#: flatcamGUI/FlatCAMGUI.py:280 +#: flatcamGUI/FlatCAMGUI.py:287 msgid "Close Editor\tCTRL+S" msgstr "Fechar Editor\tCTRL+S" -#: flatcamGUI/FlatCAMGUI.py:288 +#: flatcamGUI/FlatCAMGUI.py:296 msgid "Conversion" msgstr "Conversão" -#: flatcamGUI/FlatCAMGUI.py:290 +#: flatcamGUI/FlatCAMGUI.py:298 msgid "&Join Geo/Gerber/Exc -> Geo" msgstr "&Unir Geo/Gerber/Exc -> Geo" -#: flatcamGUI/FlatCAMGUI.py:292 +#: flatcamGUI/FlatCAMGUI.py:300 msgid "" "Merge a selection of objects, which can be of type:\n" "- Gerber\n" @@ -5462,27 +5462,27 @@ msgstr "" "- Geometria\n" " em um novo objeto Geometria." -#: flatcamGUI/FlatCAMGUI.py:299 +#: flatcamGUI/FlatCAMGUI.py:307 msgid "Join Excellon(s) -> Excellon" msgstr "Unir Excellon(s) -> Excellon" -#: flatcamGUI/FlatCAMGUI.py:301 +#: flatcamGUI/FlatCAMGUI.py:309 msgid "Merge a selection of Excellon objects into a new combo Excellon object." msgstr "Mescla uma seleção de objetos Excellon em um novo objeto Excellon." -#: flatcamGUI/FlatCAMGUI.py:304 +#: flatcamGUI/FlatCAMGUI.py:312 msgid "Join Gerber(s) -> Gerber" msgstr "Unir Gerber(s) -> Gerber" -#: flatcamGUI/FlatCAMGUI.py:306 +#: flatcamGUI/FlatCAMGUI.py:314 msgid "Merge a selection of Gerber objects into a new combo Gerber object." msgstr "Mescla uma seleção de objetos Gerber em um novo objeto Gerber." -#: flatcamGUI/FlatCAMGUI.py:311 +#: flatcamGUI/FlatCAMGUI.py:319 msgid "Convert Single to MultiGeo" msgstr "Converter Único para MultiGeo" -#: flatcamGUI/FlatCAMGUI.py:313 +#: flatcamGUI/FlatCAMGUI.py:321 msgid "" "Will convert a Geometry object from single_geometry type\n" "to a multi_geometry type." @@ -5490,11 +5490,11 @@ msgstr "" "Converterá um objeto Geometria do tipo single_geometry\n" "em um tipo multi_geometry." -#: flatcamGUI/FlatCAMGUI.py:317 +#: flatcamGUI/FlatCAMGUI.py:325 msgid "Convert Multi to SingleGeo" msgstr "Converter MultiGeo para Único" -#: flatcamGUI/FlatCAMGUI.py:319 +#: flatcamGUI/FlatCAMGUI.py:327 msgid "" "Will convert a Geometry object from multi_geometry type\n" "to a single_geometry type." @@ -5502,702 +5502,702 @@ msgstr "" "Converterá um objeto Geometria do tipo multi_geometry\n" "em um tipo single_geometry." -#: flatcamGUI/FlatCAMGUI.py:325 +#: flatcamGUI/FlatCAMGUI.py:334 msgid "Convert Any to Geo" msgstr "Converter Qualquer para Geo" -#: flatcamGUI/FlatCAMGUI.py:327 +#: flatcamGUI/FlatCAMGUI.py:337 msgid "Convert Any to Gerber" msgstr "Converter Qualquer para Gerber" -#: flatcamGUI/FlatCAMGUI.py:332 +#: flatcamGUI/FlatCAMGUI.py:343 msgid "&Copy\tCTRL+C" msgstr "&Copiar\tCTRL+C" -#: flatcamGUI/FlatCAMGUI.py:336 +#: flatcamGUI/FlatCAMGUI.py:348 msgid "&Delete\tDEL" msgstr "Excluir\tDEL" -#: flatcamGUI/FlatCAMGUI.py:340 +#: flatcamGUI/FlatCAMGUI.py:353 msgid "Se&t Origin\tO" msgstr "Definir Origem\tO" -#: flatcamGUI/FlatCAMGUI.py:341 +#: flatcamGUI/FlatCAMGUI.py:355 msgid "Jump to Location\tJ" msgstr "Ir para a localização\tJ" -#: flatcamGUI/FlatCAMGUI.py:346 +#: flatcamGUI/FlatCAMGUI.py:360 msgid "Toggle Units\tQ" msgstr "Alternar Unidades\tQ" -#: flatcamGUI/FlatCAMGUI.py:347 +#: flatcamGUI/FlatCAMGUI.py:362 msgid "&Select All\tCTRL+A" msgstr "&Selecionar Tudo\tCTRL+A" -#: flatcamGUI/FlatCAMGUI.py:351 +#: flatcamGUI/FlatCAMGUI.py:367 msgid "&Preferences\tSHIFT+P" msgstr "&Preferências\tSHIFT+P" -#: flatcamGUI/FlatCAMGUI.py:357 flatcamTools/ToolProperties.py:153 +#: flatcamGUI/FlatCAMGUI.py:373 flatcamTools/ToolProperties.py:153 msgid "Options" msgstr "Opções" -#: flatcamGUI/FlatCAMGUI.py:359 +#: flatcamGUI/FlatCAMGUI.py:375 msgid "&Rotate Selection\tSHIFT+(R)" msgstr "Gi&rar Seleção\tSHIFT+(R)" -#: flatcamGUI/FlatCAMGUI.py:364 +#: flatcamGUI/FlatCAMGUI.py:380 msgid "&Skew on X axis\tSHIFT+X" msgstr "Inclinar no eixo X\tSHIFT+X" -#: flatcamGUI/FlatCAMGUI.py:366 +#: flatcamGUI/FlatCAMGUI.py:382 msgid "S&kew on Y axis\tSHIFT+Y" msgstr "Inclinar no eixo Y\tSHIFT+Y" -#: flatcamGUI/FlatCAMGUI.py:371 +#: flatcamGUI/FlatCAMGUI.py:387 msgid "Flip on &X axis\tX" msgstr "Espelhar no eixo &X\tX" -#: flatcamGUI/FlatCAMGUI.py:373 +#: flatcamGUI/FlatCAMGUI.py:389 msgid "Flip on &Y axis\tY" msgstr "Espelhar no eixo &Y\tY" -#: flatcamGUI/FlatCAMGUI.py:378 +#: flatcamGUI/FlatCAMGUI.py:394 msgid "View source\tALT+S" msgstr "Ver fonte\tALT+S" -#: flatcamGUI/FlatCAMGUI.py:380 +#: flatcamGUI/FlatCAMGUI.py:396 msgid "Tools DataBase\tCTRL+D" msgstr "Banco de Dados de Ferramentas\tCTRL+D" -#: flatcamGUI/FlatCAMGUI.py:387 flatcamGUI/FlatCAMGUI.py:1904 +#: flatcamGUI/FlatCAMGUI.py:403 flatcamGUI/FlatCAMGUI.py:2029 msgid "View" msgstr "Ver" -#: flatcamGUI/FlatCAMGUI.py:388 +#: flatcamGUI/FlatCAMGUI.py:405 msgid "Enable all plots\tALT+1" msgstr "Habilitar todos os gráficos\tALT+1" -#: flatcamGUI/FlatCAMGUI.py:390 +#: flatcamGUI/FlatCAMGUI.py:407 msgid "Disable all plots\tALT+2" msgstr "Desabilitar todos os gráficos\tALT+2" -#: flatcamGUI/FlatCAMGUI.py:392 +#: flatcamGUI/FlatCAMGUI.py:409 msgid "Disable non-selected\tALT+3" msgstr "Desabilitar os não selecionados\tALT+3" -#: flatcamGUI/FlatCAMGUI.py:395 +#: flatcamGUI/FlatCAMGUI.py:413 msgid "&Zoom Fit\tV" msgstr "&Zoom Ajustado\tV" -#: flatcamGUI/FlatCAMGUI.py:396 +#: flatcamGUI/FlatCAMGUI.py:415 msgid "&Zoom In\t=" msgstr "&Zoom +\t=" -#: flatcamGUI/FlatCAMGUI.py:397 +#: flatcamGUI/FlatCAMGUI.py:417 msgid "&Zoom Out\t-" msgstr "&Zoom -\t-" -#: flatcamGUI/FlatCAMGUI.py:401 +#: flatcamGUI/FlatCAMGUI.py:422 msgid "Redraw All\tF5" msgstr "Redesenha Todos\tF5" -#: flatcamGUI/FlatCAMGUI.py:405 +#: flatcamGUI/FlatCAMGUI.py:426 msgid "Toggle Code Editor\tSHIFT+E" msgstr "Alternar o Editor de Códigos\tSHIFT+E" -#: flatcamGUI/FlatCAMGUI.py:408 +#: flatcamGUI/FlatCAMGUI.py:429 msgid "&Toggle FullScreen\tALT+F10" msgstr "Alternar &Tela Cheia\tALT+F10" -#: flatcamGUI/FlatCAMGUI.py:410 +#: flatcamGUI/FlatCAMGUI.py:431 msgid "&Toggle Plot Area\tCTRL+F10" msgstr "Al&ternar Área de Gráficos\tCTRL+F10" -#: flatcamGUI/FlatCAMGUI.py:412 +#: flatcamGUI/FlatCAMGUI.py:433 msgid "&Toggle Project/Sel/Tool\t`" msgstr "Al&ternar Projeto/Sel/Ferram\t`" -#: flatcamGUI/FlatCAMGUI.py:416 +#: flatcamGUI/FlatCAMGUI.py:437 msgid "&Toggle Grid Snap\tG" msgstr "Al&ternar Encaixe na Grade\tG" -#: flatcamGUI/FlatCAMGUI.py:418 +#: flatcamGUI/FlatCAMGUI.py:439 msgid "&Toggle Grid Lines\tALT+G" msgstr "Al&ternar Encaixe na Grade\tALT+G" -#: flatcamGUI/FlatCAMGUI.py:419 +#: flatcamGUI/FlatCAMGUI.py:441 msgid "&Toggle Axis\tSHIFT+G" msgstr "Al&ternar Eixo\tSHIFT+G" -#: flatcamGUI/FlatCAMGUI.py:422 +#: flatcamGUI/FlatCAMGUI.py:443 msgid "Toggle Workspace\tSHIFT+W" msgstr "Alternar Área de Trabalho\tSHIFT+W" -#: flatcamGUI/FlatCAMGUI.py:427 +#: flatcamGUI/FlatCAMGUI.py:448 msgid "Objects" msgstr "Objetos" -#: flatcamGUI/FlatCAMGUI.py:440 +#: flatcamGUI/FlatCAMGUI.py:462 msgid "&Command Line\tS" msgstr "Linha de &Comando\tS" -#: flatcamGUI/FlatCAMGUI.py:445 +#: flatcamGUI/FlatCAMGUI.py:467 msgid "Help" msgstr "Ajuda" -#: flatcamGUI/FlatCAMGUI.py:446 +#: flatcamGUI/FlatCAMGUI.py:469 msgid "Online Help\tF1" msgstr "Ajuda Online\tF1" -#: flatcamGUI/FlatCAMGUI.py:454 +#: flatcamGUI/FlatCAMGUI.py:479 msgid "Report a bug" msgstr "Reportar um bug" -#: flatcamGUI/FlatCAMGUI.py:457 +#: flatcamGUI/FlatCAMGUI.py:482 msgid "Excellon Specification" msgstr "Especificação Excellon" -#: flatcamGUI/FlatCAMGUI.py:459 +#: flatcamGUI/FlatCAMGUI.py:484 msgid "Gerber Specification" msgstr "Especificação Gerber" -#: flatcamGUI/FlatCAMGUI.py:464 +#: flatcamGUI/FlatCAMGUI.py:489 msgid "Shortcuts List\tF3" msgstr "Lista de Atalhos\tF3" -#: flatcamGUI/FlatCAMGUI.py:465 +#: flatcamGUI/FlatCAMGUI.py:491 msgid "YouTube Channel\tF4" msgstr "Canal no YouTube\tF4" -#: flatcamGUI/FlatCAMGUI.py:476 +#: flatcamGUI/FlatCAMGUI.py:502 msgid "Add Circle\tO" msgstr "Adicionar Círculo\tO" -#: flatcamGUI/FlatCAMGUI.py:478 +#: flatcamGUI/FlatCAMGUI.py:505 msgid "Add Arc\tA" msgstr "Adicionar Arco\tA" -#: flatcamGUI/FlatCAMGUI.py:481 +#: flatcamGUI/FlatCAMGUI.py:508 msgid "Add Rectangle\tR" msgstr "Adicionar Retângulo\tR" -#: flatcamGUI/FlatCAMGUI.py:484 +#: flatcamGUI/FlatCAMGUI.py:511 msgid "Add Polygon\tN" msgstr "Adicionar Polígono\tN" -#: flatcamGUI/FlatCAMGUI.py:486 +#: flatcamGUI/FlatCAMGUI.py:514 msgid "Add Path\tP" msgstr "Adicionar Caminho\tP" -#: flatcamGUI/FlatCAMGUI.py:488 +#: flatcamGUI/FlatCAMGUI.py:517 msgid "Add Text\tT" msgstr "Adicionar Texto\tT" -#: flatcamGUI/FlatCAMGUI.py:491 +#: flatcamGUI/FlatCAMGUI.py:520 msgid "Polygon Union\tU" msgstr "Unir Polígonos\tU" -#: flatcamGUI/FlatCAMGUI.py:493 +#: flatcamGUI/FlatCAMGUI.py:522 msgid "Polygon Intersection\tE" msgstr "Interseção de Polígonos\tE" -#: flatcamGUI/FlatCAMGUI.py:495 +#: flatcamGUI/FlatCAMGUI.py:524 msgid "Polygon Subtraction\tS" msgstr "Subtração de Polígonos\tS" -#: flatcamGUI/FlatCAMGUI.py:499 +#: flatcamGUI/FlatCAMGUI.py:528 msgid "Cut Path\tX" msgstr "Caminho de Corte\tX" -#: flatcamGUI/FlatCAMGUI.py:501 +#: flatcamGUI/FlatCAMGUI.py:531 msgid "Copy Geom\tC" msgstr "Copiar Geom\tC" -#: flatcamGUI/FlatCAMGUI.py:503 +#: flatcamGUI/FlatCAMGUI.py:533 msgid "Delete Shape\tDEL" msgstr "Excluir Forma\tDEL" -#: flatcamGUI/FlatCAMGUI.py:506 flatcamGUI/FlatCAMGUI.py:588 +#: flatcamGUI/FlatCAMGUI.py:537 flatcamGUI/FlatCAMGUI.py:624 msgid "Move\tM" msgstr "Mover\tM" -#: flatcamGUI/FlatCAMGUI.py:508 +#: flatcamGUI/FlatCAMGUI.py:539 msgid "Buffer Tool\tB" msgstr "Ferramenta Buffer\tB" -#: flatcamGUI/FlatCAMGUI.py:511 +#: flatcamGUI/FlatCAMGUI.py:542 msgid "Paint Tool\tI" msgstr "Ferramenta de Pintura\tI" -#: flatcamGUI/FlatCAMGUI.py:514 +#: flatcamGUI/FlatCAMGUI.py:545 msgid "Transform Tool\tALT+R" msgstr "Ferramenta de Transformação\tALT+R" -#: flatcamGUI/FlatCAMGUI.py:518 +#: flatcamGUI/FlatCAMGUI.py:549 msgid "Toggle Corner Snap\tK" msgstr "Alternar Encaixe de Canto\tK" -#: flatcamGUI/FlatCAMGUI.py:524 +#: flatcamGUI/FlatCAMGUI.py:555 msgid ">Excellon Editor<" msgstr ">Editor Excellon<" -#: flatcamGUI/FlatCAMGUI.py:528 +#: flatcamGUI/FlatCAMGUI.py:559 msgid "Add Drill Array\tA" msgstr "Adicionar Matriz de Furos\tA" -#: flatcamGUI/FlatCAMGUI.py:530 +#: flatcamGUI/FlatCAMGUI.py:561 msgid "Add Drill\tD" msgstr "Adicionar Furo\tD" -#: flatcamGUI/FlatCAMGUI.py:534 +#: flatcamGUI/FlatCAMGUI.py:565 msgid "Add Slot Array\tQ" msgstr "Adic. Matriz de Ranhuras\tQ" -#: flatcamGUI/FlatCAMGUI.py:536 +#: flatcamGUI/FlatCAMGUI.py:567 msgid "Add Slot\tW" msgstr "Adicionar Ranhura\tW" -#: flatcamGUI/FlatCAMGUI.py:540 +#: flatcamGUI/FlatCAMGUI.py:571 msgid "Resize Drill(S)\tR" msgstr "Redimensionar Furo(s)\tR" -#: flatcamGUI/FlatCAMGUI.py:542 flatcamGUI/FlatCAMGUI.py:583 +#: flatcamGUI/FlatCAMGUI.py:574 flatcamGUI/FlatCAMGUI.py:618 msgid "Copy\tC" msgstr "Copiar\tC" -#: flatcamGUI/FlatCAMGUI.py:544 flatcamGUI/FlatCAMGUI.py:585 +#: flatcamGUI/FlatCAMGUI.py:576 flatcamGUI/FlatCAMGUI.py:620 msgid "Delete\tDEL" msgstr "Excluir\tDEL" -#: flatcamGUI/FlatCAMGUI.py:549 +#: flatcamGUI/FlatCAMGUI.py:581 msgid "Move Drill(s)\tM" msgstr "Mover Furo(s)\tM" -#: flatcamGUI/FlatCAMGUI.py:554 +#: flatcamGUI/FlatCAMGUI.py:586 msgid ">Gerber Editor<" msgstr ">Editor Gerber<" -#: flatcamGUI/FlatCAMGUI.py:558 +#: flatcamGUI/FlatCAMGUI.py:590 msgid "Add Pad\tP" msgstr "Adicionar Pad\tP" -#: flatcamGUI/FlatCAMGUI.py:560 +#: flatcamGUI/FlatCAMGUI.py:592 msgid "Add Pad Array\tA" msgstr "Adicionar Matriz de Pads\tA" -#: flatcamGUI/FlatCAMGUI.py:562 +#: flatcamGUI/FlatCAMGUI.py:594 msgid "Add Track\tT" msgstr "Adicionar Trilha\tT" -#: flatcamGUI/FlatCAMGUI.py:564 +#: flatcamGUI/FlatCAMGUI.py:596 msgid "Add Region\tN" msgstr "Adicionar Região\tN" -#: flatcamGUI/FlatCAMGUI.py:568 +#: flatcamGUI/FlatCAMGUI.py:600 msgid "Poligonize\tALT+N" msgstr "Poligonizar\tALT+N" -#: flatcamGUI/FlatCAMGUI.py:570 +#: flatcamGUI/FlatCAMGUI.py:602 msgid "Add SemiDisc\tE" msgstr "Adicionar SemiDisco\tE" -#: flatcamGUI/FlatCAMGUI.py:571 +#: flatcamGUI/FlatCAMGUI.py:604 msgid "Add Disc\tD" msgstr "Adicionar Disco\tD" -#: flatcamGUI/FlatCAMGUI.py:573 +#: flatcamGUI/FlatCAMGUI.py:606 msgid "Buffer\tB" msgstr "Buffer\tB" -#: flatcamGUI/FlatCAMGUI.py:574 +#: flatcamGUI/FlatCAMGUI.py:608 msgid "Scale\tS" msgstr "Escala\tS" -#: flatcamGUI/FlatCAMGUI.py:576 +#: flatcamGUI/FlatCAMGUI.py:610 msgid "Mark Area\tALT+A" msgstr "Marcar Área\tALT+A" -#: flatcamGUI/FlatCAMGUI.py:578 +#: flatcamGUI/FlatCAMGUI.py:612 msgid "Eraser\tCTRL+E" msgstr "Borracha\tCTRL+E" -#: flatcamGUI/FlatCAMGUI.py:580 +#: flatcamGUI/FlatCAMGUI.py:614 msgid "Transform\tALT+R" msgstr "Transformar\tALT+R" -#: flatcamGUI/FlatCAMGUI.py:603 +#: flatcamGUI/FlatCAMGUI.py:640 msgid "Enable Plot" msgstr "Habilitar Gráfico" -#: flatcamGUI/FlatCAMGUI.py:604 +#: flatcamGUI/FlatCAMGUI.py:642 msgid "Disable Plot" msgstr "Desabilitar Gráfico" -#: flatcamGUI/FlatCAMGUI.py:606 +#: flatcamGUI/FlatCAMGUI.py:645 msgid "Generate CNC" msgstr "Gerar CNC" -#: flatcamGUI/FlatCAMGUI.py:607 +#: flatcamGUI/FlatCAMGUI.py:647 msgid "View Source" msgstr "Ver Fonte" -#: flatcamGUI/FlatCAMGUI.py:615 flatcamGUI/FlatCAMGUI.py:1974 +#: flatcamGUI/FlatCAMGUI.py:660 flatcamGUI/FlatCAMGUI.py:2141 #: flatcamTools/ToolProperties.py:30 msgid "Properties" msgstr "Propriedades" -#: flatcamGUI/FlatCAMGUI.py:644 +#: flatcamGUI/FlatCAMGUI.py:689 msgid "File Toolbar" msgstr "Barra de Ferramentas de Arquivos" -#: flatcamGUI/FlatCAMGUI.py:648 +#: flatcamGUI/FlatCAMGUI.py:693 msgid "Edit Toolbar" msgstr "Barra de Ferramentas Editar" -#: flatcamGUI/FlatCAMGUI.py:652 +#: flatcamGUI/FlatCAMGUI.py:697 msgid "View Toolbar" msgstr "Barra de Ferramentas Ver" -#: flatcamGUI/FlatCAMGUI.py:656 +#: flatcamGUI/FlatCAMGUI.py:701 msgid "Shell Toolbar" msgstr "Barra de Ferramentas Shell" -#: flatcamGUI/FlatCAMGUI.py:660 +#: flatcamGUI/FlatCAMGUI.py:705 msgid "Tools Toolbar" msgstr "Barra de Ferramentas Ferramentas" -#: flatcamGUI/FlatCAMGUI.py:664 +#: flatcamGUI/FlatCAMGUI.py:709 msgid "Excellon Editor Toolbar" msgstr "Barra de Ferramentas Editor Excellon" -#: flatcamGUI/FlatCAMGUI.py:670 +#: flatcamGUI/FlatCAMGUI.py:715 msgid "Geometry Editor Toolbar" msgstr "Barra de Ferramentas Editor de Geometria" -#: flatcamGUI/FlatCAMGUI.py:674 +#: flatcamGUI/FlatCAMGUI.py:719 msgid "Gerber Editor Toolbar" msgstr "Barra de Ferramentas Editor Gerber" -#: flatcamGUI/FlatCAMGUI.py:678 +#: flatcamGUI/FlatCAMGUI.py:723 msgid "Grid Toolbar" msgstr "Barra de Ferramentas Grade" -#: flatcamGUI/FlatCAMGUI.py:699 flatcamGUI/FlatCAMGUI.py:2152 +#: flatcamGUI/FlatCAMGUI.py:746 flatcamGUI/FlatCAMGUI.py:2322 msgid "Open project" msgstr "Abrir projeto" -#: flatcamGUI/FlatCAMGUI.py:700 flatcamGUI/FlatCAMGUI.py:2153 +#: flatcamGUI/FlatCAMGUI.py:748 flatcamGUI/FlatCAMGUI.py:2324 msgid "Save project" msgstr "Salvar projeto" -#: flatcamGUI/FlatCAMGUI.py:705 flatcamGUI/FlatCAMGUI.py:2156 +#: flatcamGUI/FlatCAMGUI.py:754 flatcamGUI/FlatCAMGUI.py:2328 msgid "New Blank Geometry" msgstr "Nova Geometria em Branco" -#: flatcamGUI/FlatCAMGUI.py:706 flatcamGUI/FlatCAMGUI.py:2157 +#: flatcamGUI/FlatCAMGUI.py:756 flatcamGUI/FlatCAMGUI.py:2330 msgid "New Blank Gerber" msgstr "Novo Gerber em Branco" -#: flatcamGUI/FlatCAMGUI.py:707 flatcamGUI/FlatCAMGUI.py:2158 +#: flatcamGUI/FlatCAMGUI.py:758 flatcamGUI/FlatCAMGUI.py:2332 msgid "New Blank Excellon" msgstr "Novo Excellon em Branco" -#: flatcamGUI/FlatCAMGUI.py:711 flatcamGUI/FlatCAMGUI.py:2162 +#: flatcamGUI/FlatCAMGUI.py:763 flatcamGUI/FlatCAMGUI.py:2338 msgid "Save Object and close the Editor" msgstr "Salvar objeto e fechar o editor" -#: flatcamGUI/FlatCAMGUI.py:716 flatcamGUI/FlatCAMGUI.py:2167 +#: flatcamGUI/FlatCAMGUI.py:770 flatcamGUI/FlatCAMGUI.py:2345 msgid "&Delete" msgstr "&Excluir" -#: flatcamGUI/FlatCAMGUI.py:718 flatcamGUI/FlatCAMGUI.py:1466 -#: flatcamGUI/FlatCAMGUI.py:1665 flatcamGUI/FlatCAMGUI.py:2169 +#: flatcamGUI/FlatCAMGUI.py:773 flatcamGUI/FlatCAMGUI.py:1582 +#: flatcamGUI/FlatCAMGUI.py:1781 flatcamGUI/FlatCAMGUI.py:2348 #: flatcamTools/ToolDistance.py:30 flatcamTools/ToolDistance.py:160 msgid "Distance Tool" msgstr "Ferramenta de Distância" -#: flatcamGUI/FlatCAMGUI.py:720 flatcamGUI/FlatCAMGUI.py:2171 +#: flatcamGUI/FlatCAMGUI.py:775 flatcamGUI/FlatCAMGUI.py:2350 msgid "Distance Min Tool" msgstr "Ferramenta Distância Min" -#: flatcamGUI/FlatCAMGUI.py:721 flatcamGUI/FlatCAMGUI.py:1459 -#: flatcamGUI/FlatCAMGUI.py:2172 +#: flatcamGUI/FlatCAMGUI.py:777 flatcamGUI/FlatCAMGUI.py:1575 +#: flatcamGUI/FlatCAMGUI.py:2352 msgid "Set Origin" msgstr "Definir Origem" -#: flatcamGUI/FlatCAMGUI.py:722 flatcamGUI/FlatCAMGUI.py:2173 +#: flatcamGUI/FlatCAMGUI.py:779 flatcamGUI/FlatCAMGUI.py:2354 msgid "Jump to Location" msgstr "Ir para a localização" -#: flatcamGUI/FlatCAMGUI.py:727 flatcamGUI/FlatCAMGUI.py:2176 +#: flatcamGUI/FlatCAMGUI.py:785 flatcamGUI/FlatCAMGUI.py:2358 msgid "&Replot" msgstr "&Redesenhar" -#: flatcamGUI/FlatCAMGUI.py:728 flatcamGUI/FlatCAMGUI.py:2177 +#: flatcamGUI/FlatCAMGUI.py:787 flatcamGUI/FlatCAMGUI.py:2360 msgid "&Clear plot" msgstr "Limpar gráfi&co" -#: flatcamGUI/FlatCAMGUI.py:729 flatcamGUI/FlatCAMGUI.py:1462 -#: flatcamGUI/FlatCAMGUI.py:2178 +#: flatcamGUI/FlatCAMGUI.py:789 flatcamGUI/FlatCAMGUI.py:1578 +#: flatcamGUI/FlatCAMGUI.py:2362 msgid "Zoom In" msgstr "Zoom +" -#: flatcamGUI/FlatCAMGUI.py:730 flatcamGUI/FlatCAMGUI.py:1462 -#: flatcamGUI/FlatCAMGUI.py:2179 +#: flatcamGUI/FlatCAMGUI.py:791 flatcamGUI/FlatCAMGUI.py:1578 +#: flatcamGUI/FlatCAMGUI.py:2364 msgid "Zoom Out" msgstr "Zoom -" -#: flatcamGUI/FlatCAMGUI.py:731 flatcamGUI/FlatCAMGUI.py:1461 -#: flatcamGUI/FlatCAMGUI.py:1905 flatcamGUI/FlatCAMGUI.py:2180 +#: flatcamGUI/FlatCAMGUI.py:793 flatcamGUI/FlatCAMGUI.py:1577 +#: flatcamGUI/FlatCAMGUI.py:2031 flatcamGUI/FlatCAMGUI.py:2366 msgid "Zoom Fit" msgstr "Zoom Ajustado" -#: flatcamGUI/FlatCAMGUI.py:738 flatcamGUI/FlatCAMGUI.py:2185 +#: flatcamGUI/FlatCAMGUI.py:801 flatcamGUI/FlatCAMGUI.py:2372 msgid "&Command Line" msgstr "Linha de &Comando" -#: flatcamGUI/FlatCAMGUI.py:746 flatcamGUI/FlatCAMGUI.py:2191 +#: flatcamGUI/FlatCAMGUI.py:813 flatcamGUI/FlatCAMGUI.py:2382 msgid "2Sided Tool" msgstr "PCB de 2 Faces" -#: flatcamGUI/FlatCAMGUI.py:747 flatcamGUI/ObjectUI.py:577 +#: flatcamGUI/FlatCAMGUI.py:815 flatcamGUI/ObjectUI.py:588 #: flatcamTools/ToolCutOut.py:434 msgid "Cutout Tool" msgstr "Ferramenta de Recorte" -#: flatcamGUI/FlatCAMGUI.py:748 flatcamGUI/FlatCAMGUI.py:2193 -#: flatcamGUI/ObjectUI.py:555 flatcamGUI/ObjectUI.py:1712 -#: flatcamTools/ToolNonCopperClear.py:637 +#: flatcamGUI/FlatCAMGUI.py:817 flatcamGUI/FlatCAMGUI.py:2386 +#: flatcamGUI/ObjectUI.py:566 flatcamGUI/ObjectUI.py:1751 +#: flatcamTools/ToolNonCopperClear.py:638 msgid "NCC Tool" msgstr "Ferramenta NCC" -#: flatcamGUI/FlatCAMGUI.py:752 flatcamGUI/FlatCAMGUI.py:2197 +#: flatcamGUI/FlatCAMGUI.py:823 flatcamGUI/FlatCAMGUI.py:2392 msgid "Panel Tool" msgstr "Ferramenta de Painel" -#: flatcamGUI/FlatCAMGUI.py:753 flatcamGUI/FlatCAMGUI.py:2198 +#: flatcamGUI/FlatCAMGUI.py:825 flatcamGUI/FlatCAMGUI.py:2394 #: flatcamTools/ToolFilm.py:578 msgid "Film Tool" msgstr "Ferramenta de Filme" -#: flatcamGUI/FlatCAMGUI.py:754 flatcamGUI/FlatCAMGUI.py:2200 +#: flatcamGUI/FlatCAMGUI.py:827 flatcamGUI/FlatCAMGUI.py:2397 #: flatcamTools/ToolSolderPaste.py:547 msgid "SolderPaste Tool" msgstr "Ferramenta Pasta de Solda" -#: flatcamGUI/FlatCAMGUI.py:755 flatcamGUI/FlatCAMGUI.py:2201 +#: flatcamGUI/FlatCAMGUI.py:829 flatcamGUI/FlatCAMGUI.py:2399 #: flatcamTools/ToolSub.py:35 msgid "Subtract Tool" msgstr "Ferramenta Subtrair" -#: flatcamGUI/FlatCAMGUI.py:756 flatcamTools/ToolRulesCheck.py:607 +#: flatcamGUI/FlatCAMGUI.py:831 flatcamTools/ToolRulesCheck.py:607 msgid "Rules Tool" msgstr "Ferramenta de Regras" -#: flatcamGUI/FlatCAMGUI.py:757 flatcamGUI/FlatCAMGUI.py:1477 +#: flatcamGUI/FlatCAMGUI.py:833 flatcamGUI/FlatCAMGUI.py:1593 #: flatcamTools/ToolOptimal.py:34 flatcamTools/ToolOptimal.py:310 msgid "Optimal Tool" msgstr "Ferramenta Ideal" -#: flatcamGUI/FlatCAMGUI.py:761 flatcamGUI/FlatCAMGUI.py:1475 -#: flatcamGUI/FlatCAMGUI.py:2206 +#: flatcamGUI/FlatCAMGUI.py:838 flatcamGUI/FlatCAMGUI.py:1591 +#: flatcamGUI/FlatCAMGUI.py:2404 msgid "Calculators Tool" msgstr "Calculadoras" -#: flatcamGUI/FlatCAMGUI.py:763 flatcamGUI/FlatCAMGUI.py:1478 -#: flatcamGUI/FlatCAMGUI.py:2208 flatcamTools/ToolQRCode.py:43 +#: flatcamGUI/FlatCAMGUI.py:842 flatcamGUI/FlatCAMGUI.py:1594 +#: flatcamGUI/FlatCAMGUI.py:2408 flatcamTools/ToolQRCode.py:43 #: flatcamTools/ToolQRCode.py:382 msgid "QRCode Tool" msgstr "Ferramenta de QRCode" -#: flatcamGUI/FlatCAMGUI.py:765 flatcamGUI/FlatCAMGUI.py:2210 +#: flatcamGUI/FlatCAMGUI.py:844 flatcamGUI/FlatCAMGUI.py:2410 #: flatcamTools/ToolCopperThieving.py:40 flatcamTools/ToolCopperThieving.py:566 msgid "Copper Thieving Tool" msgstr "Ferramenta de Adição de Cobre" -#: flatcamGUI/FlatCAMGUI.py:767 flatcamGUI/FlatCAMGUI.py:1475 -#: flatcamGUI/FlatCAMGUI.py:2212 flatcamTools/ToolFiducials.py:33 +#: flatcamGUI/FlatCAMGUI.py:847 flatcamGUI/FlatCAMGUI.py:1591 +#: flatcamGUI/FlatCAMGUI.py:2413 flatcamTools/ToolFiducials.py:33 #: flatcamTools/ToolFiducials.py:393 msgid "Fiducials Tool" msgstr "Ferramenta de Fiduciais" -#: flatcamGUI/FlatCAMGUI.py:768 flatcamGUI/FlatCAMGUI.py:2213 +#: flatcamGUI/FlatCAMGUI.py:849 flatcamGUI/FlatCAMGUI.py:2415 #: flatcamTools/ToolCalibration.py:37 flatcamTools/ToolCalibration.py:762 msgid "Calibration Tool" msgstr "Calibração" -#: flatcamGUI/FlatCAMGUI.py:773 flatcamGUI/FlatCAMGUI.py:792 -#: flatcamGUI/FlatCAMGUI.py:830 flatcamGUI/FlatCAMGUI.py:2216 -#: flatcamGUI/FlatCAMGUI.py:2271 +#: flatcamGUI/FlatCAMGUI.py:855 flatcamGUI/FlatCAMGUI.py:881 +#: flatcamGUI/FlatCAMGUI.py:933 flatcamGUI/FlatCAMGUI.py:2419 +#: flatcamGUI/FlatCAMGUI.py:2493 msgid "Select" msgstr "Selecionar" -#: flatcamGUI/FlatCAMGUI.py:774 flatcamGUI/FlatCAMGUI.py:2217 +#: flatcamGUI/FlatCAMGUI.py:857 flatcamGUI/FlatCAMGUI.py:2421 msgid "Add Drill Hole" msgstr "Adicionar Furo" -#: flatcamGUI/FlatCAMGUI.py:776 flatcamGUI/FlatCAMGUI.py:2219 +#: flatcamGUI/FlatCAMGUI.py:859 flatcamGUI/FlatCAMGUI.py:2423 msgid "Add Drill Hole Array" msgstr "Adicionar Matriz do Furos" -#: flatcamGUI/FlatCAMGUI.py:777 flatcamGUI/FlatCAMGUI.py:1750 -#: flatcamGUI/FlatCAMGUI.py:1960 flatcamGUI/FlatCAMGUI.py:2221 +#: flatcamGUI/FlatCAMGUI.py:861 flatcamGUI/FlatCAMGUI.py:1866 +#: flatcamGUI/FlatCAMGUI.py:2119 flatcamGUI/FlatCAMGUI.py:2427 msgid "Add Slot" msgstr "Adicionar Ranhura" -#: flatcamGUI/FlatCAMGUI.py:779 flatcamGUI/FlatCAMGUI.py:1749 -#: flatcamGUI/FlatCAMGUI.py:1961 flatcamGUI/FlatCAMGUI.py:2223 +#: flatcamGUI/FlatCAMGUI.py:863 flatcamGUI/FlatCAMGUI.py:1865 +#: flatcamGUI/FlatCAMGUI.py:2121 flatcamGUI/FlatCAMGUI.py:2429 msgid "Add Slot Array" msgstr "Adicionar Matriz de Ranhuras" -#: flatcamGUI/FlatCAMGUI.py:780 flatcamGUI/FlatCAMGUI.py:1963 -#: flatcamGUI/FlatCAMGUI.py:2220 +#: flatcamGUI/FlatCAMGUI.py:865 flatcamGUI/FlatCAMGUI.py:2124 +#: flatcamGUI/FlatCAMGUI.py:2425 msgid "Resize Drill" msgstr "Redimensionar Furo" -#: flatcamGUI/FlatCAMGUI.py:783 flatcamGUI/FlatCAMGUI.py:2226 +#: flatcamGUI/FlatCAMGUI.py:869 flatcamGUI/FlatCAMGUI.py:2433 msgid "Copy Drill" msgstr "Copiar Furo" -#: flatcamGUI/FlatCAMGUI.py:784 flatcamGUI/FlatCAMGUI.py:2228 +#: flatcamGUI/FlatCAMGUI.py:871 flatcamGUI/FlatCAMGUI.py:2435 msgid "Delete Drill" msgstr "Excluir Furo" -#: flatcamGUI/FlatCAMGUI.py:787 flatcamGUI/FlatCAMGUI.py:2231 +#: flatcamGUI/FlatCAMGUI.py:875 flatcamGUI/FlatCAMGUI.py:2439 msgid "Move Drill" msgstr "Mover Furo" -#: flatcamGUI/FlatCAMGUI.py:793 flatcamGUI/FlatCAMGUI.py:2235 +#: flatcamGUI/FlatCAMGUI.py:883 flatcamGUI/FlatCAMGUI.py:2445 msgid "Add Circle" msgstr "Adicionar Círculo" -#: flatcamGUI/FlatCAMGUI.py:794 flatcamGUI/FlatCAMGUI.py:2236 +#: flatcamGUI/FlatCAMGUI.py:885 flatcamGUI/FlatCAMGUI.py:2447 msgid "Add Arc" msgstr "Adicionar Arco" -#: flatcamGUI/FlatCAMGUI.py:796 flatcamGUI/FlatCAMGUI.py:2238 +#: flatcamGUI/FlatCAMGUI.py:887 flatcamGUI/FlatCAMGUI.py:2449 msgid "Add Rectangle" msgstr "Adicionar Retângulo" -#: flatcamGUI/FlatCAMGUI.py:799 flatcamGUI/FlatCAMGUI.py:2241 +#: flatcamGUI/FlatCAMGUI.py:891 flatcamGUI/FlatCAMGUI.py:2453 msgid "Add Path" msgstr "Adicionar Caminho" -#: flatcamGUI/FlatCAMGUI.py:800 flatcamGUI/FlatCAMGUI.py:2243 +#: flatcamGUI/FlatCAMGUI.py:893 flatcamGUI/FlatCAMGUI.py:2455 msgid "Add Polygon" msgstr "Adicionar Polígono" -#: flatcamGUI/FlatCAMGUI.py:802 flatcamGUI/FlatCAMGUI.py:2245 +#: flatcamGUI/FlatCAMGUI.py:896 flatcamGUI/FlatCAMGUI.py:2458 msgid "Add Text" msgstr "Adicionar Texto" -#: flatcamGUI/FlatCAMGUI.py:803 flatcamGUI/FlatCAMGUI.py:2246 +#: flatcamGUI/FlatCAMGUI.py:898 flatcamGUI/FlatCAMGUI.py:2460 msgid "Add Buffer" msgstr "Adicionar Buffer" -#: flatcamGUI/FlatCAMGUI.py:804 flatcamGUI/FlatCAMGUI.py:2247 +#: flatcamGUI/FlatCAMGUI.py:900 flatcamGUI/FlatCAMGUI.py:2462 msgid "Paint Shape" msgstr "Pintar Forma" -#: flatcamGUI/FlatCAMGUI.py:805 flatcamGUI/FlatCAMGUI.py:847 -#: flatcamGUI/FlatCAMGUI.py:1922 flatcamGUI/FlatCAMGUI.py:1950 -#: flatcamGUI/FlatCAMGUI.py:2248 flatcamGUI/FlatCAMGUI.py:2287 +#: flatcamGUI/FlatCAMGUI.py:902 flatcamGUI/FlatCAMGUI.py:959 +#: flatcamGUI/FlatCAMGUI.py:2060 flatcamGUI/FlatCAMGUI.py:2105 +#: flatcamGUI/FlatCAMGUI.py:2464 flatcamGUI/FlatCAMGUI.py:2518 msgid "Eraser" msgstr "Borracha" -#: flatcamGUI/FlatCAMGUI.py:808 flatcamGUI/FlatCAMGUI.py:2251 +#: flatcamGUI/FlatCAMGUI.py:906 flatcamGUI/FlatCAMGUI.py:2468 msgid "Polygon Union" msgstr "União de Polígonos" -#: flatcamGUI/FlatCAMGUI.py:809 flatcamGUI/FlatCAMGUI.py:2252 +#: flatcamGUI/FlatCAMGUI.py:908 flatcamGUI/FlatCAMGUI.py:2470 msgid "Polygon Explode" msgstr "Explosão de Polígonos" -#: flatcamGUI/FlatCAMGUI.py:812 flatcamGUI/FlatCAMGUI.py:2255 +#: flatcamGUI/FlatCAMGUI.py:911 flatcamGUI/FlatCAMGUI.py:2473 msgid "Polygon Intersection" msgstr "Interseção de Polígonos" -#: flatcamGUI/FlatCAMGUI.py:814 flatcamGUI/FlatCAMGUI.py:2257 +#: flatcamGUI/FlatCAMGUI.py:913 flatcamGUI/FlatCAMGUI.py:2475 msgid "Polygon Subtraction" msgstr "Subtração de Polígonos" -#: flatcamGUI/FlatCAMGUI.py:817 flatcamGUI/FlatCAMGUI.py:2260 +#: flatcamGUI/FlatCAMGUI.py:917 flatcamGUI/FlatCAMGUI.py:2479 msgid "Cut Path" msgstr "Caminho de Corte" -#: flatcamGUI/FlatCAMGUI.py:818 +#: flatcamGUI/FlatCAMGUI.py:919 msgid "Copy Shape(s)" msgstr "Copiar Forma(s)" -#: flatcamGUI/FlatCAMGUI.py:821 +#: flatcamGUI/FlatCAMGUI.py:922 msgid "Delete Shape '-'" msgstr "Excluir Forma '-'" -#: flatcamGUI/FlatCAMGUI.py:823 flatcamGUI/FlatCAMGUI.py:854 -#: flatcamGUI/FlatCAMGUI.py:1929 flatcamGUI/FlatCAMGUI.py:1954 -#: flatcamGUI/FlatCAMGUI.py:2265 flatcamGUI/FlatCAMGUI.py:2294 +#: flatcamGUI/FlatCAMGUI.py:924 flatcamGUI/FlatCAMGUI.py:967 +#: flatcamGUI/FlatCAMGUI.py:2072 flatcamGUI/FlatCAMGUI.py:2109 +#: flatcamGUI/FlatCAMGUI.py:2485 flatcamGUI/FlatCAMGUI.py:2526 msgid "Transformations" msgstr "Transformações" -#: flatcamGUI/FlatCAMGUI.py:825 +#: flatcamGUI/FlatCAMGUI.py:927 msgid "Move Objects " msgstr "Mover Objetos " -#: flatcamGUI/FlatCAMGUI.py:831 flatcamGUI/FlatCAMGUI.py:1869 -#: flatcamGUI/FlatCAMGUI.py:2272 +#: flatcamGUI/FlatCAMGUI.py:935 flatcamGUI/FlatCAMGUI.py:1985 +#: flatcamGUI/FlatCAMGUI.py:2495 msgid "Add Pad" msgstr "Adicionar Pad" -#: flatcamGUI/FlatCAMGUI.py:833 flatcamGUI/FlatCAMGUI.py:1870 -#: flatcamGUI/FlatCAMGUI.py:2274 +#: flatcamGUI/FlatCAMGUI.py:939 flatcamGUI/FlatCAMGUI.py:1986 +#: flatcamGUI/FlatCAMGUI.py:2499 msgid "Add Track" msgstr "Adicionar Trilha" -#: flatcamGUI/FlatCAMGUI.py:834 flatcamGUI/FlatCAMGUI.py:1869 -#: flatcamGUI/FlatCAMGUI.py:2275 +#: flatcamGUI/FlatCAMGUI.py:941 flatcamGUI/FlatCAMGUI.py:1985 +#: flatcamGUI/FlatCAMGUI.py:2501 msgid "Add Region" msgstr "Adicionar Região" -#: flatcamGUI/FlatCAMGUI.py:836 flatcamGUI/FlatCAMGUI.py:1942 -#: flatcamGUI/FlatCAMGUI.py:2277 +#: flatcamGUI/FlatCAMGUI.py:943 flatcamGUI/FlatCAMGUI.py:2091 +#: flatcamGUI/FlatCAMGUI.py:2503 msgid "Poligonize" msgstr "Poligonizar" -#: flatcamGUI/FlatCAMGUI.py:838 flatcamGUI/FlatCAMGUI.py:1943 -#: flatcamGUI/FlatCAMGUI.py:2279 +#: flatcamGUI/FlatCAMGUI.py:946 flatcamGUI/FlatCAMGUI.py:2093 +#: flatcamGUI/FlatCAMGUI.py:2506 msgid "SemiDisc" msgstr "SemiDisco" -#: flatcamGUI/FlatCAMGUI.py:839 flatcamGUI/FlatCAMGUI.py:1944 -#: flatcamGUI/FlatCAMGUI.py:2280 +#: flatcamGUI/FlatCAMGUI.py:948 flatcamGUI/FlatCAMGUI.py:2095 +#: flatcamGUI/FlatCAMGUI.py:2508 msgid "Disc" msgstr "Disco" -#: flatcamGUI/FlatCAMGUI.py:845 flatcamGUI/FlatCAMGUI.py:1949 -#: flatcamGUI/FlatCAMGUI.py:2286 +#: flatcamGUI/FlatCAMGUI.py:956 flatcamGUI/FlatCAMGUI.py:2103 +#: flatcamGUI/FlatCAMGUI.py:2516 msgid "Mark Area" msgstr "Marcar Área" -#: flatcamGUI/FlatCAMGUI.py:856 flatcamGUI/FlatCAMGUI.py:1869 -#: flatcamGUI/FlatCAMGUI.py:1932 flatcamGUI/FlatCAMGUI.py:1973 -#: flatcamGUI/FlatCAMGUI.py:2296 flatcamTools/ToolMove.py:28 +#: flatcamGUI/FlatCAMGUI.py:970 flatcamGUI/FlatCAMGUI.py:1985 +#: flatcamGUI/FlatCAMGUI.py:2076 flatcamGUI/FlatCAMGUI.py:2139 +#: flatcamGUI/FlatCAMGUI.py:2529 flatcamTools/ToolMove.py:28 msgid "Move" msgstr "Mover" -#: flatcamGUI/FlatCAMGUI.py:863 flatcamGUI/FlatCAMGUI.py:2302 +#: flatcamGUI/FlatCAMGUI.py:978 flatcamGUI/FlatCAMGUI.py:2536 msgid "Snap to grid" msgstr "Encaixar na Grade" -#: flatcamGUI/FlatCAMGUI.py:866 flatcamGUI/FlatCAMGUI.py:2305 +#: flatcamGUI/FlatCAMGUI.py:981 flatcamGUI/FlatCAMGUI.py:2539 msgid "Grid X snapping distance" msgstr "Distância de encaixe Grade X" -#: flatcamGUI/FlatCAMGUI.py:871 flatcamGUI/FlatCAMGUI.py:2310 +#: flatcamGUI/FlatCAMGUI.py:986 flatcamGUI/FlatCAMGUI.py:2544 msgid "Grid Y snapping distance" msgstr "Distância de encaixe Grade Y" -#: flatcamGUI/FlatCAMGUI.py:877 flatcamGUI/FlatCAMGUI.py:2316 +#: flatcamGUI/FlatCAMGUI.py:992 flatcamGUI/FlatCAMGUI.py:2550 msgid "" "When active, value on Grid_X\n" "is copied to the Grid_Y value." @@ -6205,63 +6205,63 @@ msgstr "" "Quando ativo, o valor em Grid_X\n" "é copiado para o valor Grid_Y." -#: flatcamGUI/FlatCAMGUI.py:883 flatcamGUI/FlatCAMGUI.py:2322 +#: flatcamGUI/FlatCAMGUI.py:999 flatcamGUI/FlatCAMGUI.py:2557 msgid "Snap to corner" msgstr "Encaixar no canto" -#: flatcamGUI/FlatCAMGUI.py:887 flatcamGUI/FlatCAMGUI.py:2326 +#: flatcamGUI/FlatCAMGUI.py:1003 flatcamGUI/FlatCAMGUI.py:2561 #: flatcamGUI/PreferencesUI.py:348 msgid "Max. magnet distance" msgstr "Distância magnética max." -#: flatcamGUI/FlatCAMGUI.py:921 +#: flatcamGUI/FlatCAMGUI.py:1037 msgid "Selected" msgstr "Selecionado" -#: flatcamGUI/FlatCAMGUI.py:948 flatcamGUI/FlatCAMGUI.py:956 +#: flatcamGUI/FlatCAMGUI.py:1064 flatcamGUI/FlatCAMGUI.py:1072 msgid "Plot Area" msgstr "Área de Gráfico" -#: flatcamGUI/FlatCAMGUI.py:983 +#: flatcamGUI/FlatCAMGUI.py:1099 msgid "General" msgstr "Geral" -#: flatcamGUI/FlatCAMGUI.py:998 flatcamTools/ToolCopperThieving.py:74 +#: flatcamGUI/FlatCAMGUI.py:1114 flatcamTools/ToolCopperThieving.py:74 #: flatcamTools/ToolDblSided.py:57 flatcamTools/ToolOptimal.py:71 #: flatcamTools/ToolQRCode.py:77 msgid "GERBER" msgstr "Gerber" -#: flatcamGUI/FlatCAMGUI.py:1008 flatcamTools/ToolDblSided.py:85 +#: flatcamGUI/FlatCAMGUI.py:1124 flatcamTools/ToolDblSided.py:85 msgid "EXCELLON" msgstr "Excellon" -#: flatcamGUI/FlatCAMGUI.py:1018 flatcamTools/ToolDblSided.py:113 +#: flatcamGUI/FlatCAMGUI.py:1134 flatcamTools/ToolDblSided.py:113 msgid "GEOMETRY" msgstr "Geometria" -#: flatcamGUI/FlatCAMGUI.py:1028 +#: flatcamGUI/FlatCAMGUI.py:1144 msgid "CNC-JOB" msgstr "Trabalho CNC" -#: flatcamGUI/FlatCAMGUI.py:1037 flatcamGUI/ObjectUI.py:544 -#: flatcamGUI/ObjectUI.py:1687 +#: flatcamGUI/FlatCAMGUI.py:1153 flatcamGUI/ObjectUI.py:555 +#: flatcamGUI/ObjectUI.py:1726 msgid "TOOLS" msgstr "Ferramentas" -#: flatcamGUI/FlatCAMGUI.py:1046 +#: flatcamGUI/FlatCAMGUI.py:1162 msgid "TOOLS 2" msgstr "Ferramentas 2" -#: flatcamGUI/FlatCAMGUI.py:1056 +#: flatcamGUI/FlatCAMGUI.py:1172 msgid "UTILITIES" msgstr "Utilitários" -#: flatcamGUI/FlatCAMGUI.py:1073 +#: flatcamGUI/FlatCAMGUI.py:1189 msgid "Import Preferences" msgstr "Importar Preferências" -#: flatcamGUI/FlatCAMGUI.py:1076 +#: flatcamGUI/FlatCAMGUI.py:1192 msgid "" "Import a full set of FlatCAM settings from a file\n" "previously saved on HDD.\n" @@ -6275,11 +6275,11 @@ msgstr "" "FlatCAM salva automaticamente o arquivo 'factory_defaults'\n" "na primeira inicialização. Não exclua esse arquivo." -#: flatcamGUI/FlatCAMGUI.py:1083 +#: flatcamGUI/FlatCAMGUI.py:1199 msgid "Export Preferences" msgstr "Exportar Preferências" -#: flatcamGUI/FlatCAMGUI.py:1086 +#: flatcamGUI/FlatCAMGUI.py:1202 msgid "" "Export a full set of FlatCAM settings in a file\n" "that is saved on HDD." @@ -6287,23 +6287,23 @@ msgstr "" "Exporta um conjunto completo de configurações do FlatCAM em um arquivo\n" "salvo no HDD." -#: flatcamGUI/FlatCAMGUI.py:1091 +#: flatcamGUI/FlatCAMGUI.py:1207 msgid "Open Pref Folder" msgstr "Abrir a Pasta Pref" -#: flatcamGUI/FlatCAMGUI.py:1094 +#: flatcamGUI/FlatCAMGUI.py:1210 msgid "Open the folder where FlatCAM save the preferences files." msgstr "Abre a pasta onde o FlatCAM salva os arquivos de preferências." -#: flatcamGUI/FlatCAMGUI.py:1102 +#: flatcamGUI/FlatCAMGUI.py:1218 msgid "Apply" msgstr "Aplicar" -#: flatcamGUI/FlatCAMGUI.py:1105 +#: flatcamGUI/FlatCAMGUI.py:1221 msgid "Apply the current preferences without saving to a file." msgstr "Aplica as preferências atuais sem salvar em um arquivo." -#: flatcamGUI/FlatCAMGUI.py:1112 +#: flatcamGUI/FlatCAMGUI.py:1228 msgid "" "Save the current settings in the 'current_defaults' file\n" "which is the file storing the working default preferences." @@ -6311,530 +6311,530 @@ msgstr "" "Salva as configurações atuais no arquivo 'current_defaults'\n" "que armazena as preferências padrão de trabalho." -#: flatcamGUI/FlatCAMGUI.py:1120 +#: flatcamGUI/FlatCAMGUI.py:1236 msgid "Will not save the changes and will close the preferences window." msgstr "Não salvará as alterações e fechará a janela de preferências." -#: flatcamGUI/FlatCAMGUI.py:1456 +#: flatcamGUI/FlatCAMGUI.py:1572 msgid "SHOW SHORTCUT LIST" msgstr "Mostra Lista de Teclas de Atalho" -#: flatcamGUI/FlatCAMGUI.py:1456 +#: flatcamGUI/FlatCAMGUI.py:1572 msgid "Switch to Project Tab" msgstr "Alterna para a Aba Projeto" -#: flatcamGUI/FlatCAMGUI.py:1456 +#: flatcamGUI/FlatCAMGUI.py:1572 msgid "Switch to Selected Tab" msgstr "Alterna para a Aba Selecionado" -#: flatcamGUI/FlatCAMGUI.py:1457 +#: flatcamGUI/FlatCAMGUI.py:1573 msgid "Switch to Tool Tab" msgstr "Alterna para a Aba Ferramentas" -#: flatcamGUI/FlatCAMGUI.py:1458 +#: flatcamGUI/FlatCAMGUI.py:1574 msgid "New Gerber" msgstr "Novo Gerber" -#: flatcamGUI/FlatCAMGUI.py:1458 +#: flatcamGUI/FlatCAMGUI.py:1574 msgid "Edit Object (if selected)" msgstr "Editar Objeto (se selecionado)" -#: flatcamGUI/FlatCAMGUI.py:1458 +#: flatcamGUI/FlatCAMGUI.py:1574 msgid "Jump to Coordinates" msgstr "Ir para a Coordenada" -#: flatcamGUI/FlatCAMGUI.py:1459 +#: flatcamGUI/FlatCAMGUI.py:1575 msgid "New Excellon" msgstr "Novo Excellon" -#: flatcamGUI/FlatCAMGUI.py:1459 +#: flatcamGUI/FlatCAMGUI.py:1575 msgid "Move Obj" msgstr "Mover Obj" -#: flatcamGUI/FlatCAMGUI.py:1459 +#: flatcamGUI/FlatCAMGUI.py:1575 msgid "New Geometry" msgstr "Nova Geometria" -#: flatcamGUI/FlatCAMGUI.py:1459 +#: flatcamGUI/FlatCAMGUI.py:1575 msgid "Change Units" msgstr "Alternar Unidades" -#: flatcamGUI/FlatCAMGUI.py:1460 +#: flatcamGUI/FlatCAMGUI.py:1576 msgid "Open Properties Tool" msgstr "Abre Ferramenta Propriedades" -#: flatcamGUI/FlatCAMGUI.py:1460 +#: flatcamGUI/FlatCAMGUI.py:1576 msgid "Rotate by 90 degree CW" msgstr "Girar 90º sentido horário" -#: flatcamGUI/FlatCAMGUI.py:1460 +#: flatcamGUI/FlatCAMGUI.py:1576 msgid "Shell Toggle" msgstr "Alterna Linha de Comando" -#: flatcamGUI/FlatCAMGUI.py:1461 +#: flatcamGUI/FlatCAMGUI.py:1577 msgid "" "Add a Tool (when in Geometry Selected Tab or in Tools NCC or Tools Paint)" msgstr "" "Adicionar uma ferramenta (quando estiver na Aba Selecionado ou em " "Ferramentas NCC ou de Pintura)" -#: flatcamGUI/FlatCAMGUI.py:1462 +#: flatcamGUI/FlatCAMGUI.py:1578 msgid "Flip on X_axis" msgstr "Espelhar no Eixo X" -#: flatcamGUI/FlatCAMGUI.py:1462 +#: flatcamGUI/FlatCAMGUI.py:1578 msgid "Flip on Y_axis" msgstr "Espelhar no Eixo Y" -#: flatcamGUI/FlatCAMGUI.py:1465 +#: flatcamGUI/FlatCAMGUI.py:1581 msgid "Copy Obj" msgstr "Copiar Obj" -#: flatcamGUI/FlatCAMGUI.py:1465 +#: flatcamGUI/FlatCAMGUI.py:1581 msgid "Open Tools Database" msgstr "Abre Banco de Dados de Ferramentas" -#: flatcamGUI/FlatCAMGUI.py:1466 +#: flatcamGUI/FlatCAMGUI.py:1582 msgid "Open Excellon File" msgstr "Abrir Excellon" -#: flatcamGUI/FlatCAMGUI.py:1466 +#: flatcamGUI/FlatCAMGUI.py:1582 msgid "Open Gerber File" msgstr "Abrir Gerber" -#: flatcamGUI/FlatCAMGUI.py:1466 +#: flatcamGUI/FlatCAMGUI.py:1582 msgid "New Project" msgstr "Novo Projeto" -#: flatcamGUI/FlatCAMGUI.py:1467 flatcamTools/ToolPDF.py:42 +#: flatcamGUI/FlatCAMGUI.py:1583 flatcamTools/ToolPDF.py:42 msgid "PDF Import Tool" msgstr "Ferramenta de Importação de PDF" -#: flatcamGUI/FlatCAMGUI.py:1467 +#: flatcamGUI/FlatCAMGUI.py:1583 msgid "Save Project As" msgstr "Salvar Projeto Como" -#: flatcamGUI/FlatCAMGUI.py:1467 +#: flatcamGUI/FlatCAMGUI.py:1583 msgid "Toggle Plot Area" msgstr "Alternar Área de Gráficos" -#: flatcamGUI/FlatCAMGUI.py:1470 +#: flatcamGUI/FlatCAMGUI.py:1586 msgid "Copy Obj_Name" msgstr "Copiar Obj_Name" -#: flatcamGUI/FlatCAMGUI.py:1471 +#: flatcamGUI/FlatCAMGUI.py:1587 msgid "Toggle Code Editor" msgstr "Alternar o Editor de Códigos" -#: flatcamGUI/FlatCAMGUI.py:1471 +#: flatcamGUI/FlatCAMGUI.py:1587 msgid "Toggle the axis" msgstr "Alternar o Eixo" -#: flatcamGUI/FlatCAMGUI.py:1471 flatcamGUI/FlatCAMGUI.py:1663 -#: flatcamGUI/FlatCAMGUI.py:1750 flatcamGUI/FlatCAMGUI.py:1872 +#: flatcamGUI/FlatCAMGUI.py:1587 flatcamGUI/FlatCAMGUI.py:1779 +#: flatcamGUI/FlatCAMGUI.py:1866 flatcamGUI/FlatCAMGUI.py:1988 msgid "Distance Minimum Tool" msgstr "Ferramenta Distância Mínima" -#: flatcamGUI/FlatCAMGUI.py:1471 +#: flatcamGUI/FlatCAMGUI.py:1587 msgid "Open Preferences Window" msgstr "Abrir Preferências" -#: flatcamGUI/FlatCAMGUI.py:1472 +#: flatcamGUI/FlatCAMGUI.py:1588 msgid "Rotate by 90 degree CCW" msgstr "Girar 90° sentido anti-horário" -#: flatcamGUI/FlatCAMGUI.py:1472 +#: flatcamGUI/FlatCAMGUI.py:1588 msgid "Run a Script" msgstr "Executar um Script" -#: flatcamGUI/FlatCAMGUI.py:1472 +#: flatcamGUI/FlatCAMGUI.py:1588 msgid "Toggle the workspace" msgstr "Alternar Área de Trabalho" -#: flatcamGUI/FlatCAMGUI.py:1472 +#: flatcamGUI/FlatCAMGUI.py:1588 msgid "Skew on X axis" msgstr "Inclinação no eixo X" -#: flatcamGUI/FlatCAMGUI.py:1473 +#: flatcamGUI/FlatCAMGUI.py:1589 msgid "Skew on Y axis" msgstr "Inclinação no eixo Y" -#: flatcamGUI/FlatCAMGUI.py:1475 +#: flatcamGUI/FlatCAMGUI.py:1591 msgid "2-Sided PCB Tool" msgstr "PCB 2 Faces" -#: flatcamGUI/FlatCAMGUI.py:1475 +#: flatcamGUI/FlatCAMGUI.py:1591 msgid "Transformations Tool" msgstr "Transformações" -#: flatcamGUI/FlatCAMGUI.py:1476 +#: flatcamGUI/FlatCAMGUI.py:1592 msgid "Solder Paste Dispensing Tool" msgstr "Pasta de Solda" -#: flatcamGUI/FlatCAMGUI.py:1477 +#: flatcamGUI/FlatCAMGUI.py:1593 msgid "Film PCB Tool" msgstr "Ferramenta de Filme PCB" -#: flatcamGUI/FlatCAMGUI.py:1477 +#: flatcamGUI/FlatCAMGUI.py:1593 msgid "Non-Copper Clearing Tool" msgstr "Área Sem Cobre (NCC)" -#: flatcamGUI/FlatCAMGUI.py:1478 +#: flatcamGUI/FlatCAMGUI.py:1594 msgid "Paint Area Tool" msgstr "Área de Pintura" -#: flatcamGUI/FlatCAMGUI.py:1478 +#: flatcamGUI/FlatCAMGUI.py:1594 msgid "Rules Check Tool" msgstr "Ferramenta de Verificação de Regras" -#: flatcamGUI/FlatCAMGUI.py:1479 +#: flatcamGUI/FlatCAMGUI.py:1595 msgid "View File Source" msgstr "Ver Arquivo Fonte" -#: flatcamGUI/FlatCAMGUI.py:1480 +#: flatcamGUI/FlatCAMGUI.py:1596 msgid "Cutout PCB Tool" msgstr "Ferramenta de Recorte" -#: flatcamGUI/FlatCAMGUI.py:1480 +#: flatcamGUI/FlatCAMGUI.py:1596 msgid "Enable all Plots" msgstr "Habilitar todos os Gráficos" -#: flatcamGUI/FlatCAMGUI.py:1480 +#: flatcamGUI/FlatCAMGUI.py:1596 msgid "Disable all Plots" msgstr "Desabilitar todos os Gráficos" -#: flatcamGUI/FlatCAMGUI.py:1480 +#: flatcamGUI/FlatCAMGUI.py:1596 msgid "Disable Non-selected Plots" msgstr "Desabilitar os gráficos não selecionados" -#: flatcamGUI/FlatCAMGUI.py:1481 +#: flatcamGUI/FlatCAMGUI.py:1597 msgid "Toggle Full Screen" msgstr "Alternar Tela Cheia" -#: flatcamGUI/FlatCAMGUI.py:1484 +#: flatcamGUI/FlatCAMGUI.py:1600 msgid "Abort current task (gracefully)" msgstr "Abortar a tarefa atual (normalmente)" -#: flatcamGUI/FlatCAMGUI.py:1487 +#: flatcamGUI/FlatCAMGUI.py:1603 msgid "Open Online Manual" msgstr "Abrir Manual Online" -#: flatcamGUI/FlatCAMGUI.py:1488 +#: flatcamGUI/FlatCAMGUI.py:1604 msgid "Open Online Tutorials" msgstr "Abrir Tutoriais Online" -#: flatcamGUI/FlatCAMGUI.py:1488 +#: flatcamGUI/FlatCAMGUI.py:1604 msgid "Refresh Plots" msgstr "Atualizar Gráfico" -#: flatcamGUI/FlatCAMGUI.py:1488 flatcamTools/ToolSolderPaste.py:503 +#: flatcamGUI/FlatCAMGUI.py:1604 flatcamTools/ToolSolderPaste.py:503 msgid "Delete Object" msgstr "Excluir Objeto" -#: flatcamGUI/FlatCAMGUI.py:1488 +#: flatcamGUI/FlatCAMGUI.py:1604 msgid "Alternate: Delete Tool" msgstr "Alternativo: Excluir Ferramenta" -#: flatcamGUI/FlatCAMGUI.py:1489 +#: flatcamGUI/FlatCAMGUI.py:1605 msgid "(left to Key_1)Toogle Notebook Area (Left Side)" msgstr "(esquerda da Tecla_1) Alterna Área do Bloco de Notas (lado esquerdo)" -#: flatcamGUI/FlatCAMGUI.py:1489 +#: flatcamGUI/FlatCAMGUI.py:1605 msgid "En(Dis)able Obj Plot" msgstr "Des(h)abilitar Gráfico" -#: flatcamGUI/FlatCAMGUI.py:1490 +#: flatcamGUI/FlatCAMGUI.py:1606 msgid "Deselects all objects" msgstr "Desmarca todos os objetos" -#: flatcamGUI/FlatCAMGUI.py:1504 +#: flatcamGUI/FlatCAMGUI.py:1620 msgid "Editor Shortcut list" msgstr "Lista de Teclas de Atalho" -#: flatcamGUI/FlatCAMGUI.py:1658 +#: flatcamGUI/FlatCAMGUI.py:1774 msgid "GEOMETRY EDITOR" msgstr "Editor de Geometria" -#: flatcamGUI/FlatCAMGUI.py:1658 +#: flatcamGUI/FlatCAMGUI.py:1774 msgid "Draw an Arc" msgstr "Desenha um Arco" -#: flatcamGUI/FlatCAMGUI.py:1658 +#: flatcamGUI/FlatCAMGUI.py:1774 msgid "Copy Geo Item" msgstr "Copiar Geo" -#: flatcamGUI/FlatCAMGUI.py:1659 +#: flatcamGUI/FlatCAMGUI.py:1775 msgid "Within Add Arc will toogle the ARC direction: CW or CCW" msgstr "Em Adicionar Arco, alterna o sentido: horário ou anti-horário" -#: flatcamGUI/FlatCAMGUI.py:1659 +#: flatcamGUI/FlatCAMGUI.py:1775 msgid "Polygon Intersection Tool" msgstr "Interseção de Polígonos" -#: flatcamGUI/FlatCAMGUI.py:1660 +#: flatcamGUI/FlatCAMGUI.py:1776 msgid "Geo Paint Tool" msgstr "Ferramenta de Pintura" -#: flatcamGUI/FlatCAMGUI.py:1660 flatcamGUI/FlatCAMGUI.py:1749 -#: flatcamGUI/FlatCAMGUI.py:1869 +#: flatcamGUI/FlatCAMGUI.py:1776 flatcamGUI/FlatCAMGUI.py:1865 +#: flatcamGUI/FlatCAMGUI.py:1985 msgid "Jump to Location (x, y)" msgstr "Ir para a Localização (x, y)" -#: flatcamGUI/FlatCAMGUI.py:1660 +#: flatcamGUI/FlatCAMGUI.py:1776 msgid "Toggle Corner Snap" msgstr "Alternar Encaixe de Canto" -#: flatcamGUI/FlatCAMGUI.py:1660 +#: flatcamGUI/FlatCAMGUI.py:1776 msgid "Move Geo Item" msgstr "Mover Geometria" -#: flatcamGUI/FlatCAMGUI.py:1661 +#: flatcamGUI/FlatCAMGUI.py:1777 msgid "Within Add Arc will cycle through the ARC modes" msgstr "Em Adicionar Arco, alterna o tipo de arco" -#: flatcamGUI/FlatCAMGUI.py:1661 +#: flatcamGUI/FlatCAMGUI.py:1777 msgid "Draw a Polygon" msgstr "Desenha um Polígono" -#: flatcamGUI/FlatCAMGUI.py:1661 +#: flatcamGUI/FlatCAMGUI.py:1777 msgid "Draw a Circle" msgstr "Desenha um Círculo" -#: flatcamGUI/FlatCAMGUI.py:1662 +#: flatcamGUI/FlatCAMGUI.py:1778 msgid "Draw a Path" msgstr "Desenha um Caminho" -#: flatcamGUI/FlatCAMGUI.py:1662 +#: flatcamGUI/FlatCAMGUI.py:1778 msgid "Draw Rectangle" msgstr "Desenha um Retângulo" -#: flatcamGUI/FlatCAMGUI.py:1662 +#: flatcamGUI/FlatCAMGUI.py:1778 msgid "Polygon Subtraction Tool" msgstr "Ferram. de Subtração de Polígono" -#: flatcamGUI/FlatCAMGUI.py:1662 +#: flatcamGUI/FlatCAMGUI.py:1778 msgid "Add Text Tool" msgstr "Ferramenta de Texto" -#: flatcamGUI/FlatCAMGUI.py:1663 +#: flatcamGUI/FlatCAMGUI.py:1779 msgid "Polygon Union Tool" msgstr "União de Polígonos" -#: flatcamGUI/FlatCAMGUI.py:1663 +#: flatcamGUI/FlatCAMGUI.py:1779 msgid "Flip shape on X axis" msgstr "Espelhar no Eixo X" -#: flatcamGUI/FlatCAMGUI.py:1663 +#: flatcamGUI/FlatCAMGUI.py:1779 msgid "Flip shape on Y axis" msgstr "Espelhar no Eixo Y" -#: flatcamGUI/FlatCAMGUI.py:1664 +#: flatcamGUI/FlatCAMGUI.py:1780 msgid "Skew shape on X axis" msgstr "Inclinação no eixo X" -#: flatcamGUI/FlatCAMGUI.py:1664 +#: flatcamGUI/FlatCAMGUI.py:1780 msgid "Skew shape on Y axis" msgstr "Inclinação no eixo Y" -#: flatcamGUI/FlatCAMGUI.py:1664 +#: flatcamGUI/FlatCAMGUI.py:1780 msgid "Editor Transformation Tool" msgstr "Ferramenta Transformar" -#: flatcamGUI/FlatCAMGUI.py:1665 +#: flatcamGUI/FlatCAMGUI.py:1781 msgid "Offset shape on X axis" msgstr "Deslocamento no eixo X" -#: flatcamGUI/FlatCAMGUI.py:1665 +#: flatcamGUI/FlatCAMGUI.py:1781 msgid "Offset shape on Y axis" msgstr "Deslocamento no eixo Y" -#: flatcamGUI/FlatCAMGUI.py:1666 flatcamGUI/FlatCAMGUI.py:1752 -#: flatcamGUI/FlatCAMGUI.py:1874 +#: flatcamGUI/FlatCAMGUI.py:1782 flatcamGUI/FlatCAMGUI.py:1868 +#: flatcamGUI/FlatCAMGUI.py:1990 msgid "Save Object and Exit Editor" msgstr "Salvar Objeto e Fechar o Editor" -#: flatcamGUI/FlatCAMGUI.py:1666 +#: flatcamGUI/FlatCAMGUI.py:1782 msgid "Polygon Cut Tool" msgstr "Corte de Polígonos" -#: flatcamGUI/FlatCAMGUI.py:1667 +#: flatcamGUI/FlatCAMGUI.py:1783 msgid "Rotate Geometry" msgstr "Girar Geometria" -#: flatcamGUI/FlatCAMGUI.py:1667 +#: flatcamGUI/FlatCAMGUI.py:1783 msgid "Finish drawing for certain tools" msgstr "Concluir desenho para certas ferramentas" -#: flatcamGUI/FlatCAMGUI.py:1667 flatcamGUI/FlatCAMGUI.py:1752 -#: flatcamGUI/FlatCAMGUI.py:1872 +#: flatcamGUI/FlatCAMGUI.py:1783 flatcamGUI/FlatCAMGUI.py:1868 +#: flatcamGUI/FlatCAMGUI.py:1988 msgid "Abort and return to Select" msgstr "Abortar e retornar à Seleção" -#: flatcamGUI/FlatCAMGUI.py:1668 flatcamGUI/FlatCAMGUI.py:2263 +#: flatcamGUI/FlatCAMGUI.py:1784 flatcamGUI/FlatCAMGUI.py:2483 msgid "Delete Shape" msgstr "Excluir Forma" -#: flatcamGUI/FlatCAMGUI.py:1748 +#: flatcamGUI/FlatCAMGUI.py:1864 msgid "EXCELLON EDITOR" msgstr "Editor Excellon" -#: flatcamGUI/FlatCAMGUI.py:1748 +#: flatcamGUI/FlatCAMGUI.py:1864 msgid "Copy Drill(s)" msgstr "Copiar Furo(s)" -#: flatcamGUI/FlatCAMGUI.py:1748 flatcamGUI/FlatCAMGUI.py:1957 +#: flatcamGUI/FlatCAMGUI.py:1864 flatcamGUI/FlatCAMGUI.py:2114 msgid "Add Drill" msgstr "Adicionar Furo" -#: flatcamGUI/FlatCAMGUI.py:1749 +#: flatcamGUI/FlatCAMGUI.py:1865 msgid "Move Drill(s)" msgstr "Mover Furo(s)" -#: flatcamGUI/FlatCAMGUI.py:1750 +#: flatcamGUI/FlatCAMGUI.py:1866 msgid "Add a new Tool" msgstr "Adicionar Ferramenta" -#: flatcamGUI/FlatCAMGUI.py:1751 +#: flatcamGUI/FlatCAMGUI.py:1867 msgid "Delete Drill(s)" msgstr "Excluir Furo(s)" -#: flatcamGUI/FlatCAMGUI.py:1751 +#: flatcamGUI/FlatCAMGUI.py:1867 msgid "Alternate: Delete Tool(s)" msgstr "Alternativo: Excluir Ferramenta(s)" -#: flatcamGUI/FlatCAMGUI.py:1868 +#: flatcamGUI/FlatCAMGUI.py:1984 msgid "GERBER EDITOR" msgstr "Editor Gerber" -#: flatcamGUI/FlatCAMGUI.py:1868 +#: flatcamGUI/FlatCAMGUI.py:1984 msgid "Add Disc" msgstr "Adicionar Disco" -#: flatcamGUI/FlatCAMGUI.py:1868 +#: flatcamGUI/FlatCAMGUI.py:1984 msgid "Add SemiDisc" msgstr "Adicionar SemiDisco" -#: flatcamGUI/FlatCAMGUI.py:1870 +#: flatcamGUI/FlatCAMGUI.py:1986 msgid "Within Track & Region Tools will cycle in REVERSE the bend modes" msgstr "" "Nas Ferramentas de Trilha e Região, alternará REVERSAMENTE entre os modos" -#: flatcamGUI/FlatCAMGUI.py:1871 +#: flatcamGUI/FlatCAMGUI.py:1987 msgid "Within Track & Region Tools will cycle FORWARD the bend modes" msgstr "" "Nas Ferramentas de Trilha e Região, alternará para frente entre os modos" -#: flatcamGUI/FlatCAMGUI.py:1872 +#: flatcamGUI/FlatCAMGUI.py:1988 msgid "Alternate: Delete Apertures" msgstr "Alternativo: Excluir Abertura" -#: flatcamGUI/FlatCAMGUI.py:1873 +#: flatcamGUI/FlatCAMGUI.py:1989 msgid "Eraser Tool" msgstr "Ferramenta Apagar" -#: flatcamGUI/FlatCAMGUI.py:1874 flatcamGUI/PreferencesUI.py:2038 +#: flatcamGUI/FlatCAMGUI.py:1990 flatcamGUI/PreferencesUI.py:2039 msgid "Mark Area Tool" msgstr "Marcar Área" -#: flatcamGUI/FlatCAMGUI.py:1874 +#: flatcamGUI/FlatCAMGUI.py:1990 msgid "Poligonize Tool" msgstr "Poligonizar" -#: flatcamGUI/FlatCAMGUI.py:1874 +#: flatcamGUI/FlatCAMGUI.py:1990 msgid "Transformation Tool" msgstr "Ferramenta Transformação" -#: flatcamGUI/FlatCAMGUI.py:1890 +#: flatcamGUI/FlatCAMGUI.py:2007 msgid "Toggle Visibility" msgstr "Alternar Visibilidade" -#: flatcamGUI/FlatCAMGUI.py:1894 +#: flatcamGUI/FlatCAMGUI.py:2013 msgid "New" msgstr "Novo" -#: flatcamGUI/FlatCAMGUI.py:1895 flatcamTools/ToolCalibration.py:634 +#: flatcamGUI/FlatCAMGUI.py:2015 flatcamTools/ToolCalibration.py:634 msgid "Geometry" msgstr "Geometria" -#: flatcamGUI/FlatCAMGUI.py:1897 flatcamTools/ToolCalibration.py:197 +#: flatcamGUI/FlatCAMGUI.py:2019 flatcamTools/ToolCalibration.py:197 #: flatcamTools/ToolCalibration.py:634 flatcamTools/ToolFilm.py:359 msgid "Excellon" msgstr "Excellon" -#: flatcamGUI/FlatCAMGUI.py:1902 +#: flatcamGUI/FlatCAMGUI.py:2026 msgid "Grids" msgstr "Grades" -#: flatcamGUI/FlatCAMGUI.py:1906 +#: flatcamGUI/FlatCAMGUI.py:2033 msgid "Clear Plot" msgstr "Limpar Gráfico" -#: flatcamGUI/FlatCAMGUI.py:1907 +#: flatcamGUI/FlatCAMGUI.py:2035 msgid "Replot" msgstr "Redesenhar" -#: flatcamGUI/FlatCAMGUI.py:1910 +#: flatcamGUI/FlatCAMGUI.py:2039 msgid "Geo Editor" msgstr "Editor de Geometria" -#: flatcamGUI/FlatCAMGUI.py:1911 +#: flatcamGUI/FlatCAMGUI.py:2041 msgid "Path" msgstr "Caminho" -#: flatcamGUI/FlatCAMGUI.py:1912 +#: flatcamGUI/FlatCAMGUI.py:2043 msgid "Rectangle" msgstr "Retângulo" -#: flatcamGUI/FlatCAMGUI.py:1914 +#: flatcamGUI/FlatCAMGUI.py:2046 msgid "Circle" msgstr "Círculo" -#: flatcamGUI/FlatCAMGUI.py:1915 +#: flatcamGUI/FlatCAMGUI.py:2048 msgid "Polygon" msgstr "Polígono" -#: flatcamGUI/FlatCAMGUI.py:1916 +#: flatcamGUI/FlatCAMGUI.py:2050 msgid "Arc" msgstr "Arco" -#: flatcamGUI/FlatCAMGUI.py:1925 +#: flatcamGUI/FlatCAMGUI.py:2064 msgid "Union" msgstr "União" -#: flatcamGUI/FlatCAMGUI.py:1926 +#: flatcamGUI/FlatCAMGUI.py:2066 msgid "Intersection" msgstr "Interseção" -#: flatcamGUI/FlatCAMGUI.py:1927 +#: flatcamGUI/FlatCAMGUI.py:2068 msgid "Subtraction" msgstr "Substração" -#: flatcamGUI/FlatCAMGUI.py:1928 flatcamGUI/ObjectUI.py:1761 -#: flatcamGUI/PreferencesUI.py:3643 +#: flatcamGUI/FlatCAMGUI.py:2070 flatcamGUI/ObjectUI.py:1813 +#: flatcamGUI/PreferencesUI.py:3644 msgid "Cut" msgstr "Cortar" -#: flatcamGUI/FlatCAMGUI.py:1935 +#: flatcamGUI/FlatCAMGUI.py:2081 msgid "Pad" msgstr "Pad" -#: flatcamGUI/FlatCAMGUI.py:1936 +#: flatcamGUI/FlatCAMGUI.py:2083 msgid "Pad Array" msgstr "Matriz de Pads" -#: flatcamGUI/FlatCAMGUI.py:1939 +#: flatcamGUI/FlatCAMGUI.py:2087 msgid "Track" msgstr "Trilha" -#: flatcamGUI/FlatCAMGUI.py:1940 +#: flatcamGUI/FlatCAMGUI.py:2089 msgid "Region" msgstr "Região" -#: flatcamGUI/FlatCAMGUI.py:1956 +#: flatcamGUI/FlatCAMGUI.py:2112 msgid "Exc Editor" msgstr "Editor Exc" -#: flatcamGUI/FlatCAMGUI.py:1986 +#: flatcamGUI/FlatCAMGUI.py:2153 msgid "" "Relative neasurement.\n" "Reference is last click position" @@ -6842,7 +6842,7 @@ msgstr "" "Medição relativa.\n" "Em relação à posição do último clique" -#: flatcamGUI/FlatCAMGUI.py:1992 +#: flatcamGUI/FlatCAMGUI.py:2159 msgid "" "Absolute neasurement.\n" "Reference is (X=0, Y= 0) position" @@ -6850,27 +6850,27 @@ msgstr "" "Medição absoluta.\n" "Em relação à posição (X=0, Y=0)" -#: flatcamGUI/FlatCAMGUI.py:2099 +#: flatcamGUI/FlatCAMGUI.py:2266 msgid "Lock Toolbars" msgstr "Travar Barras de Ferramentas" -#: flatcamGUI/FlatCAMGUI.py:2192 +#: flatcamGUI/FlatCAMGUI.py:2384 msgid "&Cutout Tool" msgstr "Ferramenta de Re&corte" -#: flatcamGUI/FlatCAMGUI.py:2234 +#: flatcamGUI/FlatCAMGUI.py:2443 msgid "Select 'Esc'" msgstr "Selecionar 'Esc'" -#: flatcamGUI/FlatCAMGUI.py:2261 +#: flatcamGUI/FlatCAMGUI.py:2481 msgid "Copy Objects" msgstr "Copiar Objetos" -#: flatcamGUI/FlatCAMGUI.py:2268 +#: flatcamGUI/FlatCAMGUI.py:2489 msgid "Move Objects" msgstr "Mover Objetos" -#: flatcamGUI/FlatCAMGUI.py:2813 +#: flatcamGUI/FlatCAMGUI.py:3048 msgid "" "Please first select a geometry item to be cutted\n" "then select the geometry item that will be cutted\n" @@ -6882,12 +6882,12 @@ msgstr "" "fora do primeiro item. No final, pressione a tecla ~X~ ou\n" "o botão da barra de ferramentas." -#: flatcamGUI/FlatCAMGUI.py:2820 flatcamGUI/FlatCAMGUI.py:2964 -#: flatcamGUI/FlatCAMGUI.py:3023 flatcamGUI/FlatCAMGUI.py:3043 +#: flatcamGUI/FlatCAMGUI.py:3055 flatcamGUI/FlatCAMGUI.py:3199 +#: flatcamGUI/FlatCAMGUI.py:3258 flatcamGUI/FlatCAMGUI.py:3278 msgid "Warning" msgstr "Aviso" -#: flatcamGUI/FlatCAMGUI.py:2959 +#: flatcamGUI/FlatCAMGUI.py:3194 msgid "" "Please select geometry items \n" "on which to perform Intersection Tool." @@ -6895,7 +6895,7 @@ msgstr "" "Por favor, selecione itens de geometria\n" "para executar a ferramenta de interseção." -#: flatcamGUI/FlatCAMGUI.py:3018 +#: flatcamGUI/FlatCAMGUI.py:3253 msgid "" "Please select geometry items \n" "on which to perform Substraction Tool." @@ -6903,7 +6903,7 @@ msgstr "" "Por favor, selecione itens de geometria\n" "para executar a ferramenta de subtração." -#: flatcamGUI/FlatCAMGUI.py:3038 +#: flatcamGUI/FlatCAMGUI.py:3273 msgid "" "Please select geometry items \n" "on which to perform union." @@ -6911,52 +6911,52 @@ msgstr "" "Por favor, selecione itens de geometria\n" "para executar a ferramenta de união." -#: flatcamGUI/FlatCAMGUI.py:3122 flatcamGUI/FlatCAMGUI.py:3340 +#: flatcamGUI/FlatCAMGUI.py:3357 flatcamGUI/FlatCAMGUI.py:3575 msgid "Cancelled. Nothing selected to delete." msgstr "Cancelado. Nada selecionado para excluir." -#: flatcamGUI/FlatCAMGUI.py:3207 flatcamGUI/FlatCAMGUI.py:3408 +#: flatcamGUI/FlatCAMGUI.py:3442 flatcamGUI/FlatCAMGUI.py:3643 msgid "Cancelled. Nothing selected to copy." msgstr "Cancelado. Nada selecionado para copiar." -#: flatcamGUI/FlatCAMGUI.py:3254 flatcamGUI/FlatCAMGUI.py:3455 +#: flatcamGUI/FlatCAMGUI.py:3489 flatcamGUI/FlatCAMGUI.py:3690 msgid "Cancelled. Nothing selected to move." msgstr "Cancelado. Nada selecionado para mover." -#: flatcamGUI/FlatCAMGUI.py:3481 +#: flatcamGUI/FlatCAMGUI.py:3716 msgid "New Tool ..." msgstr "Nova Ferramenta ..." -#: flatcamGUI/FlatCAMGUI.py:3482 flatcamTools/ToolNonCopperClear.py:588 -#: flatcamTools/ToolPaint.py:499 flatcamTools/ToolSolderPaste.py:554 +#: flatcamGUI/FlatCAMGUI.py:3717 flatcamTools/ToolNonCopperClear.py:589 +#: flatcamTools/ToolPaint.py:500 flatcamTools/ToolSolderPaste.py:554 msgid "Enter a Tool Diameter" msgstr "Digite um diâmetro de ferramenta" -#: flatcamGUI/FlatCAMGUI.py:3494 +#: flatcamGUI/FlatCAMGUI.py:3729 msgid "Adding Tool cancelled ..." msgstr "Adicionar ferramenta cancelado ..." -#: flatcamGUI/FlatCAMGUI.py:3537 +#: flatcamGUI/FlatCAMGUI.py:3772 msgid "Distance Tool exit..." msgstr "Sair da ferramenta de medição ..." -#: flatcamGUI/FlatCAMGUI.py:3747 flatcamGUI/FlatCAMGUI.py:3754 +#: flatcamGUI/FlatCAMGUI.py:3982 flatcamGUI/FlatCAMGUI.py:3989 msgid "Idle." msgstr "Ocioso." -#: flatcamGUI/FlatCAMGUI.py:3783 +#: flatcamGUI/FlatCAMGUI.py:4020 msgid "Application started ..." msgstr "Aplicativo iniciado ..." -#: flatcamGUI/FlatCAMGUI.py:3784 +#: flatcamGUI/FlatCAMGUI.py:4021 msgid "Hello!" msgstr "Olá!" -#: flatcamGUI/FlatCAMGUI.py:3840 +#: flatcamGUI/FlatCAMGUI.py:4079 msgid "Open Project ..." msgstr "Abrir Projeto ..." -#: flatcamGUI/FlatCAMGUI.py:3865 +#: flatcamGUI/FlatCAMGUI.py:4105 msgid "Exit" msgstr "Sair" @@ -6964,7 +6964,7 @@ msgstr "Sair" msgid "FlatCAM Object" msgstr "Objeto FlatCAM" -#: flatcamGUI/ObjectUI.py:66 +#: flatcamGUI/ObjectUI.py:77 msgid "" "BASIC is suitable for a beginner. Many parameters\n" "are hidden from the user in this mode.\n" @@ -6982,15 +6982,15 @@ msgstr "" "Editar -> Preferências -> Geral e verificar\n" "o botão de rádio 'Nível do Aplicativo\"." -#: flatcamGUI/ObjectUI.py:94 +#: flatcamGUI/ObjectUI.py:105 msgid "Change the size of the object." msgstr "Altera o tamanho do objeto." -#: flatcamGUI/ObjectUI.py:100 +#: flatcamGUI/ObjectUI.py:111 msgid "Factor" msgstr "Fator" -#: flatcamGUI/ObjectUI.py:102 +#: flatcamGUI/ObjectUI.py:113 msgid "" "Factor by which to multiply\n" "geometric features of this object.\n" @@ -7000,19 +7000,19 @@ msgstr "" "geométricos deste objeto.\n" "Expressões são permitidas. Por exemplo: 1 / 25.4" -#: flatcamGUI/ObjectUI.py:112 +#: flatcamGUI/ObjectUI.py:123 msgid "Perform scaling operation." msgstr "Realiza a operação de dimensionamento." -#: flatcamGUI/ObjectUI.py:123 +#: flatcamGUI/ObjectUI.py:134 msgid "Change the position of this object." msgstr "Altera a posição deste objeto." -#: flatcamGUI/ObjectUI.py:128 +#: flatcamGUI/ObjectUI.py:139 msgid "Vector" msgstr "Vetor" -#: flatcamGUI/ObjectUI.py:130 +#: flatcamGUI/ObjectUI.py:141 msgid "" "Amount by which to move the object\n" "in the x and y axes in (x, y) format.\n" @@ -7022,60 +7022,60 @@ msgstr "" "nos eixos x e y no formato (x, y).\n" "Expressões são permitidas. Por exemplo: (1/3.2, 0.5*3)" -#: flatcamGUI/ObjectUI.py:139 +#: flatcamGUI/ObjectUI.py:150 msgid "Perform the offset operation." msgstr "Executa a operação de deslocamento." -#: flatcamGUI/ObjectUI.py:156 +#: flatcamGUI/ObjectUI.py:167 msgid "Gerber Object" msgstr "Objeto Gerber" -#: 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 +#: flatcamGUI/ObjectUI.py:182 flatcamGUI/ObjectUI.py:767 +#: flatcamGUI/ObjectUI.py:1205 flatcamGUI/ObjectUI.py:1907 +#: flatcamGUI/PreferencesUI.py:1361 flatcamGUI/PreferencesUI.py:3119 +#: flatcamGUI/PreferencesUI.py:3629 msgid "Plot (show) this object." msgstr "Mostra o objeto no gráfico." -#: flatcamGUI/ObjectUI.py:173 flatcamGUI/ObjectUI.py:741 -#: flatcamGUI/PreferencesUI.py:1358 flatcamGUI/PreferencesUI.py:2084 -#: flatcamGUI/PreferencesUI.py:3116 +#: flatcamGUI/ObjectUI.py:184 flatcamGUI/ObjectUI.py:765 +#: flatcamGUI/PreferencesUI.py:1359 flatcamGUI/PreferencesUI.py:2085 +#: flatcamGUI/PreferencesUI.py:3117 msgid "Plot" msgstr "Gráfico" -#: 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 +#: flatcamGUI/ObjectUI.py:189 flatcamGUI/ObjectUI.py:726 +#: flatcamGUI/ObjectUI.py:1159 flatcamGUI/ObjectUI.py:1797 +#: flatcamGUI/PreferencesUI.py:1338 flatcamGUI/PreferencesUI.py:2079 +#: flatcamGUI/PreferencesUI.py:3113 flatcamGUI/PreferencesUI.py:3618 msgid "Plot Options" msgstr "Opções de Gráfico" -#: flatcamGUI/ObjectUI.py:184 flatcamGUI/ObjectUI.py:703 -#: flatcamGUI/PreferencesUI.py:1344 flatcamGUI/PreferencesUI.py:2090 -#: flatcamGUI/PreferencesUI.py:6153 flatcamTools/ToolCopperThieving.py:190 +#: flatcamGUI/ObjectUI.py:195 flatcamGUI/ObjectUI.py:727 +#: flatcamGUI/PreferencesUI.py:1345 flatcamGUI/PreferencesUI.py:2091 +#: flatcamGUI/PreferencesUI.py:6154 flatcamTools/ToolCopperThieving.py:190 msgid "Solid" msgstr "Preenchido" -#: flatcamGUI/ObjectUI.py:186 flatcamGUI/PreferencesUI.py:1346 +#: flatcamGUI/ObjectUI.py:197 flatcamGUI/PreferencesUI.py:1347 msgid "Solid color polygons." msgstr "Polígonos com cor sólida." -#: flatcamGUI/ObjectUI.py:192 +#: flatcamGUI/ObjectUI.py:203 msgid "Multi-Color" msgstr "Multicolorido" -#: flatcamGUI/ObjectUI.py:194 flatcamGUI/PreferencesUI.py:1353 +#: flatcamGUI/ObjectUI.py:205 flatcamGUI/PreferencesUI.py:1354 msgid "Draw polygons in different colors." msgstr "Desenha polígonos em cores diferentes." -#: flatcamGUI/ObjectUI.py:202 flatcamGUI/ObjectUI.py:714 -#: flatcamGUI/ObjectUI.py:1126 flatcamGUI/ObjectUI.py:1775 -#: flatcamGUI/ObjectUI.py:2067 flatcamGUI/ObjectUI.py:2122 +#: flatcamGUI/ObjectUI.py:213 flatcamGUI/ObjectUI.py:738 +#: flatcamGUI/ObjectUI.py:1165 flatcamGUI/ObjectUI.py:1827 +#: flatcamGUI/ObjectUI.py:2130 flatcamGUI/ObjectUI.py:2196 #: flatcamTools/ToolCalibration.py:235 flatcamTools/ToolFiducials.py:73 msgid "Name" msgstr "Nome" -#: flatcamGUI/ObjectUI.py:223 +#: flatcamGUI/ObjectUI.py:234 msgid "" "Toggle the display of the Gerber Apertures Table.\n" "When unchecked, it will delete all mark shapes\n" @@ -7085,11 +7085,11 @@ msgstr "" "Quando desmarcada, serão excluídas todas as formas de marcas\n" "desenhadas na tela." -#: flatcamGUI/ObjectUI.py:233 +#: flatcamGUI/ObjectUI.py:244 msgid "Mark All" msgstr "Marcar Todos" -#: flatcamGUI/ObjectUI.py:235 +#: flatcamGUI/ObjectUI.py:246 msgid "" "When checked it will display all the apertures.\n" "When unchecked, it will delete all mark shapes\n" @@ -7099,15 +7099,15 @@ msgstr "" "Quando desmarcado, serão apagadas todas as formas de marcas\n" "desenhadas na tela." -#: flatcamGUI/ObjectUI.py:263 +#: flatcamGUI/ObjectUI.py:274 msgid "Mark the aperture instances on canvas." msgstr "Marque as instâncias de abertura na tela." -#: flatcamGUI/ObjectUI.py:275 flatcamGUI/PreferencesUI.py:1438 +#: flatcamGUI/ObjectUI.py:286 flatcamGUI/PreferencesUI.py:1439 msgid "Isolation Routing" msgstr "Roteamento de Isolação" -#: flatcamGUI/ObjectUI.py:277 flatcamGUI/PreferencesUI.py:1440 +#: flatcamGUI/ObjectUI.py:288 flatcamGUI/PreferencesUI.py:1441 msgid "" "Create a Geometry object with\n" "toolpaths to cut outside polygons." @@ -7115,7 +7115,7 @@ msgstr "" "Cria um objeto Geometria com caminho de\n" "ferramenta para cortar polígonos externos." -#: flatcamGUI/ObjectUI.py:295 flatcamGUI/PreferencesUI.py:1628 +#: flatcamGUI/ObjectUI.py:306 flatcamGUI/PreferencesUI.py:1629 msgid "" "Choose what tool to use for Gerber isolation:\n" "'Circular' or 'V-shape'.\n" @@ -7127,39 +7127,39 @@ msgstr "" "Quando 'ponta em V' for selecionada, o diâmetro da\n" "ferramenta dependerá da profundidade de corte escolhida." -#: flatcamGUI/ObjectUI.py:301 +#: flatcamGUI/ObjectUI.py:312 msgid "V-Shape" msgstr "Forma-V" -#: flatcamGUI/ObjectUI.py:307 flatcamGUI/ObjectUI.py:1335 -#: flatcamGUI/PreferencesUI.py:1640 flatcamGUI/PreferencesUI.py:4010 +#: flatcamGUI/ObjectUI.py:318 flatcamGUI/ObjectUI.py:1374 +#: flatcamGUI/PreferencesUI.py:1641 flatcamGUI/PreferencesUI.py:4011 #: flatcamTools/ToolNonCopperClear.py:231 msgid "V-Tip Dia" msgstr "Diâmetro da Ponta" -#: flatcamGUI/ObjectUI.py:309 flatcamGUI/ObjectUI.py:1338 -#: flatcamGUI/PreferencesUI.py:1642 flatcamGUI/PreferencesUI.py:4012 +#: flatcamGUI/ObjectUI.py:320 flatcamGUI/ObjectUI.py:1377 +#: flatcamGUI/PreferencesUI.py:1643 flatcamGUI/PreferencesUI.py:4013 #: flatcamTools/ToolNonCopperClear.py:233 msgid "The tip diameter for V-Shape Tool" msgstr "O diâmetro da ponta da ferramenta em forma de V" -#: flatcamGUI/ObjectUI.py:320 flatcamGUI/ObjectUI.py:1350 -#: flatcamGUI/PreferencesUI.py:1653 flatcamGUI/PreferencesUI.py:4022 +#: flatcamGUI/ObjectUI.py:331 flatcamGUI/ObjectUI.py:1389 +#: flatcamGUI/PreferencesUI.py:1654 flatcamGUI/PreferencesUI.py:4023 #: flatcamTools/ToolNonCopperClear.py:242 msgid "V-Tip Angle" msgstr "Ângulo Ponta-V" -#: flatcamGUI/ObjectUI.py:322 flatcamGUI/ObjectUI.py:1353 -#: flatcamGUI/PreferencesUI.py:1655 flatcamGUI/PreferencesUI.py:4024 +#: flatcamGUI/ObjectUI.py:333 flatcamGUI/ObjectUI.py:1392 +#: flatcamGUI/PreferencesUI.py:1656 flatcamGUI/PreferencesUI.py:4025 #: flatcamTools/ToolNonCopperClear.py:244 msgid "" "The tip angle for V-Shape Tool.\n" "In degree." msgstr "O ângulo da ponta da ferramenta em forma de V, em graus." -#: flatcamGUI/ObjectUI.py:336 flatcamGUI/ObjectUI.py:1369 -#: flatcamGUI/PreferencesUI.py:1668 flatcamGUI/PreferencesUI.py:3181 -#: flatcamGUI/PreferencesUI.py:4293 flatcamTools/ToolCutOut.py:135 +#: flatcamGUI/ObjectUI.py:347 flatcamGUI/ObjectUI.py:1408 +#: flatcamGUI/PreferencesUI.py:1669 flatcamGUI/PreferencesUI.py:3182 +#: flatcamGUI/PreferencesUI.py:4294 flatcamTools/ToolCutOut.py:135 msgid "" "Cutting depth (negative)\n" "below the copper surface." @@ -7167,7 +7167,7 @@ msgstr "" "Profundidade de corte (negativo)\n" "abaixo da superfície de cobre." -#: flatcamGUI/ObjectUI.py:350 +#: flatcamGUI/ObjectUI.py:361 msgid "" "Diameter of the cutting tool.\n" "If you want to have an isolation path\n" @@ -7180,11 +7180,11 @@ msgstr "" "atual do recurso Gerber, use um valor negativo para\n" "este parâmetro." -#: flatcamGUI/ObjectUI.py:366 flatcamGUI/PreferencesUI.py:1462 +#: flatcamGUI/ObjectUI.py:377 flatcamGUI/PreferencesUI.py:1463 msgid "# Passes" msgstr "Passes" -#: flatcamGUI/ObjectUI.py:368 flatcamGUI/PreferencesUI.py:1464 +#: flatcamGUI/ObjectUI.py:379 flatcamGUI/PreferencesUI.py:1465 msgid "" "Width of the isolation gap in\n" "number (integer) of tool widths." @@ -7192,24 +7192,24 @@ msgstr "" "Largura da isolação em relação à\n" "largura da ferramenta (número inteiro)." -#: flatcamGUI/ObjectUI.py:378 flatcamGUI/PreferencesUI.py:1474 +#: flatcamGUI/ObjectUI.py:389 flatcamGUI/PreferencesUI.py:1475 msgid "Pass overlap" msgstr "Sobreposição" -#: flatcamGUI/ObjectUI.py:380 flatcamGUI/PreferencesUI.py:1476 +#: flatcamGUI/ObjectUI.py:391 flatcamGUI/PreferencesUI.py:1477 msgid "How much (fraction) of the tool width to overlap each tool pass." msgstr "" "Quanto (fração) da largura da ferramenta é sobreposta a cada passagem da " "ferramenta." -#: flatcamGUI/ObjectUI.py:392 flatcamGUI/PreferencesUI.py:1501 -#: flatcamGUI/PreferencesUI.py:3594 flatcamGUI/PreferencesUI.py:4067 +#: flatcamGUI/ObjectUI.py:403 flatcamGUI/PreferencesUI.py:1502 +#: flatcamGUI/PreferencesUI.py:3595 flatcamGUI/PreferencesUI.py:4068 #: flatcamTools/ToolNonCopperClear.py:162 msgid "Milling Type" msgstr "Tipo de Fresamento" -#: flatcamGUI/ObjectUI.py:394 flatcamGUI/PreferencesUI.py:1503 -#: flatcamGUI/PreferencesUI.py:3596 +#: flatcamGUI/ObjectUI.py:405 flatcamGUI/PreferencesUI.py:1504 +#: flatcamGUI/PreferencesUI.py:3597 msgid "" "Milling type:\n" "- climb / best for precision milling and to reduce tool usage\n" @@ -7220,29 +7220,29 @@ msgstr "" "ferramenta\n" "- convencional: útil quando não há compensação de folga" -#: flatcamGUI/ObjectUI.py:398 flatcamGUI/PreferencesUI.py:1508 -#: flatcamGUI/PreferencesUI.py:3600 flatcamGUI/PreferencesUI.py:4074 +#: flatcamGUI/ObjectUI.py:409 flatcamGUI/PreferencesUI.py:1509 +#: flatcamGUI/PreferencesUI.py:3601 flatcamGUI/PreferencesUI.py:4075 #: flatcamTools/ToolNonCopperClear.py:169 msgid "Climb" msgstr "Subida" -#: flatcamGUI/ObjectUI.py:399 +#: flatcamGUI/ObjectUI.py:410 msgid "Conventional" msgstr "Convencional" -#: flatcamGUI/ObjectUI.py:404 +#: flatcamGUI/ObjectUI.py:415 msgid "Combine" msgstr "Combinar" -#: flatcamGUI/ObjectUI.py:406 flatcamGUI/PreferencesUI.py:1515 +#: flatcamGUI/ObjectUI.py:417 flatcamGUI/PreferencesUI.py:1516 msgid "Combine all passes into one object" msgstr "Combinar todos os passes em um objeto" -#: flatcamGUI/ObjectUI.py:410 flatcamGUI/PreferencesUI.py:1607 +#: flatcamGUI/ObjectUI.py:421 flatcamGUI/PreferencesUI.py:1608 msgid "\"Follow\"" msgstr "\"Segue\"" -#: flatcamGUI/ObjectUI.py:411 flatcamGUI/PreferencesUI.py:1609 +#: flatcamGUI/ObjectUI.py:422 flatcamGUI/PreferencesUI.py:1610 msgid "" "Generate a 'Follow' geometry.\n" "This means that it will cut through\n" @@ -7252,11 +7252,11 @@ msgstr "" "Isso significa que ele cortará\n" "no meio do traço." -#: flatcamGUI/ObjectUI.py:417 +#: flatcamGUI/ObjectUI.py:428 msgid "Except" msgstr "Exceto" -#: flatcamGUI/ObjectUI.py:420 +#: flatcamGUI/ObjectUI.py:431 msgid "" "When the isolation geometry is generated,\n" "by checking this, the area of the object bellow\n" @@ -7266,12 +7266,12 @@ msgstr "" "a área do objeto abaixo será subtraída da geometria\n" "de isolação." -#: flatcamGUI/ObjectUI.py:442 flatcamTools/ToolNonCopperClear.py:82 +#: flatcamGUI/ObjectUI.py:453 flatcamTools/ToolNonCopperClear.py:82 #: flatcamTools/ToolPaint.py:85 msgid "Obj Type" msgstr "Tipo Obj" -#: flatcamGUI/ObjectUI.py:444 +#: flatcamGUI/ObjectUI.py:455 msgid "" "Specify the type of object to be excepted from isolation.\n" "It can be of type: Gerber or Geometry.\n" @@ -7283,22 +7283,22 @@ msgstr "" "Esta seleção ditará o tipo de objetos que preencherão\n" "a caixa de combinação 'Objeto'." -#: flatcamGUI/ObjectUI.py:457 flatcamGUI/PreferencesUI.py:6453 +#: flatcamGUI/ObjectUI.py:468 flatcamGUI/PreferencesUI.py:6454 #: flatcamTools/ToolCalibration.py:186 flatcamTools/ToolNonCopperClear.py:100 #: flatcamTools/ToolPaint.py:103 flatcamTools/ToolPanelize.py:81 #: flatcamTools/ToolPanelize.py:94 msgid "Object" msgstr "Objeto" -#: flatcamGUI/ObjectUI.py:458 +#: flatcamGUI/ObjectUI.py:469 msgid "Object whose area will be removed from isolation geometry." msgstr "Objeto cuja área será removida da geometria de isolação." -#: flatcamGUI/ObjectUI.py:465 flatcamGUI/PreferencesUI.py:1488 +#: flatcamGUI/ObjectUI.py:476 flatcamGUI/PreferencesUI.py:1489 msgid "Scope" msgstr "Escopo" -#: flatcamGUI/ObjectUI.py:467 flatcamGUI/PreferencesUI.py:1490 +#: flatcamGUI/ObjectUI.py:478 flatcamGUI/PreferencesUI.py:1491 msgid "" "Isolation scope. Choose what to isolate:\n" "- 'All' -> Isolate all the polygons in the object\n" @@ -7308,16 +7308,16 @@ msgstr "" "- 'Tudo' -> Isola todos os polígonos no objeto\n" "- 'Seleção' -> Isola uma seleção de polígonos." -#: flatcamGUI/ObjectUI.py:472 flatcamGUI/PreferencesUI.py:1495 -#: flatcamGUI/PreferencesUI.py:4603 flatcamTools/ToolPaint.py:300 +#: flatcamGUI/ObjectUI.py:483 flatcamGUI/PreferencesUI.py:1496 +#: flatcamGUI/PreferencesUI.py:4604 flatcamTools/ToolPaint.py:300 msgid "Selection" msgstr "Seleção" -#: flatcamGUI/ObjectUI.py:480 flatcamGUI/PreferencesUI.py:1681 +#: flatcamGUI/ObjectUI.py:491 flatcamGUI/PreferencesUI.py:1682 msgid "Isolation Type" msgstr "Tipo de Isolação" -#: flatcamGUI/ObjectUI.py:482 flatcamGUI/PreferencesUI.py:1683 +#: flatcamGUI/ObjectUI.py:493 flatcamGUI/PreferencesUI.py:1684 msgid "" "Choose how the isolation will be executed:\n" "- 'Full' -> complete isolation of polygons\n" @@ -7337,24 +7337,24 @@ msgstr "" "pode ser feita somente quando houver uma abertura\n" "dentro do polígono (por exemplo, o polígono é em forma de \"rosca\")." -#: flatcamGUI/ObjectUI.py:491 flatcamGUI/PreferencesUI.py:1692 -#: flatcamGUI/PreferencesUI.py:1708 +#: flatcamGUI/ObjectUI.py:502 flatcamGUI/PreferencesUI.py:1693 +#: flatcamGUI/PreferencesUI.py:1709 msgid "Full" msgstr "Completa" -#: flatcamGUI/ObjectUI.py:492 +#: flatcamGUI/ObjectUI.py:503 msgid "Ext" msgstr "Ext" -#: flatcamGUI/ObjectUI.py:493 +#: flatcamGUI/ObjectUI.py:504 msgid "Int" msgstr "Int" -#: flatcamGUI/ObjectUI.py:498 +#: flatcamGUI/ObjectUI.py:509 msgid "Generate Isolation Geometry" msgstr "Gerar Geometria de Isolação" -#: flatcamGUI/ObjectUI.py:506 +#: flatcamGUI/ObjectUI.py:517 msgid "" "Create a Geometry object with toolpaths to cut \n" "isolation outside, inside or on both sides of the\n" @@ -7375,11 +7375,11 @@ msgstr "" "desejado é cortar a isolação dentro do recurso Gerber, use uma\n" "ferramenta negativa diâmetro acima." -#: flatcamGUI/ObjectUI.py:518 +#: flatcamGUI/ObjectUI.py:529 msgid "Buffer Solid Geometry" msgstr "Buffer de Geometria Sólida" -#: flatcamGUI/ObjectUI.py:520 +#: flatcamGUI/ObjectUI.py:531 msgid "" "This button is shown only when the Gerber file\n" "is loaded without buffering.\n" @@ -7391,11 +7391,11 @@ msgstr "" "Clicar neste botão criará o buffer da geometria\n" "necessário para a isolação." -#: flatcamGUI/ObjectUI.py:548 +#: flatcamGUI/ObjectUI.py:559 msgid "Clear N-copper" msgstr "Limpa N-cobre" -#: flatcamGUI/ObjectUI.py:550 flatcamGUI/PreferencesUI.py:3974 +#: flatcamGUI/ObjectUI.py:561 flatcamGUI/PreferencesUI.py:3975 msgid "" "Create a Geometry object with\n" "toolpaths to cut all non-copper regions." @@ -7403,7 +7403,7 @@ msgstr "" "Cria um objeto Geometria com caminho de ferramenta\n" "para cortar todas as regiões com retirada de cobre." -#: flatcamGUI/ObjectUI.py:557 flatcamGUI/ObjectUI.py:1714 +#: flatcamGUI/ObjectUI.py:568 flatcamGUI/ObjectUI.py:1753 #: flatcamTools/ToolNonCopperClear.py:479 msgid "" "Create the Geometry Object\n" @@ -7412,11 +7412,11 @@ msgstr "" "Cria o Objeto de Geometria\n" "para roteamento de zona sem cobre." -#: flatcamGUI/ObjectUI.py:570 +#: flatcamGUI/ObjectUI.py:581 msgid "Board cutout" msgstr "Recorte da placa" -#: flatcamGUI/ObjectUI.py:572 flatcamGUI/PreferencesUI.py:4266 +#: flatcamGUI/ObjectUI.py:583 flatcamGUI/PreferencesUI.py:4267 msgid "" "Create toolpaths to cut around\n" "the PCB and separate it from\n" @@ -7425,17 +7425,17 @@ msgstr "" "Cria caminhos da ferramenta para cortar\n" "o PCB e separá-lo da placa original." -#: flatcamGUI/ObjectUI.py:579 +#: flatcamGUI/ObjectUI.py:590 msgid "" "Generate the geometry for\n" "the board cutout." msgstr "Gera a geometria para o recorte da placa." -#: flatcamGUI/ObjectUI.py:597 flatcamGUI/PreferencesUI.py:1520 +#: flatcamGUI/ObjectUI.py:608 flatcamGUI/PreferencesUI.py:1521 msgid "Non-copper regions" msgstr "Zona sem cobre" -#: flatcamGUI/ObjectUI.py:599 flatcamGUI/PreferencesUI.py:1522 +#: flatcamGUI/ObjectUI.py:610 flatcamGUI/PreferencesUI.py:1523 msgid "" "Create polygons covering the\n" "areas without copper on the PCB.\n" @@ -7449,12 +7449,12 @@ msgstr "" "objeto. Pode ser usado para remover todo o\n" "cobre de uma região especificada." -#: flatcamGUI/ObjectUI.py:609 flatcamGUI/ObjectUI.py:650 -#: flatcamGUI/PreferencesUI.py:1534 flatcamGUI/PreferencesUI.py:1562 +#: flatcamGUI/ObjectUI.py:620 flatcamGUI/ObjectUI.py:661 +#: flatcamGUI/PreferencesUI.py:1535 flatcamGUI/PreferencesUI.py:1563 msgid "Boundary Margin" msgstr "Margem Limite" -#: flatcamGUI/ObjectUI.py:611 flatcamGUI/PreferencesUI.py:1536 +#: flatcamGUI/ObjectUI.py:622 flatcamGUI/PreferencesUI.py:1537 msgid "" "Specify the edge of the PCB\n" "by drawing a box around all\n" @@ -7465,27 +7465,27 @@ msgstr "" "desenhando uma caixa em volta de todos os\n" "objetos com esta distância mínima." -#: flatcamGUI/ObjectUI.py:626 flatcamGUI/ObjectUI.py:664 -#: flatcamGUI/PreferencesUI.py:1549 flatcamGUI/PreferencesUI.py:1575 +#: flatcamGUI/ObjectUI.py:637 flatcamGUI/ObjectUI.py:675 +#: flatcamGUI/PreferencesUI.py:1550 flatcamGUI/PreferencesUI.py:1576 msgid "Rounded Geo" msgstr "Geo Arredondado" -#: flatcamGUI/ObjectUI.py:628 flatcamGUI/PreferencesUI.py:1551 +#: flatcamGUI/ObjectUI.py:639 flatcamGUI/PreferencesUI.py:1552 msgid "Resulting geometry will have rounded corners." msgstr "A geometria resultante terá cantos arredondados." -#: flatcamGUI/ObjectUI.py:632 flatcamGUI/ObjectUI.py:673 +#: flatcamGUI/ObjectUI.py:643 flatcamGUI/ObjectUI.py:684 #: flatcamTools/ToolSolderPaste.py:133 msgid "Generate Geo" msgstr "Gerar Geo" -#: flatcamGUI/ObjectUI.py:642 flatcamGUI/PreferencesUI.py:1556 -#: flatcamGUI/PreferencesUI.py:5983 flatcamTools/ToolPanelize.py:95 +#: flatcamGUI/ObjectUI.py:653 flatcamGUI/PreferencesUI.py:1557 +#: flatcamGUI/PreferencesUI.py:5984 flatcamTools/ToolPanelize.py:95 #: flatcamTools/ToolQRCode.py:192 msgid "Bounding Box" msgstr "Caixa Delimitadora" -#: flatcamGUI/ObjectUI.py:644 +#: flatcamGUI/ObjectUI.py:655 msgid "" "Create a geometry surrounding the Gerber object.\n" "Square shape." @@ -7493,7 +7493,7 @@ msgstr "" "Crie uma geometria em torno do objeto Gerber.\n" "Forma quadrada." -#: flatcamGUI/ObjectUI.py:652 flatcamGUI/PreferencesUI.py:1564 +#: flatcamGUI/ObjectUI.py:663 flatcamGUI/PreferencesUI.py:1565 msgid "" "Distance of the edges of the box\n" "to the nearest polygon." @@ -7501,7 +7501,7 @@ msgstr "" "Distância das bordas da caixa\n" "para o polígono mais próximo." -#: flatcamGUI/ObjectUI.py:666 flatcamGUI/PreferencesUI.py:1577 +#: flatcamGUI/ObjectUI.py:677 flatcamGUI/PreferencesUI.py:1578 msgid "" "If the bounding box is \n" "to have rounded corners\n" @@ -7512,33 +7512,33 @@ msgstr "" "cantos arredondados, o seu raio\n" "é igual à margem." -#: flatcamGUI/ObjectUI.py:675 +#: flatcamGUI/ObjectUI.py:686 msgid "Generate the Geometry object." msgstr "Gera o objeto Geometria." -#: flatcamGUI/ObjectUI.py:691 +#: flatcamGUI/ObjectUI.py:715 msgid "Excellon Object" msgstr "Objeto Excellon" -#: flatcamGUI/ObjectUI.py:705 +#: flatcamGUI/ObjectUI.py:729 msgid "Solid circles." msgstr "Círculos preenchidos ou vazados." -#: flatcamGUI/ObjectUI.py:753 flatcamGUI/ObjectUI.py:1876 +#: flatcamGUI/ObjectUI.py:777 flatcamGUI/ObjectUI.py:1928 #: flatcamTools/ToolProperties.py:161 msgid "Drills" msgstr "Furos" -#: flatcamGUI/ObjectUI.py:753 flatcamGUI/ObjectUI.py:1876 -#: flatcamGUI/PreferencesUI.py:2952 flatcamTools/ToolProperties.py:162 +#: flatcamGUI/ObjectUI.py:777 flatcamGUI/ObjectUI.py:1928 +#: flatcamGUI/PreferencesUI.py:2953 flatcamTools/ToolProperties.py:162 msgid "Slots" msgstr "Ranhuras" -#: flatcamGUI/ObjectUI.py:754 flatcamGUI/PreferencesUI.py:2555 +#: flatcamGUI/ObjectUI.py:778 flatcamGUI/PreferencesUI.py:2556 msgid "Offset Z" msgstr "Deslocamento Z" -#: flatcamGUI/ObjectUI.py:758 +#: flatcamGUI/ObjectUI.py:782 msgid "" "This is the Tool Number.\n" "When ToolChange is checked, on toolchange event this value\n" @@ -7550,7 +7550,7 @@ msgstr "" "Quando Trocar Ferramentas estiver marcado, este valor\n" " será mostrado como T1, T2 ... Tn no Código da Máquina." -#: flatcamGUI/ObjectUI.py:763 flatcamGUI/ObjectUI.py:1191 +#: flatcamGUI/ObjectUI.py:787 flatcamGUI/ObjectUI.py:1230 #: flatcamTools/ToolPaint.py:137 msgid "" "Tool Diameter. It's value (in current FlatCAM units) \n" @@ -7559,19 +7559,19 @@ msgstr "" "Diâmetro da Ferramenta. É a largura do corte no material\n" "(nas unidades atuais do FlatCAM)." -#: flatcamGUI/ObjectUI.py:766 +#: flatcamGUI/ObjectUI.py:790 msgid "" "The number of Drill holes. Holes that are drilled with\n" "a drill bit." msgstr "Número de Furos. Serão perfurados com brocas." -#: flatcamGUI/ObjectUI.py:769 +#: flatcamGUI/ObjectUI.py:793 msgid "" "The number of Slot holes. Holes that are created by\n" "milling them with an endmill bit." msgstr "Número de Ranhuras (Fendas). Serão criadas com fresas." -#: flatcamGUI/ObjectUI.py:772 flatcamGUI/PreferencesUI.py:2557 +#: flatcamGUI/ObjectUI.py:796 flatcamGUI/PreferencesUI.py:2558 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" @@ -7582,7 +7582,7 @@ msgstr "" "ponta.\n" "Este valor pode compensar o parâmetro Profundidade de Corte Z." -#: flatcamGUI/ObjectUI.py:776 +#: flatcamGUI/ObjectUI.py:800 msgid "" "Toggle display of the drills for the current tool.\n" "This does not select the tools for G-code generation." @@ -7590,18 +7590,18 @@ msgstr "" "Alterna a exibição da ferramenta atual. Isto não seleciona a ferramenta para " "geração do G-Code." -#: flatcamGUI/ObjectUI.py:783 flatcamGUI/PreferencesUI.py:2323 -#: flatcamGUI/PreferencesUI.py:3167 +#: flatcamGUI/ObjectUI.py:807 flatcamGUI/PreferencesUI.py:2324 +#: flatcamGUI/PreferencesUI.py:3168 msgid "Create CNC Job" msgstr "Criar Trabalho CNC" -#: flatcamGUI/ObjectUI.py:785 +#: flatcamGUI/ObjectUI.py:809 msgid "" "Create a CNC Job object\n" "for this drill object." msgstr "Cria um objeto de trabalho CNC para a furação." -#: flatcamGUI/ObjectUI.py:798 flatcamGUI/PreferencesUI.py:2336 +#: flatcamGUI/ObjectUI.py:822 flatcamGUI/PreferencesUI.py:2337 msgid "" "Drill depth (negative)\n" "below the copper surface." @@ -7609,7 +7609,7 @@ msgstr "" "Profundidade do furo (negativo)\n" "abaixo da superfície de cobre." -#: flatcamGUI/ObjectUI.py:817 flatcamGUI/PreferencesUI.py:2354 +#: flatcamGUI/ObjectUI.py:841 flatcamGUI/PreferencesUI.py:2355 msgid "" "Tool height when travelling\n" "across the XY plane." @@ -7617,12 +7617,12 @@ msgstr "" "Altura da ferramenta durante os\n" "deslocamentos sobre o plano XY." -#: flatcamGUI/ObjectUI.py:834 flatcamGUI/ObjectUI.py:1439 -#: flatcamGUI/PreferencesUI.py:2369 flatcamGUI/PreferencesUI.py:3252 +#: flatcamGUI/ObjectUI.py:858 flatcamGUI/ObjectUI.py:1478 +#: flatcamGUI/PreferencesUI.py:2370 flatcamGUI/PreferencesUI.py:3253 msgid "Tool change" msgstr "Troca de Ferramentas" -#: flatcamGUI/ObjectUI.py:836 flatcamGUI/PreferencesUI.py:2371 +#: flatcamGUI/ObjectUI.py:860 flatcamGUI/PreferencesUI.py:2372 msgid "" "Include tool-change sequence\n" "in G-Code (Pause for tool change)." @@ -7630,23 +7630,23 @@ msgstr "" "Pausa para troca de ferramentas. Inclua a sequência\n" "de troca de ferramentas em G-Code (em Trabalho CNC)." -#: flatcamGUI/ObjectUI.py:842 flatcamGUI/ObjectUI.py:1432 +#: flatcamGUI/ObjectUI.py:866 flatcamGUI/ObjectUI.py:1471 msgid "Tool change Z" msgstr "Altura para a troca" -#: flatcamGUI/ObjectUI.py:844 flatcamGUI/ObjectUI.py:1435 -#: flatcamGUI/PreferencesUI.py:2380 flatcamGUI/PreferencesUI.py:3267 +#: flatcamGUI/ObjectUI.py:868 flatcamGUI/ObjectUI.py:1474 +#: flatcamGUI/PreferencesUI.py:2381 flatcamGUI/PreferencesUI.py:3268 msgid "" "Z-axis position (height) for\n" "tool change." msgstr "Posição do eixo Z (altura) para a troca de ferramenta." -#: flatcamGUI/ObjectUI.py:862 flatcamGUI/PreferencesUI.py:2575 -#: flatcamGUI/PreferencesUI.py:3420 +#: flatcamGUI/ObjectUI.py:886 flatcamGUI/PreferencesUI.py:2576 +#: flatcamGUI/PreferencesUI.py:3421 msgid "Start move Z" msgstr "Altura Z Inicial" -#: flatcamGUI/ObjectUI.py:864 flatcamGUI/PreferencesUI.py:2577 +#: flatcamGUI/ObjectUI.py:888 flatcamGUI/PreferencesUI.py:2578 msgid "" "Height of the tool just after start.\n" "Delete the value if you don't need this feature." @@ -7654,25 +7654,25 @@ msgstr "" "Altura da ferramenta antes de iniciar o trabalho.\n" "Exclua o valor se você não precisar deste recurso." -#: flatcamGUI/ObjectUI.py:872 flatcamGUI/ObjectUI.py:1473 -#: flatcamGUI/PreferencesUI.py:2395 flatcamGUI/PreferencesUI.py:3286 +#: flatcamGUI/ObjectUI.py:896 flatcamGUI/ObjectUI.py:1512 +#: flatcamGUI/PreferencesUI.py:2396 flatcamGUI/PreferencesUI.py:3287 msgid "End move Z" msgstr "Altura Z Final" -#: flatcamGUI/ObjectUI.py:874 flatcamGUI/ObjectUI.py:1475 -#: flatcamGUI/PreferencesUI.py:2397 flatcamGUI/PreferencesUI.py:3288 +#: flatcamGUI/ObjectUI.py:898 flatcamGUI/ObjectUI.py:1514 +#: flatcamGUI/PreferencesUI.py:2398 flatcamGUI/PreferencesUI.py:3289 msgid "" "Height of the tool after\n" "the last move at the end of the job." msgstr "Altura da ferramenta após o último movimento, no final do trabalho." -#: flatcamGUI/ObjectUI.py:891 flatcamGUI/ObjectUI.py:1506 -#: flatcamGUI/PreferencesUI.py:2412 flatcamGUI/PreferencesUI.py:3321 -#: flatcamGUI/PreferencesUI.py:5497 flatcamTools/ToolSolderPaste.py:264 +#: flatcamGUI/ObjectUI.py:915 flatcamGUI/ObjectUI.py:1545 +#: flatcamGUI/PreferencesUI.py:2413 flatcamGUI/PreferencesUI.py:3322 +#: flatcamGUI/PreferencesUI.py:5498 flatcamTools/ToolSolderPaste.py:264 msgid "Feedrate Z" msgstr "Taxa de Avanço Z" -#: flatcamGUI/ObjectUI.py:893 flatcamGUI/PreferencesUI.py:2414 +#: flatcamGUI/ObjectUI.py:917 flatcamGUI/PreferencesUI.py:2415 msgid "" "Tool speed while drilling\n" "(in units per minute).\n" @@ -7684,12 +7684,12 @@ msgstr "" "Também chamado de avanço de 'Mergulho'.\n" "Para movimento linear G01." -#: flatcamGUI/ObjectUI.py:907 flatcamGUI/ObjectUI.py:1521 -#: flatcamGUI/PreferencesUI.py:2585 flatcamGUI/PreferencesUI.py:3430 +#: flatcamGUI/ObjectUI.py:931 flatcamGUI/ObjectUI.py:1560 +#: flatcamGUI/PreferencesUI.py:2586 flatcamGUI/PreferencesUI.py:3431 msgid "Feedrate Rapids" msgstr "Taxa de Avanço Rápida" -#: flatcamGUI/ObjectUI.py:909 flatcamGUI/PreferencesUI.py:2587 +#: flatcamGUI/ObjectUI.py:933 flatcamGUI/PreferencesUI.py:2588 msgid "" "Tool speed while drilling\n" "(in units per minute).\n" @@ -7702,12 +7702,12 @@ msgstr "" "Usado para movimento rápido G00.\n" "É útil apenas para Marlin. Ignore para outros casos." -#: flatcamGUI/ObjectUI.py:927 flatcamGUI/ObjectUI.py:1566 -#: flatcamGUI/PreferencesUI.py:3337 +#: flatcamGUI/ObjectUI.py:951 flatcamGUI/ObjectUI.py:1605 +#: flatcamGUI/PreferencesUI.py:3338 msgid "Spindle speed" msgstr "Velocidade do Spindle" -#: flatcamGUI/ObjectUI.py:929 flatcamGUI/PreferencesUI.py:2429 +#: flatcamGUI/ObjectUI.py:953 flatcamGUI/PreferencesUI.py:2430 msgid "" "Speed of the spindle\n" "in RPM (optional)" @@ -7715,8 +7715,8 @@ msgstr "" "Velocidade do spindle\n" "em RPM (opcional)" -#: flatcamGUI/ObjectUI.py:941 flatcamGUI/ObjectUI.py:1585 -#: flatcamGUI/PreferencesUI.py:2441 flatcamGUI/PreferencesUI.py:3355 +#: flatcamGUI/ObjectUI.py:965 flatcamGUI/ObjectUI.py:1624 +#: flatcamGUI/PreferencesUI.py:2442 flatcamGUI/PreferencesUI.py:3356 msgid "" "Pause to allow the spindle to reach its\n" "speed before cutting." @@ -7724,12 +7724,12 @@ msgstr "" "Pausa para permitir que o spindle atinja sua\n" "velocidade antes de cortar." -#: flatcamGUI/ObjectUI.py:950 flatcamGUI/ObjectUI.py:1595 -#: flatcamGUI/PreferencesUI.py:2446 flatcamGUI/PreferencesUI.py:3360 +#: flatcamGUI/ObjectUI.py:974 flatcamGUI/ObjectUI.py:1634 +#: flatcamGUI/PreferencesUI.py:2447 flatcamGUI/PreferencesUI.py:3361 msgid "Number of time units for spindle to dwell." msgstr "Número de unidades de tempo para o fuso residir." -#: flatcamGUI/ObjectUI.py:960 flatcamGUI/PreferencesUI.py:2463 +#: flatcamGUI/ObjectUI.py:984 flatcamGUI/PreferencesUI.py:2464 msgid "" "The preprocessor JSON file that dictates\n" "Gcode output." @@ -7737,13 +7737,13 @@ msgstr "" "O arquivo de pós-processamento (JSON) que define\n" "a saída G-Code." -#: flatcamGUI/ObjectUI.py:969 flatcamGUI/ObjectUI.py:1615 -#: flatcamGUI/PreferencesUI.py:2601 flatcamGUI/PreferencesUI.py:3471 +#: flatcamGUI/ObjectUI.py:993 flatcamGUI/ObjectUI.py:1654 +#: flatcamGUI/PreferencesUI.py:2602 flatcamGUI/PreferencesUI.py:3472 msgid "Probe Z depth" msgstr "Profundidade Z da Sonda" -#: flatcamGUI/ObjectUI.py:971 flatcamGUI/ObjectUI.py:1617 -#: flatcamGUI/PreferencesUI.py:2603 flatcamGUI/PreferencesUI.py:3473 +#: flatcamGUI/ObjectUI.py:995 flatcamGUI/ObjectUI.py:1656 +#: flatcamGUI/PreferencesUI.py:2604 flatcamGUI/PreferencesUI.py:3474 msgid "" "The maximum depth that the probe is allowed\n" "to probe. Negative value, in current units." @@ -7751,21 +7751,21 @@ msgstr "" "Profundidade máxima permitida para a sonda.\n" "Valor negativo, em unidades atuais." -#: flatcamGUI/ObjectUI.py:985 flatcamGUI/ObjectUI.py:1632 -#: flatcamGUI/PreferencesUI.py:2614 flatcamGUI/PreferencesUI.py:3486 +#: flatcamGUI/ObjectUI.py:1009 flatcamGUI/ObjectUI.py:1671 +#: flatcamGUI/PreferencesUI.py:2615 flatcamGUI/PreferencesUI.py:3487 msgid "Feedrate Probe" msgstr "Avanço da Sonda" -#: flatcamGUI/ObjectUI.py:987 flatcamGUI/ObjectUI.py:1634 -#: flatcamGUI/PreferencesUI.py:2616 flatcamGUI/PreferencesUI.py:3488 +#: flatcamGUI/ObjectUI.py:1011 flatcamGUI/ObjectUI.py:1673 +#: flatcamGUI/PreferencesUI.py:2617 flatcamGUI/PreferencesUI.py:3489 msgid "The feedrate used while the probe is probing." msgstr "Velocidade de Avanço usada enquanto a sonda está operando." -#: flatcamGUI/ObjectUI.py:1013 flatcamGUI/PreferencesUI.py:2472 +#: flatcamGUI/ObjectUI.py:1037 flatcamGUI/PreferencesUI.py:2473 msgid "Gcode" msgstr "G-Code" -#: flatcamGUI/ObjectUI.py:1015 +#: flatcamGUI/ObjectUI.py:1039 msgid "" "Choose what to use for GCode generation:\n" "'Drills', 'Slots' or 'Both'.\n" @@ -7777,19 +7777,19 @@ msgstr "" "Quando escolher 'Ranhuras' ou 'Ambos', as ranhuras/fendas serão\n" "convertidas em uma série de furos." -#: flatcamGUI/ObjectUI.py:1029 +#: flatcamGUI/ObjectUI.py:1053 msgid "Create Drills GCode" msgstr "Criar G-Code Furos" -#: flatcamGUI/ObjectUI.py:1031 +#: flatcamGUI/ObjectUI.py:1055 msgid "Generate the CNC Job." msgstr "Gera o arquivo G-Code para o CNC." -#: flatcamGUI/ObjectUI.py:1042 flatcamGUI/PreferencesUI.py:2490 +#: flatcamGUI/ObjectUI.py:1066 flatcamGUI/PreferencesUI.py:2491 msgid "Mill Holes" msgstr "Furação" -#: flatcamGUI/ObjectUI.py:1044 +#: flatcamGUI/ObjectUI.py:1068 msgid "" "Create Geometry for milling holes.\n" "Select from the Tools Table above the hole dias to be\n" @@ -7800,20 +7800,20 @@ msgstr "" "os diâmetros dos furos que serão fresados.\n" "Use a coluna # para selecionar." -#: flatcamGUI/ObjectUI.py:1050 flatcamGUI/PreferencesUI.py:2496 +#: flatcamGUI/ObjectUI.py:1074 flatcamGUI/PreferencesUI.py:2497 msgid "Drill Tool dia" msgstr "Diâmetro da Broca" -#: flatcamGUI/ObjectUI.py:1052 flatcamGUI/PreferencesUI.py:1451 -#: flatcamGUI/PreferencesUI.py:2498 +#: flatcamGUI/ObjectUI.py:1076 flatcamGUI/PreferencesUI.py:1452 +#: flatcamGUI/PreferencesUI.py:2499 msgid "Diameter of the cutting tool." msgstr "Diâmetro da ferramenta." -#: flatcamGUI/ObjectUI.py:1059 +#: flatcamGUI/ObjectUI.py:1083 msgid "Mill Drills Geo" msgstr "Geo Furos" -#: flatcamGUI/ObjectUI.py:1061 +#: flatcamGUI/ObjectUI.py:1085 msgid "" "Create the Geometry Object\n" "for milling DRILLS toolpaths." @@ -7821,11 +7821,11 @@ msgstr "" "Cria o Objeto Geometria com\n" "os caminhos da ferramenta de FUROS." -#: flatcamGUI/ObjectUI.py:1075 flatcamGUI/PreferencesUI.py:2507 +#: flatcamGUI/ObjectUI.py:1099 flatcamGUI/PreferencesUI.py:2508 msgid "Slot Tool dia" msgstr "Diâmetro da Fresa" -#: flatcamGUI/ObjectUI.py:1077 flatcamGUI/PreferencesUI.py:2509 +#: flatcamGUI/ObjectUI.py:1101 flatcamGUI/PreferencesUI.py:2510 msgid "" "Diameter of the cutting tool\n" "when milling slots." @@ -7833,11 +7833,11 @@ msgstr "" "Diâmetro da ferramenta de corte\n" "quando fresar fendas (ranhuras)." -#: flatcamGUI/ObjectUI.py:1086 +#: flatcamGUI/ObjectUI.py:1110 msgid "Mill Slots Geo" msgstr "Geo Ranhuras" -#: flatcamGUI/ObjectUI.py:1088 +#: flatcamGUI/ObjectUI.py:1112 msgid "" "Create the Geometry Object\n" "for milling SLOTS toolpaths." @@ -7845,11 +7845,11 @@ msgstr "" "Cria o Objeto Geometria com\n" "os caminhos da ferramenta de RANHURAS." -#: flatcamGUI/ObjectUI.py:1115 flatcamTools/ToolCutOut.py:315 +#: flatcamGUI/ObjectUI.py:1152 flatcamTools/ToolCutOut.py:315 msgid "Geometry Object" msgstr "Objeto Geometria" -#: flatcamGUI/ObjectUI.py:1147 +#: flatcamGUI/ObjectUI.py:1186 msgid "" "Tools in this Geometry object used for cutting.\n" "The 'Offset' entry will set an offset for the cut.\n" @@ -7879,23 +7879,23 @@ msgstr "" "de Corte é calculada automaticamente a partir das entradas do\n" "formulário da interface do usuário e do Ângulo da Ponta-V." -#: flatcamGUI/ObjectUI.py:1164 flatcamGUI/ObjectUI.py:1853 -#: flatcamGUI/PreferencesUI.py:3627 +#: flatcamGUI/ObjectUI.py:1203 flatcamGUI/ObjectUI.py:1905 +#: flatcamGUI/PreferencesUI.py:3628 msgid "Plot Object" msgstr "Mostrar" -#: flatcamGUI/ObjectUI.py:1178 flatcamGUI/ObjectUI.py:1866 -#: flatcamGUI/ObjectUI.py:1876 flatcamGUI/PreferencesUI.py:6172 +#: flatcamGUI/ObjectUI.py:1217 flatcamGUI/ObjectUI.py:1918 +#: flatcamGUI/ObjectUI.py:1928 flatcamGUI/PreferencesUI.py:6173 #: flatcamTools/ToolCopperThieving.py:220 msgid "Dia" msgstr "Dia" -#: flatcamGUI/ObjectUI.py:1178 flatcamGUI/ObjectUI.py:1866 +#: flatcamGUI/ObjectUI.py:1217 flatcamGUI/ObjectUI.py:1918 #: flatcamTools/ToolNonCopperClear.py:120 flatcamTools/ToolPaint.py:123 msgid "TT" msgstr "TF" -#: flatcamGUI/ObjectUI.py:1185 +#: flatcamGUI/ObjectUI.py:1224 msgid "" "This is the Tool Number.\n" "When ToolChange is checked, on toolchange event this value\n" @@ -7905,7 +7905,7 @@ msgstr "" "Quando Trocar Ferramentas estiver marcado, no evento este valor\n" " será mostrado como T1, T2 ... Tn" -#: flatcamGUI/ObjectUI.py:1196 +#: flatcamGUI/ObjectUI.py:1235 msgid "" "The value for the Offset can be:\n" "- Path -> There is no offset, the tool cut will be done through the geometry " @@ -7923,7 +7923,7 @@ msgstr "" "geometria.\n" "- Personalizado -> Será considerado o valor digitado." -#: flatcamGUI/ObjectUI.py:1203 +#: flatcamGUI/ObjectUI.py:1242 msgid "" "The (Operation) Type has only informative value. Usually the UI form " "values \n" @@ -7946,7 +7946,7 @@ msgstr "" "Para Isolação, usa-se uma velocidade de avanço menor, pois é usada uma broca " "com ponta fina." -#: flatcamGUI/ObjectUI.py:1212 +#: flatcamGUI/ObjectUI.py:1251 msgid "" "The Tool Type (TT) can be:\n" "- Circular with 1 ... 4 teeth -> it is informative only. Being circular the " @@ -7976,7 +7976,7 @@ msgstr "" "Escolher o tipo de ferramenta Em Forma de V automaticamente alterará o tipo " "de operação para Isolação." -#: flatcamGUI/ObjectUI.py:1224 +#: flatcamGUI/ObjectUI.py:1263 msgid "" "Plot column. It is visible only for MultiGeo geometries, meaning geometries " "that holds the geometry\n" @@ -7994,7 +7994,7 @@ msgstr "" "desativado o gráfico na tela\n" "para a ferramenta correspondente." -#: flatcamGUI/ObjectUI.py:1242 +#: flatcamGUI/ObjectUI.py:1281 msgid "" "The value to offset the cut when \n" "the Offset type selected is 'Offset'.\n" @@ -8006,7 +8006,7 @@ msgstr "" "O valor pode ser positivo para corte 'por fora'\n" "e negativo para corte 'por dentro'." -#: flatcamGUI/ObjectUI.py:1267 +#: flatcamGUI/ObjectUI.py:1306 msgid "" "Add a new tool to the Tool Table\n" "with the specified diameter." @@ -8014,11 +8014,11 @@ msgstr "" "Adiciona uma nova ferramenta à Tabela de Ferramentas\n" "com o diâmetro especificado." -#: flatcamGUI/ObjectUI.py:1275 +#: flatcamGUI/ObjectUI.py:1314 msgid "Add Tool from DataBase" msgstr "Adiciona Ferramenta do Banco de Dados" -#: flatcamGUI/ObjectUI.py:1277 +#: flatcamGUI/ObjectUI.py:1316 msgid "" "Add a new tool to the Tool Table\n" "from the Tool DataBase." @@ -8026,7 +8026,7 @@ msgstr "" "Adiciona uma nova ferramenta à Tabela de Ferramentas\n" "do Banco de Dados de Ferramentas." -#: flatcamGUI/ObjectUI.py:1287 +#: flatcamGUI/ObjectUI.py:1326 msgid "" "Copy a selection of tools in the Tool Table\n" "by first selecting a row in the Tool Table." @@ -8034,7 +8034,7 @@ msgstr "" "Copia uma seleção de ferramentas na Tabela de Ferramentas selecionando " "primeiro uma linha na Tabela de Ferramentas." -#: flatcamGUI/ObjectUI.py:1293 +#: flatcamGUI/ObjectUI.py:1332 msgid "" "Delete a selection of tools in the Tool Table\n" "by first selecting a row in the Tool Table." @@ -8042,7 +8042,7 @@ msgstr "" "Exclui uma seleção de ferramentas na Tabela de Ferramentas selecionando " "primeiro uma linha na Tabela de Ferramentas." -#: flatcamGUI/ObjectUI.py:1317 +#: flatcamGUI/ObjectUI.py:1356 msgid "" "The data used for creating GCode.\n" "Each tool store it's own set of such data." @@ -8050,13 +8050,13 @@ msgstr "" "Os dados usados para criar o G-Code.\n" "Cada loja de ferramentas possui seu próprio conjunto de dados." -#: flatcamGUI/ObjectUI.py:1387 flatcamGUI/PreferencesUI.py:3199 -#: flatcamGUI/PreferencesUI.py:4311 flatcamTools/ToolCutOut.py:153 +#: flatcamGUI/ObjectUI.py:1426 flatcamGUI/PreferencesUI.py:3200 +#: flatcamGUI/PreferencesUI.py:4312 flatcamTools/ToolCutOut.py:153 msgid "Multi-Depth" msgstr "Multi-Profundidade" -#: flatcamGUI/ObjectUI.py:1390 flatcamGUI/PreferencesUI.py:3202 -#: flatcamGUI/PreferencesUI.py:4314 flatcamTools/ToolCutOut.py:156 +#: flatcamGUI/ObjectUI.py:1429 flatcamGUI/PreferencesUI.py:3203 +#: flatcamGUI/PreferencesUI.py:4315 flatcamTools/ToolCutOut.py:156 msgid "" "Use multiple passes to limit\n" "the cut depth in each pass. Will\n" @@ -8068,18 +8068,18 @@ msgstr "" "cortar várias vezes até o Corte Z é\n" "alcançado." -#: flatcamGUI/ObjectUI.py:1404 flatcamGUI/PreferencesUI.py:4326 +#: flatcamGUI/ObjectUI.py:1443 flatcamGUI/PreferencesUI.py:4327 #: flatcamTools/ToolCutOut.py:170 msgid "Depth of each pass (positive)." msgstr "Profundidade de cada passe (positivo)." -#: flatcamGUI/ObjectUI.py:1415 flatcamGUI/PreferencesUI.py:3234 +#: flatcamGUI/ObjectUI.py:1454 flatcamGUI/PreferencesUI.py:3235 msgid "" "Height of the tool when\n" "moving without cutting." msgstr "Altura da ferramenta ao mover sem cortar." -#: flatcamGUI/ObjectUI.py:1442 flatcamGUI/PreferencesUI.py:3255 +#: flatcamGUI/ObjectUI.py:1481 flatcamGUI/PreferencesUI.py:3256 msgid "" "Include tool-change sequence\n" "in the Machine Code (Pause for tool change)." @@ -8087,18 +8087,18 @@ msgstr "" "Sequência de troca de ferramentas incluída\n" "no Código da Máquina (Pausa para troca de ferramentas)." -#: flatcamGUI/ObjectUI.py:1492 flatcamGUI/PreferencesUI.py:3306 -#: flatcamGUI/PreferencesUI.py:5484 flatcamTools/ToolSolderPaste.py:252 +#: flatcamGUI/ObjectUI.py:1531 flatcamGUI/PreferencesUI.py:3307 +#: flatcamGUI/PreferencesUI.py:5485 flatcamTools/ToolSolderPaste.py:252 msgid "Feedrate X-Y" msgstr "Avanço X-Y" -#: flatcamGUI/ObjectUI.py:1494 flatcamGUI/PreferencesUI.py:3308 +#: flatcamGUI/ObjectUI.py:1533 flatcamGUI/PreferencesUI.py:3309 msgid "" "Cutting speed in the XY\n" "plane in units per minute" msgstr "Velocidade de corte no plano XY em unidades por minuto" -#: flatcamGUI/ObjectUI.py:1508 flatcamGUI/PreferencesUI.py:3323 +#: flatcamGUI/ObjectUI.py:1547 flatcamGUI/PreferencesUI.py:3324 msgid "" "Cutting speed in the XY\n" "plane in units per minute.\n" @@ -8107,7 +8107,7 @@ msgstr "" "Velocidade de corte no plano Z em unidades por minuto.\n" "Também é chamado de Mergulho." -#: flatcamGUI/ObjectUI.py:1523 flatcamGUI/PreferencesUI.py:3432 +#: flatcamGUI/ObjectUI.py:1562 flatcamGUI/PreferencesUI.py:3433 msgid "" "Cutting speed in the XY plane\n" "(in units per minute).\n" @@ -8119,12 +8119,12 @@ msgstr "" "Para o movimento rápido G00.\n" "É útil apenas para Marlin, ignore em outros casos." -#: flatcamGUI/ObjectUI.py:1541 flatcamGUI/PreferencesUI.py:3448 +#: flatcamGUI/ObjectUI.py:1580 flatcamGUI/PreferencesUI.py:3449 msgid "Re-cut" msgstr "Re-cortar" -#: flatcamGUI/ObjectUI.py:1543 flatcamGUI/ObjectUI.py:1555 -#: flatcamGUI/PreferencesUI.py:3450 flatcamGUI/PreferencesUI.py:3462 +#: flatcamGUI/ObjectUI.py:1582 flatcamGUI/ObjectUI.py:1594 +#: flatcamGUI/PreferencesUI.py:3451 flatcamGUI/PreferencesUI.py:3463 msgid "" "In order to remove possible\n" "copper leftovers where first cut\n" @@ -8135,7 +8135,7 @@ msgstr "" "do primeiro com o último corte, gera-se um corte\n" "próximo à primeira seção de corte." -#: flatcamGUI/ObjectUI.py:1569 flatcamGUI/PreferencesUI.py:3340 +#: flatcamGUI/ObjectUI.py:1608 flatcamGUI/PreferencesUI.py:3341 msgid "" "Speed of the spindle in RPM (optional).\n" "If LASER preprocessor is used,\n" @@ -8145,12 +8145,12 @@ msgstr "" "Se o pós-processador LASER é usado,\n" "este valor é a potência do laser." -#: flatcamGUI/ObjectUI.py:1603 flatcamGUI/PreferencesUI.py:5573 +#: flatcamGUI/ObjectUI.py:1642 flatcamGUI/PreferencesUI.py:5574 #: flatcamTools/ToolSolderPaste.py:334 msgid "PostProcessor" msgstr "Pós-processador" -#: flatcamGUI/ObjectUI.py:1605 flatcamGUI/PreferencesUI.py:3377 +#: flatcamGUI/ObjectUI.py:1644 flatcamGUI/PreferencesUI.py:3378 msgid "" "The Preprocessor file that dictates\n" "the Machine Code (like GCode, RML, HPGL) output." @@ -8158,11 +8158,11 @@ msgstr "" "Arquivo de Pós-processamento que determina o código\n" "de máquina de saída(como G-Code, RML, HPGL)." -#: flatcamGUI/ObjectUI.py:1652 +#: flatcamGUI/ObjectUI.py:1691 msgid "Apply parameters to all tools" msgstr "Aplicar parâmetros a todas as ferramentas" -#: flatcamGUI/ObjectUI.py:1654 +#: flatcamGUI/ObjectUI.py:1693 msgid "" "The parameters in the current form will be applied\n" "on all the tools from the Tool Table." @@ -8170,7 +8170,7 @@ msgstr "" "Os parâmetros no formulário atual serão aplicados\n" "em todas as ferramentas da Tabela de Ferramentas." -#: flatcamGUI/ObjectUI.py:1663 +#: flatcamGUI/ObjectUI.py:1702 msgid "" "Add at least one tool in the tool-table.\n" "Click the header to select all, or Ctrl + LMB\n" @@ -8180,19 +8180,19 @@ msgstr "" "Clique no cabeçalho para selecionar todos ou Ctrl + Botão Esquerdo do Mouse\n" "para seleção personalizada de ferramentas." -#: flatcamGUI/ObjectUI.py:1670 +#: flatcamGUI/ObjectUI.py:1709 msgid "Generate CNCJob object" msgstr "Gera o objeto de Trabalho CNC" -#: flatcamGUI/ObjectUI.py:1672 +#: flatcamGUI/ObjectUI.py:1711 msgid "Generate the CNC Job object." msgstr "Gera o objeto de Trabalho CNC." -#: flatcamGUI/ObjectUI.py:1689 +#: flatcamGUI/ObjectUI.py:1728 msgid "Launch Paint Tool in Tools Tab." msgstr "Inicia a ferramenta de pintura na guia Ferramentas." -#: flatcamGUI/ObjectUI.py:1697 flatcamGUI/PreferencesUI.py:4489 +#: flatcamGUI/ObjectUI.py:1736 flatcamGUI/PreferencesUI.py:4490 msgid "" "Creates tool paths to cover the\n" "whole area of a polygon (remove\n" @@ -8203,15 +8203,15 @@ msgstr "" "inteira de um polígono (remove todo o cobre).\n" "Você será solicitado a clicar no polígono desejado." -#: flatcamGUI/ObjectUI.py:1737 +#: flatcamGUI/ObjectUI.py:1788 msgid "CNC Job Object" msgstr "Objeto de Trabalho CNC" -#: flatcamGUI/ObjectUI.py:1748 flatcamGUI/PreferencesUI.py:3632 +#: flatcamGUI/ObjectUI.py:1800 flatcamGUI/PreferencesUI.py:3633 msgid "Plot kind" msgstr "Tipo de Gráfico" -#: flatcamGUI/ObjectUI.py:1751 flatcamGUI/PreferencesUI.py:3634 +#: flatcamGUI/ObjectUI.py:1803 flatcamGUI/PreferencesUI.py:3635 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" @@ -8222,15 +8222,15 @@ msgstr "" "Pode ser do tipo 'Deslocamento', com os movimentos acima da peça, do\n" "tipo 'Corte', com os movimentos cortando o material ou ambos." -#: flatcamGUI/ObjectUI.py:1760 flatcamGUI/PreferencesUI.py:3642 +#: flatcamGUI/ObjectUI.py:1812 flatcamGUI/PreferencesUI.py:3643 msgid "Travel" msgstr "Deslocamento" -#: flatcamGUI/ObjectUI.py:1764 flatcamGUI/PreferencesUI.py:3651 +#: flatcamGUI/ObjectUI.py:1816 flatcamGUI/PreferencesUI.py:3652 msgid "Display Annotation" msgstr "Exibir Anotação" -#: flatcamGUI/ObjectUI.py:1766 flatcamGUI/PreferencesUI.py:3653 +#: flatcamGUI/ObjectUI.py:1818 flatcamGUI/PreferencesUI.py:3654 msgid "" "This selects if to display text annotation on the plot.\n" "When checked it will display numbers in order for each end\n" @@ -8240,11 +8240,11 @@ msgstr "" "Quando marcado, exibirá números para cada final\n" "de uma linha de deslocamento." -#: flatcamGUI/ObjectUI.py:1781 +#: flatcamGUI/ObjectUI.py:1833 msgid "Travelled dist." msgstr "Dist. percorrida" -#: flatcamGUI/ObjectUI.py:1783 flatcamGUI/ObjectUI.py:1788 +#: flatcamGUI/ObjectUI.py:1835 flatcamGUI/ObjectUI.py:1840 msgid "" "This is the total travelled distance on X-Y plane.\n" "In current units." @@ -8252,11 +8252,11 @@ msgstr "" "Essa é a distância total percorrida no plano XY,\n" "nas unidades atuais." -#: flatcamGUI/ObjectUI.py:1793 +#: flatcamGUI/ObjectUI.py:1845 msgid "Estimated time" msgstr "Tempo estimado" -#: flatcamGUI/ObjectUI.py:1795 flatcamGUI/ObjectUI.py:1800 +#: flatcamGUI/ObjectUI.py:1847 flatcamGUI/ObjectUI.py:1852 msgid "" "This is the estimated time to do the routing/drilling,\n" "without the time spent in ToolChange events." @@ -8264,11 +8264,11 @@ msgstr "" "Este é o tempo estimado para fazer o roteamento/perfuração,\n" "sem o tempo gasto em eventos de Alteração de Ferramentas." -#: flatcamGUI/ObjectUI.py:1835 +#: flatcamGUI/ObjectUI.py:1887 msgid "CNC Tools Table" msgstr "Tabela de Ferra. CNC" -#: flatcamGUI/ObjectUI.py:1838 +#: flatcamGUI/ObjectUI.py:1890 msgid "" "Tools in this CNCJob object used for cutting.\n" "The tool diameter is used for plotting on canvas.\n" @@ -8291,24 +8291,24 @@ msgstr "" "O 'Tipo de Ferramenta' (TF) pode ser circular com 1 a 4 dentes (C1..C4),\n" "bola (B) ou Em forma de V (V)." -#: flatcamGUI/ObjectUI.py:1866 flatcamGUI/ObjectUI.py:1877 +#: flatcamGUI/ObjectUI.py:1918 flatcamGUI/ObjectUI.py:1929 msgid "P" msgstr "P" -#: flatcamGUI/ObjectUI.py:1887 +#: flatcamGUI/ObjectUI.py:1939 msgid "Update Plot" msgstr "Atualizar Gráfico" -#: flatcamGUI/ObjectUI.py:1889 +#: flatcamGUI/ObjectUI.py:1941 msgid "Update the plot." msgstr "Atualiza o gráfico." -#: flatcamGUI/ObjectUI.py:1896 flatcamGUI/PreferencesUI.py:3819 +#: flatcamGUI/ObjectUI.py:1948 flatcamGUI/PreferencesUI.py:3820 msgid "Export CNC Code" msgstr "Exportar Código CNC" -#: flatcamGUI/ObjectUI.py:1898 flatcamGUI/PreferencesUI.py:3760 -#: flatcamGUI/PreferencesUI.py:3821 +#: flatcamGUI/ObjectUI.py:1950 flatcamGUI/PreferencesUI.py:3761 +#: flatcamGUI/PreferencesUI.py:3822 msgid "" "Export and save G-Code to\n" "make this object to a file." @@ -8316,12 +8316,12 @@ msgstr "" "Exporta e salva em arquivo\n" "o G-Code para fazer este objeto." -#: flatcamGUI/ObjectUI.py:1904 +#: flatcamGUI/ObjectUI.py:1956 msgid "Prepend to CNC Code" msgstr "Incluir no Início do Código CNC" -#: flatcamGUI/ObjectUI.py:1906 flatcamGUI/ObjectUI.py:1913 -#: flatcamGUI/PreferencesUI.py:3776 flatcamGUI/PreferencesUI.py:3783 +#: flatcamGUI/ObjectUI.py:1958 flatcamGUI/ObjectUI.py:1965 +#: flatcamGUI/PreferencesUI.py:3777 flatcamGUI/PreferencesUI.py:3784 msgid "" "Type here any G-Code commands you would\n" "like to add at the beginning of the G-Code file." @@ -8329,12 +8329,12 @@ msgstr "" "Digite aqui os comandos G-Code que você gostaria\n" "de adicionar ao início do arquivo G-Code gerado." -#: flatcamGUI/ObjectUI.py:1919 +#: flatcamGUI/ObjectUI.py:1971 msgid "Append to CNC Code" msgstr "Incluir no Final do Código CNC" -#: flatcamGUI/ObjectUI.py:1921 flatcamGUI/ObjectUI.py:1929 -#: flatcamGUI/PreferencesUI.py:3792 flatcamGUI/PreferencesUI.py:3800 +#: flatcamGUI/ObjectUI.py:1973 flatcamGUI/ObjectUI.py:1981 +#: flatcamGUI/PreferencesUI.py:3793 flatcamGUI/PreferencesUI.py:3801 msgid "" "Type here any G-Code commands you would\n" "like to append to the generated file.\n" @@ -8344,11 +8344,11 @@ msgstr "" "de adicionar ao final do arquivo G-Code gerado.\n" "M2 (Fim do programa)" -#: flatcamGUI/ObjectUI.py:1943 flatcamGUI/PreferencesUI.py:3827 +#: flatcamGUI/ObjectUI.py:1995 flatcamGUI/PreferencesUI.py:3828 msgid "Toolchange G-Code" msgstr "G-Code para Troca de Ferramentas" -#: flatcamGUI/ObjectUI.py:1946 flatcamGUI/PreferencesUI.py:3830 +#: flatcamGUI/ObjectUI.py:1998 flatcamGUI/PreferencesUI.py:3831 msgid "" "Type here any G-Code commands you would\n" "like to be executed when Toolchange event is encountered.\n" @@ -8371,7 +8371,7 @@ msgstr "" "como modelo o arquivo de pós-processamento 'Customização da troca de " "ferramentas'." -#: flatcamGUI/ObjectUI.py:1961 flatcamGUI/PreferencesUI.py:3853 +#: flatcamGUI/ObjectUI.py:2013 flatcamGUI/PreferencesUI.py:3854 msgid "" "Type here any G-Code commands you would\n" "like to be executed when Toolchange event is encountered.\n" @@ -8390,11 +8390,11 @@ msgstr "" "ATENÇÃO: ele pode ser usado apenas com um arquivo de pré-processador\n" "que possui 'toolchange_custom' em seu nome." -#: flatcamGUI/ObjectUI.py:1976 flatcamGUI/PreferencesUI.py:3869 +#: flatcamGUI/ObjectUI.py:2028 flatcamGUI/PreferencesUI.py:3870 msgid "Use Toolchange Macro" msgstr "Usar Macro de Troca de Ferramentas" -#: flatcamGUI/ObjectUI.py:1978 flatcamGUI/PreferencesUI.py:3871 +#: flatcamGUI/ObjectUI.py:2030 flatcamGUI/PreferencesUI.py:3872 msgid "" "Check this box if you want to use\n" "a Custom Toolchange GCode (macro)." @@ -8402,7 +8402,7 @@ msgstr "" "Marque esta caixa se você quiser usar a macro G-Code para Troca de " "Ferramentas." -#: flatcamGUI/ObjectUI.py:1986 flatcamGUI/PreferencesUI.py:3883 +#: flatcamGUI/ObjectUI.py:2038 flatcamGUI/PreferencesUI.py:3884 msgid "" "A list of the FlatCAM variables that can be used\n" "in the Toolchange event.\n" @@ -8412,160 +8412,160 @@ msgstr "" "no evento Troca de Ferramentas.\n" "Elas devem estar cercadas pelo símbolo '%'" -#: 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 +#: flatcamGUI/ObjectUI.py:2045 flatcamGUI/PreferencesUI.py:1852 +#: flatcamGUI/PreferencesUI.py:2825 flatcamGUI/PreferencesUI.py:3570 +#: flatcamGUI/PreferencesUI.py:3891 flatcamGUI/PreferencesUI.py:3973 +#: flatcamGUI/PreferencesUI.py:4265 flatcamGUI/PreferencesUI.py:4424 +#: flatcamGUI/PreferencesUI.py:4646 flatcamGUI/PreferencesUI.py:4943 +#: flatcamGUI/PreferencesUI.py:5194 flatcamGUI/PreferencesUI.py:5370 +#: flatcamGUI/PreferencesUI.py:5595 flatcamGUI/PreferencesUI.py:5617 +#: flatcamGUI/PreferencesUI.py:5841 flatcamGUI/PreferencesUI.py:5878 +#: flatcamGUI/PreferencesUI.py:6072 flatcamGUI/PreferencesUI.py:6326 +#: flatcamGUI/PreferencesUI.py:6442 flatcamTools/ToolCopperThieving.py:89 #: flatcamTools/ToolFiducials.py:149 flatcamTools/ToolNonCopperClear.py:315 msgid "Parameters" msgstr "Parâmetros" -#: flatcamGUI/ObjectUI.py:1996 flatcamGUI/PreferencesUI.py:3893 +#: flatcamGUI/ObjectUI.py:2048 flatcamGUI/PreferencesUI.py:3894 msgid "FlatCAM CNC parameters" msgstr "Parâmetros do FlatCAM CNC" -#: flatcamGUI/ObjectUI.py:1997 flatcamGUI/PreferencesUI.py:3894 +#: flatcamGUI/ObjectUI.py:2049 flatcamGUI/PreferencesUI.py:3895 msgid "tool number" msgstr "número da ferramenta" -#: flatcamGUI/ObjectUI.py:1998 flatcamGUI/PreferencesUI.py:3895 +#: flatcamGUI/ObjectUI.py:2050 flatcamGUI/PreferencesUI.py:3896 msgid "tool diameter" msgstr "diâmetro da ferramenta" -#: flatcamGUI/ObjectUI.py:1999 flatcamGUI/PreferencesUI.py:3896 +#: flatcamGUI/ObjectUI.py:2051 flatcamGUI/PreferencesUI.py:3897 msgid "for Excellon, total number of drills" msgstr "para Excellon, número total de furos" -#: flatcamGUI/ObjectUI.py:2001 flatcamGUI/PreferencesUI.py:3898 +#: flatcamGUI/ObjectUI.py:2053 flatcamGUI/PreferencesUI.py:3899 msgid "X coord for Toolchange" msgstr "Coordenada X para troca de ferramenta" -#: flatcamGUI/ObjectUI.py:2002 flatcamGUI/PreferencesUI.py:3899 +#: flatcamGUI/ObjectUI.py:2054 flatcamGUI/PreferencesUI.py:3900 msgid "Y coord for Toolchange" msgstr "Coordenada Y para troca de ferramenta" -#: flatcamGUI/ObjectUI.py:2003 flatcamGUI/PreferencesUI.py:3901 +#: flatcamGUI/ObjectUI.py:2055 flatcamGUI/PreferencesUI.py:3902 msgid "Z coord for Toolchange" msgstr "Coordenada Z para troca de ferramenta" -#: flatcamGUI/ObjectUI.py:2004 +#: flatcamGUI/ObjectUI.py:2056 msgid "depth where to cut" msgstr "profundidade de corte" -#: flatcamGUI/ObjectUI.py:2005 +#: flatcamGUI/ObjectUI.py:2057 msgid "height where to travel" msgstr "altura para deslocamentos" -#: flatcamGUI/ObjectUI.py:2006 flatcamGUI/PreferencesUI.py:3904 +#: flatcamGUI/ObjectUI.py:2058 flatcamGUI/PreferencesUI.py:3905 msgid "the step value for multidepth cut" msgstr "valor do passe para corte múltiplas profundidade" -#: flatcamGUI/ObjectUI.py:2008 flatcamGUI/PreferencesUI.py:3906 +#: flatcamGUI/ObjectUI.py:2060 flatcamGUI/PreferencesUI.py:3907 msgid "the value for the spindle speed" msgstr "velocidade do spindle" -#: flatcamGUI/ObjectUI.py:2010 +#: flatcamGUI/ObjectUI.py:2062 msgid "time to dwell to allow the spindle to reach it's set RPM" msgstr "tempo de espera para o spindle atingir sua vel. RPM" -#: flatcamGUI/ObjectUI.py:2026 +#: flatcamGUI/ObjectUI.py:2078 msgid "View CNC Code" msgstr "Ver Código CNC" -#: flatcamGUI/ObjectUI.py:2028 +#: flatcamGUI/ObjectUI.py:2080 msgid "" "Opens TAB to view/modify/print G-Code\n" "file." msgstr "Abre uma ABA para visualizar/modificar/imprimir o arquivo G-Code." -#: flatcamGUI/ObjectUI.py:2033 +#: flatcamGUI/ObjectUI.py:2085 msgid "Save CNC Code" msgstr "Salvar Código CNC" -#: flatcamGUI/ObjectUI.py:2035 +#: flatcamGUI/ObjectUI.py:2087 msgid "" "Opens dialog to save G-Code\n" "file." msgstr "Abre uma caixa de diálogo para salvar o arquivo G-Code." -#: flatcamGUI/ObjectUI.py:2055 +#: flatcamGUI/ObjectUI.py:2118 msgid "Script Object" msgstr "Objeto Script" -#: flatcamGUI/ObjectUI.py:2077 flatcamGUI/ObjectUI.py:2139 +#: flatcamGUI/ObjectUI.py:2140 flatcamGUI/ObjectUI.py:2213 msgid "Auto Completer" msgstr "Preenchimento Automático" -#: flatcamGUI/ObjectUI.py:2079 +#: flatcamGUI/ObjectUI.py:2142 msgid "This selects if the auto completer is enabled in the Script Editor." msgstr "" "Selecionar se o preenchimento automático está ativado no Editor de Scripts." -#: flatcamGUI/ObjectUI.py:2110 +#: flatcamGUI/ObjectUI.py:2184 msgid "Document Object" msgstr "Objeto Documento" -#: flatcamGUI/ObjectUI.py:2141 +#: flatcamGUI/ObjectUI.py:2215 msgid "This selects if the auto completer is enabled in the Document Editor." msgstr "" "Selecionar se o preenchimento automático está ativado no Editor de " "Documentos." -#: flatcamGUI/ObjectUI.py:2159 +#: flatcamGUI/ObjectUI.py:2233 msgid "Font Type" msgstr "Tipo de Fonte" -#: flatcamGUI/ObjectUI.py:2176 +#: flatcamGUI/ObjectUI.py:2250 msgid "Font Size" msgstr "Tamanho da Fonte" -#: flatcamGUI/ObjectUI.py:2212 +#: flatcamGUI/ObjectUI.py:2286 msgid "Alignment" msgstr "Alinhamento" -#: flatcamGUI/ObjectUI.py:2217 +#: flatcamGUI/ObjectUI.py:2291 msgid "Align Left" msgstr "Esquerda" -#: flatcamGUI/ObjectUI.py:2222 +#: flatcamGUI/ObjectUI.py:2296 msgid "Center" msgstr "Centro" -#: flatcamGUI/ObjectUI.py:2227 +#: flatcamGUI/ObjectUI.py:2301 msgid "Align Right" msgstr "Direita" -#: flatcamGUI/ObjectUI.py:2232 +#: flatcamGUI/ObjectUI.py:2306 msgid "Justify" msgstr "Justificado" -#: flatcamGUI/ObjectUI.py:2239 +#: flatcamGUI/ObjectUI.py:2313 msgid "Font Color" msgstr "Cor da Fonte" -#: flatcamGUI/ObjectUI.py:2241 +#: flatcamGUI/ObjectUI.py:2315 msgid "Set the font color for the selected text" msgstr "Define a cor da fonte para o texto selecionado" -#: flatcamGUI/ObjectUI.py:2255 +#: flatcamGUI/ObjectUI.py:2329 msgid "Selection Color" msgstr "Cor da Seleção" -#: flatcamGUI/ObjectUI.py:2257 +#: flatcamGUI/ObjectUI.py:2331 msgid "Set the selection color when doing text selection." msgstr "Define a cor da seleção quando selecionando texto." -#: flatcamGUI/ObjectUI.py:2271 +#: flatcamGUI/ObjectUI.py:2345 msgid "Tab Size" msgstr "Tamanho da Aba" -#: flatcamGUI/ObjectUI.py:2273 +#: flatcamGUI/ObjectUI.py:2347 msgid "Set the tab size. In pixels. Default value is 80 pixels." msgstr "Define o tamanho da aba, em pixels. Valor padrão: 80 pixels." @@ -8629,7 +8629,7 @@ msgstr "" msgid "Wk. Orientation" msgstr "Orientação" -#: flatcamGUI/PreferencesUI.py:430 flatcamGUI/PreferencesUI.py:4853 +#: flatcamGUI/PreferencesUI.py:430 flatcamGUI/PreferencesUI.py:4854 #: flatcamTools/ToolFilm.py:420 msgid "" "Can be:\n" @@ -8640,12 +8640,12 @@ msgstr "" "- Retrato\n" "- Paisagem" -#: flatcamGUI/PreferencesUI.py:434 flatcamGUI/PreferencesUI.py:4857 +#: flatcamGUI/PreferencesUI.py:434 flatcamGUI/PreferencesUI.py:4858 #: flatcamTools/ToolFilm.py:424 msgid "Portrait" msgstr "Retrato" -#: flatcamGUI/PreferencesUI.py:435 flatcamGUI/PreferencesUI.py:4858 +#: flatcamGUI/PreferencesUI.py:435 flatcamGUI/PreferencesUI.py:4859 #: flatcamTools/ToolFilm.py:425 msgid "Landscape" msgstr "Paisagem" @@ -8847,7 +8847,7 @@ msgstr "" "Ativa o suporte de alta DPI para FlatCAM.\n" "Ele será aplicado na próxima inicialização." -#: flatcamGUI/PreferencesUI.py:782 flatcamGUI/PreferencesUI.py:1032 +#: flatcamGUI/PreferencesUI.py:782 flatcamGUI/PreferencesUI.py:1033 msgid "Clear GUI Settings" msgstr "Limpar Config. da GUI" @@ -8932,19 +8932,19 @@ msgstr "Tela de Abertura" msgid "Enable display of the splash screen at application startup." msgstr "Habilita a Tela de Abertura na inicialização do aplicativo." -#: flatcamGUI/PreferencesUI.py:899 +#: flatcamGUI/PreferencesUI.py:900 msgid "Sys Tray Icon" msgstr "Ícone da Bandeja do Sistema" -#: flatcamGUI/PreferencesUI.py:901 +#: flatcamGUI/PreferencesUI.py:902 msgid "Enable display of FlatCAM icon in Sys Tray." msgstr "Ativa a exibição do ícone do FlatCAM na bandeja do sistema." -#: flatcamGUI/PreferencesUI.py:909 +#: flatcamGUI/PreferencesUI.py:910 msgid "Shell at StartUp" msgstr "Shell na Inicialização" -#: flatcamGUI/PreferencesUI.py:911 flatcamGUI/PreferencesUI.py:916 +#: flatcamGUI/PreferencesUI.py:912 flatcamGUI/PreferencesUI.py:917 msgid "" "Check this box if you want the shell to\n" "start automatically at startup." @@ -8952,11 +8952,11 @@ msgstr "" "Marque esta caixa se você deseja que o shell (linha de comando)\n" "seja inicializado automaticamente na inicialização." -#: flatcamGUI/PreferencesUI.py:924 +#: flatcamGUI/PreferencesUI.py:925 msgid "Project at StartUp" msgstr "Projeto na Inicialização" -#: flatcamGUI/PreferencesUI.py:926 flatcamGUI/PreferencesUI.py:931 +#: flatcamGUI/PreferencesUI.py:927 flatcamGUI/PreferencesUI.py:932 msgid "" "Check this box if you want the project/selected/tool tab area to\n" "to be shown automatically at startup." @@ -8964,11 +8964,11 @@ msgstr "" "Marque esta caixa se você quiser que a aba Projeto/Selecionado/Ferramenta\n" "seja apresentada automaticamente na inicialização." -#: flatcamGUI/PreferencesUI.py:939 +#: flatcamGUI/PreferencesUI.py:940 msgid "Project AutoHide" msgstr "Auto Ocultar" -#: flatcamGUI/PreferencesUI.py:941 flatcamGUI/PreferencesUI.py:947 +#: flatcamGUI/PreferencesUI.py:942 flatcamGUI/PreferencesUI.py:948 msgid "" "Check this box if you want the project/selected/tool tab area to\n" "hide automatically when there are no objects loaded and\n" @@ -8978,11 +8978,11 @@ msgstr "" "desapareça automaticamente quando não houver objetos carregados e\n" "apareça sempre que um novo objeto for criado." -#: flatcamGUI/PreferencesUI.py:958 +#: flatcamGUI/PreferencesUI.py:959 msgid "Enable ToolTips" msgstr "Habilitar Dicas" -#: flatcamGUI/PreferencesUI.py:960 flatcamGUI/PreferencesUI.py:965 +#: flatcamGUI/PreferencesUI.py:961 flatcamGUI/PreferencesUI.py:966 msgid "" "Check this box if you want to have toolTips displayed\n" "when hovering with mouse over items throughout the App." @@ -8990,11 +8990,11 @@ msgstr "" "Marque esta caixa se quiser que as dicas de ferramentas sejam exibidas\n" "ao passar o mouse sobre os itens em todo o aplicativo." -#: flatcamGUI/PreferencesUI.py:973 +#: flatcamGUI/PreferencesUI.py:974 msgid "Mouse Cursor" msgstr "Cursor do Mouse" -#: flatcamGUI/PreferencesUI.py:975 +#: flatcamGUI/PreferencesUI.py:976 msgid "" "Choose a mouse cursor shape.\n" "- Small -> with a customizable size.\n" @@ -9004,27 +9004,27 @@ msgstr "" "- Pequeno -> com um tamanho personalizável.\n" "- Grande -> Linhas infinitas" -#: flatcamGUI/PreferencesUI.py:981 +#: flatcamGUI/PreferencesUI.py:982 msgid "Small" msgstr "Pequeno" -#: flatcamGUI/PreferencesUI.py:982 +#: flatcamGUI/PreferencesUI.py:983 msgid "Big" msgstr "Grande" -#: flatcamGUI/PreferencesUI.py:988 +#: flatcamGUI/PreferencesUI.py:989 msgid "Mouse Cursor Size" msgstr "Tamanho do Cursor do Mouse" -#: flatcamGUI/PreferencesUI.py:990 +#: flatcamGUI/PreferencesUI.py:991 msgid "Set the size of the mouse cursor, in pixels." msgstr "Define o tamanho do cursor do mouse, em pixels." -#: flatcamGUI/PreferencesUI.py:1001 +#: flatcamGUI/PreferencesUI.py:1002 msgid "Delete object confirmation" msgstr "Confirmação excluir objeto" -#: flatcamGUI/PreferencesUI.py:1003 +#: flatcamGUI/PreferencesUI.py:1004 msgid "" "When checked the application will ask for user confirmation\n" "whenever the Delete object(s) event is triggered, either by\n" @@ -9034,22 +9034,22 @@ msgstr "" "sempre que o evento Excluir objeto(s) é acionado, seja por\n" "atalho de menu ou atalho de tecla." -#: flatcamGUI/PreferencesUI.py:1029 +#: flatcamGUI/PreferencesUI.py:1030 msgid "Are you sure you want to delete the GUI Settings? \n" msgstr "Você tem certeza de que deseja excluir as configurações da GUI? \n" -#: flatcamGUI/PreferencesUI.py:1053 +#: flatcamGUI/PreferencesUI.py:1054 msgid "App Preferences" msgstr "Preferências do aplicativo" -#: flatcamGUI/PreferencesUI.py:1063 flatcamGUI/PreferencesUI.py:1388 -#: flatcamGUI/PreferencesUI.py:1763 flatcamGUI/PreferencesUI.py:2686 +#: flatcamGUI/PreferencesUI.py:1064 flatcamGUI/PreferencesUI.py:1389 +#: flatcamGUI/PreferencesUI.py:1764 flatcamGUI/PreferencesUI.py:2687 #: flatcamTools/ToolDistance.py:49 flatcamTools/ToolDistanceMin.py:49 #: flatcamTools/ToolPcbWizard.py:127 flatcamTools/ToolProperties.py:152 msgid "Units" msgstr "Unidades" -#: flatcamGUI/PreferencesUI.py:1064 +#: flatcamGUI/PreferencesUI.py:1065 msgid "" "The default value for FlatCAM units.\n" "Whatever is selected here is set every time\n" @@ -9059,22 +9059,22 @@ msgstr "" "O que estiver selecionado aqui será considerado sempre que\n" "o FLatCAM for iniciado." -#: flatcamGUI/PreferencesUI.py:1067 flatcamGUI/PreferencesUI.py:1394 -#: flatcamGUI/PreferencesUI.py:1769 flatcamGUI/PreferencesUI.py:2223 -#: flatcamGUI/PreferencesUI.py:2692 flatcamTools/ToolCalculators.py:62 +#: flatcamGUI/PreferencesUI.py:1068 flatcamGUI/PreferencesUI.py:1395 +#: flatcamGUI/PreferencesUI.py:1770 flatcamGUI/PreferencesUI.py:2224 +#: flatcamGUI/PreferencesUI.py:2693 flatcamTools/ToolCalculators.py:62 #: flatcamTools/ToolPcbWizard.py:126 msgid "MM" msgstr "mm" -#: flatcamGUI/PreferencesUI.py:1068 +#: flatcamGUI/PreferencesUI.py:1069 msgid "IN" msgstr "in" -#: flatcamGUI/PreferencesUI.py:1074 +#: flatcamGUI/PreferencesUI.py:1075 msgid "Precision MM" msgstr "Precisão mm" -#: flatcamGUI/PreferencesUI.py:1076 +#: flatcamGUI/PreferencesUI.py:1077 msgid "" "The number of decimals used throughout the application\n" "when the set units are in METRIC system.\n" @@ -9084,11 +9084,11 @@ msgstr "" "quando as unidades definidas estiverem no sistema MÉTRICO.\n" "Qualquer alteração aqui requer uma reinicialização do aplicativo." -#: flatcamGUI/PreferencesUI.py:1088 +#: flatcamGUI/PreferencesUI.py:1089 msgid "Precision INCH" msgstr "Precisão in" -#: flatcamGUI/PreferencesUI.py:1090 +#: flatcamGUI/PreferencesUI.py:1091 msgid "" "The number of decimals used throughout the application\n" "when the set units are in INCH system.\n" @@ -9098,11 +9098,11 @@ msgstr "" "quando as unidades definidas estiverem no sistema INGLÊS.\n" "Qualquer alteração aqui requer uma reinicialização do aplicativo." -#: flatcamGUI/PreferencesUI.py:1102 +#: flatcamGUI/PreferencesUI.py:1103 msgid "Graphic Engine" msgstr "Mecanismo Gráfico" -#: flatcamGUI/PreferencesUI.py:1103 +#: flatcamGUI/PreferencesUI.py:1104 msgid "" "Choose what graphic engine to use in FlatCAM.\n" "Legacy(2D) -> reduced functionality, slow performance but enhanced " @@ -9122,19 +9122,19 @@ msgstr "" "Nesse caso,\n" "use o modo Legado (2D)." -#: flatcamGUI/PreferencesUI.py:1109 +#: flatcamGUI/PreferencesUI.py:1110 msgid "Legacy(2D)" msgstr "Legado(2D)" -#: flatcamGUI/PreferencesUI.py:1110 +#: flatcamGUI/PreferencesUI.py:1111 msgid "OpenGL(3D)" msgstr "OpenGL(3D)" -#: flatcamGUI/PreferencesUI.py:1117 +#: flatcamGUI/PreferencesUI.py:1118 msgid "APP. LEVEL" msgstr "Nível do Aplicativo" -#: flatcamGUI/PreferencesUI.py:1118 +#: flatcamGUI/PreferencesUI.py:1119 msgid "" "Choose the default level of usage for FlatCAM.\n" "BASIC level -> reduced functionality, best for beginner's.\n" @@ -9150,11 +9150,11 @@ msgstr "" "A escolha influenciará os parâmetros na Aba\n" "Selecionado para todos os tipos de objetos FlatCAM." -#: flatcamGUI/PreferencesUI.py:1130 +#: flatcamGUI/PreferencesUI.py:1131 msgid "Portable app" msgstr "Aplicativo portátil" -#: flatcamGUI/PreferencesUI.py:1131 +#: flatcamGUI/PreferencesUI.py:1132 msgid "" "Choose if the application should run as portable.\n" "\n" @@ -9168,19 +9168,19 @@ msgstr "" "o que significa que os arquivos de preferências serão salvos\n" "na pasta do aplicativo, na subpasta lib\\config." -#: flatcamGUI/PreferencesUI.py:1141 +#: flatcamGUI/PreferencesUI.py:1142 msgid "Languages" msgstr "Idioma" -#: flatcamGUI/PreferencesUI.py:1142 +#: flatcamGUI/PreferencesUI.py:1143 msgid "Set the language used throughout FlatCAM." msgstr "Defina o idioma usado no FlatCAM." -#: flatcamGUI/PreferencesUI.py:1148 +#: flatcamGUI/PreferencesUI.py:1149 msgid "Apply Language" msgstr "Aplicar o Idioma" -#: flatcamGUI/PreferencesUI.py:1149 +#: flatcamGUI/PreferencesUI.py:1150 msgid "" "Set the language used throughout FlatCAM.\n" "The app will restart after click.Windows: When FlatCAM is installed in " @@ -9198,11 +9198,11 @@ msgstr "" "aos recursos de segurança do Windows. Neste caso, o\n" "idioma será aplicado na próxima inicialização." -#: flatcamGUI/PreferencesUI.py:1161 +#: flatcamGUI/PreferencesUI.py:1162 msgid "Version Check" msgstr "Verificar Versão" -#: flatcamGUI/PreferencesUI.py:1163 flatcamGUI/PreferencesUI.py:1168 +#: flatcamGUI/PreferencesUI.py:1164 flatcamGUI/PreferencesUI.py:1169 msgid "" "Check this box if you want to check\n" "for a new version automatically at startup." @@ -9210,11 +9210,11 @@ msgstr "" "Marque esta caixa se você quiser verificar\n" "por nova versão automaticamente na inicialização." -#: flatcamGUI/PreferencesUI.py:1176 +#: flatcamGUI/PreferencesUI.py:1177 msgid "Send Stats" msgstr "Enviar estatísticas" -#: flatcamGUI/PreferencesUI.py:1178 flatcamGUI/PreferencesUI.py:1183 +#: flatcamGUI/PreferencesUI.py:1179 flatcamGUI/PreferencesUI.py:1184 msgid "" "Check this box if you agree to send anonymous\n" "stats automatically at startup, to help improve FlatCAM." @@ -9222,11 +9222,11 @@ msgstr "" "Marque esta caixa se você concorda em enviar dados anônimos\n" "automaticamente na inicialização, para ajudar a melhorar o FlatCAM." -#: flatcamGUI/PreferencesUI.py:1193 +#: flatcamGUI/PreferencesUI.py:1194 msgid "Pan Button" msgstr "Botão Pan" -#: flatcamGUI/PreferencesUI.py:1194 +#: flatcamGUI/PreferencesUI.py:1195 msgid "" "Select the mouse button to use for panning:\n" "- MMB --> Middle Mouse Button\n" @@ -9236,35 +9236,35 @@ msgstr "" "- BM -> Botão do meio do mouse\n" "- BD -> botão direito do mouse" -#: flatcamGUI/PreferencesUI.py:1197 +#: flatcamGUI/PreferencesUI.py:1198 msgid "MMB" msgstr "BM" -#: flatcamGUI/PreferencesUI.py:1198 +#: flatcamGUI/PreferencesUI.py:1199 msgid "RMB" msgstr "BD" -#: flatcamGUI/PreferencesUI.py:1204 +#: flatcamGUI/PreferencesUI.py:1205 msgid "Multiple Sel" msgstr "Seleção Múltipla" -#: flatcamGUI/PreferencesUI.py:1205 +#: flatcamGUI/PreferencesUI.py:1206 msgid "Select the key used for multiple selection." msgstr "Selecione a tecla usada para seleção múltipla." -#: flatcamGUI/PreferencesUI.py:1206 +#: flatcamGUI/PreferencesUI.py:1207 msgid "CTRL" msgstr "CTRL" -#: flatcamGUI/PreferencesUI.py:1207 +#: flatcamGUI/PreferencesUI.py:1208 msgid "SHIFT" msgstr "SHIFT" -#: flatcamGUI/PreferencesUI.py:1213 +#: flatcamGUI/PreferencesUI.py:1214 msgid "Workers number" msgstr "Número de trabalhadores" -#: flatcamGUI/PreferencesUI.py:1215 flatcamGUI/PreferencesUI.py:1224 +#: flatcamGUI/PreferencesUI.py:1216 flatcamGUI/PreferencesUI.py:1225 msgid "" "The number of Qthreads made available to the App.\n" "A bigger number may finish the jobs more quickly but\n" @@ -9279,11 +9279,11 @@ msgstr "" "não responda. Pode ter um valor entre 2 e 16. O valor padrão é 2.\n" "Após a mudança, ele será aplicado na próxima inicialização." -#: flatcamGUI/PreferencesUI.py:1237 +#: flatcamGUI/PreferencesUI.py:1238 msgid "Geo Tolerance" msgstr "Tolerância Geo" -#: flatcamGUI/PreferencesUI.py:1239 flatcamGUI/PreferencesUI.py:1248 +#: flatcamGUI/PreferencesUI.py:1240 flatcamGUI/PreferencesUI.py:1249 msgid "" "This value can counter the effect of the Circle Steps\n" "parameter. Default value is 0.01.\n" @@ -9299,11 +9299,11 @@ msgstr "" "Um valor maior proporcionará mais desempenho à custa do nível\n" "de detalhes." -#: flatcamGUI/PreferencesUI.py:1263 +#: flatcamGUI/PreferencesUI.py:1264 msgid "\"Open\" behavior" msgstr "Comportamento \"Abrir\"" -#: flatcamGUI/PreferencesUI.py:1265 +#: flatcamGUI/PreferencesUI.py:1266 msgid "" "When checked the path for the last saved file is used when saving files,\n" "and the path for the last opened file is used when opening files.\n" @@ -9318,11 +9318,11 @@ msgstr "" "Quando desmarcado, o caminho para abrir arquivos é aquele usado por último:\n" "o caminho para salvar arquivos ou o caminho para abrir arquivos." -#: flatcamGUI/PreferencesUI.py:1274 +#: flatcamGUI/PreferencesUI.py:1275 msgid "Save Compressed Project" msgstr "Salvar Projeto Compactado" -#: flatcamGUI/PreferencesUI.py:1276 +#: flatcamGUI/PreferencesUI.py:1277 msgid "" "Whether to save a compressed or uncompressed project.\n" "When checked it will save a compressed FlatCAM project." @@ -9330,11 +9330,11 @@ msgstr "" "Para salvar um projeto compactado ou descompactado.\n" "Quando marcado, o projeto FlatCAM será salvo compactado." -#: flatcamGUI/PreferencesUI.py:1285 +#: flatcamGUI/PreferencesUI.py:1286 msgid "Compression" msgstr "Compressão" -#: flatcamGUI/PreferencesUI.py:1287 +#: flatcamGUI/PreferencesUI.py:1288 msgid "" "The level of compression used when saving\n" "a FlatCAM project. Higher value means better compression\n" @@ -9344,11 +9344,11 @@ msgstr "" "Um valor maior significa melhor compactação, mas é necessário mais uso de " "RAM e mais tempo de processamento." -#: flatcamGUI/PreferencesUI.py:1299 +#: flatcamGUI/PreferencesUI.py:1300 msgid "Bookmarks limit" msgstr "Limite de favoritos" -#: flatcamGUI/PreferencesUI.py:1301 +#: flatcamGUI/PreferencesUI.py:1302 msgid "" "The maximum number of bookmarks that may be installed in the menu.\n" "The number of bookmarks in the bookmark manager may be greater\n" @@ -9358,11 +9358,11 @@ msgstr "" "O número de favoritos no gerenciador de favoritos pode ser maior,\n" "mas o menu mostrará apenas esse número." -#: flatcamGUI/PreferencesUI.py:1310 +#: flatcamGUI/PreferencesUI.py:1311 msgid "Allow Machinist Unsafe Settings" msgstr "Permitir configurações inseguras de operador" -#: flatcamGUI/PreferencesUI.py:1312 +#: flatcamGUI/PreferencesUI.py:1313 msgid "" "If checked, some of the application settings will be allowed\n" "to have values that are usually unsafe to use.\n" @@ -9377,20 +9377,20 @@ msgstr "" "Será aplicado no próximo início do aplicativo.\n" "<>: Não habilite, a menos que você saiba o que está fazendo !!!" -#: flatcamGUI/PreferencesUI.py:1333 +#: flatcamGUI/PreferencesUI.py:1334 msgid "Gerber General" msgstr "Gerber Geral" -#: flatcamGUI/PreferencesUI.py:1351 +#: flatcamGUI/PreferencesUI.py:1352 msgid "M-Color" msgstr "M-Cores" -#: flatcamGUI/PreferencesUI.py:1365 flatcamGUI/PreferencesUI.py:3128 -#: flatcamGUI/PreferencesUI.py:3664 flatcamGUI/PreferencesUI.py:6079 +#: flatcamGUI/PreferencesUI.py:1366 flatcamGUI/PreferencesUI.py:3129 +#: flatcamGUI/PreferencesUI.py:3665 flatcamGUI/PreferencesUI.py:6080 msgid "Circle Steps" msgstr "Passos do Círculo" -#: flatcamGUI/PreferencesUI.py:1367 +#: flatcamGUI/PreferencesUI.py:1368 msgid "" "The number of circle steps for Gerber \n" "circular aperture linear approximation." @@ -9398,11 +9398,11 @@ msgstr "" "Número de passos de círculo para Gerber.\n" "Aproximação linear de abertura circular." -#: flatcamGUI/PreferencesUI.py:1379 +#: flatcamGUI/PreferencesUI.py:1380 msgid "Default Values" msgstr "Valores Padrão" -#: flatcamGUI/PreferencesUI.py:1381 +#: flatcamGUI/PreferencesUI.py:1382 msgid "" "Those values will be used as fallback values\n" "in case that they are not found in the Gerber file." @@ -9410,25 +9410,25 @@ msgstr "" "Esses valores serão usados como valores padrão\n" "caso eles não sejam encontrados no arquivo Gerber." -#: flatcamGUI/PreferencesUI.py:1390 flatcamGUI/PreferencesUI.py:1396 -#: flatcamGUI/PreferencesUI.py:1765 flatcamGUI/PreferencesUI.py:1771 +#: flatcamGUI/PreferencesUI.py:1391 flatcamGUI/PreferencesUI.py:1397 +#: flatcamGUI/PreferencesUI.py:1766 flatcamGUI/PreferencesUI.py:1772 msgid "The units used in the Gerber file." msgstr "As unidades usadas no arquivo Gerber." -#: flatcamGUI/PreferencesUI.py:1393 flatcamGUI/PreferencesUI.py:1768 -#: flatcamGUI/PreferencesUI.py:2124 flatcamGUI/PreferencesUI.py:2222 -#: flatcamGUI/PreferencesUI.py:2691 flatcamTools/ToolCalculators.py:61 +#: flatcamGUI/PreferencesUI.py:1394 flatcamGUI/PreferencesUI.py:1769 +#: flatcamGUI/PreferencesUI.py:2125 flatcamGUI/PreferencesUI.py:2223 +#: flatcamGUI/PreferencesUI.py:2692 flatcamTools/ToolCalculators.py:61 #: flatcamTools/ToolPcbWizard.py:125 msgid "INCH" msgstr "in" -#: flatcamGUI/PreferencesUI.py:1403 flatcamGUI/PreferencesUI.py:1817 -#: flatcamGUI/PreferencesUI.py:2759 +#: flatcamGUI/PreferencesUI.py:1404 flatcamGUI/PreferencesUI.py:1818 +#: flatcamGUI/PreferencesUI.py:2760 msgid "Zeros" msgstr "Zeros" -#: flatcamGUI/PreferencesUI.py:1406 flatcamGUI/PreferencesUI.py:1416 -#: flatcamGUI/PreferencesUI.py:1820 flatcamGUI/PreferencesUI.py:1830 +#: flatcamGUI/PreferencesUI.py:1407 flatcamGUI/PreferencesUI.py:1417 +#: flatcamGUI/PreferencesUI.py:1821 flatcamGUI/PreferencesUI.py:1831 msgid "" "This sets the type of Gerber zeros.\n" "If LZ then Leading Zeros are removed and\n" @@ -9440,41 +9440,41 @@ msgstr "" "LZ: remove os zeros à esquerda e mantém os zeros à direita.\n" "TZ: remove os zeros à direita e mantém os zeros à esquerda." -#: flatcamGUI/PreferencesUI.py:1413 flatcamGUI/PreferencesUI.py:1827 -#: flatcamGUI/PreferencesUI.py:2198 flatcamGUI/PreferencesUI.py:2769 +#: flatcamGUI/PreferencesUI.py:1414 flatcamGUI/PreferencesUI.py:1828 +#: flatcamGUI/PreferencesUI.py:2199 flatcamGUI/PreferencesUI.py:2770 #: flatcamTools/ToolPcbWizard.py:111 msgid "LZ" msgstr "LZ" -#: flatcamGUI/PreferencesUI.py:1414 flatcamGUI/PreferencesUI.py:1828 -#: flatcamGUI/PreferencesUI.py:2199 flatcamGUI/PreferencesUI.py:2770 +#: flatcamGUI/PreferencesUI.py:1415 flatcamGUI/PreferencesUI.py:1829 +#: flatcamGUI/PreferencesUI.py:2200 flatcamGUI/PreferencesUI.py:2771 #: flatcamTools/ToolPcbWizard.py:112 msgid "TZ" msgstr "TZ" -#: flatcamGUI/PreferencesUI.py:1435 +#: flatcamGUI/PreferencesUI.py:1436 msgid "Gerber Options" msgstr "Opções Gerber" -#: flatcamGUI/PreferencesUI.py:1509 flatcamGUI/PreferencesUI.py:3601 -#: flatcamGUI/PreferencesUI.py:4075 flatcamTools/ToolNonCopperClear.py:170 +#: flatcamGUI/PreferencesUI.py:1510 flatcamGUI/PreferencesUI.py:3602 +#: flatcamGUI/PreferencesUI.py:4076 flatcamTools/ToolNonCopperClear.py:170 msgid "Conv." msgstr "Conv." -#: flatcamGUI/PreferencesUI.py:1513 +#: flatcamGUI/PreferencesUI.py:1514 msgid "Combine Passes" msgstr "Combinar Passes" -#: flatcamGUI/PreferencesUI.py:1591 +#: flatcamGUI/PreferencesUI.py:1592 msgid "Gerber Adv. Options" msgstr "Opções Avançadas" -#: flatcamGUI/PreferencesUI.py:1595 flatcamGUI/PreferencesUI.py:2544 -#: flatcamGUI/PreferencesUI.py:3399 +#: flatcamGUI/PreferencesUI.py:1596 flatcamGUI/PreferencesUI.py:2545 +#: flatcamGUI/PreferencesUI.py:3400 msgid "Advanced Options" msgstr "Opções Avançadas" -#: flatcamGUI/PreferencesUI.py:1597 +#: flatcamGUI/PreferencesUI.py:1598 msgid "" "A list of Gerber advanced parameters.\n" "Those parameters are available only for\n" @@ -9484,11 +9484,11 @@ msgstr "" "Esses parâmetros estão disponíveis somente para\n" "o nível avançado do aplicativo." -#: flatcamGUI/PreferencesUI.py:1616 +#: flatcamGUI/PreferencesUI.py:1617 msgid "Table Show/Hide" msgstr "Mostra/Esconde Tabela" -#: flatcamGUI/PreferencesUI.py:1618 +#: flatcamGUI/PreferencesUI.py:1619 msgid "" "Toggle the display of the Gerber Apertures Table.\n" "Also, on hide, it will delete all mark shapes\n" @@ -9498,15 +9498,15 @@ msgstr "" "Além disso, ao ocultar, ele excluirá todas as formas de marcas\n" "que estão desenhadas na tela." -#: flatcamGUI/PreferencesUI.py:1693 +#: flatcamGUI/PreferencesUI.py:1694 msgid "Exterior" msgstr "Exterior" -#: flatcamGUI/PreferencesUI.py:1694 +#: flatcamGUI/PreferencesUI.py:1695 msgid "Interior" msgstr "Interior" -#: flatcamGUI/PreferencesUI.py:1702 +#: flatcamGUI/PreferencesUI.py:1703 msgid "" "Buffering type:\n" "- None --> best performance, fast file loading but no so good display\n" @@ -9520,19 +9520,19 @@ msgstr "" "padrão.\n" "<>: Não altere isso, a menos que você saiba o que está fazendo !!!" -#: flatcamGUI/PreferencesUI.py:1707 flatcamGUI/PreferencesUI.py:4821 -#: flatcamGUI/PreferencesUI.py:6377 flatcamTools/ToolFiducials.py:201 +#: flatcamGUI/PreferencesUI.py:1708 flatcamGUI/PreferencesUI.py:4822 +#: flatcamGUI/PreferencesUI.py:6378 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 msgid "None" msgstr "Nenhum" -#: flatcamGUI/PreferencesUI.py:1713 +#: flatcamGUI/PreferencesUI.py:1714 msgid "Simplify" msgstr "Simplificar" -#: flatcamGUI/PreferencesUI.py:1715 +#: flatcamGUI/PreferencesUI.py:1716 msgid "" "When checked all the Gerber polygons will be\n" "loaded with simplification having a set tolerance.\n" @@ -9542,23 +9542,23 @@ msgstr "" "carregados com simplificação com uma tolerância definida.\n" "<>: Não altere, a menos que saiba o que está fazendo !!!" -#: flatcamGUI/PreferencesUI.py:1722 +#: flatcamGUI/PreferencesUI.py:1723 msgid "Tolerance" msgstr "Tolerância" -#: flatcamGUI/PreferencesUI.py:1723 +#: flatcamGUI/PreferencesUI.py:1724 msgid "Tolerance for polygon simplification." msgstr "Tolerância para a simplificação de polígonos." -#: flatcamGUI/PreferencesUI.py:1748 +#: flatcamGUI/PreferencesUI.py:1749 msgid "Gerber Export" msgstr "Exportar Gerber" -#: flatcamGUI/PreferencesUI.py:1752 flatcamGUI/PreferencesUI.py:2675 +#: flatcamGUI/PreferencesUI.py:1753 flatcamGUI/PreferencesUI.py:2676 msgid "Export Options" msgstr "Opções da Exportação" -#: flatcamGUI/PreferencesUI.py:1754 +#: flatcamGUI/PreferencesUI.py:1755 msgid "" "The parameters set here are used in the file exported\n" "when using the File -> Export -> Export Gerber menu entry." @@ -9566,11 +9566,11 @@ msgstr "" "Os parâmetros definidos aqui são usados no arquivo exportado\n" "ao usar a entrada de menu Arquivo -> Exportar -> Exportar Gerber." -#: flatcamGUI/PreferencesUI.py:1777 flatcamGUI/PreferencesUI.py:2700 +#: flatcamGUI/PreferencesUI.py:1778 flatcamGUI/PreferencesUI.py:2701 msgid "Int/Decimals" msgstr "Int/Decimais" -#: flatcamGUI/PreferencesUI.py:1779 +#: flatcamGUI/PreferencesUI.py:1780 msgid "" "The number of digits in the whole part of the number\n" "and in the fractional part of the number." @@ -9578,7 +9578,7 @@ msgstr "" "O número de dígitos da parte inteira\n" "e da parte fracionária do número." -#: flatcamGUI/PreferencesUI.py:1792 +#: flatcamGUI/PreferencesUI.py:1793 msgid "" "This numbers signify the number of digits in\n" "the whole part of Gerber coordinates." @@ -9586,7 +9586,7 @@ msgstr "" "Esse número configura o número de dígitos\n" "da parte inteira das coordenadas de Gerber." -#: flatcamGUI/PreferencesUI.py:1808 +#: flatcamGUI/PreferencesUI.py:1809 msgid "" "This numbers signify the number of digits in\n" "the decimal part of Gerber coordinates." @@ -9594,16 +9594,16 @@ msgstr "" "Este número configura o número de dígitos\n" "da parte decimal das coordenadas de Gerber." -#: flatcamGUI/PreferencesUI.py:1853 +#: flatcamGUI/PreferencesUI.py:1854 msgid "A list of Gerber Editor parameters." msgstr "Uma lista de parâmetros do Editor Gerber." -#: flatcamGUI/PreferencesUI.py:1861 flatcamGUI/PreferencesUI.py:2834 -#: flatcamGUI/PreferencesUI.py:3579 flatcamGUI/PreferencesUI.py:6040 +#: flatcamGUI/PreferencesUI.py:1862 flatcamGUI/PreferencesUI.py:2835 +#: flatcamGUI/PreferencesUI.py:3580 flatcamGUI/PreferencesUI.py:6041 msgid "Selection limit" msgstr "Lim. de seleção" -#: flatcamGUI/PreferencesUI.py:1863 +#: flatcamGUI/PreferencesUI.py:1864 msgid "" "Set the number of selected Gerber geometry\n" "items above which the utility geometry\n" @@ -9615,23 +9615,23 @@ msgstr "" "Acima desse valor a geometria se torna um retângulo de seleção.\n" "Aumenta o desempenho ao mover um grande número de elementos geométricos." -#: flatcamGUI/PreferencesUI.py:1876 +#: flatcamGUI/PreferencesUI.py:1877 msgid "New Aperture code" msgstr "Novo código de Aber." -#: flatcamGUI/PreferencesUI.py:1889 +#: flatcamGUI/PreferencesUI.py:1890 msgid "New Aperture size" msgstr "Novo tamanho de Aber." -#: flatcamGUI/PreferencesUI.py:1891 +#: flatcamGUI/PreferencesUI.py:1892 msgid "Size for the new aperture" msgstr "Tamanho para a nova abertura" -#: flatcamGUI/PreferencesUI.py:1902 +#: flatcamGUI/PreferencesUI.py:1903 msgid "New Aperture type" msgstr "Novo tipo de Aber." -#: flatcamGUI/PreferencesUI.py:1904 +#: flatcamGUI/PreferencesUI.py:1905 msgid "" "Type for the new aperture.\n" "Can be 'C', 'R' or 'O'." @@ -9639,35 +9639,35 @@ msgstr "" "Tipo para a nova abertura.\n" "Pode ser 'C', 'R' ou 'O'." -#: flatcamGUI/PreferencesUI.py:1926 +#: flatcamGUI/PreferencesUI.py:1927 msgid "Aperture Dimensions" msgstr "Dimensão" -#: flatcamGUI/PreferencesUI.py:1928 flatcamGUI/PreferencesUI.py:3146 -#: flatcamGUI/PreferencesUI.py:3984 +#: flatcamGUI/PreferencesUI.py:1929 flatcamGUI/PreferencesUI.py:3147 +#: flatcamGUI/PreferencesUI.py:3985 msgid "Diameters of the cutting tools, separated by ','" msgstr "Diâmetros das ferramentas de corte, separadas por ','" -#: flatcamGUI/PreferencesUI.py:1934 +#: flatcamGUI/PreferencesUI.py:1935 msgid "Linear Pad Array" msgstr "Matriz Linear de Pads" -#: flatcamGUI/PreferencesUI.py:1938 flatcamGUI/PreferencesUI.py:2878 -#: flatcamGUI/PreferencesUI.py:3026 +#: flatcamGUI/PreferencesUI.py:1939 flatcamGUI/PreferencesUI.py:2879 +#: flatcamGUI/PreferencesUI.py:3027 msgid "Linear Direction" msgstr "Direção Linear" -#: flatcamGUI/PreferencesUI.py:1978 +#: flatcamGUI/PreferencesUI.py:1979 msgid "Circular Pad Array" msgstr "Matriz Circular de Pads" -#: flatcamGUI/PreferencesUI.py:1982 flatcamGUI/PreferencesUI.py:2924 -#: flatcamGUI/PreferencesUI.py:3074 +#: flatcamGUI/PreferencesUI.py:1983 flatcamGUI/PreferencesUI.py:2925 +#: flatcamGUI/PreferencesUI.py:3075 msgid "Circular Direction" msgstr "Direção Circular" -#: flatcamGUI/PreferencesUI.py:1984 flatcamGUI/PreferencesUI.py:2926 -#: flatcamGUI/PreferencesUI.py:3076 +#: flatcamGUI/PreferencesUI.py:1985 flatcamGUI/PreferencesUI.py:2927 +#: flatcamGUI/PreferencesUI.py:3077 msgid "" "Direction for circular array.\n" "Can be CW = clockwise or CCW = counter clockwise." @@ -9675,48 +9675,48 @@ msgstr "" "Sentido da matriz circular.\n" "Pode ser CW = sentido horário ou CCW = sentido anti-horário." -#: flatcamGUI/PreferencesUI.py:1995 flatcamGUI/PreferencesUI.py:2937 -#: flatcamGUI/PreferencesUI.py:3087 +#: flatcamGUI/PreferencesUI.py:1996 flatcamGUI/PreferencesUI.py:2938 +#: flatcamGUI/PreferencesUI.py:3088 msgid "Circular Angle" msgstr "Ângulo Circular" -#: flatcamGUI/PreferencesUI.py:2014 +#: flatcamGUI/PreferencesUI.py:2015 msgid "Distance at which to buffer the Gerber element." msgstr "Distância na qual armazenar o elemento Gerber." -#: flatcamGUI/PreferencesUI.py:2023 +#: flatcamGUI/PreferencesUI.py:2024 msgid "Scale Tool" msgstr "Ferramenta de Escala" -#: flatcamGUI/PreferencesUI.py:2029 +#: flatcamGUI/PreferencesUI.py:2030 msgid "Factor to scale the Gerber element." msgstr "Fator para redimensionar o elemento Gerber." -#: flatcamGUI/PreferencesUI.py:2042 +#: flatcamGUI/PreferencesUI.py:2043 msgid "Threshold low" msgstr "Limiar baixo" -#: flatcamGUI/PreferencesUI.py:2044 +#: flatcamGUI/PreferencesUI.py:2045 msgid "Threshold value under which the apertures are not marked." msgstr "Valor limiar sob o qual as aberturas não são marcadas." -#: flatcamGUI/PreferencesUI.py:2054 +#: flatcamGUI/PreferencesUI.py:2055 msgid "Threshold high" msgstr "Limiar alto" -#: flatcamGUI/PreferencesUI.py:2056 +#: flatcamGUI/PreferencesUI.py:2057 msgid "Threshold value over which the apertures are not marked." msgstr "Valor limite sobre o qual as aberturas não são marcadas." -#: flatcamGUI/PreferencesUI.py:2074 +#: flatcamGUI/PreferencesUI.py:2075 msgid "Excellon General" msgstr "Excellon Geral" -#: flatcamGUI/PreferencesUI.py:2097 +#: flatcamGUI/PreferencesUI.py:2098 msgid "Excellon Format" msgstr "Formato Excellon" -#: flatcamGUI/PreferencesUI.py:2099 +#: flatcamGUI/PreferencesUI.py:2100 msgid "" "The NC drill files, usually named Excellon files\n" "are files that can be found in different formats.\n" @@ -9758,12 +9758,12 @@ msgstr "" "Sprint Layout 2:4 polegadas LZ\n" "KiCAD 3:5 polegadas TZ" -#: flatcamGUI/PreferencesUI.py:2127 +#: flatcamGUI/PreferencesUI.py:2128 msgid "Default values for INCH are 2:4" msgstr "Valores padrão para Polegadas: 2:4" -#: flatcamGUI/PreferencesUI.py:2134 flatcamGUI/PreferencesUI.py:2165 -#: flatcamGUI/PreferencesUI.py:2714 +#: flatcamGUI/PreferencesUI.py:2135 flatcamGUI/PreferencesUI.py:2166 +#: flatcamGUI/PreferencesUI.py:2715 msgid "" "This numbers signify the number of digits in\n" "the whole part of Excellon coordinates." @@ -9771,8 +9771,8 @@ msgstr "" "Este número configura o número de dígitos\n" "da parte inteira das coordenadas de Excellon." -#: flatcamGUI/PreferencesUI.py:2147 flatcamGUI/PreferencesUI.py:2178 -#: flatcamGUI/PreferencesUI.py:2727 +#: flatcamGUI/PreferencesUI.py:2148 flatcamGUI/PreferencesUI.py:2179 +#: flatcamGUI/PreferencesUI.py:2728 msgid "" "This numbers signify the number of digits in\n" "the decimal part of Excellon coordinates." @@ -9780,19 +9780,19 @@ msgstr "" "Este número configura o número de dígitos\n" "da parte decimal das coordenadas de Excellon." -#: flatcamGUI/PreferencesUI.py:2155 +#: flatcamGUI/PreferencesUI.py:2156 msgid "METRIC" msgstr "MÉTRICO" -#: flatcamGUI/PreferencesUI.py:2158 +#: flatcamGUI/PreferencesUI.py:2159 msgid "Default values for METRIC are 3:3" msgstr "Valores padrão para Métrico: 3:3" -#: flatcamGUI/PreferencesUI.py:2187 +#: flatcamGUI/PreferencesUI.py:2188 msgid "Default Zeros" msgstr "Padrão Zeros" -#: flatcamGUI/PreferencesUI.py:2190 flatcamGUI/PreferencesUI.py:2762 +#: flatcamGUI/PreferencesUI.py:2191 flatcamGUI/PreferencesUI.py:2763 msgid "" "This sets the type of Excellon zeros.\n" "If LZ then Leading Zeros are kept and\n" @@ -9804,7 +9804,7 @@ msgstr "" "LZ: mantém os zeros à esquerda e remove os zeros à direita.\n" "TZ: mantém os zeros à direita e remove os zeros à esquerda." -#: flatcamGUI/PreferencesUI.py:2201 +#: flatcamGUI/PreferencesUI.py:2202 msgid "" "This sets the default type of Excellon zeros.\n" "If it is not detected in the parsed file the value here\n" @@ -9818,11 +9818,11 @@ msgstr "" "LZ: mantém os zeros à esquerda e remove os zeros à direita.\n" "TZ: mantém os zeros à direita e remove os zeros à esquerda." -#: flatcamGUI/PreferencesUI.py:2211 +#: flatcamGUI/PreferencesUI.py:2212 msgid "Default Units" msgstr "Unidades Padrão" -#: flatcamGUI/PreferencesUI.py:2214 +#: flatcamGUI/PreferencesUI.py:2215 msgid "" "This sets the default units of Excellon files.\n" "If it is not detected in the parsed file the value here\n" @@ -9834,7 +9834,7 @@ msgstr "" "Se não for detectado no arquivo analisado, este padrão\n" "será usado." -#: flatcamGUI/PreferencesUI.py:2225 +#: flatcamGUI/PreferencesUI.py:2226 msgid "" "This sets the units of Excellon files.\n" "Some Excellon files don't have an header\n" @@ -9844,19 +9844,19 @@ msgstr "" "Alguns arquivos Excellon não possuem um cabeçalho,\n" "e assim este parâmetro será usado." -#: flatcamGUI/PreferencesUI.py:2231 +#: flatcamGUI/PreferencesUI.py:2232 msgid "Update Export settings" msgstr "Atualizar config. de exportação" -#: flatcamGUI/PreferencesUI.py:2239 +#: flatcamGUI/PreferencesUI.py:2240 msgid "Excellon Optimization" msgstr "Otimização Excellon" -#: flatcamGUI/PreferencesUI.py:2242 +#: flatcamGUI/PreferencesUI.py:2243 msgid "Algorithm:" msgstr "Algoritmo:" -#: flatcamGUI/PreferencesUI.py:2244 flatcamGUI/PreferencesUI.py:2261 +#: flatcamGUI/PreferencesUI.py:2245 flatcamGUI/PreferencesUI.py:2262 msgid "" "This sets the optimization type for the Excellon drill path.\n" "If <> is checked then Google OR-Tools algorithm with\n" @@ -9881,19 +9881,19 @@ msgstr "" "Se este controle está desabilitado, FlatCAM está no modo de 32 bits e usa\n" "o algoritmo Travelling Salesman para otimização de caminhos." -#: flatcamGUI/PreferencesUI.py:2256 +#: flatcamGUI/PreferencesUI.py:2257 msgid "MetaHeuristic" msgstr "MetaHeuristic" -#: flatcamGUI/PreferencesUI.py:2258 +#: flatcamGUI/PreferencesUI.py:2259 msgid "TSA" msgstr "TSA" -#: flatcamGUI/PreferencesUI.py:2273 +#: flatcamGUI/PreferencesUI.py:2274 msgid "Optimization Time" msgstr "Tempo de Otimização" -#: flatcamGUI/PreferencesUI.py:2276 +#: flatcamGUI/PreferencesUI.py:2277 msgid "" "When OR-Tools Metaheuristic (MH) is enabled there is a\n" "maximum threshold for how much time is spent doing the\n" @@ -9903,11 +9903,11 @@ msgstr "" "Quando o Metaheuristic (MH) da OR-Tools está ativado, este é o limite\n" "máximo de tempo para otimizar o caminho, em segundos. Padrão: 3." -#: flatcamGUI/PreferencesUI.py:2319 +#: flatcamGUI/PreferencesUI.py:2320 msgid "Excellon Options" msgstr "Opções Excellon" -#: flatcamGUI/PreferencesUI.py:2325 +#: flatcamGUI/PreferencesUI.py:2326 msgid "" "Parameters used to create a CNC Job object\n" "for this drill object." @@ -9915,11 +9915,11 @@ msgstr "" "Parâmetros usados para criar um objeto de Trabalho CNC\n" "para a furação." -#: flatcamGUI/PreferencesUI.py:2444 flatcamGUI/PreferencesUI.py:3358 +#: flatcamGUI/PreferencesUI.py:2445 flatcamGUI/PreferencesUI.py:3359 msgid "Duration" msgstr "Tempo de espera" -#: flatcamGUI/PreferencesUI.py:2474 +#: flatcamGUI/PreferencesUI.py:2475 msgid "" "Choose what to use for GCode generation:\n" "'Drills', 'Slots' or 'Both'.\n" @@ -9931,19 +9931,19 @@ msgstr "" "Quando escolher 'Ranhuras' ou 'Ambos', as ranhuras serão\n" "convertidos para furos." -#: flatcamGUI/PreferencesUI.py:2492 +#: flatcamGUI/PreferencesUI.py:2493 msgid "Create Geometry for milling holes." msgstr "Cria geometria para furação." -#: flatcamGUI/PreferencesUI.py:2524 +#: flatcamGUI/PreferencesUI.py:2525 msgid "Defaults" msgstr "Padrões" -#: flatcamGUI/PreferencesUI.py:2537 +#: flatcamGUI/PreferencesUI.py:2538 msgid "Excellon Adv. Options" msgstr "Opções Avançadas Excellon" -#: flatcamGUI/PreferencesUI.py:2546 +#: flatcamGUI/PreferencesUI.py:2547 msgid "" "A list of Excellon advanced parameters.\n" "Those parameters are available only for\n" @@ -9953,19 +9953,19 @@ msgstr "" "Esses parâmetros estão disponíveis somente para\n" "o nível avançado do aplicativo." -#: flatcamGUI/PreferencesUI.py:2567 +#: flatcamGUI/PreferencesUI.py:2568 msgid "Toolchange X,Y" msgstr "Troca de ferramenta X,Y" -#: flatcamGUI/PreferencesUI.py:2569 flatcamGUI/PreferencesUI.py:3413 +#: flatcamGUI/PreferencesUI.py:2570 flatcamGUI/PreferencesUI.py:3414 msgid "Toolchange X,Y position." msgstr "Posição X,Y para troca de ferramentas." -#: flatcamGUI/PreferencesUI.py:2626 flatcamGUI/PreferencesUI.py:3500 +#: flatcamGUI/PreferencesUI.py:2627 flatcamGUI/PreferencesUI.py:3501 msgid "Spindle direction" msgstr "Sentido de Rotação" -#: flatcamGUI/PreferencesUI.py:2628 flatcamGUI/PreferencesUI.py:3502 +#: flatcamGUI/PreferencesUI.py:2629 flatcamGUI/PreferencesUI.py:3503 msgid "" "This sets the direction that the spindle is rotating.\n" "It can be either:\n" @@ -9977,11 +9977,11 @@ msgstr "" "- CW = sentido horário ou\n" "- CCW = sentido anti-horário" -#: flatcamGUI/PreferencesUI.py:2639 flatcamGUI/PreferencesUI.py:3514 +#: flatcamGUI/PreferencesUI.py:2640 flatcamGUI/PreferencesUI.py:3515 msgid "Fast Plunge" msgstr "Mergulho Rápido" -#: flatcamGUI/PreferencesUI.py:2641 flatcamGUI/PreferencesUI.py:3516 +#: flatcamGUI/PreferencesUI.py:2642 flatcamGUI/PreferencesUI.py:3517 msgid "" "By checking this, the vertical move from\n" "Z_Toolchange to Z_move is done with G0,\n" @@ -9993,11 +9993,11 @@ msgstr "" "na velocidade mais rápida disponível.\n" "AVISO: o movimento é feito nas Coordenadas X,Y de troca de ferramentas." -#: flatcamGUI/PreferencesUI.py:2650 +#: flatcamGUI/PreferencesUI.py:2651 msgid "Fast Retract" msgstr "Recolhimento Rápido" -#: flatcamGUI/PreferencesUI.py:2652 +#: flatcamGUI/PreferencesUI.py:2653 msgid "" "Exit hole strategy.\n" " - When uncheked, while exiting the drilled hole the drill bit\n" @@ -10013,11 +10013,11 @@ msgstr "" "- Quando marcado, a subida da profundidade de corte para a altura de\n" " deslocamento é feita o mais rápido possível (G0) em um único movimento." -#: flatcamGUI/PreferencesUI.py:2671 +#: flatcamGUI/PreferencesUI.py:2672 msgid "Excellon Export" msgstr "Exportar Excellon" -#: flatcamGUI/PreferencesUI.py:2677 +#: flatcamGUI/PreferencesUI.py:2678 msgid "" "The parameters set here are used in the file exported\n" "when using the File -> Export -> Export Excellon menu entry." @@ -10025,11 +10025,11 @@ msgstr "" "Os parâmetros definidos aqui são usados no arquivo exportado\n" "ao usar a entrada de menu Arquivo -> Exportar -> Exportar Excellon." -#: flatcamGUI/PreferencesUI.py:2688 flatcamGUI/PreferencesUI.py:2694 +#: flatcamGUI/PreferencesUI.py:2689 flatcamGUI/PreferencesUI.py:2695 msgid "The units used in the Excellon file." msgstr "A unidade usada no arquivo Excellon gerado." -#: flatcamGUI/PreferencesUI.py:2702 +#: flatcamGUI/PreferencesUI.py:2703 msgid "" "The NC drill files, usually named Excellon files\n" "are files that can be found in different formats.\n" @@ -10041,11 +10041,11 @@ msgstr "" "Aqui é definido o formato usado quando as coordenadas\n" "fornecidas não usam ponto." -#: flatcamGUI/PreferencesUI.py:2736 +#: flatcamGUI/PreferencesUI.py:2737 msgid "Format" msgstr "Formato" -#: flatcamGUI/PreferencesUI.py:2738 flatcamGUI/PreferencesUI.py:2748 +#: flatcamGUI/PreferencesUI.py:2739 flatcamGUI/PreferencesUI.py:2749 msgid "" "Select the kind of coordinates format used.\n" "Coordinates can be saved with decimal point or without.\n" @@ -10061,15 +10061,15 @@ msgstr "" "Deve ser especificado LZ (manter zeros à esquerda)\n" "ou TZ (manter zeros à direita)." -#: flatcamGUI/PreferencesUI.py:2745 +#: flatcamGUI/PreferencesUI.py:2746 msgid "Decimal" msgstr "Decimal" -#: flatcamGUI/PreferencesUI.py:2746 +#: flatcamGUI/PreferencesUI.py:2747 msgid "No-Decimal" msgstr "Não Decimal" -#: flatcamGUI/PreferencesUI.py:2772 +#: flatcamGUI/PreferencesUI.py:2773 msgid "" "This sets the default type of Excellon zeros.\n" "If LZ then Leading Zeros are kept and\n" @@ -10081,11 +10081,11 @@ msgstr "" "LZ: mantém os zeros à esquerda e remove os zeros à direita.\n" "TZ: mantém os zeros à direita e remove os zeros à esquerda." -#: flatcamGUI/PreferencesUI.py:2782 +#: flatcamGUI/PreferencesUI.py:2783 msgid "Slot type" msgstr "Tipo de Ranhura" -#: flatcamGUI/PreferencesUI.py:2785 flatcamGUI/PreferencesUI.py:2795 +#: flatcamGUI/PreferencesUI.py:2786 flatcamGUI/PreferencesUI.py:2796 msgid "" "This sets how the slots will be exported.\n" "If ROUTED then the slots will be routed\n" @@ -10099,19 +10099,19 @@ msgstr "" "Se PERFURADO as ranhuras serão exportadas\n" "usando o comando Perfuração (G85)." -#: flatcamGUI/PreferencesUI.py:2792 +#: flatcamGUI/PreferencesUI.py:2793 msgid "Routed" msgstr "Roteado" -#: flatcamGUI/PreferencesUI.py:2793 +#: flatcamGUI/PreferencesUI.py:2794 msgid "Drilled(G85)" msgstr "Perfurado (G85)" -#: flatcamGUI/PreferencesUI.py:2826 +#: flatcamGUI/PreferencesUI.py:2827 msgid "A list of Excellon Editor parameters." msgstr "Parâmetros do Editor Excellon." -#: flatcamGUI/PreferencesUI.py:2836 +#: flatcamGUI/PreferencesUI.py:2837 msgid "" "Set the number of selected Excellon geometry\n" "items above which the utility geometry\n" @@ -10124,19 +10124,19 @@ msgstr "" "retângulo de seleção Aumenta o desempenho ao mover um\n" "grande número de elementos geométricos." -#: flatcamGUI/PreferencesUI.py:2849 flatcamGUI/PreferencesUI.py:4055 +#: flatcamGUI/PreferencesUI.py:2850 flatcamGUI/PreferencesUI.py:4056 msgid "New Tool Dia" msgstr "Novo Diâmetro" -#: flatcamGUI/PreferencesUI.py:2874 +#: flatcamGUI/PreferencesUI.py:2875 msgid "Linear Drill Array" msgstr "Matriz Linear de Furos" -#: flatcamGUI/PreferencesUI.py:2920 +#: flatcamGUI/PreferencesUI.py:2921 msgid "Circular Drill Array" msgstr "Matriz Circular de Furos" -#: flatcamGUI/PreferencesUI.py:2990 +#: flatcamGUI/PreferencesUI.py:2991 msgid "" "Angle at which the slot is placed.\n" "The precision is of max 2 decimals.\n" @@ -10148,19 +10148,19 @@ msgstr "" "Valor mínimo: -359.99 graus.\n" "Valor máximo: 360.00 graus." -#: flatcamGUI/PreferencesUI.py:3009 +#: flatcamGUI/PreferencesUI.py:3010 msgid "Linear Slot Array" msgstr "Matriz Linear de Ranhuras" -#: flatcamGUI/PreferencesUI.py:3070 +#: flatcamGUI/PreferencesUI.py:3071 msgid "Circular Slot Array" msgstr "Matriz Circular de Ranhuras" -#: flatcamGUI/PreferencesUI.py:3108 +#: flatcamGUI/PreferencesUI.py:3109 msgid "Geometry General" msgstr "Geometria Geral" -#: flatcamGUI/PreferencesUI.py:3130 +#: flatcamGUI/PreferencesUI.py:3131 msgid "" "The number of circle steps for Geometry \n" "circle and arc shapes linear approximation." @@ -10168,11 +10168,11 @@ msgstr "" "Número de etapas do círculo para a aproximação linear\n" "de Geometria círculo e arco." -#: flatcamGUI/PreferencesUI.py:3161 +#: flatcamGUI/PreferencesUI.py:3162 msgid "Geometry Options" msgstr "Opções de Geometria" -#: flatcamGUI/PreferencesUI.py:3169 +#: flatcamGUI/PreferencesUI.py:3170 msgid "" "Create a CNC Job object\n" "tracing the contours of this\n" @@ -10182,11 +10182,11 @@ msgstr "" "traçando os contornos deste objeto\n" "Geometria." -#: flatcamGUI/PreferencesUI.py:3211 +#: flatcamGUI/PreferencesUI.py:3212 msgid "Depth/Pass" msgstr "Profundidade por Passe" -#: flatcamGUI/PreferencesUI.py:3213 +#: flatcamGUI/PreferencesUI.py:3214 msgid "" "The depth to cut on each pass,\n" "when multidepth is enabled.\n" @@ -10199,11 +10199,11 @@ msgstr "" "Tem valor positivo, embora seja uma fração\n" "da profundidade, que tem valor negativo." -#: flatcamGUI/PreferencesUI.py:3393 +#: flatcamGUI/PreferencesUI.py:3394 msgid "Geometry Adv. Options" msgstr "Opções Avançadas" -#: flatcamGUI/PreferencesUI.py:3401 +#: flatcamGUI/PreferencesUI.py:3402 msgid "" "A list of Geometry advanced parameters.\n" "Those parameters are available only for\n" @@ -10213,13 +10213,13 @@ msgstr "" "Esses parâmetros estão disponíveis somente para\n" "o nível avançado do aplicativo." -#: flatcamGUI/PreferencesUI.py:3411 flatcamGUI/PreferencesUI.py:5470 -#: flatcamGUI/PreferencesUI.py:6517 flatcamTools/ToolCalibration.py:125 +#: flatcamGUI/PreferencesUI.py:3412 flatcamGUI/PreferencesUI.py:5471 +#: flatcamGUI/PreferencesUI.py:6518 flatcamTools/ToolCalibration.py:125 #: flatcamTools/ToolSolderPaste.py:239 msgid "Toolchange X-Y" msgstr "Troca de ferramenta X-Y" -#: flatcamGUI/PreferencesUI.py:3422 +#: flatcamGUI/PreferencesUI.py:3423 msgid "" "Height of the tool just after starting the work.\n" "Delete the value if you don't need this feature." @@ -10227,11 +10227,11 @@ msgstr "" "Altura da ferramenta ao iniciar o trabalho.\n" "Exclua o valor se você não precisar deste recurso." -#: flatcamGUI/PreferencesUI.py:3526 +#: flatcamGUI/PreferencesUI.py:3527 msgid "Segment X size" msgstr "Tamanho do Segmento X" -#: flatcamGUI/PreferencesUI.py:3528 +#: flatcamGUI/PreferencesUI.py:3529 msgid "" "The size of the trace segment on the X axis.\n" "Useful for auto-leveling.\n" @@ -10241,11 +10241,11 @@ msgstr "" "Útil para nivelamento automático.\n" "Valor 0 significa que não há segmentação no eixo X." -#: flatcamGUI/PreferencesUI.py:3542 +#: flatcamGUI/PreferencesUI.py:3543 msgid "Segment Y size" msgstr "Tamanho do Segmento Y" -#: flatcamGUI/PreferencesUI.py:3544 +#: flatcamGUI/PreferencesUI.py:3545 msgid "" "The size of the trace segment on the Y axis.\n" "Useful for auto-leveling.\n" @@ -10255,15 +10255,15 @@ msgstr "" "Útil para nivelamento automático.\n" "Valor 0 significa que não há segmentação no eixo Y." -#: flatcamGUI/PreferencesUI.py:3565 +#: flatcamGUI/PreferencesUI.py:3566 msgid "Geometry Editor" msgstr "Editor de Geometria" -#: flatcamGUI/PreferencesUI.py:3571 +#: flatcamGUI/PreferencesUI.py:3572 msgid "A list of Geometry Editor parameters." msgstr "Parâmetros do Editor de Geometria." -#: flatcamGUI/PreferencesUI.py:3581 flatcamGUI/PreferencesUI.py:6042 +#: flatcamGUI/PreferencesUI.py:3582 flatcamGUI/PreferencesUI.py:6043 msgid "" "Set the number of selected geometry\n" "items above which the utility geometry\n" @@ -10275,11 +10275,11 @@ msgstr "" "Acima desse valor a geometria se torna um retângulo de seleção.\n" "Aumenta o desempenho ao mover um grande número de elementos geométricos." -#: flatcamGUI/PreferencesUI.py:3613 +#: flatcamGUI/PreferencesUI.py:3614 msgid "CNC Job General" msgstr "Trabalho CNC Geral" -#: flatcamGUI/PreferencesUI.py:3666 +#: flatcamGUI/PreferencesUI.py:3667 msgid "" "The number of circle steps for GCode \n" "circle and arc shapes linear approximation." @@ -10287,21 +10287,21 @@ msgstr "" "O número de etapas de círculo para G-Code.\n" "Aproximação linear para círculos e formas de arco." -#: flatcamGUI/PreferencesUI.py:3675 +#: flatcamGUI/PreferencesUI.py:3676 msgid "Travel dia" msgstr "Diâmetro Desl." -#: flatcamGUI/PreferencesUI.py:3677 +#: flatcamGUI/PreferencesUI.py:3678 msgid "" "The width of the travel lines to be\n" "rendered in the plot." msgstr "Largura da linha a ser renderizada no gráfico." -#: flatcamGUI/PreferencesUI.py:3693 +#: flatcamGUI/PreferencesUI.py:3694 msgid "Coordinates decimals" msgstr "Decimais das Coord." -#: flatcamGUI/PreferencesUI.py:3695 +#: flatcamGUI/PreferencesUI.py:3696 msgid "" "The number of decimals to be used for \n" "the X, Y, Z coordinates in CNC code (GCODE, etc.)" @@ -10309,11 +10309,11 @@ msgstr "" "Número de decimais a ser usado para as coordenadas\n" "X, Y, Z no código do CNC (G-Code, etc.)" -#: flatcamGUI/PreferencesUI.py:3706 +#: flatcamGUI/PreferencesUI.py:3707 msgid "Feedrate decimals" msgstr "Decimais do Avanço" -#: flatcamGUI/PreferencesUI.py:3708 +#: flatcamGUI/PreferencesUI.py:3709 msgid "" "The number of decimals to be used for \n" "the Feedrate parameter in CNC code (GCODE, etc.)" @@ -10321,11 +10321,11 @@ msgstr "" "O número de decimais a ser usado para o parâmetro\n" "Taxa de Avanço no código CNC (G-Code, etc.)" -#: flatcamGUI/PreferencesUI.py:3719 +#: flatcamGUI/PreferencesUI.py:3720 msgid "Coordinates type" msgstr "Tipo de coordenada" -#: flatcamGUI/PreferencesUI.py:3721 +#: flatcamGUI/PreferencesUI.py:3722 msgid "" "The type of coordinates to be used in Gcode.\n" "Can be:\n" @@ -10337,19 +10337,19 @@ msgstr "" "- Absoluta G90 -> a referência é a origem x=0, y=0\n" "- Incremental G91 -> a referência é a posição anterior" -#: flatcamGUI/PreferencesUI.py:3727 +#: flatcamGUI/PreferencesUI.py:3728 msgid "Absolute G90" msgstr "Absoluta G90" -#: flatcamGUI/PreferencesUI.py:3728 +#: flatcamGUI/PreferencesUI.py:3729 msgid "Incremental G91" msgstr "Incremental G91" -#: flatcamGUI/PreferencesUI.py:3738 +#: flatcamGUI/PreferencesUI.py:3739 msgid "Force Windows style line-ending" msgstr "Forçar final de linha no estilo Windows" -#: flatcamGUI/PreferencesUI.py:3740 +#: flatcamGUI/PreferencesUI.py:3741 msgid "" "When checked will force a Windows style line-ending\n" "(\\r\\n) on non-Windows OS's." @@ -10357,63 +10357,63 @@ msgstr "" "Quando marcado forçará um final de linha no estilo Windows\n" "(\\r\\n) em sistemas operacionais não Windows." -#: flatcamGUI/PreferencesUI.py:3754 +#: flatcamGUI/PreferencesUI.py:3755 msgid "CNC Job Options" msgstr "Opções de Trabalho CNC" -#: flatcamGUI/PreferencesUI.py:3758 +#: flatcamGUI/PreferencesUI.py:3759 msgid "Export G-Code" msgstr "Exportar G-Code" -#: flatcamGUI/PreferencesUI.py:3774 +#: flatcamGUI/PreferencesUI.py:3775 msgid "Prepend to G-Code" msgstr "Incluir no Início do G-Code" -#: flatcamGUI/PreferencesUI.py:3790 +#: flatcamGUI/PreferencesUI.py:3791 msgid "Append to G-Code" msgstr "Incluir no final do G-Code" -#: flatcamGUI/PreferencesUI.py:3816 +#: flatcamGUI/PreferencesUI.py:3817 msgid "CNC Job Adv. Options" msgstr "Opções Avançadas" -#: flatcamGUI/PreferencesUI.py:3902 +#: flatcamGUI/PreferencesUI.py:3903 msgid "Z depth for the cut" msgstr "Profundidade Z para o corte" -#: flatcamGUI/PreferencesUI.py:3903 +#: flatcamGUI/PreferencesUI.py:3904 msgid "Z height for travel" msgstr "Altura Z para deslocamentos" -#: flatcamGUI/PreferencesUI.py:3909 +#: flatcamGUI/PreferencesUI.py:3910 msgid "dwelltime = time to dwell to allow the spindle to reach it's set RPM" msgstr "dwelltime = tempo de espera para o spindle atingir sua vel. RPM" -#: flatcamGUI/PreferencesUI.py:3928 +#: flatcamGUI/PreferencesUI.py:3929 msgid "Annotation Size" msgstr "Tamanho da Fonte" -#: flatcamGUI/PreferencesUI.py:3930 +#: flatcamGUI/PreferencesUI.py:3931 msgid "The font size of the annotation text. In pixels." msgstr "O tamanho da fonte do texto de anotação, em pixels." -#: flatcamGUI/PreferencesUI.py:3940 +#: flatcamGUI/PreferencesUI.py:3941 msgid "Annotation Color" msgstr "Cor da Fonte" -#: flatcamGUI/PreferencesUI.py:3942 +#: flatcamGUI/PreferencesUI.py:3943 msgid "Set the font color for the annotation texts." msgstr "Define a cor da fonte para os textos de anotação." -#: flatcamGUI/PreferencesUI.py:3968 +#: flatcamGUI/PreferencesUI.py:3969 msgid "NCC Tool Options" msgstr "Opções Área Sem Cobre (NCC)" -#: flatcamGUI/PreferencesUI.py:3982 flatcamGUI/PreferencesUI.py:5380 +#: flatcamGUI/PreferencesUI.py:3983 flatcamGUI/PreferencesUI.py:5381 msgid "Tools dia" msgstr "Diâmetro" -#: flatcamGUI/PreferencesUI.py:3993 flatcamGUI/PreferencesUI.py:4001 +#: flatcamGUI/PreferencesUI.py:3994 flatcamGUI/PreferencesUI.py:4002 #: flatcamTools/ToolNonCopperClear.py:215 #: flatcamTools/ToolNonCopperClear.py:223 msgid "" @@ -10425,11 +10425,11 @@ msgstr "" "- 'Ponta-V'\n" "- Circular" -#: flatcamGUI/PreferencesUI.py:3998 flatcamTools/ToolNonCopperClear.py:220 +#: flatcamGUI/PreferencesUI.py:3999 flatcamTools/ToolNonCopperClear.py:220 msgid "V-shape" msgstr "Ponta-V" -#: flatcamGUI/PreferencesUI.py:4038 flatcamGUI/PreferencesUI.py:4047 +#: flatcamGUI/PreferencesUI.py:4039 flatcamGUI/PreferencesUI.py:4048 #: flatcamTools/ToolNonCopperClear.py:256 #: flatcamTools/ToolNonCopperClear.py:264 msgid "" @@ -10439,11 +10439,11 @@ msgstr "" "Profundidade de corte no material. Valor negativo.\n" "Em unidades FlatCAM." -#: flatcamGUI/PreferencesUI.py:4057 +#: flatcamGUI/PreferencesUI.py:4058 msgid "The new tool diameter (cut width) to add in the tool table." msgstr "Diâmetro da nova ferramenta a ser adicionada na tabela de ferramentas." -#: flatcamGUI/PreferencesUI.py:4069 flatcamGUI/PreferencesUI.py:4077 +#: flatcamGUI/PreferencesUI.py:4070 flatcamGUI/PreferencesUI.py:4078 #: flatcamTools/ToolNonCopperClear.py:164 #: flatcamTools/ToolNonCopperClear.py:172 msgid "" @@ -10456,13 +10456,13 @@ msgstr "" "ferramenta\n" "- convencional: útil quando não há compensação de folga" -#: flatcamGUI/PreferencesUI.py:4086 flatcamGUI/PreferencesUI.py:4511 +#: flatcamGUI/PreferencesUI.py:4087 flatcamGUI/PreferencesUI.py:4512 #: flatcamTools/ToolNonCopperClear.py:181 flatcamTools/ToolPaint.py:153 msgid "Tool order" msgstr "Ordem das Ferramentas" -#: flatcamGUI/PreferencesUI.py:4087 flatcamGUI/PreferencesUI.py:4097 -#: flatcamGUI/PreferencesUI.py:4512 flatcamGUI/PreferencesUI.py:4522 +#: flatcamGUI/PreferencesUI.py:4088 flatcamGUI/PreferencesUI.py:4098 +#: flatcamGUI/PreferencesUI.py:4513 flatcamGUI/PreferencesUI.py:4523 #: flatcamTools/ToolNonCopperClear.py:182 #: flatcamTools/ToolNonCopperClear.py:192 flatcamTools/ToolPaint.py:154 #: flatcamTools/ToolPaint.py:164 @@ -10484,17 +10484,17 @@ msgstr "" "automaticamente a ordem\n" "decrescente e este controle é desativado." -#: flatcamGUI/PreferencesUI.py:4095 flatcamGUI/PreferencesUI.py:4520 +#: flatcamGUI/PreferencesUI.py:4096 flatcamGUI/PreferencesUI.py:4521 #: flatcamTools/ToolNonCopperClear.py:190 flatcamTools/ToolPaint.py:162 msgid "Forward" msgstr "Crescente" -#: flatcamGUI/PreferencesUI.py:4096 flatcamGUI/PreferencesUI.py:4521 +#: flatcamGUI/PreferencesUI.py:4097 flatcamGUI/PreferencesUI.py:4522 #: flatcamTools/ToolNonCopperClear.py:191 flatcamTools/ToolPaint.py:163 msgid "Reverse" msgstr "Decrescente" -#: flatcamGUI/PreferencesUI.py:4109 flatcamTools/ToolNonCopperClear.py:321 +#: flatcamGUI/PreferencesUI.py:4110 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" @@ -10512,14 +10512,14 @@ msgstr "" "Valores maiores = processamento lento e execução lenta no CNC devido\n" " ao número de caminhos." -#: flatcamGUI/PreferencesUI.py:4128 flatcamGUI/PreferencesUI.py:6108 -#: flatcamGUI/PreferencesUI.py:6350 flatcamGUI/PreferencesUI.py:6414 +#: flatcamGUI/PreferencesUI.py:4129 flatcamGUI/PreferencesUI.py:6109 +#: flatcamGUI/PreferencesUI.py:6351 flatcamGUI/PreferencesUI.py:6415 #: flatcamTools/ToolCopperThieving.py:113 flatcamTools/ToolFiducials.py:174 #: flatcamTools/ToolFiducials.py:237 flatcamTools/ToolNonCopperClear.py:339 msgid "Bounding box margin." msgstr "Margem da caixa delimitadora." -#: flatcamGUI/PreferencesUI.py:4141 flatcamGUI/PreferencesUI.py:4569 +#: flatcamGUI/PreferencesUI.py:4142 flatcamGUI/PreferencesUI.py:4570 #: flatcamTools/ToolNonCopperClear.py:350 msgid "" "Algorithm for non-copper clearing:
Standard: Fixed step inwards." @@ -10530,22 +10530,22 @@ msgstr "" "
Baseado em semente: para fora a partir de uma semente." "
Linhas retas: linhas paralelas." -#: flatcamGUI/PreferencesUI.py:4157 flatcamGUI/PreferencesUI.py:4583 +#: flatcamGUI/PreferencesUI.py:4158 flatcamGUI/PreferencesUI.py:4584 #: flatcamTools/ToolNonCopperClear.py:364 flatcamTools/ToolPaint.py:267 msgid "Connect" msgstr "Conectar" -#: flatcamGUI/PreferencesUI.py:4168 flatcamGUI/PreferencesUI.py:4593 +#: flatcamGUI/PreferencesUI.py:4169 flatcamGUI/PreferencesUI.py:4594 #: flatcamTools/ToolNonCopperClear.py:373 flatcamTools/ToolPaint.py:276 msgid "Contour" msgstr "Contorno" -#: flatcamGUI/PreferencesUI.py:4179 flatcamTools/ToolNonCopperClear.py:382 +#: flatcamGUI/PreferencesUI.py:4180 flatcamTools/ToolNonCopperClear.py:382 #: flatcamTools/ToolPaint.py:285 msgid "Rest M." msgstr "Maquinagem Restante" -#: flatcamGUI/PreferencesUI.py:4181 flatcamTools/ToolNonCopperClear.py:384 +#: flatcamGUI/PreferencesUI.py:4182 flatcamTools/ToolNonCopperClear.py:384 msgid "" "If checked, use 'rest machining'.\n" "Basically it will clear copper outside PCB features,\n" @@ -10562,7 +10562,7 @@ msgstr "" "retiradas com a ferramenta anterior.\n" "Se não estiver marcada, usa o algoritmo padrão." -#: flatcamGUI/PreferencesUI.py:4197 flatcamTools/ToolNonCopperClear.py:399 +#: flatcamGUI/PreferencesUI.py:4198 flatcamTools/ToolNonCopperClear.py:399 #: flatcamTools/ToolNonCopperClear.py:411 msgid "" "If used, it will add an offset to the copper features.\n" @@ -10574,11 +10574,11 @@ msgstr "" "A retirada de cobre terminará a uma distância dos recursos de cobre.\n" "O valor pode estar entre 0 e 10 unidades FlatCAM." -#: flatcamGUI/PreferencesUI.py:4208 flatcamTools/ToolNonCopperClear.py:409 +#: flatcamGUI/PreferencesUI.py:4209 flatcamTools/ToolNonCopperClear.py:409 msgid "Offset value" msgstr "Valor do deslocamento" -#: flatcamGUI/PreferencesUI.py:4210 +#: flatcamGUI/PreferencesUI.py:4211 msgid "" "If used, it will add an offset to the copper features.\n" "The copper clearing will finish to a distance\n" @@ -10589,26 +10589,26 @@ msgstr "" "A retirada de cobre terminará a uma distância dos recursos de cobre.\n" "O valor pode estar entre 0 e 9999.9 unidades FlatCAM." -#: flatcamGUI/PreferencesUI.py:4225 flatcamGUI/PreferencesUI.py:6120 +#: flatcamGUI/PreferencesUI.py:4226 flatcamGUI/PreferencesUI.py:6121 #: flatcamTools/ToolCopperThieving.py:125 #: flatcamTools/ToolNonCopperClear.py:435 msgid "Itself" msgstr "Própria" -#: flatcamGUI/PreferencesUI.py:4226 flatcamGUI/PreferencesUI.py:4615 +#: flatcamGUI/PreferencesUI.py:4227 flatcamGUI/PreferencesUI.py:4616 msgid "Area" msgstr "Área" -#: flatcamGUI/PreferencesUI.py:4227 flatcamGUI/PreferencesUI.py:4617 +#: flatcamGUI/PreferencesUI.py:4228 flatcamGUI/PreferencesUI.py:4618 msgid "Ref" msgstr "Ref" -#: flatcamGUI/PreferencesUI.py:4228 flatcamGUI/PreferencesUI.py:4794 +#: flatcamGUI/PreferencesUI.py:4229 flatcamGUI/PreferencesUI.py:4795 #: flatcamTools/ToolFilm.py:219 msgid "Reference" msgstr "Referência" -#: flatcamGUI/PreferencesUI.py:4230 +#: flatcamGUI/PreferencesUI.py:4231 msgid "" "- 'Itself' - the non copper clearing extent\n" "is based on the object that is copper cleared.\n" @@ -10627,19 +10627,19 @@ msgstr "" "- 'Objeto de Referência' - retirará o cobre dentro da área do objeto " "especificado." -#: flatcamGUI/PreferencesUI.py:4242 flatcamGUI/PreferencesUI.py:4623 +#: flatcamGUI/PreferencesUI.py:4243 flatcamGUI/PreferencesUI.py:4624 msgid "Normal" msgstr "Normal" -#: flatcamGUI/PreferencesUI.py:4243 flatcamGUI/PreferencesUI.py:4624 +#: flatcamGUI/PreferencesUI.py:4244 flatcamGUI/PreferencesUI.py:4625 msgid "Progressive" msgstr "Progressivo" -#: flatcamGUI/PreferencesUI.py:4244 +#: flatcamGUI/PreferencesUI.py:4245 msgid "NCC Plotting" msgstr "Gráfico NCC" -#: flatcamGUI/PreferencesUI.py:4246 +#: flatcamGUI/PreferencesUI.py:4247 msgid "" "- 'Normal' - normal plotting, done at the end of the NCC job\n" "- 'Progressive' - after each shape is generated it will be plotted." @@ -10647,26 +10647,26 @@ msgstr "" "- 'Normal' - plotagem normal, realizada no final do trabalho de NCC\n" "- 'Progressivo' - após cada forma ser gerada, ela será plotada." -#: flatcamGUI/PreferencesUI.py:4260 +#: flatcamGUI/PreferencesUI.py:4261 msgid "Cutout Tool Options" msgstr "Opções da Ferramenta de Recorte" -#: flatcamGUI/PreferencesUI.py:4275 flatcamTools/ToolCalculators.py:123 +#: flatcamGUI/PreferencesUI.py:4276 flatcamTools/ToolCalculators.py:123 #: flatcamTools/ToolCutOut.py:123 msgid "Tool Diameter" msgstr "Diâmetro" -#: flatcamGUI/PreferencesUI.py:4277 flatcamTools/ToolCutOut.py:125 +#: flatcamGUI/PreferencesUI.py:4278 flatcamTools/ToolCutOut.py:125 msgid "" "Diameter of the tool used to cutout\n" "the PCB shape out of the surrounding material." msgstr "Diâmetro da ferramenta usada para cortar o entorno do PCB." -#: flatcamGUI/PreferencesUI.py:4332 flatcamTools/ToolCutOut.py:104 +#: flatcamGUI/PreferencesUI.py:4333 flatcamTools/ToolCutOut.py:104 msgid "Object kind" msgstr "Tipo de objeto" -#: flatcamGUI/PreferencesUI.py:4334 flatcamTools/ToolCutOut.py:106 +#: flatcamGUI/PreferencesUI.py:4335 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 " @@ -10677,15 +10677,15 @@ msgstr "" "objeto Gerber de contorno PCB.
- Painel: um painel de objetos " "Gerber PCB, composto por muitos contornos PCB individuais." -#: flatcamGUI/PreferencesUI.py:4341 flatcamTools/ToolCutOut.py:112 +#: flatcamGUI/PreferencesUI.py:4342 flatcamTools/ToolCutOut.py:112 msgid "Single" msgstr "Único" -#: flatcamGUI/PreferencesUI.py:4342 flatcamTools/ToolCutOut.py:113 +#: flatcamGUI/PreferencesUI.py:4343 flatcamTools/ToolCutOut.py:113 msgid "Panel" msgstr "Painel" -#: flatcamGUI/PreferencesUI.py:4349 flatcamTools/ToolCutOut.py:184 +#: flatcamGUI/PreferencesUI.py:4350 flatcamTools/ToolCutOut.py:184 msgid "" "Margin over bounds. A positive value here\n" "will make the cutout of the PCB further from\n" @@ -10694,11 +10694,11 @@ msgstr "" "Margem além das bordas. Um valor positivo\n" "tornará o recorte do PCB mais longe da borda da PCB" -#: flatcamGUI/PreferencesUI.py:4362 flatcamTools/ToolCutOut.py:195 +#: flatcamGUI/PreferencesUI.py:4363 flatcamTools/ToolCutOut.py:195 msgid "Gap size" msgstr "Tamanho da Ponte" -#: flatcamGUI/PreferencesUI.py:4364 flatcamTools/ToolCutOut.py:197 +#: flatcamGUI/PreferencesUI.py:4365 flatcamTools/ToolCutOut.py:197 msgid "" "The size of the bridge gaps in the cutout\n" "used to keep the board connected to\n" @@ -10709,11 +10709,11 @@ msgstr "" "para manter a placa conectada ao material\n" "circundante (de onde o PCB é recortado)." -#: flatcamGUI/PreferencesUI.py:4378 flatcamTools/ToolCutOut.py:239 +#: flatcamGUI/PreferencesUI.py:4379 flatcamTools/ToolCutOut.py:239 msgid "Gaps" msgstr "Pontes" -#: flatcamGUI/PreferencesUI.py:4380 +#: flatcamGUI/PreferencesUI.py:4381 msgid "" "Number of gaps used for the cutout.\n" "There can be maximum 8 bridges/gaps.\n" @@ -10737,11 +10737,11 @@ msgstr "" "- 2TB: 2*topo + 2*baixo\n" "- 8: 2*esquerda + 2*direita + 2*topo + 2*baixo" -#: flatcamGUI/PreferencesUI.py:4403 +#: flatcamGUI/PreferencesUI.py:4404 msgid "Convex Sh." msgstr "Forma Convexa" -#: flatcamGUI/PreferencesUI.py:4405 flatcamTools/ToolCutOut.py:217 +#: flatcamGUI/PreferencesUI.py:4406 flatcamTools/ToolCutOut.py:217 msgid "" "Create a convex shape surrounding the entire PCB.\n" "Used only if the source object type is Gerber." @@ -10749,11 +10749,11 @@ msgstr "" "Cria uma forma convexa ao redor de toda a PCB.\n" "Utilize somente se o tipo de objeto de origem for Gerber." -#: flatcamGUI/PreferencesUI.py:4419 +#: flatcamGUI/PreferencesUI.py:4420 msgid "2Sided Tool Options" msgstr "Opções de PCB 2 Faces" -#: flatcamGUI/PreferencesUI.py:4425 +#: flatcamGUI/PreferencesUI.py:4426 msgid "" "A tool to help in creating a double sided\n" "PCB using alignment holes." @@ -10761,36 +10761,36 @@ msgstr "" "Uma ferramenta para ajudar na criação de um\n" "PCB de dupla face usando furos de alinhamento." -#: flatcamGUI/PreferencesUI.py:4439 flatcamTools/ToolDblSided.py:276 +#: flatcamGUI/PreferencesUI.py:4440 flatcamTools/ToolDblSided.py:276 msgid "Drill dia" msgstr "Diâmetro" -#: flatcamGUI/PreferencesUI.py:4441 flatcamTools/ToolDblSided.py:267 +#: flatcamGUI/PreferencesUI.py:4442 flatcamTools/ToolDblSided.py:267 #: flatcamTools/ToolDblSided.py:278 msgid "Diameter of the drill for the alignment holes." msgstr "Diâmetro da broca para os furos de alinhamento." -#: flatcamGUI/PreferencesUI.py:4450 flatcamTools/ToolDblSided.py:144 +#: flatcamGUI/PreferencesUI.py:4451 flatcamTools/ToolDblSided.py:144 msgid "Mirror Axis:" msgstr "Espelhar Eixo:" -#: flatcamGUI/PreferencesUI.py:4452 flatcamTools/ToolDblSided.py:145 +#: flatcamGUI/PreferencesUI.py:4453 flatcamTools/ToolDblSided.py:145 msgid "Mirror vertically (X) or horizontally (Y)." msgstr "Espelha verticalmente (X) ou horizontalmente (Y)." -#: flatcamGUI/PreferencesUI.py:4461 flatcamTools/ToolDblSided.py:154 +#: flatcamGUI/PreferencesUI.py:4462 flatcamTools/ToolDblSided.py:154 msgid "Point" msgstr "Ponto" -#: flatcamGUI/PreferencesUI.py:4462 flatcamTools/ToolDblSided.py:155 +#: flatcamGUI/PreferencesUI.py:4463 flatcamTools/ToolDblSided.py:155 msgid "Box" msgstr "Caixa" -#: flatcamGUI/PreferencesUI.py:4463 flatcamTools/ToolDblSided.py:156 +#: flatcamGUI/PreferencesUI.py:4464 flatcamTools/ToolDblSided.py:156 msgid "Axis Ref" msgstr "Eixo de Ref" -#: flatcamGUI/PreferencesUI.py:4465 flatcamTools/ToolDblSided.py:158 +#: flatcamGUI/PreferencesUI.py:4466 flatcamTools/ToolDblSided.py:158 msgid "" "The axis should pass through a point or cut\n" " a specified box (in a FlatCAM object) through \n" @@ -10799,15 +10799,15 @@ msgstr "" "O eixo deve passar por um ponto ou cortar o centro de uma caixa especificada (em um objeto FlatCAM)." -#: flatcamGUI/PreferencesUI.py:4481 +#: flatcamGUI/PreferencesUI.py:4482 msgid "Paint Tool Options" msgstr "Opções da Ferramenta de Pintura" -#: flatcamGUI/PreferencesUI.py:4487 +#: flatcamGUI/PreferencesUI.py:4488 msgid "Parameters:" msgstr "Parâmetros:" -#: flatcamGUI/PreferencesUI.py:4605 flatcamTools/ToolPaint.py:302 +#: flatcamGUI/PreferencesUI.py:4606 flatcamTools/ToolPaint.py:302 #: flatcamTools/ToolPaint.py:319 msgid "" "How to select Polygons to be painted.\n" @@ -10831,15 +10831,15 @@ msgstr "" "- 'Todos os polígonos' - a Pintura será iniciada após o clique.\n" "- 'Objeto de Referência' - pintará dentro da área do objeto especificado." -#: flatcamGUI/PreferencesUI.py:4614 +#: flatcamGUI/PreferencesUI.py:4615 msgid "Sel" msgstr "Seleção" -#: flatcamGUI/PreferencesUI.py:4625 +#: flatcamGUI/PreferencesUI.py:4626 msgid "Paint Plotting" msgstr "Mostrar Pinturas" -#: flatcamGUI/PreferencesUI.py:4627 +#: flatcamGUI/PreferencesUI.py:4628 msgid "" "- 'Normal' - normal plotting, done at the end of the Paint job\n" "- 'Progressive' - after each shape is generated it will be plotted." @@ -10847,11 +10847,11 @@ msgstr "" "- 'Normal' - plotagem normal, realizada no final do trabalho de pintura\n" "- 'Progressivo' - após cada forma ser gerada, ela será plotada." -#: flatcamGUI/PreferencesUI.py:4641 +#: flatcamGUI/PreferencesUI.py:4642 msgid "Film Tool Options" msgstr "Opções da Ferramenta de Filme" -#: flatcamGUI/PreferencesUI.py:4647 +#: flatcamGUI/PreferencesUI.py:4648 msgid "" "Create a PCB film from a Gerber or Geometry\n" "FlatCAM object.\n" @@ -10861,11 +10861,11 @@ msgstr "" "ou Geometria FlatCAM.\n" "O arquivo é salvo no formato SVG." -#: flatcamGUI/PreferencesUI.py:4658 +#: flatcamGUI/PreferencesUI.py:4659 msgid "Film Type" msgstr "Tipo de Filme" -#: flatcamGUI/PreferencesUI.py:4660 flatcamTools/ToolFilm.py:300 +#: flatcamGUI/PreferencesUI.py:4661 flatcamTools/ToolFilm.py:300 msgid "" "Generate a Positive black film or a Negative film.\n" "Positive means that it will print the features\n" @@ -10881,19 +10881,19 @@ msgstr "" "em branco em uma tela preta.\n" "O formato do arquivo do filme é SVG ." -#: flatcamGUI/PreferencesUI.py:4671 +#: flatcamGUI/PreferencesUI.py:4672 msgid "Film Color" msgstr "Cor do Filme" -#: flatcamGUI/PreferencesUI.py:4673 +#: flatcamGUI/PreferencesUI.py:4674 msgid "Set the film color when positive film is selected." msgstr "Define a cor do filme, se filme positivo estiver selecionado." -#: flatcamGUI/PreferencesUI.py:4696 flatcamTools/ToolFilm.py:316 +#: flatcamGUI/PreferencesUI.py:4697 flatcamTools/ToolFilm.py:316 msgid "Border" msgstr "Borda" -#: flatcamGUI/PreferencesUI.py:4698 flatcamTools/ToolFilm.py:318 +#: flatcamGUI/PreferencesUI.py:4699 flatcamTools/ToolFilm.py:318 msgid "" "Specify a border around the object.\n" "Only for negative film.\n" @@ -10913,11 +10913,11 @@ msgstr "" "brancos como o restante e podem ser confundidos\n" "com os limites, se não for usada essa borda)." -#: flatcamGUI/PreferencesUI.py:4715 flatcamTools/ToolFilm.py:283 +#: flatcamGUI/PreferencesUI.py:4716 flatcamTools/ToolFilm.py:283 msgid "Scale Stroke" msgstr "Espessura da Linha" -#: flatcamGUI/PreferencesUI.py:4717 flatcamTools/ToolFilm.py:285 +#: flatcamGUI/PreferencesUI.py:4718 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 " @@ -10928,11 +10928,11 @@ msgstr "" "A linha que envolve cada recurso SVG será mais espessa ou mais fina.\n" "Os recursos mais finos podem ser afetados por esse parâmetro." -#: flatcamGUI/PreferencesUI.py:4724 flatcamTools/ToolFilm.py:141 +#: flatcamGUI/PreferencesUI.py:4725 flatcamTools/ToolFilm.py:141 msgid "Film Adjustments" msgstr "Ajustes do Filme" -#: flatcamGUI/PreferencesUI.py:4726 flatcamTools/ToolFilm.py:143 +#: flatcamGUI/PreferencesUI.py:4727 flatcamTools/ToolFilm.py:143 msgid "" "Sometime the printers will distort the print shape, especially the Laser " "types.\n" @@ -10942,11 +10942,11 @@ msgstr "" "especialmente as laser.\n" "Esta seção fornece as ferramentas para compensar as distorções na impressão." -#: flatcamGUI/PreferencesUI.py:4733 flatcamTools/ToolFilm.py:150 +#: flatcamGUI/PreferencesUI.py:4734 flatcamTools/ToolFilm.py:150 msgid "Scale Film geometry" msgstr "Escala da Geometria de Filme" -#: flatcamGUI/PreferencesUI.py:4735 flatcamTools/ToolFilm.py:152 +#: flatcamGUI/PreferencesUI.py:4736 flatcamTools/ToolFilm.py:152 msgid "" "A value greater than 1 will stretch the film\n" "while a value less than 1 will jolt it." @@ -10954,21 +10954,21 @@ msgstr "" "Um valor maior que 1 esticará o filme\n" "enquanto um valor menor que 1 o reduzirá." -#: flatcamGUI/PreferencesUI.py:4745 flatcamGUI/PreferencesUI.py:5265 +#: flatcamGUI/PreferencesUI.py:4746 flatcamGUI/PreferencesUI.py:5266 #: flatcamTools/ToolFilm.py:162 flatcamTools/ToolTransform.py:147 msgid "X factor" msgstr "Fator X" -#: flatcamGUI/PreferencesUI.py:4754 flatcamGUI/PreferencesUI.py:5278 +#: flatcamGUI/PreferencesUI.py:4755 flatcamGUI/PreferencesUI.py:5279 #: flatcamTools/ToolFilm.py:171 flatcamTools/ToolTransform.py:168 msgid "Y factor" msgstr "Fator Y" -#: flatcamGUI/PreferencesUI.py:4764 flatcamTools/ToolFilm.py:189 +#: flatcamGUI/PreferencesUI.py:4765 flatcamTools/ToolFilm.py:189 msgid "Skew Film geometry" msgstr "Inclinar a Geometria de Filme" -#: flatcamGUI/PreferencesUI.py:4766 flatcamTools/ToolFilm.py:191 +#: flatcamGUI/PreferencesUI.py:4767 flatcamTools/ToolFilm.py:191 msgid "" "Positive values will skew to the right\n" "while negative values will skew to the left." @@ -10976,17 +10976,17 @@ msgstr "" "Valores positivos inclinam para a direita\n" "enquanto valores negativos inclinam para a esquerda." -#: flatcamGUI/PreferencesUI.py:4776 flatcamGUI/PreferencesUI.py:5234 +#: flatcamGUI/PreferencesUI.py:4777 flatcamGUI/PreferencesUI.py:5235 #: flatcamTools/ToolFilm.py:201 flatcamTools/ToolTransform.py:97 msgid "X angle" msgstr "Ângulo X" -#: flatcamGUI/PreferencesUI.py:4785 flatcamGUI/PreferencesUI.py:5248 +#: flatcamGUI/PreferencesUI.py:4786 flatcamGUI/PreferencesUI.py:5249 #: flatcamTools/ToolFilm.py:210 flatcamTools/ToolTransform.py:119 msgid "Y angle" msgstr "Ângulo Y" -#: flatcamGUI/PreferencesUI.py:4796 flatcamTools/ToolFilm.py:221 +#: flatcamGUI/PreferencesUI.py:4797 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." @@ -10994,57 +10994,57 @@ msgstr "" "O ponto de referência a ser usado como origem para a inclinação.\n" "Pode ser um dos quatro pontos da caixa delimitadora de geometria." -#: flatcamGUI/PreferencesUI.py:4799 flatcamTools/ToolFiducials.py:87 +#: flatcamGUI/PreferencesUI.py:4800 flatcamTools/ToolFiducials.py:87 #: flatcamTools/ToolFilm.py:224 msgid "Bottom Left" msgstr "Esquerda Inferior" -#: flatcamGUI/PreferencesUI.py:4800 flatcamTools/ToolFilm.py:225 +#: flatcamGUI/PreferencesUI.py:4801 flatcamTools/ToolFilm.py:225 msgid "Top Left" msgstr "Esquerda Superior" -#: flatcamGUI/PreferencesUI.py:4801 flatcamTools/ToolFilm.py:226 +#: flatcamGUI/PreferencesUI.py:4802 flatcamTools/ToolFilm.py:226 msgid "Bottom Right" msgstr "Direita Inferior" -#: flatcamGUI/PreferencesUI.py:4802 flatcamTools/ToolFilm.py:227 +#: flatcamGUI/PreferencesUI.py:4803 flatcamTools/ToolFilm.py:227 msgid "Top right" msgstr "Direita Superior" -#: flatcamGUI/PreferencesUI.py:4810 flatcamTools/ToolFilm.py:244 +#: flatcamGUI/PreferencesUI.py:4811 flatcamTools/ToolFilm.py:244 msgid "Mirror Film geometry" msgstr "Espelhar geometria de filme" -#: flatcamGUI/PreferencesUI.py:4812 flatcamTools/ToolFilm.py:246 +#: flatcamGUI/PreferencesUI.py:4813 flatcamTools/ToolFilm.py:246 msgid "Mirror the film geometry on the selected axis or on both." msgstr "Espelha a geometria do filme no eixo selecionado ou em ambos." -#: flatcamGUI/PreferencesUI.py:4824 flatcamTools/ToolFilm.py:258 +#: flatcamGUI/PreferencesUI.py:4825 flatcamTools/ToolFilm.py:258 msgid "Both" msgstr "Ambos" -#: flatcamGUI/PreferencesUI.py:4826 flatcamTools/ToolFilm.py:260 +#: flatcamGUI/PreferencesUI.py:4827 flatcamTools/ToolFilm.py:260 msgid "Mirror axis" msgstr "Espelhar eixo" -#: flatcamGUI/PreferencesUI.py:4836 flatcamTools/ToolFilm.py:403 +#: flatcamGUI/PreferencesUI.py:4837 flatcamTools/ToolFilm.py:403 msgid "SVG" msgstr "SVG" -#: flatcamGUI/PreferencesUI.py:4837 flatcamTools/ToolFilm.py:404 +#: flatcamGUI/PreferencesUI.py:4838 flatcamTools/ToolFilm.py:404 msgid "PNG" msgstr "PNG" -#: flatcamGUI/PreferencesUI.py:4838 flatcamTools/ToolFilm.py:405 +#: flatcamGUI/PreferencesUI.py:4839 flatcamTools/ToolFilm.py:405 msgid "PDF" msgstr "PDF" -#: flatcamGUI/PreferencesUI.py:4841 flatcamTools/ToolFilm.py:298 +#: flatcamGUI/PreferencesUI.py:4842 flatcamTools/ToolFilm.py:298 #: flatcamTools/ToolFilm.py:408 msgid "Film Type:" msgstr "Tipo de Filme:" -#: flatcamGUI/PreferencesUI.py:4843 flatcamTools/ToolFilm.py:410 +#: flatcamGUI/PreferencesUI.py:4844 flatcamTools/ToolFilm.py:410 msgid "" "The file type of the saved film. Can be:\n" "- 'SVG' -> open-source vectorial format\n" @@ -11056,23 +11056,23 @@ msgstr "" "- 'PNG' -> imagem raster\n" "- 'PDF' -> formato de documento portátil" -#: flatcamGUI/PreferencesUI.py:4852 flatcamTools/ToolFilm.py:419 +#: flatcamGUI/PreferencesUI.py:4853 flatcamTools/ToolFilm.py:419 msgid "Page Orientation" msgstr "Orientação da Página" -#: flatcamGUI/PreferencesUI.py:4865 flatcamTools/ToolFilm.py:432 +#: flatcamGUI/PreferencesUI.py:4866 flatcamTools/ToolFilm.py:432 msgid "Page Size" msgstr "Tamanho da Página" -#: flatcamGUI/PreferencesUI.py:4866 flatcamTools/ToolFilm.py:433 +#: flatcamGUI/PreferencesUI.py:4867 flatcamTools/ToolFilm.py:433 msgid "A selection of standard ISO 216 page sizes." msgstr "Uma seleção de tamanhos de página padrão ISO 216." -#: flatcamGUI/PreferencesUI.py:4938 +#: flatcamGUI/PreferencesUI.py:4939 msgid "Panelize Tool Options" msgstr "Opções da Ferramenta Criar Painel" -#: flatcamGUI/PreferencesUI.py:4944 +#: flatcamGUI/PreferencesUI.py:4945 msgid "" "Create an object that contains an array of (x, y) elements,\n" "each element is a copy of the source object spaced\n" @@ -11082,11 +11082,11 @@ msgstr "" "Cada elemento é uma cópia do objeto de origem espaçado\n" "dos demais por uma distância X, Y." -#: flatcamGUI/PreferencesUI.py:4961 flatcamTools/ToolPanelize.py:160 +#: flatcamGUI/PreferencesUI.py:4962 flatcamTools/ToolPanelize.py:160 msgid "Spacing cols" msgstr "Espaço entre Colunas" -#: flatcamGUI/PreferencesUI.py:4963 flatcamTools/ToolPanelize.py:162 +#: flatcamGUI/PreferencesUI.py:4964 flatcamTools/ToolPanelize.py:162 msgid "" "Spacing between columns of the desired panel.\n" "In current units." @@ -11094,11 +11094,11 @@ msgstr "" "Espaçamento desejado entre colunas do painel.\n" "Nas unidades atuais." -#: flatcamGUI/PreferencesUI.py:4975 flatcamTools/ToolPanelize.py:172 +#: flatcamGUI/PreferencesUI.py:4976 flatcamTools/ToolPanelize.py:172 msgid "Spacing rows" msgstr "Espaço entre Linhas" -#: flatcamGUI/PreferencesUI.py:4977 flatcamTools/ToolPanelize.py:174 +#: flatcamGUI/PreferencesUI.py:4978 flatcamTools/ToolPanelize.py:174 msgid "" "Spacing between rows of the desired panel.\n" "In current units." @@ -11106,36 +11106,36 @@ msgstr "" "Espaçamento desejado entre linhas do painel.\n" "Nas unidades atuais." -#: flatcamGUI/PreferencesUI.py:4988 flatcamTools/ToolPanelize.py:183 +#: flatcamGUI/PreferencesUI.py:4989 flatcamTools/ToolPanelize.py:183 msgid "Columns" msgstr "Colunas" -#: flatcamGUI/PreferencesUI.py:4990 flatcamTools/ToolPanelize.py:185 +#: flatcamGUI/PreferencesUI.py:4991 flatcamTools/ToolPanelize.py:185 msgid "Number of columns of the desired panel" msgstr "Número de colunas do painel desejado" -#: flatcamGUI/PreferencesUI.py:5000 flatcamTools/ToolPanelize.py:193 +#: flatcamGUI/PreferencesUI.py:5001 flatcamTools/ToolPanelize.py:193 msgid "Rows" msgstr "Linhas" -#: flatcamGUI/PreferencesUI.py:5002 flatcamTools/ToolPanelize.py:195 +#: flatcamGUI/PreferencesUI.py:5003 flatcamTools/ToolPanelize.py:195 msgid "Number of rows of the desired panel" msgstr "Número de linhas do painel desejado" -#: flatcamGUI/PreferencesUI.py:5008 flatcamTools/ToolCalibration.py:196 +#: flatcamGUI/PreferencesUI.py:5009 flatcamTools/ToolCalibration.py:196 #: flatcamTools/ToolCalibration.py:634 flatcamTools/ToolPanelize.py:201 msgid "Gerber" msgstr "Gerber" -#: flatcamGUI/PreferencesUI.py:5009 flatcamTools/ToolPanelize.py:202 +#: flatcamGUI/PreferencesUI.py:5010 flatcamTools/ToolPanelize.py:202 msgid "Geo" msgstr "Geo" -#: flatcamGUI/PreferencesUI.py:5010 flatcamTools/ToolPanelize.py:203 +#: flatcamGUI/PreferencesUI.py:5011 flatcamTools/ToolPanelize.py:203 msgid "Panel Type" msgstr "Tipo de Painel" -#: flatcamGUI/PreferencesUI.py:5012 +#: flatcamGUI/PreferencesUI.py:5013 msgid "" "Choose the type of object for the panel object:\n" "- Gerber\n" @@ -11145,11 +11145,11 @@ msgstr "" "- Gerber\n" "- Geometria" -#: flatcamGUI/PreferencesUI.py:5021 +#: flatcamGUI/PreferencesUI.py:5022 msgid "Constrain within" msgstr "Restringir dentro de" -#: flatcamGUI/PreferencesUI.py:5023 flatcamTools/ToolPanelize.py:215 +#: flatcamGUI/PreferencesUI.py:5024 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" @@ -11163,11 +11163,11 @@ msgstr "" "o painel final terá tantas colunas e linhas quantas\n" "couberem completamente dentro de área selecionada." -#: flatcamGUI/PreferencesUI.py:5036 flatcamTools/ToolPanelize.py:227 +#: flatcamGUI/PreferencesUI.py:5037 flatcamTools/ToolPanelize.py:227 msgid "Width (DX)" msgstr "Largura (DX)" -#: flatcamGUI/PreferencesUI.py:5038 flatcamTools/ToolPanelize.py:229 +#: flatcamGUI/PreferencesUI.py:5039 flatcamTools/ToolPanelize.py:229 msgid "" "The width (DX) within which the panel must fit.\n" "In current units." @@ -11175,11 +11175,11 @@ msgstr "" "A largura (DX) na qual o painel deve caber.\n" "Nas unidades atuais." -#: flatcamGUI/PreferencesUI.py:5049 flatcamTools/ToolPanelize.py:238 +#: flatcamGUI/PreferencesUI.py:5050 flatcamTools/ToolPanelize.py:238 msgid "Height (DY)" msgstr "Altura (DY)" -#: flatcamGUI/PreferencesUI.py:5051 flatcamTools/ToolPanelize.py:240 +#: flatcamGUI/PreferencesUI.py:5052 flatcamTools/ToolPanelize.py:240 msgid "" "The height (DY)within which the panel must fit.\n" "In current units." @@ -11187,15 +11187,15 @@ msgstr "" "A altura (DY) na qual o painel deve se ajustar.\n" "Nas unidades atuais." -#: flatcamGUI/PreferencesUI.py:5065 +#: flatcamGUI/PreferencesUI.py:5066 msgid "Calculators Tool Options" msgstr "Opções das Calculadoras" -#: flatcamGUI/PreferencesUI.py:5069 flatcamTools/ToolCalculators.py:25 +#: flatcamGUI/PreferencesUI.py:5070 flatcamTools/ToolCalculators.py:25 msgid "V-Shape Tool Calculator" msgstr "Calculadora Ferramenta Ponta-em-V" -#: flatcamGUI/PreferencesUI.py:5071 +#: flatcamGUI/PreferencesUI.py:5072 msgid "" "Calculate the tool diameter for a given V-shape tool,\n" "having the tip diameter, tip angle and\n" @@ -11205,11 +11205,11 @@ msgstr "" "ferramenta em forma de V, com o diâmetro da ponta, o ângulo da ponta e a\n" "profundidade de corte como parâmetros." -#: flatcamGUI/PreferencesUI.py:5086 flatcamTools/ToolCalculators.py:94 +#: flatcamGUI/PreferencesUI.py:5087 flatcamTools/ToolCalculators.py:94 msgid "Tip Diameter" msgstr "Diâmetro da Ponta" -#: flatcamGUI/PreferencesUI.py:5088 flatcamTools/ToolCalculators.py:102 +#: flatcamGUI/PreferencesUI.py:5089 flatcamTools/ToolCalculators.py:102 msgid "" "This is the tool tip diameter.\n" "It is specified by manufacturer." @@ -11217,11 +11217,11 @@ msgstr "" "Diâmetro da ponta da ferramenta.\n" "Especificado pelo fabricante." -#: flatcamGUI/PreferencesUI.py:5100 flatcamTools/ToolCalculators.py:105 +#: flatcamGUI/PreferencesUI.py:5101 flatcamTools/ToolCalculators.py:105 msgid "Tip Angle" msgstr "Ângulo da Ponta" -#: flatcamGUI/PreferencesUI.py:5102 +#: flatcamGUI/PreferencesUI.py:5103 msgid "" "This is the angle on the tip of the tool.\n" "It is specified by manufacturer." @@ -11229,7 +11229,7 @@ msgstr "" "Ângulo na ponta da ferramenta.\n" "Especificado pelo fabricante." -#: flatcamGUI/PreferencesUI.py:5116 +#: flatcamGUI/PreferencesUI.py:5117 msgid "" "This is depth to cut into material.\n" "In the CNCJob object it is the CutZ parameter." @@ -11237,11 +11237,11 @@ msgstr "" "Profundidade para cortar o material.\n" "No objeto CNC, é o parâmetro Profundidade de Corte (z_cut)." -#: flatcamGUI/PreferencesUI.py:5123 flatcamTools/ToolCalculators.py:27 +#: flatcamGUI/PreferencesUI.py:5124 flatcamTools/ToolCalculators.py:27 msgid "ElectroPlating Calculator" msgstr "Calculadora Eletrolítica" -#: flatcamGUI/PreferencesUI.py:5125 flatcamTools/ToolCalculators.py:158 +#: flatcamGUI/PreferencesUI.py:5126 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 " @@ -11251,27 +11251,27 @@ msgstr "" "(via/pad/furos) usando um método como tinta grahite ou tinta \n" "hipofosfito de cálcio ou cloreto de paládio." -#: flatcamGUI/PreferencesUI.py:5139 flatcamTools/ToolCalculators.py:167 +#: flatcamGUI/PreferencesUI.py:5140 flatcamTools/ToolCalculators.py:167 msgid "Board Length" msgstr "Comprimento da Placa" -#: flatcamGUI/PreferencesUI.py:5141 flatcamTools/ToolCalculators.py:173 +#: flatcamGUI/PreferencesUI.py:5142 flatcamTools/ToolCalculators.py:173 msgid "This is the board length. In centimeters." msgstr "Comprimento da placa, em centímetros." -#: flatcamGUI/PreferencesUI.py:5151 flatcamTools/ToolCalculators.py:175 +#: flatcamGUI/PreferencesUI.py:5152 flatcamTools/ToolCalculators.py:175 msgid "Board Width" msgstr "Largura da Placa" -#: flatcamGUI/PreferencesUI.py:5153 flatcamTools/ToolCalculators.py:181 +#: flatcamGUI/PreferencesUI.py:5154 flatcamTools/ToolCalculators.py:181 msgid "This is the board width.In centimeters." msgstr "Largura da placa, em centímetros." -#: flatcamGUI/PreferencesUI.py:5158 flatcamTools/ToolCalculators.py:183 +#: flatcamGUI/PreferencesUI.py:5159 flatcamTools/ToolCalculators.py:183 msgid "Current Density" msgstr "Densidade de Corrente" -#: flatcamGUI/PreferencesUI.py:5164 flatcamTools/ToolCalculators.py:190 +#: flatcamGUI/PreferencesUI.py:5165 flatcamTools/ToolCalculators.py:190 msgid "" "Current density to pass through the board. \n" "In Amps per Square Feet ASF." @@ -11279,21 +11279,21 @@ msgstr "" "Densidade de corrente para passar pela placa.\n" "Em Ampères por Pés Quadrados ASF." -#: flatcamGUI/PreferencesUI.py:5170 flatcamTools/ToolCalculators.py:193 +#: flatcamGUI/PreferencesUI.py:5171 flatcamTools/ToolCalculators.py:193 msgid "Copper Growth" msgstr "Espessura do Cobre" -#: flatcamGUI/PreferencesUI.py:5176 flatcamTools/ToolCalculators.py:200 +#: flatcamGUI/PreferencesUI.py:5177 flatcamTools/ToolCalculators.py:200 msgid "" "How thick the copper growth is intended to be.\n" "In microns." msgstr "Espessura da camada de cobre, em microns." -#: flatcamGUI/PreferencesUI.py:5189 +#: flatcamGUI/PreferencesUI.py:5190 msgid "Transform Tool Options" msgstr "Opções Transformações" -#: flatcamGUI/PreferencesUI.py:5195 +#: flatcamGUI/PreferencesUI.py:5196 msgid "" "Various transformations that can be applied\n" "on a FlatCAM object." @@ -11301,19 +11301,19 @@ msgstr "" "Várias transformações que podem ser aplicadas\n" "a um objeto FlatCAM." -#: flatcamGUI/PreferencesUI.py:5226 +#: flatcamGUI/PreferencesUI.py:5227 msgid "Skew" msgstr "Inclinar" -#: flatcamGUI/PreferencesUI.py:5267 flatcamTools/ToolTransform.py:149 +#: flatcamGUI/PreferencesUI.py:5268 flatcamTools/ToolTransform.py:149 msgid "Factor for scaling on X axis." msgstr "Fator para redimensionamento no eixo X." -#: flatcamGUI/PreferencesUI.py:5280 flatcamTools/ToolTransform.py:170 +#: flatcamGUI/PreferencesUI.py:5281 flatcamTools/ToolTransform.py:170 msgid "Factor for scaling on Y axis." msgstr "Fator para redimensionamento no eixo Y." -#: flatcamGUI/PreferencesUI.py:5288 flatcamTools/ToolTransform.py:193 +#: flatcamGUI/PreferencesUI.py:5289 flatcamTools/ToolTransform.py:193 msgid "" "Scale the selected object(s)\n" "using the Scale_X factor for both axis." @@ -11321,7 +11321,7 @@ msgstr "" "Redimensiona o(s) objeto(s) selecionado(s)\n" "usando o Fator de Escala X para ambos os eixos." -#: flatcamGUI/PreferencesUI.py:5296 flatcamTools/ToolTransform.py:201 +#: flatcamGUI/PreferencesUI.py:5297 flatcamTools/ToolTransform.py:201 msgid "" "Scale the selected object(s)\n" "using the origin reference when checked,\n" @@ -11332,27 +11332,27 @@ msgstr "" "de origem quando marcado, e o centro da maior caixa delimitadora\n" "do objeto selecionado quando desmarcado." -#: flatcamGUI/PreferencesUI.py:5312 flatcamTools/ToolTransform.py:216 +#: flatcamGUI/PreferencesUI.py:5313 flatcamTools/ToolTransform.py:216 msgid "X val" msgstr "X" -#: flatcamGUI/PreferencesUI.py:5314 flatcamTools/ToolTransform.py:218 +#: flatcamGUI/PreferencesUI.py:5315 flatcamTools/ToolTransform.py:218 msgid "Distance to offset on X axis. In current units." msgstr "Distância para deslocar no eixo X, nas unidades atuais." -#: flatcamGUI/PreferencesUI.py:5325 flatcamTools/ToolTransform.py:237 +#: flatcamGUI/PreferencesUI.py:5326 flatcamTools/ToolTransform.py:237 msgid "Y val" msgstr "Y" -#: flatcamGUI/PreferencesUI.py:5327 flatcamTools/ToolTransform.py:239 +#: flatcamGUI/PreferencesUI.py:5328 flatcamTools/ToolTransform.py:239 msgid "Distance to offset on Y axis. In current units." msgstr "Distância para deslocar no eixo Y, nas unidades atuais." -#: flatcamGUI/PreferencesUI.py:5333 flatcamTools/ToolTransform.py:284 +#: flatcamGUI/PreferencesUI.py:5334 flatcamTools/ToolTransform.py:284 msgid "Mirror Reference" msgstr "Referência do Espelhamento" -#: flatcamGUI/PreferencesUI.py:5335 flatcamTools/ToolTransform.py:286 +#: flatcamGUI/PreferencesUI.py:5336 flatcamTools/ToolTransform.py:286 msgid "" "Flip the selected object(s)\n" "around the point in Point Entry Field.\n" @@ -11373,11 +11373,11 @@ msgstr "" "- ou digitar as coordenadas no formato (x, y) no campo\n" " Ponto de Ref. e clicar em Espelhar no X(Y)" -#: flatcamGUI/PreferencesUI.py:5346 +#: flatcamGUI/PreferencesUI.py:5347 msgid "Mirror Reference point" msgstr "Referência do Espelhamento" -#: flatcamGUI/PreferencesUI.py:5348 +#: flatcamGUI/PreferencesUI.py:5349 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" @@ -11387,11 +11387,11 @@ msgstr "" "O 'x' em (x, y) será usado ao usar Espelhar em X e\n" "o 'y' em (x, y) será usado ao usar Espelhar em Y e" -#: flatcamGUI/PreferencesUI.py:5365 +#: flatcamGUI/PreferencesUI.py:5366 msgid "SolderPaste Tool Options" msgstr "Opções da Ferramenta Pasta de Solda" -#: flatcamGUI/PreferencesUI.py:5371 +#: flatcamGUI/PreferencesUI.py:5372 msgid "" "A tool to create GCode for dispensing\n" "solder paste onto a PCB." @@ -11399,48 +11399,48 @@ msgstr "" "Uma ferramenta para criar G-Code para dispensar pasta\n" "de solda em um PCB." -#: flatcamGUI/PreferencesUI.py:5382 +#: flatcamGUI/PreferencesUI.py:5383 msgid "Diameters of nozzle tools, separated by ','" msgstr "Diâmetros dos bicos, separados por ','" -#: flatcamGUI/PreferencesUI.py:5390 +#: flatcamGUI/PreferencesUI.py:5391 msgid "New Nozzle Dia" msgstr "Diâmetro do Novo Bico" -#: flatcamGUI/PreferencesUI.py:5392 flatcamTools/ToolSolderPaste.py:106 +#: flatcamGUI/PreferencesUI.py:5393 flatcamTools/ToolSolderPaste.py:106 msgid "Diameter for the new Nozzle tool to add in the Tool Table" msgstr "" "Diâmetro da nova ferramenta Bico para adicionar na tabela de ferramentas" -#: flatcamGUI/PreferencesUI.py:5408 flatcamTools/ToolSolderPaste.py:182 +#: flatcamGUI/PreferencesUI.py:5409 flatcamTools/ToolSolderPaste.py:182 msgid "Z Dispense Start" msgstr "Altura Inicial" -#: flatcamGUI/PreferencesUI.py:5410 flatcamTools/ToolSolderPaste.py:184 +#: flatcamGUI/PreferencesUI.py:5411 flatcamTools/ToolSolderPaste.py:184 msgid "The height (Z) when solder paste dispensing starts." msgstr "A altura (Z) que inicia a distribuição de pasta de solda." -#: flatcamGUI/PreferencesUI.py:5421 flatcamTools/ToolSolderPaste.py:194 +#: flatcamGUI/PreferencesUI.py:5422 flatcamTools/ToolSolderPaste.py:194 msgid "Z Dispense" msgstr "Altura para Distribuir" -#: flatcamGUI/PreferencesUI.py:5423 flatcamTools/ToolSolderPaste.py:196 +#: flatcamGUI/PreferencesUI.py:5424 flatcamTools/ToolSolderPaste.py:196 msgid "The height (Z) when doing solder paste dispensing." msgstr "Altura (Z) para distribuir a pasta de solda." -#: flatcamGUI/PreferencesUI.py:5434 flatcamTools/ToolSolderPaste.py:206 +#: flatcamGUI/PreferencesUI.py:5435 flatcamTools/ToolSolderPaste.py:206 msgid "Z Dispense Stop" msgstr "Altura Final" -#: flatcamGUI/PreferencesUI.py:5436 flatcamTools/ToolSolderPaste.py:208 +#: flatcamGUI/PreferencesUI.py:5437 flatcamTools/ToolSolderPaste.py:208 msgid "The height (Z) when solder paste dispensing stops." msgstr "Altura (Z) após a distribuição de pasta de solda." -#: flatcamGUI/PreferencesUI.py:5447 flatcamTools/ToolSolderPaste.py:218 +#: flatcamGUI/PreferencesUI.py:5448 flatcamTools/ToolSolderPaste.py:218 msgid "Z Travel" msgstr "Altura para Deslocamento" -#: flatcamGUI/PreferencesUI.py:5449 flatcamTools/ToolSolderPaste.py:220 +#: flatcamGUI/PreferencesUI.py:5450 flatcamTools/ToolSolderPaste.py:220 msgid "" "The height (Z) for travel between pads\n" "(without dispensing solder paste)." @@ -11448,15 +11448,15 @@ msgstr "" "Altura (Z) para deslocamento entre pads\n" "(sem dispensar pasta de solda)." -#: flatcamGUI/PreferencesUI.py:5461 flatcamTools/ToolSolderPaste.py:231 +#: flatcamGUI/PreferencesUI.py:5462 flatcamTools/ToolSolderPaste.py:231 msgid "Z Toolchange" msgstr "Altura Troca de Ferram." -#: flatcamGUI/PreferencesUI.py:5463 flatcamTools/ToolSolderPaste.py:233 +#: flatcamGUI/PreferencesUI.py:5464 flatcamTools/ToolSolderPaste.py:233 msgid "The height (Z) for tool (nozzle) change." msgstr "Altura (Z) para trocar ferramenta (bico)." -#: flatcamGUI/PreferencesUI.py:5472 flatcamTools/ToolSolderPaste.py:241 +#: flatcamGUI/PreferencesUI.py:5473 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." @@ -11464,11 +11464,11 @@ msgstr "" "Posição X,Y para trocar ferramenta (bico).\n" "O formato é (x, y) onde x e y são números reais." -#: flatcamGUI/PreferencesUI.py:5486 flatcamTools/ToolSolderPaste.py:254 +#: flatcamGUI/PreferencesUI.py:5487 flatcamTools/ToolSolderPaste.py:254 msgid "Feedrate (speed) while moving on the X-Y plane." msgstr "Avanço (velocidade) para movimento no plano XY." -#: flatcamGUI/PreferencesUI.py:5499 flatcamTools/ToolSolderPaste.py:266 +#: flatcamGUI/PreferencesUI.py:5500 flatcamTools/ToolSolderPaste.py:266 msgid "" "Feedrate (speed) while moving vertically\n" "(on Z plane)." @@ -11476,11 +11476,11 @@ msgstr "" "Avanço (velocidade) para movimento vertical\n" "(no plano Z)." -#: flatcamGUI/PreferencesUI.py:5511 flatcamTools/ToolSolderPaste.py:277 +#: flatcamGUI/PreferencesUI.py:5512 flatcamTools/ToolSolderPaste.py:277 msgid "Feedrate Z Dispense" msgstr "Avanço Z Distribuição" -#: flatcamGUI/PreferencesUI.py:5513 +#: flatcamGUI/PreferencesUI.py:5514 msgid "" "Feedrate (speed) while moving up vertically\n" "to Dispense position (on Z plane)." @@ -11488,11 +11488,11 @@ msgstr "" "Avanço (velocidade) para subir verticalmente\n" "para a posição Dispensar (no plano Z)." -#: flatcamGUI/PreferencesUI.py:5524 flatcamTools/ToolSolderPaste.py:289 +#: flatcamGUI/PreferencesUI.py:5525 flatcamTools/ToolSolderPaste.py:289 msgid "Spindle Speed FWD" msgstr "Velocidade Spindle FWD" -#: flatcamGUI/PreferencesUI.py:5526 flatcamTools/ToolSolderPaste.py:291 +#: flatcamGUI/PreferencesUI.py:5527 flatcamTools/ToolSolderPaste.py:291 msgid "" "The dispenser speed while pushing solder paste\n" "through the dispenser nozzle." @@ -11500,19 +11500,19 @@ msgstr "" "A velocidade do dispensador ao empurrar a pasta de solda\n" "através do bico do distribuidor." -#: flatcamGUI/PreferencesUI.py:5538 flatcamTools/ToolSolderPaste.py:302 +#: flatcamGUI/PreferencesUI.py:5539 flatcamTools/ToolSolderPaste.py:302 msgid "Dwell FWD" msgstr "Espera FWD" -#: flatcamGUI/PreferencesUI.py:5540 flatcamTools/ToolSolderPaste.py:304 +#: flatcamGUI/PreferencesUI.py:5541 flatcamTools/ToolSolderPaste.py:304 msgid "Pause after solder dispensing." msgstr "Pausa após a dispensação de solda." -#: flatcamGUI/PreferencesUI.py:5550 flatcamTools/ToolSolderPaste.py:313 +#: flatcamGUI/PreferencesUI.py:5551 flatcamTools/ToolSolderPaste.py:313 msgid "Spindle Speed REV" msgstr "Velocidade Spindle REV" -#: flatcamGUI/PreferencesUI.py:5552 flatcamTools/ToolSolderPaste.py:315 +#: flatcamGUI/PreferencesUI.py:5553 flatcamTools/ToolSolderPaste.py:315 msgid "" "The dispenser speed while retracting solder paste\n" "through the dispenser nozzle." @@ -11520,11 +11520,11 @@ msgstr "" "A velocidade do dispensador enquanto retrai a pasta de solda\n" "através do bico do dispensador." -#: flatcamGUI/PreferencesUI.py:5564 flatcamTools/ToolSolderPaste.py:326 +#: flatcamGUI/PreferencesUI.py:5565 flatcamTools/ToolSolderPaste.py:326 msgid "Dwell REV" msgstr "Espera REV" -#: flatcamGUI/PreferencesUI.py:5566 flatcamTools/ToolSolderPaste.py:328 +#: flatcamGUI/PreferencesUI.py:5567 flatcamTools/ToolSolderPaste.py:328 msgid "" "Pause after solder paste dispenser retracted,\n" "to allow pressure equilibrium." @@ -11532,15 +11532,15 @@ msgstr "" "Pausa após o dispensador de pasta de solda retrair, para permitir o " "equilíbrio de pressão." -#: flatcamGUI/PreferencesUI.py:5575 flatcamTools/ToolSolderPaste.py:336 +#: flatcamGUI/PreferencesUI.py:5576 flatcamTools/ToolSolderPaste.py:336 msgid "Files that control the GCode generation." msgstr "Arquivos que controlam a geração de G-Code." -#: flatcamGUI/PreferencesUI.py:5590 +#: flatcamGUI/PreferencesUI.py:5591 msgid "Substractor Tool Options" msgstr "Opções da ferramenta Substração" -#: flatcamGUI/PreferencesUI.py:5596 +#: flatcamGUI/PreferencesUI.py:5597 msgid "" "A tool to substract one Gerber or Geometry object\n" "from another of the same type." @@ -11548,21 +11548,21 @@ msgstr "" "Uma ferramenta para subtrair um objeto Gerber ou Geometry\n" "de outro do mesmo tipo." -#: flatcamGUI/PreferencesUI.py:5601 flatcamTools/ToolSub.py:149 +#: flatcamGUI/PreferencesUI.py:5602 flatcamTools/ToolSub.py:149 msgid "Close paths" msgstr "Fechar caminhos" -#: flatcamGUI/PreferencesUI.py:5602 +#: flatcamGUI/PreferencesUI.py:5603 msgid "" "Checking this will close the paths cut by the Geometry substractor object." msgstr "" "Marcar isso fechará os caminhos cortados pelo objeto substrair Geometria." -#: flatcamGUI/PreferencesUI.py:5613 +#: flatcamGUI/PreferencesUI.py:5614 msgid "Check Rules Tool Options" msgstr "Opções das Regras" -#: flatcamGUI/PreferencesUI.py:5618 +#: flatcamGUI/PreferencesUI.py:5619 msgid "" "A tool to check if Gerber files are within a set\n" "of Manufacturing Rules." @@ -11571,20 +11571,20 @@ msgstr "" "conjunto\n" "das regras de fabricação." -#: flatcamGUI/PreferencesUI.py:5628 flatcamTools/ToolRulesCheck.py:256 +#: flatcamGUI/PreferencesUI.py:5629 flatcamTools/ToolRulesCheck.py:256 #: flatcamTools/ToolRulesCheck.py:920 msgid "Trace Size" msgstr "Tamanho do Traçado" -#: flatcamGUI/PreferencesUI.py:5630 flatcamTools/ToolRulesCheck.py:258 +#: flatcamGUI/PreferencesUI.py:5631 flatcamTools/ToolRulesCheck.py:258 msgid "This checks if the minimum size for traces is met." msgstr "Verifica se o tamanho mínimo para traçados é atendido." -#: 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 +#: flatcamGUI/PreferencesUI.py:5641 flatcamGUI/PreferencesUI.py:5661 +#: flatcamGUI/PreferencesUI.py:5681 flatcamGUI/PreferencesUI.py:5701 +#: flatcamGUI/PreferencesUI.py:5721 flatcamGUI/PreferencesUI.py:5741 +#: flatcamGUI/PreferencesUI.py:5761 flatcamGUI/PreferencesUI.py:5781 +#: flatcamGUI/PreferencesUI.py:5803 flatcamGUI/PreferencesUI.py:5823 #: flatcamTools/ToolRulesCheck.py:268 flatcamTools/ToolRulesCheck.py:290 #: flatcamTools/ToolRulesCheck.py:313 flatcamTools/ToolRulesCheck.py:336 #: flatcamTools/ToolRulesCheck.py:359 flatcamTools/ToolRulesCheck.py:382 @@ -11593,16 +11593,16 @@ msgstr "Verifica se o tamanho mínimo para traçados é atendido." msgid "Min value" msgstr "Valor Min" -#: flatcamGUI/PreferencesUI.py:5642 flatcamTools/ToolRulesCheck.py:270 +#: flatcamGUI/PreferencesUI.py:5643 flatcamTools/ToolRulesCheck.py:270 msgid "Minimum acceptable trace size." msgstr "Mínimo tamanho de traçado aceito." -#: flatcamGUI/PreferencesUI.py:5647 flatcamTools/ToolRulesCheck.py:277 +#: flatcamGUI/PreferencesUI.py:5648 flatcamTools/ToolRulesCheck.py:277 #: flatcamTools/ToolRulesCheck.py:1148 flatcamTools/ToolRulesCheck.py:1178 msgid "Copper to Copper clearance" msgstr "Espaço Cobre Cobre" -#: flatcamGUI/PreferencesUI.py:5649 flatcamTools/ToolRulesCheck.py:279 +#: flatcamGUI/PreferencesUI.py:5650 flatcamTools/ToolRulesCheck.py:279 msgid "" "This checks if the minimum clearance between copper\n" "features is met." @@ -11610,23 +11610,23 @@ msgstr "" "Verifica se o espaço mínimo entre recursos de cobre\n" "é atendido." -#: 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 +#: flatcamGUI/PreferencesUI.py:5663 flatcamGUI/PreferencesUI.py:5683 +#: flatcamGUI/PreferencesUI.py:5703 flatcamGUI/PreferencesUI.py:5723 +#: flatcamGUI/PreferencesUI.py:5743 flatcamGUI/PreferencesUI.py:5763 +#: flatcamGUI/PreferencesUI.py:5825 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 "Espaço mínimo aceitável." -#: flatcamGUI/PreferencesUI.py:5667 flatcamTools/ToolRulesCheck.py:300 +#: flatcamGUI/PreferencesUI.py:5668 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 "Espaço Cobre Contorno" -#: flatcamGUI/PreferencesUI.py:5669 flatcamTools/ToolRulesCheck.py:302 +#: flatcamGUI/PreferencesUI.py:5670 flatcamTools/ToolRulesCheck.py:302 msgid "" "This checks if the minimum clearance between copper\n" "features and the outline is met." @@ -11634,11 +11634,11 @@ msgstr "" "Verifica se o espaço mínimo entre recursos de cobre\n" "e o contorno é atendido." -#: flatcamGUI/PreferencesUI.py:5687 flatcamTools/ToolRulesCheck.py:323 +#: flatcamGUI/PreferencesUI.py:5688 flatcamTools/ToolRulesCheck.py:323 msgid "Silk to Silk Clearance" msgstr "Espaço Silk Silk" -#: flatcamGUI/PreferencesUI.py:5689 flatcamTools/ToolRulesCheck.py:325 +#: flatcamGUI/PreferencesUI.py:5690 flatcamTools/ToolRulesCheck.py:325 msgid "" "This checks if the minimum clearance between silkscreen\n" "features and silkscreen features is met." @@ -11646,13 +11646,13 @@ msgstr "" "Verifica se o espaço mínimo entre recursos de silkscreen\n" "é atendido." -#: flatcamGUI/PreferencesUI.py:5707 flatcamTools/ToolRulesCheck.py:346 +#: flatcamGUI/PreferencesUI.py:5708 flatcamTools/ToolRulesCheck.py:346 #: flatcamTools/ToolRulesCheck.py:1317 flatcamTools/ToolRulesCheck.py:1323 #: flatcamTools/ToolRulesCheck.py:1341 msgid "Silk to Solder Mask Clearance" msgstr "Espaço Silk Máscara de Solda" -#: flatcamGUI/PreferencesUI.py:5709 flatcamTools/ToolRulesCheck.py:348 +#: flatcamGUI/PreferencesUI.py:5710 flatcamTools/ToolRulesCheck.py:348 msgid "" "This checks if the minimum clearance between silkscreen\n" "features and soldermask features is met." @@ -11660,13 +11660,13 @@ msgstr "" "Verifica se o espaço mínimo entre recursos de silkscreen\n" "e máscara de solda é atendido." -#: flatcamGUI/PreferencesUI.py:5727 flatcamTools/ToolRulesCheck.py:369 +#: flatcamGUI/PreferencesUI.py:5728 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 "Espaço Silk Contorno" -#: flatcamGUI/PreferencesUI.py:5729 flatcamTools/ToolRulesCheck.py:371 +#: flatcamGUI/PreferencesUI.py:5730 flatcamTools/ToolRulesCheck.py:371 msgid "" "This checks if the minimum clearance between silk\n" "features and the outline is met." @@ -11674,12 +11674,12 @@ msgstr "" "Verifica se o espaço mínimo entre recursos de silkscreen\n" "e o contorno é atendido." -#: flatcamGUI/PreferencesUI.py:5747 flatcamTools/ToolRulesCheck.py:392 +#: flatcamGUI/PreferencesUI.py:5748 flatcamTools/ToolRulesCheck.py:392 #: flatcamTools/ToolRulesCheck.py:1409 flatcamTools/ToolRulesCheck.py:1436 msgid "Minimum Solder Mask Sliver" msgstr "Máscara de Solda Mínima" -#: flatcamGUI/PreferencesUI.py:5749 flatcamTools/ToolRulesCheck.py:394 +#: flatcamGUI/PreferencesUI.py:5750 flatcamTools/ToolRulesCheck.py:394 msgid "" "This checks if the minimum clearance between soldermask\n" "features and soldermask features is met." @@ -11687,13 +11687,13 @@ msgstr "" "Verifica se o espaço mínimo entre recursos de máscara de solda\n" "é atendido." -#: flatcamGUI/PreferencesUI.py:5767 flatcamTools/ToolRulesCheck.py:415 +#: flatcamGUI/PreferencesUI.py:5768 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 "Anel Anular Mínimo" -#: flatcamGUI/PreferencesUI.py:5769 flatcamTools/ToolRulesCheck.py:417 +#: flatcamGUI/PreferencesUI.py:5770 flatcamTools/ToolRulesCheck.py:417 msgid "" "This checks if the minimum copper ring left by drilling\n" "a hole into a pad is met." @@ -11701,16 +11701,16 @@ msgstr "" "Verifica se o anel de cobre mínimo deixado pela perfuração\n" "de um buraco em um pad é atendido." -#: flatcamGUI/PreferencesUI.py:5782 flatcamTools/ToolRulesCheck.py:430 +#: flatcamGUI/PreferencesUI.py:5783 flatcamTools/ToolRulesCheck.py:430 msgid "Minimum acceptable ring value." msgstr "Valor mínimo do anel." -#: flatcamGUI/PreferencesUI.py:5789 flatcamTools/ToolRulesCheck.py:440 +#: flatcamGUI/PreferencesUI.py:5790 flatcamTools/ToolRulesCheck.py:440 #: flatcamTools/ToolRulesCheck.py:864 msgid "Hole to Hole Clearance" msgstr "Espaço Entre Furos" -#: flatcamGUI/PreferencesUI.py:5791 flatcamTools/ToolRulesCheck.py:442 +#: flatcamGUI/PreferencesUI.py:5792 flatcamTools/ToolRulesCheck.py:442 msgid "" "This checks if the minimum clearance between a drill hole\n" "and another drill hole is met." @@ -11718,16 +11718,16 @@ msgstr "" "Verifica se o espaço mínimo entre furos\n" "é atendido." -#: flatcamGUI/PreferencesUI.py:5804 flatcamTools/ToolRulesCheck.py:478 +#: flatcamGUI/PreferencesUI.py:5805 flatcamTools/ToolRulesCheck.py:478 msgid "Minimum acceptable drill size." msgstr "Espaço mínimo entre furos." -#: flatcamGUI/PreferencesUI.py:5809 flatcamTools/ToolRulesCheck.py:463 +#: flatcamGUI/PreferencesUI.py:5810 flatcamTools/ToolRulesCheck.py:463 #: flatcamTools/ToolRulesCheck.py:838 msgid "Hole Size" msgstr "Tamanho Furo" -#: flatcamGUI/PreferencesUI.py:5811 flatcamTools/ToolRulesCheck.py:465 +#: flatcamGUI/PreferencesUI.py:5812 flatcamTools/ToolRulesCheck.py:465 msgid "" "This checks if the drill holes\n" "sizes are above the threshold." @@ -11735,11 +11735,11 @@ msgstr "" "Verifica se os tamanhos dos furos\n" "estão acima do limite." -#: flatcamGUI/PreferencesUI.py:5836 +#: flatcamGUI/PreferencesUI.py:5837 msgid "Optimal Tool Options" msgstr "Opções de Ferramentas Ideais" -#: flatcamGUI/PreferencesUI.py:5842 +#: flatcamGUI/PreferencesUI.py:5843 msgid "" "A tool to find the minimum distance between\n" "every two Gerber geometric elements" @@ -11747,20 +11747,20 @@ msgstr "" "Uma ferramenta para encontrar a distância mínima entre\n" "cada dois elementos geométricos Gerber" -#: flatcamGUI/PreferencesUI.py:5857 flatcamTools/ToolOptimal.py:78 +#: flatcamGUI/PreferencesUI.py:5858 flatcamTools/ToolOptimal.py:78 msgid "Precision" msgstr "Precisão" -#: flatcamGUI/PreferencesUI.py:5859 +#: flatcamGUI/PreferencesUI.py:5860 msgid "Number of decimals for the distances and coordinates in this tool." msgstr "" "Número de casas decimais para as distâncias e coordenadas nesta ferramenta." -#: flatcamGUI/PreferencesUI.py:5873 +#: flatcamGUI/PreferencesUI.py:5874 msgid "QRCode Tool Options" msgstr "Opções Ferramenta QRCode" -#: flatcamGUI/PreferencesUI.py:5879 +#: flatcamGUI/PreferencesUI.py:5880 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." @@ -11768,11 +11768,11 @@ msgstr "" "Uma ferramenta para criar um QRCode que pode ser inserido\n" "em um arquivo Gerber selecionado ou pode ser exportado como um arquivo." -#: flatcamGUI/PreferencesUI.py:5891 flatcamTools/ToolQRCode.py:99 +#: flatcamGUI/PreferencesUI.py:5892 flatcamTools/ToolQRCode.py:99 msgid "Version" msgstr "Versão" -#: flatcamGUI/PreferencesUI.py:5893 flatcamTools/ToolQRCode.py:101 +#: flatcamGUI/PreferencesUI.py:5894 flatcamTools/ToolQRCode.py:101 msgid "" "QRCode version can have values from 1 (21x21 boxes)\n" "to 40 (177x177 boxes)." @@ -11780,11 +11780,11 @@ msgstr "" "A versão QRCode pode ter valores de 1 (caixas 21x21)\n" "a 40 (caixas 177x177)." -#: flatcamGUI/PreferencesUI.py:5904 flatcamTools/ToolQRCode.py:112 +#: flatcamGUI/PreferencesUI.py:5905 flatcamTools/ToolQRCode.py:112 msgid "Error correction" msgstr "Correção de erros" -#: flatcamGUI/PreferencesUI.py:5906 flatcamGUI/PreferencesUI.py:5917 +#: flatcamGUI/PreferencesUI.py:5907 flatcamGUI/PreferencesUI.py:5918 #: flatcamTools/ToolQRCode.py:114 flatcamTools/ToolQRCode.py:125 #, python-format msgid "" @@ -11800,11 +11800,11 @@ msgstr "" "Q = máximo de 25%% dos erros pode ser corrigido\n" "H = máximo de 30%% dos erros pode ser corrigido." -#: flatcamGUI/PreferencesUI.py:5927 flatcamTools/ToolQRCode.py:135 +#: flatcamGUI/PreferencesUI.py:5928 flatcamTools/ToolQRCode.py:135 msgid "Box Size" msgstr "Tamanho da Caixa" -#: flatcamGUI/PreferencesUI.py:5929 flatcamTools/ToolQRCode.py:137 +#: flatcamGUI/PreferencesUI.py:5930 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." @@ -11812,11 +11812,11 @@ msgstr "" "O tamanho da caixa controla o tamanho geral do QRCode\n" "ajustando o tamanho de cada caixa no código." -#: flatcamGUI/PreferencesUI.py:5940 flatcamTools/ToolQRCode.py:148 +#: flatcamGUI/PreferencesUI.py:5941 flatcamTools/ToolQRCode.py:148 msgid "Border Size" msgstr "Tamanho da Borda" -#: flatcamGUI/PreferencesUI.py:5942 flatcamTools/ToolQRCode.py:150 +#: flatcamGUI/PreferencesUI.py:5943 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." @@ -11824,23 +11824,23 @@ msgstr "" "Tamanho da borda do QRCode. Quantas caixas grossas tem a borda.\n" "O valor padrão é 4. A largura da folga ao redor do QRCode." -#: flatcamGUI/PreferencesUI.py:5953 flatcamTools/ToolQRCode.py:162 +#: flatcamGUI/PreferencesUI.py:5954 flatcamTools/ToolQRCode.py:162 msgid "QRCode Data" msgstr "Dado QRCode" -#: flatcamGUI/PreferencesUI.py:5955 flatcamTools/ToolQRCode.py:164 +#: flatcamGUI/PreferencesUI.py:5956 flatcamTools/ToolQRCode.py:164 msgid "QRCode Data. Alphanumeric text to be encoded in the QRCode." msgstr "Dado QRCode. Texto alfanumérico a ser codificado no QRCode." -#: flatcamGUI/PreferencesUI.py:5959 flatcamTools/ToolQRCode.py:168 +#: flatcamGUI/PreferencesUI.py:5960 flatcamTools/ToolQRCode.py:168 msgid "Add here the text to be included in the QRCode..." msgstr "Adicione aqui o texto a ser incluído no QRCode..." -#: flatcamGUI/PreferencesUI.py:5965 flatcamTools/ToolQRCode.py:174 +#: flatcamGUI/PreferencesUI.py:5966 flatcamTools/ToolQRCode.py:174 msgid "Polarity" msgstr "Polaridade" -#: flatcamGUI/PreferencesUI.py:5967 flatcamTools/ToolQRCode.py:176 +#: flatcamGUI/PreferencesUI.py:5968 flatcamTools/ToolQRCode.py:176 msgid "" "Choose the polarity of the QRCode.\n" "It can be drawn in a negative way (squares are clear)\n" @@ -11850,17 +11850,17 @@ msgstr "" "Pode ser desenhado de forma negativa (os quadrados são claros)\n" "ou de maneira positiva (os quadrados são opacos)." -#: flatcamGUI/PreferencesUI.py:5971 flatcamTools/ToolFilm.py:296 +#: flatcamGUI/PreferencesUI.py:5972 flatcamTools/ToolFilm.py:296 #: flatcamTools/ToolQRCode.py:180 msgid "Negative" msgstr "Negativo" -#: flatcamGUI/PreferencesUI.py:5972 flatcamTools/ToolFilm.py:295 +#: flatcamGUI/PreferencesUI.py:5973 flatcamTools/ToolFilm.py:295 #: flatcamTools/ToolQRCode.py:181 msgid "Positive" msgstr "Positivo" -#: flatcamGUI/PreferencesUI.py:5974 flatcamTools/ToolQRCode.py:183 +#: flatcamGUI/PreferencesUI.py:5975 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" @@ -11872,7 +11872,7 @@ msgstr "" "ser adicionado como positivo. Se for adicionado a um arquivo Gerber\n" "de cobre, talvez o QRCode possa ser adicionado como negativo." -#: flatcamGUI/PreferencesUI.py:5985 flatcamGUI/PreferencesUI.py:5991 +#: flatcamGUI/PreferencesUI.py:5986 flatcamGUI/PreferencesUI.py:5992 #: flatcamTools/ToolQRCode.py:194 flatcamTools/ToolQRCode.py:200 msgid "" "The bounding box, meaning the empty space that surrounds\n" @@ -11881,31 +11881,31 @@ msgstr "" "A caixa delimitadora, significando o espaço vazio que circunda\n" "a geometria QRCode, pode ter uma forma arredondada ou quadrada." -#: flatcamGUI/PreferencesUI.py:5988 flatcamTools/ToolQRCode.py:197 +#: flatcamGUI/PreferencesUI.py:5989 flatcamTools/ToolQRCode.py:197 msgid "Rounded" msgstr "Arredondado" -#: flatcamGUI/PreferencesUI.py:5998 flatcamTools/ToolQRCode.py:228 +#: flatcamGUI/PreferencesUI.py:5999 flatcamTools/ToolQRCode.py:228 msgid "Fill Color" msgstr "Cor de Preenchimento" -#: flatcamGUI/PreferencesUI.py:6000 flatcamTools/ToolQRCode.py:230 +#: flatcamGUI/PreferencesUI.py:6001 flatcamTools/ToolQRCode.py:230 msgid "Set the QRCode fill color (squares color)." msgstr "Define a cor de preenchimento do QRCode (cor dos quadrados)." -#: flatcamGUI/PreferencesUI.py:6019 flatcamTools/ToolQRCode.py:252 +#: flatcamGUI/PreferencesUI.py:6020 flatcamTools/ToolQRCode.py:252 msgid "Back Color" msgstr "Cor de Fundo" -#: flatcamGUI/PreferencesUI.py:6021 flatcamTools/ToolQRCode.py:254 +#: flatcamGUI/PreferencesUI.py:6022 flatcamTools/ToolQRCode.py:254 msgid "Set the QRCode background color." msgstr "Define a cor de fundo do QRCode." -#: flatcamGUI/PreferencesUI.py:6061 +#: flatcamGUI/PreferencesUI.py:6062 msgid "Copper Thieving Tool Options" msgstr "Opções da ferramenta Adição de Cobre" -#: flatcamGUI/PreferencesUI.py:6073 +#: flatcamGUI/PreferencesUI.py:6074 msgid "" "A tool to generate a Copper Thieving that can be added\n" "to a selected Gerber file." @@ -11913,16 +11913,16 @@ msgstr "" "Uma ferramenta para gerar uma Adição de cobre que pode ser adicionada\n" "para um arquivo Gerber selecionado." -#: flatcamGUI/PreferencesUI.py:6081 +#: flatcamGUI/PreferencesUI.py:6082 msgid "Number of steps (lines) used to interpolate circles." msgstr "Número de etapas (linhas) usadas para interpolar círculos." -#: flatcamGUI/PreferencesUI.py:6091 flatcamGUI/PreferencesUI.py:6295 +#: flatcamGUI/PreferencesUI.py:6092 flatcamGUI/PreferencesUI.py:6296 #: flatcamTools/ToolCopperThieving.py:96 flatcamTools/ToolCopperThieving.py:429 msgid "Clearance" msgstr "Espaço" -#: flatcamGUI/PreferencesUI.py:6093 +#: flatcamGUI/PreferencesUI.py:6094 msgid "" "This set the distance between the copper Thieving components\n" "(the polygon fill may be split in multiple polygons)\n" @@ -11932,22 +11932,22 @@ msgstr "" "(o preenchimento de polígono pode ser dividido em vários polígonos)\n" "e os vestígios de cobre no arquivo Gerber." -#: flatcamGUI/PreferencesUI.py:6121 flatcamTools/ToolCopperThieving.py:126 +#: flatcamGUI/PreferencesUI.py:6122 flatcamTools/ToolCopperThieving.py:126 #: flatcamTools/ToolNonCopperClear.py:436 flatcamTools/ToolPaint.py:314 msgid "Area Selection" msgstr "Seleção de Área" -#: flatcamGUI/PreferencesUI.py:6122 flatcamTools/ToolCopperThieving.py:127 +#: flatcamGUI/PreferencesUI.py:6123 flatcamTools/ToolCopperThieving.py:127 #: flatcamTools/ToolNonCopperClear.py:437 flatcamTools/ToolPaint.py:316 msgid "Reference Object" msgstr "Objeto de Referência" -#: flatcamGUI/PreferencesUI.py:6124 flatcamTools/ToolCopperThieving.py:129 +#: flatcamGUI/PreferencesUI.py:6125 flatcamTools/ToolCopperThieving.py:129 #: flatcamTools/ToolNonCopperClear.py:439 msgid "Reference:" msgstr "Referência:" -#: flatcamGUI/PreferencesUI.py:6126 +#: flatcamGUI/PreferencesUI.py:6127 msgid "" "- 'Itself' - the copper Thieving extent is based on the object extent.\n" "- 'Area Selection' - left mouse click to start selection of the area to be " @@ -11961,20 +11961,20 @@ msgstr "" "- 'Objeto de Referência' - adicionará o cobre dentro da área do objeto " "especificado." -#: flatcamGUI/PreferencesUI.py:6135 flatcamTools/ToolCopperThieving.py:170 +#: flatcamGUI/PreferencesUI.py:6136 flatcamTools/ToolCopperThieving.py:170 msgid "Rectangular" msgstr "Retangular" -#: flatcamGUI/PreferencesUI.py:6136 flatcamTools/ToolCopperThieving.py:171 +#: flatcamGUI/PreferencesUI.py:6137 flatcamTools/ToolCopperThieving.py:171 msgid "Minimal" msgstr "Mínima" -#: flatcamGUI/PreferencesUI.py:6138 flatcamTools/ToolCopperThieving.py:173 +#: flatcamGUI/PreferencesUI.py:6139 flatcamTools/ToolCopperThieving.py:173 #: flatcamTools/ToolFilm.py:113 msgid "Box Type:" msgstr "Tipo de Caixa:" -#: flatcamGUI/PreferencesUI.py:6140 flatcamTools/ToolCopperThieving.py:175 +#: flatcamGUI/PreferencesUI.py:6141 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." @@ -11982,23 +11982,23 @@ msgstr "" "- 'Retangular' - a caixa delimitadora será de forma retangular.\n" "- 'Mínima' - a caixa delimitadora terá a forma convexa do casco." -#: flatcamGUI/PreferencesUI.py:6154 flatcamTools/ToolCopperThieving.py:191 +#: flatcamGUI/PreferencesUI.py:6155 flatcamTools/ToolCopperThieving.py:191 msgid "Dots Grid" msgstr "Pontos" -#: flatcamGUI/PreferencesUI.py:6155 flatcamTools/ToolCopperThieving.py:192 +#: flatcamGUI/PreferencesUI.py:6156 flatcamTools/ToolCopperThieving.py:192 msgid "Squares Grid" msgstr "Quadrados" -#: flatcamGUI/PreferencesUI.py:6156 flatcamTools/ToolCopperThieving.py:193 +#: flatcamGUI/PreferencesUI.py:6157 flatcamTools/ToolCopperThieving.py:193 msgid "Lines Grid" msgstr "Linhas" -#: flatcamGUI/PreferencesUI.py:6158 flatcamTools/ToolCopperThieving.py:195 +#: flatcamGUI/PreferencesUI.py:6159 flatcamTools/ToolCopperThieving.py:195 msgid "Fill Type:" msgstr "Tipo de Preenchimento:" -#: flatcamGUI/PreferencesUI.py:6160 flatcamTools/ToolCopperThieving.py:197 +#: flatcamGUI/PreferencesUI.py:6161 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" @@ -12010,54 +12010,54 @@ msgstr "" "- 'Quadrados' - a área vazia será preenchida com um padrão de quadrados.\n" "- 'Linhas' - a área vazia será preenchida com um padrão de linhas." -#: flatcamGUI/PreferencesUI.py:6168 flatcamTools/ToolCopperThieving.py:216 +#: flatcamGUI/PreferencesUI.py:6169 flatcamTools/ToolCopperThieving.py:216 msgid "Dots Grid Parameters" msgstr "Parâmetros dos Pontos" -#: flatcamGUI/PreferencesUI.py:6174 flatcamTools/ToolCopperThieving.py:222 +#: flatcamGUI/PreferencesUI.py:6175 flatcamTools/ToolCopperThieving.py:222 msgid "Dot diameter in Dots Grid." msgstr "Diâmetro dos Pontos." -#: flatcamGUI/PreferencesUI.py:6185 flatcamGUI/PreferencesUI.py:6214 -#: flatcamGUI/PreferencesUI.py:6243 flatcamTools/ToolCopperThieving.py:233 +#: flatcamGUI/PreferencesUI.py:6186 flatcamGUI/PreferencesUI.py:6215 +#: flatcamGUI/PreferencesUI.py:6244 flatcamTools/ToolCopperThieving.py:233 #: flatcamTools/ToolCopperThieving.py:273 #: flatcamTools/ToolCopperThieving.py:313 msgid "Spacing" msgstr "Espaçamento" -#: flatcamGUI/PreferencesUI.py:6187 flatcamTools/ToolCopperThieving.py:235 +#: flatcamGUI/PreferencesUI.py:6188 flatcamTools/ToolCopperThieving.py:235 msgid "Distance between each two dots in Dots Grid." msgstr "Distância entre dois pontos." -#: flatcamGUI/PreferencesUI.py:6197 flatcamTools/ToolCopperThieving.py:256 +#: flatcamGUI/PreferencesUI.py:6198 flatcamTools/ToolCopperThieving.py:256 msgid "Squares Grid Parameters" msgstr "Parâmetros dos Quadrados" -#: flatcamGUI/PreferencesUI.py:6203 flatcamTools/ToolCopperThieving.py:262 +#: flatcamGUI/PreferencesUI.py:6204 flatcamTools/ToolCopperThieving.py:262 msgid "Square side size in Squares Grid." msgstr "Lado do quadrado." -#: flatcamGUI/PreferencesUI.py:6216 flatcamTools/ToolCopperThieving.py:275 +#: flatcamGUI/PreferencesUI.py:6217 flatcamTools/ToolCopperThieving.py:275 msgid "Distance between each two squares in Squares Grid." msgstr "Distância entre dois quadrados." -#: flatcamGUI/PreferencesUI.py:6226 flatcamTools/ToolCopperThieving.py:296 +#: flatcamGUI/PreferencesUI.py:6227 flatcamTools/ToolCopperThieving.py:296 msgid "Lines Grid Parameters" msgstr "Parâmetros das Linhas" -#: flatcamGUI/PreferencesUI.py:6232 flatcamTools/ToolCopperThieving.py:302 +#: flatcamGUI/PreferencesUI.py:6233 flatcamTools/ToolCopperThieving.py:302 msgid "Line thickness size in Lines Grid." msgstr "Espessura das Linhas." -#: flatcamGUI/PreferencesUI.py:6245 flatcamTools/ToolCopperThieving.py:315 +#: flatcamGUI/PreferencesUI.py:6246 flatcamTools/ToolCopperThieving.py:315 msgid "Distance between each two lines in Lines Grid." msgstr "Distância entre duas linhas." -#: flatcamGUI/PreferencesUI.py:6255 flatcamTools/ToolCopperThieving.py:353 +#: flatcamGUI/PreferencesUI.py:6256 flatcamTools/ToolCopperThieving.py:353 msgid "Robber Bar Parameters" msgstr "Parâmetros da Barra" -#: flatcamGUI/PreferencesUI.py:6257 flatcamTools/ToolCopperThieving.py:355 +#: flatcamGUI/PreferencesUI.py:6258 flatcamTools/ToolCopperThieving.py:355 msgid "" "Parameters used for the robber bar.\n" "Robber bar = copper border to help in pattern hole plating." @@ -12065,27 +12065,27 @@ msgstr "" "Parâmetros usados para a barra de assalto.\n" "Barra = borda de cobre para ajudar no revestimento do furo do padrão." -#: flatcamGUI/PreferencesUI.py:6265 flatcamTools/ToolCopperThieving.py:363 +#: flatcamGUI/PreferencesUI.py:6266 flatcamTools/ToolCopperThieving.py:363 msgid "Bounding box margin for robber bar." msgstr "Margem da caixa delimitadora para Robber Bar." -#: flatcamGUI/PreferencesUI.py:6276 flatcamTools/ToolCopperThieving.py:374 +#: flatcamGUI/PreferencesUI.py:6277 flatcamTools/ToolCopperThieving.py:374 msgid "Thickness" msgstr "Espessura" -#: flatcamGUI/PreferencesUI.py:6278 flatcamTools/ToolCopperThieving.py:376 +#: flatcamGUI/PreferencesUI.py:6279 flatcamTools/ToolCopperThieving.py:376 msgid "The robber bar thickness." msgstr "Espessura da barra." -#: flatcamGUI/PreferencesUI.py:6288 flatcamTools/ToolCopperThieving.py:407 +#: flatcamGUI/PreferencesUI.py:6289 flatcamTools/ToolCopperThieving.py:407 msgid "Pattern Plating Mask" msgstr "Máscara do Revestimento Padrão" -#: flatcamGUI/PreferencesUI.py:6290 flatcamTools/ToolCopperThieving.py:409 +#: flatcamGUI/PreferencesUI.py:6291 flatcamTools/ToolCopperThieving.py:409 msgid "Generate a mask for pattern plating." msgstr "Gera uma máscara para o revestimento padrão." -#: flatcamGUI/PreferencesUI.py:6297 flatcamTools/ToolCopperThieving.py:431 +#: flatcamGUI/PreferencesUI.py:6298 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." @@ -12093,16 +12093,16 @@ msgstr "" "Distância entre os possíveis elementos de adição de cobre\n" "e/ou barra e as aberturas reais na máscara." -#: flatcamGUI/PreferencesUI.py:6316 +#: flatcamGUI/PreferencesUI.py:6317 msgid "Fiducials Tool Options" msgstr "Opções da Ferramenta de Fiduciais" -#: flatcamGUI/PreferencesUI.py:6327 flatcamGUI/PreferencesUI.py:6443 +#: flatcamGUI/PreferencesUI.py:6328 flatcamGUI/PreferencesUI.py:6444 #: flatcamTools/ToolCopperThieving.py:91 flatcamTools/ToolFiducials.py:151 msgid "Parameters used for this tool." msgstr "Parâmetros usados para esta ferramenta." -#: flatcamGUI/PreferencesUI.py:6334 flatcamTools/ToolFiducials.py:158 +#: flatcamGUI/PreferencesUI.py:6335 flatcamTools/ToolFiducials.py:158 msgid "" "This set the fiducial diameter if fiducial type is circular,\n" "otherwise is the size of the fiducial.\n" @@ -12112,19 +12112,19 @@ msgstr "" "caso contrário, é o tamanho do fiducial.\n" "A abertura da máscara de solda é o dobro disso." -#: flatcamGUI/PreferencesUI.py:6362 flatcamTools/ToolFiducials.py:186 +#: flatcamGUI/PreferencesUI.py:6363 flatcamTools/ToolFiducials.py:186 msgid "Auto" msgstr "Auto" -#: flatcamGUI/PreferencesUI.py:6363 flatcamTools/ToolFiducials.py:187 +#: flatcamGUI/PreferencesUI.py:6364 flatcamTools/ToolFiducials.py:187 msgid "Manual" msgstr "Manual" -#: flatcamGUI/PreferencesUI.py:6365 flatcamTools/ToolFiducials.py:189 +#: flatcamGUI/PreferencesUI.py:6366 flatcamTools/ToolFiducials.py:189 msgid "Mode:" msgstr "Modo:" -#: flatcamGUI/PreferencesUI.py:6367 +#: flatcamGUI/PreferencesUI.py:6368 msgid "" "- 'Auto' - automatic placement of fiducials in the corners of the bounding " "box.\n" @@ -12134,19 +12134,19 @@ msgstr "" "delimitadora.\n" "- 'Manual' - colocação manual de fiduciais." -#: flatcamGUI/PreferencesUI.py:6375 flatcamTools/ToolFiducials.py:199 +#: flatcamGUI/PreferencesUI.py:6376 flatcamTools/ToolFiducials.py:199 msgid "Up" msgstr "Acima" -#: flatcamGUI/PreferencesUI.py:6376 flatcamTools/ToolFiducials.py:200 +#: flatcamGUI/PreferencesUI.py:6377 flatcamTools/ToolFiducials.py:200 msgid "Down" msgstr "Abaixo" -#: flatcamGUI/PreferencesUI.py:6379 flatcamTools/ToolFiducials.py:203 +#: flatcamGUI/PreferencesUI.py:6380 flatcamTools/ToolFiducials.py:203 msgid "Second fiducial" msgstr "Segundo fiducial" -#: flatcamGUI/PreferencesUI.py:6381 flatcamTools/ToolFiducials.py:205 +#: flatcamGUI/PreferencesUI.py:6382 flatcamTools/ToolFiducials.py:205 msgid "" "The position for the second fiducial.\n" "- 'Up' - the order is: bottom-left, top-left, top-right.\n" @@ -12161,19 +12161,19 @@ msgstr "" "- 'Nenhum' - não há um segundo fiducial. A ordem é: canto inferior esquerdo, " "superior direito." -#: flatcamGUI/PreferencesUI.py:6397 flatcamTools/ToolFiducials.py:221 +#: flatcamGUI/PreferencesUI.py:6398 flatcamTools/ToolFiducials.py:221 msgid "Cross" msgstr "Cruz" -#: flatcamGUI/PreferencesUI.py:6398 flatcamTools/ToolFiducials.py:222 +#: flatcamGUI/PreferencesUI.py:6399 flatcamTools/ToolFiducials.py:222 msgid "Chess" msgstr "Xadrez" -#: flatcamGUI/PreferencesUI.py:6401 flatcamTools/ToolFiducials.py:224 +#: flatcamGUI/PreferencesUI.py:6402 flatcamTools/ToolFiducials.py:224 msgid "Fiducial Type" msgstr "Tipo de Fiducial" -#: flatcamGUI/PreferencesUI.py:6403 flatcamTools/ToolFiducials.py:226 +#: flatcamGUI/PreferencesUI.py:6404 flatcamTools/ToolFiducials.py:226 msgid "" "The type of fiducial.\n" "- 'Circular' - this is the regular fiducial.\n" @@ -12185,19 +12185,19 @@ msgstr "" "- 'Cruz' - linhas cruzadas fiduciais.\n" "- 'Xadrez' - padrão de xadrez fiducial." -#: flatcamGUI/PreferencesUI.py:6412 flatcamTools/ToolFiducials.py:235 +#: flatcamGUI/PreferencesUI.py:6413 flatcamTools/ToolFiducials.py:235 msgid "Line thickness" msgstr "Espessura da linha" -#: flatcamGUI/PreferencesUI.py:6432 +#: flatcamGUI/PreferencesUI.py:6433 msgid "Calibration Tool Options" msgstr "Opções da Ferramenta de Calibração" -#: flatcamGUI/PreferencesUI.py:6448 flatcamTools/ToolCalibration.py:181 +#: flatcamGUI/PreferencesUI.py:6449 flatcamTools/ToolCalibration.py:181 msgid "Source Type" msgstr "Tipo de Fonte" -#: flatcamGUI/PreferencesUI.py:6449 flatcamTools/ToolCalibration.py:182 +#: flatcamGUI/PreferencesUI.py:6450 flatcamTools/ToolCalibration.py:182 msgid "" "The source of calibration points.\n" "It can be:\n" @@ -12210,27 +12210,27 @@ msgstr "" "pad para o Gerber\n" "- Livre -> clique livremente na tela para adquirir os pontos de calibração" -#: flatcamGUI/PreferencesUI.py:6454 flatcamTools/ToolCalibration.py:187 +#: flatcamGUI/PreferencesUI.py:6455 flatcamTools/ToolCalibration.py:187 msgid "Free" msgstr "Livre" -#: flatcamGUI/PreferencesUI.py:6468 flatcamTools/ToolCalibration.py:76 +#: flatcamGUI/PreferencesUI.py:6469 flatcamTools/ToolCalibration.py:76 msgid "Height (Z) for travelling between the points." msgstr "Altura (Z) para deslocamento entre os pontos." -#: flatcamGUI/PreferencesUI.py:6480 flatcamTools/ToolCalibration.py:88 +#: flatcamGUI/PreferencesUI.py:6481 flatcamTools/ToolCalibration.py:88 msgid "Verification Z" msgstr "Verificação Z" -#: flatcamGUI/PreferencesUI.py:6482 flatcamTools/ToolCalibration.py:90 +#: flatcamGUI/PreferencesUI.py:6483 flatcamTools/ToolCalibration.py:90 msgid "Height (Z) for checking the point." msgstr "Altura (Z) para verificar o ponto." -#: flatcamGUI/PreferencesUI.py:6494 flatcamTools/ToolCalibration.py:102 +#: flatcamGUI/PreferencesUI.py:6495 flatcamTools/ToolCalibration.py:102 msgid "Zero Z tool" msgstr "Ferramenta Zero Z" -#: flatcamGUI/PreferencesUI.py:6496 flatcamTools/ToolCalibration.py:104 +#: flatcamGUI/PreferencesUI.py:6497 flatcamTools/ToolCalibration.py:104 msgid "" "Include a sequence to zero the height (Z)\n" "of the verification tool." @@ -12238,11 +12238,11 @@ msgstr "" "Inclui uma sequência para zerar a altura (Z)\n" "da ferramenta de verificação." -#: flatcamGUI/PreferencesUI.py:6505 flatcamTools/ToolCalibration.py:113 +#: flatcamGUI/PreferencesUI.py:6506 flatcamTools/ToolCalibration.py:113 msgid "Height (Z) for mounting the verification probe." msgstr "Altura (Z) para montar a sonda de verificação." -#: flatcamGUI/PreferencesUI.py:6519 flatcamTools/ToolCalibration.py:127 +#: flatcamGUI/PreferencesUI.py:6520 flatcamTools/ToolCalibration.py:127 msgid "" "Toolchange X,Y position.\n" "If no value is entered then the current\n" @@ -12252,11 +12252,11 @@ msgstr "" "Se nenhum valor for inserido, o valor atual\n" "ponto (x, y) será usado," -#: flatcamGUI/PreferencesUI.py:6530 flatcamTools/ToolCalibration.py:153 +#: flatcamGUI/PreferencesUI.py:6531 flatcamTools/ToolCalibration.py:153 msgid "Second point" msgstr "Segundo Ponto" -#: flatcamGUI/PreferencesUI.py:6532 flatcamTools/ToolCalibration.py:155 +#: flatcamGUI/PreferencesUI.py:6533 flatcamTools/ToolCalibration.py:155 msgid "" "Second point in the Gcode verification can be:\n" "- top-left -> the user will align the PCB vertically\n" @@ -12266,87 +12266,87 @@ msgstr "" "- canto superior esquerdo -> o usuário alinhará o PCB verticalmente\n" "- canto inferior direito -> o usuário alinhará o PCB horizontalmente" -#: flatcamGUI/PreferencesUI.py:6536 flatcamTools/ToolCalibration.py:159 +#: flatcamGUI/PreferencesUI.py:6537 flatcamTools/ToolCalibration.py:159 msgid "Top-Left" msgstr "Esquerda Superior" -#: flatcamGUI/PreferencesUI.py:6537 flatcamTools/ToolCalibration.py:160 +#: flatcamGUI/PreferencesUI.py:6538 flatcamTools/ToolCalibration.py:160 msgid "Bottom-Right" msgstr "Direita Inferior" -#: flatcamGUI/PreferencesUI.py:6551 +#: flatcamGUI/PreferencesUI.py:6552 msgid "Excellon File associations" msgstr "Associação de Arquivos Excellon" -#: flatcamGUI/PreferencesUI.py:6564 flatcamGUI/PreferencesUI.py:6637 -#: flatcamGUI/PreferencesUI.py:6707 flatcamGUI/PreferencesUI.py:6777 +#: flatcamGUI/PreferencesUI.py:6565 flatcamGUI/PreferencesUI.py:6638 +#: flatcamGUI/PreferencesUI.py:6708 flatcamGUI/PreferencesUI.py:6778 msgid "Restore" msgstr "Restaurar" -#: flatcamGUI/PreferencesUI.py:6565 flatcamGUI/PreferencesUI.py:6638 -#: flatcamGUI/PreferencesUI.py:6708 +#: flatcamGUI/PreferencesUI.py:6566 flatcamGUI/PreferencesUI.py:6639 +#: flatcamGUI/PreferencesUI.py:6709 msgid "Restore the extension list to the default state." msgstr "Restaure a lista de extensões para o estado padrão." -#: flatcamGUI/PreferencesUI.py:6566 flatcamGUI/PreferencesUI.py:6639 -#: flatcamGUI/PreferencesUI.py:6709 flatcamGUI/PreferencesUI.py:6779 +#: flatcamGUI/PreferencesUI.py:6567 flatcamGUI/PreferencesUI.py:6640 +#: flatcamGUI/PreferencesUI.py:6710 flatcamGUI/PreferencesUI.py:6780 msgid "Delete All" msgstr "Excluir Tudo" -#: flatcamGUI/PreferencesUI.py:6567 flatcamGUI/PreferencesUI.py:6640 -#: flatcamGUI/PreferencesUI.py:6710 +#: flatcamGUI/PreferencesUI.py:6568 flatcamGUI/PreferencesUI.py:6641 +#: flatcamGUI/PreferencesUI.py:6711 msgid "Delete all extensions from the list." msgstr "Excluir todas as extensões da lista." -#: flatcamGUI/PreferencesUI.py:6575 flatcamGUI/PreferencesUI.py:6648 -#: flatcamGUI/PreferencesUI.py:6718 +#: flatcamGUI/PreferencesUI.py:6576 flatcamGUI/PreferencesUI.py:6649 +#: flatcamGUI/PreferencesUI.py:6719 msgid "Extensions list" msgstr "Lista de extensões" -#: flatcamGUI/PreferencesUI.py:6577 flatcamGUI/PreferencesUI.py:6650 -#: flatcamGUI/PreferencesUI.py:6720 +#: flatcamGUI/PreferencesUI.py:6578 flatcamGUI/PreferencesUI.py:6651 +#: flatcamGUI/PreferencesUI.py:6721 msgid "" "List of file extensions to be\n" "associated with FlatCAM." msgstr "Lista de extensões de arquivos que serão associadas ao FlatCAM." -#: flatcamGUI/PreferencesUI.py:6597 flatcamGUI/PreferencesUI.py:6670 -#: flatcamGUI/PreferencesUI.py:6739 flatcamGUI/PreferencesUI.py:6811 +#: flatcamGUI/PreferencesUI.py:6598 flatcamGUI/PreferencesUI.py:6671 +#: flatcamGUI/PreferencesUI.py:6740 flatcamGUI/PreferencesUI.py:6812 msgid "Extension" msgstr "Extensão" -#: flatcamGUI/PreferencesUI.py:6598 flatcamGUI/PreferencesUI.py:6671 -#: flatcamGUI/PreferencesUI.py:6740 +#: flatcamGUI/PreferencesUI.py:6599 flatcamGUI/PreferencesUI.py:6672 +#: flatcamGUI/PreferencesUI.py:6741 msgid "A file extension to be added or deleted to the list." msgstr "Uma extensão de arquivo a ser adicionada ou excluída da lista." -#: flatcamGUI/PreferencesUI.py:6606 flatcamGUI/PreferencesUI.py:6679 -#: flatcamGUI/PreferencesUI.py:6748 +#: flatcamGUI/PreferencesUI.py:6607 flatcamGUI/PreferencesUI.py:6680 +#: flatcamGUI/PreferencesUI.py:6749 msgid "Add Extension" msgstr "Adicionar Extensão" -#: flatcamGUI/PreferencesUI.py:6607 flatcamGUI/PreferencesUI.py:6680 -#: flatcamGUI/PreferencesUI.py:6749 +#: flatcamGUI/PreferencesUI.py:6608 flatcamGUI/PreferencesUI.py:6681 +#: flatcamGUI/PreferencesUI.py:6750 msgid "Add a file extension to the list" msgstr "Adiciona uma nova extensão à lista" -#: flatcamGUI/PreferencesUI.py:6608 flatcamGUI/PreferencesUI.py:6681 -#: flatcamGUI/PreferencesUI.py:6750 +#: flatcamGUI/PreferencesUI.py:6609 flatcamGUI/PreferencesUI.py:6682 +#: flatcamGUI/PreferencesUI.py:6751 msgid "Delete Extension" msgstr "Excluir Extensão" -#: flatcamGUI/PreferencesUI.py:6609 flatcamGUI/PreferencesUI.py:6682 -#: flatcamGUI/PreferencesUI.py:6751 +#: flatcamGUI/PreferencesUI.py:6610 flatcamGUI/PreferencesUI.py:6683 +#: flatcamGUI/PreferencesUI.py:6752 msgid "Delete a file extension from the list" msgstr "Exclui uma extensão da lista" -#: flatcamGUI/PreferencesUI.py:6616 flatcamGUI/PreferencesUI.py:6689 -#: flatcamGUI/PreferencesUI.py:6758 +#: flatcamGUI/PreferencesUI.py:6617 flatcamGUI/PreferencesUI.py:6690 +#: flatcamGUI/PreferencesUI.py:6759 msgid "Apply Association" msgstr "Aplicar Associação" -#: flatcamGUI/PreferencesUI.py:6617 flatcamGUI/PreferencesUI.py:6690 -#: flatcamGUI/PreferencesUI.py:6759 +#: flatcamGUI/PreferencesUI.py:6618 flatcamGUI/PreferencesUI.py:6691 +#: flatcamGUI/PreferencesUI.py:6760 msgid "" "Apply the file associations between\n" "FlatCAM and the files with above extensions.\n" @@ -12358,33 +12358,33 @@ msgstr "" "Elas serão ativas após o próximo logon.\n" "Isso funciona apenas no Windows." -#: flatcamGUI/PreferencesUI.py:6634 +#: flatcamGUI/PreferencesUI.py:6635 msgid "GCode File associations" msgstr "Associação de arquivos G-Code" -#: flatcamGUI/PreferencesUI.py:6704 +#: flatcamGUI/PreferencesUI.py:6705 msgid "Gerber File associations" msgstr "Associação de arquivos Gerber" -#: flatcamGUI/PreferencesUI.py:6774 +#: flatcamGUI/PreferencesUI.py:6775 msgid "Autocompleter Keywords" msgstr "Palavras-chave do preenchimento automático" -#: flatcamGUI/PreferencesUI.py:6778 +#: flatcamGUI/PreferencesUI.py:6779 msgid "Restore the autocompleter keywords list to the default state." msgstr "" "Restaurar a lista de palavras-chave do preenchimento automático para o " "estado padrão." -#: flatcamGUI/PreferencesUI.py:6780 +#: flatcamGUI/PreferencesUI.py:6781 msgid "Delete all autocompleter keywords from the list." msgstr "Excluir todas as palavras-chave do preenchimento automático da lista." -#: flatcamGUI/PreferencesUI.py:6788 +#: flatcamGUI/PreferencesUI.py:6789 msgid "Keywords list" msgstr "Lista de palavras-chave" -#: flatcamGUI/PreferencesUI.py:6790 +#: flatcamGUI/PreferencesUI.py:6791 msgid "" "List of keywords used by\n" "the autocompleter in FlatCAM.\n" @@ -12396,23 +12396,23 @@ msgstr "" "O preenchimento automático está instalado\n" "no Editor de Código e na Linha de Comandos Tcl." -#: flatcamGUI/PreferencesUI.py:6812 +#: flatcamGUI/PreferencesUI.py:6813 msgid "A keyword to be added or deleted to the list." msgstr "Uma palavra-chave a ser adicionada ou excluída da lista." -#: flatcamGUI/PreferencesUI.py:6820 +#: flatcamGUI/PreferencesUI.py:6821 msgid "Add keyword" msgstr "Adicionar palavra-chave" -#: flatcamGUI/PreferencesUI.py:6821 +#: flatcamGUI/PreferencesUI.py:6822 msgid "Add a keyword to the list" msgstr "Adiciona uma palavra-chave à lista" -#: flatcamGUI/PreferencesUI.py:6822 +#: flatcamGUI/PreferencesUI.py:6823 msgid "Delete keyword" msgstr "Excluir palavra-chave" -#: flatcamGUI/PreferencesUI.py:6823 +#: flatcamGUI/PreferencesUI.py:6824 msgid "Delete a keyword from the list" msgstr "Exclui uma palavra-chave da lista" @@ -13158,9 +13158,9 @@ msgstr "Área de Adição de Cobre." #: flatcamTools/ToolCopperThieving.py:754 #: flatcamTools/ToolCopperThieving.py:787 flatcamTools/ToolCutOut.py:466 -#: flatcamTools/ToolCutOut.py:640 flatcamTools/ToolNonCopperClear.py:1156 -#: flatcamTools/ToolNonCopperClear.py:1197 -#: flatcamTools/ToolNonCopperClear.py:1229 flatcamTools/ToolPaint.py:1079 +#: flatcamTools/ToolCutOut.py:640 flatcamTools/ToolNonCopperClear.py:1157 +#: flatcamTools/ToolNonCopperClear.py:1198 +#: flatcamTools/ToolNonCopperClear.py:1230 flatcamTools/ToolPaint.py:1080 #: flatcamTools/ToolPanelize.py:401 flatcamTools/ToolPanelize.py:416 #: flatcamTools/ToolSub.py:288 flatcamTools/ToolSub.py:301 #: flatcamTools/ToolSub.py:492 flatcamTools/ToolSub.py:507 @@ -13170,7 +13170,7 @@ msgid "Could not retrieve object" msgstr "Não foi possível recuperar o objeto" #: flatcamTools/ToolCopperThieving.py:764 -#: flatcamTools/ToolNonCopperClear.py:1210 +#: flatcamTools/ToolNonCopperClear.py:1211 msgid "Click the start point of the area." msgstr "Clique no ponto inicial da área." @@ -13179,7 +13179,7 @@ msgid "Click the end point of the filling area." msgstr "Clique no ponto final da área de preenchimento." #: flatcamTools/ToolCopperThieving.py:821 -#: flatcamTools/ToolNonCopperClear.py:1266 flatcamTools/ToolPaint.py:1206 +#: flatcamTools/ToolNonCopperClear.py:1267 flatcamTools/ToolPaint.py:1207 msgid "Zone added. Click to start adding next zone or right click to finish." msgstr "" "Zona adicionada. Clique para iniciar a adição da próxima zona ou clique com " @@ -13214,12 +13214,12 @@ msgid "Geometry not supported for bounding box" msgstr "Geometria não suportada para caixa delimitadora" #: flatcamTools/ToolCopperThieving.py:1061 -#: flatcamTools/ToolNonCopperClear.py:1517 flatcamTools/ToolPaint.py:2571 +#: flatcamTools/ToolNonCopperClear.py:1518 flatcamTools/ToolPaint.py:2572 msgid "No object available." msgstr "Nenhum objeto disponível." #: flatcamTools/ToolCopperThieving.py:1098 -#: flatcamTools/ToolNonCopperClear.py:1559 +#: flatcamTools/ToolNonCopperClear.py:1560 msgid "The reference object type is not supported." msgstr "O tipo do objeto de referência não é suportado." @@ -13427,8 +13427,8 @@ msgstr "" msgid "Any form CutOut operation finished." msgstr "Recorte concluído." -#: flatcamTools/ToolCutOut.py:644 flatcamTools/ToolNonCopperClear.py:1160 -#: flatcamTools/ToolPaint.py:999 flatcamTools/ToolPanelize.py:406 +#: flatcamTools/ToolCutOut.py:644 flatcamTools/ToolNonCopperClear.py:1161 +#: flatcamTools/ToolPaint.py:1000 flatcamTools/ToolPanelize.py:406 #: tclCommands/TclCommandBbox.py:70 tclCommands/TclCommandNregions.py:70 msgid "Object not found" msgstr "Objeto não encontrado" @@ -14429,111 +14429,111 @@ msgstr "" msgid "Generate Geometry" msgstr "Gerar Geometria" -#: flatcamTools/ToolNonCopperClear.py:587 flatcamTools/ToolPaint.py:498 +#: flatcamTools/ToolNonCopperClear.py:588 flatcamTools/ToolPaint.py:499 #: flatcamTools/ToolSolderPaste.py:553 msgid "New Tool" msgstr "Nova Ferramenta" -#: flatcamTools/ToolNonCopperClear.py:986 flatcamTools/ToolPaint.py:771 -#: flatcamTools/ToolSolderPaste.py:884 +#: flatcamTools/ToolNonCopperClear.py:987 flatcamTools/ToolPaint.py:772 +#: flatcamTools/ToolSolderPaste.py:887 msgid "Please enter a tool diameter to add, in Float format." msgstr "Insira um diâmetro de ferramenta para adicionar, no formato Flutuante." -#: flatcamTools/ToolNonCopperClear.py:1017 flatcamTools/ToolPaint.py:796 +#: flatcamTools/ToolNonCopperClear.py:1018 flatcamTools/ToolPaint.py:797 msgid "Adding tool cancelled. Tool already in Tool Table." msgstr "Adição cancelada. Ferramenta já está na Tabela de Ferramentas." -#: flatcamTools/ToolNonCopperClear.py:1022 flatcamTools/ToolPaint.py:802 +#: flatcamTools/ToolNonCopperClear.py:1023 flatcamTools/ToolPaint.py:803 msgid "New tool added to Tool Table." msgstr "Nova ferramenta adicionada à Tabela de Ferramentas." -#: flatcamTools/ToolNonCopperClear.py:1066 flatcamTools/ToolPaint.py:848 +#: flatcamTools/ToolNonCopperClear.py:1067 flatcamTools/ToolPaint.py:849 msgid "Tool from Tool Table was edited." msgstr "A ferramenta da Tabela de Ferramentas foi editada." -#: flatcamTools/ToolNonCopperClear.py:1077 flatcamTools/ToolPaint.py:860 -#: flatcamTools/ToolSolderPaste.py:975 +#: flatcamTools/ToolNonCopperClear.py:1078 flatcamTools/ToolPaint.py:861 +#: flatcamTools/ToolSolderPaste.py:978 msgid "Edit cancelled. New diameter value is already in the Tool Table." msgstr "" "Editar cancelado. O novo valor de diâmetro já está na tabela de ferramentas." -#: flatcamTools/ToolNonCopperClear.py:1124 flatcamTools/ToolPaint.py:958 +#: flatcamTools/ToolNonCopperClear.py:1125 flatcamTools/ToolPaint.py:959 msgid "Delete failed. Select a tool to delete." msgstr "Exclusão falhou. Selecione uma ferramenta para excluir." -#: flatcamTools/ToolNonCopperClear.py:1129 flatcamTools/ToolPaint.py:964 +#: flatcamTools/ToolNonCopperClear.py:1130 flatcamTools/ToolPaint.py:965 msgid "Tool(s) deleted from Tool Table." msgstr "Ferramenta(s) excluída(s) da Tabela de Ferramentas." -#: flatcamTools/ToolNonCopperClear.py:1176 +#: flatcamTools/ToolNonCopperClear.py:1177 msgid "Wrong Tool Dia value format entered, use a number." msgstr "Valor errado para o diâmetro. Use um número." -#: flatcamTools/ToolNonCopperClear.py:1185 flatcamTools/ToolPaint.py:1028 +#: flatcamTools/ToolNonCopperClear.py:1186 flatcamTools/ToolPaint.py:1029 msgid "No selected tools in Tool Table." msgstr "Nenhuma ferramenta selecionada na Tabela." -#: flatcamTools/ToolNonCopperClear.py:1260 flatcamTools/ToolPaint.py:1200 +#: flatcamTools/ToolNonCopperClear.py:1261 flatcamTools/ToolPaint.py:1201 msgid "Click the end point of the paint area." msgstr "Clique no ponto final da área." -#: flatcamTools/ToolNonCopperClear.py:1414 -#: flatcamTools/ToolNonCopperClear.py:1416 +#: flatcamTools/ToolNonCopperClear.py:1415 +#: flatcamTools/ToolNonCopperClear.py:1417 msgid "Non-Copper clearing ..." msgstr "Retirando cobre da área..." -#: flatcamTools/ToolNonCopperClear.py:1426 +#: flatcamTools/ToolNonCopperClear.py:1427 msgid "NCC Tool started. Reading parameters." msgstr "Ferramenta NCC iniciada. Lendo parâmetros." -#: flatcamTools/ToolNonCopperClear.py:1489 +#: flatcamTools/ToolNonCopperClear.py:1490 msgid "NCC Tool. Preparing non-copper polygons." msgstr "Ferramenta NCC. Preparando polígonos." -#: flatcamTools/ToolNonCopperClear.py:1585 +#: flatcamTools/ToolNonCopperClear.py:1586 msgid "" "NCC Tool. Finished non-copper polygons. Normal copper clearing task started." msgstr "" "Ferramenta NCC. Polígonos concluídos. Tarefa de retirada de cobre iniciada." -#: flatcamTools/ToolNonCopperClear.py:1617 +#: flatcamTools/ToolNonCopperClear.py:1618 msgid "NCC Tool. Calculate 'empty' area." msgstr "Ferramenta NCC. Cálculo de áreas 'vazias'." -#: flatcamTools/ToolNonCopperClear.py:1630 -#: flatcamTools/ToolNonCopperClear.py:1729 -#: flatcamTools/ToolNonCopperClear.py:1741 -#: flatcamTools/ToolNonCopperClear.py:1990 -#: flatcamTools/ToolNonCopperClear.py:2086 -#: flatcamTools/ToolNonCopperClear.py:2098 +#: flatcamTools/ToolNonCopperClear.py:1631 +#: flatcamTools/ToolNonCopperClear.py:1730 +#: flatcamTools/ToolNonCopperClear.py:1742 +#: flatcamTools/ToolNonCopperClear.py:1991 +#: flatcamTools/ToolNonCopperClear.py:2087 +#: flatcamTools/ToolNonCopperClear.py:2099 msgid "Buffering finished" msgstr "Criar Buffer concluído" -#: flatcamTools/ToolNonCopperClear.py:1748 -#: flatcamTools/ToolNonCopperClear.py:2104 +#: flatcamTools/ToolNonCopperClear.py:1749 +#: flatcamTools/ToolNonCopperClear.py:2105 msgid "The selected object is not suitable for copper clearing." msgstr "O objeto selecionado não é adequado para retirada de cobre." -#: flatcamTools/ToolNonCopperClear.py:1753 -#: flatcamTools/ToolNonCopperClear.py:2109 +#: flatcamTools/ToolNonCopperClear.py:1754 +#: flatcamTools/ToolNonCopperClear.py:2110 msgid "Could not get the extent of the area to be non copper cleared." msgstr "Não foi possível obter a extensão da área para retirada de cobre." -#: flatcamTools/ToolNonCopperClear.py:1760 +#: flatcamTools/ToolNonCopperClear.py:1761 msgid "NCC Tool. Finished calculation of 'empty' area." msgstr "Ferramenta NCC. Cálculo de área 'vazia' concluído." -#: flatcamTools/ToolNonCopperClear.py:1773 -#: flatcamTools/ToolNonCopperClear.py:2134 +#: flatcamTools/ToolNonCopperClear.py:1774 +#: flatcamTools/ToolNonCopperClear.py:2135 msgid "NCC Tool clearing with tool diameter = " msgstr "NCC. Ferramenta com Diâmetro = " -#: flatcamTools/ToolNonCopperClear.py:1776 -#: flatcamTools/ToolNonCopperClear.py:2137 +#: flatcamTools/ToolNonCopperClear.py:1777 +#: flatcamTools/ToolNonCopperClear.py:2138 msgid "started." msgstr "iniciada." -#: flatcamTools/ToolNonCopperClear.py:1919 +#: flatcamTools/ToolNonCopperClear.py:1920 msgid "" "There is no NCC Geometry in the file.\n" "Usually it means that the tool diameter is too big for the painted " @@ -14545,24 +14545,24 @@ msgstr "" "geometria pintada.\n" "Altere os parâmetros de pintura e tente novamente." -#: flatcamTools/ToolNonCopperClear.py:1939 +#: flatcamTools/ToolNonCopperClear.py:1940 msgid "NCC Tool clear all done." msgstr "Retirada de cobre concluída." -#: flatcamTools/ToolNonCopperClear.py:1941 +#: flatcamTools/ToolNonCopperClear.py:1942 msgid "NCC Tool clear all done but the copper features isolation is broken for" msgstr "Retirada de cobre concluída, mas a isolação está quebrada por" -#: flatcamTools/ToolNonCopperClear.py:1944 -#: flatcamTools/ToolNonCopperClear.py:2310 +#: flatcamTools/ToolNonCopperClear.py:1945 +#: flatcamTools/ToolNonCopperClear.py:2311 msgid "tools" msgstr "ferramentas" -#: flatcamTools/ToolNonCopperClear.py:2306 +#: flatcamTools/ToolNonCopperClear.py:2307 msgid "NCC Tool Rest Machining clear all done." msgstr "Retirada de cobre por usinagem de descanso concluída." -#: flatcamTools/ToolNonCopperClear.py:2309 +#: flatcamTools/ToolNonCopperClear.py:2310 msgid "" "NCC Tool Rest Machining clear all done but the copper features isolation is " "broken for" @@ -14570,7 +14570,7 @@ msgstr "" "Retirada de cobre por usinagem de descanso concluída, mas a isolação está " "quebrada por" -#: flatcamTools/ToolNonCopperClear.py:2756 +#: flatcamTools/ToolNonCopperClear.py:2757 msgid "" "Try to use the Buffering Type = Full in Preferences -> Gerber General. " "Reload the Gerber file after this change." @@ -14874,72 +14874,72 @@ msgstr "" "- 'Todos os polígonos' - a Pintura será iniciada após o clique.\n" "- 'Objeto de Referência' - pintará dentro da área do objeto especificado." -#: flatcamTools/ToolPaint.py:978 +#: flatcamTools/ToolPaint.py:979 msgid "Paint Tool. Reading parameters." msgstr "Ferramenta de Pintura. Lendo parâmetros." -#: flatcamTools/ToolPaint.py:993 +#: flatcamTools/ToolPaint.py:994 #, python-format msgid "Could not retrieve object: %s" msgstr "Não foi possível recuperar o objeto: %s" -#: flatcamTools/ToolPaint.py:1007 +#: flatcamTools/ToolPaint.py:1008 msgid "Can't do Paint on MultiGeo geometries" msgstr "Não é possível pintar geometrias MultiGeo" -#: flatcamTools/ToolPaint.py:1040 +#: flatcamTools/ToolPaint.py:1041 msgid "Click on a polygon to paint it." msgstr "Clique em um polígono para pintá-lo." -#: flatcamTools/ToolPaint.py:1059 +#: flatcamTools/ToolPaint.py:1060 msgid "Click the start point of the paint area." msgstr "Clique no ponto inicial da área de pintura." -#: flatcamTools/ToolPaint.py:1127 +#: flatcamTools/ToolPaint.py:1128 msgid "Click to add next polygon or right click to start painting." msgstr "" "Clique para adicionar o próximo polígono ou clique com o botão direito do " "mouse para começar a pintar." -#: flatcamTools/ToolPaint.py:1140 +#: flatcamTools/ToolPaint.py:1141 msgid "Click to add/remove next polygon or right click to start painting." msgstr "" "Clique para adicionar/remover o próximo polígono ou clique com o botão " "direito do mouse para começar a pintar." -#: 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 +#: flatcamTools/ToolPaint.py:1349 flatcamTools/ToolPaint.py:1352 +#: flatcamTools/ToolPaint.py:1354 flatcamTools/ToolPaint.py:1886 +#: flatcamTools/ToolPaint.py:1890 flatcamTools/ToolPaint.py:1893 +#: flatcamTools/ToolPaint.py:2175 flatcamTools/ToolPaint.py:2180 +#: flatcamTools/ToolPaint.py:2183 flatcamTools/ToolPaint.py:2357 +#: flatcamTools/ToolPaint.py:2364 msgid "Paint Tool." msgstr "Ferramenta de Pintura." -#: flatcamTools/ToolPaint.py:1348 flatcamTools/ToolPaint.py:1351 -#: flatcamTools/ToolPaint.py:1353 +#: flatcamTools/ToolPaint.py:1349 flatcamTools/ToolPaint.py:1352 +#: flatcamTools/ToolPaint.py:1354 msgid "Normal painting polygon task started." msgstr "Tarefa normal de pintura de polígono iniciada." -#: flatcamTools/ToolPaint.py:1349 flatcamTools/ToolPaint.py:1711 -#: flatcamTools/ToolPaint.py:1886 flatcamTools/ToolPaint.py:2176 -#: flatcamTools/ToolPaint.py:2358 +#: flatcamTools/ToolPaint.py:1350 flatcamTools/ToolPaint.py:1712 +#: flatcamTools/ToolPaint.py:1887 flatcamTools/ToolPaint.py:2177 +#: flatcamTools/ToolPaint.py:2359 msgid "Buffering geometry..." msgstr "Fazendo buffer de polígono..." -#: flatcamTools/ToolPaint.py:1371 +#: flatcamTools/ToolPaint.py:1372 msgid "No polygon found." msgstr "Nenhum polígono encontrado." -#: flatcamTools/ToolPaint.py:1405 +#: flatcamTools/ToolPaint.py:1406 msgid "Painting polygon..." msgstr "Pintando o polígono..." -#: flatcamTools/ToolPaint.py:1453 +#: flatcamTools/ToolPaint.py:1454 msgid "Geometry could not be painted completely" msgstr "A geometria não pode ser pintada completamente" -#: flatcamTools/ToolPaint.py:1486 +#: flatcamTools/ToolPaint.py:1487 msgid "" "Could not do Paint. Try a different combination of parameters. Or a " "different strategy of paint" @@ -14947,9 +14947,9 @@ msgstr "" "Não foi possível pintar. Tente uma combinação diferente de parâmetros ou uma " "estratégia diferente de pintura" -#: flatcamTools/ToolPaint.py:1538 flatcamTools/ToolPaint.py:1865 -#: flatcamTools/ToolPaint.py:2015 flatcamTools/ToolPaint.py:2336 -#: flatcamTools/ToolPaint.py:2490 +#: flatcamTools/ToolPaint.py:1539 flatcamTools/ToolPaint.py:1866 +#: flatcamTools/ToolPaint.py:2016 flatcamTools/ToolPaint.py:2337 +#: flatcamTools/ToolPaint.py:2491 msgid "" "There is no Painting Geometry in the file.\n" "Usually it means that the tool diameter is too big for the painted " @@ -14961,36 +14961,36 @@ msgstr "" "geometria pintada.\n" "Altere os parâmetros de pintura e tente novamente." -#: flatcamTools/ToolPaint.py:1544 +#: flatcamTools/ToolPaint.py:1545 msgid "Paint Single Done." msgstr "Pintura concluída." -#: flatcamTools/ToolPaint.py:1576 flatcamTools/ToolPaint.py:2043 -#: flatcamTools/ToolPaint.py:2518 +#: flatcamTools/ToolPaint.py:1577 flatcamTools/ToolPaint.py:2044 +#: flatcamTools/ToolPaint.py:2519 msgid "Polygon Paint started ..." msgstr "Pintura de polígonos iniciada ..." -#: flatcamTools/ToolPaint.py:1628 flatcamTools/ToolPaint.py:2105 +#: flatcamTools/ToolPaint.py:1629 flatcamTools/ToolPaint.py:2106 msgid "Painting polygons..." msgstr "Pintando políginos..." -#: flatcamTools/ToolPaint.py:1710 flatcamTools/ToolPaint.py:1713 -#: flatcamTools/ToolPaint.py:1715 +#: flatcamTools/ToolPaint.py:1711 flatcamTools/ToolPaint.py:1714 +#: flatcamTools/ToolPaint.py:1716 msgid "Paint Tool. Normal painting all task started." msgstr "Ferramenta de Pintura. Iniciada a pintura total." -#: flatcamTools/ToolPaint.py:1749 flatcamTools/ToolPaint.py:1921 -#: flatcamTools/ToolPaint.py:2223 flatcamTools/ToolPaint.py:2399 +#: flatcamTools/ToolPaint.py:1750 flatcamTools/ToolPaint.py:1922 +#: flatcamTools/ToolPaint.py:2224 flatcamTools/ToolPaint.py:2400 msgid "Painting with tool diameter = " msgstr "Pintura com diâmetro = " -#: flatcamTools/ToolPaint.py:1752 flatcamTools/ToolPaint.py:1924 -#: flatcamTools/ToolPaint.py:2226 flatcamTools/ToolPaint.py:2402 +#: flatcamTools/ToolPaint.py:1753 flatcamTools/ToolPaint.py:1925 +#: flatcamTools/ToolPaint.py:2227 flatcamTools/ToolPaint.py:2403 msgid "started" msgstr "iniciada" -#: flatcamTools/ToolPaint.py:1814 flatcamTools/ToolPaint.py:1970 -#: flatcamTools/ToolPaint.py:2286 flatcamTools/ToolPaint.py:2446 +#: flatcamTools/ToolPaint.py:1815 flatcamTools/ToolPaint.py:1971 +#: flatcamTools/ToolPaint.py:2287 flatcamTools/ToolPaint.py:2447 msgid "" "Could not do Paint All. Try a different combination of parameters. Or a " "different Method of paint" @@ -14998,33 +14998,33 @@ msgstr "" "Não foi possível pintar todos. Tente uma combinação diferente de parâmetros, " "ou um método diferente de pintura" -#: flatcamTools/ToolPaint.py:1874 +#: flatcamTools/ToolPaint.py:1875 msgid "Paint All Done." msgstr "Pintura concluída." -#: flatcamTools/ToolPaint.py:1885 flatcamTools/ToolPaint.py:1889 -#: flatcamTools/ToolPaint.py:1892 +#: flatcamTools/ToolPaint.py:1886 flatcamTools/ToolPaint.py:1890 +#: flatcamTools/ToolPaint.py:1893 msgid "Rest machining painting all task started." msgstr "Iniciada a pintura total com usinagem de descanso." -#: flatcamTools/ToolPaint.py:2024 flatcamTools/ToolPaint.py:2499 +#: flatcamTools/ToolPaint.py:2025 flatcamTools/ToolPaint.py:2500 msgid "Paint All with Rest-Machining done." msgstr "Pintura total com usinagem de descanso concluída." -#: flatcamTools/ToolPaint.py:2175 flatcamTools/ToolPaint.py:2179 -#: flatcamTools/ToolPaint.py:2182 +#: flatcamTools/ToolPaint.py:2176 flatcamTools/ToolPaint.py:2180 +#: flatcamTools/ToolPaint.py:2183 msgid "Normal painting area task started." msgstr "Iniciada a pintura de área." -#: flatcamTools/ToolPaint.py:2345 +#: flatcamTools/ToolPaint.py:2346 msgid "Paint Area Done." msgstr "Pintura de Área concluída." -#: flatcamTools/ToolPaint.py:2357 flatcamTools/ToolPaint.py:2363 +#: flatcamTools/ToolPaint.py:2358 flatcamTools/ToolPaint.py:2364 msgid "Rest machining painting area task started." msgstr "Iniciada a pintura de área com usinagem de descanso." -#: flatcamTools/ToolPaint.py:2360 +#: flatcamTools/ToolPaint.py:2361 msgid "Paint Tool. Rest machining painting area task started." msgstr "" "Ferramenta de Pintura. Iniciada a pintura de área com usinagem de descanso." @@ -15967,93 +15967,93 @@ msgstr "" "uma geometria de distribuição de pasta de solda e, em seguida, visualizar/" "salvar o G-Code." -#: flatcamTools/ToolSolderPaste.py:914 +#: flatcamTools/ToolSolderPaste.py:917 msgid "Adding Nozzle tool cancelled. Tool already in Tool Table." msgstr "" "Adição de ferramenta Bocal cancelada. Ferramenta já está na Tabela de " "Ferramentas." -#: flatcamTools/ToolSolderPaste.py:920 +#: flatcamTools/ToolSolderPaste.py:923 msgid "New Nozzle tool added to Tool Table." msgstr "Nova Ferramenta Bocal adicionada à tabela de ferramentas." -#: flatcamTools/ToolSolderPaste.py:963 +#: flatcamTools/ToolSolderPaste.py:966 msgid "Nozzle tool from Tool Table was edited." msgstr "A ferramenta do bocal da tabela de ferramentas foi editada." -#: flatcamTools/ToolSolderPaste.py:1021 +#: flatcamTools/ToolSolderPaste.py:1024 msgid "Delete failed. Select a Nozzle tool to delete." msgstr "Exclusão falhou. Selecione uma ferramenta bico para excluir." -#: flatcamTools/ToolSolderPaste.py:1027 +#: flatcamTools/ToolSolderPaste.py:1030 msgid "Nozzle tool(s) deleted from Tool Table." msgstr "Ferramenta(s) de bico excluída(s) da tabela de ferramentas." -#: flatcamTools/ToolSolderPaste.py:1083 +#: flatcamTools/ToolSolderPaste.py:1086 msgid "No SolderPaste mask Gerber object loaded." msgstr "Nenhum objeto Gerber de máscara de Pasta de Solda carregado." -#: flatcamTools/ToolSolderPaste.py:1101 +#: flatcamTools/ToolSolderPaste.py:1104 msgid "Creating Solder Paste dispensing geometry." msgstr "Criação da geometria de distribuição da pasta de solda." -#: flatcamTools/ToolSolderPaste.py:1114 +#: flatcamTools/ToolSolderPaste.py:1117 msgid "No Nozzle tools in the tool table." msgstr "Nenhuma ferramenta de Bico na tabela de ferramentas." -#: flatcamTools/ToolSolderPaste.py:1241 +#: flatcamTools/ToolSolderPaste.py:1244 msgid "Cancelled. Empty file, it has no geometry..." msgstr "Cancelado. Arquivo vazio, não há geometria..." -#: flatcamTools/ToolSolderPaste.py:1245 +#: flatcamTools/ToolSolderPaste.py:1248 msgid "Solder Paste geometry generated successfully" msgstr "Geometria da pasta de solda gerada com sucesso" -#: flatcamTools/ToolSolderPaste.py:1252 +#: flatcamTools/ToolSolderPaste.py:1255 msgid "Some or all pads have no solder due of inadequate nozzle diameters..." msgstr "" "Alguns ou todos os pads não possuem pasta de solda devido a diâmetros " "inadequados dos bicos..." -#: flatcamTools/ToolSolderPaste.py:1266 +#: flatcamTools/ToolSolderPaste.py:1269 msgid "Generating Solder Paste dispensing geometry..." msgstr "Gerando geometria dispensadora de Pasta de Solda ..." -#: flatcamTools/ToolSolderPaste.py:1286 +#: flatcamTools/ToolSolderPaste.py:1289 msgid "There is no Geometry object available." msgstr "Não há objeto de Geometria disponível." -#: flatcamTools/ToolSolderPaste.py:1291 +#: flatcamTools/ToolSolderPaste.py:1294 msgid "This Geometry can't be processed. NOT a solder_paste_tool geometry." msgstr "" "Esta geometria não pode ser processada. NÃO é uma geometria " "solder_paste_tool." -#: flatcamTools/ToolSolderPaste.py:1398 +#: flatcamTools/ToolSolderPaste.py:1401 msgid "ToolSolderPaste CNCjob created" msgstr "Trabalho CNC para Ferramenta de Pasta de Solda criado" -#: flatcamTools/ToolSolderPaste.py:1419 +#: flatcamTools/ToolSolderPaste.py:1422 msgid "SP GCode Editor" msgstr "Editor SP G-Code" -#: flatcamTools/ToolSolderPaste.py:1431 flatcamTools/ToolSolderPaste.py:1436 -#: flatcamTools/ToolSolderPaste.py:1491 +#: flatcamTools/ToolSolderPaste.py:1434 flatcamTools/ToolSolderPaste.py:1439 +#: flatcamTools/ToolSolderPaste.py:1494 msgid "" "This CNCJob object can't be processed. NOT a solder_paste_tool CNCJob object." msgstr "" "Este objeto Trabalho CNC não pode ser processado. NÃO é um objeto " "solder_paste_tool." -#: flatcamTools/ToolSolderPaste.py:1461 +#: flatcamTools/ToolSolderPaste.py:1464 msgid "No Gcode in the object" msgstr "Nenhum G-Code no objeto" -#: flatcamTools/ToolSolderPaste.py:1501 +#: flatcamTools/ToolSolderPaste.py:1504 msgid "Export GCode ..." msgstr "Exportar G-Code ..." -#: flatcamTools/ToolSolderPaste.py:1549 +#: flatcamTools/ToolSolderPaste.py:1552 msgid "Solder paste dispenser GCode file saved to" msgstr "Arquivo G-Code com dispensador de pasta de solda salvo em" diff --git a/locale/ro/LC_MESSAGES/strings.mo b/locale/ro/LC_MESSAGES/strings.mo index f63531ca..e3ea898e 100644 Binary files a/locale/ro/LC_MESSAGES/strings.mo and b/locale/ro/LC_MESSAGES/strings.mo differ diff --git a/locale/ro/LC_MESSAGES/strings.po b/locale/ro/LC_MESSAGES/strings.po index 04fe866f..06323c20 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-13 21:18+0200\n" -"PO-Revision-Date: 2019-12-14 00:03+0200\n" +"POT-Creation-Date: 2019-12-15 16:27+0200\n" +"PO-Revision-Date: 2019-12-15 16:27+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:999 +#: FlatCAMApp.py:1004 msgid "FlatCAM is initializing ..." msgstr "FlatCAM se inițializează ..." -#: FlatCAMApp.py:1580 +#: FlatCAMApp.py:1585 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:1673 +#: FlatCAMApp.py:1678 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:1691 +#: FlatCAMApp.py:1696 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:2388 +#: FlatCAMApp.py:2395 msgid "" "Type >help< to get started\n" "\n" @@ -57,13 +57,13 @@ msgstr "" "Tastați >help< pentru a începe\n" "\n" -#: FlatCAMApp.py:2643 FlatCAMApp.py:9138 +#: FlatCAMApp.py:2650 FlatCAMApp.py:9170 msgid "New Project - Not saved" msgstr "Proiect nou - Nu a fost salvat" -#: FlatCAMApp.py:2718 FlatCAMApp.py:9206 FlatCAMApp.py:9243 FlatCAMApp.py:9284 -#: FlatCAMApp.py:9355 FlatCAMApp.py:10109 FlatCAMApp.py:11123 -#: FlatCAMApp.py:11182 +#: FlatCAMApp.py:2725 FlatCAMApp.py:9238 FlatCAMApp.py:9275 FlatCAMApp.py:9316 +#: FlatCAMApp.py:9387 FlatCAMApp.py:10141 FlatCAMApp.py:11155 +#: FlatCAMApp.py:11214 msgid "" "Canvas initialization started.\n" "Canvas initialization finished in" @@ -71,47 +71,47 @@ msgstr "" "FlatCAM se inițializează ...\n" "Initializarea spațiului de afisare s-a terminat in" -#: FlatCAMApp.py:2720 +#: FlatCAMApp.py:2727 msgid "Executing Tcl Script ..." msgstr "Rulează Tcl Script..." -#: FlatCAMApp.py:2735 +#: FlatCAMApp.py:2742 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:2779 ObjectCollection.py:90 flatcamTools/ToolImage.py:248 +#: FlatCAMApp.py:2786 ObjectCollection.py:90 flatcamTools/ToolImage.py:248 #: flatcamTools/ToolPcbWizard.py:301 flatcamTools/ToolPcbWizard.py:324 msgid "Open cancelled." msgstr "Deschidere anulată." -#: FlatCAMApp.py:2795 +#: FlatCAMApp.py:2802 msgid "Open Config file failed." msgstr "Deschiderea fişierului de configurare a eşuat." -#: FlatCAMApp.py:2810 +#: FlatCAMApp.py:2817 msgid "Open Script file failed." msgstr "Deschiderea fişierului Script eşuat." -#: FlatCAMApp.py:2836 +#: FlatCAMApp.py:2843 msgid "Open Excellon file failed." msgstr "Deschiderea fişierului Excellon a eşuat." -#: FlatCAMApp.py:2849 +#: FlatCAMApp.py:2856 msgid "Open GCode file failed." msgstr "Deschiderea fişierului GCode a eşuat." -#: FlatCAMApp.py:2862 +#: FlatCAMApp.py:2869 msgid "Open Gerber file failed." msgstr "Deschiderea fişierului Gerber a eşuat." -#: FlatCAMApp.py:3203 +#: FlatCAMApp.py:3223 msgid "Select a Geometry, Gerber or Excellon Object to edit." msgstr "Selectează un obiect tip Geometrie Gerber sau Excellon pentru editare." -#: FlatCAMApp.py:3218 +#: FlatCAMApp.py:3238 msgid "" "Simultaneous editing of tools geometry in a MultiGeo Geometry is not " "possible.\n" @@ -121,83 +121,83 @@ msgstr "" "MultiGeo nu este posibilă.\n" "Se poate edita numai o singură geometrie de fiecare dată." -#: FlatCAMApp.py:3273 +#: FlatCAMApp.py:3293 msgid "Editor is activated ..." msgstr "Editorul este activ ..." -#: FlatCAMApp.py:3294 +#: FlatCAMApp.py:3314 msgid "Do you want to save the edited object?" msgstr "Vrei sa salvezi obiectul editat?" -#: FlatCAMApp.py:3295 flatcamGUI/FlatCAMGUI.py:1969 +#: FlatCAMApp.py:3315 flatcamGUI/FlatCAMGUI.py:2134 msgid "Close Editor" msgstr "Inchide Editorul" -#: 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 +#: FlatCAMApp.py:3318 FlatCAMApp.py:5029 FlatCAMApp.py:7889 FlatCAMApp.py:7915 +#: FlatCAMApp.py:9077 FlatCAMTranslation.py:108 FlatCAMTranslation.py:193 +#: flatcamGUI/PreferencesUI.py:1035 msgid "Yes" msgstr "Da" -#: 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 +#: FlatCAMApp.py:3319 FlatCAMApp.py:5030 FlatCAMApp.py:7890 FlatCAMApp.py:7916 +#: FlatCAMApp.py:9078 FlatCAMTranslation.py:109 FlatCAMTranslation.py:194 +#: flatcamGUI/PreferencesUI.py:1036 flatcamGUI/PreferencesUI.py:4095 +#: flatcamGUI/PreferencesUI.py:4520 flatcamTools/ToolNonCopperClear.py:189 #: flatcamTools/ToolPaint.py:161 msgid "No" msgstr "Nu" -#: FlatCAMApp.py:3300 FlatCAMApp.py:5003 FlatCAMApp.py:5839 FlatCAMApp.py:7157 -#: FlatCAMApp.py:9047 FlatCAMCommon.py:702 flatcamGUI/FlatCAMGUI.py:1117 +#: FlatCAMApp.py:3320 FlatCAMApp.py:5031 FlatCAMApp.py:5867 FlatCAMApp.py:7185 +#: FlatCAMApp.py:9079 FlatCAMCommon.py:702 flatcamGUI/FlatCAMGUI.py:1233 msgid "Cancel" msgstr "Anuleaza" -#: FlatCAMApp.py:3328 +#: FlatCAMApp.py:3348 msgid "Object empty after edit." msgstr "Obiectul nu are date dupa editare." -#: FlatCAMApp.py:3377 FlatCAMApp.py:3397 FlatCAMApp.py:3412 +#: FlatCAMApp.py:3397 FlatCAMApp.py:3417 FlatCAMApp.py:3432 msgid "Select a Gerber, Geometry or Excellon Object to update." msgstr "" "Selectează un obiect tip Gerber, Geometrie sau Excellon pentru actualizare." -#: FlatCAMApp.py:3381 +#: FlatCAMApp.py:3401 msgid "is updated, returning to App..." msgstr "este actualizat, întoarcere la aplicaţie..." -#: FlatCAMApp.py:3776 FlatCAMApp.py:3850 FlatCAMApp.py:4863 +#: FlatCAMApp.py:3796 FlatCAMApp.py:3870 FlatCAMApp.py:4891 msgid "Could not load defaults file." msgstr "Nu am putut incărca fişierul cu valori default." -#: FlatCAMApp.py:3788 FlatCAMApp.py:3859 FlatCAMApp.py:4872 +#: FlatCAMApp.py:3808 FlatCAMApp.py:3879 FlatCAMApp.py:4900 msgid "Failed to parse defaults file." msgstr "Parsarea fişierului cu valori default a eșuat." -#: FlatCAMApp.py:3830 FlatCAMApp.py:3834 +#: FlatCAMApp.py:3850 FlatCAMApp.py:3854 msgid "Import FlatCAM Preferences" msgstr "Importă Preferințele FlatCAM" -#: FlatCAMApp.py:3841 +#: FlatCAMApp.py:3861 msgid "FlatCAM preferences import cancelled." msgstr "Importul preferințelor FlatCAM a eșuat." -#: FlatCAMApp.py:3864 +#: FlatCAMApp.py:3884 msgid "Imported Defaults from" msgstr "Valorile default au fost importate din" -#: FlatCAMApp.py:3884 FlatCAMApp.py:3889 +#: FlatCAMApp.py:3904 FlatCAMApp.py:3909 msgid "Export FlatCAM Preferences" msgstr "Exportă Preferințele FlatCAM" -#: FlatCAMApp.py:3897 +#: FlatCAMApp.py:3917 msgid "FlatCAM preferences export cancelled." msgstr "Exportul preferințelor FlatCAM este anulat." -#: FlatCAMApp.py:3906 FlatCAMApp.py:10338 FlatCAMApp.py:10386 -#: FlatCAMApp.py:10509 FlatCAMApp.py:10648 FlatCAMCommon.py:378 -#: FlatCAMCommon.py:1094 FlatCAMObj.py:6721 +#: FlatCAMApp.py:3926 FlatCAMApp.py:10370 FlatCAMApp.py:10418 +#: FlatCAMApp.py:10541 FlatCAMApp.py:10680 FlatCAMCommon.py:378 +#: FlatCAMCommon.py:1094 FlatCAMObj.py:6724 #: flatcamEditors/FlatCAMTextEditor.py:228 flatcamTools/ToolFilm.py:1019 -#: flatcamTools/ToolFilm.py:1195 flatcamTools/ToolSolderPaste.py:1541 +#: flatcamTools/ToolFilm.py:1195 flatcamTools/ToolSolderPaste.py:1544 msgid "" "Permission denied, saving not possible.\n" "Most likely another app is holding the file open and not accessible." @@ -205,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:3919 +#: FlatCAMApp.py:3939 msgid "Could not load preferences file." msgstr "Nu am putut incărca fişierul cu valori default." -#: FlatCAMApp.py:3939 FlatCAMApp.py:4919 +#: FlatCAMApp.py:3959 FlatCAMApp.py:4947 msgid "Failed to write defaults to file." msgstr "Salvarea valorilor default intr-un fişier a eșuat." -#: FlatCAMApp.py:3945 +#: FlatCAMApp.py:3965 msgid "Exported preferences to" msgstr "Exportă Preferințele in" -#: FlatCAMApp.py:3962 +#: FlatCAMApp.py:3982 msgid "FlatCAM Preferences Folder opened." msgstr "Folderul de preferințe FlatCAM a fost deschis." -#: FlatCAMApp.py:4045 +#: FlatCAMApp.py:4065 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:4056 +#: FlatCAMApp.py:4076 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:4142 flatcamParsers/ParseExcellon.py:886 -#: flatcamTools/ToolSolderPaste.py:1327 +#: FlatCAMApp.py:4162 flatcamParsers/ParseExcellon.py:886 +#: flatcamTools/ToolSolderPaste.py:1330 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:4143 +#: FlatCAMApp.py:4163 #, python-brace-format msgid "" "Object ({kind}) failed because: {error} \n" @@ -246,63 +246,63 @@ msgstr "" "Obiectul ({kind}) a eșuat din cauza: {error} \n" "\n" -#: FlatCAMApp.py:4163 +#: FlatCAMApp.py:4183 msgid "Converting units to " msgstr "Se convertesc unitătile la " -#: FlatCAMApp.py:4266 +#: FlatCAMApp.py:4286 msgid "CREATE A NEW FLATCAM TCL SCRIPT" msgstr "CREAȚI UN SCRIPT FLATCAM TCL NOU" -#: FlatCAMApp.py:4267 +#: FlatCAMApp.py:4287 msgid "TCL Tutorial is here" msgstr "Tutorialul TCL este aici" -#: FlatCAMApp.py:4269 +#: FlatCAMApp.py:4289 msgid "FlatCAM commands list" msgstr "Lista de comenzi FlatCAM" -#: FlatCAMApp.py:4320 FlatCAMApp.py:4326 FlatCAMApp.py:4332 FlatCAMApp.py:4338 -#: FlatCAMApp.py:4344 FlatCAMApp.py:4350 +#: FlatCAMApp.py:4340 FlatCAMApp.py:4346 FlatCAMApp.py:4352 FlatCAMApp.py:4358 +#: FlatCAMApp.py:4364 FlatCAMApp.py:4370 msgid "created/selected" msgstr "creat / selectat" -#: FlatCAMApp.py:4365 FlatCAMApp.py:7237 FlatCAMObj.py:263 FlatCAMObj.py:294 +#: FlatCAMApp.py:4385 FlatCAMApp.py:7265 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:4426 flatcamGUI/FlatCAMGUI.py:467 +#: FlatCAMApp.py:4448 flatcamGUI/FlatCAMGUI.py:493 msgid "About FlatCAM" msgstr "Despre FlatCAM" -#: FlatCAMApp.py:4452 +#: FlatCAMApp.py:4474 msgid "2D Computer-Aided Printed Circuit Board Manufacturing" msgstr "Productie Cablaje Imprimate asistate 2D de PC" -#: FlatCAMApp.py:4453 +#: FlatCAMApp.py:4475 msgid "Development" msgstr "Dezvoltare" -#: FlatCAMApp.py:4454 +#: FlatCAMApp.py:4476 msgid "DOWNLOAD" msgstr "DOWNLOAD" -#: FlatCAMApp.py:4455 +#: FlatCAMApp.py:4477 msgid "Issue tracker" msgstr "Raportare probleme" -#: FlatCAMApp.py:4459 FlatCAMApp.py:4794 +#: FlatCAMApp.py:4481 FlatCAMApp.py:4822 msgid "Close" msgstr "Închide" -#: FlatCAMApp.py:4474 +#: FlatCAMApp.py:4496 msgid "Licensed under the MIT license" msgstr "Licențiat sub licența MIT" -#: FlatCAMApp.py:4483 +#: FlatCAMApp.py:4505 msgid "" "Permission is hereby granted, free of charge, to any person obtaining a " "copy\n" @@ -355,7 +355,7 @@ msgstr "" "UTILIZAREA SA,\n" "SAU ORICE TRATĂRI ÎN ACEST SOFTWARE." -#: FlatCAMApp.py:4505 +#: FlatCAMApp.py:4527 msgid "" "Some of the icons used are from the following sources:
Icons by FreepikIcons8Pictograme create de oNline Web Fonts" -#: FlatCAMApp.py:4537 +#: FlatCAMApp.py:4559 msgid "Splash" msgstr "Splash" -#: FlatCAMApp.py:4543 +#: FlatCAMApp.py:4565 msgid "Programmers" msgstr "Programatori" -#: FlatCAMApp.py:4549 +#: FlatCAMApp.py:4571 msgid "Translators" msgstr "Traducatori" -#: FlatCAMApp.py:4555 +#: FlatCAMApp.py:4577 msgid "License" msgstr "Licență" -#: FlatCAMApp.py:4561 +#: FlatCAMApp.py:4583 msgid "Attributions" msgstr "Atribuiri" -#: FlatCAMApp.py:4584 +#: FlatCAMApp.py:4606 msgid "Programmer" msgstr "Programator" -#: FlatCAMApp.py:4585 +#: FlatCAMApp.py:4607 msgid "Status" msgstr "Statut" -#: FlatCAMApp.py:4586 FlatCAMApp.py:4657 +#: FlatCAMApp.py:4608 FlatCAMApp.py:4686 msgid "E-mail" msgstr "E-mail" -#: FlatCAMApp.py:4594 +#: FlatCAMApp.py:4616 msgid "BETA Maintainer >= 2019" msgstr "Programator Beta >= 2019" -#: FlatCAMApp.py:4654 +#: FlatCAMApp.py:4683 msgid "Language" msgstr "Limba" -#: FlatCAMApp.py:4655 +#: FlatCAMApp.py:4684 msgid "Translator" msgstr "Traducător" -#: FlatCAMApp.py:4656 +#: FlatCAMApp.py:4685 msgid "Corrections" msgstr "Corecţii" -#: FlatCAMApp.py:4765 FlatCAMApp.py:4773 FlatCAMApp.py:7906 -#: flatcamGUI/FlatCAMGUI.py:451 +#: FlatCAMApp.py:4794 FlatCAMApp.py:4802 FlatCAMApp.py:7934 +#: flatcamGUI/FlatCAMGUI.py:475 msgid "Bookmarks Manager" msgstr "Bookmarks Manager" -#: FlatCAMApp.py:4785 +#: FlatCAMApp.py:4813 msgid "" "This entry will resolve to another website if:\n" "\n" @@ -445,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:4792 +#: FlatCAMApp.py:4820 msgid "Alternative website" msgstr "Site alternativ" -#: FlatCAMApp.py:4923 FlatCAMApp.py:7870 +#: FlatCAMApp.py:4951 FlatCAMApp.py:7898 msgid "Preferences saved." msgstr "Preferințele au fost salvate." -#: FlatCAMApp.py:4951 +#: FlatCAMApp.py:4979 msgid "Could not load factory defaults file." msgstr "" "Fişierul cu valori default de fabrică nu a fost posibil să fie deschis." -#: FlatCAMApp.py:4961 +#: FlatCAMApp.py:4989 msgid "Failed to parse factory defaults file." msgstr "Parsarea fişierului cu valori default de fabrică a eșuat." -#: FlatCAMApp.py:4977 +#: FlatCAMApp.py:5005 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:4981 +#: FlatCAMApp.py:5009 msgid "Factory defaults saved." msgstr "Valori default de fabrică au fost salvate." -#: FlatCAMApp.py:4991 flatcamGUI/FlatCAMGUI.py:3691 +#: FlatCAMApp.py:5019 flatcamGUI/FlatCAMGUI.py:3926 msgid "Application is saving the project. Please wait ..." msgstr "Aplicația salvează proiectul. Vă rugăm aşteptați ..." -#: FlatCAMApp.py:4996 FlatCAMTranslation.py:166 +#: FlatCAMApp.py:5024 FlatCAMTranslation.py:188 msgid "" "There are files/objects modified in FlatCAM. \n" "Do you want to Save the project?" @@ -483,29 +483,29 @@ msgstr "" "FlatCAM are fişiere/obiecte care au fost modificate. \n" "Dorești să Salvezi proiectul?" -#: FlatCAMApp.py:4999 FlatCAMApp.py:9043 FlatCAMTranslation.py:169 +#: FlatCAMApp.py:5027 FlatCAMApp.py:9075 FlatCAMTranslation.py:191 msgid "Save changes" msgstr "Salvează modificarile" -#: FlatCAMApp.py:5240 +#: FlatCAMApp.py:5268 msgid "Selected Excellon file extensions registered with FlatCAM." msgstr "Extensiile de fișiere Excellon selectate înregistrate cu FlatCAM." -#: FlatCAMApp.py:5262 +#: FlatCAMApp.py:5290 msgid "Selected GCode file extensions registered with FlatCAM." msgstr "Extensii de fișiere GCode selectate înregistrate cu FlatCAM." -#: FlatCAMApp.py:5284 +#: FlatCAMApp.py:5312 msgid "Selected Gerber file extensions registered with FlatCAM." msgstr "Extensii de fișiere Gerber selectate înregistrate cu FlatCAM." -#: FlatCAMApp.py:5472 FlatCAMApp.py:5529 FlatCAMApp.py:5557 +#: FlatCAMApp.py:5500 FlatCAMApp.py:5557 FlatCAMApp.py:5585 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:5481 +#: FlatCAMApp.py:5509 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 " @@ -522,52 +522,52 @@ msgstr "" "informatii și rezultatul ar putea să nu fie cel dorit. \n" "Verifică codul G-Code generat." -#: FlatCAMApp.py:5493 +#: FlatCAMApp.py:5521 msgid "Multigeo. Geometry merging finished" msgstr "Multigeo. Fuziunea geometriei s-a terminat" -#: FlatCAMApp.py:5502 +#: FlatCAMApp.py:5530 msgid "Geometry merging finished" msgstr "Fuziunea geometriei s-a terminat" -#: FlatCAMApp.py:5524 +#: FlatCAMApp.py:5552 msgid "Failed. Excellon joining works only on Excellon objects." msgstr "" "Eșuat. Fuzionarea Excellon functionează doar cu obiecte de tip Excellon." -#: FlatCAMApp.py:5534 +#: FlatCAMApp.py:5562 msgid "Excellon merging finished" msgstr "Fuziunea Excellon a fost terminată" -#: FlatCAMApp.py:5552 +#: FlatCAMApp.py:5580 msgid "Failed. Gerber joining works only on Gerber objects." msgstr "Eșuat. Fuzionarea Gerber functionează doar cu obiecte de tip Gerber ." -#: FlatCAMApp.py:5562 +#: FlatCAMApp.py:5590 msgid "Gerber merging finished" msgstr "Fuziunea Gerber a fost terminată" -#: FlatCAMApp.py:5582 FlatCAMApp.py:5617 +#: FlatCAMApp.py:5610 FlatCAMApp.py:5645 msgid "Failed. Select a Geometry Object and try again." msgstr "Eșuat. Selectează un obiect Geometrie și încearcă din nou." -#: FlatCAMApp.py:5586 FlatCAMApp.py:5622 +#: FlatCAMApp.py:5614 FlatCAMApp.py:5650 msgid "Expected a FlatCAMGeometry, got" msgstr "Se astepta o Geometrie FlatCAM, s-a primit" -#: FlatCAMApp.py:5599 +#: FlatCAMApp.py:5627 msgid "A Geometry object was converted to MultiGeo type." msgstr "Un obiect Geometrie a fost convertit la tipul MultiGeo." -#: FlatCAMApp.py:5637 +#: FlatCAMApp.py:5665 msgid "A Geometry object was converted to SingleGeo type." msgstr "Un obiect Geometrie a fost convertit la tipul SingleGeo ." -#: FlatCAMApp.py:5833 +#: FlatCAMApp.py:5861 msgid "Toggle Units" msgstr "Comută Unitati" -#: FlatCAMApp.py:5835 +#: FlatCAMApp.py:5863 msgid "" "Changing the units of the project\n" "will scale all objects.\n" @@ -579,49 +579,49 @@ msgstr "" "\n" "Doriți să continuați?" -#: FlatCAMApp.py:5838 FlatCAMApp.py:7080 FlatCAMApp.py:7156 FlatCAMApp.py:9408 -#: FlatCAMApp.py:9422 FlatCAMApp.py:9776 FlatCAMApp.py:9787 +#: FlatCAMApp.py:5866 FlatCAMApp.py:7108 FlatCAMApp.py:7184 FlatCAMApp.py:9440 +#: FlatCAMApp.py:9454 FlatCAMApp.py:9808 FlatCAMApp.py:9819 msgid "Ok" msgstr "Ok" -#: FlatCAMApp.py:5887 +#: FlatCAMApp.py:5915 msgid "Converted units to" msgstr "Unitătile au fost convertite in" -#: FlatCAMApp.py:5901 +#: FlatCAMApp.py:5929 msgid "Units conversion cancelled." msgstr "Conversia unitătilor este anulată." -#: FlatCAMApp.py:6774 +#: FlatCAMApp.py:6802 msgid "Detachable Tabs" msgstr "Taburi detașabile" -#: FlatCAMApp.py:6993 FlatCAMApp.py:7040 FlatCAMApp.py:7696 FlatCAMApp.py:7759 -#: FlatCAMApp.py:7825 +#: FlatCAMApp.py:7021 FlatCAMApp.py:7068 FlatCAMApp.py:7724 FlatCAMApp.py:7787 +#: FlatCAMApp.py:7853 msgid "Preferences" msgstr "Preferințe" -#: FlatCAMApp.py:6996 +#: FlatCAMApp.py:7024 msgid "Preferences applied." msgstr "Preferințele au fost aplicate." -#: FlatCAMApp.py:7045 +#: FlatCAMApp.py:7073 msgid "Preferences closed without saving." msgstr "Tab-ul Preferințe a fost închis fără a salva." -#: FlatCAMApp.py:7068 flatcamTools/ToolNonCopperClear.py:596 -#: flatcamTools/ToolNonCopperClear.py:992 flatcamTools/ToolPaint.py:507 -#: flatcamTools/ToolSolderPaste.py:562 flatcamTools/ToolSolderPaste.py:889 +#: FlatCAMApp.py:7096 flatcamTools/ToolNonCopperClear.py:597 +#: flatcamTools/ToolNonCopperClear.py:993 flatcamTools/ToolPaint.py:508 +#: flatcamTools/ToolSolderPaste.py:562 flatcamTools/ToolSolderPaste.py:892 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:7073 flatcamTools/ToolNonCopperClear.py:600 -#: flatcamTools/ToolPaint.py:511 flatcamTools/ToolSolderPaste.py:566 +#: FlatCAMApp.py:7101 flatcamTools/ToolNonCopperClear.py:601 +#: flatcamTools/ToolPaint.py:512 flatcamTools/ToolSolderPaste.py:566 msgid "Adding Tool cancelled" msgstr "Adăugarea unei unelte anulată" -#: FlatCAMApp.py:7076 +#: FlatCAMApp.py:7104 msgid "" "Adding Tool works only when Advanced is checked.\n" "Go to Preferences -> General - Show Advanced Options." @@ -629,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:7151 +#: FlatCAMApp.py:7179 msgid "Delete objects" msgstr "Șterge obiectele" -#: FlatCAMApp.py:7154 +#: FlatCAMApp.py:7182 msgid "" "Are you sure you want to permanently delete\n" "the selected objects?" @@ -641,51 +641,51 @@ msgstr "" "Sigur doriți să ștergeți definitiv\n" "obiectele selectate?" -#: FlatCAMApp.py:7185 +#: FlatCAMApp.py:7213 msgid "Object(s) deleted" msgstr "Obiect(ele) șters(e)" -#: FlatCAMApp.py:7189 +#: FlatCAMApp.py:7217 msgid "Failed. No object(s) selected..." msgstr "Eșuat. Nici-un obiect nu este selectat." -#: FlatCAMApp.py:7191 +#: FlatCAMApp.py:7219 msgid "Save the work in Editor and try again ..." msgstr "Salvează continutul din Editor și încearcă din nou." -#: FlatCAMApp.py:7221 +#: FlatCAMApp.py:7249 msgid "Object deleted" msgstr "Obiectul este șters" -#: FlatCAMApp.py:7248 +#: FlatCAMApp.py:7276 msgid "Click to set the origin ..." msgstr "Click pentru a seta originea..." -#: FlatCAMApp.py:7270 +#: FlatCAMApp.py:7298 msgid "Setting Origin..." msgstr "Setează Originea..." -#: FlatCAMApp.py:7282 +#: FlatCAMApp.py:7310 msgid "Origin set" msgstr "Originea a fost setată" -#: FlatCAMApp.py:7289 +#: FlatCAMApp.py:7317 msgid "Origin coordinates specified but incomplete." msgstr "Coordonate pentru origine specificate, dar incomplete." -#: FlatCAMApp.py:7347 +#: FlatCAMApp.py:7375 msgid "Jump to ..." msgstr "Sari la ..." -#: FlatCAMApp.py:7348 +#: FlatCAMApp.py:7376 msgid "Enter the coordinates in format X,Y:" msgstr "Introduceți coordonatele in format X,Y:" -#: FlatCAMApp.py:7356 +#: FlatCAMApp.py:7384 msgid "Wrong coordinates. Enter coordinates in format: X,Y" msgstr "Coordonate gresite. Introduceți coordonatele in format X,Y" -#: FlatCAMApp.py:7424 flatcamEditors/FlatCAMExcEditor.py:3518 +#: FlatCAMApp.py:7452 flatcamEditors/FlatCAMExcEditor.py:3518 #: flatcamEditors/FlatCAMExcEditor.py:3526 #: flatcamEditors/FlatCAMGeoEditor.py:3885 #: flatcamEditors/FlatCAMGeoEditor.py:3900 @@ -694,49 +694,49 @@ msgstr "Coordonate gresite. Introduceți coordonatele in format X,Y" #: flatcamEditors/FlatCAMGrbEditor.py:1446 #: flatcamEditors/FlatCAMGrbEditor.py:1704 #: flatcamEditors/FlatCAMGrbEditor.py:4368 -#: flatcamEditors/FlatCAMGrbEditor.py:4383 flatcamGUI/FlatCAMGUI.py:2871 -#: flatcamGUI/FlatCAMGUI.py:2883 +#: flatcamEditors/FlatCAMGrbEditor.py:4383 flatcamGUI/FlatCAMGUI.py:3106 +#: flatcamGUI/FlatCAMGUI.py:3118 msgid "Done." msgstr "Executat." -#: FlatCAMApp.py:7576 FlatCAMApp.py:7647 +#: FlatCAMApp.py:7604 FlatCAMApp.py:7675 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:7667 +#: FlatCAMApp.py:7695 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:7673 +#: FlatCAMApp.py:7701 msgid "The current task was gracefully closed on user request..." msgstr "Taskul curent a fost închis la cererea utilizatorului ..." -#: FlatCAMApp.py:7756 +#: FlatCAMApp.py:7784 msgid "Preferences edited but not saved." msgstr "Preferințele au fost editate dar nu au fost salvate." -#: FlatCAMApp.py:7770 FlatCAMApp.py:7782 FlatCAMApp.py:7799 FlatCAMApp.py:7816 -#: FlatCAMApp.py:7876 FlatCAMCommon.py:1161 FlatCAMCommon.py:1336 -#: FlatCAMObj.py:4213 +#: FlatCAMApp.py:7798 FlatCAMApp.py:7810 FlatCAMApp.py:7827 FlatCAMApp.py:7844 +#: FlatCAMApp.py:7904 FlatCAMCommon.py:1161 FlatCAMCommon.py:1336 +#: FlatCAMObj.py:4216 msgid "Tools Database" msgstr "Baza de Date Unelte" -#: FlatCAMApp.py:7796 +#: FlatCAMApp.py:7824 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:7820 +#: FlatCAMApp.py:7848 msgid "Tool from DB added in Tool Table." msgstr "Unealtă din Baza de date adăugată in Tabela de Unelte." -#: FlatCAMApp.py:7822 +#: FlatCAMApp.py:7850 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:7856 +#: FlatCAMApp.py:7884 msgid "" "One or more values are changed.\n" "Do you want to save the Preferences?" @@ -744,11 +744,11 @@ msgstr "" "Una sau mai multe valori au fost schimbate.\n" "Dorești să salvezi Preferințele?" -#: FlatCAMApp.py:7858 flatcamGUI/FlatCAMGUI.py:220 +#: FlatCAMApp.py:7886 flatcamGUI/FlatCAMGUI.py:222 msgid "Save Preferences" msgstr "Salvează Pref" -#: FlatCAMApp.py:7882 +#: FlatCAMApp.py:7910 msgid "" "One or more Tools are edited.\n" "Do you want to update the Tools Database?" @@ -756,95 +756,95 @@ msgstr "" "Unul sau mai multe Unelte sunt editate.\n" "Doriți să actualizați baza de date a Uneltelor?" -#: FlatCAMApp.py:7884 +#: FlatCAMApp.py:7912 msgid "Save Tools Database" msgstr "Salvează baza de date Unelte" -#: FlatCAMApp.py:7903 FlatCAMApp.py:10015 FlatCAMObj.py:6456 +#: FlatCAMApp.py:7931 FlatCAMApp.py:10047 FlatCAMObj.py:6459 msgid "Code Editor" msgstr "Editor Cod" -#: FlatCAMApp.py:7921 +#: FlatCAMApp.py:7949 msgid "No object selected to Flip on Y axis." msgstr "Nu sete nici-un obiect selectat pentru oglindire pe axa Y." -#: FlatCAMApp.py:7947 +#: FlatCAMApp.py:7975 msgid "Flip on Y axis done." msgstr "Oglindire pe axa Y executată." -#: FlatCAMApp.py:7949 FlatCAMApp.py:7991 +#: FlatCAMApp.py:7977 FlatCAMApp.py:8019 #: flatcamEditors/FlatCAMGrbEditor.py:5773 msgid "Flip action was not executed." msgstr "Acțiunea de Oglindire nu a fost executată." -#: FlatCAMApp.py:7963 +#: FlatCAMApp.py:7991 msgid "No object selected to Flip on X axis." msgstr "Nu este nici-un obiect selectat pentru oglindire pe axa X." -#: FlatCAMApp.py:7989 +#: FlatCAMApp.py:8017 msgid "Flip on X axis done." msgstr "Oglindirea pe axa X executată." -#: FlatCAMApp.py:8005 +#: FlatCAMApp.py:8033 msgid "No object selected to Rotate." msgstr "Nici-un obiect selectat pentru Rotaţie." -#: FlatCAMApp.py:8008 FlatCAMApp.py:8055 FlatCAMApp.py:8088 +#: FlatCAMApp.py:8036 FlatCAMApp.py:8083 FlatCAMApp.py:8116 msgid "Transform" msgstr "Transformare" -#: FlatCAMApp.py:8008 FlatCAMApp.py:8055 FlatCAMApp.py:8088 +#: FlatCAMApp.py:8036 FlatCAMApp.py:8083 FlatCAMApp.py:8116 msgid "Enter the Angle value:" msgstr "Introduceți valoaea Unghiului:" -#: FlatCAMApp.py:8039 +#: FlatCAMApp.py:8067 msgid "Rotation done." msgstr "Rotaţie executată." -#: FlatCAMApp.py:8041 +#: FlatCAMApp.py:8069 msgid "Rotation movement was not executed." msgstr "Mișcarea de rotație nu a fost executată." -#: FlatCAMApp.py:8053 +#: FlatCAMApp.py:8081 msgid "No object selected to Skew/Shear on X axis." msgstr "Nici-un obiect nu este selectat pentru Deformare pe axa X." -#: FlatCAMApp.py:8075 +#: FlatCAMApp.py:8103 msgid "Skew on X axis done." msgstr "Deformare pe axa X terminată." -#: FlatCAMApp.py:8086 +#: FlatCAMApp.py:8114 msgid "No object selected to Skew/Shear on Y axis." msgstr "Nici-un obiect nu este selectat pentru Deformare pe axa Y." -#: FlatCAMApp.py:8108 +#: FlatCAMApp.py:8136 msgid "Skew on Y axis done." msgstr "Deformare pe axa Y terminată." -#: FlatCAMApp.py:8256 FlatCAMApp.py:8303 flatcamGUI/FlatCAMGUI.py:429 -#: flatcamGUI/FlatCAMGUI.py:1465 +#: FlatCAMApp.py:8284 FlatCAMApp.py:8331 flatcamGUI/FlatCAMGUI.py:451 +#: flatcamGUI/FlatCAMGUI.py:1581 msgid "Select All" msgstr "Selectează toate" -#: FlatCAMApp.py:8260 FlatCAMApp.py:8307 flatcamGUI/FlatCAMGUI.py:432 +#: FlatCAMApp.py:8288 FlatCAMApp.py:8335 flatcamGUI/FlatCAMGUI.py:453 msgid "Deselect All" msgstr "Deselectează toate" -#: FlatCAMApp.py:8323 +#: FlatCAMApp.py:8351 msgid "All objects are selected." msgstr "Totate obiectele sunt selectate." -#: FlatCAMApp.py:8333 +#: FlatCAMApp.py:8361 msgid "Objects selection is cleared." msgstr "Nici-un obiect nu este selectat." -#: FlatCAMApp.py:8349 flatcamGUI/FlatCAMGUI.py:1458 +#: FlatCAMApp.py:8378 flatcamGUI/FlatCAMGUI.py:1574 msgid "Grid On/Off" msgstr "Grid On/Off" -#: FlatCAMApp.py:8362 flatcamEditors/FlatCAMGeoEditor.py:940 +#: FlatCAMApp.py:8393 flatcamEditors/FlatCAMGeoEditor.py:940 #: flatcamEditors/FlatCAMGrbEditor.py:2503 -#: flatcamEditors/FlatCAMGrbEditor.py:5346 flatcamGUI/ObjectUI.py:1265 +#: flatcamEditors/FlatCAMGrbEditor.py:5346 flatcamGUI/ObjectUI.py:1304 #: flatcamTools/ToolDblSided.py:185 flatcamTools/ToolDblSided.py:238 #: flatcamTools/ToolNonCopperClear.py:286 flatcamTools/ToolPaint.py:188 #: flatcamTools/ToolSolderPaste.py:121 flatcamTools/ToolSolderPaste.py:591 @@ -852,76 +852,76 @@ msgstr "Grid On/Off" msgid "Add" msgstr "Adaugă" -#: FlatCAMApp.py:8363 FlatCAMObj.py:3900 +#: FlatCAMApp.py:8395 FlatCAMObj.py:3902 #: flatcamEditors/FlatCAMGrbEditor.py:2508 -#: 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 +#: flatcamEditors/FlatCAMGrbEditor.py:2656 flatcamGUI/FlatCAMGUI.py:654 +#: flatcamGUI/FlatCAMGUI.py:965 flatcamGUI/FlatCAMGUI.py:1987 +#: flatcamGUI/FlatCAMGUI.py:2130 flatcamGUI/FlatCAMGUI.py:2524 +#: flatcamGUI/ObjectUI.py:1330 flatcamTools/ToolNonCopperClear.py:298 #: flatcamTools/ToolPaint.py:200 flatcamTools/ToolSolderPaste.py:127 -#: flatcamTools/ToolSolderPaste.py:593 +#: flatcamTools/ToolSolderPaste.py:594 msgid "Delete" msgstr "Șterge" -#: FlatCAMApp.py:8376 +#: FlatCAMApp.py:8408 msgid "New Grid ..." msgstr "Grid nou ..." -#: FlatCAMApp.py:8377 +#: FlatCAMApp.py:8409 msgid "Enter a Grid Value:" msgstr "Introduceti of valoare pt Grid:" -#: FlatCAMApp.py:8385 FlatCAMApp.py:8412 +#: FlatCAMApp.py:8417 FlatCAMApp.py:8444 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:8391 +#: FlatCAMApp.py:8423 msgid "New Grid added" msgstr "Grid nou" -#: FlatCAMApp.py:8394 +#: FlatCAMApp.py:8426 msgid "Grid already exists" msgstr "Grila există deja" -#: FlatCAMApp.py:8397 +#: FlatCAMApp.py:8429 msgid "Adding New Grid cancelled" msgstr "Adăugarea unei valori de Grilă a fost anulată" -#: FlatCAMApp.py:8419 +#: FlatCAMApp.py:8451 msgid " Grid Value does not exist" msgstr " Valoarea Grilei nu există" -#: FlatCAMApp.py:8422 +#: FlatCAMApp.py:8454 msgid "Grid Value deleted" msgstr "Valoarea Grila a fost stearsă" -#: FlatCAMApp.py:8425 +#: FlatCAMApp.py:8457 msgid "Delete Grid value cancelled" msgstr "Ștergerea unei valori de Grilă a fost anulată" -#: FlatCAMApp.py:8431 +#: FlatCAMApp.py:8463 msgid "Key Shortcut List" msgstr "Lista de shortcut-uri" -#: FlatCAMApp.py:8465 +#: FlatCAMApp.py:8497 msgid " No object selected to copy it's name" msgstr " Nici-un obiect nu este selectat pentru i se copia valoarea" -#: FlatCAMApp.py:8469 +#: FlatCAMApp.py:8501 msgid "Name copied on clipboard ..." msgstr "Numele a fost copiat pe Clipboard ..." -#: FlatCAMApp.py:8666 flatcamEditors/FlatCAMGrbEditor.py:4300 +#: FlatCAMApp.py:8698 flatcamEditors/FlatCAMGrbEditor.py:4300 msgid "Coordinates copied to clipboard." msgstr "Coordonatele au fost copiate in clipboard." -#: 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 +#: FlatCAMApp.py:8912 FlatCAMApp.py:8918 FlatCAMApp.py:8924 FlatCAMApp.py:8930 +#: ObjectCollection.py:792 ObjectCollection.py:798 ObjectCollection.py:804 +#: ObjectCollection.py:810 ObjectCollection.py:816 ObjectCollection.py:822 msgid "selected" msgstr "selectat" -#: FlatCAMApp.py:9040 +#: FlatCAMApp.py:9072 msgid "" "There are files/objects opened in FlatCAM.\n" "Creating a New project will delete them.\n" @@ -931,359 +931,359 @@ msgstr "" "Crearea unui nou Proiect le va șterge..\n" "Doriti să Salvati proiectul curentt?" -#: FlatCAMApp.py:9062 +#: FlatCAMApp.py:9094 msgid "New Project created" msgstr "Un nou Proiect a fost creat" -#: FlatCAMApp.py:9197 FlatCAMApp.py:9201 flatcamGUI/FlatCAMGUI.py:696 -#: flatcamGUI/FlatCAMGUI.py:2149 +#: FlatCAMApp.py:9229 FlatCAMApp.py:9233 flatcamGUI/FlatCAMGUI.py:741 +#: flatcamGUI/FlatCAMGUI.py:2317 msgid "Open Gerber" msgstr "Încarcă Gerber" -#: FlatCAMApp.py:9208 +#: FlatCAMApp.py:9240 msgid "Opening Gerber file." msgstr "Se incarcă un fişier Gerber." -#: FlatCAMApp.py:9214 +#: FlatCAMApp.py:9246 msgid "Open Gerber cancelled." msgstr "Incărcarea unui fişier Gerber este anulată." -#: FlatCAMApp.py:9235 FlatCAMApp.py:9239 flatcamGUI/FlatCAMGUI.py:697 -#: flatcamGUI/FlatCAMGUI.py:2150 +#: FlatCAMApp.py:9267 FlatCAMApp.py:9271 flatcamGUI/FlatCAMGUI.py:743 +#: flatcamGUI/FlatCAMGUI.py:2319 msgid "Open Excellon" msgstr "Încarcă Excellon" -#: FlatCAMApp.py:9245 +#: FlatCAMApp.py:9277 msgid "Opening Excellon file." msgstr "Se incarcă un fişier Excellon." -#: FlatCAMApp.py:9251 +#: FlatCAMApp.py:9283 msgid " Open Excellon cancelled." msgstr " Incărcarea unui fişier Excellon este anulată." -#: FlatCAMApp.py:9275 FlatCAMApp.py:9279 +#: FlatCAMApp.py:9307 FlatCAMApp.py:9311 msgid "Open G-Code" msgstr "Încarcă G-Code" -#: FlatCAMApp.py:9286 +#: FlatCAMApp.py:9318 msgid "Opening G-Code file." msgstr "Se incarcă un fişier G-Code." -#: FlatCAMApp.py:9292 +#: FlatCAMApp.py:9324 msgid "Open G-Code cancelled." msgstr "Incărcarea unui fişier G-Code este anulată." -#: FlatCAMApp.py:9310 FlatCAMApp.py:9313 flatcamGUI/FlatCAMGUI.py:1467 +#: FlatCAMApp.py:9342 FlatCAMApp.py:9345 flatcamGUI/FlatCAMGUI.py:1583 msgid "Open Project" msgstr "Încarcă Project" -#: FlatCAMApp.py:9322 +#: FlatCAMApp.py:9354 msgid "Open Project cancelled." msgstr "Incărcarea unui fişier Proiect FlatCAM este anulată." -#: FlatCAMApp.py:9346 FlatCAMApp.py:9350 +#: FlatCAMApp.py:9378 FlatCAMApp.py:9382 msgid "Open HPGL2" msgstr "Încarcă HPGL2" -#: FlatCAMApp.py:9357 +#: FlatCAMApp.py:9389 msgid "Opening HPGL2 file." msgstr "Se incarcă un fişier HPGL2." -#: FlatCAMApp.py:9362 +#: FlatCAMApp.py:9394 msgid "Open HPGL2 file cancelled." msgstr "Incărcarea fișierului HPGL2 a fost anulată." -#: FlatCAMApp.py:9380 FlatCAMApp.py:9383 +#: FlatCAMApp.py:9412 FlatCAMApp.py:9415 msgid "Open Configuration File" msgstr "Încarcă un fişier de Configurare" -#: FlatCAMApp.py:9388 +#: FlatCAMApp.py:9420 msgid "Open Config cancelled." msgstr "Incărcarea unui fişier configurare FlatCAM este anulată." -#: FlatCAMApp.py:9404 FlatCAMApp.py:9772 FlatCAMApp.py:10246 +#: FlatCAMApp.py:9436 FlatCAMApp.py:9804 FlatCAMApp.py:10278 msgid "No object selected." msgstr "Nici-un obiect nu este selectat." -#: FlatCAMApp.py:9405 FlatCAMApp.py:9773 +#: FlatCAMApp.py:9437 FlatCAMApp.py:9805 msgid "Please Select a Geometry object to export" msgstr "Selectează un obiect Geometrie pentru export" -#: FlatCAMApp.py:9419 +#: FlatCAMApp.py:9451 msgid "Only Geometry, Gerber and CNCJob objects can be used." msgstr "Doar obiectele Geometrie, Gerber și CNCJob pot fi folosite." -#: FlatCAMApp.py:9432 FlatCAMApp.py:9436 flatcamTools/ToolQRCode.py:827 +#: FlatCAMApp.py:9464 FlatCAMApp.py:9468 flatcamTools/ToolQRCode.py:827 #: flatcamTools/ToolQRCode.py:831 msgid "Export SVG" msgstr "Exporta SVG" -#: FlatCAMApp.py:9442 flatcamTools/ToolQRCode.py:836 +#: FlatCAMApp.py:9474 flatcamTools/ToolQRCode.py:836 msgid " Export SVG cancelled." msgstr " Exportul fisierului SVG a fost anulat." -#: FlatCAMApp.py:9463 +#: FlatCAMApp.py:9495 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:9469 FlatCAMApp.py:9473 +#: FlatCAMApp.py:9501 FlatCAMApp.py:9505 msgid "Export PNG Image" msgstr "Exporta imagine PNG" -#: FlatCAMApp.py:9478 +#: FlatCAMApp.py:9510 msgid "Export PNG cancelled." msgstr "Exportul imagine PNG este anulat." -#: FlatCAMApp.py:9502 +#: FlatCAMApp.py:9534 msgid "No object selected. Please select an Gerber object to export." msgstr "Nici-un obiect selectat. Selectează un obiect Gerber pentru export." -#: FlatCAMApp.py:9508 FlatCAMApp.py:9731 +#: FlatCAMApp.py:9540 FlatCAMApp.py:9763 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:9520 +#: FlatCAMApp.py:9552 msgid "Save Gerber source file" msgstr "Salvează codul sursa Gerber ca fişier" -#: FlatCAMApp.py:9526 +#: FlatCAMApp.py:9558 msgid "Save Gerber source file cancelled." msgstr "Salvarea codului sursa Gerber este anulată." -#: FlatCAMApp.py:9546 +#: FlatCAMApp.py:9578 msgid "No object selected. Please select an Script object to export." msgstr "Nici-un obiect selectat. Selectează un obiect Script pentru export." -#: FlatCAMApp.py:9552 +#: FlatCAMApp.py:9584 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:9564 +#: FlatCAMApp.py:9596 msgid "Save Script source file" msgstr "Salvează codul sursa Script ca fişier" -#: FlatCAMApp.py:9570 +#: FlatCAMApp.py:9602 msgid "Save Script source file cancelled." msgstr "Salvarea codului sursa Script este anulată." -#: FlatCAMApp.py:9590 +#: FlatCAMApp.py:9622 msgid "No object selected. Please select an Document object to export." msgstr "Nici-un obiect selectat. Selectează un obiect Document pentru export." -#: FlatCAMApp.py:9596 +#: FlatCAMApp.py:9628 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:9608 +#: FlatCAMApp.py:9640 msgid "Save Document source file" msgstr "Salvează codul sursa Document ca fişier" -#: FlatCAMApp.py:9614 +#: FlatCAMApp.py:9646 msgid "Save Document source file cancelled." msgstr "Salvarea codului sursa Document este anulată." -#: FlatCAMApp.py:9634 +#: FlatCAMApp.py:9666 msgid "No object selected. Please select an Excellon object to export." msgstr "Nici-un obiect selectat. Selectează un obiect Excellon pentru export." -#: FlatCAMApp.py:9640 FlatCAMApp.py:9684 FlatCAMApp.py:10422 +#: FlatCAMApp.py:9672 FlatCAMApp.py:9716 FlatCAMApp.py:10454 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:9648 FlatCAMApp.py:9652 +#: FlatCAMApp.py:9680 FlatCAMApp.py:9684 msgid "Save Excellon source file" msgstr "Salvează codul sursa Excellon ca fişier" -#: FlatCAMApp.py:9658 +#: FlatCAMApp.py:9690 msgid "Saving Excellon source file cancelled." msgstr "Salvarea codului sursa Excellon este anulată." -#: FlatCAMApp.py:9678 +#: FlatCAMApp.py:9710 msgid "No object selected. Please Select an Excellon object to export." msgstr "Nici-un obiect selectat. Selectează un obiect Excellon pentru export." -#: FlatCAMApp.py:9692 FlatCAMApp.py:9696 +#: FlatCAMApp.py:9724 FlatCAMApp.py:9728 msgid "Export Excellon" msgstr "Exportă Excellon" -#: FlatCAMApp.py:9702 +#: FlatCAMApp.py:9734 msgid "Export Excellon cancelled." msgstr "Exportul fișierului Excellon a fost anulat." -#: FlatCAMApp.py:9725 +#: FlatCAMApp.py:9757 msgid "No object selected. Please Select an Gerber object to export." msgstr "Nici-un obiect selectat. Selectează un obiect Gerber pentru export." -#: FlatCAMApp.py:9739 FlatCAMApp.py:9743 +#: FlatCAMApp.py:9771 FlatCAMApp.py:9775 msgid "Export Gerber" msgstr "Exportă Gerber" -#: FlatCAMApp.py:9749 +#: FlatCAMApp.py:9781 msgid "Export Gerber cancelled." msgstr "Exportul fișierului Gerber a fost anulat." -#: FlatCAMApp.py:9784 +#: FlatCAMApp.py:9816 msgid "Only Geometry objects can be used." msgstr "Doar obiecte tip Geometrie pot fi folosite." -#: FlatCAMApp.py:9798 FlatCAMApp.py:9802 +#: FlatCAMApp.py:9830 FlatCAMApp.py:9834 msgid "Export DXF" msgstr "Exportă DXF" -#: FlatCAMApp.py:9809 +#: FlatCAMApp.py:9841 msgid "Export DXF cancelled." msgstr "Exportul fișierului DXF a fost anulat." -#: FlatCAMApp.py:9829 FlatCAMApp.py:9832 +#: FlatCAMApp.py:9861 FlatCAMApp.py:9864 msgid "Import SVG" msgstr "Importă SVG" -#: FlatCAMApp.py:9842 +#: FlatCAMApp.py:9874 msgid "Open SVG cancelled." msgstr "Incărcarea fișierului SVG a fost anulată." -#: FlatCAMApp.py:9861 FlatCAMApp.py:9865 +#: FlatCAMApp.py:9893 FlatCAMApp.py:9897 msgid "Import DXF" msgstr "Importa DXF" -#: FlatCAMApp.py:9875 +#: FlatCAMApp.py:9907 msgid "Open DXF cancelled." msgstr "Incărcarea fișierului DXF a fost anulată." -#: FlatCAMApp.py:9917 +#: FlatCAMApp.py:9949 msgid "Viewing the source code of the selected object." msgstr "Vizualizarea codului sursă a obiectului selectat." -#: FlatCAMApp.py:9918 FlatCAMObj.py:6442 FlatCAMObj.py:7043 +#: FlatCAMApp.py:9950 FlatCAMObj.py:6445 FlatCAMObj.py:7046 msgid "Loading..." msgstr "Se incarcă..." -#: FlatCAMApp.py:9924 FlatCAMApp.py:9928 +#: FlatCAMApp.py:9956 FlatCAMApp.py:9960 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:9942 +#: FlatCAMApp.py:9974 msgid "Source Editor" msgstr "Editor Cod Sursă" -#: FlatCAMApp.py:9982 FlatCAMApp.py:9989 +#: FlatCAMApp.py:10014 FlatCAMApp.py:10021 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:10001 +#: FlatCAMApp.py:10033 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:10043 +#: FlatCAMApp.py:10075 msgid "New TCL script file created in Code Editor." msgstr "Un nou script TCL a fost creat in Editorul de cod." -#: FlatCAMApp.py:10081 FlatCAMApp.py:10083 +#: FlatCAMApp.py:10113 FlatCAMApp.py:10115 msgid "Open TCL script" msgstr "Încarcă TCL script" -#: FlatCAMApp.py:10087 +#: FlatCAMApp.py:10119 msgid "Open TCL script cancelled." msgstr "Incărcarea fisierului TCL script anulată." -#: FlatCAMApp.py:10111 +#: FlatCAMApp.py:10143 msgid "Executing FlatCAMScript file." msgstr "Se executa un fisier script FlatCAM." -#: FlatCAMApp.py:10118 FlatCAMApp.py:10121 +#: FlatCAMApp.py:10150 FlatCAMApp.py:10153 msgid "Run TCL script" msgstr "Ruleaza TCL script" -#: FlatCAMApp.py:10131 +#: FlatCAMApp.py:10163 msgid "Run TCL script cancelled." msgstr "Executarea fisierului Script a fost anulată." -#: FlatCAMApp.py:10147 +#: FlatCAMApp.py:10179 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:10198 FlatCAMApp.py:10204 +#: FlatCAMApp.py:10230 FlatCAMApp.py:10236 msgid "Save Project As ..." msgstr "Salvează Proiectul ca ..." -#: FlatCAMApp.py:10200 flatcamGUI/FlatCAMGUI.py:909 -#: flatcamGUI/FlatCAMGUI.py:1899 +#: FlatCAMApp.py:10232 flatcamGUI/FlatCAMGUI.py:1025 +#: flatcamGUI/FlatCAMGUI.py:2022 msgid "Project" msgstr "Proiect" -#: FlatCAMApp.py:10209 +#: FlatCAMApp.py:10241 msgid "Save Project cancelled." msgstr "Salvarea Proiect anulată." -#: FlatCAMApp.py:10216 +#: FlatCAMApp.py:10248 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 +#: FlatCAMApp.py:10284 FlatCAMApp.py:10291 flatcamGUI/FlatCAMGUI.py:265 msgid "Save Object as PDF ..." msgstr "Salvați obiectul în format PDF ..." -#: FlatCAMApp.py:10264 +#: FlatCAMApp.py:10296 msgid "Save Object PDF cancelled." msgstr "Salvarea obiectului PDF anulată." -#: FlatCAMApp.py:10302 +#: FlatCAMApp.py:10334 msgid "Exporting SVG" msgstr "SVG in curs de export" -#: FlatCAMApp.py:10346 +#: FlatCAMApp.py:10378 msgid "SVG file exported to" msgstr "Fişier SVG exportat in" -#: FlatCAMApp.py:10371 +#: FlatCAMApp.py:10403 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:10517 +#: FlatCAMApp.py:10549 msgid "Excellon file exported to" msgstr "Fişierul Excellon exportat in" -#: FlatCAMApp.py:10526 +#: FlatCAMApp.py:10558 msgid "Exporting Excellon" msgstr "Excellon in curs de export" -#: FlatCAMApp.py:10532 FlatCAMApp.py:10540 +#: FlatCAMApp.py:10564 FlatCAMApp.py:10572 msgid "Could not export Excellon file." msgstr "Fişierul Excellon nu a fost posibil să fie exportat." -#: FlatCAMApp.py:10656 +#: FlatCAMApp.py:10688 msgid "Gerber file exported to" msgstr "Fişier Gerber exportat in" -#: FlatCAMApp.py:10664 +#: FlatCAMApp.py:10696 msgid "Exporting Gerber" msgstr "Gerber in curs de export" -#: FlatCAMApp.py:10670 FlatCAMApp.py:10678 +#: FlatCAMApp.py:10702 FlatCAMApp.py:10710 msgid "Could not export Gerber file." msgstr "Fişierul Gerber nu a fost posibil să fie exportat." -#: FlatCAMApp.py:10712 +#: FlatCAMApp.py:10744 msgid "DXF file exported to" msgstr "Fişierul DXF exportat in" -#: FlatCAMApp.py:10718 +#: FlatCAMApp.py:10750 msgid "Exporting DXF" msgstr "DXF in curs de export" -#: FlatCAMApp.py:10723 FlatCAMApp.py:10730 +#: FlatCAMApp.py:10755 FlatCAMApp.py:10762 msgid "Could not export DXF file." msgstr "Fişierul DXF nu a fost posibil să fie exportat." -#: FlatCAMApp.py:10753 FlatCAMApp.py:10796 flatcamTools/ToolImage.py:278 +#: FlatCAMApp.py:10785 FlatCAMApp.py:10828 flatcamTools/ToolImage.py:278 msgid "" "Not supported type is picked as parameter. Only Geometry and Gerber are " "supported" @@ -1291,87 +1291,87 @@ msgstr "" "Tipul parametrului nu este compatibil. Doar obiectele tip Geometrie si " "Gerber sunt acceptate" -#: FlatCAMApp.py:10763 +#: FlatCAMApp.py:10795 msgid "Importing SVG" msgstr "SVG in curs de ia fi importat" -#: 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 +#: FlatCAMApp.py:10806 FlatCAMApp.py:10848 FlatCAMApp.py:10907 +#: FlatCAMApp.py:10974 FlatCAMApp.py:11037 FlatCAMApp.py:11104 +#: FlatCAMApp.py:11142 flatcamTools/ToolImage.py:298 #: flatcamTools/ToolPDF.py:225 msgid "Opened" msgstr "Încarcat" -#: FlatCAMApp.py:10805 +#: FlatCAMApp.py:10837 msgid "Importing DXF" msgstr "DXF in curs de a fi importat" -#: FlatCAMApp.py:10841 FlatCAMApp.py:11031 +#: FlatCAMApp.py:10873 FlatCAMApp.py:11063 msgid "Failed to open file" msgstr "Eşec in incărcarea fişierului" -#: FlatCAMApp.py:10844 FlatCAMApp.py:11034 +#: FlatCAMApp.py:10876 FlatCAMApp.py:11066 msgid "Failed to parse file" msgstr "Parsarea fişierului a eșuat" -#: FlatCAMApp.py:10849 FlatCAMApp.py:10910 FlatCAMApp.py:11039 -#: FlatCAMObj.py:5004 flatcamEditors/FlatCAMGrbEditor.py:4110 +#: FlatCAMApp.py:10881 FlatCAMApp.py:10942 FlatCAMApp.py:11071 +#: FlatCAMObj.py:5007 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:10856 +#: FlatCAMApp.py:10888 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:10861 +#: FlatCAMApp.py:10893 msgid "Opening Gerber" msgstr "Gerber in curs de incărcare" -#: FlatCAMApp.py:10868 +#: FlatCAMApp.py:10900 msgid " Open Gerber failed. Probable not a Gerber file." msgstr " Incărcarea Gerber a eșuat. Probabil nu este de tip Gerber." -#: FlatCAMApp.py:10900 flatcamTools/ToolPcbWizard.py:427 +#: FlatCAMApp.py:10932 flatcamTools/ToolPcbWizard.py:427 msgid "This is not Excellon file." msgstr "Acesta nu este un fişier Excellon." -#: FlatCAMApp.py:10904 +#: FlatCAMApp.py:10936 msgid "Cannot open file" msgstr "Nu se poate incărca fişierul" -#: FlatCAMApp.py:10924 flatcamTools/ToolPDF.py:275 +#: FlatCAMApp.py:10956 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:10927 +#: FlatCAMApp.py:10959 msgid "Opening Excellon." msgstr "Excellon in curs de incărcare." -#: FlatCAMApp.py:10934 +#: FlatCAMApp.py:10966 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:10965 +#: FlatCAMApp.py:10997 msgid "Reading GCode file" msgstr "Se citeşte un fişier G-Code" -#: FlatCAMApp.py:10972 +#: FlatCAMApp.py:11004 msgid "Failed to open" msgstr "A eșuat incărcarea fişierului" -#: FlatCAMApp.py:10980 +#: FlatCAMApp.py:11012 msgid "This is not GCODE" msgstr "Acest obiect nu este de tip GCode" -#: FlatCAMApp.py:10985 +#: FlatCAMApp.py:11017 msgid "Opening G-Code." msgstr "G-Code in curs de incărcare." -#: FlatCAMApp.py:10994 +#: FlatCAMApp.py:11026 msgid "" "Failed to create CNCJob Object. Probable not a GCode file. Try to load it " "from File menu.\n" @@ -1382,68 +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:11053 +#: FlatCAMApp.py:11085 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 +#: FlatCAMApp.py:11090 msgid "Opening HPGL2" msgstr "HPGL2 in curs de incărcare" -#: FlatCAMApp.py:11065 +#: FlatCAMApp.py:11097 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 +#: FlatCAMApp.py:11118 msgid "Opening TCL Script..." msgstr "Încarcă TCL script..." -#: FlatCAMApp.py:11094 +#: FlatCAMApp.py:11126 msgid "TCL script file opened in Code Editor." msgstr "S-a încărcat un script TCL în Editorul Cod." -#: FlatCAMApp.py:11097 +#: FlatCAMApp.py:11129 msgid "Failed to open TCL Script." msgstr "Eşec in incărcarea fişierului TCL." -#: FlatCAMApp.py:11125 +#: FlatCAMApp.py:11157 msgid "Opening FlatCAM Config file." msgstr "Se incarca un fişier FlatCAM de configurare." -#: FlatCAMApp.py:11153 +#: FlatCAMApp.py:11185 msgid "Failed to open config file" msgstr "Eşec in incărcarea fişierului de configurare" -#: FlatCAMApp.py:11179 +#: FlatCAMApp.py:11211 msgid "Loading Project ... Please Wait ..." msgstr "Se încarcă proiectul ... Vă rugăm să așteptați ..." -#: FlatCAMApp.py:11184 +#: FlatCAMApp.py:11216 msgid "Opening FlatCAM Project file." msgstr "Se incarca un fisier proiect FlatCAM." -#: FlatCAMApp.py:11194 FlatCAMApp.py:11212 +#: FlatCAMApp.py:11226 FlatCAMApp.py:11244 msgid "Failed to open project file" msgstr "Eşec in incărcarea fişierului proiect" -#: FlatCAMApp.py:11246 +#: FlatCAMApp.py:11278 msgid "Loading Project ... restoring" msgstr "Se încarcă proiectul ... se restabileste" -#: FlatCAMApp.py:11255 +#: FlatCAMApp.py:11287 msgid "Project loaded from" msgstr "Proiectul a fost incărcat din" -#: FlatCAMApp.py:11318 +#: FlatCAMApp.py:11350 msgid "Redrawing all objects" msgstr "Toate obiectele sunt reafisate" -#: FlatCAMApp.py:11350 +#: FlatCAMApp.py:11382 msgid "Available commands:\n" msgstr "Comenzi disponibile:\n" -#: FlatCAMApp.py:11352 +#: FlatCAMApp.py:11384 msgid "" "\n" "\n" @@ -1455,51 +1455,51 @@ msgstr "" "Introduceți help pentru utilizare.\n" "Exemplu: help open_gerber" -#: FlatCAMApp.py:11502 +#: FlatCAMApp.py:11534 msgid "Shows list of commands." msgstr "Arata o lista de comenzi." -#: FlatCAMApp.py:11564 +#: FlatCAMApp.py:11596 msgid "Failed to load recent item list." msgstr "Eşec in incărcarea listei cu fişiere recente." -#: FlatCAMApp.py:11572 +#: FlatCAMApp.py:11604 msgid "Failed to parse recent item list." msgstr "Eşec in parsarea listei cu fişiere recente." -#: FlatCAMApp.py:11583 +#: FlatCAMApp.py:11615 msgid "Failed to load recent projects item list." msgstr "Eşec in incărcarea listei cu proiecte recente." -#: FlatCAMApp.py:11591 +#: FlatCAMApp.py:11623 msgid "Failed to parse recent project item list." msgstr "Eşec in parsarea listei cu proiecte recente." -#: FlatCAMApp.py:11650 +#: FlatCAMApp.py:11683 msgid "Clear Recent projects" msgstr "Sterge Proiectele recente" -#: FlatCAMApp.py:11673 +#: FlatCAMApp.py:11707 msgid "Clear Recent files" msgstr "Sterge fişierele recente" -#: FlatCAMApp.py:11690 flatcamGUI/FlatCAMGUI.py:1133 +#: FlatCAMApp.py:11724 flatcamGUI/FlatCAMGUI.py:1249 msgid "Shortcut Key List" msgstr "Lista cu taste Shortcut" -#: FlatCAMApp.py:11764 +#: FlatCAMApp.py:11798 msgid "Selected Tab - Choose an Item from Project Tab" msgstr "Tab-ul Selectat - Alege un obiect din Tab-ul Proiect" -#: FlatCAMApp.py:11765 +#: FlatCAMApp.py:11799 msgid "Details" msgstr "Detalii" -#: FlatCAMApp.py:11767 +#: FlatCAMApp.py:11801 msgid "The normal flow when working in FlatCAM is the following:" msgstr "Fluxul normal cand se lucreaza in FlatCAM este urmatorul:" -#: FlatCAMApp.py:11768 +#: FlatCAMApp.py:11802 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 " @@ -1509,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:11771 +#: FlatCAMApp.py:11805 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 " @@ -1519,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:11774 +#: FlatCAMApp.py:11808 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 " @@ -1532,7 +1532,7 @@ msgstr "" "proprietățile obiectului în funcție de tipul său: Gerber, Excellon, " "Geometrie sau obiect CNCJob." -#: FlatCAMApp.py:11778 +#: FlatCAMApp.py:11812 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 " @@ -1546,14 +1546,14 @@ msgstr "" "de pe ecran va aduce fila SELECTAT și o va popula chiar dacă nu a fost in " "focus." -#: FlatCAMApp.py:11782 +#: FlatCAMApp.py:11816 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:11783 +#: FlatCAMApp.py:11817 msgid "" "Gerber/Excellon Object --> Change Parameter --> Generate Geometry --> " "Geometry Object --> Add tools (change param in Selected Tab) --> Generate " @@ -1566,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:11787 +#: FlatCAMApp.py:11821 msgid "" "A list of key shortcuts is available through an menu entry in Help --> " "Shortcuts List or through its own key shortcut: F3." @@ -1575,25 +1575,25 @@ msgstr "" "meniul Ajutor -> Lista de combinatii taste sau prin propria tasta asociata: " "F3." -#: FlatCAMApp.py:11848 +#: FlatCAMApp.py:11882 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:11856 +#: FlatCAMApp.py:11890 msgid "Could not parse information about latest version." msgstr "Informatia cu privire la ultima versiune nu s-a putut interpreta." -#: FlatCAMApp.py:11867 +#: FlatCAMApp.py:11901 msgid "FlatCAM is up to date!" msgstr "FlatCAM este la ultima versiune!" -#: FlatCAMApp.py:11872 +#: FlatCAMApp.py:11906 msgid "Newer Version Available" msgstr "O nouă versiune este disponibila" -#: FlatCAMApp.py:11873 +#: FlatCAMApp.py:11907 msgid "" "There is a newer version of FlatCAM available for download:\n" "\n" @@ -1601,63 +1601,63 @@ msgstr "" "O nouă versiune de FlatCAM este disponibilă pentru download::\n" "\n" -#: FlatCAMApp.py:11875 +#: FlatCAMApp.py:11909 msgid "info" msgstr "informaţie" -#: FlatCAMApp.py:11954 +#: FlatCAMApp.py:11988 msgid "All plots disabled." msgstr "Toate afişările sunt dezactivate." -#: FlatCAMApp.py:11961 +#: FlatCAMApp.py:11995 msgid "All non selected plots disabled." msgstr "Toate afişările care nu sunt selectate sunt dezactivate." -#: FlatCAMApp.py:11968 +#: FlatCAMApp.py:12002 msgid "All plots enabled." msgstr "Toate afişările sunt activate." -#: FlatCAMApp.py:11975 +#: FlatCAMApp.py:12009 msgid "Selected plots enabled..." msgstr "Toate afişările selectate sunt activate..." -#: FlatCAMApp.py:11984 +#: FlatCAMApp.py:12018 msgid "Selected plots disabled..." msgstr "Toate afişările selectate sunt dezactivate..." -#: FlatCAMApp.py:12003 +#: FlatCAMApp.py:12037 msgid "Enabling plots ..." msgstr "Activează Afișare ..." -#: FlatCAMApp.py:12043 +#: FlatCAMApp.py:12077 msgid "Disabling plots ..." msgstr "Dezactivează Afișare ..." -#: FlatCAMApp.py:12065 +#: FlatCAMApp.py:12099 msgid "Working ..." msgstr "Se lucrează..." -#: FlatCAMApp.py:12104 +#: FlatCAMApp.py:12138 msgid "Saving FlatCAM Project" msgstr "Proiectul FlatCAM este in curs de salvare" -#: FlatCAMApp.py:12124 FlatCAMApp.py:12162 +#: FlatCAMApp.py:12158 FlatCAMApp.py:12196 msgid "Project saved to" msgstr "Proiectul s-a salvat in" -#: FlatCAMApp.py:12144 +#: FlatCAMApp.py:12178 msgid "Failed to verify project file" msgstr "Eşec in incărcarea fişierului proiect" -#: FlatCAMApp.py:12144 FlatCAMApp.py:12153 FlatCAMApp.py:12165 +#: FlatCAMApp.py:12178 FlatCAMApp.py:12187 FlatCAMApp.py:12199 msgid "Retry to save it." msgstr "Încercați din nou pentru a-l salva." -#: FlatCAMApp.py:12153 FlatCAMApp.py:12165 +#: FlatCAMApp.py:12187 FlatCAMApp.py:12199 msgid "Failed to parse saved project file" msgstr "Esec in analizarea fişierului Proiect" -#: FlatCAMApp.py:12281 +#: FlatCAMApp.py:12315 msgid "The user requested a graceful exit of the current task." msgstr "Utilizatorul a solicitat o inchidere grațioasă a taskului curent." @@ -1739,7 +1739,7 @@ msgstr "Bookmark-ul a fost eliminat." msgid "Export FlatCAM Bookmarks" msgstr "Exportați bookmark-urile FlatCAM" -#: FlatCAMCommon.py:363 flatcamGUI/FlatCAMGUI.py:448 +#: FlatCAMCommon.py:363 flatcamGUI/FlatCAMGUI.py:472 msgid "Bookmarks" msgstr "Bookmarks" @@ -1771,13 +1771,13 @@ 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:3588 FlatCAMObj.py:4589 -#: FlatCAMObj.py:4590 FlatCAMObj.py:4599 +#: FlatCAMCommon.py:477 FlatCAMObj.py:3588 FlatCAMObj.py:4592 +#: FlatCAMObj.py:4593 FlatCAMObj.py:4602 msgid "Iso" msgstr "Izo" #: FlatCAMCommon.py:477 FlatCAMCommon.py:1012 FlatCAMObj.py:1351 -#: FlatCAMObj.py:3588 FlatCAMObj.py:3861 FlatCAMObj.py:4149 +#: FlatCAMObj.py:3588 FlatCAMObj.py:3861 FlatCAMObj.py:4152 msgid "Rough" msgstr "Grosier" @@ -1790,12 +1790,12 @@ msgid "Tool Name" msgstr "Nume unealtă" #: FlatCAMCommon.py:514 flatcamEditors/FlatCAMExcEditor.py:1527 -#: flatcamGUI/ObjectUI.py:1256 flatcamTools/ToolNonCopperClear.py:271 +#: flatcamGUI/ObjectUI.py:1295 flatcamTools/ToolNonCopperClear.py:271 #: flatcamTools/ToolPaint.py:176 msgid "Tool Dia" msgstr "Dia Unealtă" -#: FlatCAMCommon.py:515 flatcamGUI/ObjectUI.py:1239 +#: FlatCAMCommon.py:515 flatcamGUI/ObjectUI.py:1278 msgid "Tool Offset" msgstr "Ofset unealtă" @@ -1803,8 +1803,8 @@ msgstr "Ofset unealtă" msgid "Custom Offset" msgstr "Ofset personal." -#: FlatCAMCommon.py:517 flatcamGUI/ObjectUI.py:293 -#: flatcamGUI/PreferencesUI.py:1626 flatcamGUI/PreferencesUI.py:3991 +#: FlatCAMCommon.py:517 flatcamGUI/ObjectUI.py:304 +#: flatcamGUI/PreferencesUI.py:1627 flatcamGUI/PreferencesUI.py:3992 #: flatcamTools/ToolNonCopperClear.py:213 msgid "Tool Type" msgstr "Tip Unealtă" @@ -1813,11 +1813,11 @@ msgstr "Tip Unealtă" msgid "Tool Shape" msgstr "Formă unealtă" -#: 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 +#: FlatCAMCommon.py:519 flatcamGUI/ObjectUI.py:345 flatcamGUI/ObjectUI.py:820 +#: flatcamGUI/ObjectUI.py:1405 flatcamGUI/ObjectUI.py:1928 +#: flatcamGUI/PreferencesUI.py:1667 flatcamGUI/PreferencesUI.py:2335 +#: flatcamGUI/PreferencesUI.py:3180 flatcamGUI/PreferencesUI.py:4037 +#: flatcamGUI/PreferencesUI.py:4291 flatcamGUI/PreferencesUI.py:5115 #: flatcamTools/ToolCalculators.py:114 flatcamTools/ToolCutOut.py:132 #: flatcamTools/ToolNonCopperClear.py:254 msgid "Cut Z" @@ -1839,9 +1839,9 @@ msgstr "V-Dia" msgid "V-Angle" msgstr "V-Unghi" -#: 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 +#: FlatCAMCommon.py:524 flatcamGUI/ObjectUI.py:839 flatcamGUI/ObjectUI.py:1452 +#: flatcamGUI/PreferencesUI.py:2353 flatcamGUI/PreferencesUI.py:3233 +#: flatcamGUI/PreferencesUI.py:6467 flatcamTools/ToolCalibration.py:74 msgid "Travel Z" msgstr "Z Deplasare" @@ -1857,12 +1857,12 @@ msgstr "Z feedrate" msgid "FR Rapids" msgstr "Feedrate rapizi" -#: FlatCAMCommon.py:528 flatcamGUI/PreferencesUI.py:2427 +#: FlatCAMCommon.py:528 flatcamGUI/PreferencesUI.py:2428 msgid "Spindle Speed" msgstr "Viteza Motor" -#: FlatCAMCommon.py:529 flatcamGUI/ObjectUI.py:939 flatcamGUI/ObjectUI.py:1582 -#: flatcamGUI/PreferencesUI.py:2439 flatcamGUI/PreferencesUI.py:3353 +#: FlatCAMCommon.py:529 flatcamGUI/ObjectUI.py:963 flatcamGUI/ObjectUI.py:1621 +#: flatcamGUI/PreferencesUI.py:2440 flatcamGUI/PreferencesUI.py:3354 msgid "Dwell" msgstr "Pauza" @@ -1870,8 +1870,8 @@ msgstr "Pauza" msgid "Dwelltime" msgstr "Durata pauza" -#: FlatCAMCommon.py:531 flatcamGUI/ObjectUI.py:958 -#: flatcamGUI/PreferencesUI.py:2461 flatcamGUI/PreferencesUI.py:3375 +#: FlatCAMCommon.py:531 flatcamGUI/ObjectUI.py:982 +#: flatcamGUI/PreferencesUI.py:2462 flatcamGUI/PreferencesUI.py:3376 msgid "Preprocessor" msgstr "Postprocesor" @@ -1891,8 +1891,8 @@ msgstr "Schimb unealtă" msgid "Toolchange XY" msgstr "X,Y schimb unealtă" -#: FlatCAMCommon.py:536 flatcamGUI/PreferencesUI.py:2378 -#: flatcamGUI/PreferencesUI.py:3264 flatcamGUI/PreferencesUI.py:6503 +#: FlatCAMCommon.py:536 flatcamGUI/PreferencesUI.py:2379 +#: flatcamGUI/PreferencesUI.py:3265 flatcamGUI/PreferencesUI.py:6504 #: flatcamTools/ToolCalibration.py:111 msgid "Toolchange Z" msgstr "Z schimb. unealtă" @@ -2326,13 +2326,13 @@ msgstr "Scalare..." msgid "Skewing..." msgstr "Deformare..." -#: FlatCAMObj.py:723 FlatCAMObj.py:2710 FlatCAMObj.py:3904 -#: flatcamGUI/PreferencesUI.py:1123 flatcamGUI/PreferencesUI.py:2257 +#: FlatCAMObj.py:723 FlatCAMObj.py:2710 FlatCAMObj.py:3907 +#: flatcamGUI/PreferencesUI.py:1124 flatcamGUI/PreferencesUI.py:2258 msgid "Basic" msgstr "Baza" -#: FlatCAMObj.py:745 FlatCAMObj.py:2722 FlatCAMObj.py:3925 -#: flatcamGUI/PreferencesUI.py:1124 +#: FlatCAMObj.py:745 FlatCAMObj.py:2722 FlatCAMObj.py:3928 +#: flatcamGUI/PreferencesUI.py:1125 msgid "Advanced" msgstr "Avansat" @@ -2340,16 +2340,16 @@ msgstr "Avansat" msgid "Buffering solid geometry" msgstr "Buferarea geometriei solide" -#: FlatCAMObj.py:965 camlib.py:965 flatcamGUI/PreferencesUI.py:1700 +#: FlatCAMObj.py:965 camlib.py:965 flatcamGUI/PreferencesUI.py:1701 #: flatcamTools/ToolCopperThieving.py:1010 #: flatcamTools/ToolCopperThieving.py:1199 #: flatcamTools/ToolCopperThieving.py:1211 -#: flatcamTools/ToolNonCopperClear.py:1628 -#: flatcamTools/ToolNonCopperClear.py:1726 -#: flatcamTools/ToolNonCopperClear.py:1738 -#: flatcamTools/ToolNonCopperClear.py:1987 -#: flatcamTools/ToolNonCopperClear.py:2083 -#: flatcamTools/ToolNonCopperClear.py:2095 +#: flatcamTools/ToolNonCopperClear.py:1629 +#: flatcamTools/ToolNonCopperClear.py:1727 +#: flatcamTools/ToolNonCopperClear.py:1739 +#: flatcamTools/ToolNonCopperClear.py:1988 +#: flatcamTools/ToolNonCopperClear.py:2084 +#: flatcamTools/ToolNonCopperClear.py:2096 msgid "Buffering" msgstr "Buferare" @@ -2365,7 +2365,7 @@ msgstr "Se izoleaza..." msgid "Click on a polygon to isolate it." msgstr "Faceți clic pe un poligon pentru a-l izola." -#: FlatCAMObj.py:1117 FlatCAMObj.py:1222 flatcamTools/ToolPaint.py:1125 +#: FlatCAMObj.py:1117 FlatCAMObj.py:1222 flatcamTools/ToolPaint.py:1126 msgid "Added polygon" msgstr "S-a adăugat poligon" @@ -2375,7 +2375,7 @@ msgstr "" "Faceți clic pentru a adăuga următorul poligon sau faceți clic dreapta pentru " "a începe izolarea." -#: FlatCAMObj.py:1131 flatcamTools/ToolPaint.py:1139 +#: FlatCAMObj.py:1131 flatcamTools/ToolPaint.py:1140 msgid "Removed polygon" msgstr "Poligon eliminat" @@ -2385,11 +2385,11 @@ msgstr "" "Faceți clic pentru a adăuga / elimina următorul poligon sau faceți clic " "dreapta pentru a începe izolarea." -#: FlatCAMObj.py:1137 flatcamTools/ToolPaint.py:1145 +#: FlatCAMObj.py:1137 flatcamTools/ToolPaint.py:1146 msgid "No polygon detected under click position." msgstr "Nu a fost detectat niciun poligon sub poziția clicului." -#: FlatCAMObj.py:1158 flatcamTools/ToolPaint.py:1174 +#: FlatCAMObj.py:1158 flatcamTools/ToolPaint.py:1175 msgid "List of single polygons is empty. Aborting." msgstr "Lista Poligoanelor este goală. Intrerup." @@ -2398,8 +2398,8 @@ 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 +#: flatcamTools/ToolNonCopperClear.py:1658 +#: flatcamTools/ToolNonCopperClear.py:2012 msgid "Isolation geometry could not be generated." msgstr "Geometria de izolare nu a fost posibil să fie generată." @@ -2432,9 +2432,9 @@ 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:3032 FlatCAMObj.py:4490 flatcamEditors/FlatCAMGeoEditor.py:408 -#: flatcamGUI/FlatCAMGUI.py:438 flatcamGUI/FlatCAMGUI.py:930 -#: flatcamGUI/ObjectUI.py:1314 +#: FlatCAMObj.py:3032 FlatCAMObj.py:4493 flatcamEditors/FlatCAMGeoEditor.py:408 +#: flatcamGUI/FlatCAMGUI.py:459 flatcamGUI/FlatCAMGUI.py:1046 +#: flatcamGUI/ObjectUI.py:1353 msgid "Tool" msgstr "Unealta" @@ -2444,7 +2444,7 @@ msgstr "Nr. Unealtă" #: FlatCAMObj.py:3048 FlatCAMObj.py:3141 FlatCAMObj.py:3259 #: flatcamEditors/FlatCAMExcEditor.py:1507 -#: flatcamEditors/FlatCAMExcEditor.py:2967 flatcamGUI/ObjectUI.py:753 +#: flatcamEditors/FlatCAMExcEditor.py:2967 flatcamGUI/ObjectUI.py:777 #: flatcamTools/ToolNonCopperClear.py:120 flatcamTools/ToolPaint.py:123 #: flatcamTools/ToolPcbWizard.py:76 flatcamTools/ToolProperties.py:396 #: flatcamTools/ToolProperties.py:449 flatcamTools/ToolSolderPaste.py:84 @@ -2478,7 +2478,7 @@ msgstr "" "Valoare gresita pt self.defaults[\"feedrate_probe\"] sau self." "options[\"feedrate_probe\"]" -#: FlatCAMObj.py:3341 FlatCAMObj.py:5311 FlatCAMObj.py:5315 FlatCAMObj.py:5450 +#: FlatCAMObj.py:3341 FlatCAMObj.py:5314 FlatCAMObj.py:5318 FlatCAMObj.py:5453 msgid "Generating CNC Code" msgstr "CNC Code in curs de generare" @@ -2486,17 +2486,17 @@ msgstr "CNC Code in curs de generare" msgid "Add from Tool DB" msgstr "Adaugă Unealta din DB Unelte" -#: 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 +#: FlatCAMObj.py:3899 flatcamGUI/FlatCAMGUI.py:652 flatcamGUI/FlatCAMGUI.py:768 +#: flatcamGUI/FlatCAMGUI.py:963 flatcamGUI/FlatCAMGUI.py:1984 +#: flatcamGUI/FlatCAMGUI.py:2128 flatcamGUI/FlatCAMGUI.py:2343 +#: flatcamGUI/FlatCAMGUI.py:2522 flatcamGUI/ObjectUI.py:1324 #: 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:3985 FlatCAMObj.py:4354 FlatCAMObj.py:5061 FlatCAMObj.py:5701 +#: FlatCAMObj.py:3988 FlatCAMObj.py:4357 FlatCAMObj.py:5064 FlatCAMObj.py:5704 #: flatcamEditors/FlatCAMExcEditor.py:2459 #: flatcamEditors/FlatCAMGeoEditor.py:1078 #: flatcamEditors/FlatCAMGeoEditor.py:1112 @@ -2505,62 +2505,62 @@ msgstr "Copiază" #: 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 +#: flatcamTools/ToolNonCopperClear.py:1058 +#: flatcamTools/ToolNonCopperClear.py:1466 flatcamTools/ToolPaint.py:841 +#: flatcamTools/ToolPaint.py:1025 flatcamTools/ToolPaint.py:2097 +#: flatcamTools/ToolSolderPaste.py:882 flatcamTools/ToolSolderPaste.py:957 msgid "Wrong value format entered, use a number." msgstr "Valoare in format incorect, foloseşte un număr." -#: FlatCAMObj.py:4123 +#: FlatCAMObj.py:4126 msgid "Please enter the desired tool diameter in Float format." msgstr "Introdu diametrul dorit pt unealtă in format Real." -#: FlatCAMObj.py:4193 +#: FlatCAMObj.py:4196 msgid "Tool added in Tool Table." msgstr "Unealtă adăugată in Tabela de Unelte." -#: FlatCAMObj.py:4197 +#: FlatCAMObj.py:4200 msgid "Default Tool added. Wrong value format entered." msgstr "Unealta implicita adăugată dar valoarea are un format gresit." -#: FlatCAMObj.py:4304 FlatCAMObj.py:4313 +#: FlatCAMObj.py:4307 FlatCAMObj.py:4316 msgid "Failed. Select a tool to copy." msgstr "Eșuat. Selectează o unealtă pt copiere." -#: FlatCAMObj.py:4340 +#: FlatCAMObj.py:4343 msgid "Tool was copied in Tool Table." msgstr "Unealta a fost copiata in Tabela de Unelte." -#: FlatCAMObj.py:4368 +#: FlatCAMObj.py:4371 msgid "Tool was edited in Tool Table." msgstr "Unealta a fost editata in Tabela de Unelte." -#: FlatCAMObj.py:4397 FlatCAMObj.py:4406 +#: FlatCAMObj.py:4400 FlatCAMObj.py:4409 msgid "Failed. Select a tool to delete." msgstr "Eșuat. Selectează o unealtă pentru ștergere." -#: FlatCAMObj.py:4429 +#: FlatCAMObj.py:4432 msgid "Tool was deleted in Tool Table." msgstr "Unealta a fost stearsa din Tabela de Unelte." -#: FlatCAMObj.py:4490 flatcamGUI/ObjectUI.py:1314 +#: FlatCAMObj.py:4493 flatcamGUI/ObjectUI.py:1353 msgid "Parameters for" msgstr "Parametri pt" -#: FlatCAMObj.py:4921 +#: FlatCAMObj.py:4924 msgid "This Geometry can't be processed because it is" msgstr "Acest obiect Geometrie nu poate fi procesat deoarece" -#: FlatCAMObj.py:4923 +#: FlatCAMObj.py:4926 msgid "geometry" msgstr "geometria" -#: FlatCAMObj.py:4966 +#: FlatCAMObj.py:4969 msgid "Failed. No tool selected in the tool table ..." msgstr "Eșuat. Nici-o unealtă nu este selectată in Tabela de Unelte ..." -#: FlatCAMObj.py:5066 FlatCAMObj.py:5219 +#: FlatCAMObj.py:5069 FlatCAMObj.py:5222 msgid "" "Tool Offset is selected in Tool Table but no value is provided.\n" "Add a Tool Offset or change the Offset Type." @@ -2569,44 +2569,44 @@ msgstr "" "este oferita.\n" "Adaugă un ofset pt unealtă sau schimbă Tipul Ofset." -#: FlatCAMObj.py:5131 FlatCAMObj.py:5280 +#: FlatCAMObj.py:5134 FlatCAMObj.py:5283 msgid "G-Code parsing in progress..." msgstr "Analiza codului G în curs ..." -#: FlatCAMObj.py:5133 FlatCAMObj.py:5282 +#: FlatCAMObj.py:5136 FlatCAMObj.py:5285 msgid "G-Code parsing finished..." msgstr "Analizarea codului G s-a terminat ..." -#: FlatCAMObj.py:5141 +#: FlatCAMObj.py:5144 msgid "Finished G-Code processing" msgstr "Prelucrarea G-Code terminată" -#: FlatCAMObj.py:5143 FlatCAMObj.py:5294 +#: FlatCAMObj.py:5146 FlatCAMObj.py:5297 msgid "G-Code processing failed with error" msgstr "Procesarea G-Code a eșuat cu eroarea" -#: FlatCAMObj.py:5189 flatcamTools/ToolSolderPaste.py:1300 +#: FlatCAMObj.py:5192 flatcamTools/ToolSolderPaste.py:1303 msgid "Cancelled. Empty file, it has no geometry" msgstr "Anulat. Fişier gol, nu are geometrie" -#: FlatCAMObj.py:5292 FlatCAMObj.py:5443 +#: FlatCAMObj.py:5295 FlatCAMObj.py:5446 msgid "Finished G-Code processing..." msgstr "Prelucrarea G-Code terminată ..." -#: FlatCAMObj.py:5313 FlatCAMObj.py:5317 FlatCAMObj.py:5453 +#: FlatCAMObj.py:5316 FlatCAMObj.py:5320 FlatCAMObj.py:5456 msgid "CNCjob created" msgstr "CNCjob creat" -#: FlatCAMObj.py:5484 FlatCAMObj.py:5493 flatcamParsers/ParseGerber.py:1750 +#: FlatCAMObj.py:5487 FlatCAMObj.py:5496 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:5557 +#: FlatCAMObj.py:5560 msgid "Geometry Scale done." msgstr "Scalare Geometrie executată." -#: FlatCAMObj.py:5574 flatcamParsers/ParseGerber.py:1876 +#: FlatCAMObj.py:5577 flatcamParsers/ParseGerber.py:1876 msgid "" "An (x,y) pair of values are needed. Probable you entered only one value in " "the Offset field." @@ -2614,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:5631 +#: FlatCAMObj.py:5634 msgid "Geometry Offset done." msgstr "Ofset Geometrie executat." -#: FlatCAMObj.py:5660 +#: FlatCAMObj.py:5663 msgid "" "The Toolchange X,Y field in Edit -> Preferences has to be in the format (x, " "y)\n" @@ -2628,80 +2628,80 @@ msgstr "" "in formatul (x, y) \n" "dar are o singură valoare in loc de două." -#: FlatCAMObj.py:6335 FlatCAMObj.py:6993 FlatCAMObj.py:7189 +#: FlatCAMObj.py:6338 FlatCAMObj.py:6996 FlatCAMObj.py:7192 msgid "Basic" msgstr "Baza" -#: FlatCAMObj.py:6341 FlatCAMObj.py:6997 FlatCAMObj.py:7193 +#: FlatCAMObj.py:6344 FlatCAMObj.py:7000 FlatCAMObj.py:7196 msgid "Advanced" msgstr "Avansat" -#: FlatCAMObj.py:6384 +#: FlatCAMObj.py:6387 msgid "Plotting..." msgstr "Se afișeaza..." -#: FlatCAMObj.py:6407 FlatCAMObj.py:6412 flatcamTools/ToolSolderPaste.py:1506 +#: FlatCAMObj.py:6410 FlatCAMObj.py:6415 flatcamTools/ToolSolderPaste.py:1509 msgid "Export Machine Code ..." msgstr "Exporta CNC Cod Masina ..." -#: FlatCAMObj.py:6417 flatcamTools/ToolSolderPaste.py:1510 +#: FlatCAMObj.py:6420 flatcamTools/ToolSolderPaste.py:1513 msgid "Export Machine Code cancelled ..." msgstr "Exportul Codului Mașina a fost anulat ..." -#: FlatCAMObj.py:6439 +#: FlatCAMObj.py:6442 msgid "Machine Code file saved to" msgstr "Fişierul cu cod CNC este salvat in" -#: FlatCAMObj.py:6493 flatcamTools/ToolCalibration.py:1083 +#: FlatCAMObj.py:6496 flatcamTools/ToolCalibration.py:1083 msgid "Loaded Machine Code into Code Editor" msgstr "S-a încărcat Codul Masina în Editorul Cod" -#: FlatCAMObj.py:6628 +#: FlatCAMObj.py:6631 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:6630 +#: FlatCAMObj.py:6633 msgid "CNCJob object" msgstr "Obiect CNCJob" -#: FlatCAMObj.py:6681 +#: FlatCAMObj.py:6684 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:6695 +#: FlatCAMObj.py:6698 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:6700 +#: FlatCAMObj.py:6703 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:6717 flatcamEditors/FlatCAMTextEditor.py:224 -#: flatcamTools/ToolSolderPaste.py:1537 +#: FlatCAMObj.py:6720 flatcamEditors/FlatCAMTextEditor.py:224 +#: flatcamTools/ToolSolderPaste.py:1540 msgid "No such file or directory" msgstr "Nu exista un aşa fişier sau director" -#: FlatCAMObj.py:6731 flatcamEditors/FlatCAMTextEditor.py:236 +#: FlatCAMObj.py:6734 flatcamEditors/FlatCAMTextEditor.py:236 msgid "Saved to" msgstr "Salvat in" -#: FlatCAMObj.py:6741 FlatCAMObj.py:6751 +#: FlatCAMObj.py:6744 FlatCAMObj.py:6754 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:6755 +#: FlatCAMObj.py:6758 msgid "There is no preprocessor file." msgstr "Nu exista nici-un fişier postprocesor." -#: FlatCAMObj.py:7012 +#: FlatCAMObj.py:7015 msgid "Script Editor" msgstr "Editor Script" -#: FlatCAMObj.py:7293 +#: FlatCAMObj.py:7296 msgid "Document Editor" msgstr "Editor Documente" @@ -2709,24 +2709,24 @@ msgstr "Editor Documente" msgid "processes running." msgstr "procesele care rulează." -#: FlatCAMTranslation.py:92 +#: FlatCAMTranslation.py:103 msgid "The application will restart." msgstr "Aplicaţia va reporni ..." -#: FlatCAMTranslation.py:94 +#: FlatCAMTranslation.py:105 msgid "Are you sure do you want to change the current language to" msgstr "Esti sigur că dorești să schimbi din limba curentă in" -#: FlatCAMTranslation.py:95 +#: FlatCAMTranslation.py:106 msgid "Apply Language ..." msgstr "Aplică Traducere ..." -#: ObjectCollection.py:453 +#: ObjectCollection.py:454 #, python-brace-format msgid "Object renamed from {old} to {new}" msgstr "Obiectul este redenumit din {old} in {new}" -#: ObjectCollection.py:852 +#: ObjectCollection.py:853 msgid "Cause of error" msgstr "Motivul erorii" @@ -3060,8 +3060,8 @@ msgstr "" "dimetrul la care se face redimensionarea." #: flatcamEditors/FlatCAMExcEditor.py:983 -#: flatcamEditors/FlatCAMExcEditor.py:1052 flatcamGUI/FlatCAMGUI.py:2892 -#: flatcamGUI/FlatCAMGUI.py:3105 flatcamGUI/FlatCAMGUI.py:3322 +#: flatcamEditors/FlatCAMExcEditor.py:1052 flatcamGUI/FlatCAMGUI.py:3127 +#: flatcamGUI/FlatCAMGUI.py:3340 flatcamGUI/FlatCAMGUI.py:3557 msgid "Cancelled." msgstr "Anulat." @@ -3086,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:2820 +#: flatcamEditors/FlatCAMExcEditor.py:1480 flatcamGUI/PreferencesUI.py:2821 msgid "Excellon Editor" msgstr "Editor Excellon" @@ -3095,13 +3095,13 @@ msgstr "Editor Excellon" msgid "Name:" msgstr "Nume:" -#: flatcamEditors/FlatCAMExcEditor.py:1493 flatcamGUI/ObjectUI.py:733 -#: flatcamGUI/ObjectUI.py:1145 flatcamTools/ToolNonCopperClear.py:109 +#: flatcamEditors/FlatCAMExcEditor.py:1493 flatcamGUI/ObjectUI.py:757 +#: flatcamGUI/ObjectUI.py:1184 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:735 +#: flatcamEditors/FlatCAMExcEditor.py:1495 flatcamGUI/ObjectUI.py:759 msgid "" "Tools in this Excellon object\n" "when are used for drilling." @@ -3121,8 +3121,8 @@ msgstr "" "Adaugă/Șterge o unealtă la lista de unelte\n" "pentru acest obiect Excellon." -#: flatcamEditors/FlatCAMExcEditor.py:1529 flatcamGUI/ObjectUI.py:1258 -#: flatcamGUI/PreferencesUI.py:2851 +#: flatcamEditors/FlatCAMExcEditor.py:1529 flatcamGUI/ObjectUI.py:1297 +#: flatcamGUI/PreferencesUI.py:2852 msgid "Diameter for the new tool" msgstr "Diametru pentru noua unealtă (burghiu, freza)" @@ -3150,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:1749 +#: flatcamEditors/FlatCAMExcEditor.py:1573 flatcamGUI/FlatCAMGUI.py:1865 msgid "Resize Drill(s)" msgstr "Redimensionare operațiuni de găurire" @@ -3176,8 +3176,8 @@ msgstr "Redimensionează" msgid "Resize drill(s)" msgstr "Redimensionează op. de găurire." -#: flatcamEditors/FlatCAMExcEditor.py:1622 flatcamGUI/FlatCAMGUI.py:1748 -#: flatcamGUI/FlatCAMGUI.py:1958 +#: flatcamEditors/FlatCAMExcEditor.py:1622 flatcamGUI/FlatCAMGUI.py:1864 +#: flatcamGUI/FlatCAMGUI.py:2116 msgid "Add Drill Array" msgstr "Adaugă o arie de op. găurire" @@ -3201,17 +3201,17 @@ msgstr "Liniar" #: flatcamEditors/FlatCAMExcEditor.py:1634 #: flatcamEditors/FlatCAMExcEditor.py:1848 -#: flatcamEditors/FlatCAMGrbEditor.py:2696 flatcamGUI/ObjectUI.py:300 -#: flatcamGUI/PreferencesUI.py:3999 flatcamGUI/PreferencesUI.py:6396 +#: flatcamEditors/FlatCAMGrbEditor.py:2696 flatcamGUI/ObjectUI.py:311 +#: flatcamGUI/PreferencesUI.py:4000 flatcamGUI/PreferencesUI.py:6397 #: flatcamTools/ToolFiducials.py:220 flatcamTools/ToolNonCopperClear.py:221 msgid "Circular" msgstr "Circular" -#: flatcamEditors/FlatCAMExcEditor.py:1642 flatcamGUI/PreferencesUI.py:2862 +#: flatcamEditors/FlatCAMExcEditor.py:1642 flatcamGUI/PreferencesUI.py:2863 msgid "Nr of drills" msgstr "Nr. op. găurire" -#: flatcamEditors/FlatCAMExcEditor.py:1643 flatcamGUI/PreferencesUI.py:2864 +#: flatcamEditors/FlatCAMExcEditor.py:1643 flatcamGUI/PreferencesUI.py:2865 msgid "Specify how many drills to be in the array." msgstr "Specifica cate operațiuni de găurire să fie incluse in arie." @@ -3222,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:2972 +#: flatcamEditors/FlatCAMGrbEditor.py:2773 flatcamGUI/PreferencesUI.py:2973 msgid "Direction" msgstr "Direcţie" #: flatcamEditors/FlatCAMExcEditor.py:1663 #: flatcamEditors/FlatCAMExcEditor.py:1878 -#: flatcamEditors/FlatCAMGrbEditor.py:2726 flatcamGUI/PreferencesUI.py:1940 -#: flatcamGUI/PreferencesUI.py:2880 flatcamGUI/PreferencesUI.py:3028 +#: flatcamEditors/FlatCAMGrbEditor.py:2726 flatcamGUI/PreferencesUI.py:1941 +#: flatcamGUI/PreferencesUI.py:2881 flatcamGUI/PreferencesUI.py:3029 msgid "" "Direction on which the linear array is oriented:\n" "- 'X' - horizontal axis \n" @@ -3244,9 +3244,9 @@ msgstr "" #: flatcamEditors/FlatCAMExcEditor.py:1670 #: flatcamEditors/FlatCAMExcEditor.py:1792 #: flatcamEditors/FlatCAMExcEditor.py:1885 -#: flatcamEditors/FlatCAMGrbEditor.py:2733 flatcamGUI/PreferencesUI.py:1946 -#: flatcamGUI/PreferencesUI.py:2886 flatcamGUI/PreferencesUI.py:2981 -#: flatcamGUI/PreferencesUI.py:3034 flatcamGUI/PreferencesUI.py:4822 +#: flatcamEditors/FlatCAMGrbEditor.py:2733 flatcamGUI/PreferencesUI.py:1947 +#: flatcamGUI/PreferencesUI.py:2887 flatcamGUI/PreferencesUI.py:2982 +#: flatcamGUI/PreferencesUI.py:3035 flatcamGUI/PreferencesUI.py:4823 #: flatcamTools/ToolFilm.py:256 msgid "X" msgstr "X" @@ -3254,9 +3254,9 @@ msgstr "X" #: flatcamEditors/FlatCAMExcEditor.py:1671 #: flatcamEditors/FlatCAMExcEditor.py:1793 #: flatcamEditors/FlatCAMExcEditor.py:1886 -#: flatcamEditors/FlatCAMGrbEditor.py:2734 flatcamGUI/PreferencesUI.py:1947 -#: flatcamGUI/PreferencesUI.py:2887 flatcamGUI/PreferencesUI.py:2982 -#: flatcamGUI/PreferencesUI.py:3035 flatcamGUI/PreferencesUI.py:4823 +#: flatcamEditors/FlatCAMGrbEditor.py:2734 flatcamGUI/PreferencesUI.py:1948 +#: flatcamGUI/PreferencesUI.py:2888 flatcamGUI/PreferencesUI.py:2983 +#: flatcamGUI/PreferencesUI.py:3036 flatcamGUI/PreferencesUI.py:4824 #: flatcamTools/ToolFilm.py:257 msgid "Y" msgstr "Y" @@ -3271,11 +3271,11 @@ msgstr "Y" #: flatcamEditors/FlatCAMExcEditor.py:1939 #: flatcamEditors/FlatCAMGrbEditor.py:2735 #: flatcamEditors/FlatCAMGrbEditor.py:2752 -#: flatcamEditors/FlatCAMGrbEditor.py:2788 flatcamGUI/PreferencesUI.py:1948 -#: 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 +#: flatcamEditors/FlatCAMGrbEditor.py:2788 flatcamGUI/PreferencesUI.py:1949 +#: flatcamGUI/PreferencesUI.py:1967 flatcamGUI/PreferencesUI.py:2889 +#: flatcamGUI/PreferencesUI.py:2908 flatcamGUI/PreferencesUI.py:2984 +#: flatcamGUI/PreferencesUI.py:2989 flatcamGUI/PreferencesUI.py:3037 +#: flatcamGUI/PreferencesUI.py:3058 flatcamGUI/PreferencesUI.py:5216 #: flatcamTools/ToolDistance.py:66 flatcamTools/ToolDistanceMin.py:68 #: flatcamTools/ToolTransform.py:62 msgid "Angle" @@ -3283,15 +3283,15 @@ msgstr "Unghi" #: flatcamEditors/FlatCAMExcEditor.py:1676 #: flatcamEditors/FlatCAMExcEditor.py:1891 -#: flatcamEditors/FlatCAMGrbEditor.py:2739 flatcamGUI/PreferencesUI.py:1954 -#: flatcamGUI/PreferencesUI.py:2894 flatcamGUI/PreferencesUI.py:3042 +#: flatcamEditors/FlatCAMGrbEditor.py:2739 flatcamGUI/PreferencesUI.py:1955 +#: flatcamGUI/PreferencesUI.py:2895 flatcamGUI/PreferencesUI.py:3043 msgid "Pitch" msgstr "Pas" #: flatcamEditors/FlatCAMExcEditor.py:1678 #: flatcamEditors/FlatCAMExcEditor.py:1893 -#: flatcamEditors/FlatCAMGrbEditor.py:2741 flatcamGUI/PreferencesUI.py:1956 -#: flatcamGUI/PreferencesUI.py:2896 flatcamGUI/PreferencesUI.py:3044 +#: flatcamEditors/FlatCAMGrbEditor.py:2741 flatcamGUI/PreferencesUI.py:1957 +#: flatcamGUI/PreferencesUI.py:2897 flatcamGUI/PreferencesUI.py:3045 msgid "Pitch = Distance between elements of the array." msgstr "Pas = Distanta între elementele ariei." @@ -3320,26 +3320,26 @@ msgstr "" #: flatcamEditors/FlatCAMExcEditor.py:1719 #: flatcamEditors/FlatCAMExcEditor.py:1935 -#: flatcamEditors/FlatCAMGrbEditor.py:2783 flatcamGUI/PreferencesUI.py:1988 -#: flatcamGUI/PreferencesUI.py:2634 flatcamGUI/PreferencesUI.py:2930 -#: flatcamGUI/PreferencesUI.py:3080 flatcamGUI/PreferencesUI.py:3508 +#: flatcamEditors/FlatCAMGrbEditor.py:2783 flatcamGUI/PreferencesUI.py:1989 +#: flatcamGUI/PreferencesUI.py:2635 flatcamGUI/PreferencesUI.py:2931 +#: flatcamGUI/PreferencesUI.py:3081 flatcamGUI/PreferencesUI.py:3509 msgid "CW" msgstr "Orar" #: flatcamEditors/FlatCAMExcEditor.py:1720 #: flatcamEditors/FlatCAMExcEditor.py:1936 -#: flatcamEditors/FlatCAMGrbEditor.py:2784 flatcamGUI/PreferencesUI.py:1989 -#: flatcamGUI/PreferencesUI.py:2635 flatcamGUI/PreferencesUI.py:2931 -#: flatcamGUI/PreferencesUI.py:3081 flatcamGUI/PreferencesUI.py:3509 +#: flatcamEditors/FlatCAMGrbEditor.py:2784 flatcamGUI/PreferencesUI.py:1990 +#: flatcamGUI/PreferencesUI.py:2636 flatcamGUI/PreferencesUI.py:2932 +#: flatcamGUI/PreferencesUI.py:3082 flatcamGUI/PreferencesUI.py:3510 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:2909 -#: flatcamGUI/PreferencesUI.py:2939 flatcamGUI/PreferencesUI.py:3059 -#: flatcamGUI/PreferencesUI.py:3089 +#: flatcamEditors/FlatCAMGrbEditor.py:2790 flatcamGUI/PreferencesUI.py:1969 +#: flatcamGUI/PreferencesUI.py:1998 flatcamGUI/PreferencesUI.py:2910 +#: flatcamGUI/PreferencesUI.py:2940 flatcamGUI/PreferencesUI.py:3060 +#: flatcamGUI/PreferencesUI.py:3090 msgid "Angle at which each element in circular array is placed." msgstr "" "Unghiul la care fiecare element al ariei circulare este plasat fata de " @@ -3357,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:2956 +#: flatcamEditors/FlatCAMExcEditor.py:1769 flatcamGUI/PreferencesUI.py:2957 #: flatcamTools/ToolProperties.py:555 msgid "Length" msgstr "Lungime" -#: flatcamEditors/FlatCAMExcEditor.py:1771 flatcamGUI/PreferencesUI.py:2958 +#: flatcamEditors/FlatCAMExcEditor.py:1771 flatcamGUI/PreferencesUI.py:2959 msgid "Length = The length of the slot." msgstr "Lungime = Lungimea slotului." -#: flatcamEditors/FlatCAMExcEditor.py:1785 flatcamGUI/PreferencesUI.py:2974 +#: flatcamEditors/FlatCAMExcEditor.py:1785 flatcamGUI/PreferencesUI.py:2975 msgid "" "Direction on which the slot is oriented:\n" "- 'X' - horizontal axis \n" @@ -3406,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:3013 +#: flatcamEditors/FlatCAMExcEditor.py:1856 flatcamGUI/PreferencesUI.py:3014 msgid "Nr of slots" msgstr "Nr de sloturi" -#: flatcamEditors/FlatCAMExcEditor.py:1857 flatcamGUI/PreferencesUI.py:3015 +#: flatcamEditors/FlatCAMExcEditor.py:1857 flatcamGUI/PreferencesUI.py:3016 msgid "Specify how many slots to be in the array." msgstr "Specificați câte sloturi trebuie să fie în arie." @@ -3423,7 +3423,7 @@ msgstr "" "Salvează și reeditează obiectul Excellon dacă ai nevoie să adaugi această " "unealtă. " -#: flatcamEditors/FlatCAMExcEditor.py:2480 flatcamGUI/FlatCAMGUI.py:3491 +#: flatcamEditors/FlatCAMExcEditor.py:2480 flatcamGUI/FlatCAMGUI.py:3726 msgid "Added new tool with dia" msgstr "O nouă unealtă este adăugată cu diametrul" @@ -3500,7 +3500,7 @@ msgid "Round" msgstr "Rotund" #: flatcamEditors/FlatCAMGeoEditor.py:96 -#: flatcamEditors/FlatCAMGrbEditor.py:2552 flatcamGUI/PreferencesUI.py:5989 +#: flatcamEditors/FlatCAMGrbEditor.py:2552 flatcamGUI/PreferencesUI.py:5990 #: flatcamTools/ToolQRCode.py:198 msgid "Square" msgstr "Patrat" @@ -3523,8 +3523,8 @@ msgid "Full Buffer" msgstr "Bufer complet" #: flatcamEditors/FlatCAMGeoEditor.py:133 -#: flatcamEditors/FlatCAMGeoEditor.py:2758 flatcamGUI/FlatCAMGUI.py:1658 -#: flatcamGUI/PreferencesUI.py:2008 +#: flatcamEditors/FlatCAMGeoEditor.py:2758 flatcamGUI/FlatCAMGUI.py:1774 +#: flatcamGUI/PreferencesUI.py:2009 msgid "Buffer Tool" msgstr "Unealta Bufer" @@ -3544,7 +3544,7 @@ msgstr "" msgid "Font" msgstr "Font" -#: flatcamEditors/FlatCAMGeoEditor.py:324 flatcamGUI/FlatCAMGUI.py:1919 +#: flatcamEditors/FlatCAMGeoEditor.py:324 flatcamGUI/FlatCAMGUI.py:2054 msgid "Text" msgstr "Text" @@ -3552,13 +3552,13 @@ msgstr "Text" msgid "Text Tool" msgstr "Unealta Text" -#: flatcamEditors/FlatCAMGeoEditor.py:442 flatcamGUI/ObjectUI.py:348 -#: flatcamGUI/PreferencesUI.py:1449 flatcamGUI/PreferencesUI.py:3144 -#: flatcamGUI/PreferencesUI.py:4500 +#: flatcamEditors/FlatCAMGeoEditor.py:442 flatcamGUI/ObjectUI.py:359 +#: flatcamGUI/PreferencesUI.py:1450 flatcamGUI/PreferencesUI.py:3145 +#: flatcamGUI/PreferencesUI.py:4501 msgid "Tool dia" msgstr "Dia unealtă" -#: flatcamEditors/FlatCAMGeoEditor.py:444 flatcamGUI/PreferencesUI.py:4502 +#: flatcamEditors/FlatCAMGeoEditor.py:444 flatcamGUI/PreferencesUI.py:4503 msgid "" "Diameter of the tool to\n" "be used in the operation." @@ -3566,13 +3566,13 @@ 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:4107 -#: flatcamGUI/PreferencesUI.py:4532 flatcamTools/ToolNonCopperClear.py:319 +#: flatcamEditors/FlatCAMGeoEditor.py:455 flatcamGUI/PreferencesUI.py:4108 +#: flatcamGUI/PreferencesUI.py:4533 flatcamTools/ToolNonCopperClear.py:319 #: flatcamTools/ToolPaint.py:219 msgid "Overlap Rate" msgstr "Rată suprapunere" -#: flatcamEditors/FlatCAMGeoEditor.py:457 flatcamGUI/PreferencesUI.py:4534 +#: flatcamEditors/FlatCAMGeoEditor.py:457 flatcamGUI/PreferencesUI.py:4535 #: flatcamTools/ToolPaint.py:221 msgid "" "How much (fraction) of the tool width to overlap each tool pass.\n" @@ -3592,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: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 +#: flatcamEditors/FlatCAMGeoEditor.py:475 flatcamGUI/PreferencesUI.py:4127 +#: flatcamGUI/PreferencesUI.py:4348 flatcamGUI/PreferencesUI.py:4553 +#: flatcamGUI/PreferencesUI.py:6107 flatcamGUI/PreferencesUI.py:6264 +#: flatcamGUI/PreferencesUI.py:6349 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:477 flatcamGUI/PreferencesUI.py:4554 +#: flatcamEditors/FlatCAMGeoEditor.py:477 flatcamGUI/PreferencesUI.py:4555 #: flatcamTools/ToolPaint.py:240 msgid "" "Distance by which to avoid\n" @@ -3613,8 +3613,8 @@ msgstr "" "poligonului care trebuie\n" "să fie >pictat<." -#: flatcamEditors/FlatCAMGeoEditor.py:489 flatcamGUI/PreferencesUI.py:4139 -#: flatcamGUI/PreferencesUI.py:4567 flatcamTools/ToolNonCopperClear.py:348 +#: flatcamEditors/FlatCAMGeoEditor.py:489 flatcamGUI/PreferencesUI.py:4140 +#: flatcamGUI/PreferencesUI.py:4568 flatcamTools/ToolNonCopperClear.py:348 #: flatcamTools/ToolPaint.py:251 msgid "Method" msgstr "Metodă" @@ -3627,20 +3627,20 @@ msgstr "" "Algoritm pentru a picta poligonul
Standard: Pas fix spre interior." "
Samanta: Spre exterior pornind de la un punct-samanta." -#: flatcamEditors/FlatCAMGeoEditor.py:496 flatcamGUI/PreferencesUI.py:4148 -#: flatcamGUI/PreferencesUI.py:4576 flatcamTools/ToolNonCopperClear.py:357 +#: flatcamEditors/FlatCAMGeoEditor.py:496 flatcamGUI/PreferencesUI.py:4149 +#: flatcamGUI/PreferencesUI.py:4577 flatcamTools/ToolNonCopperClear.py:357 #: flatcamTools/ToolPaint.py:260 msgid "Standard" msgstr "Standard" -#: flatcamEditors/FlatCAMGeoEditor.py:497 flatcamGUI/PreferencesUI.py:4149 -#: flatcamGUI/PreferencesUI.py:4577 flatcamTools/ToolNonCopperClear.py:358 +#: flatcamEditors/FlatCAMGeoEditor.py:497 flatcamGUI/PreferencesUI.py:4150 +#: flatcamGUI/PreferencesUI.py:4578 flatcamTools/ToolNonCopperClear.py:358 #: flatcamTools/ToolPaint.py:261 msgid "Seed-based" msgstr "Punct-samanta" -#: flatcamEditors/FlatCAMGeoEditor.py:498 flatcamGUI/PreferencesUI.py:4150 -#: flatcamGUI/PreferencesUI.py:4578 flatcamTools/ToolNonCopperClear.py:359 +#: flatcamEditors/FlatCAMGeoEditor.py:498 flatcamGUI/PreferencesUI.py:4151 +#: flatcamGUI/PreferencesUI.py:4579 flatcamTools/ToolNonCopperClear.py:359 #: flatcamTools/ToolPaint.py:262 msgid "Straight lines" msgstr "Linii drepte" @@ -3649,8 +3649,8 @@ msgstr "Linii drepte" msgid "Connect:" msgstr "Conectează:" -#: flatcamEditors/FlatCAMGeoEditor.py:507 flatcamGUI/PreferencesUI.py:4159 -#: flatcamGUI/PreferencesUI.py:4585 flatcamTools/ToolNonCopperClear.py:366 +#: flatcamEditors/FlatCAMGeoEditor.py:507 flatcamGUI/PreferencesUI.py:4160 +#: flatcamGUI/PreferencesUI.py:4586 flatcamTools/ToolNonCopperClear.py:366 #: flatcamTools/ToolPaint.py:269 msgid "" "Draw lines between resulting\n" @@ -3664,8 +3664,8 @@ msgstr "" msgid "Contour:" msgstr "Contur:" -#: flatcamEditors/FlatCAMGeoEditor.py:517 flatcamGUI/PreferencesUI.py:4170 -#: flatcamGUI/PreferencesUI.py:4595 flatcamTools/ToolNonCopperClear.py:375 +#: flatcamEditors/FlatCAMGeoEditor.py:517 flatcamGUI/PreferencesUI.py:4171 +#: flatcamGUI/PreferencesUI.py:4596 flatcamTools/ToolNonCopperClear.py:375 #: flatcamTools/ToolPaint.py:278 msgid "" "Cut around the perimeter of the polygon\n" @@ -3674,13 +3674,13 @@ msgstr "" "Taie de-a lungul perimetrului poligonului\n" "pentru a elimina bavurile." -#: flatcamEditors/FlatCAMGeoEditor.py:529 flatcamGUI/FlatCAMGUI.py:1921 +#: flatcamEditors/FlatCAMGeoEditor.py:529 flatcamGUI/FlatCAMGUI.py:2058 msgid "Paint" msgstr "Pictează" -#: flatcamEditors/FlatCAMGeoEditor.py:547 flatcamGUI/FlatCAMGUI.py:749 -#: flatcamGUI/FlatCAMGUI.py:2194 flatcamGUI/ObjectUI.py:1694 -#: flatcamTools/ToolPaint.py:41 flatcamTools/ToolPaint.py:538 +#: flatcamEditors/FlatCAMGeoEditor.py:547 flatcamGUI/FlatCAMGUI.py:819 +#: flatcamGUI/FlatCAMGUI.py:2388 flatcamGUI/ObjectUI.py:1733 +#: flatcamTools/ToolPaint.py:41 flatcamTools/ToolPaint.py:539 msgid "Paint Tool" msgstr "Unealta Paint" @@ -3691,7 +3691,7 @@ msgstr "Operaţie Paint anulată. Nici-o forma selectată." #: flatcamEditors/FlatCAMGeoEditor.py:597 #: flatcamEditors/FlatCAMGeoEditor.py:2784 #: flatcamEditors/FlatCAMGeoEditor.py:2814 -#: flatcamEditors/FlatCAMGeoEditor.py:2844 flatcamGUI/PreferencesUI.py:3140 +#: flatcamEditors/FlatCAMGeoEditor.py:2844 flatcamGUI/PreferencesUI.py:3141 #: flatcamTools/ToolProperties.py:120 flatcamTools/ToolProperties.py:158 msgid "Tools" msgstr "Unelte" @@ -3699,15 +3699,15 @@ msgstr "Unelte" #: flatcamEditors/FlatCAMGeoEditor.py:608 #: flatcamEditors/FlatCAMGeoEditor.py:992 #: flatcamEditors/FlatCAMGrbEditor.py:5011 -#: flatcamEditors/FlatCAMGrbEditor.py:5408 flatcamGUI/FlatCAMGUI.py:762 -#: flatcamGUI/FlatCAMGUI.py:2207 flatcamTools/ToolTransform.py:371 +#: flatcamEditors/FlatCAMGrbEditor.py:5408 flatcamGUI/FlatCAMGUI.py:840 +#: flatcamGUI/FlatCAMGUI.py:2406 flatcamTools/ToolTransform.py:371 msgid "Transform Tool" msgstr "Unealta Transformare" #: flatcamEditors/FlatCAMGeoEditor.py:609 #: flatcamEditors/FlatCAMGeoEditor.py:674 #: flatcamEditors/FlatCAMGrbEditor.py:5012 -#: flatcamEditors/FlatCAMGrbEditor.py:5077 flatcamGUI/PreferencesUI.py:5207 +#: flatcamEditors/FlatCAMGrbEditor.py:5077 flatcamGUI/PreferencesUI.py:5208 #: flatcamTools/ToolTransform.py:25 flatcamTools/ToolTransform.py:79 msgid "Rotate" msgstr "Rotaţie" @@ -3719,10 +3719,10 @@ msgstr "Deformare" #: flatcamEditors/FlatCAMGeoEditor.py:611 #: flatcamEditors/FlatCAMGrbEditor.py:2600 -#: 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 +#: flatcamEditors/FlatCAMGrbEditor.py:5014 flatcamGUI/FlatCAMGUI.py:954 +#: flatcamGUI/FlatCAMGUI.py:1986 flatcamGUI/FlatCAMGUI.py:2101 +#: flatcamGUI/FlatCAMGUI.py:2514 flatcamGUI/ObjectUI.py:103 +#: flatcamGUI/ObjectUI.py:121 flatcamGUI/PreferencesUI.py:5258 #: flatcamTools/ToolTransform.py:27 msgid "Scale" msgstr "Scalare" @@ -3733,17 +3733,17 @@ msgid "Mirror (Flip)" msgstr "Oglindire" #: 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 +#: flatcamEditors/FlatCAMGrbEditor.py:5016 flatcamGUI/ObjectUI.py:132 +#: flatcamGUI/ObjectUI.py:148 flatcamGUI/ObjectUI.py:1217 +#: flatcamGUI/ObjectUI.py:1918 flatcamGUI/PreferencesUI.py:4196 +#: flatcamGUI/PreferencesUI.py:5305 flatcamTools/ToolNonCopperClear.py:397 #: flatcamTools/ToolTransform.py:29 msgid "Offset" msgstr "Ofset" #: flatcamEditors/FlatCAMGeoEditor.py:626 -#: flatcamEditors/FlatCAMGrbEditor.py:5029 flatcamGUI/FlatCAMGUI.py:709 -#: flatcamGUI/FlatCAMGUI.py:2160 +#: flatcamEditors/FlatCAMGrbEditor.py:5029 flatcamGUI/FlatCAMGUI.py:761 +#: flatcamGUI/FlatCAMGUI.py:2335 msgid "Editor" msgstr "Editor" @@ -3753,7 +3753,7 @@ msgid "Angle:" msgstr "Unghi:" #: flatcamEditors/FlatCAMGeoEditor.py:660 -#: flatcamEditors/FlatCAMGrbEditor.py:5063 flatcamGUI/PreferencesUI.py:5217 +#: flatcamEditors/FlatCAMGrbEditor.py:5063 flatcamGUI/PreferencesUI.py:5218 #: flatcamTools/ToolTransform.py:64 msgid "" "Angle for Rotation action, in degrees.\n" @@ -3785,8 +3785,8 @@ msgstr "Unghi X:" #: flatcamEditors/FlatCAMGeoEditor.py:701 #: flatcamEditors/FlatCAMGeoEditor.py:721 #: flatcamEditors/FlatCAMGrbEditor.py:5104 -#: flatcamEditors/FlatCAMGrbEditor.py:5124 flatcamGUI/PreferencesUI.py:5236 -#: flatcamGUI/PreferencesUI.py:5250 flatcamTools/ToolCalibration.py:508 +#: flatcamEditors/FlatCAMGrbEditor.py:5124 flatcamGUI/PreferencesUI.py:5237 +#: flatcamGUI/PreferencesUI.py:5251 flatcamTools/ToolCalibration.py:508 #: flatcamTools/ToolCalibration.py:521 msgid "" "Angle for Skew action, in degrees.\n" @@ -3868,7 +3868,7 @@ msgid "Scale Y" msgstr "Scalează Y" #: flatcamEditors/FlatCAMGeoEditor.py:800 -#: flatcamEditors/FlatCAMGrbEditor.py:5203 flatcamGUI/PreferencesUI.py:5286 +#: flatcamEditors/FlatCAMGrbEditor.py:5203 flatcamGUI/PreferencesUI.py:5287 #: flatcamTools/ToolTransform.py:191 msgid "Link" msgstr "Legatura" @@ -3883,7 +3883,7 @@ msgstr "" "folsoind factorul: Factor X pentru ambele axe." #: flatcamEditors/FlatCAMGeoEditor.py:808 -#: flatcamEditors/FlatCAMGrbEditor.py:5211 flatcamGUI/PreferencesUI.py:5294 +#: flatcamEditors/FlatCAMGrbEditor.py:5211 flatcamGUI/PreferencesUI.py:5295 #: flatcamTools/ToolTransform.py:199 msgid "Scale Reference" msgstr "Referința scalare" @@ -4461,10 +4461,10 @@ msgstr "cu diametrul" msgid "Copy cancelled. No shape selected." msgstr "Copiere anulată. Nici-o forma geometrică nu este selectată." -#: 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 +#: flatcamEditors/FlatCAMGeoEditor.py:4025 flatcamGUI/FlatCAMGUI.py:3435 +#: flatcamGUI/FlatCAMGUI.py:3482 flatcamGUI/FlatCAMGUI.py:3501 +#: flatcamGUI/FlatCAMGUI.py:3636 flatcamGUI/FlatCAMGUI.py:3649 +#: flatcamGUI/FlatCAMGUI.py:3683 flatcamGUI/FlatCAMGUI.py:3741 msgid "Click on target point." msgstr "Click pe punctul tinta." @@ -4695,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:1934 -#: flatcamGUI/PreferencesUI.py:1847 +#: flatcamEditors/FlatCAMGrbEditor.py:2376 flatcamGUI/FlatCAMGUI.py:2079 +#: flatcamGUI/PreferencesUI.py:1848 msgid "Gerber Editor" msgstr "Editor Gerber" -#: flatcamEditors/FlatCAMGrbEditor.py:2396 flatcamGUI/ObjectUI.py:212 +#: flatcamEditors/FlatCAMGrbEditor.py:2396 flatcamGUI/ObjectUI.py:223 #: flatcamTools/ToolProperties.py:156 msgid "Apertures" msgstr "Aperturi" -#: flatcamEditors/FlatCAMGrbEditor.py:2398 flatcamGUI/ObjectUI.py:214 +#: flatcamEditors/FlatCAMGrbEditor.py:2398 flatcamGUI/ObjectUI.py:225 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:247 +#: flatcamEditors/FlatCAMGrbEditor.py:3755 flatcamGUI/ObjectUI.py:258 msgid "Code" msgstr "Cod" #: flatcamEditors/FlatCAMGrbEditor.py:2409 -#: flatcamEditors/FlatCAMGrbEditor.py:3755 flatcamGUI/ObjectUI.py:247 -#: flatcamGUI/ObjectUI.py:1178 flatcamGUI/ObjectUI.py:1866 +#: flatcamEditors/FlatCAMGrbEditor.py:3755 flatcamGUI/ObjectUI.py:258 +#: flatcamGUI/ObjectUI.py:1217 flatcamGUI/ObjectUI.py:1918 msgid "Type" msgstr "Tip" #: flatcamEditors/FlatCAMGrbEditor.py:2409 -#: flatcamEditors/FlatCAMGrbEditor.py:3755 flatcamGUI/ObjectUI.py:247 -#: flatcamGUI/PreferencesUI.py:6201 flatcamGUI/PreferencesUI.py:6230 -#: flatcamGUI/PreferencesUI.py:6332 flatcamTools/ToolCopperThieving.py:260 +#: flatcamEditors/FlatCAMGrbEditor.py:3755 flatcamGUI/ObjectUI.py:258 +#: flatcamGUI/PreferencesUI.py:6202 flatcamGUI/PreferencesUI.py:6231 +#: flatcamGUI/PreferencesUI.py:6333 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:247 +#: flatcamEditors/FlatCAMGrbEditor.py:3755 flatcamGUI/ObjectUI.py:258 msgid "Dim" msgstr "Dim" -#: flatcamEditors/FlatCAMGrbEditor.py:2413 flatcamGUI/ObjectUI.py:251 +#: flatcamEditors/FlatCAMGrbEditor.py:2413 flatcamGUI/ObjectUI.py:262 msgid "Index" msgstr "Index" #: flatcamEditors/FlatCAMGrbEditor.py:2415 -#: flatcamEditors/FlatCAMGrbEditor.py:2444 flatcamGUI/ObjectUI.py:253 +#: flatcamEditors/FlatCAMGrbEditor.py:2444 flatcamGUI/ObjectUI.py:264 msgid "Aperture Code" msgstr "Cod" -#: flatcamEditors/FlatCAMGrbEditor.py:2417 flatcamGUI/ObjectUI.py:255 +#: flatcamEditors/FlatCAMGrbEditor.py:2417 flatcamGUI/ObjectUI.py:266 msgid "Type of aperture: circular, rectangle, macros etc" msgstr "" "Tipul aperturilor:\n" @@ -4751,11 +4751,11 @@ msgstr "" "- macro-uri\n" "etc" -#: flatcamEditors/FlatCAMGrbEditor.py:2419 flatcamGUI/ObjectUI.py:257 +#: flatcamEditors/FlatCAMGrbEditor.py:2419 flatcamGUI/ObjectUI.py:268 msgid "Aperture Size:" msgstr "Dim. aper.:" -#: flatcamEditors/FlatCAMGrbEditor.py:2421 flatcamGUI/ObjectUI.py:259 +#: flatcamEditors/FlatCAMGrbEditor.py:2421 flatcamGUI/ObjectUI.py:270 msgid "" "Aperture Dimensions:\n" " - (width, height) for R, O type.\n" @@ -4765,7 +4765,7 @@ msgstr "" "- (latime, inaltime) pt tipurile R, O.\n" "- (diametru, nVertices) pt tipul P" -#: flatcamEditors/FlatCAMGrbEditor.py:2445 flatcamGUI/PreferencesUI.py:1878 +#: flatcamEditors/FlatCAMGrbEditor.py:2445 flatcamGUI/PreferencesUI.py:1879 msgid "Code for the new aperture" msgstr "Diametru pentru noua apertură" @@ -4840,7 +4840,7 @@ msgstr "Bufer pt apertură" msgid "Buffer a aperture in the aperture list" msgstr "Fă bufer pt o apertură din lista de aperturi" -#: flatcamEditors/FlatCAMGrbEditor.py:2542 flatcamGUI/PreferencesUI.py:2012 +#: flatcamEditors/FlatCAMGrbEditor.py:2542 flatcamGUI/PreferencesUI.py:2013 msgid "Buffer distance" msgstr "Distanta pt bufer" @@ -4862,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:842 -#: flatcamGUI/FlatCAMGUI.py:1868 flatcamGUI/FlatCAMGUI.py:1920 -#: flatcamGUI/FlatCAMGUI.py:1947 flatcamGUI/FlatCAMGUI.py:2283 +#: flatcamEditors/FlatCAMGrbEditor.py:2560 flatcamGUI/FlatCAMGUI.py:952 +#: flatcamGUI/FlatCAMGUI.py:1984 flatcamGUI/FlatCAMGUI.py:2056 +#: flatcamGUI/FlatCAMGUI.py:2099 flatcamGUI/FlatCAMGUI.py:2512 msgid "Buffer" msgstr "Bufer" @@ -4876,7 +4876,7 @@ msgstr "Scalează aper" msgid "Scale a aperture in the aperture list" msgstr "Scalează o apertură in lista de aperturi" -#: flatcamEditors/FlatCAMGrbEditor.py:2585 flatcamGUI/PreferencesUI.py:2027 +#: flatcamEditors/FlatCAMGrbEditor.py:2585 flatcamGUI/PreferencesUI.py:2028 msgid "Scale factor" msgstr "Factor Scalare" @@ -4940,8 +4940,8 @@ msgstr "Șterge" msgid "Clear all the markings." msgstr "Ștergeți toate marcajele." -#: flatcamEditors/FlatCAMGrbEditor.py:2684 flatcamGUI/FlatCAMGUI.py:832 -#: flatcamGUI/FlatCAMGUI.py:1868 flatcamGUI/FlatCAMGUI.py:2273 +#: flatcamEditors/FlatCAMGrbEditor.py:2684 flatcamGUI/FlatCAMGUI.py:937 +#: flatcamGUI/FlatCAMGUI.py:1984 flatcamGUI/FlatCAMGUI.py:2497 msgid "Add Pad Array" msgstr "Adaugă o arie de paduri" @@ -4957,11 +4957,11 @@ msgstr "" "Selectează tipul de arii de paduri.\n" "Poate fi Liniar X(Y) sau Circular" -#: flatcamEditors/FlatCAMGrbEditor.py:2703 flatcamGUI/PreferencesUI.py:1915 +#: flatcamEditors/FlatCAMGrbEditor.py:2703 flatcamGUI/PreferencesUI.py:1916 msgid "Nr of pads" msgstr "Nr. paduri" -#: flatcamEditors/FlatCAMGrbEditor.py:2705 flatcamGUI/PreferencesUI.py:1917 +#: flatcamEditors/FlatCAMGrbEditor.py:2705 flatcamGUI/PreferencesUI.py:1918 msgid "Specify how many pads to be in the array." msgstr "Specifica cate paduri să fie incluse in arie." @@ -5169,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:471 -#: flatcamGUI/ObjectUI.py:1759 flatcamGUI/PreferencesUI.py:1494 -#: flatcamGUI/PreferencesUI.py:3641 flatcamGUI/PreferencesUI.py:4616 +#: flatcamEditors/FlatCAMTextEditor.py:87 flatcamGUI/ObjectUI.py:482 +#: flatcamGUI/ObjectUI.py:1811 flatcamGUI/PreferencesUI.py:1495 +#: flatcamGUI/PreferencesUI.py:3642 flatcamGUI/PreferencesUI.py:4617 msgid "All" msgstr "Toate" @@ -5236,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:1891 +#: flatcamGUI/FlatCAMGUI.py:2009 msgid "Toggle Panel" msgstr "Comută Panel" @@ -5256,91 +5256,91 @@ msgstr "Se va crea un proiect nou, fără continut" msgid "&New" msgstr "&Nou" -#: flatcamGUI/FlatCAMGUI.py:79 +#: flatcamGUI/FlatCAMGUI.py:80 msgid "Geometry\tN" msgstr "Geometrie\tN" -#: flatcamGUI/FlatCAMGUI.py:81 +#: flatcamGUI/FlatCAMGUI.py:82 msgid "Will create a new, empty Geometry Object." msgstr "Va crea un obiect nou de tip Geometrie, fără continut." -#: flatcamGUI/FlatCAMGUI.py:83 +#: flatcamGUI/FlatCAMGUI.py:84 msgid "Gerber\tB" msgstr "Gerber\tB" -#: flatcamGUI/FlatCAMGUI.py:85 +#: flatcamGUI/FlatCAMGUI.py:86 msgid "Will create a new, empty Gerber Object." msgstr "Va crea un obiect nou de tip Gerber, fără continut." -#: flatcamGUI/FlatCAMGUI.py:87 +#: flatcamGUI/FlatCAMGUI.py:88 msgid "Excellon\tL" msgstr "Excellon\tL" -#: flatcamGUI/FlatCAMGUI.py:89 +#: flatcamGUI/FlatCAMGUI.py:90 msgid "Will create a new, empty Excellon Object." msgstr "Va crea un obiect nou de tip Excellon, fără continut." -#: flatcamGUI/FlatCAMGUI.py:93 +#: flatcamGUI/FlatCAMGUI.py:94 msgid "Document\tD" msgstr "Document\tD" -#: flatcamGUI/FlatCAMGUI.py:95 +#: flatcamGUI/FlatCAMGUI.py:96 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:3837 +#: flatcamGUI/FlatCAMGUI.py:99 flatcamGUI/FlatCAMGUI.py:4075 #: flatcamTools/ToolPcbWizard.py:62 flatcamTools/ToolPcbWizard.py:69 msgid "Open" msgstr "Încarcă" -#: flatcamGUI/FlatCAMGUI.py:102 +#: flatcamGUI/FlatCAMGUI.py:103 msgid "Open &Project ..." msgstr "Încarcă &Project ..." -#: flatcamGUI/FlatCAMGUI.py:108 flatcamGUI/FlatCAMGUI.py:3846 +#: flatcamGUI/FlatCAMGUI.py:109 flatcamGUI/FlatCAMGUI.py:4085 msgid "Open &Gerber ...\tCTRL+G" msgstr "Încarcă &Gerber ...\tCTRL+G" -#: flatcamGUI/FlatCAMGUI.py:113 flatcamGUI/FlatCAMGUI.py:3851 +#: flatcamGUI/FlatCAMGUI.py:114 flatcamGUI/FlatCAMGUI.py:4090 msgid "Open &Excellon ...\tCTRL+E" msgstr "Încarcă &Excellon ...\tCTRL+E" -#: flatcamGUI/FlatCAMGUI.py:117 flatcamGUI/FlatCAMGUI.py:3855 +#: flatcamGUI/FlatCAMGUI.py:118 flatcamGUI/FlatCAMGUI.py:4095 msgid "Open G-&Code ..." msgstr "Încarcă G-&Code ..." -#: flatcamGUI/FlatCAMGUI.py:123 +#: flatcamGUI/FlatCAMGUI.py:124 msgid "Open Config ..." msgstr "Încarcă Config ..." -#: flatcamGUI/FlatCAMGUI.py:127 +#: flatcamGUI/FlatCAMGUI.py:128 msgid "Recent projects" msgstr "Proiectele recente" -#: flatcamGUI/FlatCAMGUI.py:128 +#: flatcamGUI/FlatCAMGUI.py:129 msgid "Recent files" msgstr "Fişierele Recente" -#: flatcamGUI/FlatCAMGUI.py:134 +#: flatcamGUI/FlatCAMGUI.py:135 msgid "Scripting" msgstr "Scripting" -#: flatcamGUI/FlatCAMGUI.py:137 flatcamGUI/FlatCAMGUI.py:739 -#: flatcamGUI/FlatCAMGUI.py:2186 +#: flatcamGUI/FlatCAMGUI.py:138 flatcamGUI/FlatCAMGUI.py:803 +#: flatcamGUI/FlatCAMGUI.py:2374 msgid "New Script ..." msgstr "Script nou ..." -#: flatcamGUI/FlatCAMGUI.py:138 flatcamGUI/FlatCAMGUI.py:740 -#: flatcamGUI/FlatCAMGUI.py:2187 +#: flatcamGUI/FlatCAMGUI.py:139 flatcamGUI/FlatCAMGUI.py:805 +#: flatcamGUI/FlatCAMGUI.py:2376 msgid "Open Script ..." msgstr "Încarcă &Script..." -#: flatcamGUI/FlatCAMGUI.py:140 flatcamGUI/FlatCAMGUI.py:741 -#: flatcamGUI/FlatCAMGUI.py:2188 flatcamGUI/FlatCAMGUI.py:3826 +#: flatcamGUI/FlatCAMGUI.py:141 flatcamGUI/FlatCAMGUI.py:807 +#: flatcamGUI/FlatCAMGUI.py:2378 flatcamGUI/FlatCAMGUI.py:4064 msgid "Run Script ..." msgstr "Rulează Script..." -#: flatcamGUI/FlatCAMGUI.py:142 flatcamGUI/FlatCAMGUI.py:3828 +#: flatcamGUI/FlatCAMGUI.py:143 flatcamGUI/FlatCAMGUI.py:4066 msgid "" "Will run the opened Tcl Script thus\n" "enabling the automation of certain\n" @@ -5350,47 +5350,47 @@ msgstr "" "o automatizare a anumitor functii\n" "din FlatCAM." -#: flatcamGUI/FlatCAMGUI.py:155 +#: flatcamGUI/FlatCAMGUI.py:156 msgid "Import" msgstr "Import" -#: flatcamGUI/FlatCAMGUI.py:157 +#: flatcamGUI/FlatCAMGUI.py:158 msgid "&SVG as Geometry Object ..." msgstr "&SVG ca și obiect Geometrie ..." -#: flatcamGUI/FlatCAMGUI.py:160 +#: flatcamGUI/FlatCAMGUI.py:161 msgid "&SVG as Gerber Object ..." msgstr "&SVG ca și obiect Gerber ..." -#: flatcamGUI/FlatCAMGUI.py:165 +#: flatcamGUI/FlatCAMGUI.py:166 msgid "&DXF as Geometry Object ..." msgstr "&DXF ca și obiect Geometrie ..." -#: flatcamGUI/FlatCAMGUI.py:168 +#: flatcamGUI/FlatCAMGUI.py:169 msgid "&DXF as Gerber Object ..." msgstr "&DXF ca și obiect Gerber ..." -#: flatcamGUI/FlatCAMGUI.py:172 +#: flatcamGUI/FlatCAMGUI.py:173 msgid "HPGL2 as Geometry Object ..." msgstr "HPGL2 ca obiect de geometrie ..." -#: flatcamGUI/FlatCAMGUI.py:177 +#: flatcamGUI/FlatCAMGUI.py:178 msgid "Export" msgstr "Export" -#: flatcamGUI/FlatCAMGUI.py:180 +#: flatcamGUI/FlatCAMGUI.py:181 msgid "Export &SVG ..." msgstr "Exporta &SVG ..." -#: flatcamGUI/FlatCAMGUI.py:183 +#: flatcamGUI/FlatCAMGUI.py:184 msgid "Export DXF ..." msgstr "Exporta DXF ..." -#: flatcamGUI/FlatCAMGUI.py:188 +#: flatcamGUI/FlatCAMGUI.py:189 msgid "Export &PNG ..." msgstr "Exporta &PNG ..." -#: flatcamGUI/FlatCAMGUI.py:190 +#: flatcamGUI/FlatCAMGUI.py:191 msgid "" "Will export an image in PNG format,\n" "the saved image will contain the visual \n" @@ -5400,11 +5400,11 @@ msgstr "" "imagina salvata va contine elementele vizuale\n" "afisate in zona de afișare." -#: flatcamGUI/FlatCAMGUI.py:199 +#: flatcamGUI/FlatCAMGUI.py:200 msgid "Export &Excellon ..." msgstr "Exporta Excellon ..." -#: flatcamGUI/FlatCAMGUI.py:201 +#: flatcamGUI/FlatCAMGUI.py:202 msgid "" "Will export an Excellon Object as Excellon file,\n" "the coordinates format, the file units and zeros\n" @@ -5414,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:208 +#: flatcamGUI/FlatCAMGUI.py:209 msgid "Export &Gerber ..." msgstr "Exporta &Gerber ..." -#: flatcamGUI/FlatCAMGUI.py:210 +#: flatcamGUI/FlatCAMGUI.py:211 msgid "" "Will export an Gerber Object as Gerber file,\n" "the coordinates format, the file units and zeros\n" @@ -5428,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:226 +#: flatcamGUI/FlatCAMGUI.py:229 msgid "Backup" msgstr "Backup" -#: flatcamGUI/FlatCAMGUI.py:230 +#: flatcamGUI/FlatCAMGUI.py:233 msgid "Import Preferences from file ..." msgstr "Importați Preferințele din fișier ..." -#: flatcamGUI/FlatCAMGUI.py:235 +#: flatcamGUI/FlatCAMGUI.py:238 msgid "Export Preferences to file ..." msgstr "Exportați Preferințele într-un fișier ..." -#: flatcamGUI/FlatCAMGUI.py:241 flatcamGUI/FlatCAMGUI.py:612 -#: flatcamGUI/FlatCAMGUI.py:1109 +#: flatcamGUI/FlatCAMGUI.py:244 flatcamGUI/FlatCAMGUI.py:656 +#: flatcamGUI/FlatCAMGUI.py:1225 msgid "Save" msgstr "Salvează" -#: flatcamGUI/FlatCAMGUI.py:244 +#: flatcamGUI/FlatCAMGUI.py:248 msgid "&Save Project ..." msgstr "&Salvează Proiect ..." -#: flatcamGUI/FlatCAMGUI.py:249 +#: flatcamGUI/FlatCAMGUI.py:253 msgid "Save Project &As ...\tCTRL+S" msgstr "Salvează Proiect &ca ...\tCTRL+S" -#: flatcamGUI/FlatCAMGUI.py:254 +#: flatcamGUI/FlatCAMGUI.py:258 msgid "Save Project C&opy ..." msgstr "Salvează o C&opie Proiect..." -#: flatcamGUI/FlatCAMGUI.py:268 +#: flatcamGUI/FlatCAMGUI.py:273 msgid "E&xit" msgstr "Iesire" -#: flatcamGUI/FlatCAMGUI.py:276 flatcamGUI/FlatCAMGUI.py:609 -#: flatcamGUI/FlatCAMGUI.py:1968 +#: flatcamGUI/FlatCAMGUI.py:281 flatcamGUI/FlatCAMGUI.py:650 +#: flatcamGUI/FlatCAMGUI.py:2132 msgid "Edit" msgstr "Editează" -#: flatcamGUI/FlatCAMGUI.py:279 +#: flatcamGUI/FlatCAMGUI.py:285 msgid "Edit Object\tE" msgstr "Editare Obiect\tE" -#: flatcamGUI/FlatCAMGUI.py:280 +#: flatcamGUI/FlatCAMGUI.py:287 msgid "Close Editor\tCTRL+S" msgstr "Salvează Editor\tCTRL+S" -#: flatcamGUI/FlatCAMGUI.py:288 +#: flatcamGUI/FlatCAMGUI.py:296 msgid "Conversion" msgstr "Conversii" -#: flatcamGUI/FlatCAMGUI.py:290 +#: flatcamGUI/FlatCAMGUI.py:298 msgid "&Join Geo/Gerber/Exc -> Geo" msgstr "&Fuzionează Geo/Gerber/Exc -> Geo" -#: flatcamGUI/FlatCAMGUI.py:292 +#: flatcamGUI/FlatCAMGUI.py:300 msgid "" "Merge a selection of objects, which can be of type:\n" "- Gerber\n" @@ -5496,30 +5496,30 @@ msgstr "" "- Geometrie\n" "intr-un nou obiect tip Geometrie >combo<." -#: flatcamGUI/FlatCAMGUI.py:299 +#: flatcamGUI/FlatCAMGUI.py:307 msgid "Join Excellon(s) -> Excellon" msgstr "Fuzionează Excellon(s) -> Excellon" -#: flatcamGUI/FlatCAMGUI.py:301 +#: flatcamGUI/FlatCAMGUI.py:309 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:304 +#: flatcamGUI/FlatCAMGUI.py:312 msgid "Join Gerber(s) -> Gerber" msgstr "Fuzionează Gerber(s) -> Gerber" -#: flatcamGUI/FlatCAMGUI.py:306 +#: flatcamGUI/FlatCAMGUI.py:314 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:311 +#: flatcamGUI/FlatCAMGUI.py:319 msgid "Convert Single to MultiGeo" msgstr "Converteste SingleGeo in MultiGeo" -#: flatcamGUI/FlatCAMGUI.py:313 +#: flatcamGUI/FlatCAMGUI.py:321 msgid "" "Will convert a Geometry object from single_geometry type\n" "to a multi_geometry type." @@ -5527,11 +5527,11 @@ msgstr "" "Va converti un obiect Geometrie din tipul simpla geometrie (SingleGeo)\n" "la tipul geometrie complexa (MultiGeo)." -#: flatcamGUI/FlatCAMGUI.py:317 +#: flatcamGUI/FlatCAMGUI.py:325 msgid "Convert Multi to SingleGeo" msgstr "Converteste MultiGeo in SingleGeo" -#: flatcamGUI/FlatCAMGUI.py:319 +#: flatcamGUI/FlatCAMGUI.py:327 msgid "" "Will convert a Geometry object from multi_geometry type\n" "to a single_geometry type." @@ -5539,702 +5539,702 @@ msgstr "" "Va converti un obiect Geometrie din tipul geometrie complexa (MultiGeo)\n" "la tipul geometrie simpla (SingleGeo)." -#: flatcamGUI/FlatCAMGUI.py:325 +#: flatcamGUI/FlatCAMGUI.py:334 msgid "Convert Any to Geo" msgstr "Converteste Oricare to Geo" -#: flatcamGUI/FlatCAMGUI.py:327 +#: flatcamGUI/FlatCAMGUI.py:337 msgid "Convert Any to Gerber" msgstr "Converteste Oricare in Gerber" -#: flatcamGUI/FlatCAMGUI.py:332 +#: flatcamGUI/FlatCAMGUI.py:343 msgid "&Copy\tCTRL+C" msgstr "&Copiază\tCTRL+C" -#: flatcamGUI/FlatCAMGUI.py:336 +#: flatcamGUI/FlatCAMGUI.py:348 msgid "&Delete\tDEL" msgstr "&Șterge\tDEL" -#: flatcamGUI/FlatCAMGUI.py:340 +#: flatcamGUI/FlatCAMGUI.py:353 msgid "Se&t Origin\tO" msgstr "Se&tează Originea\tO" -#: flatcamGUI/FlatCAMGUI.py:341 +#: flatcamGUI/FlatCAMGUI.py:355 msgid "Jump to Location\tJ" msgstr "Sari la Locaţie\tJ" -#: flatcamGUI/FlatCAMGUI.py:346 +#: flatcamGUI/FlatCAMGUI.py:360 msgid "Toggle Units\tQ" msgstr "Comută Unitati\tQ" -#: flatcamGUI/FlatCAMGUI.py:347 +#: flatcamGUI/FlatCAMGUI.py:362 msgid "&Select All\tCTRL+A" msgstr "&Selectează Tot\tCTRL+A" -#: flatcamGUI/FlatCAMGUI.py:351 +#: flatcamGUI/FlatCAMGUI.py:367 msgid "&Preferences\tSHIFT+P" msgstr "&Preferințe\tSHIFT+P" -#: flatcamGUI/FlatCAMGUI.py:357 flatcamTools/ToolProperties.py:153 +#: flatcamGUI/FlatCAMGUI.py:373 flatcamTools/ToolProperties.py:153 msgid "Options" msgstr "Opțiuni" -#: flatcamGUI/FlatCAMGUI.py:359 +#: flatcamGUI/FlatCAMGUI.py:375 msgid "&Rotate Selection\tSHIFT+(R)" msgstr "&Roteste Selectia\tSHIFT+(R)" -#: flatcamGUI/FlatCAMGUI.py:364 +#: flatcamGUI/FlatCAMGUI.py:380 msgid "&Skew on X axis\tSHIFT+X" msgstr "&Deformează pe axa X\tSHIFT+X" -#: flatcamGUI/FlatCAMGUI.py:366 +#: flatcamGUI/FlatCAMGUI.py:382 msgid "S&kew on Y axis\tSHIFT+Y" msgstr "Deformează pe axa Y\tSHIFT+Y" -#: flatcamGUI/FlatCAMGUI.py:371 +#: flatcamGUI/FlatCAMGUI.py:387 msgid "Flip on &X axis\tX" msgstr "Oglindește pe axa &X\tX" -#: flatcamGUI/FlatCAMGUI.py:373 +#: flatcamGUI/FlatCAMGUI.py:389 msgid "Flip on &Y axis\tY" msgstr "Oglindește pe axa &Y\tY" -#: flatcamGUI/FlatCAMGUI.py:378 +#: flatcamGUI/FlatCAMGUI.py:394 msgid "View source\tALT+S" msgstr "Vezi sursa\tALT+S" -#: flatcamGUI/FlatCAMGUI.py:380 +#: flatcamGUI/FlatCAMGUI.py:396 msgid "Tools DataBase\tCTRL+D" msgstr "Baza de data Unelte\tCTRL+D" -#: flatcamGUI/FlatCAMGUI.py:387 flatcamGUI/FlatCAMGUI.py:1904 +#: flatcamGUI/FlatCAMGUI.py:403 flatcamGUI/FlatCAMGUI.py:2029 msgid "View" msgstr "Vizualizare" -#: flatcamGUI/FlatCAMGUI.py:388 +#: flatcamGUI/FlatCAMGUI.py:405 msgid "Enable all plots\tALT+1" msgstr "Activează toate afişările\tALT+1" -#: flatcamGUI/FlatCAMGUI.py:390 +#: flatcamGUI/FlatCAMGUI.py:407 msgid "Disable all plots\tALT+2" msgstr "Dezactivează toate afişările\tALT+2" -#: flatcamGUI/FlatCAMGUI.py:392 +#: flatcamGUI/FlatCAMGUI.py:409 msgid "Disable non-selected\tALT+3" msgstr "Dezactivează non-selectate\tALT+3" -#: flatcamGUI/FlatCAMGUI.py:395 +#: flatcamGUI/FlatCAMGUI.py:413 msgid "&Zoom Fit\tV" msgstr "&Mărește și potrivește\tV" -#: flatcamGUI/FlatCAMGUI.py:396 +#: flatcamGUI/FlatCAMGUI.py:415 msgid "&Zoom In\t=" msgstr "&Măreste\t=" -#: flatcamGUI/FlatCAMGUI.py:397 +#: flatcamGUI/FlatCAMGUI.py:417 msgid "&Zoom Out\t-" msgstr "&Micșorează\t-" -#: flatcamGUI/FlatCAMGUI.py:401 +#: flatcamGUI/FlatCAMGUI.py:422 msgid "Redraw All\tF5" msgstr "Reafisare Toate\tF5" -#: flatcamGUI/FlatCAMGUI.py:405 +#: flatcamGUI/FlatCAMGUI.py:426 msgid "Toggle Code Editor\tSHIFT+E" msgstr "Comută Editorul de cod\tSHIFT+E" -#: flatcamGUI/FlatCAMGUI.py:408 +#: flatcamGUI/FlatCAMGUI.py:429 msgid "&Toggle FullScreen\tALT+F10" msgstr "Comută FullScreen\tALT+F10" -#: flatcamGUI/FlatCAMGUI.py:410 +#: flatcamGUI/FlatCAMGUI.py:431 msgid "&Toggle Plot Area\tCTRL+F10" msgstr "Comută Aria de Afișare\tCTRL+F10" -#: flatcamGUI/FlatCAMGUI.py:412 +#: flatcamGUI/FlatCAMGUI.py:433 msgid "&Toggle Project/Sel/Tool\t`" msgstr "Comută Proiect/Sel/Unealta\t`" -#: flatcamGUI/FlatCAMGUI.py:416 +#: flatcamGUI/FlatCAMGUI.py:437 msgid "&Toggle Grid Snap\tG" msgstr "Comută Grid\tG" -#: flatcamGUI/FlatCAMGUI.py:418 +#: flatcamGUI/FlatCAMGUI.py:439 msgid "&Toggle Grid Lines\tALT+G" msgstr "Comută Linii Grid\tALT+G" -#: flatcamGUI/FlatCAMGUI.py:419 +#: flatcamGUI/FlatCAMGUI.py:441 msgid "&Toggle Axis\tSHIFT+G" msgstr "Comută Axe\tSHIFT+G" -#: flatcamGUI/FlatCAMGUI.py:422 +#: flatcamGUI/FlatCAMGUI.py:443 msgid "Toggle Workspace\tSHIFT+W" msgstr "Comută Suprafata de lucru\tSHIFT+W" -#: flatcamGUI/FlatCAMGUI.py:427 +#: flatcamGUI/FlatCAMGUI.py:448 msgid "Objects" msgstr "Obiecte" -#: flatcamGUI/FlatCAMGUI.py:440 +#: flatcamGUI/FlatCAMGUI.py:462 msgid "&Command Line\tS" msgstr "&Linie de comanda\tS" -#: flatcamGUI/FlatCAMGUI.py:445 +#: flatcamGUI/FlatCAMGUI.py:467 msgid "Help" msgstr "Ajutor" -#: flatcamGUI/FlatCAMGUI.py:446 +#: flatcamGUI/FlatCAMGUI.py:469 msgid "Online Help\tF1" msgstr "Resurse online\tF1" -#: flatcamGUI/FlatCAMGUI.py:454 +#: flatcamGUI/FlatCAMGUI.py:479 msgid "Report a bug" msgstr "Raportati o eroare program" -#: flatcamGUI/FlatCAMGUI.py:457 +#: flatcamGUI/FlatCAMGUI.py:482 msgid "Excellon Specification" msgstr "Specificatii Excellon" -#: flatcamGUI/FlatCAMGUI.py:459 +#: flatcamGUI/FlatCAMGUI.py:484 msgid "Gerber Specification" msgstr "Specificatii Gerber" -#: flatcamGUI/FlatCAMGUI.py:464 +#: flatcamGUI/FlatCAMGUI.py:489 msgid "Shortcuts List\tF3" msgstr "Lista shortcut-uri\tF3" -#: flatcamGUI/FlatCAMGUI.py:465 +#: flatcamGUI/FlatCAMGUI.py:491 msgid "YouTube Channel\tF4" msgstr "YouTube \tF4" -#: flatcamGUI/FlatCAMGUI.py:476 +#: flatcamGUI/FlatCAMGUI.py:502 msgid "Add Circle\tO" msgstr "Adaugă Cerc\tO" -#: flatcamGUI/FlatCAMGUI.py:478 +#: flatcamGUI/FlatCAMGUI.py:505 msgid "Add Arc\tA" msgstr "Adaugă Arc\tA" -#: flatcamGUI/FlatCAMGUI.py:481 +#: flatcamGUI/FlatCAMGUI.py:508 msgid "Add Rectangle\tR" msgstr "Adaugă Patrulater\tR" -#: flatcamGUI/FlatCAMGUI.py:484 +#: flatcamGUI/FlatCAMGUI.py:511 msgid "Add Polygon\tN" msgstr "Adaugă Poligon\tN" -#: flatcamGUI/FlatCAMGUI.py:486 +#: flatcamGUI/FlatCAMGUI.py:514 msgid "Add Path\tP" msgstr "Adaugă Cale\tP" -#: flatcamGUI/FlatCAMGUI.py:488 +#: flatcamGUI/FlatCAMGUI.py:517 msgid "Add Text\tT" msgstr "Adaugă Text\tT" -#: flatcamGUI/FlatCAMGUI.py:491 +#: flatcamGUI/FlatCAMGUI.py:520 msgid "Polygon Union\tU" msgstr "Uniune Poligoane\tU" -#: flatcamGUI/FlatCAMGUI.py:493 +#: flatcamGUI/FlatCAMGUI.py:522 msgid "Polygon Intersection\tE" msgstr "Intersecţie Poligoane\tE" -#: flatcamGUI/FlatCAMGUI.py:495 +#: flatcamGUI/FlatCAMGUI.py:524 msgid "Polygon Subtraction\tS" msgstr "Substracţie Poligoane\tS" -#: flatcamGUI/FlatCAMGUI.py:499 +#: flatcamGUI/FlatCAMGUI.py:528 msgid "Cut Path\tX" msgstr "Tăiere Cale\tX" -#: flatcamGUI/FlatCAMGUI.py:501 +#: flatcamGUI/FlatCAMGUI.py:531 msgid "Copy Geom\tC" msgstr "Copiază Geo\tC" -#: flatcamGUI/FlatCAMGUI.py:503 +#: flatcamGUI/FlatCAMGUI.py:533 msgid "Delete Shape\tDEL" msgstr "Șterge forma Geo.\tDEL" -#: flatcamGUI/FlatCAMGUI.py:506 flatcamGUI/FlatCAMGUI.py:588 +#: flatcamGUI/FlatCAMGUI.py:537 flatcamGUI/FlatCAMGUI.py:624 msgid "Move\tM" msgstr "Muta\tM" -#: flatcamGUI/FlatCAMGUI.py:508 +#: flatcamGUI/FlatCAMGUI.py:539 msgid "Buffer Tool\tB" msgstr "Unealta Bufer\tB" -#: flatcamGUI/FlatCAMGUI.py:511 +#: flatcamGUI/FlatCAMGUI.py:542 msgid "Paint Tool\tI" msgstr "Unealta Paint\tI" -#: flatcamGUI/FlatCAMGUI.py:514 +#: flatcamGUI/FlatCAMGUI.py:545 msgid "Transform Tool\tALT+R" msgstr "Unealta Transformare\tALT+R" -#: flatcamGUI/FlatCAMGUI.py:518 +#: flatcamGUI/FlatCAMGUI.py:549 msgid "Toggle Corner Snap\tK" msgstr "Comută lipire colt\tK" -#: flatcamGUI/FlatCAMGUI.py:524 +#: flatcamGUI/FlatCAMGUI.py:555 msgid ">Excellon Editor<" msgstr ">Editor Excellon<" -#: flatcamGUI/FlatCAMGUI.py:528 +#: flatcamGUI/FlatCAMGUI.py:559 msgid "Add Drill Array\tA" msgstr "Adaugă Arie Găuriri\tA" -#: flatcamGUI/FlatCAMGUI.py:530 +#: flatcamGUI/FlatCAMGUI.py:561 msgid "Add Drill\tD" msgstr "Adaugă Găurire\tD" -#: flatcamGUI/FlatCAMGUI.py:534 +#: flatcamGUI/FlatCAMGUI.py:565 msgid "Add Slot Array\tQ" msgstr "Adăugați Arie de Sloturi\tQ" -#: flatcamGUI/FlatCAMGUI.py:536 +#: flatcamGUI/FlatCAMGUI.py:567 msgid "Add Slot\tW" msgstr "Adăugați Slot\tW" -#: flatcamGUI/FlatCAMGUI.py:540 +#: flatcamGUI/FlatCAMGUI.py:571 msgid "Resize Drill(S)\tR" msgstr "Redimens. Găuriri\tR" -#: flatcamGUI/FlatCAMGUI.py:542 flatcamGUI/FlatCAMGUI.py:583 +#: flatcamGUI/FlatCAMGUI.py:574 flatcamGUI/FlatCAMGUI.py:618 msgid "Copy\tC" msgstr "Copiază\tC" -#: flatcamGUI/FlatCAMGUI.py:544 flatcamGUI/FlatCAMGUI.py:585 +#: flatcamGUI/FlatCAMGUI.py:576 flatcamGUI/FlatCAMGUI.py:620 msgid "Delete\tDEL" msgstr "Șterge\tDEL" -#: flatcamGUI/FlatCAMGUI.py:549 +#: flatcamGUI/FlatCAMGUI.py:581 msgid "Move Drill(s)\tM" msgstr "Muta Găuriri\tM" -#: flatcamGUI/FlatCAMGUI.py:554 +#: flatcamGUI/FlatCAMGUI.py:586 msgid ">Gerber Editor<" msgstr ">Editor Gerber<" -#: flatcamGUI/FlatCAMGUI.py:558 +#: flatcamGUI/FlatCAMGUI.py:590 msgid "Add Pad\tP" msgstr "Adaugă Pad\tP" -#: flatcamGUI/FlatCAMGUI.py:560 +#: flatcamGUI/FlatCAMGUI.py:592 msgid "Add Pad Array\tA" msgstr "Adaugă Arie paduri\tA" -#: flatcamGUI/FlatCAMGUI.py:562 +#: flatcamGUI/FlatCAMGUI.py:594 msgid "Add Track\tT" msgstr "Adaugă Traseu\tA" -#: flatcamGUI/FlatCAMGUI.py:564 +#: flatcamGUI/FlatCAMGUI.py:596 msgid "Add Region\tN" msgstr "Adaugă Regiune\tN" -#: flatcamGUI/FlatCAMGUI.py:568 +#: flatcamGUI/FlatCAMGUI.py:600 msgid "Poligonize\tALT+N" msgstr "Poligonizare\tALT+N" -#: flatcamGUI/FlatCAMGUI.py:570 +#: flatcamGUI/FlatCAMGUI.py:602 msgid "Add SemiDisc\tE" msgstr "Adaugă SemiDisc\tE" -#: flatcamGUI/FlatCAMGUI.py:571 +#: flatcamGUI/FlatCAMGUI.py:604 msgid "Add Disc\tD" msgstr "Adaugă Disc\tD" -#: flatcamGUI/FlatCAMGUI.py:573 +#: flatcamGUI/FlatCAMGUI.py:606 msgid "Buffer\tB" msgstr "Bufer\tB" -#: flatcamGUI/FlatCAMGUI.py:574 +#: flatcamGUI/FlatCAMGUI.py:608 msgid "Scale\tS" msgstr "Scalare\tS" -#: flatcamGUI/FlatCAMGUI.py:576 +#: flatcamGUI/FlatCAMGUI.py:610 msgid "Mark Area\tALT+A" msgstr "Marchează aria\tALT+A" -#: flatcamGUI/FlatCAMGUI.py:578 +#: flatcamGUI/FlatCAMGUI.py:612 msgid "Eraser\tCTRL+E" msgstr "Radieră\tCTRL+E" -#: flatcamGUI/FlatCAMGUI.py:580 +#: flatcamGUI/FlatCAMGUI.py:614 msgid "Transform\tALT+R" msgstr "Unealta Transformare\tALT+R" -#: flatcamGUI/FlatCAMGUI.py:603 +#: flatcamGUI/FlatCAMGUI.py:640 msgid "Enable Plot" msgstr "Activează Afișare" -#: flatcamGUI/FlatCAMGUI.py:604 +#: flatcamGUI/FlatCAMGUI.py:642 msgid "Disable Plot" msgstr "Dezactivează Afișare" -#: flatcamGUI/FlatCAMGUI.py:606 +#: flatcamGUI/FlatCAMGUI.py:645 msgid "Generate CNC" msgstr "Generează CNC" -#: flatcamGUI/FlatCAMGUI.py:607 +#: flatcamGUI/FlatCAMGUI.py:647 msgid "View Source" msgstr "Vizualiz. Sursa" -#: flatcamGUI/FlatCAMGUI.py:615 flatcamGUI/FlatCAMGUI.py:1974 +#: flatcamGUI/FlatCAMGUI.py:660 flatcamGUI/FlatCAMGUI.py:2141 #: flatcamTools/ToolProperties.py:30 msgid "Properties" msgstr "Proprietati" -#: flatcamGUI/FlatCAMGUI.py:644 +#: flatcamGUI/FlatCAMGUI.py:689 msgid "File Toolbar" msgstr "Toolbar Fişiere" -#: flatcamGUI/FlatCAMGUI.py:648 +#: flatcamGUI/FlatCAMGUI.py:693 msgid "Edit Toolbar" msgstr "Toolbar Editare" -#: flatcamGUI/FlatCAMGUI.py:652 +#: flatcamGUI/FlatCAMGUI.py:697 msgid "View Toolbar" msgstr "Toolbar Vizualizare" -#: flatcamGUI/FlatCAMGUI.py:656 +#: flatcamGUI/FlatCAMGUI.py:701 msgid "Shell Toolbar" msgstr "Toolbar Linie de comanda" -#: flatcamGUI/FlatCAMGUI.py:660 +#: flatcamGUI/FlatCAMGUI.py:705 msgid "Tools Toolbar" msgstr "Toolbar Unelte" -#: flatcamGUI/FlatCAMGUI.py:664 +#: flatcamGUI/FlatCAMGUI.py:709 msgid "Excellon Editor Toolbar" msgstr "Toolbar Editor Excellon" -#: flatcamGUI/FlatCAMGUI.py:670 +#: flatcamGUI/FlatCAMGUI.py:715 msgid "Geometry Editor Toolbar" msgstr "Toolbar Editor Geometrii" -#: flatcamGUI/FlatCAMGUI.py:674 +#: flatcamGUI/FlatCAMGUI.py:719 msgid "Gerber Editor Toolbar" msgstr "Toolbar Editor Gerber" -#: flatcamGUI/FlatCAMGUI.py:678 +#: flatcamGUI/FlatCAMGUI.py:723 msgid "Grid Toolbar" msgstr "Toolbar Grid-uri" -#: flatcamGUI/FlatCAMGUI.py:699 flatcamGUI/FlatCAMGUI.py:2152 +#: flatcamGUI/FlatCAMGUI.py:746 flatcamGUI/FlatCAMGUI.py:2322 msgid "Open project" msgstr "Încarcă Proiect" -#: flatcamGUI/FlatCAMGUI.py:700 flatcamGUI/FlatCAMGUI.py:2153 +#: flatcamGUI/FlatCAMGUI.py:748 flatcamGUI/FlatCAMGUI.py:2324 msgid "Save project" msgstr "Salvează Proiect" -#: flatcamGUI/FlatCAMGUI.py:705 flatcamGUI/FlatCAMGUI.py:2156 +#: flatcamGUI/FlatCAMGUI.py:754 flatcamGUI/FlatCAMGUI.py:2328 msgid "New Blank Geometry" msgstr "Geometrie Noua (goală)" -#: flatcamGUI/FlatCAMGUI.py:706 flatcamGUI/FlatCAMGUI.py:2157 +#: flatcamGUI/FlatCAMGUI.py:756 flatcamGUI/FlatCAMGUI.py:2330 msgid "New Blank Gerber" msgstr "Gerber Nou (gol)" -#: flatcamGUI/FlatCAMGUI.py:707 flatcamGUI/FlatCAMGUI.py:2158 +#: flatcamGUI/FlatCAMGUI.py:758 flatcamGUI/FlatCAMGUI.py:2332 msgid "New Blank Excellon" msgstr "Excellon nou (gol)" -#: flatcamGUI/FlatCAMGUI.py:711 flatcamGUI/FlatCAMGUI.py:2162 +#: flatcamGUI/FlatCAMGUI.py:763 flatcamGUI/FlatCAMGUI.py:2338 msgid "Save Object and close the Editor" msgstr "Salvează Obiectul și inchide Editorul" -#: flatcamGUI/FlatCAMGUI.py:716 flatcamGUI/FlatCAMGUI.py:2167 +#: flatcamGUI/FlatCAMGUI.py:770 flatcamGUI/FlatCAMGUI.py:2345 msgid "&Delete" msgstr "&Șterge" -#: flatcamGUI/FlatCAMGUI.py:718 flatcamGUI/FlatCAMGUI.py:1466 -#: flatcamGUI/FlatCAMGUI.py:1665 flatcamGUI/FlatCAMGUI.py:2169 +#: flatcamGUI/FlatCAMGUI.py:773 flatcamGUI/FlatCAMGUI.py:1582 +#: flatcamGUI/FlatCAMGUI.py:1781 flatcamGUI/FlatCAMGUI.py:2348 #: flatcamTools/ToolDistance.py:30 flatcamTools/ToolDistance.py:160 msgid "Distance Tool" msgstr "Unealta Distanță" -#: flatcamGUI/FlatCAMGUI.py:720 flatcamGUI/FlatCAMGUI.py:2171 +#: flatcamGUI/FlatCAMGUI.py:775 flatcamGUI/FlatCAMGUI.py:2350 msgid "Distance Min Tool" msgstr "Unealta Distanță min" -#: flatcamGUI/FlatCAMGUI.py:721 flatcamGUI/FlatCAMGUI.py:1459 -#: flatcamGUI/FlatCAMGUI.py:2172 +#: flatcamGUI/FlatCAMGUI.py:777 flatcamGUI/FlatCAMGUI.py:1575 +#: flatcamGUI/FlatCAMGUI.py:2352 msgid "Set Origin" msgstr "Setează Originea" -#: flatcamGUI/FlatCAMGUI.py:722 flatcamGUI/FlatCAMGUI.py:2173 +#: flatcamGUI/FlatCAMGUI.py:779 flatcamGUI/FlatCAMGUI.py:2354 msgid "Jump to Location" msgstr "Sari la Locaţie" -#: flatcamGUI/FlatCAMGUI.py:727 flatcamGUI/FlatCAMGUI.py:2176 +#: flatcamGUI/FlatCAMGUI.py:785 flatcamGUI/FlatCAMGUI.py:2358 msgid "&Replot" msgstr "&Reafișare" -#: flatcamGUI/FlatCAMGUI.py:728 flatcamGUI/FlatCAMGUI.py:2177 +#: flatcamGUI/FlatCAMGUI.py:787 flatcamGUI/FlatCAMGUI.py:2360 msgid "&Clear plot" msgstr "&Șterge Afișare" -#: flatcamGUI/FlatCAMGUI.py:729 flatcamGUI/FlatCAMGUI.py:1462 -#: flatcamGUI/FlatCAMGUI.py:2178 +#: flatcamGUI/FlatCAMGUI.py:789 flatcamGUI/FlatCAMGUI.py:1578 +#: flatcamGUI/FlatCAMGUI.py:2362 msgid "Zoom In" msgstr "Marire" -#: flatcamGUI/FlatCAMGUI.py:730 flatcamGUI/FlatCAMGUI.py:1462 -#: flatcamGUI/FlatCAMGUI.py:2179 +#: flatcamGUI/FlatCAMGUI.py:791 flatcamGUI/FlatCAMGUI.py:1578 +#: flatcamGUI/FlatCAMGUI.py:2364 msgid "Zoom Out" msgstr "Micsorare" -#: flatcamGUI/FlatCAMGUI.py:731 flatcamGUI/FlatCAMGUI.py:1461 -#: flatcamGUI/FlatCAMGUI.py:1905 flatcamGUI/FlatCAMGUI.py:2180 +#: flatcamGUI/FlatCAMGUI.py:793 flatcamGUI/FlatCAMGUI.py:1577 +#: flatcamGUI/FlatCAMGUI.py:2031 flatcamGUI/FlatCAMGUI.py:2366 msgid "Zoom Fit" msgstr "Marire și ajustare" -#: flatcamGUI/FlatCAMGUI.py:738 flatcamGUI/FlatCAMGUI.py:2185 +#: flatcamGUI/FlatCAMGUI.py:801 flatcamGUI/FlatCAMGUI.py:2372 msgid "&Command Line" msgstr "&Linie de comanda" -#: flatcamGUI/FlatCAMGUI.py:746 flatcamGUI/FlatCAMGUI.py:2191 +#: flatcamGUI/FlatCAMGUI.py:813 flatcamGUI/FlatCAMGUI.py:2382 msgid "2Sided Tool" msgstr "Unealta 2-fețe" -#: flatcamGUI/FlatCAMGUI.py:747 flatcamGUI/ObjectUI.py:577 +#: flatcamGUI/FlatCAMGUI.py:815 flatcamGUI/ObjectUI.py:588 #: flatcamTools/ToolCutOut.py:434 msgid "Cutout Tool" msgstr "Unealta Decupare" -#: flatcamGUI/FlatCAMGUI.py:748 flatcamGUI/FlatCAMGUI.py:2193 -#: flatcamGUI/ObjectUI.py:555 flatcamGUI/ObjectUI.py:1712 -#: flatcamTools/ToolNonCopperClear.py:637 +#: flatcamGUI/FlatCAMGUI.py:817 flatcamGUI/FlatCAMGUI.py:2386 +#: flatcamGUI/ObjectUI.py:566 flatcamGUI/ObjectUI.py:1751 +#: flatcamTools/ToolNonCopperClear.py:638 msgid "NCC Tool" msgstr "Unealta NCC" -#: flatcamGUI/FlatCAMGUI.py:752 flatcamGUI/FlatCAMGUI.py:2197 +#: flatcamGUI/FlatCAMGUI.py:823 flatcamGUI/FlatCAMGUI.py:2392 msgid "Panel Tool" msgstr "Unealta Panel" -#: flatcamGUI/FlatCAMGUI.py:753 flatcamGUI/FlatCAMGUI.py:2198 +#: flatcamGUI/FlatCAMGUI.py:825 flatcamGUI/FlatCAMGUI.py:2394 #: flatcamTools/ToolFilm.py:578 msgid "Film Tool" msgstr "Unealta Film" -#: flatcamGUI/FlatCAMGUI.py:754 flatcamGUI/FlatCAMGUI.py:2200 +#: flatcamGUI/FlatCAMGUI.py:827 flatcamGUI/FlatCAMGUI.py:2397 #: flatcamTools/ToolSolderPaste.py:547 msgid "SolderPaste Tool" msgstr "Unealta Dispenser SP" -#: flatcamGUI/FlatCAMGUI.py:755 flatcamGUI/FlatCAMGUI.py:2201 +#: flatcamGUI/FlatCAMGUI.py:829 flatcamGUI/FlatCAMGUI.py:2399 #: flatcamTools/ToolSub.py:35 msgid "Subtract Tool" msgstr "Unealta Scădere" -#: flatcamGUI/FlatCAMGUI.py:756 flatcamTools/ToolRulesCheck.py:607 +#: flatcamGUI/FlatCAMGUI.py:831 flatcamTools/ToolRulesCheck.py:607 msgid "Rules Tool" msgstr "Unalta Verif. Reguli" -#: flatcamGUI/FlatCAMGUI.py:757 flatcamGUI/FlatCAMGUI.py:1477 +#: flatcamGUI/FlatCAMGUI.py:833 flatcamGUI/FlatCAMGUI.py:1593 #: flatcamTools/ToolOptimal.py:34 flatcamTools/ToolOptimal.py:310 msgid "Optimal Tool" msgstr "Unealta Optim" -#: flatcamGUI/FlatCAMGUI.py:761 flatcamGUI/FlatCAMGUI.py:1475 -#: flatcamGUI/FlatCAMGUI.py:2206 +#: flatcamGUI/FlatCAMGUI.py:838 flatcamGUI/FlatCAMGUI.py:1591 +#: flatcamGUI/FlatCAMGUI.py:2404 msgid "Calculators Tool" msgstr "Unealta Calculatoare" -#: flatcamGUI/FlatCAMGUI.py:763 flatcamGUI/FlatCAMGUI.py:1478 -#: flatcamGUI/FlatCAMGUI.py:2208 flatcamTools/ToolQRCode.py:43 +#: flatcamGUI/FlatCAMGUI.py:842 flatcamGUI/FlatCAMGUI.py:1594 +#: flatcamGUI/FlatCAMGUI.py:2408 flatcamTools/ToolQRCode.py:43 #: flatcamTools/ToolQRCode.py:382 msgid "QRCode Tool" msgstr "Unealta QRCode" -#: flatcamGUI/FlatCAMGUI.py:765 flatcamGUI/FlatCAMGUI.py:2210 +#: flatcamGUI/FlatCAMGUI.py:844 flatcamGUI/FlatCAMGUI.py:2410 #: flatcamTools/ToolCopperThieving.py:40 flatcamTools/ToolCopperThieving.py:566 msgid "Copper Thieving Tool" msgstr "Unealta Copper Thieving" -#: flatcamGUI/FlatCAMGUI.py:767 flatcamGUI/FlatCAMGUI.py:1475 -#: flatcamGUI/FlatCAMGUI.py:2212 flatcamTools/ToolFiducials.py:33 +#: flatcamGUI/FlatCAMGUI.py:847 flatcamGUI/FlatCAMGUI.py:1591 +#: flatcamGUI/FlatCAMGUI.py:2413 flatcamTools/ToolFiducials.py:33 #: flatcamTools/ToolFiducials.py:393 msgid "Fiducials Tool" msgstr "Unealta Fiducials" -#: flatcamGUI/FlatCAMGUI.py:768 flatcamGUI/FlatCAMGUI.py:2213 +#: flatcamGUI/FlatCAMGUI.py:849 flatcamGUI/FlatCAMGUI.py:2415 #: 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 +#: flatcamGUI/FlatCAMGUI.py:855 flatcamGUI/FlatCAMGUI.py:881 +#: flatcamGUI/FlatCAMGUI.py:933 flatcamGUI/FlatCAMGUI.py:2419 +#: flatcamGUI/FlatCAMGUI.py:2493 msgid "Select" msgstr "Selectează" -#: flatcamGUI/FlatCAMGUI.py:774 flatcamGUI/FlatCAMGUI.py:2217 +#: flatcamGUI/FlatCAMGUI.py:857 flatcamGUI/FlatCAMGUI.py:2421 msgid "Add Drill Hole" msgstr "Adaugă o Găurire" -#: flatcamGUI/FlatCAMGUI.py:776 flatcamGUI/FlatCAMGUI.py:2219 +#: flatcamGUI/FlatCAMGUI.py:859 flatcamGUI/FlatCAMGUI.py:2423 msgid "Add Drill Hole Array" msgstr "Adaugă o arie de Găuriri" -#: flatcamGUI/FlatCAMGUI.py:777 flatcamGUI/FlatCAMGUI.py:1750 -#: flatcamGUI/FlatCAMGUI.py:1960 flatcamGUI/FlatCAMGUI.py:2221 +#: flatcamGUI/FlatCAMGUI.py:861 flatcamGUI/FlatCAMGUI.py:1866 +#: flatcamGUI/FlatCAMGUI.py:2119 flatcamGUI/FlatCAMGUI.py:2427 msgid "Add Slot" msgstr "Adaugă Slot" -#: flatcamGUI/FlatCAMGUI.py:779 flatcamGUI/FlatCAMGUI.py:1749 -#: flatcamGUI/FlatCAMGUI.py:1961 flatcamGUI/FlatCAMGUI.py:2223 +#: flatcamGUI/FlatCAMGUI.py:863 flatcamGUI/FlatCAMGUI.py:1865 +#: flatcamGUI/FlatCAMGUI.py:2121 flatcamGUI/FlatCAMGUI.py:2429 msgid "Add Slot Array" msgstr "Adaugă o Arie sloturi" -#: flatcamGUI/FlatCAMGUI.py:780 flatcamGUI/FlatCAMGUI.py:1963 -#: flatcamGUI/FlatCAMGUI.py:2220 +#: flatcamGUI/FlatCAMGUI.py:865 flatcamGUI/FlatCAMGUI.py:2124 +#: flatcamGUI/FlatCAMGUI.py:2425 msgid "Resize Drill" msgstr "Redimens. Găurire" -#: flatcamGUI/FlatCAMGUI.py:783 flatcamGUI/FlatCAMGUI.py:2226 +#: flatcamGUI/FlatCAMGUI.py:869 flatcamGUI/FlatCAMGUI.py:2433 msgid "Copy Drill" msgstr "Copiază Găurire" -#: flatcamGUI/FlatCAMGUI.py:784 flatcamGUI/FlatCAMGUI.py:2228 +#: flatcamGUI/FlatCAMGUI.py:871 flatcamGUI/FlatCAMGUI.py:2435 msgid "Delete Drill" msgstr "Șterge Găurire" -#: flatcamGUI/FlatCAMGUI.py:787 flatcamGUI/FlatCAMGUI.py:2231 +#: flatcamGUI/FlatCAMGUI.py:875 flatcamGUI/FlatCAMGUI.py:2439 msgid "Move Drill" msgstr "Muta Găurire" -#: flatcamGUI/FlatCAMGUI.py:793 flatcamGUI/FlatCAMGUI.py:2235 +#: flatcamGUI/FlatCAMGUI.py:883 flatcamGUI/FlatCAMGUI.py:2445 msgid "Add Circle" msgstr "Adaugă Cerc" -#: flatcamGUI/FlatCAMGUI.py:794 flatcamGUI/FlatCAMGUI.py:2236 +#: flatcamGUI/FlatCAMGUI.py:885 flatcamGUI/FlatCAMGUI.py:2447 msgid "Add Arc" msgstr "Adaugă Arc" -#: flatcamGUI/FlatCAMGUI.py:796 flatcamGUI/FlatCAMGUI.py:2238 +#: flatcamGUI/FlatCAMGUI.py:887 flatcamGUI/FlatCAMGUI.py:2449 msgid "Add Rectangle" msgstr "Adaugă Patrulater" -#: flatcamGUI/FlatCAMGUI.py:799 flatcamGUI/FlatCAMGUI.py:2241 +#: flatcamGUI/FlatCAMGUI.py:891 flatcamGUI/FlatCAMGUI.py:2453 msgid "Add Path" msgstr "Adaugă Cale" -#: flatcamGUI/FlatCAMGUI.py:800 flatcamGUI/FlatCAMGUI.py:2243 +#: flatcamGUI/FlatCAMGUI.py:893 flatcamGUI/FlatCAMGUI.py:2455 msgid "Add Polygon" msgstr "Adaugă Poligon" -#: flatcamGUI/FlatCAMGUI.py:802 flatcamGUI/FlatCAMGUI.py:2245 +#: flatcamGUI/FlatCAMGUI.py:896 flatcamGUI/FlatCAMGUI.py:2458 msgid "Add Text" msgstr "Adaugă Text" -#: flatcamGUI/FlatCAMGUI.py:803 flatcamGUI/FlatCAMGUI.py:2246 +#: flatcamGUI/FlatCAMGUI.py:898 flatcamGUI/FlatCAMGUI.py:2460 msgid "Add Buffer" msgstr "Adaugă Bufer" -#: flatcamGUI/FlatCAMGUI.py:804 flatcamGUI/FlatCAMGUI.py:2247 +#: flatcamGUI/FlatCAMGUI.py:900 flatcamGUI/FlatCAMGUI.py:2462 msgid "Paint Shape" msgstr "Paint o forma" -#: flatcamGUI/FlatCAMGUI.py:805 flatcamGUI/FlatCAMGUI.py:847 -#: flatcamGUI/FlatCAMGUI.py:1922 flatcamGUI/FlatCAMGUI.py:1950 -#: flatcamGUI/FlatCAMGUI.py:2248 flatcamGUI/FlatCAMGUI.py:2287 +#: flatcamGUI/FlatCAMGUI.py:902 flatcamGUI/FlatCAMGUI.py:959 +#: flatcamGUI/FlatCAMGUI.py:2060 flatcamGUI/FlatCAMGUI.py:2105 +#: flatcamGUI/FlatCAMGUI.py:2464 flatcamGUI/FlatCAMGUI.py:2518 msgid "Eraser" msgstr "Stergere Selectivă" -#: flatcamGUI/FlatCAMGUI.py:808 flatcamGUI/FlatCAMGUI.py:2251 +#: flatcamGUI/FlatCAMGUI.py:906 flatcamGUI/FlatCAMGUI.py:2468 msgid "Polygon Union" msgstr "Uniune Poligoane" -#: flatcamGUI/FlatCAMGUI.py:809 flatcamGUI/FlatCAMGUI.py:2252 +#: flatcamGUI/FlatCAMGUI.py:908 flatcamGUI/FlatCAMGUI.py:2470 msgid "Polygon Explode" msgstr "Explodare Poligoane" -#: flatcamGUI/FlatCAMGUI.py:812 flatcamGUI/FlatCAMGUI.py:2255 +#: flatcamGUI/FlatCAMGUI.py:911 flatcamGUI/FlatCAMGUI.py:2473 msgid "Polygon Intersection" msgstr "Intersecţie Poligoane" -#: flatcamGUI/FlatCAMGUI.py:814 flatcamGUI/FlatCAMGUI.py:2257 +#: flatcamGUI/FlatCAMGUI.py:913 flatcamGUI/FlatCAMGUI.py:2475 msgid "Polygon Subtraction" msgstr "Substracţie Poligoane" -#: flatcamGUI/FlatCAMGUI.py:817 flatcamGUI/FlatCAMGUI.py:2260 +#: flatcamGUI/FlatCAMGUI.py:917 flatcamGUI/FlatCAMGUI.py:2479 msgid "Cut Path" msgstr "Taie Cale" -#: flatcamGUI/FlatCAMGUI.py:818 +#: flatcamGUI/FlatCAMGUI.py:919 msgid "Copy Shape(s)" msgstr "Copiază forme geo." -#: flatcamGUI/FlatCAMGUI.py:821 +#: flatcamGUI/FlatCAMGUI.py:922 msgid "Delete Shape '-'" msgstr "Șterge forme geo" -#: flatcamGUI/FlatCAMGUI.py:823 flatcamGUI/FlatCAMGUI.py:854 -#: flatcamGUI/FlatCAMGUI.py:1929 flatcamGUI/FlatCAMGUI.py:1954 -#: flatcamGUI/FlatCAMGUI.py:2265 flatcamGUI/FlatCAMGUI.py:2294 +#: flatcamGUI/FlatCAMGUI.py:924 flatcamGUI/FlatCAMGUI.py:967 +#: flatcamGUI/FlatCAMGUI.py:2072 flatcamGUI/FlatCAMGUI.py:2109 +#: flatcamGUI/FlatCAMGUI.py:2485 flatcamGUI/FlatCAMGUI.py:2526 msgid "Transformations" msgstr "Transformări" -#: flatcamGUI/FlatCAMGUI.py:825 +#: flatcamGUI/FlatCAMGUI.py:927 msgid "Move Objects " msgstr "Mută Obiecte " -#: flatcamGUI/FlatCAMGUI.py:831 flatcamGUI/FlatCAMGUI.py:1869 -#: flatcamGUI/FlatCAMGUI.py:2272 +#: flatcamGUI/FlatCAMGUI.py:935 flatcamGUI/FlatCAMGUI.py:1985 +#: flatcamGUI/FlatCAMGUI.py:2495 msgid "Add Pad" msgstr "Adaugă Pad" -#: flatcamGUI/FlatCAMGUI.py:833 flatcamGUI/FlatCAMGUI.py:1870 -#: flatcamGUI/FlatCAMGUI.py:2274 +#: flatcamGUI/FlatCAMGUI.py:939 flatcamGUI/FlatCAMGUI.py:1986 +#: flatcamGUI/FlatCAMGUI.py:2499 msgid "Add Track" msgstr "Adaugă Traseu" -#: flatcamGUI/FlatCAMGUI.py:834 flatcamGUI/FlatCAMGUI.py:1869 -#: flatcamGUI/FlatCAMGUI.py:2275 +#: flatcamGUI/FlatCAMGUI.py:941 flatcamGUI/FlatCAMGUI.py:1985 +#: flatcamGUI/FlatCAMGUI.py:2501 msgid "Add Region" msgstr "Adaugă Regiune" -#: flatcamGUI/FlatCAMGUI.py:836 flatcamGUI/FlatCAMGUI.py:1942 -#: flatcamGUI/FlatCAMGUI.py:2277 +#: flatcamGUI/FlatCAMGUI.py:943 flatcamGUI/FlatCAMGUI.py:2091 +#: flatcamGUI/FlatCAMGUI.py:2503 msgid "Poligonize" msgstr "Poligonizare" -#: flatcamGUI/FlatCAMGUI.py:838 flatcamGUI/FlatCAMGUI.py:1943 -#: flatcamGUI/FlatCAMGUI.py:2279 +#: flatcamGUI/FlatCAMGUI.py:946 flatcamGUI/FlatCAMGUI.py:2093 +#: flatcamGUI/FlatCAMGUI.py:2506 msgid "SemiDisc" msgstr "SemiDisc" -#: flatcamGUI/FlatCAMGUI.py:839 flatcamGUI/FlatCAMGUI.py:1944 -#: flatcamGUI/FlatCAMGUI.py:2280 +#: flatcamGUI/FlatCAMGUI.py:948 flatcamGUI/FlatCAMGUI.py:2095 +#: flatcamGUI/FlatCAMGUI.py:2508 msgid "Disc" msgstr "Disc" -#: flatcamGUI/FlatCAMGUI.py:845 flatcamGUI/FlatCAMGUI.py:1949 -#: flatcamGUI/FlatCAMGUI.py:2286 +#: flatcamGUI/FlatCAMGUI.py:956 flatcamGUI/FlatCAMGUI.py:2103 +#: flatcamGUI/FlatCAMGUI.py:2516 msgid "Mark Area" msgstr "Marc. aria" -#: flatcamGUI/FlatCAMGUI.py:856 flatcamGUI/FlatCAMGUI.py:1869 -#: flatcamGUI/FlatCAMGUI.py:1932 flatcamGUI/FlatCAMGUI.py:1973 -#: flatcamGUI/FlatCAMGUI.py:2296 flatcamTools/ToolMove.py:28 +#: flatcamGUI/FlatCAMGUI.py:970 flatcamGUI/FlatCAMGUI.py:1985 +#: flatcamGUI/FlatCAMGUI.py:2076 flatcamGUI/FlatCAMGUI.py:2139 +#: flatcamGUI/FlatCAMGUI.py:2529 flatcamTools/ToolMove.py:28 msgid "Move" msgstr "Mutare" -#: flatcamGUI/FlatCAMGUI.py:863 flatcamGUI/FlatCAMGUI.py:2302 +#: flatcamGUI/FlatCAMGUI.py:978 flatcamGUI/FlatCAMGUI.py:2536 msgid "Snap to grid" msgstr "Lipire la grid" -#: flatcamGUI/FlatCAMGUI.py:866 flatcamGUI/FlatCAMGUI.py:2305 +#: flatcamGUI/FlatCAMGUI.py:981 flatcamGUI/FlatCAMGUI.py:2539 msgid "Grid X snapping distance" msgstr "Distanta de lipire la grid pe axa X" -#: flatcamGUI/FlatCAMGUI.py:871 flatcamGUI/FlatCAMGUI.py:2310 +#: flatcamGUI/FlatCAMGUI.py:986 flatcamGUI/FlatCAMGUI.py:2544 msgid "Grid Y snapping distance" msgstr "Distanta de lipire la grid pe axa Y" -#: flatcamGUI/FlatCAMGUI.py:877 flatcamGUI/FlatCAMGUI.py:2316 +#: flatcamGUI/FlatCAMGUI.py:992 flatcamGUI/FlatCAMGUI.py:2550 msgid "" "When active, value on Grid_X\n" "is copied to the Grid_Y value." @@ -6242,63 +6242,63 @@ msgstr "" "Când este activ, valoarea de pe Grid_X\n" "este copiata și in Grid_Y." -#: flatcamGUI/FlatCAMGUI.py:883 flatcamGUI/FlatCAMGUI.py:2322 +#: flatcamGUI/FlatCAMGUI.py:999 flatcamGUI/FlatCAMGUI.py:2557 msgid "Snap to corner" msgstr "Lipire la colt" -#: flatcamGUI/FlatCAMGUI.py:887 flatcamGUI/FlatCAMGUI.py:2326 +#: flatcamGUI/FlatCAMGUI.py:1003 flatcamGUI/FlatCAMGUI.py:2561 #: flatcamGUI/PreferencesUI.py:348 msgid "Max. magnet distance" msgstr "Distanta magnetica maxima" -#: flatcamGUI/FlatCAMGUI.py:921 +#: flatcamGUI/FlatCAMGUI.py:1037 msgid "Selected" msgstr "Selectat" -#: flatcamGUI/FlatCAMGUI.py:948 flatcamGUI/FlatCAMGUI.py:956 +#: flatcamGUI/FlatCAMGUI.py:1064 flatcamGUI/FlatCAMGUI.py:1072 msgid "Plot Area" msgstr "Arie Afișare" -#: flatcamGUI/FlatCAMGUI.py:983 +#: flatcamGUI/FlatCAMGUI.py:1099 msgid "General" msgstr "General" -#: flatcamGUI/FlatCAMGUI.py:998 flatcamTools/ToolCopperThieving.py:74 +#: flatcamGUI/FlatCAMGUI.py:1114 flatcamTools/ToolCopperThieving.py:74 #: flatcamTools/ToolDblSided.py:57 flatcamTools/ToolOptimal.py:71 #: flatcamTools/ToolQRCode.py:77 msgid "GERBER" msgstr "GERBER" -#: flatcamGUI/FlatCAMGUI.py:1008 flatcamTools/ToolDblSided.py:85 +#: flatcamGUI/FlatCAMGUI.py:1124 flatcamTools/ToolDblSided.py:85 msgid "EXCELLON" msgstr "EXCELLON" -#: flatcamGUI/FlatCAMGUI.py:1018 flatcamTools/ToolDblSided.py:113 +#: flatcamGUI/FlatCAMGUI.py:1134 flatcamTools/ToolDblSided.py:113 msgid "GEOMETRY" msgstr "GEOMETRIE" -#: flatcamGUI/FlatCAMGUI.py:1028 +#: flatcamGUI/FlatCAMGUI.py:1144 msgid "CNC-JOB" msgstr "CNCJob" -#: flatcamGUI/FlatCAMGUI.py:1037 flatcamGUI/ObjectUI.py:544 -#: flatcamGUI/ObjectUI.py:1687 +#: flatcamGUI/FlatCAMGUI.py:1153 flatcamGUI/ObjectUI.py:555 +#: flatcamGUI/ObjectUI.py:1726 msgid "TOOLS" msgstr "Unelte" -#: flatcamGUI/FlatCAMGUI.py:1046 +#: flatcamGUI/FlatCAMGUI.py:1162 msgid "TOOLS 2" msgstr "UNELTE 2" -#: flatcamGUI/FlatCAMGUI.py:1056 +#: flatcamGUI/FlatCAMGUI.py:1172 msgid "UTILITIES" msgstr "UTILITARE" -#: flatcamGUI/FlatCAMGUI.py:1073 +#: flatcamGUI/FlatCAMGUI.py:1189 msgid "Import Preferences" msgstr "Importa Preferințele" -#: flatcamGUI/FlatCAMGUI.py:1076 +#: flatcamGUI/FlatCAMGUI.py:1192 msgid "" "Import a full set of FlatCAM settings from a file\n" "previously saved on HDD.\n" @@ -6312,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:1083 +#: flatcamGUI/FlatCAMGUI.py:1199 msgid "Export Preferences" msgstr "Exporta Preferințele" -#: flatcamGUI/FlatCAMGUI.py:1086 +#: flatcamGUI/FlatCAMGUI.py:1202 msgid "" "Export a full set of FlatCAM settings in a file\n" "that is saved on HDD." @@ -6324,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:1091 +#: flatcamGUI/FlatCAMGUI.py:1207 msgid "Open Pref Folder" msgstr "Deschide Pref Dir" -#: flatcamGUI/FlatCAMGUI.py:1094 +#: flatcamGUI/FlatCAMGUI.py:1210 msgid "Open the folder where FlatCAM save the preferences files." msgstr "Deschide directorul unde FlatCAM salvează fişierele cu setări." -#: flatcamGUI/FlatCAMGUI.py:1102 +#: flatcamGUI/FlatCAMGUI.py:1218 msgid "Apply" msgstr "Aplicați" -#: flatcamGUI/FlatCAMGUI.py:1105 +#: flatcamGUI/FlatCAMGUI.py:1221 msgid "Apply the current preferences without saving to a file." msgstr "Aplicați preferințele actuale fără a salva într-un fișier." -#: flatcamGUI/FlatCAMGUI.py:1112 +#: flatcamGUI/FlatCAMGUI.py:1228 msgid "" "Save the current settings in the 'current_defaults' file\n" "which is the file storing the working default preferences." @@ -6348,532 +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:1120 +#: flatcamGUI/FlatCAMGUI.py:1236 msgid "Will not save the changes and will close the preferences window." msgstr "Nu va salva modificările și va închide fereastra de preferințe." -#: flatcamGUI/FlatCAMGUI.py:1456 +#: flatcamGUI/FlatCAMGUI.py:1572 msgid "SHOW SHORTCUT LIST" msgstr "ARATA LISTA DE TASTE SHORTCUT" -#: flatcamGUI/FlatCAMGUI.py:1456 +#: flatcamGUI/FlatCAMGUI.py:1572 msgid "Switch to Project Tab" msgstr "Treci la Tab-ul Proiect" -#: flatcamGUI/FlatCAMGUI.py:1456 +#: flatcamGUI/FlatCAMGUI.py:1572 msgid "Switch to Selected Tab" msgstr "Treci la Tab-ul Selectat" -#: flatcamGUI/FlatCAMGUI.py:1457 +#: flatcamGUI/FlatCAMGUI.py:1573 msgid "Switch to Tool Tab" msgstr "Treci la Tab-ul 'Unealta'" -#: flatcamGUI/FlatCAMGUI.py:1458 +#: flatcamGUI/FlatCAMGUI.py:1574 msgid "New Gerber" msgstr "Gerber Nou" -#: flatcamGUI/FlatCAMGUI.py:1458 +#: flatcamGUI/FlatCAMGUI.py:1574 msgid "Edit Object (if selected)" msgstr "Editeaza obiectul (daca este selectat)" -#: flatcamGUI/FlatCAMGUI.py:1458 +#: flatcamGUI/FlatCAMGUI.py:1574 msgid "Jump to Coordinates" msgstr "Sari la Coordonatele" -#: flatcamGUI/FlatCAMGUI.py:1459 +#: flatcamGUI/FlatCAMGUI.py:1575 msgid "New Excellon" msgstr "Excellon nou" -#: flatcamGUI/FlatCAMGUI.py:1459 +#: flatcamGUI/FlatCAMGUI.py:1575 msgid "Move Obj" msgstr "Mută Obiecte" -#: flatcamGUI/FlatCAMGUI.py:1459 +#: flatcamGUI/FlatCAMGUI.py:1575 msgid "New Geometry" msgstr "Geometrie Noua" -#: flatcamGUI/FlatCAMGUI.py:1459 +#: flatcamGUI/FlatCAMGUI.py:1575 msgid "Change Units" msgstr "Comută Unitati" -#: flatcamGUI/FlatCAMGUI.py:1460 +#: flatcamGUI/FlatCAMGUI.py:1576 msgid "Open Properties Tool" msgstr "Deschide Unealta Proprietati" -#: flatcamGUI/FlatCAMGUI.py:1460 +#: flatcamGUI/FlatCAMGUI.py:1576 msgid "Rotate by 90 degree CW" msgstr "Roteste cu 90 grade CW" -#: flatcamGUI/FlatCAMGUI.py:1460 +#: flatcamGUI/FlatCAMGUI.py:1576 msgid "Shell Toggle" msgstr "Comuta Linie de comanda" -#: flatcamGUI/FlatCAMGUI.py:1461 +#: flatcamGUI/FlatCAMGUI.py:1577 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:1462 +#: flatcamGUI/FlatCAMGUI.py:1578 msgid "Flip on X_axis" msgstr "Oglindește pe axa X" -#: flatcamGUI/FlatCAMGUI.py:1462 +#: flatcamGUI/FlatCAMGUI.py:1578 msgid "Flip on Y_axis" msgstr "Oglindește pe axa Y" -#: flatcamGUI/FlatCAMGUI.py:1465 +#: flatcamGUI/FlatCAMGUI.py:1581 msgid "Copy Obj" msgstr "Copiază Obiecte" -#: flatcamGUI/FlatCAMGUI.py:1465 +#: flatcamGUI/FlatCAMGUI.py:1581 msgid "Open Tools Database" msgstr "Deschide baza de date Unelte" -#: flatcamGUI/FlatCAMGUI.py:1466 +#: flatcamGUI/FlatCAMGUI.py:1582 msgid "Open Excellon File" msgstr "Încarcă un fisier Excellon" -#: flatcamGUI/FlatCAMGUI.py:1466 +#: flatcamGUI/FlatCAMGUI.py:1582 msgid "Open Gerber File" msgstr "Încarcă un fisier Gerber" -#: flatcamGUI/FlatCAMGUI.py:1466 +#: flatcamGUI/FlatCAMGUI.py:1582 msgid "New Project" msgstr "Un Nou Project" -#: flatcamGUI/FlatCAMGUI.py:1467 flatcamTools/ToolPDF.py:42 +#: flatcamGUI/FlatCAMGUI.py:1583 flatcamTools/ToolPDF.py:42 msgid "PDF Import Tool" msgstr "Unealta import PDF" -#: flatcamGUI/FlatCAMGUI.py:1467 +#: flatcamGUI/FlatCAMGUI.py:1583 msgid "Save Project As" msgstr "Salvează Proiectul ca" -#: flatcamGUI/FlatCAMGUI.py:1467 +#: flatcamGUI/FlatCAMGUI.py:1583 msgid "Toggle Plot Area" msgstr "Comută Aria de Afișare" -#: flatcamGUI/FlatCAMGUI.py:1470 +#: flatcamGUI/FlatCAMGUI.py:1586 msgid "Copy Obj_Name" msgstr "Copiază Nume Obiect" -#: flatcamGUI/FlatCAMGUI.py:1471 +#: flatcamGUI/FlatCAMGUI.py:1587 msgid "Toggle Code Editor" msgstr "Comută Editorul de cod" -#: flatcamGUI/FlatCAMGUI.py:1471 +#: flatcamGUI/FlatCAMGUI.py:1587 msgid "Toggle the axis" msgstr "Comută Reprezentare Axe" -#: flatcamGUI/FlatCAMGUI.py:1471 flatcamGUI/FlatCAMGUI.py:1663 -#: flatcamGUI/FlatCAMGUI.py:1750 flatcamGUI/FlatCAMGUI.py:1872 +#: flatcamGUI/FlatCAMGUI.py:1587 flatcamGUI/FlatCAMGUI.py:1779 +#: flatcamGUI/FlatCAMGUI.py:1866 flatcamGUI/FlatCAMGUI.py:1988 msgid "Distance Minimum Tool" msgstr "Unealta Distanță minimă" -#: flatcamGUI/FlatCAMGUI.py:1471 +#: flatcamGUI/FlatCAMGUI.py:1587 msgid "Open Preferences Window" msgstr "Deschide Preferințe" -#: flatcamGUI/FlatCAMGUI.py:1472 +#: flatcamGUI/FlatCAMGUI.py:1588 msgid "Rotate by 90 degree CCW" msgstr "Roteste cu 90 grade CCW" -#: flatcamGUI/FlatCAMGUI.py:1472 +#: flatcamGUI/FlatCAMGUI.py:1588 msgid "Run a Script" msgstr "Rulează TCL script" -#: flatcamGUI/FlatCAMGUI.py:1472 +#: flatcamGUI/FlatCAMGUI.py:1588 msgid "Toggle the workspace" msgstr "Comută Suprafata de lucru" -#: flatcamGUI/FlatCAMGUI.py:1472 +#: flatcamGUI/FlatCAMGUI.py:1588 msgid "Skew on X axis" msgstr "Deformare pe axa X" -#: flatcamGUI/FlatCAMGUI.py:1473 +#: flatcamGUI/FlatCAMGUI.py:1589 msgid "Skew on Y axis" msgstr "Deformare pe axa Y" -#: flatcamGUI/FlatCAMGUI.py:1475 +#: flatcamGUI/FlatCAMGUI.py:1591 msgid "2-Sided PCB Tool" msgstr "Unealta 2-fețe" -#: flatcamGUI/FlatCAMGUI.py:1475 +#: flatcamGUI/FlatCAMGUI.py:1591 msgid "Transformations Tool" msgstr "Unealta Transformări" -#: flatcamGUI/FlatCAMGUI.py:1476 +#: flatcamGUI/FlatCAMGUI.py:1592 msgid "Solder Paste Dispensing Tool" msgstr "Unealta DispensorPF" -#: flatcamGUI/FlatCAMGUI.py:1477 +#: flatcamGUI/FlatCAMGUI.py:1593 msgid "Film PCB Tool" msgstr "Unealta Film" -#: flatcamGUI/FlatCAMGUI.py:1477 +#: flatcamGUI/FlatCAMGUI.py:1593 msgid "Non-Copper Clearing Tool" msgstr "Curățăre Non-Cupru" -#: flatcamGUI/FlatCAMGUI.py:1478 +#: flatcamGUI/FlatCAMGUI.py:1594 msgid "Paint Area Tool" msgstr "Unealta Paint" -#: flatcamGUI/FlatCAMGUI.py:1478 +#: flatcamGUI/FlatCAMGUI.py:1594 msgid "Rules Check Tool" msgstr "Unealta Verificari Reguli" -#: flatcamGUI/FlatCAMGUI.py:1479 +#: flatcamGUI/FlatCAMGUI.py:1595 msgid "View File Source" msgstr "Vizualiz. Cod Sursă" -#: flatcamGUI/FlatCAMGUI.py:1480 +#: flatcamGUI/FlatCAMGUI.py:1596 msgid "Cutout PCB Tool" msgstr "Unealta Decupare" -#: flatcamGUI/FlatCAMGUI.py:1480 +#: flatcamGUI/FlatCAMGUI.py:1596 msgid "Enable all Plots" msgstr "Activează Afișare pt Tot" -#: flatcamGUI/FlatCAMGUI.py:1480 +#: flatcamGUI/FlatCAMGUI.py:1596 msgid "Disable all Plots" msgstr "Dezactivează Afișare pt Tot" -#: flatcamGUI/FlatCAMGUI.py:1480 +#: flatcamGUI/FlatCAMGUI.py:1596 msgid "Disable Non-selected Plots" msgstr "Dezactivează ne-selectate" -#: flatcamGUI/FlatCAMGUI.py:1481 +#: flatcamGUI/FlatCAMGUI.py:1597 msgid "Toggle Full Screen" msgstr "Comută FullScreen" -#: flatcamGUI/FlatCAMGUI.py:1484 +#: flatcamGUI/FlatCAMGUI.py:1600 msgid "Abort current task (gracefully)" msgstr "Renutna la task" -#: flatcamGUI/FlatCAMGUI.py:1487 +#: flatcamGUI/FlatCAMGUI.py:1603 msgid "Open Online Manual" msgstr "Deschide Manualul Online" -#: flatcamGUI/FlatCAMGUI.py:1488 +#: flatcamGUI/FlatCAMGUI.py:1604 msgid "Open Online Tutorials" msgstr "Deschide Tutoriale Online" -#: flatcamGUI/FlatCAMGUI.py:1488 +#: flatcamGUI/FlatCAMGUI.py:1604 msgid "Refresh Plots" msgstr "Improspatare Afișare" -#: flatcamGUI/FlatCAMGUI.py:1488 flatcamTools/ToolSolderPaste.py:503 +#: flatcamGUI/FlatCAMGUI.py:1604 flatcamTools/ToolSolderPaste.py:503 msgid "Delete Object" msgstr "Șterge Obiectul" -#: flatcamGUI/FlatCAMGUI.py:1488 +#: flatcamGUI/FlatCAMGUI.py:1604 msgid "Alternate: Delete Tool" msgstr "Alternativ: Șterge Unealta" -#: flatcamGUI/FlatCAMGUI.py:1489 +#: flatcamGUI/FlatCAMGUI.py:1605 msgid "(left to Key_1)Toogle Notebook Area (Left Side)" msgstr "(in stanga tasta 1) Comuta aria Notebook (partea stanga)" -#: flatcamGUI/FlatCAMGUI.py:1489 +#: flatcamGUI/FlatCAMGUI.py:1605 msgid "En(Dis)able Obj Plot" msgstr "(Dez)activează Afișare" -#: flatcamGUI/FlatCAMGUI.py:1490 +#: flatcamGUI/FlatCAMGUI.py:1606 msgid "Deselects all objects" msgstr "Deselectează toate obiectele" -#: flatcamGUI/FlatCAMGUI.py:1504 +#: flatcamGUI/FlatCAMGUI.py:1620 msgid "Editor Shortcut list" msgstr "Lista de shortcut-uri" -#: flatcamGUI/FlatCAMGUI.py:1658 +#: flatcamGUI/FlatCAMGUI.py:1774 msgid "GEOMETRY EDITOR" msgstr "EDITOR GEOMETRIE" -#: flatcamGUI/FlatCAMGUI.py:1658 +#: flatcamGUI/FlatCAMGUI.py:1774 msgid "Draw an Arc" msgstr "Deseneaza un Arc" -#: flatcamGUI/FlatCAMGUI.py:1658 +#: flatcamGUI/FlatCAMGUI.py:1774 msgid "Copy Geo Item" msgstr "Copiază Geo" -#: flatcamGUI/FlatCAMGUI.py:1659 +#: flatcamGUI/FlatCAMGUI.py:1775 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:1659 +#: flatcamGUI/FlatCAMGUI.py:1775 msgid "Polygon Intersection Tool" msgstr "Unealta Intersecţie Poligoane" -#: flatcamGUI/FlatCAMGUI.py:1660 +#: flatcamGUI/FlatCAMGUI.py:1776 msgid "Geo Paint Tool" msgstr "Unealta Paint Geo" -#: flatcamGUI/FlatCAMGUI.py:1660 flatcamGUI/FlatCAMGUI.py:1749 -#: flatcamGUI/FlatCAMGUI.py:1869 +#: flatcamGUI/FlatCAMGUI.py:1776 flatcamGUI/FlatCAMGUI.py:1865 +#: flatcamGUI/FlatCAMGUI.py:1985 msgid "Jump to Location (x, y)" msgstr "Sari la Locaţia (x, y)" -#: flatcamGUI/FlatCAMGUI.py:1660 +#: flatcamGUI/FlatCAMGUI.py:1776 msgid "Toggle Corner Snap" msgstr "Comută lipire colt" -#: flatcamGUI/FlatCAMGUI.py:1660 +#: flatcamGUI/FlatCAMGUI.py:1776 msgid "Move Geo Item" msgstr "Muta El. Geo" -#: flatcamGUI/FlatCAMGUI.py:1661 +#: flatcamGUI/FlatCAMGUI.py:1777 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:1661 +#: flatcamGUI/FlatCAMGUI.py:1777 msgid "Draw a Polygon" msgstr "Deseneaza un Poligon" -#: flatcamGUI/FlatCAMGUI.py:1661 +#: flatcamGUI/FlatCAMGUI.py:1777 msgid "Draw a Circle" msgstr "Deseneaza un Cerc" -#: flatcamGUI/FlatCAMGUI.py:1662 +#: flatcamGUI/FlatCAMGUI.py:1778 msgid "Draw a Path" msgstr "Deseneaza un Traseu" -#: flatcamGUI/FlatCAMGUI.py:1662 +#: flatcamGUI/FlatCAMGUI.py:1778 msgid "Draw Rectangle" msgstr "Deseneaza un Patrulater" -#: flatcamGUI/FlatCAMGUI.py:1662 +#: flatcamGUI/FlatCAMGUI.py:1778 msgid "Polygon Subtraction Tool" msgstr "Unealta Substracţie Poligoane" -#: flatcamGUI/FlatCAMGUI.py:1662 +#: flatcamGUI/FlatCAMGUI.py:1778 msgid "Add Text Tool" msgstr "Unealta Adaugare Text" -#: flatcamGUI/FlatCAMGUI.py:1663 +#: flatcamGUI/FlatCAMGUI.py:1779 msgid "Polygon Union Tool" msgstr "Unealta Uniune Poligoane" -#: flatcamGUI/FlatCAMGUI.py:1663 +#: flatcamGUI/FlatCAMGUI.py:1779 msgid "Flip shape on X axis" msgstr "Oglindește pe axa X" -#: flatcamGUI/FlatCAMGUI.py:1663 +#: flatcamGUI/FlatCAMGUI.py:1779 msgid "Flip shape on Y axis" msgstr "Oglindește pe axa Y" -#: flatcamGUI/FlatCAMGUI.py:1664 +#: flatcamGUI/FlatCAMGUI.py:1780 msgid "Skew shape on X axis" msgstr "Deformare pe axa X" -#: flatcamGUI/FlatCAMGUI.py:1664 +#: flatcamGUI/FlatCAMGUI.py:1780 msgid "Skew shape on Y axis" msgstr "Deformare pe axa Y" -#: flatcamGUI/FlatCAMGUI.py:1664 +#: flatcamGUI/FlatCAMGUI.py:1780 msgid "Editor Transformation Tool" msgstr "Unealta Transformare in Editor" -#: flatcamGUI/FlatCAMGUI.py:1665 +#: flatcamGUI/FlatCAMGUI.py:1781 msgid "Offset shape on X axis" msgstr "Ofset pe axa X" -#: flatcamGUI/FlatCAMGUI.py:1665 +#: flatcamGUI/FlatCAMGUI.py:1781 msgid "Offset shape on Y axis" msgstr "Ofset pe axa Y" -#: flatcamGUI/FlatCAMGUI.py:1666 flatcamGUI/FlatCAMGUI.py:1752 -#: flatcamGUI/FlatCAMGUI.py:1874 +#: flatcamGUI/FlatCAMGUI.py:1782 flatcamGUI/FlatCAMGUI.py:1868 +#: flatcamGUI/FlatCAMGUI.py:1990 msgid "Save Object and Exit Editor" msgstr "Salvează Obiectul și inchide Editorul" -#: flatcamGUI/FlatCAMGUI.py:1666 +#: flatcamGUI/FlatCAMGUI.py:1782 msgid "Polygon Cut Tool" msgstr "Unealta Taiere Poligoane" -#: flatcamGUI/FlatCAMGUI.py:1667 +#: flatcamGUI/FlatCAMGUI.py:1783 msgid "Rotate Geometry" msgstr "Roteste Geometrie" -#: flatcamGUI/FlatCAMGUI.py:1667 +#: flatcamGUI/FlatCAMGUI.py:1783 msgid "Finish drawing for certain tools" msgstr "Termina de desenat (pt anumite unelte)" -#: flatcamGUI/FlatCAMGUI.py:1667 flatcamGUI/FlatCAMGUI.py:1752 -#: flatcamGUI/FlatCAMGUI.py:1872 +#: flatcamGUI/FlatCAMGUI.py:1783 flatcamGUI/FlatCAMGUI.py:1868 +#: flatcamGUI/FlatCAMGUI.py:1988 msgid "Abort and return to Select" msgstr "Renutna si intoarce-te la Selectie" -#: flatcamGUI/FlatCAMGUI.py:1668 flatcamGUI/FlatCAMGUI.py:2263 +#: flatcamGUI/FlatCAMGUI.py:1784 flatcamGUI/FlatCAMGUI.py:2483 msgid "Delete Shape" msgstr "Șterge forme geo" -#: flatcamGUI/FlatCAMGUI.py:1748 +#: flatcamGUI/FlatCAMGUI.py:1864 msgid "EXCELLON EDITOR" msgstr "EDITOR EXCELLON" -#: flatcamGUI/FlatCAMGUI.py:1748 +#: flatcamGUI/FlatCAMGUI.py:1864 msgid "Copy Drill(s)" msgstr "Copiaza Găurire" -#: flatcamGUI/FlatCAMGUI.py:1748 flatcamGUI/FlatCAMGUI.py:1957 +#: flatcamGUI/FlatCAMGUI.py:1864 flatcamGUI/FlatCAMGUI.py:2114 msgid "Add Drill" msgstr "Adaugă găurire" -#: flatcamGUI/FlatCAMGUI.py:1749 +#: flatcamGUI/FlatCAMGUI.py:1865 msgid "Move Drill(s)" msgstr "Muta Găuri" -#: flatcamGUI/FlatCAMGUI.py:1750 +#: flatcamGUI/FlatCAMGUI.py:1866 msgid "Add a new Tool" msgstr "Adaugă Unealta Noua" -#: flatcamGUI/FlatCAMGUI.py:1751 +#: flatcamGUI/FlatCAMGUI.py:1867 msgid "Delete Drill(s)" msgstr "Șterge Găuri" -#: flatcamGUI/FlatCAMGUI.py:1751 +#: flatcamGUI/FlatCAMGUI.py:1867 msgid "Alternate: Delete Tool(s)" msgstr "Alternativ: Șterge Unealta" -#: flatcamGUI/FlatCAMGUI.py:1868 +#: flatcamGUI/FlatCAMGUI.py:1984 msgid "GERBER EDITOR" msgstr "EDITOR GERBER" -#: flatcamGUI/FlatCAMGUI.py:1868 +#: flatcamGUI/FlatCAMGUI.py:1984 msgid "Add Disc" msgstr "Adaugă Disc" -#: flatcamGUI/FlatCAMGUI.py:1868 +#: flatcamGUI/FlatCAMGUI.py:1984 msgid "Add SemiDisc" msgstr "Adaugă SemiDisc" -#: flatcamGUI/FlatCAMGUI.py:1870 +#: flatcamGUI/FlatCAMGUI.py:1986 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:1871 +#: flatcamGUI/FlatCAMGUI.py:1987 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:1872 +#: flatcamGUI/FlatCAMGUI.py:1988 msgid "Alternate: Delete Apertures" msgstr "Alternativ: Șterge Apertură" -#: flatcamGUI/FlatCAMGUI.py:1873 +#: flatcamGUI/FlatCAMGUI.py:1989 msgid "Eraser Tool" msgstr "Unealta Stergere" -#: flatcamGUI/FlatCAMGUI.py:1874 flatcamGUI/PreferencesUI.py:2038 +#: flatcamGUI/FlatCAMGUI.py:1990 flatcamGUI/PreferencesUI.py:2039 msgid "Mark Area Tool" msgstr "Unealta de Marc. Arie" -#: flatcamGUI/FlatCAMGUI.py:1874 +#: flatcamGUI/FlatCAMGUI.py:1990 msgid "Poligonize Tool" msgstr "Unealta Poligonizare" -#: flatcamGUI/FlatCAMGUI.py:1874 +#: flatcamGUI/FlatCAMGUI.py:1990 msgid "Transformation Tool" msgstr "Unealta Transformare" -#: flatcamGUI/FlatCAMGUI.py:1890 +#: flatcamGUI/FlatCAMGUI.py:2007 msgid "Toggle Visibility" msgstr "Comută Vizibilitate" -#: flatcamGUI/FlatCAMGUI.py:1894 +#: flatcamGUI/FlatCAMGUI.py:2013 msgid "New" msgstr "Nou" -#: flatcamGUI/FlatCAMGUI.py:1895 flatcamTools/ToolCalibration.py:634 +#: flatcamGUI/FlatCAMGUI.py:2015 flatcamTools/ToolCalibration.py:634 msgid "Geometry" msgstr "Geometrie" -#: flatcamGUI/FlatCAMGUI.py:1897 flatcamTools/ToolCalibration.py:197 +#: flatcamGUI/FlatCAMGUI.py:2019 flatcamTools/ToolCalibration.py:197 #: flatcamTools/ToolCalibration.py:634 flatcamTools/ToolFilm.py:359 msgid "Excellon" msgstr "Excellon" -#: flatcamGUI/FlatCAMGUI.py:1902 +#: flatcamGUI/FlatCAMGUI.py:2026 msgid "Grids" msgstr "Grid-uri" -#: flatcamGUI/FlatCAMGUI.py:1906 +#: flatcamGUI/FlatCAMGUI.py:2033 msgid "Clear Plot" msgstr "Șterge Afișare" -#: flatcamGUI/FlatCAMGUI.py:1907 +#: flatcamGUI/FlatCAMGUI.py:2035 msgid "Replot" msgstr "Reafișare" -#: flatcamGUI/FlatCAMGUI.py:1910 +#: flatcamGUI/FlatCAMGUI.py:2039 msgid "Geo Editor" msgstr "Editor Geometrii" -#: flatcamGUI/FlatCAMGUI.py:1911 +#: flatcamGUI/FlatCAMGUI.py:2041 msgid "Path" msgstr "Pe cale" -#: flatcamGUI/FlatCAMGUI.py:1912 +#: flatcamGUI/FlatCAMGUI.py:2043 msgid "Rectangle" msgstr "Patrulater" -#: flatcamGUI/FlatCAMGUI.py:1914 +#: flatcamGUI/FlatCAMGUI.py:2046 msgid "Circle" msgstr "Cerc" -#: flatcamGUI/FlatCAMGUI.py:1915 +#: flatcamGUI/FlatCAMGUI.py:2048 msgid "Polygon" msgstr "Poligon" -#: flatcamGUI/FlatCAMGUI.py:1916 +#: flatcamGUI/FlatCAMGUI.py:2050 msgid "Arc" msgstr "Arc" -#: flatcamGUI/FlatCAMGUI.py:1925 +#: flatcamGUI/FlatCAMGUI.py:2064 msgid "Union" msgstr "Uniune" -#: flatcamGUI/FlatCAMGUI.py:1926 +#: flatcamGUI/FlatCAMGUI.py:2066 msgid "Intersection" msgstr "Intersecţie" -#: flatcamGUI/FlatCAMGUI.py:1927 +#: flatcamGUI/FlatCAMGUI.py:2068 msgid "Subtraction" msgstr "Scădere" -#: flatcamGUI/FlatCAMGUI.py:1928 flatcamGUI/ObjectUI.py:1761 -#: flatcamGUI/PreferencesUI.py:3643 +#: flatcamGUI/FlatCAMGUI.py:2070 flatcamGUI/ObjectUI.py:1813 +#: flatcamGUI/PreferencesUI.py:3644 msgid "Cut" msgstr "Tăiere" -#: flatcamGUI/FlatCAMGUI.py:1935 +#: flatcamGUI/FlatCAMGUI.py:2081 msgid "Pad" msgstr "Pad" -#: flatcamGUI/FlatCAMGUI.py:1936 +#: flatcamGUI/FlatCAMGUI.py:2083 msgid "Pad Array" msgstr "Arie de paduri" -#: flatcamGUI/FlatCAMGUI.py:1939 +#: flatcamGUI/FlatCAMGUI.py:2087 msgid "Track" msgstr "Traseu" -#: flatcamGUI/FlatCAMGUI.py:1940 +#: flatcamGUI/FlatCAMGUI.py:2089 msgid "Region" msgstr "Regiune" -#: flatcamGUI/FlatCAMGUI.py:1956 +#: flatcamGUI/FlatCAMGUI.py:2112 msgid "Exc Editor" msgstr "Editor EXC" -#: flatcamGUI/FlatCAMGUI.py:1986 +#: flatcamGUI/FlatCAMGUI.py:2153 msgid "" "Relative neasurement.\n" "Reference is last click position" @@ -6881,7 +6881,7 @@ msgstr "" "Măsurătoare relativă.\n" "Referința este poziţia ultimului click pe canvas" -#: flatcamGUI/FlatCAMGUI.py:1992 +#: flatcamGUI/FlatCAMGUI.py:2159 msgid "" "Absolute neasurement.\n" "Reference is (X=0, Y= 0) position" @@ -6889,27 +6889,27 @@ msgstr "" "Măsurătoare absolută.\n" "Referința este originea (0, 0)" -#: flatcamGUI/FlatCAMGUI.py:2099 +#: flatcamGUI/FlatCAMGUI.py:2266 msgid "Lock Toolbars" msgstr "Blochează Toolbar-uri" -#: flatcamGUI/FlatCAMGUI.py:2192 +#: flatcamGUI/FlatCAMGUI.py:2384 msgid "&Cutout Tool" msgstr "Unealta Decupare" -#: flatcamGUI/FlatCAMGUI.py:2234 +#: flatcamGUI/FlatCAMGUI.py:2443 msgid "Select 'Esc'" msgstr "Select" -#: flatcamGUI/FlatCAMGUI.py:2261 +#: flatcamGUI/FlatCAMGUI.py:2481 msgid "Copy Objects" msgstr "Copiază Obiecte" -#: flatcamGUI/FlatCAMGUI.py:2268 +#: flatcamGUI/FlatCAMGUI.py:2489 msgid "Move Objects" msgstr "Mută Obiecte" -#: flatcamGUI/FlatCAMGUI.py:2813 +#: flatcamGUI/FlatCAMGUI.py:3048 msgid "" "Please first select a geometry item to be cutted\n" "then select the geometry item that will be cutted\n" @@ -6920,12 +6920,12 @@ msgstr "" "apoi selectează forma geo. tăietoare. La final apasă tasta ~X~ sau\n" "butonul corespunzator din Toolbar." -#: flatcamGUI/FlatCAMGUI.py:2820 flatcamGUI/FlatCAMGUI.py:2964 -#: flatcamGUI/FlatCAMGUI.py:3023 flatcamGUI/FlatCAMGUI.py:3043 +#: flatcamGUI/FlatCAMGUI.py:3055 flatcamGUI/FlatCAMGUI.py:3199 +#: flatcamGUI/FlatCAMGUI.py:3258 flatcamGUI/FlatCAMGUI.py:3278 msgid "Warning" msgstr "Atenţie" -#: flatcamGUI/FlatCAMGUI.py:2959 +#: flatcamGUI/FlatCAMGUI.py:3194 msgid "" "Please select geometry items \n" "on which to perform Intersection Tool." @@ -6933,7 +6933,7 @@ msgstr "" "Selectează forma geometrică asupra căreia să se\n" "aplice Unealta Intersecţie." -#: flatcamGUI/FlatCAMGUI.py:3018 +#: flatcamGUI/FlatCAMGUI.py:3253 msgid "" "Please select geometry items \n" "on which to perform Substraction Tool." @@ -6941,7 +6941,7 @@ msgstr "" "Selectează forma geometrică asupra căreia să se\n" "aplice Unealta Substracţie." -#: flatcamGUI/FlatCAMGUI.py:3038 +#: flatcamGUI/FlatCAMGUI.py:3273 msgid "" "Please select geometry items \n" "on which to perform union." @@ -6949,52 +6949,52 @@ msgstr "" "Selectează forma geometrică asupra căreia să se\n" "aplice Unealta Uniune." -#: flatcamGUI/FlatCAMGUI.py:3122 flatcamGUI/FlatCAMGUI.py:3340 +#: flatcamGUI/FlatCAMGUI.py:3357 flatcamGUI/FlatCAMGUI.py:3575 msgid "Cancelled. Nothing selected to delete." msgstr "Anulat. Nimic nu este selectat pentru ștergere." -#: flatcamGUI/FlatCAMGUI.py:3207 flatcamGUI/FlatCAMGUI.py:3408 +#: flatcamGUI/FlatCAMGUI.py:3442 flatcamGUI/FlatCAMGUI.py:3643 msgid "Cancelled. Nothing selected to copy." msgstr "Anulat. Nimic nu este selectat pentru copiere." -#: flatcamGUI/FlatCAMGUI.py:3254 flatcamGUI/FlatCAMGUI.py:3455 +#: flatcamGUI/FlatCAMGUI.py:3489 flatcamGUI/FlatCAMGUI.py:3690 msgid "Cancelled. Nothing selected to move." msgstr "Anulat. Nimic nu este selectat pentru mutare." -#: flatcamGUI/FlatCAMGUI.py:3481 +#: flatcamGUI/FlatCAMGUI.py:3716 msgid "New Tool ..." msgstr "O noua Unealtă ..." -#: flatcamGUI/FlatCAMGUI.py:3482 flatcamTools/ToolNonCopperClear.py:588 -#: flatcamTools/ToolPaint.py:499 flatcamTools/ToolSolderPaste.py:554 +#: flatcamGUI/FlatCAMGUI.py:3717 flatcamTools/ToolNonCopperClear.py:589 +#: flatcamTools/ToolPaint.py:500 flatcamTools/ToolSolderPaste.py:554 msgid "Enter a Tool Diameter" msgstr "Introduceti un Diametru de Unealtă" -#: flatcamGUI/FlatCAMGUI.py:3494 +#: flatcamGUI/FlatCAMGUI.py:3729 msgid "Adding Tool cancelled ..." msgstr "Adăugarea unei unelte anulată..." -#: flatcamGUI/FlatCAMGUI.py:3537 +#: flatcamGUI/FlatCAMGUI.py:3772 msgid "Distance Tool exit..." msgstr "Măsurătoarea s-a terminat ..." -#: flatcamGUI/FlatCAMGUI.py:3747 flatcamGUI/FlatCAMGUI.py:3754 +#: flatcamGUI/FlatCAMGUI.py:3982 flatcamGUI/FlatCAMGUI.py:3989 msgid "Idle." msgstr "Inactiv." -#: flatcamGUI/FlatCAMGUI.py:3783 +#: flatcamGUI/FlatCAMGUI.py:4020 msgid "Application started ..." msgstr "Aplicaţia a pornit ..." -#: flatcamGUI/FlatCAMGUI.py:3784 +#: flatcamGUI/FlatCAMGUI.py:4021 msgid "Hello!" msgstr "Bună!" -#: flatcamGUI/FlatCAMGUI.py:3840 +#: flatcamGUI/FlatCAMGUI.py:4079 msgid "Open Project ..." msgstr "Încarcă Project ..." -#: flatcamGUI/FlatCAMGUI.py:3865 +#: flatcamGUI/FlatCAMGUI.py:4105 msgid "Exit" msgstr "Iesiere" @@ -7002,7 +7002,7 @@ msgstr "Iesiere" msgid "FlatCAM Object" msgstr "Obiect FlatCAM" -#: flatcamGUI/ObjectUI.py:66 +#: flatcamGUI/ObjectUI.py:77 msgid "" "BASIC is suitable for a beginner. Many parameters\n" "are hidden from the user in this mode.\n" @@ -7020,15 +7020,15 @@ msgstr "" "Edit -> Preferințe -> General și bifează:\n" "butonul radio: >Nivel App<." -#: flatcamGUI/ObjectUI.py:94 +#: flatcamGUI/ObjectUI.py:105 msgid "Change the size of the object." msgstr "Schimbă dimensiunea obiectului." -#: flatcamGUI/ObjectUI.py:100 +#: flatcamGUI/ObjectUI.py:111 msgid "Factor" msgstr "Factor" -#: flatcamGUI/ObjectUI.py:102 +#: flatcamGUI/ObjectUI.py:113 msgid "" "Factor by which to multiply\n" "geometric features of this object.\n" @@ -7039,19 +7039,19 @@ msgstr "" "acestui obiect.\n" "Expresiile sunt permise. De ex: 1 / 25.4" -#: flatcamGUI/ObjectUI.py:112 +#: flatcamGUI/ObjectUI.py:123 msgid "Perform scaling operation." msgstr "Efectuează operatia de scalare." -#: flatcamGUI/ObjectUI.py:123 +#: flatcamGUI/ObjectUI.py:134 msgid "Change the position of this object." msgstr "Schimbă poziţia acestui obiect." -#: flatcamGUI/ObjectUI.py:128 +#: flatcamGUI/ObjectUI.py:139 msgid "Vector" msgstr "Vector" -#: flatcamGUI/ObjectUI.py:130 +#: flatcamGUI/ObjectUI.py:141 msgid "" "Amount by which to move the object\n" "in the x and y axes in (x, y) format.\n" @@ -7061,62 +7061,62 @@ msgstr "" "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:139 +#: flatcamGUI/ObjectUI.py:150 msgid "Perform the offset operation." msgstr "Efectuează operația de Ofset." -#: flatcamGUI/ObjectUI.py:156 +#: flatcamGUI/ObjectUI.py:167 msgid "Gerber Object" msgstr "Obiect Gerber" -#: 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 +#: flatcamGUI/ObjectUI.py:182 flatcamGUI/ObjectUI.py:767 +#: flatcamGUI/ObjectUI.py:1205 flatcamGUI/ObjectUI.py:1907 +#: flatcamGUI/PreferencesUI.py:1361 flatcamGUI/PreferencesUI.py:3119 +#: flatcamGUI/PreferencesUI.py:3629 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 +#: flatcamGUI/ObjectUI.py:184 flatcamGUI/ObjectUI.py:765 +#: flatcamGUI/PreferencesUI.py:1359 flatcamGUI/PreferencesUI.py:2085 +#: flatcamGUI/PreferencesUI.py:3117 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:3112 flatcamGUI/PreferencesUI.py:3617 +#: flatcamGUI/ObjectUI.py:189 flatcamGUI/ObjectUI.py:726 +#: flatcamGUI/ObjectUI.py:1159 flatcamGUI/ObjectUI.py:1797 +#: flatcamGUI/PreferencesUI.py:1338 flatcamGUI/PreferencesUI.py:2079 +#: flatcamGUI/PreferencesUI.py:3113 flatcamGUI/PreferencesUI.py:3618 msgid "Plot Options" msgstr "Opțiuni afișare" -#: flatcamGUI/ObjectUI.py:184 flatcamGUI/ObjectUI.py:703 -#: flatcamGUI/PreferencesUI.py:1344 flatcamGUI/PreferencesUI.py:2090 -#: flatcamGUI/PreferencesUI.py:6153 flatcamTools/ToolCopperThieving.py:190 +#: flatcamGUI/ObjectUI.py:195 flatcamGUI/ObjectUI.py:727 +#: flatcamGUI/PreferencesUI.py:1345 flatcamGUI/PreferencesUI.py:2091 +#: flatcamGUI/PreferencesUI.py:6154 flatcamTools/ToolCopperThieving.py:190 msgid "Solid" msgstr "Solid" -#: flatcamGUI/ObjectUI.py:186 flatcamGUI/PreferencesUI.py:1346 +#: flatcamGUI/ObjectUI.py:197 flatcamGUI/PreferencesUI.py:1347 msgid "Solid color polygons." msgstr "Poligoane color solide." -#: flatcamGUI/ObjectUI.py:192 +#: flatcamGUI/ObjectUI.py:203 msgid "Multi-Color" msgstr "Multicolor" -#: flatcamGUI/ObjectUI.py:194 flatcamGUI/PreferencesUI.py:1353 +#: flatcamGUI/ObjectUI.py:205 flatcamGUI/PreferencesUI.py:1354 msgid "Draw polygons in different colors." msgstr "" "Desenează poligoanele Gerber din multiple culori\n" "alese in mod aleator." -#: flatcamGUI/ObjectUI.py:202 flatcamGUI/ObjectUI.py:714 -#: flatcamGUI/ObjectUI.py:1126 flatcamGUI/ObjectUI.py:1775 -#: flatcamGUI/ObjectUI.py:2067 flatcamGUI/ObjectUI.py:2122 +#: flatcamGUI/ObjectUI.py:213 flatcamGUI/ObjectUI.py:738 +#: flatcamGUI/ObjectUI.py:1165 flatcamGUI/ObjectUI.py:1827 +#: flatcamGUI/ObjectUI.py:2130 flatcamGUI/ObjectUI.py:2196 #: flatcamTools/ToolCalibration.py:235 flatcamTools/ToolFiducials.py:73 msgid "Name" msgstr "Nume" -#: flatcamGUI/ObjectUI.py:223 +#: flatcamGUI/ObjectUI.py:234 msgid "" "Toggle the display of the Gerber Apertures Table.\n" "When unchecked, it will delete all mark shapes\n" @@ -7126,11 +7126,11 @@ msgstr "" "Când se debifează, toate marcajele aperturilor\n" "care sutn curent afisate, vor fi șterse." -#: flatcamGUI/ObjectUI.py:233 +#: flatcamGUI/ObjectUI.py:244 msgid "Mark All" msgstr "Marc. Toate" -#: flatcamGUI/ObjectUI.py:235 +#: flatcamGUI/ObjectUI.py:246 msgid "" "When checked it will display all the apertures.\n" "When unchecked, it will delete all mark shapes\n" @@ -7139,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:263 +#: flatcamGUI/ObjectUI.py:274 msgid "Mark the aperture instances on canvas." msgstr "Marchează aperturile pe canvas." -#: flatcamGUI/ObjectUI.py:275 flatcamGUI/PreferencesUI.py:1438 +#: flatcamGUI/ObjectUI.py:286 flatcamGUI/PreferencesUI.py:1439 msgid "Isolation Routing" msgstr "Izolare" -#: flatcamGUI/ObjectUI.py:277 flatcamGUI/PreferencesUI.py:1440 +#: flatcamGUI/ObjectUI.py:288 flatcamGUI/PreferencesUI.py:1441 msgid "" "Create a Geometry object with\n" "toolpaths to cut outside polygons." @@ -7156,7 +7156,7 @@ msgstr "" "care să fie taiate in afara poligoanelor,\n" "urmărindu-le conturul." -#: flatcamGUI/ObjectUI.py:295 flatcamGUI/PreferencesUI.py:1628 +#: flatcamGUI/ObjectUI.py:306 flatcamGUI/PreferencesUI.py:1629 msgid "" "Choose what tool to use for Gerber isolation:\n" "'Circular' or 'V-shape'.\n" @@ -7168,32 +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:301 +#: flatcamGUI/ObjectUI.py:312 msgid "V-Shape" msgstr "Forma-V" -#: flatcamGUI/ObjectUI.py:307 flatcamGUI/ObjectUI.py:1335 -#: flatcamGUI/PreferencesUI.py:1640 flatcamGUI/PreferencesUI.py:4010 +#: flatcamGUI/ObjectUI.py:318 flatcamGUI/ObjectUI.py:1374 +#: flatcamGUI/PreferencesUI.py:1641 flatcamGUI/PreferencesUI.py:4011 #: flatcamTools/ToolNonCopperClear.py:231 msgid "V-Tip Dia" msgstr "V-dia" -#: flatcamGUI/ObjectUI.py:309 flatcamGUI/ObjectUI.py:1338 -#: flatcamGUI/PreferencesUI.py:1642 flatcamGUI/PreferencesUI.py:4012 +#: flatcamGUI/ObjectUI.py:320 flatcamGUI/ObjectUI.py:1377 +#: flatcamGUI/PreferencesUI.py:1643 flatcamGUI/PreferencesUI.py:4013 #: 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:320 flatcamGUI/ObjectUI.py:1350 -#: flatcamGUI/PreferencesUI.py:1653 flatcamGUI/PreferencesUI.py:4022 +#: flatcamGUI/ObjectUI.py:331 flatcamGUI/ObjectUI.py:1389 +#: flatcamGUI/PreferencesUI.py:1654 flatcamGUI/PreferencesUI.py:4023 #: flatcamTools/ToolNonCopperClear.py:242 msgid "V-Tip Angle" msgstr "V-unghi" -#: flatcamGUI/ObjectUI.py:322 flatcamGUI/ObjectUI.py:1353 -#: flatcamGUI/PreferencesUI.py:1655 flatcamGUI/PreferencesUI.py:4024 +#: flatcamGUI/ObjectUI.py:333 flatcamGUI/ObjectUI.py:1392 +#: flatcamGUI/PreferencesUI.py:1656 flatcamGUI/PreferencesUI.py:4025 #: flatcamTools/ToolNonCopperClear.py:244 msgid "" "The tip angle for V-Shape Tool.\n" @@ -7202,9 +7202,9 @@ msgstr "" "Unghiul la vârf pentru unealta tip V-Shape. \n" "In grade." -#: flatcamGUI/ObjectUI.py:336 flatcamGUI/ObjectUI.py:1369 -#: flatcamGUI/PreferencesUI.py:1668 flatcamGUI/PreferencesUI.py:3181 -#: flatcamGUI/PreferencesUI.py:4293 flatcamTools/ToolCutOut.py:135 +#: flatcamGUI/ObjectUI.py:347 flatcamGUI/ObjectUI.py:1408 +#: flatcamGUI/PreferencesUI.py:1669 flatcamGUI/PreferencesUI.py:3182 +#: flatcamGUI/PreferencesUI.py:4294 flatcamTools/ToolCutOut.py:135 msgid "" "Cutting depth (negative)\n" "below the copper surface." @@ -7212,7 +7212,7 @@ msgstr "" "Adâncimea la care se taie sub suprafata de cupru.\n" "Valoare negativă." -#: flatcamGUI/ObjectUI.py:350 +#: flatcamGUI/ObjectUI.py:361 msgid "" "Diameter of the cutting tool.\n" "If you want to have an isolation path\n" @@ -7225,11 +7225,11 @@ msgstr "" "in interiorul poligonului Gerber (traseu), foloseşte\n" "o valoare negativă pt acest parametru." -#: flatcamGUI/ObjectUI.py:366 flatcamGUI/PreferencesUI.py:1462 +#: flatcamGUI/ObjectUI.py:377 flatcamGUI/PreferencesUI.py:1463 msgid "# Passes" msgstr "# Treceri" -#: flatcamGUI/ObjectUI.py:368 flatcamGUI/PreferencesUI.py:1464 +#: flatcamGUI/ObjectUI.py:379 flatcamGUI/PreferencesUI.py:1465 msgid "" "Width of the isolation gap in\n" "number (integer) of tool widths." @@ -7237,24 +7237,24 @@ msgstr "" "Lăţimea spatiului de izolare\n" "in număr intreg de grosimi ale uneltei." -#: flatcamGUI/ObjectUI.py:378 flatcamGUI/PreferencesUI.py:1474 +#: flatcamGUI/ObjectUI.py:389 flatcamGUI/PreferencesUI.py:1475 msgid "Pass overlap" msgstr "Suprapunere" -#: flatcamGUI/ObjectUI.py:380 flatcamGUI/PreferencesUI.py:1476 +#: flatcamGUI/ObjectUI.py:391 flatcamGUI/PreferencesUI.py:1477 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:392 flatcamGUI/PreferencesUI.py:1501 -#: flatcamGUI/PreferencesUI.py:3594 flatcamGUI/PreferencesUI.py:4067 +#: flatcamGUI/ObjectUI.py:403 flatcamGUI/PreferencesUI.py:1502 +#: flatcamGUI/PreferencesUI.py:3595 flatcamGUI/PreferencesUI.py:4068 #: flatcamTools/ToolNonCopperClear.py:162 msgid "Milling Type" msgstr "Tip Frezare" -#: flatcamGUI/ObjectUI.py:394 flatcamGUI/PreferencesUI.py:1503 -#: flatcamGUI/PreferencesUI.py:3596 +#: flatcamGUI/ObjectUI.py:405 flatcamGUI/PreferencesUI.py:1504 +#: flatcamGUI/PreferencesUI.py:3597 msgid "" "Milling type:\n" "- climb / best for precision milling and to reduce tool usage\n" @@ -7265,29 +7265,29 @@ msgstr "" "uneltei\n" "- conventional -> pentru cazul când nu exista o compensare a 'backlash-ului'" -#: flatcamGUI/ObjectUI.py:398 flatcamGUI/PreferencesUI.py:1508 -#: flatcamGUI/PreferencesUI.py:3600 flatcamGUI/PreferencesUI.py:4074 +#: flatcamGUI/ObjectUI.py:409 flatcamGUI/PreferencesUI.py:1509 +#: flatcamGUI/PreferencesUI.py:3601 flatcamGUI/PreferencesUI.py:4075 #: flatcamTools/ToolNonCopperClear.py:169 msgid "Climb" msgstr "Urcare" -#: flatcamGUI/ObjectUI.py:399 +#: flatcamGUI/ObjectUI.py:410 msgid "Conventional" msgstr "Convenţional" -#: flatcamGUI/ObjectUI.py:404 +#: flatcamGUI/ObjectUI.py:415 msgid "Combine" msgstr "Combina" -#: flatcamGUI/ObjectUI.py:406 flatcamGUI/PreferencesUI.py:1515 +#: flatcamGUI/ObjectUI.py:417 flatcamGUI/PreferencesUI.py:1516 msgid "Combine all passes into one object" msgstr "Combina toate trecerile intr-un singur obiect" -#: flatcamGUI/ObjectUI.py:410 flatcamGUI/PreferencesUI.py:1607 +#: flatcamGUI/ObjectUI.py:421 flatcamGUI/PreferencesUI.py:1608 msgid "\"Follow\"" msgstr "\"Urmareste\"" -#: flatcamGUI/ObjectUI.py:411 flatcamGUI/PreferencesUI.py:1609 +#: flatcamGUI/ObjectUI.py:422 flatcamGUI/PreferencesUI.py:1610 msgid "" "Generate a 'Follow' geometry.\n" "This means that it will cut through\n" @@ -7297,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:417 +#: flatcamGUI/ObjectUI.py:428 msgid "Except" msgstr "Exceptie" -#: flatcamGUI/ObjectUI.py:420 +#: flatcamGUI/ObjectUI.py:431 msgid "" "When the isolation geometry is generated,\n" "by checking this, the area of the object bellow\n" @@ -7311,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:442 flatcamTools/ToolNonCopperClear.py:82 +#: flatcamGUI/ObjectUI.py:453 flatcamTools/ToolNonCopperClear.py:82 #: flatcamTools/ToolPaint.py:85 msgid "Obj Type" msgstr "Tip obiect" -#: flatcamGUI/ObjectUI.py:444 +#: flatcamGUI/ObjectUI.py:455 msgid "" "Specify the type of object to be excepted from isolation.\n" "It can be of type: Gerber or Geometry.\n" @@ -7329,23 +7329,23 @@ msgstr "" "obiecte care vor aparea in combobox-ul\n" "numit >Obiect<." -#: flatcamGUI/ObjectUI.py:457 flatcamGUI/PreferencesUI.py:6453 +#: flatcamGUI/ObjectUI.py:468 flatcamGUI/PreferencesUI.py:6454 #: 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:458 +#: flatcamGUI/ObjectUI.py:469 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:465 flatcamGUI/PreferencesUI.py:1488 +#: flatcamGUI/ObjectUI.py:476 flatcamGUI/PreferencesUI.py:1489 msgid "Scope" msgstr "Domeniu" -#: flatcamGUI/ObjectUI.py:467 flatcamGUI/PreferencesUI.py:1490 +#: flatcamGUI/ObjectUI.py:478 flatcamGUI/PreferencesUI.py:1491 msgid "" "Isolation scope. Choose what to isolate:\n" "- 'All' -> Isolate all the polygons in the object\n" @@ -7355,16 +7355,16 @@ msgstr "" "- 'Toate' -> Izolați toate poligoanele din obiect\n" "- 'Selecție' -> Izolați o selecție de poligoane." -#: flatcamGUI/ObjectUI.py:472 flatcamGUI/PreferencesUI.py:1495 -#: flatcamGUI/PreferencesUI.py:4603 flatcamTools/ToolPaint.py:300 +#: flatcamGUI/ObjectUI.py:483 flatcamGUI/PreferencesUI.py:1496 +#: flatcamGUI/PreferencesUI.py:4604 flatcamTools/ToolPaint.py:300 msgid "Selection" msgstr "Selecţie" -#: flatcamGUI/ObjectUI.py:480 flatcamGUI/PreferencesUI.py:1681 +#: flatcamGUI/ObjectUI.py:491 flatcamGUI/PreferencesUI.py:1682 msgid "Isolation Type" msgstr "Tip de izolare" -#: flatcamGUI/ObjectUI.py:482 flatcamGUI/PreferencesUI.py:1683 +#: flatcamGUI/ObjectUI.py:493 flatcamGUI/PreferencesUI.py:1684 msgid "" "Choose how the isolation will be executed:\n" "- 'Full' -> complete isolation of polygons\n" @@ -7384,24 +7384,24 @@ msgstr "" "„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:491 flatcamGUI/PreferencesUI.py:1692 -#: flatcamGUI/PreferencesUI.py:1708 +#: flatcamGUI/ObjectUI.py:502 flatcamGUI/PreferencesUI.py:1693 +#: flatcamGUI/PreferencesUI.py:1709 msgid "Full" msgstr "Complet" -#: flatcamGUI/ObjectUI.py:492 +#: flatcamGUI/ObjectUI.py:503 msgid "Ext" msgstr "Ext" -#: flatcamGUI/ObjectUI.py:493 +#: flatcamGUI/ObjectUI.py:504 msgid "Int" msgstr "Int" -#: flatcamGUI/ObjectUI.py:498 +#: flatcamGUI/ObjectUI.py:509 msgid "Generate Isolation Geometry" msgstr "Creează Geometrie de Izolare" -#: flatcamGUI/ObjectUI.py:506 +#: flatcamGUI/ObjectUI.py:517 msgid "" "Create a Geometry object with toolpaths to cut \n" "isolation outside, inside or on both sides of the\n" @@ -7420,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:518 +#: flatcamGUI/ObjectUI.py:529 msgid "Buffer Solid Geometry" msgstr "Creează Bufer Geometrie Solidă" -#: flatcamGUI/ObjectUI.py:520 +#: flatcamGUI/ObjectUI.py:531 msgid "" "This button is shown only when the Gerber file\n" "is loaded without buffering.\n" @@ -7436,11 +7436,11 @@ msgstr "" "Bifarea aici va crea această buferare care este necesară\n" "pentru a crea geometrie de tip Izolare." -#: flatcamGUI/ObjectUI.py:548 +#: flatcamGUI/ObjectUI.py:559 msgid "Clear N-copper" msgstr "Curăță Non-Cu" -#: flatcamGUI/ObjectUI.py:550 flatcamGUI/PreferencesUI.py:3974 +#: flatcamGUI/ObjectUI.py:561 flatcamGUI/PreferencesUI.py:3975 msgid "" "Create a Geometry object with\n" "toolpaths to cut all non-copper regions." @@ -7449,7 +7449,7 @@ msgstr "" "care să curete de cupru toate zonele unde se dorește să nu \n" "fie cupru." -#: flatcamGUI/ObjectUI.py:557 flatcamGUI/ObjectUI.py:1714 +#: flatcamGUI/ObjectUI.py:568 flatcamGUI/ObjectUI.py:1753 #: flatcamTools/ToolNonCopperClear.py:479 msgid "" "Create the Geometry Object\n" @@ -7459,11 +7459,11 @@ msgstr "" "pt rutare non-cupru (adica pt\n" "curățare zone de cupru)." -#: flatcamGUI/ObjectUI.py:570 +#: flatcamGUI/ObjectUI.py:581 msgid "Board cutout" msgstr "Decupare PCB" -#: flatcamGUI/ObjectUI.py:572 flatcamGUI/PreferencesUI.py:4266 +#: flatcamGUI/ObjectUI.py:583 flatcamGUI/PreferencesUI.py:4267 msgid "" "Create toolpaths to cut around\n" "the PCB and separate it from\n" @@ -7473,7 +7473,7 @@ msgstr "" "lasand punţi pentru a separa PCB-ul de \n" "placa din care a fost taiat." -#: flatcamGUI/ObjectUI.py:579 +#: flatcamGUI/ObjectUI.py:590 msgid "" "Generate the geometry for\n" "the board cutout." @@ -7481,11 +7481,11 @@ msgstr "" "Generează un obiect Geometrie\n" "pt decuparea PCB." -#: flatcamGUI/ObjectUI.py:597 flatcamGUI/PreferencesUI.py:1520 +#: flatcamGUI/ObjectUI.py:608 flatcamGUI/PreferencesUI.py:1521 msgid "Non-copper regions" msgstr "Regiuni fără Cu" -#: flatcamGUI/ObjectUI.py:599 flatcamGUI/PreferencesUI.py:1522 +#: flatcamGUI/ObjectUI.py:610 flatcamGUI/PreferencesUI.py:1523 msgid "" "Create polygons covering the\n" "areas without copper on the PCB.\n" @@ -7498,12 +7498,12 @@ msgstr "" "obiectului sursa. Poate fi folosit pt a indeparta\n" "cuprul din zona specificata." -#: flatcamGUI/ObjectUI.py:609 flatcamGUI/ObjectUI.py:650 -#: flatcamGUI/PreferencesUI.py:1534 flatcamGUI/PreferencesUI.py:1562 +#: flatcamGUI/ObjectUI.py:620 flatcamGUI/ObjectUI.py:661 +#: flatcamGUI/PreferencesUI.py:1535 flatcamGUI/PreferencesUI.py:1563 msgid "Boundary Margin" msgstr "Margine" -#: flatcamGUI/ObjectUI.py:611 flatcamGUI/PreferencesUI.py:1536 +#: flatcamGUI/ObjectUI.py:622 flatcamGUI/PreferencesUI.py:1537 msgid "" "Specify the edge of the PCB\n" "by drawing a box around all\n" @@ -7514,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:626 flatcamGUI/ObjectUI.py:664 -#: flatcamGUI/PreferencesUI.py:1549 flatcamGUI/PreferencesUI.py:1575 +#: flatcamGUI/ObjectUI.py:637 flatcamGUI/ObjectUI.py:675 +#: flatcamGUI/PreferencesUI.py:1550 flatcamGUI/PreferencesUI.py:1576 msgid "Rounded Geo" msgstr "Geo rotunjita" -#: flatcamGUI/ObjectUI.py:628 flatcamGUI/PreferencesUI.py:1551 +#: flatcamGUI/ObjectUI.py:639 flatcamGUI/PreferencesUI.py:1552 msgid "Resulting geometry will have rounded corners." msgstr "" "Obiectul Geometrie rezultat \n" "va avea colțurile rotunjite." -#: flatcamGUI/ObjectUI.py:632 flatcamGUI/ObjectUI.py:673 +#: flatcamGUI/ObjectUI.py:643 flatcamGUI/ObjectUI.py:684 #: flatcamTools/ToolSolderPaste.py:133 msgid "Generate Geo" msgstr "Crează Geo" -#: flatcamGUI/ObjectUI.py:642 flatcamGUI/PreferencesUI.py:1556 -#: flatcamGUI/PreferencesUI.py:5983 flatcamTools/ToolPanelize.py:95 +#: flatcamGUI/ObjectUI.py:653 flatcamGUI/PreferencesUI.py:1557 +#: flatcamGUI/PreferencesUI.py:5984 flatcamTools/ToolPanelize.py:95 #: flatcamTools/ToolQRCode.py:192 msgid "Bounding Box" msgstr "Forma înconjurătoare" -#: flatcamGUI/ObjectUI.py:644 +#: flatcamGUI/ObjectUI.py:655 msgid "" "Create a geometry surrounding the Gerber object.\n" "Square shape." @@ -7544,7 +7544,7 @@ msgstr "" "Generează un obiect tip Geometrie care va inconjura\n" "obiectul Gerber. Forma patratica (rectangulara)." -#: flatcamGUI/ObjectUI.py:652 flatcamGUI/PreferencesUI.py:1564 +#: flatcamGUI/ObjectUI.py:663 flatcamGUI/PreferencesUI.py:1565 msgid "" "Distance of the edges of the box\n" "to the nearest polygon." @@ -7552,7 +7552,7 @@ msgstr "" "Distanta de la marginile formei înconjurătoare\n" "pana la cel mai apropiat poligon." -#: flatcamGUI/ObjectUI.py:666 flatcamGUI/PreferencesUI.py:1577 +#: flatcamGUI/ObjectUI.py:677 flatcamGUI/PreferencesUI.py:1578 msgid "" "If the bounding box is \n" "to have rounded corners\n" @@ -7562,33 +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:675 +#: flatcamGUI/ObjectUI.py:686 msgid "Generate the Geometry object." msgstr "Generează obiectul Geometrie." -#: flatcamGUI/ObjectUI.py:691 +#: flatcamGUI/ObjectUI.py:715 msgid "Excellon Object" msgstr "Obiect Excellon" -#: flatcamGUI/ObjectUI.py:705 +#: flatcamGUI/ObjectUI.py:729 msgid "Solid circles." msgstr "Cercuri solide." -#: flatcamGUI/ObjectUI.py:753 flatcamGUI/ObjectUI.py:1876 +#: flatcamGUI/ObjectUI.py:777 flatcamGUI/ObjectUI.py:1928 #: flatcamTools/ToolProperties.py:161 msgid "Drills" msgstr "Găuri" -#: flatcamGUI/ObjectUI.py:753 flatcamGUI/ObjectUI.py:1876 -#: flatcamGUI/PreferencesUI.py:2952 flatcamTools/ToolProperties.py:162 +#: flatcamGUI/ObjectUI.py:777 flatcamGUI/ObjectUI.py:1928 +#: flatcamGUI/PreferencesUI.py:2953 flatcamTools/ToolProperties.py:162 msgid "Slots" msgstr "Sloturi" -#: flatcamGUI/ObjectUI.py:754 flatcamGUI/PreferencesUI.py:2555 +#: flatcamGUI/ObjectUI.py:778 flatcamGUI/PreferencesUI.py:2556 msgid "Offset Z" msgstr "Ofset Z" -#: flatcamGUI/ObjectUI.py:758 +#: flatcamGUI/ObjectUI.py:782 msgid "" "This is the Tool Number.\n" "When ToolChange is checked, on toolchange event this value\n" @@ -7602,7 +7602,7 @@ msgstr "" "in codul masina CNC.\n" "Aici se selectează uneltele pt generarea de G-Code." -#: flatcamGUI/ObjectUI.py:763 flatcamGUI/ObjectUI.py:1191 +#: flatcamGUI/ObjectUI.py:787 flatcamGUI/ObjectUI.py:1230 #: flatcamTools/ToolPaint.py:137 msgid "" "Tool Diameter. It's value (in current FlatCAM units) \n" @@ -7611,7 +7611,7 @@ msgstr "" "Diametrul uneltei. Valoarea să (in unitati curente)\n" "reprezinta lăţimea taieturii in material." -#: flatcamGUI/ObjectUI.py:766 +#: flatcamGUI/ObjectUI.py:790 msgid "" "The number of Drill holes. Holes that are drilled with\n" "a drill bit." @@ -7619,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:769 +#: flatcamGUI/ObjectUI.py:793 msgid "" "The number of Slot holes. Holes that are created by\n" "milling them with an endmill bit." @@ -7627,7 +7627,7 @@ msgstr "" "Numărul de sloturi. Sunt găuri efectuate\n" "prin op. de frezare cu o freza." -#: flatcamGUI/ObjectUI.py:772 flatcamGUI/PreferencesUI.py:2557 +#: flatcamGUI/ObjectUI.py:796 flatcamGUI/PreferencesUI.py:2558 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" @@ -7640,7 +7640,7 @@ msgstr "" "Valoarea de aici efectuează o compensare asupra\n" "parametrului >Z tăiere<." -#: flatcamGUI/ObjectUI.py:776 +#: flatcamGUI/ObjectUI.py:800 msgid "" "Toggle display of the drills for the current tool.\n" "This does not select the tools for G-code generation." @@ -7648,12 +7648,12 @@ msgstr "" "Comută afișarea găurilor pt unealta curentă.\n" "Aceata nu selectează uneltele pt generarea G-Code." -#: flatcamGUI/ObjectUI.py:783 flatcamGUI/PreferencesUI.py:2323 -#: flatcamGUI/PreferencesUI.py:3167 +#: flatcamGUI/ObjectUI.py:807 flatcamGUI/PreferencesUI.py:2324 +#: flatcamGUI/PreferencesUI.py:3168 msgid "Create CNC Job" msgstr "Crează CNCJob" -#: flatcamGUI/ObjectUI.py:785 +#: flatcamGUI/ObjectUI.py:809 msgid "" "Create a CNC Job object\n" "for this drill object." @@ -7661,7 +7661,7 @@ msgstr "" "Crează un obiect CNCJob din\n" "acest obiect." -#: flatcamGUI/ObjectUI.py:798 flatcamGUI/PreferencesUI.py:2336 +#: flatcamGUI/ObjectUI.py:822 flatcamGUI/PreferencesUI.py:2337 msgid "" "Drill depth (negative)\n" "below the copper surface." @@ -7670,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:817 flatcamGUI/PreferencesUI.py:2354 +#: flatcamGUI/ObjectUI.py:841 flatcamGUI/PreferencesUI.py:2355 msgid "" "Tool height when travelling\n" "across the XY plane." @@ -7679,12 +7679,12 @@ msgstr "" "in planul X-Y, fără a efectua taieri, adica\n" "in afara materialului." -#: flatcamGUI/ObjectUI.py:834 flatcamGUI/ObjectUI.py:1439 -#: flatcamGUI/PreferencesUI.py:2369 flatcamGUI/PreferencesUI.py:3252 +#: flatcamGUI/ObjectUI.py:858 flatcamGUI/ObjectUI.py:1478 +#: flatcamGUI/PreferencesUI.py:2370 flatcamGUI/PreferencesUI.py:3253 msgid "Tool change" msgstr "Schimb unealtă" -#: flatcamGUI/ObjectUI.py:836 flatcamGUI/PreferencesUI.py:2371 +#: flatcamGUI/ObjectUI.py:860 flatcamGUI/PreferencesUI.py:2372 msgid "" "Include tool-change sequence\n" "in G-Code (Pause for tool change)." @@ -7693,23 +7693,23 @@ msgstr "" "in codul G-Code (pauza pentru schimbare unealtă).\n" "De obicei este folosita comanda G-Code M6." -#: flatcamGUI/ObjectUI.py:842 flatcamGUI/ObjectUI.py:1432 +#: flatcamGUI/ObjectUI.py:866 flatcamGUI/ObjectUI.py:1471 msgid "Tool change Z" msgstr "Z schimb unealtă" -#: flatcamGUI/ObjectUI.py:844 flatcamGUI/ObjectUI.py:1435 -#: flatcamGUI/PreferencesUI.py:2380 flatcamGUI/PreferencesUI.py:3267 +#: flatcamGUI/ObjectUI.py:868 flatcamGUI/ObjectUI.py:1474 +#: flatcamGUI/PreferencesUI.py:2381 flatcamGUI/PreferencesUI.py:3268 msgid "" "Z-axis position (height) for\n" "tool change." msgstr "Înălţimea, pe axa Z, pentru schimbul uneltei." -#: flatcamGUI/ObjectUI.py:862 flatcamGUI/PreferencesUI.py:2575 -#: flatcamGUI/PreferencesUI.py:3420 +#: flatcamGUI/ObjectUI.py:886 flatcamGUI/PreferencesUI.py:2576 +#: flatcamGUI/PreferencesUI.py:3421 msgid "Start move Z" msgstr "Z pornire" -#: flatcamGUI/ObjectUI.py:864 flatcamGUI/PreferencesUI.py:2577 +#: flatcamGUI/ObjectUI.py:888 flatcamGUI/PreferencesUI.py:2578 msgid "" "Height of the tool just after start.\n" "Delete the value if you don't need this feature." @@ -7717,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:872 flatcamGUI/ObjectUI.py:1473 -#: flatcamGUI/PreferencesUI.py:2395 flatcamGUI/PreferencesUI.py:3286 +#: flatcamGUI/ObjectUI.py:896 flatcamGUI/ObjectUI.py:1512 +#: flatcamGUI/PreferencesUI.py:2396 flatcamGUI/PreferencesUI.py:3287 msgid "End move Z" msgstr "Z oprire" -#: flatcamGUI/ObjectUI.py:874 flatcamGUI/ObjectUI.py:1475 -#: flatcamGUI/PreferencesUI.py:2397 flatcamGUI/PreferencesUI.py:3288 +#: flatcamGUI/ObjectUI.py:898 flatcamGUI/ObjectUI.py:1514 +#: flatcamGUI/PreferencesUI.py:2398 flatcamGUI/PreferencesUI.py:3289 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:891 flatcamGUI/ObjectUI.py:1506 -#: flatcamGUI/PreferencesUI.py:2412 flatcamGUI/PreferencesUI.py:3321 -#: flatcamGUI/PreferencesUI.py:5497 flatcamTools/ToolSolderPaste.py:264 +#: flatcamGUI/ObjectUI.py:915 flatcamGUI/ObjectUI.py:1545 +#: flatcamGUI/PreferencesUI.py:2413 flatcamGUI/PreferencesUI.py:3322 +#: flatcamGUI/PreferencesUI.py:5498 flatcamTools/ToolSolderPaste.py:264 msgid "Feedrate Z" msgstr "Feedrate Z" -#: flatcamGUI/ObjectUI.py:893 flatcamGUI/PreferencesUI.py:2414 +#: flatcamGUI/ObjectUI.py:917 flatcamGUI/PreferencesUI.py:2415 msgid "" "Tool speed while drilling\n" "(in units per minute).\n" @@ -7747,12 +7747,12 @@ msgstr "" "Asa numita viteza unealta tip \"plunge\".\n" "Aceasta este mișcarea lineara G01." -#: flatcamGUI/ObjectUI.py:907 flatcamGUI/ObjectUI.py:1521 -#: flatcamGUI/PreferencesUI.py:2585 flatcamGUI/PreferencesUI.py:3430 +#: flatcamGUI/ObjectUI.py:931 flatcamGUI/ObjectUI.py:1560 +#: flatcamGUI/PreferencesUI.py:2586 flatcamGUI/PreferencesUI.py:3431 msgid "Feedrate Rapids" msgstr "Feedrate rapizi" -#: flatcamGUI/ObjectUI.py:909 flatcamGUI/PreferencesUI.py:2587 +#: flatcamGUI/ObjectUI.py:933 flatcamGUI/PreferencesUI.py:2588 msgid "" "Tool speed while drilling\n" "(in units per minute).\n" @@ -7765,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:927 flatcamGUI/ObjectUI.py:1566 -#: flatcamGUI/PreferencesUI.py:3337 +#: flatcamGUI/ObjectUI.py:951 flatcamGUI/ObjectUI.py:1605 +#: flatcamGUI/PreferencesUI.py:3338 msgid "Spindle speed" msgstr "Viteza motor" -#: flatcamGUI/ObjectUI.py:929 flatcamGUI/PreferencesUI.py:2429 +#: flatcamGUI/ObjectUI.py:953 flatcamGUI/PreferencesUI.py:2430 msgid "" "Speed of the spindle\n" "in RPM (optional)" @@ -7780,8 +7780,8 @@ msgstr "" "Acest parametru este optional și se poate lasa gol\n" "daca nu se foloseşte." -#: flatcamGUI/ObjectUI.py:941 flatcamGUI/ObjectUI.py:1585 -#: flatcamGUI/PreferencesUI.py:2441 flatcamGUI/PreferencesUI.py:3355 +#: flatcamGUI/ObjectUI.py:965 flatcamGUI/ObjectUI.py:1624 +#: flatcamGUI/PreferencesUI.py:2442 flatcamGUI/PreferencesUI.py:3356 msgid "" "Pause to allow the spindle to reach its\n" "speed before cutting." @@ -7789,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:950 flatcamGUI/ObjectUI.py:1595 -#: flatcamGUI/PreferencesUI.py:2446 flatcamGUI/PreferencesUI.py:3360 +#: flatcamGUI/ObjectUI.py:974 flatcamGUI/ObjectUI.py:1634 +#: flatcamGUI/PreferencesUI.py:2447 flatcamGUI/PreferencesUI.py:3361 msgid "Number of time units for spindle to dwell." msgstr "Timpul (ori secunde ori milisec) cat se stă in pauză." -#: flatcamGUI/ObjectUI.py:960 flatcamGUI/PreferencesUI.py:2463 +#: flatcamGUI/ObjectUI.py:984 flatcamGUI/PreferencesUI.py:2464 msgid "" "The preprocessor JSON file that dictates\n" "Gcode output." @@ -7802,13 +7802,13 @@ msgstr "" "Fișierul JSON postprocesor care dictează\n" "codul Gcode." -#: flatcamGUI/ObjectUI.py:969 flatcamGUI/ObjectUI.py:1615 -#: flatcamGUI/PreferencesUI.py:2601 flatcamGUI/PreferencesUI.py:3471 +#: flatcamGUI/ObjectUI.py:993 flatcamGUI/ObjectUI.py:1654 +#: flatcamGUI/PreferencesUI.py:2602 flatcamGUI/PreferencesUI.py:3472 msgid "Probe Z depth" msgstr "Z sonda" -#: flatcamGUI/ObjectUI.py:971 flatcamGUI/ObjectUI.py:1617 -#: flatcamGUI/PreferencesUI.py:2603 flatcamGUI/PreferencesUI.py:3473 +#: flatcamGUI/ObjectUI.py:995 flatcamGUI/ObjectUI.py:1656 +#: flatcamGUI/PreferencesUI.py:2604 flatcamGUI/PreferencesUI.py:3474 msgid "" "The maximum depth that the probe is allowed\n" "to probe. Negative value, in current units." @@ -7816,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:985 flatcamGUI/ObjectUI.py:1632 -#: flatcamGUI/PreferencesUI.py:2614 flatcamGUI/PreferencesUI.py:3486 +#: flatcamGUI/ObjectUI.py:1009 flatcamGUI/ObjectUI.py:1671 +#: flatcamGUI/PreferencesUI.py:2615 flatcamGUI/PreferencesUI.py:3487 msgid "Feedrate Probe" msgstr "Feedrate sonda" -#: flatcamGUI/ObjectUI.py:987 flatcamGUI/ObjectUI.py:1634 -#: flatcamGUI/PreferencesUI.py:2616 flatcamGUI/PreferencesUI.py:3488 +#: flatcamGUI/ObjectUI.py:1011 flatcamGUI/ObjectUI.py:1673 +#: flatcamGUI/PreferencesUI.py:2617 flatcamGUI/PreferencesUI.py:3489 msgid "The feedrate used while the probe is probing." msgstr "Viteza sondei când aceasta coboara." -#: flatcamGUI/ObjectUI.py:1013 flatcamGUI/PreferencesUI.py:2472 +#: flatcamGUI/ObjectUI.py:1037 flatcamGUI/PreferencesUI.py:2473 msgid "Gcode" msgstr "Gcode" -#: flatcamGUI/ObjectUI.py:1015 +#: flatcamGUI/ObjectUI.py:1039 msgid "" "Choose what to use for GCode generation:\n" "'Drills', 'Slots' or 'Both'.\n" @@ -7844,19 +7844,19 @@ msgstr "" "Când se alege >Sloturi< sau >Ambele<, sloturile\n" "vor fi convertite intr-o serie de găuriri." -#: flatcamGUI/ObjectUI.py:1029 +#: flatcamGUI/ObjectUI.py:1053 msgid "Create Drills GCode" msgstr "Crează GCode Găuri" -#: flatcamGUI/ObjectUI.py:1031 +#: flatcamGUI/ObjectUI.py:1055 msgid "Generate the CNC Job." msgstr "Generează un obiect CNCJob." -#: flatcamGUI/ObjectUI.py:1042 flatcamGUI/PreferencesUI.py:2490 +#: flatcamGUI/ObjectUI.py:1066 flatcamGUI/PreferencesUI.py:2491 msgid "Mill Holes" msgstr "Frezare găuri" -#: flatcamGUI/ObjectUI.py:1044 +#: flatcamGUI/ObjectUI.py:1068 msgid "" "Create Geometry for milling holes.\n" "Select from the Tools Table above the hole dias to be\n" @@ -7866,20 +7866,20 @@ msgstr "" "Selectați din tabelul Unelte de deasupra găurile\n" "care trebuie frezate. Utilizați coloana # pentru a face selecția." -#: flatcamGUI/ObjectUI.py:1050 flatcamGUI/PreferencesUI.py:2496 +#: flatcamGUI/ObjectUI.py:1074 flatcamGUI/PreferencesUI.py:2497 msgid "Drill Tool dia" msgstr "Dia. Burghiu Găurire" -#: flatcamGUI/ObjectUI.py:1052 flatcamGUI/PreferencesUI.py:1451 -#: flatcamGUI/PreferencesUI.py:2498 +#: flatcamGUI/ObjectUI.py:1076 flatcamGUI/PreferencesUI.py:1452 +#: flatcamGUI/PreferencesUI.py:2499 msgid "Diameter of the cutting tool." msgstr "Diametrul uneltei taietoare." -#: flatcamGUI/ObjectUI.py:1059 +#: flatcamGUI/ObjectUI.py:1083 msgid "Mill Drills Geo" msgstr "Geo pt frezare găuri" -#: flatcamGUI/ObjectUI.py:1061 +#: flatcamGUI/ObjectUI.py:1085 msgid "" "Create the Geometry Object\n" "for milling DRILLS toolpaths." @@ -7887,21 +7887,21 @@ msgstr "" "Crează un obiect tip Geometrie pt.\n" "frezarea rutelor create din Găuri." -#: flatcamGUI/ObjectUI.py:1075 flatcamGUI/PreferencesUI.py:2507 +#: flatcamGUI/ObjectUI.py:1099 flatcamGUI/PreferencesUI.py:2508 msgid "Slot Tool dia" msgstr "Dia. Freza Slot" -#: flatcamGUI/ObjectUI.py:1077 flatcamGUI/PreferencesUI.py:2509 +#: flatcamGUI/ObjectUI.py:1101 flatcamGUI/PreferencesUI.py:2510 msgid "" "Diameter of the cutting tool\n" "when milling slots." msgstr "Diametrul frezei când se frezează sloturile." -#: flatcamGUI/ObjectUI.py:1086 +#: flatcamGUI/ObjectUI.py:1110 msgid "Mill Slots Geo" msgstr "Geo pt. frezare sloturi" -#: flatcamGUI/ObjectUI.py:1088 +#: flatcamGUI/ObjectUI.py:1112 msgid "" "Create the Geometry Object\n" "for milling SLOTS toolpaths." @@ -7909,11 +7909,11 @@ msgstr "" "Crează un obiect tip Geometrie pt.\n" "frezarea rutelor create din Sloturi." -#: flatcamGUI/ObjectUI.py:1115 flatcamTools/ToolCutOut.py:315 +#: flatcamGUI/ObjectUI.py:1152 flatcamTools/ToolCutOut.py:315 msgid "Geometry Object" msgstr "Obiect Geometrie" -#: flatcamGUI/ObjectUI.py:1147 +#: flatcamGUI/ObjectUI.py:1186 msgid "" "Tools in this Geometry object used for cutting.\n" "The 'Offset' entry will set an offset for the cut.\n" @@ -7943,23 +7943,23 @@ msgstr "" "- V-Dia \n" "- V-unghi." -#: flatcamGUI/ObjectUI.py:1164 flatcamGUI/ObjectUI.py:1853 -#: flatcamGUI/PreferencesUI.py:3627 +#: flatcamGUI/ObjectUI.py:1203 flatcamGUI/ObjectUI.py:1905 +#: flatcamGUI/PreferencesUI.py:3628 msgid "Plot Object" msgstr "Afisează" -#: flatcamGUI/ObjectUI.py:1178 flatcamGUI/ObjectUI.py:1866 -#: flatcamGUI/ObjectUI.py:1876 flatcamGUI/PreferencesUI.py:6172 +#: flatcamGUI/ObjectUI.py:1217 flatcamGUI/ObjectUI.py:1918 +#: flatcamGUI/ObjectUI.py:1928 flatcamGUI/PreferencesUI.py:6173 #: flatcamTools/ToolCopperThieving.py:220 msgid "Dia" msgstr "Dia" -#: flatcamGUI/ObjectUI.py:1178 flatcamGUI/ObjectUI.py:1866 +#: flatcamGUI/ObjectUI.py:1217 flatcamGUI/ObjectUI.py:1918 #: flatcamTools/ToolNonCopperClear.py:120 flatcamTools/ToolPaint.py:123 msgid "TT" msgstr "TU" -#: flatcamGUI/ObjectUI.py:1185 +#: flatcamGUI/ObjectUI.py:1224 msgid "" "This is the Tool Number.\n" "When ToolChange is checked, on toolchange event this value\n" @@ -7970,7 +7970,7 @@ msgstr "" "la evenim. de schimb unealtă, va aparea sub forma T1, T2, etc\n" "in codul masina CNC" -#: flatcamGUI/ObjectUI.py:1196 +#: flatcamGUI/ObjectUI.py:1235 msgid "" "The value for the Offset can be:\n" "- Path -> There is no offset, the tool cut will be done through the geometry " @@ -7986,7 +7986,7 @@ msgstr "" "'buzunar'\n" "- Afară-> Tăietura va urma geometria pe exterior." -#: flatcamGUI/ObjectUI.py:1203 +#: flatcamGUI/ObjectUI.py:1242 msgid "" "The (Operation) Type has only informative value. Usually the UI form " "values \n" @@ -8009,7 +8009,7 @@ msgstr "" "un\n" "vârf fin, ascuțit." -#: flatcamGUI/ObjectUI.py:1212 +#: flatcamGUI/ObjectUI.py:1251 msgid "" "The Tool Type (TT) can be:\n" "- Circular with 1 ... 4 teeth -> it is informative only. Being circular the " @@ -8039,7 +8039,7 @@ msgstr "" "Alegerea tipului V-Shape (forma in V) va selecta automat Tipul de Operaţie " "ca Izolare." -#: flatcamGUI/ObjectUI.py:1224 +#: flatcamGUI/ObjectUI.py:1263 msgid "" "Plot column. It is visible only for MultiGeo geometries, meaning geometries " "that holds the geometry\n" @@ -8059,7 +8059,7 @@ msgstr "" "se poate activa/dezactiva\n" "afișarea in canvas." -#: flatcamGUI/ObjectUI.py:1242 +#: flatcamGUI/ObjectUI.py:1281 msgid "" "The value to offset the cut when \n" "the Offset type selected is 'Offset'.\n" @@ -8070,7 +8070,7 @@ msgstr "" "este >Ofset<. Aceasta valoare poate fi pozitivă pentru un ofset\n" "in exterior sau poate fi negativă pentru un ofset in interior." -#: flatcamGUI/ObjectUI.py:1267 +#: flatcamGUI/ObjectUI.py:1306 msgid "" "Add a new tool to the Tool Table\n" "with the specified diameter." @@ -8078,11 +8078,11 @@ msgstr "" "Adăugați o Unealta noua in Tabelul de Unelte\n" "cu diametrul specificat." -#: flatcamGUI/ObjectUI.py:1275 +#: flatcamGUI/ObjectUI.py:1314 msgid "Add Tool from DataBase" msgstr "Adăugați Unealta din DB Unelte" -#: flatcamGUI/ObjectUI.py:1277 +#: flatcamGUI/ObjectUI.py:1316 msgid "" "Add a new tool to the Tool Table\n" "from the Tool DataBase." @@ -8090,7 +8090,7 @@ msgstr "" "Adaugă o noua unealta in Tabela de Unelte,\n" "din DB Unelte." -#: flatcamGUI/ObjectUI.py:1287 +#: flatcamGUI/ObjectUI.py:1326 msgid "" "Copy a selection of tools in the Tool Table\n" "by first selecting a row in the Tool Table." @@ -8098,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:1293 +#: flatcamGUI/ObjectUI.py:1332 msgid "" "Delete a selection of tools in the Tool Table\n" "by first selecting a row in the Tool Table." @@ -8106,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:1317 +#: flatcamGUI/ObjectUI.py:1356 msgid "" "The data used for creating GCode.\n" "Each tool store it's own set of such data." @@ -8114,13 +8114,13 @@ msgstr "" "Datele folosite pentru crearea codului GCode.\n" "Fiecare unealtă stochează un subset de asemenea date." -#: flatcamGUI/ObjectUI.py:1387 flatcamGUI/PreferencesUI.py:3199 -#: flatcamGUI/PreferencesUI.py:4311 flatcamTools/ToolCutOut.py:153 +#: flatcamGUI/ObjectUI.py:1426 flatcamGUI/PreferencesUI.py:3200 +#: flatcamGUI/PreferencesUI.py:4312 flatcamTools/ToolCutOut.py:153 msgid "Multi-Depth" msgstr "Multi-Pas" -#: flatcamGUI/ObjectUI.py:1390 flatcamGUI/PreferencesUI.py:3202 -#: flatcamGUI/PreferencesUI.py:4314 flatcamTools/ToolCutOut.py:156 +#: flatcamGUI/ObjectUI.py:1429 flatcamGUI/PreferencesUI.py:3203 +#: flatcamGUI/PreferencesUI.py:4315 flatcamTools/ToolCutOut.py:156 msgid "" "Use multiple passes to limit\n" "the cut depth in each pass. Will\n" @@ -8132,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:1404 flatcamGUI/PreferencesUI.py:4326 +#: flatcamGUI/ObjectUI.py:1443 flatcamGUI/PreferencesUI.py:4327 #: 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:1415 flatcamGUI/PreferencesUI.py:3234 +#: flatcamGUI/ObjectUI.py:1454 flatcamGUI/PreferencesUI.py:3235 msgid "" "Height of the tool when\n" "moving without cutting." @@ -8147,7 +8147,7 @@ msgstr "" "Înălţimea la care se misca unealta când nu taie,\n" "deasupra materialului." -#: flatcamGUI/ObjectUI.py:1442 flatcamGUI/PreferencesUI.py:3255 +#: flatcamGUI/ObjectUI.py:1481 flatcamGUI/PreferencesUI.py:3256 msgid "" "Include tool-change sequence\n" "in the Machine Code (Pause for tool change)." @@ -8156,12 +8156,12 @@ msgstr "" "codul masina CNC. O pauza pentru schimbul\n" "uneltei (M6)." -#: flatcamGUI/ObjectUI.py:1492 flatcamGUI/PreferencesUI.py:3306 -#: flatcamGUI/PreferencesUI.py:5484 flatcamTools/ToolSolderPaste.py:252 +#: flatcamGUI/ObjectUI.py:1531 flatcamGUI/PreferencesUI.py:3307 +#: flatcamGUI/PreferencesUI.py:5485 flatcamTools/ToolSolderPaste.py:252 msgid "Feedrate X-Y" msgstr "Feedrate X-Y" -#: flatcamGUI/ObjectUI.py:1494 flatcamGUI/PreferencesUI.py:3308 +#: flatcamGUI/ObjectUI.py:1533 flatcamGUI/PreferencesUI.py:3309 msgid "" "Cutting speed in the XY\n" "plane in units per minute" @@ -8169,7 +8169,7 @@ msgstr "" "Viteza de tăiere in planul X-Y\n" "in unitati pe minut" -#: flatcamGUI/ObjectUI.py:1508 flatcamGUI/PreferencesUI.py:3323 +#: flatcamGUI/ObjectUI.py:1547 flatcamGUI/PreferencesUI.py:3324 msgid "" "Cutting speed in the XY\n" "plane in units per minute.\n" @@ -8179,7 +8179,7 @@ msgstr "" "in unitati pe minut.\n" "Mai este numita și viteza de plonjare." -#: flatcamGUI/ObjectUI.py:1523 flatcamGUI/PreferencesUI.py:3432 +#: flatcamGUI/ObjectUI.py:1562 flatcamGUI/PreferencesUI.py:3433 msgid "" "Cutting speed in the XY plane\n" "(in units per minute).\n" @@ -8192,12 +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:1541 flatcamGUI/PreferencesUI.py:3448 +#: flatcamGUI/ObjectUI.py:1580 flatcamGUI/PreferencesUI.py:3449 msgid "Re-cut" msgstr "Re-tăiere" -#: flatcamGUI/ObjectUI.py:1543 flatcamGUI/ObjectUI.py:1555 -#: flatcamGUI/PreferencesUI.py:3450 flatcamGUI/PreferencesUI.py:3462 +#: flatcamGUI/ObjectUI.py:1582 flatcamGUI/ObjectUI.py:1594 +#: flatcamGUI/PreferencesUI.py:3451 flatcamGUI/PreferencesUI.py:3463 msgid "" "In order to remove possible\n" "copper leftovers where first cut\n" @@ -8209,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:1569 flatcamGUI/PreferencesUI.py:3340 +#: flatcamGUI/ObjectUI.py:1608 flatcamGUI/PreferencesUI.py:3341 msgid "" "Speed of the spindle in RPM (optional).\n" "If LASER preprocessor is used,\n" @@ -8219,12 +8219,12 @@ msgstr "" "Daca postprocesorul Laser este folosit,\n" "valoarea să este puterea laserului." -#: flatcamGUI/ObjectUI.py:1603 flatcamGUI/PreferencesUI.py:5573 +#: flatcamGUI/ObjectUI.py:1642 flatcamGUI/PreferencesUI.py:5574 #: flatcamTools/ToolSolderPaste.py:334 msgid "PostProcessor" msgstr "Postprocesor" -#: flatcamGUI/ObjectUI.py:1605 flatcamGUI/PreferencesUI.py:3377 +#: flatcamGUI/ObjectUI.py:1644 flatcamGUI/PreferencesUI.py:3378 msgid "" "The Preprocessor file that dictates\n" "the Machine Code (like GCode, RML, HPGL) output." @@ -8233,11 +8233,11 @@ msgstr "" "codului masina CNC (GCode, RML, HPGL) care \n" "mai apoi este salvat." -#: flatcamGUI/ObjectUI.py:1652 +#: flatcamGUI/ObjectUI.py:1691 msgid "Apply parameters to all tools" msgstr "Aplicați parametrii la toate Uneltele" -#: flatcamGUI/ObjectUI.py:1654 +#: flatcamGUI/ObjectUI.py:1693 msgid "" "The parameters in the current form will be applied\n" "on all the tools from the Tool Table." @@ -8245,7 +8245,7 @@ msgstr "" "Parametrii din formularul curent vor fi aplicați\n" "la toate Uneltele din Tabelul Unelte." -#: flatcamGUI/ObjectUI.py:1663 +#: flatcamGUI/ObjectUI.py:1702 msgid "" "Add at least one tool in the tool-table.\n" "Click the header to select all, or Ctrl + LMB\n" @@ -8255,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:1670 +#: flatcamGUI/ObjectUI.py:1709 msgid "Generate CNCJob object" msgstr "Generează un obiect CNCJob" -#: flatcamGUI/ObjectUI.py:1672 +#: flatcamGUI/ObjectUI.py:1711 msgid "Generate the CNC Job object." msgstr "Generează un obiect CNCJob." -#: flatcamGUI/ObjectUI.py:1689 +#: flatcamGUI/ObjectUI.py:1728 msgid "Launch Paint Tool in Tools Tab." msgstr "" "Lansează unealta FlatCAM numita Paint și\n" "o instalează in Tab-ul Unealta." -#: flatcamGUI/ObjectUI.py:1697 flatcamGUI/PreferencesUI.py:4489 +#: flatcamGUI/ObjectUI.py:1736 flatcamGUI/PreferencesUI.py:4490 msgid "" "Creates tool paths to cover the\n" "whole area of a polygon (remove\n" @@ -8282,15 +8282,15 @@ msgstr "" "singur poligon se va cere să faceti click pe poligonul\n" "dorit." -#: flatcamGUI/ObjectUI.py:1737 +#: flatcamGUI/ObjectUI.py:1788 msgid "CNC Job Object" msgstr "Obiect CNCJob" -#: flatcamGUI/ObjectUI.py:1748 flatcamGUI/PreferencesUI.py:3632 +#: flatcamGUI/ObjectUI.py:1800 flatcamGUI/PreferencesUI.py:3633 msgid "Plot kind" msgstr "Tip afișare" -#: flatcamGUI/ObjectUI.py:1751 flatcamGUI/PreferencesUI.py:3634 +#: flatcamGUI/ObjectUI.py:1803 flatcamGUI/PreferencesUI.py:3635 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" @@ -8302,15 +8302,15 @@ msgstr "" "- Voiaj -> miscarile deasupra materialului\n" "- Tăiere -> miscarile in material, tăiere." -#: flatcamGUI/ObjectUI.py:1760 flatcamGUI/PreferencesUI.py:3642 +#: flatcamGUI/ObjectUI.py:1812 flatcamGUI/PreferencesUI.py:3643 msgid "Travel" msgstr "Voiaj" -#: flatcamGUI/ObjectUI.py:1764 flatcamGUI/PreferencesUI.py:3651 +#: flatcamGUI/ObjectUI.py:1816 flatcamGUI/PreferencesUI.py:3652 msgid "Display Annotation" msgstr "Afişează notații" -#: flatcamGUI/ObjectUI.py:1766 flatcamGUI/PreferencesUI.py:3653 +#: flatcamGUI/ObjectUI.py:1818 flatcamGUI/PreferencesUI.py:3654 msgid "" "This selects if to display text annotation on the plot.\n" "When checked it will display numbers in order for each end\n" @@ -8320,11 +8320,11 @@ msgstr "" "Cand este selectat va afisa numerele in ordine pt fiecare\n" "capat al liniilor de traversare." -#: flatcamGUI/ObjectUI.py:1781 +#: flatcamGUI/ObjectUI.py:1833 msgid "Travelled dist." msgstr "Dist. parcursă" -#: flatcamGUI/ObjectUI.py:1783 flatcamGUI/ObjectUI.py:1788 +#: flatcamGUI/ObjectUI.py:1835 flatcamGUI/ObjectUI.py:1840 msgid "" "This is the total travelled distance on X-Y plane.\n" "In current units." @@ -8332,11 +8332,11 @@ msgstr "" "Aceasta este distanţa totala parcursa in planul X-Y.\n" "In unitatile curente." -#: flatcamGUI/ObjectUI.py:1793 +#: flatcamGUI/ObjectUI.py:1845 msgid "Estimated time" msgstr "Durată estimată" -#: flatcamGUI/ObjectUI.py:1795 flatcamGUI/ObjectUI.py:1800 +#: flatcamGUI/ObjectUI.py:1847 flatcamGUI/ObjectUI.py:1852 msgid "" "This is the estimated time to do the routing/drilling,\n" "without the time spent in ToolChange events." @@ -8344,11 +8344,11 @@ msgstr "" "Acesta este timpul estimat pentru efectuarea traseului / găuririi,\n" "fără timpul petrecut în evenimentele ToolChange." -#: flatcamGUI/ObjectUI.py:1835 +#: flatcamGUI/ObjectUI.py:1887 msgid "CNC Tools Table" msgstr "Tabela Unelte CNC" -#: flatcamGUI/ObjectUI.py:1838 +#: flatcamGUI/ObjectUI.py:1890 msgid "" "Tools in this CNCJob object used for cutting.\n" "The tool diameter is used for plotting on canvas.\n" @@ -8369,24 +8369,24 @@ msgstr "" "Shape\n" "(cu forma in V)." -#: flatcamGUI/ObjectUI.py:1866 flatcamGUI/ObjectUI.py:1877 +#: flatcamGUI/ObjectUI.py:1918 flatcamGUI/ObjectUI.py:1929 msgid "P" msgstr "P" -#: flatcamGUI/ObjectUI.py:1887 +#: flatcamGUI/ObjectUI.py:1939 msgid "Update Plot" msgstr "Actualiz. afișare" -#: flatcamGUI/ObjectUI.py:1889 +#: flatcamGUI/ObjectUI.py:1941 msgid "Update the plot." msgstr "Actualizează afișarea obiectelor." -#: flatcamGUI/ObjectUI.py:1896 flatcamGUI/PreferencesUI.py:3819 +#: flatcamGUI/ObjectUI.py:1948 flatcamGUI/PreferencesUI.py:3820 msgid "Export CNC Code" msgstr "Exporta codul masina CNC" -#: flatcamGUI/ObjectUI.py:1898 flatcamGUI/PreferencesUI.py:3760 -#: flatcamGUI/PreferencesUI.py:3821 +#: flatcamGUI/ObjectUI.py:1950 flatcamGUI/PreferencesUI.py:3761 +#: flatcamGUI/PreferencesUI.py:3822 msgid "" "Export and save G-Code to\n" "make this object to a file." @@ -8394,12 +8394,12 @@ msgstr "" "Exportă și salvează codul G-Code intr-un fişier\n" "care este salvat pe HDD." -#: flatcamGUI/ObjectUI.py:1904 +#: flatcamGUI/ObjectUI.py:1956 msgid "Prepend to CNC Code" msgstr "Adaugă la inceput in codul G-Code" -#: flatcamGUI/ObjectUI.py:1906 flatcamGUI/ObjectUI.py:1913 -#: flatcamGUI/PreferencesUI.py:3776 flatcamGUI/PreferencesUI.py:3783 +#: flatcamGUI/ObjectUI.py:1958 flatcamGUI/ObjectUI.py:1965 +#: flatcamGUI/PreferencesUI.py:3777 flatcamGUI/PreferencesUI.py:3784 msgid "" "Type here any G-Code commands you would\n" "like to add at the beginning of the G-Code file." @@ -8407,12 +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:1919 +#: flatcamGUI/ObjectUI.py:1971 msgid "Append to CNC Code" msgstr "Adaugă la sfârşit in codul G-Code" -#: flatcamGUI/ObjectUI.py:1921 flatcamGUI/ObjectUI.py:1929 -#: flatcamGUI/PreferencesUI.py:3792 flatcamGUI/PreferencesUI.py:3800 +#: flatcamGUI/ObjectUI.py:1973 flatcamGUI/ObjectUI.py:1981 +#: flatcamGUI/PreferencesUI.py:3793 flatcamGUI/PreferencesUI.py:3801 msgid "" "Type here any G-Code commands you would\n" "like to append to the generated file.\n" @@ -8421,11 +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:1943 flatcamGUI/PreferencesUI.py:3827 +#: flatcamGUI/ObjectUI.py:1995 flatcamGUI/PreferencesUI.py:3828 msgid "Toolchange G-Code" msgstr "G-Code pt schimb unealtă" -#: flatcamGUI/ObjectUI.py:1946 flatcamGUI/PreferencesUI.py:3830 +#: flatcamGUI/ObjectUI.py:1998 flatcamGUI/PreferencesUI.py:3831 msgid "" "Type here any G-Code commands you would\n" "like to be executed when Toolchange event is encountered.\n" @@ -8447,7 +8447,7 @@ msgstr "" "'toolchange_custom'\n" "in numele sau." -#: flatcamGUI/ObjectUI.py:1961 flatcamGUI/PreferencesUI.py:3853 +#: flatcamGUI/ObjectUI.py:2013 flatcamGUI/PreferencesUI.py:3854 msgid "" "Type here any G-Code commands you would\n" "like to be executed when Toolchange event is encountered.\n" @@ -8466,11 +8466,11 @@ msgstr "" "'toolchange_custom'\n" "in numele sau." -#: flatcamGUI/ObjectUI.py:1976 flatcamGUI/PreferencesUI.py:3869 +#: flatcamGUI/ObjectUI.py:2028 flatcamGUI/PreferencesUI.py:3870 msgid "Use Toolchange Macro" msgstr "Fol. Macro schimb unealtă" -#: flatcamGUI/ObjectUI.py:1978 flatcamGUI/PreferencesUI.py:3871 +#: flatcamGUI/ObjectUI.py:2030 flatcamGUI/PreferencesUI.py:3872 msgid "" "Check this box if you want to use\n" "a Custom Toolchange GCode (macro)." @@ -8478,7 +8478,7 @@ msgstr "" "Bifează aici daca dorești să folosești Macro pentru\n" "schimb unelte." -#: flatcamGUI/ObjectUI.py:1986 flatcamGUI/PreferencesUI.py:3883 +#: flatcamGUI/ObjectUI.py:2038 flatcamGUI/PreferencesUI.py:3884 msgid "" "A list of the FlatCAM variables that can be used\n" "in the Toolchange event.\n" @@ -8488,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: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 +#: flatcamGUI/ObjectUI.py:2045 flatcamGUI/PreferencesUI.py:1852 +#: flatcamGUI/PreferencesUI.py:2825 flatcamGUI/PreferencesUI.py:3570 +#: flatcamGUI/PreferencesUI.py:3891 flatcamGUI/PreferencesUI.py:3973 +#: flatcamGUI/PreferencesUI.py:4265 flatcamGUI/PreferencesUI.py:4424 +#: flatcamGUI/PreferencesUI.py:4646 flatcamGUI/PreferencesUI.py:4943 +#: flatcamGUI/PreferencesUI.py:5194 flatcamGUI/PreferencesUI.py:5370 +#: flatcamGUI/PreferencesUI.py:5595 flatcamGUI/PreferencesUI.py:5617 +#: flatcamGUI/PreferencesUI.py:5841 flatcamGUI/PreferencesUI.py:5878 +#: flatcamGUI/PreferencesUI.py:6072 flatcamGUI/PreferencesUI.py:6326 +#: flatcamGUI/PreferencesUI.py:6442 flatcamTools/ToolCopperThieving.py:89 #: flatcamTools/ToolFiducials.py:149 flatcamTools/ToolNonCopperClear.py:315 msgid "Parameters" msgstr "Parametri" -#: flatcamGUI/ObjectUI.py:1996 flatcamGUI/PreferencesUI.py:3893 +#: flatcamGUI/ObjectUI.py:2048 flatcamGUI/PreferencesUI.py:3894 msgid "FlatCAM CNC parameters" msgstr "Parametri FlatCAM CNC" -#: flatcamGUI/ObjectUI.py:1997 flatcamGUI/PreferencesUI.py:3894 +#: flatcamGUI/ObjectUI.py:2049 flatcamGUI/PreferencesUI.py:3895 msgid "tool number" msgstr "numărul uneltei" -#: flatcamGUI/ObjectUI.py:1998 flatcamGUI/PreferencesUI.py:3895 +#: flatcamGUI/ObjectUI.py:2050 flatcamGUI/PreferencesUI.py:3896 msgid "tool diameter" msgstr "diametrul sculei" -#: flatcamGUI/ObjectUI.py:1999 flatcamGUI/PreferencesUI.py:3896 +#: flatcamGUI/ObjectUI.py:2051 flatcamGUI/PreferencesUI.py:3897 msgid "for Excellon, total number of drills" msgstr "pentru Excellon, numărul total de operațiuni găurire" -#: flatcamGUI/ObjectUI.py:2001 flatcamGUI/PreferencesUI.py:3898 +#: flatcamGUI/ObjectUI.py:2053 flatcamGUI/PreferencesUI.py:3899 msgid "X coord for Toolchange" msgstr "Coordonata X pentru schimbarea uneltei" -#: flatcamGUI/ObjectUI.py:2002 flatcamGUI/PreferencesUI.py:3899 +#: flatcamGUI/ObjectUI.py:2054 flatcamGUI/PreferencesUI.py:3900 msgid "Y coord for Toolchange" msgstr "Coordonata Y pentru schimbarea uneltei" -#: flatcamGUI/ObjectUI.py:2003 flatcamGUI/PreferencesUI.py:3901 +#: flatcamGUI/ObjectUI.py:2055 flatcamGUI/PreferencesUI.py:3902 msgid "Z coord for Toolchange" msgstr "Coordonata Z pentru schimbarea uneltei" -#: flatcamGUI/ObjectUI.py:2004 +#: flatcamGUI/ObjectUI.py:2056 msgid "depth where to cut" msgstr "adâncimea de tăiere" -#: flatcamGUI/ObjectUI.py:2005 +#: flatcamGUI/ObjectUI.py:2057 msgid "height where to travel" msgstr "inălţimea deplasare" -#: flatcamGUI/ObjectUI.py:2006 flatcamGUI/PreferencesUI.py:3904 +#: flatcamGUI/ObjectUI.py:2058 flatcamGUI/PreferencesUI.py:3905 msgid "the step value for multidepth cut" msgstr "pasul pentru taierea progresiva" -#: flatcamGUI/ObjectUI.py:2008 flatcamGUI/PreferencesUI.py:3906 +#: flatcamGUI/ObjectUI.py:2060 flatcamGUI/PreferencesUI.py:3907 msgid "the value for the spindle speed" msgstr "valoarea viteza motor" -#: flatcamGUI/ObjectUI.py:2010 +#: flatcamGUI/ObjectUI.py:2062 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:2026 +#: flatcamGUI/ObjectUI.py:2078 msgid "View CNC Code" msgstr "Vizualiz. codul CNC" -#: flatcamGUI/ObjectUI.py:2028 +#: flatcamGUI/ObjectUI.py:2080 msgid "" "Opens TAB to view/modify/print G-Code\n" "file." @@ -8562,11 +8562,11 @@ msgstr "" "Deschide un nou tab pentru a vizualiza, modifica\n" "sau tipari codul G-Code." -#: flatcamGUI/ObjectUI.py:2033 +#: flatcamGUI/ObjectUI.py:2085 msgid "Save CNC Code" msgstr "Salvează codul CNC" -#: flatcamGUI/ObjectUI.py:2035 +#: flatcamGUI/ObjectUI.py:2087 msgid "" "Opens dialog to save G-Code\n" "file." @@ -8574,78 +8574,78 @@ msgstr "" "Deshide o fereastra dialog pentru salvarea codului\n" "G-Code intr-un fişier." -#: flatcamGUI/ObjectUI.py:2055 +#: flatcamGUI/ObjectUI.py:2118 msgid "Script Object" msgstr "Editare Script" -#: flatcamGUI/ObjectUI.py:2077 flatcamGUI/ObjectUI.py:2139 +#: flatcamGUI/ObjectUI.py:2140 flatcamGUI/ObjectUI.py:2213 msgid "Auto Completer" msgstr "Autocompletare" -#: flatcamGUI/ObjectUI.py:2079 +#: flatcamGUI/ObjectUI.py:2142 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:2110 +#: flatcamGUI/ObjectUI.py:2184 msgid "Document Object" msgstr "Obiect document" -#: flatcamGUI/ObjectUI.py:2141 +#: flatcamGUI/ObjectUI.py:2215 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:2159 +#: flatcamGUI/ObjectUI.py:2233 msgid "Font Type" msgstr "Tipul Font" -#: flatcamGUI/ObjectUI.py:2176 +#: flatcamGUI/ObjectUI.py:2250 msgid "Font Size" msgstr "Dim. Font" -#: flatcamGUI/ObjectUI.py:2212 +#: flatcamGUI/ObjectUI.py:2286 msgid "Alignment" msgstr "Aliniere" -#: flatcamGUI/ObjectUI.py:2217 +#: flatcamGUI/ObjectUI.py:2291 msgid "Align Left" msgstr "Aliniați la stânga" -#: flatcamGUI/ObjectUI.py:2222 +#: flatcamGUI/ObjectUI.py:2296 msgid "Center" msgstr "Centru" -#: flatcamGUI/ObjectUI.py:2227 +#: flatcamGUI/ObjectUI.py:2301 msgid "Align Right" msgstr "Aliniați la dreapta" -#: flatcamGUI/ObjectUI.py:2232 +#: flatcamGUI/ObjectUI.py:2306 msgid "Justify" msgstr "Aliniere duala" -#: flatcamGUI/ObjectUI.py:2239 +#: flatcamGUI/ObjectUI.py:2313 msgid "Font Color" msgstr "Culoare FOnt" -#: flatcamGUI/ObjectUI.py:2241 +#: flatcamGUI/ObjectUI.py:2315 msgid "Set the font color for the selected text" msgstr "Setați culoarea fontului pentru textul selectat" -#: flatcamGUI/ObjectUI.py:2255 +#: flatcamGUI/ObjectUI.py:2329 msgid "Selection Color" msgstr "Culoare de selecție" -#: flatcamGUI/ObjectUI.py:2257 +#: flatcamGUI/ObjectUI.py:2331 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:2271 +#: flatcamGUI/ObjectUI.py:2345 msgid "Tab Size" msgstr "Dimens. filei" -#: flatcamGUI/ObjectUI.py:2273 +#: flatcamGUI/ObjectUI.py:2347 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." @@ -8710,7 +8710,7 @@ msgstr "" msgid "Wk. Orientation" msgstr "Orientare Sp. Lucru" -#: flatcamGUI/PreferencesUI.py:430 flatcamGUI/PreferencesUI.py:4853 +#: flatcamGUI/PreferencesUI.py:430 flatcamGUI/PreferencesUI.py:4854 #: flatcamTools/ToolFilm.py:420 msgid "" "Can be:\n" @@ -8721,12 +8721,12 @@ msgstr "" "- Portret\n" "- Peisaj" -#: flatcamGUI/PreferencesUI.py:434 flatcamGUI/PreferencesUI.py:4857 +#: flatcamGUI/PreferencesUI.py:434 flatcamGUI/PreferencesUI.py:4858 #: flatcamTools/ToolFilm.py:424 msgid "Portrait" msgstr "Portret" -#: flatcamGUI/PreferencesUI.py:435 flatcamGUI/PreferencesUI.py:4858 +#: flatcamGUI/PreferencesUI.py:435 flatcamGUI/PreferencesUI.py:4859 #: flatcamTools/ToolFilm.py:425 msgid "Landscape" msgstr "Peisaj" @@ -8933,7 +8933,7 @@ msgstr "" "Util pentru monitoarele 4k.\n" "Va fi aplicată la următoarea pornire a aplicaţiei." -#: flatcamGUI/PreferencesUI.py:782 flatcamGUI/PreferencesUI.py:1032 +#: flatcamGUI/PreferencesUI.py:782 flatcamGUI/PreferencesUI.py:1033 msgid "Clear GUI Settings" msgstr "Șterge Setările GUI" @@ -9018,19 +9018,19 @@ msgstr "Ecran Pornire" msgid "Enable display of the splash screen at application startup." msgstr "Activeaza afisarea unui ecran de pornire la pornirea aplicatiei." -#: flatcamGUI/PreferencesUI.py:899 +#: flatcamGUI/PreferencesUI.py:900 msgid "Sys Tray Icon" msgstr "Icon in Sys Tray" -#: flatcamGUI/PreferencesUI.py:901 +#: flatcamGUI/PreferencesUI.py:902 msgid "Enable display of FlatCAM icon in Sys Tray." msgstr "Activare pentru afișarea pictogramei FlatCAM în Sys Tray." -#: flatcamGUI/PreferencesUI.py:909 +#: flatcamGUI/PreferencesUI.py:910 msgid "Shell at StartUp" msgstr "Shell la pornire" -#: flatcamGUI/PreferencesUI.py:911 flatcamGUI/PreferencesUI.py:916 +#: flatcamGUI/PreferencesUI.py:912 flatcamGUI/PreferencesUI.py:917 msgid "" "Check this box if you want the shell to\n" "start automatically at startup." @@ -9039,11 +9039,11 @@ msgstr "" "automata a ferestrei Shell (linia de comanda)\n" "la initializarea aplicaţiei." -#: flatcamGUI/PreferencesUI.py:924 +#: flatcamGUI/PreferencesUI.py:925 msgid "Project at StartUp" msgstr "Proiect la pornire" -#: flatcamGUI/PreferencesUI.py:926 flatcamGUI/PreferencesUI.py:931 +#: flatcamGUI/PreferencesUI.py:927 flatcamGUI/PreferencesUI.py:932 msgid "" "Check this box if you want the project/selected/tool tab area to\n" "to be shown automatically at startup." @@ -9051,11 +9051,11 @@ msgstr "" "Bifează aici daca dorești ca zona Notebook să fie\n" "afișată automat la pornire." -#: flatcamGUI/PreferencesUI.py:939 +#: flatcamGUI/PreferencesUI.py:940 msgid "Project AutoHide" msgstr "Ascundere Proiect" -#: flatcamGUI/PreferencesUI.py:941 flatcamGUI/PreferencesUI.py:947 +#: flatcamGUI/PreferencesUI.py:942 flatcamGUI/PreferencesUI.py:948 msgid "" "Check this box if you want the project/selected/tool tab area to\n" "hide automatically when there are no objects loaded and\n" @@ -9065,11 +9065,11 @@ msgstr "" "când nu sunt obiecte incărcate și să fie afișată automat\n" "când un obiect nou este creat/incărcat." -#: flatcamGUI/PreferencesUI.py:958 +#: flatcamGUI/PreferencesUI.py:959 msgid "Enable ToolTips" msgstr "Activează ToolTip-uri" -#: flatcamGUI/PreferencesUI.py:960 flatcamGUI/PreferencesUI.py:965 +#: flatcamGUI/PreferencesUI.py:961 flatcamGUI/PreferencesUI.py:966 msgid "" "Check this box if you want to have toolTips displayed\n" "when hovering with mouse over items throughout the App." @@ -9077,11 +9077,11 @@ msgstr "" "Bifează daca dorești ca să fie afisate texte explicative când se\n" "tine mouse-ul deasupra diverselor texte din FlatCAM." -#: flatcamGUI/PreferencesUI.py:973 +#: flatcamGUI/PreferencesUI.py:974 msgid "Mouse Cursor" msgstr "Cursor de mouse" -#: flatcamGUI/PreferencesUI.py:975 +#: flatcamGUI/PreferencesUI.py:976 msgid "" "Choose a mouse cursor shape.\n" "- Small -> with a customizable size.\n" @@ -9091,27 +9091,27 @@ msgstr "" "- Mic -> cu o dimensiune personalizabilă.\n" "- Mare -> Linii infinite" -#: flatcamGUI/PreferencesUI.py:981 +#: flatcamGUI/PreferencesUI.py:982 msgid "Small" msgstr "Mic" -#: flatcamGUI/PreferencesUI.py:982 +#: flatcamGUI/PreferencesUI.py:983 msgid "Big" msgstr "Mare" -#: flatcamGUI/PreferencesUI.py:988 +#: flatcamGUI/PreferencesUI.py:989 msgid "Mouse Cursor Size" msgstr "Mărimea cursor mouse" -#: flatcamGUI/PreferencesUI.py:990 +#: flatcamGUI/PreferencesUI.py:991 msgid "Set the size of the mouse cursor, in pixels." msgstr "Setați dimensiunea cursorului mouse-ului, în pixeli." -#: flatcamGUI/PreferencesUI.py:1001 +#: flatcamGUI/PreferencesUI.py:1002 msgid "Delete object confirmation" msgstr "Confirmare de ștergere a obiectului" -#: flatcamGUI/PreferencesUI.py:1003 +#: flatcamGUI/PreferencesUI.py:1004 msgid "" "When checked the application will ask for user confirmation\n" "whenever the Delete object(s) event is triggered, either by\n" @@ -9121,22 +9121,22 @@ msgstr "" "ori de câte ori este declanșat evenimentul de Ștergere a \n" "unor obiecte, fie de cu ajutorul meniurilor sau cu combinatii de taste." -#: flatcamGUI/PreferencesUI.py:1029 +#: flatcamGUI/PreferencesUI.py:1030 msgid "Are you sure you want to delete the GUI Settings? \n" msgstr "Esti sigur că dorești să ștergi setările GUI?\n" -#: flatcamGUI/PreferencesUI.py:1053 +#: flatcamGUI/PreferencesUI.py:1054 msgid "App Preferences" msgstr "Preferințele Aplicaţie" -#: flatcamGUI/PreferencesUI.py:1063 flatcamGUI/PreferencesUI.py:1388 -#: flatcamGUI/PreferencesUI.py:1763 flatcamGUI/PreferencesUI.py:2686 +#: flatcamGUI/PreferencesUI.py:1064 flatcamGUI/PreferencesUI.py:1389 +#: flatcamGUI/PreferencesUI.py:1764 flatcamGUI/PreferencesUI.py:2687 #: flatcamTools/ToolDistance.py:49 flatcamTools/ToolDistanceMin.py:49 #: flatcamTools/ToolPcbWizard.py:127 flatcamTools/ToolProperties.py:152 msgid "Units" msgstr "Unităti" -#: flatcamGUI/PreferencesUI.py:1064 +#: flatcamGUI/PreferencesUI.py:1065 msgid "" "The default value for FlatCAM units.\n" "Whatever is selected here is set every time\n" @@ -9145,22 +9145,22 @@ msgstr "" "Unitatea de masura pt FlatCAM.\n" "Este setată la fiecare pornire a programului." -#: flatcamGUI/PreferencesUI.py:1067 flatcamGUI/PreferencesUI.py:1394 -#: flatcamGUI/PreferencesUI.py:1769 flatcamGUI/PreferencesUI.py:2223 -#: flatcamGUI/PreferencesUI.py:2692 flatcamTools/ToolCalculators.py:62 +#: flatcamGUI/PreferencesUI.py:1068 flatcamGUI/PreferencesUI.py:1395 +#: flatcamGUI/PreferencesUI.py:1770 flatcamGUI/PreferencesUI.py:2224 +#: flatcamGUI/PreferencesUI.py:2693 flatcamTools/ToolCalculators.py:62 #: flatcamTools/ToolPcbWizard.py:126 msgid "MM" msgstr "MM" -#: flatcamGUI/PreferencesUI.py:1068 +#: flatcamGUI/PreferencesUI.py:1069 msgid "IN" msgstr "Inch" -#: flatcamGUI/PreferencesUI.py:1074 +#: flatcamGUI/PreferencesUI.py:1075 msgid "Precision MM" msgstr "Precizie MM" -#: flatcamGUI/PreferencesUI.py:1076 +#: flatcamGUI/PreferencesUI.py:1077 msgid "" "The number of decimals used throughout the application\n" "when the set units are in METRIC system.\n" @@ -9170,11 +9170,11 @@ msgstr "" "când unitățile setate sunt în sistem METRIC.\n" "Orice modificare necesită repornirea aplicației." -#: flatcamGUI/PreferencesUI.py:1088 +#: flatcamGUI/PreferencesUI.py:1089 msgid "Precision INCH" msgstr "Precizie INCH" -#: flatcamGUI/PreferencesUI.py:1090 +#: flatcamGUI/PreferencesUI.py:1091 msgid "" "The number of decimals used throughout the application\n" "when the set units are in INCH system.\n" @@ -9184,11 +9184,11 @@ msgstr "" "când unitățile setate sunt în sistem INCH.\n" "Orice modificare necesită repornirea aplicației." -#: flatcamGUI/PreferencesUI.py:1102 +#: flatcamGUI/PreferencesUI.py:1103 msgid "Graphic Engine" msgstr "Motor grafic" -#: flatcamGUI/PreferencesUI.py:1103 +#: flatcamGUI/PreferencesUI.py:1104 msgid "" "Choose what graphic engine to use in FlatCAM.\n" "Legacy(2D) -> reduced functionality, slow performance but enhanced " @@ -9207,19 +9207,19 @@ msgstr "" "Intel HD3000 sau mai vechi. În acest caz, suprafața de afisare va fi neagră\n" "prin urmare folosiți modul Legacy (2D)." -#: flatcamGUI/PreferencesUI.py:1109 +#: flatcamGUI/PreferencesUI.py:1110 msgid "Legacy(2D)" msgstr "Legacy(2D)" -#: flatcamGUI/PreferencesUI.py:1110 +#: flatcamGUI/PreferencesUI.py:1111 msgid "OpenGL(3D)" msgstr "OpenGL(3D)" -#: flatcamGUI/PreferencesUI.py:1117 +#: flatcamGUI/PreferencesUI.py:1118 msgid "APP. LEVEL" msgstr "Nivel aplicatie" -#: flatcamGUI/PreferencesUI.py:1118 +#: flatcamGUI/PreferencesUI.py:1119 msgid "" "Choose the default level of usage for FlatCAM.\n" "BASIC level -> reduced functionality, best for beginner's.\n" @@ -9235,11 +9235,11 @@ msgstr "" "Alegerea efectuata aici va influenta ce aparamtri sunt disponibili\n" "in Tab-ul SELECTAT dar și in alte parti ale FlatCAM." -#: flatcamGUI/PreferencesUI.py:1130 +#: flatcamGUI/PreferencesUI.py:1131 msgid "Portable app" msgstr "Aplicație portabilă" -#: flatcamGUI/PreferencesUI.py:1131 +#: flatcamGUI/PreferencesUI.py:1132 msgid "" "Choose if the application should run as portable.\n" "\n" @@ -9253,19 +9253,19 @@ msgstr "" "ceea ce înseamnă că fișierele de preferințe vor fi salvate\n" "în folderul aplicației, în subfolderul lib \\ config." -#: flatcamGUI/PreferencesUI.py:1141 +#: flatcamGUI/PreferencesUI.py:1142 msgid "Languages" msgstr "Traduceri" -#: flatcamGUI/PreferencesUI.py:1142 +#: flatcamGUI/PreferencesUI.py:1143 msgid "Set the language used throughout FlatCAM." msgstr "Setează limba folosita pentru textele din FlatCAM." -#: flatcamGUI/PreferencesUI.py:1148 +#: flatcamGUI/PreferencesUI.py:1149 msgid "Apply Language" msgstr "Aplica Traducere" -#: flatcamGUI/PreferencesUI.py:1149 +#: flatcamGUI/PreferencesUI.py:1150 msgid "" "Set the language used throughout FlatCAM.\n" "The app will restart after click.Windows: When FlatCAM is installed in " @@ -9281,11 +9281,11 @@ msgstr "" "Program Files este posibil ca aplicatia să nu se restarteze\n" "după click datorită unor setări de securitate ale Windows." -#: flatcamGUI/PreferencesUI.py:1161 +#: flatcamGUI/PreferencesUI.py:1162 msgid "Version Check" msgstr "Verificare versiune" -#: flatcamGUI/PreferencesUI.py:1163 flatcamGUI/PreferencesUI.py:1168 +#: flatcamGUI/PreferencesUI.py:1164 flatcamGUI/PreferencesUI.py:1169 msgid "" "Check this box if you want to check\n" "for a new version automatically at startup." @@ -9294,11 +9294,11 @@ msgstr "" "daca exista o versiune mai noua,\n" "la pornirea aplicaţiei." -#: flatcamGUI/PreferencesUI.py:1176 +#: flatcamGUI/PreferencesUI.py:1177 msgid "Send Stats" msgstr "Statistici" -#: flatcamGUI/PreferencesUI.py:1178 flatcamGUI/PreferencesUI.py:1183 +#: flatcamGUI/PreferencesUI.py:1179 flatcamGUI/PreferencesUI.py:1184 msgid "" "Check this box if you agree to send anonymous\n" "stats automatically at startup, to help improve FlatCAM." @@ -9308,11 +9308,11 @@ msgstr "" "aplicaţia. In acest fel dezvoltatorii vor sti unde să se focalizeze\n" "in crearea de inbunatatiri." -#: flatcamGUI/PreferencesUI.py:1193 +#: flatcamGUI/PreferencesUI.py:1194 msgid "Pan Button" msgstr "Buton Pan (mișcare)" -#: flatcamGUI/PreferencesUI.py:1194 +#: flatcamGUI/PreferencesUI.py:1195 msgid "" "Select the mouse button to use for panning:\n" "- MMB --> Middle Mouse Button\n" @@ -9322,35 +9322,35 @@ msgstr "" "- MMB - butonul din mijloc al mouse-ului\n" "- RMB - butonul in dreapta al mouse-ului" -#: flatcamGUI/PreferencesUI.py:1197 +#: flatcamGUI/PreferencesUI.py:1198 msgid "MMB" msgstr "MMB" -#: flatcamGUI/PreferencesUI.py:1198 +#: flatcamGUI/PreferencesUI.py:1199 msgid "RMB" msgstr "RMB" -#: flatcamGUI/PreferencesUI.py:1204 +#: flatcamGUI/PreferencesUI.py:1205 msgid "Multiple Sel" msgstr "Sel. multiplă" -#: flatcamGUI/PreferencesUI.py:1205 +#: flatcamGUI/PreferencesUI.py:1206 msgid "Select the key used for multiple selection." msgstr "Selectează tasta folosita pentru selectia multipla." -#: flatcamGUI/PreferencesUI.py:1206 +#: flatcamGUI/PreferencesUI.py:1207 msgid "CTRL" msgstr "CTRL" -#: flatcamGUI/PreferencesUI.py:1207 +#: flatcamGUI/PreferencesUI.py:1208 msgid "SHIFT" msgstr "SHIFT" -#: flatcamGUI/PreferencesUI.py:1213 +#: flatcamGUI/PreferencesUI.py:1214 msgid "Workers number" msgstr "Număr de worker's" -#: flatcamGUI/PreferencesUI.py:1215 flatcamGUI/PreferencesUI.py:1224 +#: flatcamGUI/PreferencesUI.py:1216 flatcamGUI/PreferencesUI.py:1225 msgid "" "The number of Qthreads made available to the App.\n" "A bigger number may finish the jobs more quickly but\n" @@ -9366,11 +9366,11 @@ msgstr "" "Valoarea standard este 2.\n" "Dupa schimbarea valoarii, se va aplica la următoarea pornire a aplicatiei." -#: flatcamGUI/PreferencesUI.py:1237 +#: flatcamGUI/PreferencesUI.py:1238 msgid "Geo Tolerance" msgstr "Toleranta geometrică" -#: flatcamGUI/PreferencesUI.py:1239 flatcamGUI/PreferencesUI.py:1248 +#: flatcamGUI/PreferencesUI.py:1240 flatcamGUI/PreferencesUI.py:1249 msgid "" "This value can counter the effect of the Circle Steps\n" "parameter. Default value is 0.01.\n" @@ -9386,11 +9386,11 @@ msgstr "" "O valoare mai mare va oferi mai multă performantă dar in\n" "defavoarea nievelului de detalii." -#: flatcamGUI/PreferencesUI.py:1263 +#: flatcamGUI/PreferencesUI.py:1264 msgid "\"Open\" behavior" msgstr "Stil \"Încarcare\"" -#: flatcamGUI/PreferencesUI.py:1265 +#: flatcamGUI/PreferencesUI.py:1266 msgid "" "When checked the path for the last saved file is used when saving files,\n" "and the path for the last opened file is used when opening files.\n" @@ -9408,11 +9408,11 @@ msgstr "" "ambele \n" "cazuri: fie că se deschide un fisier, fie că se salvează un fisier." -#: flatcamGUI/PreferencesUI.py:1274 +#: flatcamGUI/PreferencesUI.py:1275 msgid "Save Compressed Project" msgstr "Salvează Proiectul comprimat" -#: flatcamGUI/PreferencesUI.py:1276 +#: flatcamGUI/PreferencesUI.py:1277 msgid "" "Whether to save a compressed or uncompressed project.\n" "When checked it will save a compressed FlatCAM project." @@ -9421,11 +9421,11 @@ msgstr "" "Când este bifat aici, se va salva o arhiva a proiectului\n" "lucru care poate reduce dimensiunea semnificativ." -#: flatcamGUI/PreferencesUI.py:1285 +#: flatcamGUI/PreferencesUI.py:1286 msgid "Compression" msgstr "Compresie" -#: flatcamGUI/PreferencesUI.py:1287 +#: flatcamGUI/PreferencesUI.py:1288 msgid "" "The level of compression used when saving\n" "a FlatCAM project. Higher value means better compression\n" @@ -9436,11 +9436,11 @@ msgstr "" "dar cu consum redus de resurse in timp ce valoarea 9 cere multa memorie RAM\n" "și in plus, durează semnificativ mai mult." -#: flatcamGUI/PreferencesUI.py:1299 +#: flatcamGUI/PreferencesUI.py:1300 msgid "Bookmarks limit" msgstr "Limită nr. bookmark-uri" -#: flatcamGUI/PreferencesUI.py:1301 +#: flatcamGUI/PreferencesUI.py:1302 msgid "" "The maximum number of bookmarks that may be installed in the menu.\n" "The number of bookmarks in the bookmark manager may be greater\n" @@ -9450,11 +9450,11 @@ msgstr "" "Numărul de bookmark-uri în managerul de bookmark-uri poate fi mai mare\n" "dar meniul va conține doar atât de mult." -#: flatcamGUI/PreferencesUI.py:1310 +#: flatcamGUI/PreferencesUI.py:1311 msgid "Allow Machinist Unsafe Settings" msgstr "Permiteți setări nesigure pt Mașiniști" -#: flatcamGUI/PreferencesUI.py:1312 +#: flatcamGUI/PreferencesUI.py:1313 msgid "" "If checked, some of the application settings will be allowed\n" "to have values that are usually unsafe to use.\n" @@ -9468,20 +9468,20 @@ msgstr "" "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 +#: flatcamGUI/PreferencesUI.py:1334 msgid "Gerber General" msgstr "Gerber General" -#: flatcamGUI/PreferencesUI.py:1351 +#: flatcamGUI/PreferencesUI.py:1352 msgid "M-Color" msgstr "M-Color" -#: flatcamGUI/PreferencesUI.py:1365 flatcamGUI/PreferencesUI.py:3128 -#: flatcamGUI/PreferencesUI.py:3664 flatcamGUI/PreferencesUI.py:6079 +#: flatcamGUI/PreferencesUI.py:1366 flatcamGUI/PreferencesUI.py:3129 +#: flatcamGUI/PreferencesUI.py:3665 flatcamGUI/PreferencesUI.py:6080 msgid "Circle Steps" msgstr "Pași pt. cerc" -#: flatcamGUI/PreferencesUI.py:1367 +#: flatcamGUI/PreferencesUI.py:1368 msgid "" "The number of circle steps for Gerber \n" "circular aperture linear approximation." @@ -9489,11 +9489,11 @@ msgstr "" "Numărul de segmente utilizate pentru\n" "aproximarea lineara a aperturilor Gerber circulare." -#: flatcamGUI/PreferencesUI.py:1379 +#: flatcamGUI/PreferencesUI.py:1380 msgid "Default Values" msgstr "Val. Implicite" -#: flatcamGUI/PreferencesUI.py:1381 +#: flatcamGUI/PreferencesUI.py:1382 msgid "" "Those values will be used as fallback values\n" "in case that they are not found in the Gerber file." @@ -9501,25 +9501,25 @@ msgstr "" "Aceste valori vor fi utilizate ca valori de baza\n" "în cazul în care acestea nu sunt găsite în fișierul Gerber." -#: flatcamGUI/PreferencesUI.py:1390 flatcamGUI/PreferencesUI.py:1396 -#: flatcamGUI/PreferencesUI.py:1765 flatcamGUI/PreferencesUI.py:1771 +#: flatcamGUI/PreferencesUI.py:1391 flatcamGUI/PreferencesUI.py:1397 +#: flatcamGUI/PreferencesUI.py:1766 flatcamGUI/PreferencesUI.py:1772 msgid "The units used in the Gerber file." 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:2691 flatcamTools/ToolCalculators.py:61 +#: flatcamGUI/PreferencesUI.py:1394 flatcamGUI/PreferencesUI.py:1769 +#: flatcamGUI/PreferencesUI.py:2125 flatcamGUI/PreferencesUI.py:2223 +#: flatcamGUI/PreferencesUI.py:2692 flatcamTools/ToolCalculators.py:61 #: flatcamTools/ToolPcbWizard.py:125 msgid "INCH" msgstr "Inch" -#: flatcamGUI/PreferencesUI.py:1403 flatcamGUI/PreferencesUI.py:1817 -#: flatcamGUI/PreferencesUI.py:2759 +#: flatcamGUI/PreferencesUI.py:1404 flatcamGUI/PreferencesUI.py:1818 +#: flatcamGUI/PreferencesUI.py:2760 msgid "Zeros" msgstr "Zero-uri" -#: flatcamGUI/PreferencesUI.py:1406 flatcamGUI/PreferencesUI.py:1416 -#: flatcamGUI/PreferencesUI.py:1820 flatcamGUI/PreferencesUI.py:1830 +#: flatcamGUI/PreferencesUI.py:1407 flatcamGUI/PreferencesUI.py:1417 +#: flatcamGUI/PreferencesUI.py:1821 flatcamGUI/PreferencesUI.py:1831 msgid "" "This sets the type of Gerber zeros.\n" "If LZ then Leading Zeros are removed and\n" @@ -9535,41 +9535,41 @@ msgstr "" "cele de la final sunt păstrate.\n" "(Invers fată de fişierele Excellon)." -#: flatcamGUI/PreferencesUI.py:1413 flatcamGUI/PreferencesUI.py:1827 -#: flatcamGUI/PreferencesUI.py:2198 flatcamGUI/PreferencesUI.py:2769 +#: flatcamGUI/PreferencesUI.py:1414 flatcamGUI/PreferencesUI.py:1828 +#: flatcamGUI/PreferencesUI.py:2199 flatcamGUI/PreferencesUI.py:2770 #: flatcamTools/ToolPcbWizard.py:111 msgid "LZ" msgstr "LZ" -#: flatcamGUI/PreferencesUI.py:1414 flatcamGUI/PreferencesUI.py:1828 -#: flatcamGUI/PreferencesUI.py:2199 flatcamGUI/PreferencesUI.py:2770 +#: flatcamGUI/PreferencesUI.py:1415 flatcamGUI/PreferencesUI.py:1829 +#: flatcamGUI/PreferencesUI.py:2200 flatcamGUI/PreferencesUI.py:2771 #: flatcamTools/ToolPcbWizard.py:112 msgid "TZ" msgstr "TZ" -#: flatcamGUI/PreferencesUI.py:1435 +#: flatcamGUI/PreferencesUI.py:1436 msgid "Gerber Options" msgstr "Opțiuni Gerber" -#: flatcamGUI/PreferencesUI.py:1509 flatcamGUI/PreferencesUI.py:3601 -#: flatcamGUI/PreferencesUI.py:4075 flatcamTools/ToolNonCopperClear.py:170 +#: flatcamGUI/PreferencesUI.py:1510 flatcamGUI/PreferencesUI.py:3602 +#: flatcamGUI/PreferencesUI.py:4076 flatcamTools/ToolNonCopperClear.py:170 msgid "Conv." msgstr "Conv." -#: flatcamGUI/PreferencesUI.py:1513 +#: flatcamGUI/PreferencesUI.py:1514 msgid "Combine Passes" msgstr "Combina" -#: flatcamGUI/PreferencesUI.py:1591 +#: flatcamGUI/PreferencesUI.py:1592 msgid "Gerber Adv. Options" msgstr "Opțiuni Av. Gerber" -#: flatcamGUI/PreferencesUI.py:1595 flatcamGUI/PreferencesUI.py:2544 -#: flatcamGUI/PreferencesUI.py:3399 +#: flatcamGUI/PreferencesUI.py:1596 flatcamGUI/PreferencesUI.py:2545 +#: flatcamGUI/PreferencesUI.py:3400 msgid "Advanced Options" msgstr "Opțiuni avansate" -#: flatcamGUI/PreferencesUI.py:1597 +#: flatcamGUI/PreferencesUI.py:1598 msgid "" "A list of Gerber advanced parameters.\n" "Those parameters are available only for\n" @@ -9580,11 +9580,11 @@ msgstr "" "când este selectat Nivelul Avansat pentru\n" "aplicaţie in Preferințe - > General." -#: flatcamGUI/PreferencesUI.py:1616 +#: flatcamGUI/PreferencesUI.py:1617 msgid "Table Show/Hide" msgstr "Arata/Ascunde Tabela" -#: flatcamGUI/PreferencesUI.py:1618 +#: flatcamGUI/PreferencesUI.py:1619 msgid "" "Toggle the display of the Gerber Apertures Table.\n" "Also, on hide, it will delete all mark shapes\n" @@ -9594,15 +9594,15 @@ msgstr "" "când se ascunde aceasta, se vor șterge și toate\n" "posibil afisatele marcaje ale aperturilor." -#: flatcamGUI/PreferencesUI.py:1693 +#: flatcamGUI/PreferencesUI.py:1694 msgid "Exterior" msgstr "Exterior" -#: flatcamGUI/PreferencesUI.py:1694 +#: flatcamGUI/PreferencesUI.py:1695 msgid "Interior" msgstr "Interior" -#: flatcamGUI/PreferencesUI.py:1702 +#: flatcamGUI/PreferencesUI.py:1703 msgid "" "Buffering type:\n" "- None --> best performance, fast file loading but no so good display\n" @@ -9616,19 +9616,19 @@ msgstr "" "valoarea de bază.\n" "<>: Nu schimba această valoare decat dacă stii ce faci !!!" -#: flatcamGUI/PreferencesUI.py:1707 flatcamGUI/PreferencesUI.py:4821 -#: flatcamGUI/PreferencesUI.py:6377 flatcamTools/ToolFiducials.py:201 +#: flatcamGUI/PreferencesUI.py:1708 flatcamGUI/PreferencesUI.py:4822 +#: flatcamGUI/PreferencesUI.py:6378 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 msgid "None" msgstr "Nimic" -#: flatcamGUI/PreferencesUI.py:1713 +#: flatcamGUI/PreferencesUI.py:1714 msgid "Simplify" msgstr "Simplifica" -#: flatcamGUI/PreferencesUI.py:1715 +#: flatcamGUI/PreferencesUI.py:1716 msgid "" "When checked all the Gerber polygons will be\n" "loaded with simplification having a set tolerance.\n" @@ -9638,23 +9638,23 @@ msgstr "" "încărcate simplificat cu o toleranță stabilită.\n" "<>: Nu schimbați acest lucru decât dacă știți ce faceți !!!" -#: flatcamGUI/PreferencesUI.py:1722 +#: flatcamGUI/PreferencesUI.py:1723 msgid "Tolerance" msgstr "Toleranta" -#: flatcamGUI/PreferencesUI.py:1723 +#: flatcamGUI/PreferencesUI.py:1724 msgid "Tolerance for polygon simplification." msgstr "Toleranță pentru simplificarea poligoanelor." -#: flatcamGUI/PreferencesUI.py:1748 +#: flatcamGUI/PreferencesUI.py:1749 msgid "Gerber Export" msgstr "Export Gerber" -#: flatcamGUI/PreferencesUI.py:1752 flatcamGUI/PreferencesUI.py:2675 +#: flatcamGUI/PreferencesUI.py:1753 flatcamGUI/PreferencesUI.py:2676 msgid "Export Options" msgstr "Opțiuni de Export" -#: flatcamGUI/PreferencesUI.py:1754 +#: flatcamGUI/PreferencesUI.py:1755 msgid "" "The parameters set here are used in the file exported\n" "when using the File -> Export -> Export Gerber menu entry." @@ -9663,11 +9663,11 @@ msgstr "" "se exporta un fişier Gerber folosind:\n" "File -> Exportă -> Exportă Gerber." -#: flatcamGUI/PreferencesUI.py:1777 flatcamGUI/PreferencesUI.py:2700 +#: flatcamGUI/PreferencesUI.py:1778 flatcamGUI/PreferencesUI.py:2701 msgid "Int/Decimals" msgstr "Înt/Zecimale" -#: flatcamGUI/PreferencesUI.py:1779 +#: flatcamGUI/PreferencesUI.py:1780 msgid "" "The number of digits in the whole part of the number\n" "and in the fractional part of the number." @@ -9675,7 +9675,7 @@ msgstr "" "Acest număr reprezinta numărul de digiti din partea\n" "intreagă si in partea fractională a numărului." -#: flatcamGUI/PreferencesUI.py:1792 +#: flatcamGUI/PreferencesUI.py:1793 msgid "" "This numbers signify the number of digits in\n" "the whole part of Gerber coordinates." @@ -9683,7 +9683,7 @@ msgstr "" "Acest număr reprezinta numărul de digiti din partea\n" "intreagă a coordonatelor Gerber." -#: flatcamGUI/PreferencesUI.py:1808 +#: flatcamGUI/PreferencesUI.py:1809 msgid "" "This numbers signify the number of digits in\n" "the decimal part of Gerber coordinates." @@ -9691,16 +9691,16 @@ msgstr "" "Acest număr reprezinta numărul de digiti din partea\n" "zecimală a coordonatelor Gerber." -#: flatcamGUI/PreferencesUI.py:1853 +#: flatcamGUI/PreferencesUI.py:1854 msgid "A list of Gerber Editor parameters." msgstr "O listă de parametri ai Editorului Gerber." -#: flatcamGUI/PreferencesUI.py:1861 flatcamGUI/PreferencesUI.py:2834 -#: flatcamGUI/PreferencesUI.py:3579 flatcamGUI/PreferencesUI.py:6040 +#: flatcamGUI/PreferencesUI.py:1862 flatcamGUI/PreferencesUI.py:2835 +#: flatcamGUI/PreferencesUI.py:3580 flatcamGUI/PreferencesUI.py:6041 msgid "Selection limit" msgstr "Limita selecţie" -#: flatcamGUI/PreferencesUI.py:1863 +#: flatcamGUI/PreferencesUI.py:1864 msgid "" "Set the number of selected Gerber geometry\n" "items above which the utility geometry\n" @@ -9713,23 +9713,23 @@ msgstr "" "Creste performanta cand se mută un număr mai mare\n" "de elemente geometrice." -#: flatcamGUI/PreferencesUI.py:1876 +#: flatcamGUI/PreferencesUI.py:1877 msgid "New Aperture code" msgstr "Cod pt aperture noua" -#: flatcamGUI/PreferencesUI.py:1889 +#: flatcamGUI/PreferencesUI.py:1890 msgid "New Aperture size" msgstr "Dim. pt aperture noua" -#: flatcamGUI/PreferencesUI.py:1891 +#: flatcamGUI/PreferencesUI.py:1892 msgid "Size for the new aperture" msgstr "Dim. pentru noua apertură" -#: flatcamGUI/PreferencesUI.py:1902 +#: flatcamGUI/PreferencesUI.py:1903 msgid "New Aperture type" msgstr "Tip pt noua apaertura" -#: flatcamGUI/PreferencesUI.py:1904 +#: flatcamGUI/PreferencesUI.py:1905 msgid "" "Type for the new aperture.\n" "Can be 'C', 'R' or 'O'." @@ -9737,35 +9737,35 @@ msgstr "" "Tipul noii aperture.\n" "Poate fi „C”, „R” sau „O”." -#: flatcamGUI/PreferencesUI.py:1926 +#: flatcamGUI/PreferencesUI.py:1927 msgid "Aperture Dimensions" msgstr "Dim. aper" -#: flatcamGUI/PreferencesUI.py:1928 flatcamGUI/PreferencesUI.py:3146 -#: flatcamGUI/PreferencesUI.py:3984 +#: flatcamGUI/PreferencesUI.py:1929 flatcamGUI/PreferencesUI.py:3147 +#: flatcamGUI/PreferencesUI.py:3985 msgid "Diameters of the cutting tools, separated by ','" msgstr "Diametrele pentru unelte tăietoare, separate cu virgula" -#: flatcamGUI/PreferencesUI.py:1934 +#: flatcamGUI/PreferencesUI.py:1935 msgid "Linear Pad Array" msgstr "Arie Lineară de Sloturi" -#: flatcamGUI/PreferencesUI.py:1938 flatcamGUI/PreferencesUI.py:2878 -#: flatcamGUI/PreferencesUI.py:3026 +#: flatcamGUI/PreferencesUI.py:1939 flatcamGUI/PreferencesUI.py:2879 +#: flatcamGUI/PreferencesUI.py:3027 msgid "Linear Direction" msgstr "Direcție liniară" -#: flatcamGUI/PreferencesUI.py:1978 +#: flatcamGUI/PreferencesUI.py:1979 msgid "Circular Pad Array" msgstr "Arie de Sloturi circ" -#: flatcamGUI/PreferencesUI.py:1982 flatcamGUI/PreferencesUI.py:2924 -#: flatcamGUI/PreferencesUI.py:3074 +#: flatcamGUI/PreferencesUI.py:1983 flatcamGUI/PreferencesUI.py:2925 +#: flatcamGUI/PreferencesUI.py:3075 msgid "Circular Direction" msgstr "Direcția circulară" -#: flatcamGUI/PreferencesUI.py:1984 flatcamGUI/PreferencesUI.py:2926 -#: flatcamGUI/PreferencesUI.py:3076 +#: flatcamGUI/PreferencesUI.py:1985 flatcamGUI/PreferencesUI.py:2927 +#: flatcamGUI/PreferencesUI.py:3077 msgid "" "Direction for circular array.\n" "Can be CW = clockwise or CCW = counter clockwise." @@ -9774,48 +9774,48 @@ msgstr "" "Poate fi CW = in sensul acelor de ceasornic sau CCW = invers acelor de " "ceasornic." -#: flatcamGUI/PreferencesUI.py:1995 flatcamGUI/PreferencesUI.py:2937 -#: flatcamGUI/PreferencesUI.py:3087 +#: flatcamGUI/PreferencesUI.py:1996 flatcamGUI/PreferencesUI.py:2938 +#: flatcamGUI/PreferencesUI.py:3088 msgid "Circular Angle" msgstr "Unghi circular" -#: flatcamGUI/PreferencesUI.py:2014 +#: flatcamGUI/PreferencesUI.py:2015 msgid "Distance at which to buffer the Gerber element." msgstr "Distanța la care se bufferează elementul Gerber." -#: flatcamGUI/PreferencesUI.py:2023 +#: flatcamGUI/PreferencesUI.py:2024 msgid "Scale Tool" msgstr "Unalta de Scalare" -#: flatcamGUI/PreferencesUI.py:2029 +#: flatcamGUI/PreferencesUI.py:2030 msgid "Factor to scale the Gerber element." msgstr "Factor pentru scalarea elementului Gerber." -#: flatcamGUI/PreferencesUI.py:2042 +#: flatcamGUI/PreferencesUI.py:2043 msgid "Threshold low" msgstr "Prag minim" -#: flatcamGUI/PreferencesUI.py:2044 +#: flatcamGUI/PreferencesUI.py:2045 msgid "Threshold value under which the apertures are not marked." msgstr "Valoarea pragului sub care aperturile nu sunt marcate." -#: flatcamGUI/PreferencesUI.py:2054 +#: flatcamGUI/PreferencesUI.py:2055 msgid "Threshold high" msgstr "Prag mare" -#: flatcamGUI/PreferencesUI.py:2056 +#: flatcamGUI/PreferencesUI.py:2057 msgid "Threshold value over which the apertures are not marked." msgstr "Valoarea pragului peste care nu sunt marcate aperturile." -#: flatcamGUI/PreferencesUI.py:2074 +#: flatcamGUI/PreferencesUI.py:2075 msgid "Excellon General" msgstr "Excellon General" -#: flatcamGUI/PreferencesUI.py:2097 +#: flatcamGUI/PreferencesUI.py:2098 msgid "Excellon Format" msgstr "Format Excellon" -#: flatcamGUI/PreferencesUI.py:2099 +#: flatcamGUI/PreferencesUI.py:2100 msgid "" "The NC drill files, usually named Excellon files\n" "are files that can be found in different formats.\n" @@ -9861,14 +9861,14 @@ msgstr "" "Sprint Layout 2:4 INCH LZ\n" "KiCAD 3:5 INCH TZ" -#: flatcamGUI/PreferencesUI.py:2127 +#: flatcamGUI/PreferencesUI.py:2128 msgid "Default values for INCH are 2:4" msgstr "" "Valorile default pentru Inch sunt 2:4\n" "adica 2 parti intregi și 4 zecimale" -#: flatcamGUI/PreferencesUI.py:2134 flatcamGUI/PreferencesUI.py:2165 -#: flatcamGUI/PreferencesUI.py:2714 +#: flatcamGUI/PreferencesUI.py:2135 flatcamGUI/PreferencesUI.py:2166 +#: flatcamGUI/PreferencesUI.py:2715 msgid "" "This numbers signify the number of digits in\n" "the whole part of Excellon coordinates." @@ -9876,8 +9876,8 @@ msgstr "" "Acest număr reprezinta numărul de digiti din partea\n" "intreaga a coordonatelor Excellon." -#: flatcamGUI/PreferencesUI.py:2147 flatcamGUI/PreferencesUI.py:2178 -#: flatcamGUI/PreferencesUI.py:2727 +#: flatcamGUI/PreferencesUI.py:2148 flatcamGUI/PreferencesUI.py:2179 +#: flatcamGUI/PreferencesUI.py:2728 msgid "" "This numbers signify the number of digits in\n" "the decimal part of Excellon coordinates." @@ -9885,21 +9885,21 @@ msgstr "" "Acest număr reprezinta numărul de digiti din partea\n" "zecimala a coordonatelor Excellon." -#: flatcamGUI/PreferencesUI.py:2155 +#: flatcamGUI/PreferencesUI.py:2156 msgid "METRIC" msgstr "Metric" -#: flatcamGUI/PreferencesUI.py:2158 +#: flatcamGUI/PreferencesUI.py:2159 msgid "Default values for METRIC are 3:3" msgstr "" "Valorile default pentru Metric sunt 3:3\n" "adica 3 parti intregi și 3 zecimale" -#: flatcamGUI/PreferencesUI.py:2187 +#: flatcamGUI/PreferencesUI.py:2188 msgid "Default Zeros" msgstr "Suprimare Zero" -#: flatcamGUI/PreferencesUI.py:2190 flatcamGUI/PreferencesUI.py:2762 +#: flatcamGUI/PreferencesUI.py:2191 flatcamGUI/PreferencesUI.py:2763 msgid "" "This sets the type of Excellon zeros.\n" "If LZ then Leading Zeros are kept and\n" @@ -9915,7 +9915,7 @@ msgstr "" "cele de la final sunt pastrate.\n" "(Invers fata de fişierele Gerber)." -#: flatcamGUI/PreferencesUI.py:2201 +#: flatcamGUI/PreferencesUI.py:2202 msgid "" "This sets the default type of Excellon zeros.\n" "If it is not detected in the parsed file the value here\n" @@ -9934,11 +9934,11 @@ msgstr "" "cele de la final sunt pastrate.\n" "(Invers fata de fişierele Gerber)." -#: flatcamGUI/PreferencesUI.py:2211 +#: flatcamGUI/PreferencesUI.py:2212 msgid "Default Units" msgstr "Unitati Excellon" -#: flatcamGUI/PreferencesUI.py:2214 +#: flatcamGUI/PreferencesUI.py:2215 msgid "" "This sets the default units of Excellon files.\n" "If it is not detected in the parsed file the value here\n" @@ -9952,7 +9952,7 @@ msgstr "" "(unde se gasesc unitatile) și atunci se va folosi\n" "aceasta valoare." -#: flatcamGUI/PreferencesUI.py:2225 +#: flatcamGUI/PreferencesUI.py:2226 msgid "" "This sets the units of Excellon files.\n" "Some Excellon files don't have an header\n" @@ -9965,19 +9965,19 @@ msgstr "" "(unde se gasesc unitatile) și atunci se va folosi\n" "aceasta valoare." -#: flatcamGUI/PreferencesUI.py:2231 +#: flatcamGUI/PreferencesUI.py:2232 msgid "Update Export settings" msgstr "Actualizeaza setarile de Export" -#: flatcamGUI/PreferencesUI.py:2239 +#: flatcamGUI/PreferencesUI.py:2240 msgid "Excellon Optimization" msgstr "Optimizare Excellon" -#: flatcamGUI/PreferencesUI.py:2242 +#: flatcamGUI/PreferencesUI.py:2243 msgid "Algorithm:" msgstr "Algoritm:" -#: flatcamGUI/PreferencesUI.py:2244 flatcamGUI/PreferencesUI.py:2261 +#: flatcamGUI/PreferencesUI.py:2245 flatcamGUI/PreferencesUI.py:2262 msgid "" "This sets the optimization type for the Excellon drill path.\n" "If <> is checked then Google OR-Tools algorithm with\n" @@ -10003,19 +10003,19 @@ msgstr "" "folosește\n" "Algoritmul Traveling Salesman pentru optimizarea căii." -#: flatcamGUI/PreferencesUI.py:2256 +#: flatcamGUI/PreferencesUI.py:2257 msgid "MetaHeuristic" msgstr "MetaHeuristic" -#: flatcamGUI/PreferencesUI.py:2258 +#: flatcamGUI/PreferencesUI.py:2259 msgid "TSA" msgstr "TSA" -#: flatcamGUI/PreferencesUI.py:2273 +#: flatcamGUI/PreferencesUI.py:2274 msgid "Optimization Time" msgstr "Durata optimizare" -#: flatcamGUI/PreferencesUI.py:2276 +#: flatcamGUI/PreferencesUI.py:2277 msgid "" "When OR-Tools Metaheuristic (MH) is enabled there is a\n" "maximum threshold for how much time is spent doing the\n" @@ -10026,11 +10026,11 @@ msgstr "" "reprezinta cat timp se sta pentru fiecare element in\n" "incercarea de a afla calea optima." -#: flatcamGUI/PreferencesUI.py:2319 +#: flatcamGUI/PreferencesUI.py:2320 msgid "Excellon Options" msgstr "Opțiuni Excellon" -#: flatcamGUI/PreferencesUI.py:2325 +#: flatcamGUI/PreferencesUI.py:2326 msgid "" "Parameters used to create a CNC Job object\n" "for this drill object." @@ -10038,11 +10038,11 @@ msgstr "" "Parametrii folositi pentru a crea un obiect FlatCAM tip CNCJob\n" "din acest obiect Excellon." -#: flatcamGUI/PreferencesUI.py:2444 flatcamGUI/PreferencesUI.py:3358 +#: flatcamGUI/PreferencesUI.py:2445 flatcamGUI/PreferencesUI.py:3359 msgid "Duration" msgstr "Durată" -#: flatcamGUI/PreferencesUI.py:2474 +#: flatcamGUI/PreferencesUI.py:2475 msgid "" "Choose what to use for GCode generation:\n" "'Drills', 'Slots' or 'Both'.\n" @@ -10056,19 +10056,19 @@ msgstr "" "Când se alege Sloturi sau Ambele, sloturile vor fi convertite in serii de " "găuri." -#: flatcamGUI/PreferencesUI.py:2492 +#: flatcamGUI/PreferencesUI.py:2493 msgid "Create Geometry for milling holes." msgstr "Crează un obiect tip Geometrie pentru frezarea găurilor." -#: flatcamGUI/PreferencesUI.py:2524 +#: flatcamGUI/PreferencesUI.py:2525 msgid "Defaults" msgstr "Val. Implicite" -#: flatcamGUI/PreferencesUI.py:2537 +#: flatcamGUI/PreferencesUI.py:2538 msgid "Excellon Adv. Options" msgstr "Opțiuni Avans. Excellon" -#: flatcamGUI/PreferencesUI.py:2546 +#: flatcamGUI/PreferencesUI.py:2547 msgid "" "A list of Excellon advanced parameters.\n" "Those parameters are available only for\n" @@ -10079,19 +10079,19 @@ msgstr "" "când este selectat Nivelul Avansat pentru\n" "aplicaţie in Preferințe - > General." -#: flatcamGUI/PreferencesUI.py:2567 +#: flatcamGUI/PreferencesUI.py:2568 msgid "Toolchange X,Y" msgstr "X,Y schimb. unealtă" -#: flatcamGUI/PreferencesUI.py:2569 flatcamGUI/PreferencesUI.py:3413 +#: flatcamGUI/PreferencesUI.py:2570 flatcamGUI/PreferencesUI.py:3414 msgid "Toolchange X,Y position." msgstr "Poziţia X,Y in format (x,y) unde se face schimbarea uneltei." -#: flatcamGUI/PreferencesUI.py:2626 flatcamGUI/PreferencesUI.py:3500 +#: flatcamGUI/PreferencesUI.py:2627 flatcamGUI/PreferencesUI.py:3501 msgid "Spindle direction" msgstr "Directie rotatie Motor" -#: flatcamGUI/PreferencesUI.py:2628 flatcamGUI/PreferencesUI.py:3502 +#: flatcamGUI/PreferencesUI.py:2629 flatcamGUI/PreferencesUI.py:3503 msgid "" "This sets the direction that the spindle is rotating.\n" "It can be either:\n" @@ -10103,11 +10103,11 @@ msgstr "" "- CW = in sensul acelor de ceasornic\n" "- CCW = in sensul invers acelor de ceasornic" -#: flatcamGUI/PreferencesUI.py:2639 flatcamGUI/PreferencesUI.py:3514 +#: flatcamGUI/PreferencesUI.py:2640 flatcamGUI/PreferencesUI.py:3515 msgid "Fast Plunge" msgstr "Plonjare rapidă" -#: flatcamGUI/PreferencesUI.py:2641 flatcamGUI/PreferencesUI.py:3516 +#: flatcamGUI/PreferencesUI.py:2642 flatcamGUI/PreferencesUI.py:3517 msgid "" "By checking this, the vertical move from\n" "Z_Toolchange to Z_move is done with G0,\n" @@ -10124,11 +10124,11 @@ msgstr "" "schimba\n" "unealta. Daca aveti ceva plasat sub unealtă ceva se va strica." -#: flatcamGUI/PreferencesUI.py:2650 +#: flatcamGUI/PreferencesUI.py:2651 msgid "Fast Retract" msgstr "Retragere rapida" -#: flatcamGUI/PreferencesUI.py:2652 +#: flatcamGUI/PreferencesUI.py:2653 msgid "" "Exit hole strategy.\n" " - When uncheked, while exiting the drilled hole the drill bit\n" @@ -10147,11 +10147,11 @@ msgstr "" "adâncimea\n" "de deplasare cu viteza maxima G0, intr-o singură mișcare." -#: flatcamGUI/PreferencesUI.py:2671 +#: flatcamGUI/PreferencesUI.py:2672 msgid "Excellon Export" msgstr "Export Excellon" -#: flatcamGUI/PreferencesUI.py:2677 +#: flatcamGUI/PreferencesUI.py:2678 msgid "" "The parameters set here are used in the file exported\n" "when using the File -> Export -> Export Excellon menu entry." @@ -10160,11 +10160,11 @@ msgstr "" "se exporta un fişier Excellon folosind:\n" "File -> Exporta -> Exporta Excellon." -#: flatcamGUI/PreferencesUI.py:2688 flatcamGUI/PreferencesUI.py:2694 +#: flatcamGUI/PreferencesUI.py:2689 flatcamGUI/PreferencesUI.py:2695 msgid "The units used in the Excellon file." msgstr "Unitatile de masura folosite in fişierul Excellon." -#: flatcamGUI/PreferencesUI.py:2702 +#: flatcamGUI/PreferencesUI.py:2703 msgid "" "The NC drill files, usually named Excellon files\n" "are files that can be found in different formats.\n" @@ -10176,11 +10176,11 @@ msgstr "" "Aici se setează formatul Excellon când nu se utilizează\n" "coordonate cu zecimale." -#: flatcamGUI/PreferencesUI.py:2736 +#: flatcamGUI/PreferencesUI.py:2737 msgid "Format" msgstr "Format" -#: flatcamGUI/PreferencesUI.py:2738 flatcamGUI/PreferencesUI.py:2748 +#: flatcamGUI/PreferencesUI.py:2739 flatcamGUI/PreferencesUI.py:2749 msgid "" "Select the kind of coordinates format used.\n" "Coordinates can be saved with decimal point or without.\n" @@ -10199,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:2745 +#: flatcamGUI/PreferencesUI.py:2746 msgid "Decimal" msgstr "Zecimale" -#: flatcamGUI/PreferencesUI.py:2746 +#: flatcamGUI/PreferencesUI.py:2747 msgid "No-Decimal" msgstr "Fără zecimale" -#: flatcamGUI/PreferencesUI.py:2772 +#: flatcamGUI/PreferencesUI.py:2773 msgid "" "This sets the default type of Excellon zeros.\n" "If LZ then Leading Zeros are kept and\n" @@ -10219,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:2782 +#: flatcamGUI/PreferencesUI.py:2783 msgid "Slot type" msgstr "Tip slot" -#: flatcamGUI/PreferencesUI.py:2785 flatcamGUI/PreferencesUI.py:2795 +#: flatcamGUI/PreferencesUI.py:2786 flatcamGUI/PreferencesUI.py:2796 msgid "" "This sets how the slots will be exported.\n" "If ROUTED then the slots will be routed\n" @@ -10237,19 +10237,19 @@ msgstr "" "Dacă sunt Găurite (G85) sloturile vor fi exportate\n" "folosind comanda slotului găurit (G85)." -#: flatcamGUI/PreferencesUI.py:2792 +#: flatcamGUI/PreferencesUI.py:2793 msgid "Routed" msgstr "Decupate" -#: flatcamGUI/PreferencesUI.py:2793 +#: flatcamGUI/PreferencesUI.py:2794 msgid "Drilled(G85)" msgstr "Găurite(G85)" -#: flatcamGUI/PreferencesUI.py:2826 +#: flatcamGUI/PreferencesUI.py:2827 msgid "A list of Excellon Editor parameters." msgstr "O listă de parametri ai Editorului Excellon." -#: flatcamGUI/PreferencesUI.py:2836 +#: flatcamGUI/PreferencesUI.py:2837 msgid "" "Set the number of selected Excellon geometry\n" "items above which the utility geometry\n" @@ -10263,19 +10263,19 @@ msgstr "" "Creste performanta cand se muta un număr mai mare de \n" "elemente geometrice." -#: flatcamGUI/PreferencesUI.py:2849 flatcamGUI/PreferencesUI.py:4055 +#: flatcamGUI/PreferencesUI.py:2850 flatcamGUI/PreferencesUI.py:4056 msgid "New Tool Dia" msgstr "Dia. nou unealtă" -#: flatcamGUI/PreferencesUI.py:2874 +#: flatcamGUI/PreferencesUI.py:2875 msgid "Linear Drill Array" msgstr "Arie lineară de găuri" -#: flatcamGUI/PreferencesUI.py:2920 +#: flatcamGUI/PreferencesUI.py:2921 msgid "Circular Drill Array" msgstr "Arie circ. de găuri" -#: flatcamGUI/PreferencesUI.py:2990 +#: flatcamGUI/PreferencesUI.py:2991 msgid "" "Angle at which the slot is placed.\n" "The precision is of max 2 decimals.\n" @@ -10287,19 +10287,19 @@ msgstr "" "Valoarea minimă este: -359,99 grade.\n" "Valoarea maximă este: 360,00 grade." -#: flatcamGUI/PreferencesUI.py:3009 +#: flatcamGUI/PreferencesUI.py:3010 msgid "Linear Slot Array" msgstr "Arie lineară de Sloturi" -#: flatcamGUI/PreferencesUI.py:3070 +#: flatcamGUI/PreferencesUI.py:3071 msgid "Circular Slot Array" msgstr "Arie circ. de Sloturi" -#: flatcamGUI/PreferencesUI.py:3108 +#: flatcamGUI/PreferencesUI.py:3109 msgid "Geometry General" msgstr "Geometrie General" -#: flatcamGUI/PreferencesUI.py:3130 +#: flatcamGUI/PreferencesUI.py:3131 msgid "" "The number of circle steps for Geometry \n" "circle and arc shapes linear approximation." @@ -10307,11 +10307,11 @@ msgstr "" "Numărul de segmente utilizate pentru\n" "aproximarea lineara a Geometriilor circulare." -#: flatcamGUI/PreferencesUI.py:3161 +#: flatcamGUI/PreferencesUI.py:3162 msgid "Geometry Options" msgstr "Opțiuni Geometrie" -#: flatcamGUI/PreferencesUI.py:3169 +#: flatcamGUI/PreferencesUI.py:3170 msgid "" "Create a CNC Job object\n" "tracing the contours of this\n" @@ -10320,11 +10320,11 @@ msgstr "" "Crează un obiect CNCJob care urmăreste conturul\n" "acestui obiect tip Geometrie." -#: flatcamGUI/PreferencesUI.py:3211 +#: flatcamGUI/PreferencesUI.py:3212 msgid "Depth/Pass" msgstr "Adânc./Trecere" -#: flatcamGUI/PreferencesUI.py:3213 +#: flatcamGUI/PreferencesUI.py:3214 msgid "" "The depth to cut on each pass,\n" "when multidepth is enabled.\n" @@ -10337,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:3393 +#: flatcamGUI/PreferencesUI.py:3394 msgid "Geometry Adv. Options" msgstr "Opțiuni Avans. Geometrie" -#: flatcamGUI/PreferencesUI.py:3401 +#: flatcamGUI/PreferencesUI.py:3402 msgid "" "A list of Geometry advanced parameters.\n" "Those parameters are available only for\n" @@ -10352,13 +10352,13 @@ msgstr "" "când este selectat Nivelul Avansat pentru\n" "aplicaţie in Preferințe - > General." -#: flatcamGUI/PreferencesUI.py:3411 flatcamGUI/PreferencesUI.py:5470 -#: flatcamGUI/PreferencesUI.py:6517 flatcamTools/ToolCalibration.py:125 +#: flatcamGUI/PreferencesUI.py:3412 flatcamGUI/PreferencesUI.py:5471 +#: flatcamGUI/PreferencesUI.py:6518 flatcamTools/ToolCalibration.py:125 #: flatcamTools/ToolSolderPaste.py:239 msgid "Toolchange X-Y" msgstr "X,Y schimb. unealtă" -#: flatcamGUI/PreferencesUI.py:3422 +#: flatcamGUI/PreferencesUI.py:3423 msgid "" "Height of the tool just after starting the work.\n" "Delete the value if you don't need this feature." @@ -10366,11 +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:3526 +#: flatcamGUI/PreferencesUI.py:3527 msgid "Segment X size" msgstr "Dim. seg X" -#: flatcamGUI/PreferencesUI.py:3528 +#: flatcamGUI/PreferencesUI.py:3529 msgid "" "The size of the trace segment on the X axis.\n" "Useful for auto-leveling.\n" @@ -10381,11 +10381,11 @@ msgstr "" "O valoare de 0 inseamnaca nu se face segmentare\n" "pe axa X." -#: flatcamGUI/PreferencesUI.py:3542 +#: flatcamGUI/PreferencesUI.py:3543 msgid "Segment Y size" msgstr "Dim. seg Y" -#: flatcamGUI/PreferencesUI.py:3544 +#: flatcamGUI/PreferencesUI.py:3545 msgid "" "The size of the trace segment on the Y axis.\n" "Useful for auto-leveling.\n" @@ -10396,15 +10396,15 @@ msgstr "" "O valoare de 0 inseamnaca nu se face segmentare\n" "pe axa Y." -#: flatcamGUI/PreferencesUI.py:3565 +#: flatcamGUI/PreferencesUI.py:3566 msgid "Geometry Editor" msgstr "Editor Geometrii" -#: flatcamGUI/PreferencesUI.py:3571 +#: flatcamGUI/PreferencesUI.py:3572 msgid "A list of Geometry Editor parameters." msgstr "O lista de parametri ai Editorului de Geometrii." -#: flatcamGUI/PreferencesUI.py:3581 flatcamGUI/PreferencesUI.py:6042 +#: flatcamGUI/PreferencesUI.py:3582 flatcamGUI/PreferencesUI.py:6043 msgid "" "Set the number of selected geometry\n" "items above which the utility geometry\n" @@ -10418,11 +10418,11 @@ msgstr "" "Creste performanta cand se muta un număr mai mare de \n" "elemente geometrice." -#: flatcamGUI/PreferencesUI.py:3613 +#: flatcamGUI/PreferencesUI.py:3614 msgid "CNC Job General" msgstr "CNCJob General" -#: flatcamGUI/PreferencesUI.py:3666 +#: flatcamGUI/PreferencesUI.py:3667 msgid "" "The number of circle steps for GCode \n" "circle and arc shapes linear approximation." @@ -10430,21 +10430,21 @@ msgstr "" "Numărul de segmente utilizate pentru\n" "aproximarea lineara a reprezentarilor GCodului circular." -#: flatcamGUI/PreferencesUI.py:3675 +#: flatcamGUI/PreferencesUI.py:3676 msgid "Travel dia" msgstr "Dia Deplasare" -#: flatcamGUI/PreferencesUI.py:3677 +#: flatcamGUI/PreferencesUI.py:3678 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:3693 +#: flatcamGUI/PreferencesUI.py:3694 msgid "Coordinates decimals" msgstr "Coord. zecimale" -#: flatcamGUI/PreferencesUI.py:3695 +#: flatcamGUI/PreferencesUI.py:3696 msgid "" "The number of decimals to be used for \n" "the X, Y, Z coordinates in CNC code (GCODE, etc.)" @@ -10452,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:3706 +#: flatcamGUI/PreferencesUI.py:3707 msgid "Feedrate decimals" msgstr "Feedrate zecimale" -#: flatcamGUI/PreferencesUI.py:3708 +#: flatcamGUI/PreferencesUI.py:3709 msgid "" "The number of decimals to be used for \n" "the Feedrate parameter in CNC code (GCODE, etc.)" @@ -10464,11 +10464,11 @@ msgstr "" "Numărul de zecimale care să fie folosit in \n" "parametrul >Feedrate< in codul CNC (GCode etc)." -#: flatcamGUI/PreferencesUI.py:3719 +#: flatcamGUI/PreferencesUI.py:3720 msgid "Coordinates type" msgstr "Tip coordinate" -#: flatcamGUI/PreferencesUI.py:3721 +#: flatcamGUI/PreferencesUI.py:3722 msgid "" "The type of coordinates to be used in Gcode.\n" "Can be:\n" @@ -10480,19 +10480,19 @@ msgstr "" "- Absolut G90 -> referinta este originea x=0, y=0\n" "- Incrementator G91 -> referinta este pozitia anterioară" -#: flatcamGUI/PreferencesUI.py:3727 +#: flatcamGUI/PreferencesUI.py:3728 msgid "Absolute G90" msgstr "Absolut G90" -#: flatcamGUI/PreferencesUI.py:3728 +#: flatcamGUI/PreferencesUI.py:3729 msgid "Incremental G91" msgstr "Incrementator G91" -#: flatcamGUI/PreferencesUI.py:3738 +#: flatcamGUI/PreferencesUI.py:3739 msgid "Force Windows style line-ending" msgstr "Forțați finalizarea liniei în stil Windows" -#: flatcamGUI/PreferencesUI.py:3740 +#: flatcamGUI/PreferencesUI.py:3741 msgid "" "When checked will force a Windows style line-ending\n" "(\\r\\n) on non-Windows OS's." @@ -10500,63 +10500,63 @@ 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:3754 +#: flatcamGUI/PreferencesUI.py:3755 msgid "CNC Job Options" msgstr "Opțiuni CNCJob" -#: flatcamGUI/PreferencesUI.py:3758 +#: flatcamGUI/PreferencesUI.py:3759 msgid "Export G-Code" msgstr "Exportă G-Code" -#: flatcamGUI/PreferencesUI.py:3774 +#: flatcamGUI/PreferencesUI.py:3775 msgid "Prepend to G-Code" msgstr "Adaugă la inceputul G-Code" -#: flatcamGUI/PreferencesUI.py:3790 +#: flatcamGUI/PreferencesUI.py:3791 msgid "Append to G-Code" msgstr "Adaugă la sfârşitul G-Code" -#: flatcamGUI/PreferencesUI.py:3816 +#: flatcamGUI/PreferencesUI.py:3817 msgid "CNC Job Adv. Options" msgstr "Opțiuni Avans. CNCJob" -#: flatcamGUI/PreferencesUI.py:3902 +#: flatcamGUI/PreferencesUI.py:3903 msgid "Z depth for the cut" msgstr "Z adâncimea de tăiere" -#: flatcamGUI/PreferencesUI.py:3903 +#: flatcamGUI/PreferencesUI.py:3904 msgid "Z height for travel" msgstr "Z Înălţimea deplasare" -#: flatcamGUI/PreferencesUI.py:3909 +#: flatcamGUI/PreferencesUI.py:3910 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:3928 +#: flatcamGUI/PreferencesUI.py:3929 msgid "Annotation Size" msgstr "Dim. anotate" -#: flatcamGUI/PreferencesUI.py:3930 +#: flatcamGUI/PreferencesUI.py:3931 msgid "The font size of the annotation text. In pixels." msgstr "Dimensiunea fontului pt. textul cu notatii. In pixeli." -#: flatcamGUI/PreferencesUI.py:3940 +#: flatcamGUI/PreferencesUI.py:3941 msgid "Annotation Color" msgstr "Culoarea anotatii" -#: flatcamGUI/PreferencesUI.py:3942 +#: flatcamGUI/PreferencesUI.py:3943 msgid "Set the font color for the annotation texts." msgstr "Setează culoarea pentru textul cu anotatii." -#: flatcamGUI/PreferencesUI.py:3968 +#: flatcamGUI/PreferencesUI.py:3969 msgid "NCC Tool Options" msgstr "Opțiuni Unealta NCC" -#: flatcamGUI/PreferencesUI.py:3982 flatcamGUI/PreferencesUI.py:5380 +#: flatcamGUI/PreferencesUI.py:3983 flatcamGUI/PreferencesUI.py:5381 msgid "Tools dia" msgstr "Dia unealtă" -#: flatcamGUI/PreferencesUI.py:3993 flatcamGUI/PreferencesUI.py:4001 +#: flatcamGUI/PreferencesUI.py:3994 flatcamGUI/PreferencesUI.py:4002 #: flatcamTools/ToolNonCopperClear.py:215 #: flatcamTools/ToolNonCopperClear.py:223 msgid "" @@ -10568,11 +10568,11 @@ msgstr "" "- 'Forma-V'\n" "- Circular" -#: flatcamGUI/PreferencesUI.py:3998 flatcamTools/ToolNonCopperClear.py:220 +#: flatcamGUI/PreferencesUI.py:3999 flatcamTools/ToolNonCopperClear.py:220 msgid "V-shape" msgstr "Forma-V" -#: flatcamGUI/PreferencesUI.py:4038 flatcamGUI/PreferencesUI.py:4047 +#: flatcamGUI/PreferencesUI.py:4039 flatcamGUI/PreferencesUI.py:4048 #: flatcamTools/ToolNonCopperClear.py:256 #: flatcamTools/ToolNonCopperClear.py:264 msgid "" @@ -10582,12 +10582,12 @@ msgstr "" "Adancimea de tăiere in material. Valoare negative.\n" "In unitătile FlatCAM." -#: flatcamGUI/PreferencesUI.py:4057 +#: flatcamGUI/PreferencesUI.py:4058 msgid "The new tool diameter (cut width) to add in the tool table." msgstr "" "Noul diametru al sculei (lățimea tăiată) pt adăugare în tabelul Unelte." -#: flatcamGUI/PreferencesUI.py:4069 flatcamGUI/PreferencesUI.py:4077 +#: flatcamGUI/PreferencesUI.py:4070 flatcamGUI/PreferencesUI.py:4078 #: flatcamTools/ToolNonCopperClear.py:164 #: flatcamTools/ToolNonCopperClear.py:172 msgid "" @@ -10600,13 +10600,13 @@ msgstr "" "uneltei\n" "- conventional -> pentru cazul când nu exista o compensare a 'backlash-ului'" -#: flatcamGUI/PreferencesUI.py:4086 flatcamGUI/PreferencesUI.py:4511 +#: flatcamGUI/PreferencesUI.py:4087 flatcamGUI/PreferencesUI.py:4512 #: flatcamTools/ToolNonCopperClear.py:181 flatcamTools/ToolPaint.py:153 msgid "Tool order" msgstr "Ordine unelte" -#: flatcamGUI/PreferencesUI.py:4087 flatcamGUI/PreferencesUI.py:4097 -#: flatcamGUI/PreferencesUI.py:4512 flatcamGUI/PreferencesUI.py:4522 +#: flatcamGUI/PreferencesUI.py:4088 flatcamGUI/PreferencesUI.py:4098 +#: flatcamGUI/PreferencesUI.py:4513 flatcamGUI/PreferencesUI.py:4523 #: flatcamTools/ToolNonCopperClear.py:182 #: flatcamTools/ToolNonCopperClear.py:192 flatcamTools/ToolPaint.py:154 #: flatcamTools/ToolPaint.py:164 @@ -10628,17 +10628,17 @@ msgstr "" "AVERTIZARE: folosirea prelucrării 'resturi' va seta automat ordonarea\n" "în sens invers și va dezactiva acest control." -#: flatcamGUI/PreferencesUI.py:4095 flatcamGUI/PreferencesUI.py:4520 +#: flatcamGUI/PreferencesUI.py:4096 flatcamGUI/PreferencesUI.py:4521 #: flatcamTools/ToolNonCopperClear.py:190 flatcamTools/ToolPaint.py:162 msgid "Forward" msgstr "Înainte" -#: flatcamGUI/PreferencesUI.py:4096 flatcamGUI/PreferencesUI.py:4521 +#: flatcamGUI/PreferencesUI.py:4097 flatcamGUI/PreferencesUI.py:4522 #: flatcamTools/ToolNonCopperClear.py:191 flatcamTools/ToolPaint.py:163 msgid "Reverse" msgstr "Înapoi" -#: flatcamGUI/PreferencesUI.py:4109 flatcamTools/ToolNonCopperClear.py:321 +#: flatcamGUI/PreferencesUI.py:4110 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" @@ -10657,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:4128 flatcamGUI/PreferencesUI.py:6108 -#: flatcamGUI/PreferencesUI.py:6350 flatcamGUI/PreferencesUI.py:6414 +#: flatcamGUI/PreferencesUI.py:4129 flatcamGUI/PreferencesUI.py:6109 +#: flatcamGUI/PreferencesUI.py:6351 flatcamGUI/PreferencesUI.py:6415 #: 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:4141 flatcamGUI/PreferencesUI.py:4569 +#: flatcamGUI/PreferencesUI.py:4142 flatcamGUI/PreferencesUI.py:4570 #: flatcamTools/ToolNonCopperClear.py:350 msgid "" "Algorithm for non-copper clearing:
Standard: Fixed step inwards." @@ -10675,22 +10675,22 @@ msgstr "" "
Punct-samanta: De la punctul samanta, spre expterior.
Linii " "drepte: Linii paralele." -#: flatcamGUI/PreferencesUI.py:4157 flatcamGUI/PreferencesUI.py:4583 +#: flatcamGUI/PreferencesUI.py:4158 flatcamGUI/PreferencesUI.py:4584 #: flatcamTools/ToolNonCopperClear.py:364 flatcamTools/ToolPaint.py:267 msgid "Connect" msgstr "Conectează" -#: flatcamGUI/PreferencesUI.py:4168 flatcamGUI/PreferencesUI.py:4593 +#: flatcamGUI/PreferencesUI.py:4169 flatcamGUI/PreferencesUI.py:4594 #: flatcamTools/ToolNonCopperClear.py:373 flatcamTools/ToolPaint.py:276 msgid "Contour" msgstr "Contur" -#: flatcamGUI/PreferencesUI.py:4179 flatcamTools/ToolNonCopperClear.py:382 +#: flatcamGUI/PreferencesUI.py:4180 flatcamTools/ToolNonCopperClear.py:382 #: flatcamTools/ToolPaint.py:285 msgid "Rest M." msgstr "Rest M." -#: flatcamGUI/PreferencesUI.py:4181 flatcamTools/ToolNonCopperClear.py:384 +#: flatcamGUI/PreferencesUI.py:4182 flatcamTools/ToolNonCopperClear.py:384 msgid "" "If checked, use 'rest machining'.\n" "Basically it will clear copper outside PCB features,\n" @@ -10708,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:4197 flatcamTools/ToolNonCopperClear.py:399 +#: flatcamGUI/PreferencesUI.py:4198 flatcamTools/ToolNonCopperClear.py:399 #: flatcamTools/ToolNonCopperClear.py:411 msgid "" "If used, it will add an offset to the copper features.\n" @@ -10721,11 +10721,11 @@ msgstr "" "de traseele de cupru.\n" "Valoarea poate fi cuprinsă între 0 și 10 unități FlatCAM." -#: flatcamGUI/PreferencesUI.py:4208 flatcamTools/ToolNonCopperClear.py:409 +#: flatcamGUI/PreferencesUI.py:4209 flatcamTools/ToolNonCopperClear.py:409 msgid "Offset value" msgstr "Valoare Ofset" -#: flatcamGUI/PreferencesUI.py:4210 +#: flatcamGUI/PreferencesUI.py:4211 msgid "" "If used, it will add an offset to the copper features.\n" "The copper clearing will finish to a distance\n" @@ -10737,26 +10737,26 @@ msgstr "" "de traseele de cupru.\n" "Valoarea poate fi cuprinsă între 0 și 9999.9 unități FlatCAM." -#: flatcamGUI/PreferencesUI.py:4225 flatcamGUI/PreferencesUI.py:6120 +#: flatcamGUI/PreferencesUI.py:4226 flatcamGUI/PreferencesUI.py:6121 #: flatcamTools/ToolCopperThieving.py:125 #: flatcamTools/ToolNonCopperClear.py:435 msgid "Itself" msgstr "Însuşi" -#: flatcamGUI/PreferencesUI.py:4226 flatcamGUI/PreferencesUI.py:4615 +#: flatcamGUI/PreferencesUI.py:4227 flatcamGUI/PreferencesUI.py:4616 msgid "Area" msgstr "Aria" -#: flatcamGUI/PreferencesUI.py:4227 flatcamGUI/PreferencesUI.py:4617 +#: flatcamGUI/PreferencesUI.py:4228 flatcamGUI/PreferencesUI.py:4618 msgid "Ref" msgstr "Ref" -#: flatcamGUI/PreferencesUI.py:4228 flatcamGUI/PreferencesUI.py:4794 +#: flatcamGUI/PreferencesUI.py:4229 flatcamGUI/PreferencesUI.py:4795 #: flatcamTools/ToolFilm.py:219 msgid "Reference" msgstr "Referinţă" -#: flatcamGUI/PreferencesUI.py:4230 +#: flatcamGUI/PreferencesUI.py:4231 msgid "" "- 'Itself' - the non copper clearing extent\n" "is based on the object that is copper cleared.\n" @@ -10776,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:4242 flatcamGUI/PreferencesUI.py:4623 +#: flatcamGUI/PreferencesUI.py:4243 flatcamGUI/PreferencesUI.py:4624 msgid "Normal" msgstr "Normal" -#: flatcamGUI/PreferencesUI.py:4243 flatcamGUI/PreferencesUI.py:4624 +#: flatcamGUI/PreferencesUI.py:4244 flatcamGUI/PreferencesUI.py:4625 msgid "Progressive" msgstr "Progresiv" -#: flatcamGUI/PreferencesUI.py:4244 +#: flatcamGUI/PreferencesUI.py:4245 msgid "NCC Plotting" msgstr "Afisare NCC" -#: flatcamGUI/PreferencesUI.py:4246 +#: flatcamGUI/PreferencesUI.py:4247 msgid "" "- 'Normal' - normal plotting, done at the end of the NCC job\n" "- 'Progressive' - after each shape is generated it will be plotted." @@ -10796,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:4260 +#: flatcamGUI/PreferencesUI.py:4261 msgid "Cutout Tool Options" msgstr "Opțiuni Unealta Decupare" -#: flatcamGUI/PreferencesUI.py:4275 flatcamTools/ToolCalculators.py:123 +#: flatcamGUI/PreferencesUI.py:4276 flatcamTools/ToolCalculators.py:123 #: flatcamTools/ToolCutOut.py:123 msgid "Tool Diameter" msgstr "Dia unealtă" -#: flatcamGUI/PreferencesUI.py:4277 flatcamTools/ToolCutOut.py:125 +#: flatcamGUI/PreferencesUI.py:4278 flatcamTools/ToolCutOut.py:125 msgid "" "Diameter of the tool used to cutout\n" "the PCB shape out of the surrounding material." @@ -10813,11 +10813,11 @@ msgstr "" "Diametrul uneltei folosita pt decuparea\n" "PCB-ului din materialului inconjurator." -#: flatcamGUI/PreferencesUI.py:4332 flatcamTools/ToolCutOut.py:104 +#: flatcamGUI/PreferencesUI.py:4333 flatcamTools/ToolCutOut.py:104 msgid "Object kind" msgstr "Tipul de obiect" -#: flatcamGUI/PreferencesUI.py:4334 flatcamTools/ToolCutOut.py:106 +#: flatcamGUI/PreferencesUI.py:4335 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 " @@ -10829,15 +10829,15 @@ msgstr "" "tip panel, care este făcut\n" "din mai multe contururi PCB." -#: flatcamGUI/PreferencesUI.py:4341 flatcamTools/ToolCutOut.py:112 +#: flatcamGUI/PreferencesUI.py:4342 flatcamTools/ToolCutOut.py:112 msgid "Single" msgstr "Unic" -#: flatcamGUI/PreferencesUI.py:4342 flatcamTools/ToolCutOut.py:113 +#: flatcamGUI/PreferencesUI.py:4343 flatcamTools/ToolCutOut.py:113 msgid "Panel" msgstr "Panel" -#: flatcamGUI/PreferencesUI.py:4349 flatcamTools/ToolCutOut.py:184 +#: flatcamGUI/PreferencesUI.py:4350 flatcamTools/ToolCutOut.py:184 msgid "" "Margin over bounds. A positive value here\n" "will make the cutout of the PCB further from\n" @@ -10847,11 +10847,11 @@ msgstr "" "va face decuparea distanțat cu aceasta valoare \n" "fata de PCB-ul efectiv" -#: flatcamGUI/PreferencesUI.py:4362 flatcamTools/ToolCutOut.py:195 +#: flatcamGUI/PreferencesUI.py:4363 flatcamTools/ToolCutOut.py:195 msgid "Gap size" msgstr "Dim. punte" -#: flatcamGUI/PreferencesUI.py:4364 flatcamTools/ToolCutOut.py:197 +#: flatcamGUI/PreferencesUI.py:4365 flatcamTools/ToolCutOut.py:197 msgid "" "The size of the bridge gaps in the cutout\n" "used to keep the board connected to\n" @@ -10862,11 +10862,11 @@ msgstr "" "in a mentine ataşat PCB-ul la materialul de unde \n" "este decupat." -#: flatcamGUI/PreferencesUI.py:4378 flatcamTools/ToolCutOut.py:239 +#: flatcamGUI/PreferencesUI.py:4379 flatcamTools/ToolCutOut.py:239 msgid "Gaps" msgstr "Punţi" -#: flatcamGUI/PreferencesUI.py:4380 +#: flatcamGUI/PreferencesUI.py:4381 msgid "" "Number of gaps used for the cutout.\n" "There can be maximum 8 bridges/gaps.\n" @@ -10890,11 +10890,11 @@ msgstr "" "- 2tb = 2* sus - 2* jos\n" "- 8 = 2* stânga - 2* dreapta - 2* sus - 2* jos" -#: flatcamGUI/PreferencesUI.py:4403 +#: flatcamGUI/PreferencesUI.py:4404 msgid "Convex Sh." msgstr "Formă Conv." -#: flatcamGUI/PreferencesUI.py:4405 flatcamTools/ToolCutOut.py:217 +#: flatcamGUI/PreferencesUI.py:4406 flatcamTools/ToolCutOut.py:217 msgid "" "Create a convex shape surrounding the entire PCB.\n" "Used only if the source object type is Gerber." @@ -10903,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:4419 +#: flatcamGUI/PreferencesUI.py:4420 msgid "2Sided Tool Options" msgstr "Opțiuni Unealta 2Fețe" -#: flatcamGUI/PreferencesUI.py:4425 +#: flatcamGUI/PreferencesUI.py:4426 msgid "" "A tool to help in creating a double sided\n" "PCB using alignment holes." @@ -10915,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:4439 flatcamTools/ToolDblSided.py:276 +#: flatcamGUI/PreferencesUI.py:4440 flatcamTools/ToolDblSided.py:276 msgid "Drill dia" msgstr "Dia gaură" -#: flatcamGUI/PreferencesUI.py:4441 flatcamTools/ToolDblSided.py:267 +#: flatcamGUI/PreferencesUI.py:4442 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:4450 flatcamTools/ToolDblSided.py:144 +#: flatcamGUI/PreferencesUI.py:4451 flatcamTools/ToolDblSided.py:144 msgid "Mirror Axis:" msgstr "Axe oglindire:" -#: flatcamGUI/PreferencesUI.py:4452 flatcamTools/ToolDblSided.py:145 +#: flatcamGUI/PreferencesUI.py:4453 flatcamTools/ToolDblSided.py:145 msgid "Mirror vertically (X) or horizontally (Y)." msgstr "Oglindește vertical (X) sau orizontal (Y)." -#: flatcamGUI/PreferencesUI.py:4461 flatcamTools/ToolDblSided.py:154 +#: flatcamGUI/PreferencesUI.py:4462 flatcamTools/ToolDblSided.py:154 msgid "Point" msgstr "Punct" -#: flatcamGUI/PreferencesUI.py:4462 flatcamTools/ToolDblSided.py:155 +#: flatcamGUI/PreferencesUI.py:4463 flatcamTools/ToolDblSided.py:155 msgid "Box" msgstr "Forma" -#: flatcamGUI/PreferencesUI.py:4463 flatcamTools/ToolDblSided.py:156 +#: flatcamGUI/PreferencesUI.py:4464 flatcamTools/ToolDblSided.py:156 msgid "Axis Ref" msgstr "Axa de Ref" -#: flatcamGUI/PreferencesUI.py:4465 flatcamTools/ToolDblSided.py:158 +#: flatcamGUI/PreferencesUI.py:4466 flatcamTools/ToolDblSided.py:158 msgid "" "The axis should pass through a point or cut\n" " a specified box (in a FlatCAM object) through \n" @@ -10953,15 +10953,15 @@ msgstr "" "Axa de referinţă ar trebui să treacă printr-un punct ori să strabata\n" " o forma (obiect FlatCAM) prin mijloc." -#: flatcamGUI/PreferencesUI.py:4481 +#: flatcamGUI/PreferencesUI.py:4482 msgid "Paint Tool Options" msgstr "Opțiuni Unealta Paint" -#: flatcamGUI/PreferencesUI.py:4487 +#: flatcamGUI/PreferencesUI.py:4488 msgid "Parameters:" msgstr "Parametri:" -#: flatcamGUI/PreferencesUI.py:4605 flatcamTools/ToolPaint.py:302 +#: flatcamGUI/PreferencesUI.py:4606 flatcamTools/ToolPaint.py:302 #: flatcamTools/ToolPaint.py:319 msgid "" "How to select Polygons to be painted.\n" @@ -10986,15 +10986,15 @@ msgstr "" "- „Obiect de referință” - va face o curățare fără cupru în zona specificată " "de un alt obiect." -#: flatcamGUI/PreferencesUI.py:4614 +#: flatcamGUI/PreferencesUI.py:4615 msgid "Sel" msgstr "Selectează" -#: flatcamGUI/PreferencesUI.py:4625 +#: flatcamGUI/PreferencesUI.py:4626 msgid "Paint Plotting" msgstr "Afisare Paint" -#: flatcamGUI/PreferencesUI.py:4627 +#: flatcamGUI/PreferencesUI.py:4628 msgid "" "- 'Normal' - normal plotting, done at the end of the Paint job\n" "- 'Progressive' - after each shape is generated it will be plotted." @@ -11002,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:4641 +#: flatcamGUI/PreferencesUI.py:4642 msgid "Film Tool Options" msgstr "Opțiuni Unealta Film" -#: flatcamGUI/PreferencesUI.py:4647 +#: flatcamGUI/PreferencesUI.py:4648 msgid "" "Create a PCB film from a Gerber or Geometry\n" "FlatCAM object.\n" @@ -11015,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:4658 +#: flatcamGUI/PreferencesUI.py:4659 msgid "Film Type" msgstr "Tip film" -#: flatcamGUI/PreferencesUI.py:4660 flatcamTools/ToolFilm.py:300 +#: flatcamGUI/PreferencesUI.py:4661 flatcamTools/ToolFilm.py:300 msgid "" "Generate a Positive black film or a Negative film.\n" "Positive means that it will print the features\n" @@ -11033,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:4671 +#: flatcamGUI/PreferencesUI.py:4672 msgid "Film Color" msgstr "Film Color" -#: flatcamGUI/PreferencesUI.py:4673 +#: flatcamGUI/PreferencesUI.py:4674 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:4696 flatcamTools/ToolFilm.py:316 +#: flatcamGUI/PreferencesUI.py:4697 flatcamTools/ToolFilm.py:316 msgid "Border" msgstr "Bordură" -#: flatcamGUI/PreferencesUI.py:4698 flatcamTools/ToolFilm.py:318 +#: flatcamGUI/PreferencesUI.py:4699 flatcamTools/ToolFilm.py:318 msgid "" "Specify a border around the object.\n" "Only for negative film.\n" @@ -11062,11 +11062,11 @@ msgstr "" "Va crea o bara solidă neagră in jurul printului efectiv permitand o\n" "delimitare exactă." -#: flatcamGUI/PreferencesUI.py:4715 flatcamTools/ToolFilm.py:283 +#: flatcamGUI/PreferencesUI.py:4716 flatcamTools/ToolFilm.py:283 msgid "Scale Stroke" msgstr "Scalează" -#: flatcamGUI/PreferencesUI.py:4717 flatcamTools/ToolFilm.py:285 +#: flatcamGUI/PreferencesUI.py:4718 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 " @@ -11076,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:4724 flatcamTools/ToolFilm.py:141 +#: flatcamGUI/PreferencesUI.py:4725 flatcamTools/ToolFilm.py:141 msgid "Film Adjustments" msgstr "Reglarea filmelor" -#: flatcamGUI/PreferencesUI.py:4726 flatcamTools/ToolFilm.py:143 +#: flatcamGUI/PreferencesUI.py:4727 flatcamTools/ToolFilm.py:143 msgid "" "Sometime the printers will distort the print shape, especially the Laser " "types.\n" @@ -11091,11 +11091,11 @@ msgstr "" "Această secțiune oferă instrumentele pentru a compensa distorsiunile de " "tipărire." -#: flatcamGUI/PreferencesUI.py:4733 flatcamTools/ToolFilm.py:150 +#: flatcamGUI/PreferencesUI.py:4734 flatcamTools/ToolFilm.py:150 msgid "Scale Film geometry" msgstr "Scalați geo film" -#: flatcamGUI/PreferencesUI.py:4735 flatcamTools/ToolFilm.py:152 +#: flatcamGUI/PreferencesUI.py:4736 flatcamTools/ToolFilm.py:152 msgid "" "A value greater than 1 will stretch the film\n" "while a value less than 1 will jolt it." @@ -11103,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:4745 flatcamGUI/PreferencesUI.py:5265 +#: flatcamGUI/PreferencesUI.py:4746 flatcamGUI/PreferencesUI.py:5266 #: flatcamTools/ToolFilm.py:162 flatcamTools/ToolTransform.py:147 msgid "X factor" msgstr "Factor X" -#: flatcamGUI/PreferencesUI.py:4754 flatcamGUI/PreferencesUI.py:5278 +#: flatcamGUI/PreferencesUI.py:4755 flatcamGUI/PreferencesUI.py:5279 #: flatcamTools/ToolFilm.py:171 flatcamTools/ToolTransform.py:168 msgid "Y factor" msgstr "Factor Y" -#: flatcamGUI/PreferencesUI.py:4764 flatcamTools/ToolFilm.py:189 +#: flatcamGUI/PreferencesUI.py:4765 flatcamTools/ToolFilm.py:189 msgid "Skew Film geometry" msgstr "Deformeaza Geo Film" -#: flatcamGUI/PreferencesUI.py:4766 flatcamTools/ToolFilm.py:191 +#: flatcamGUI/PreferencesUI.py:4767 flatcamTools/ToolFilm.py:191 msgid "" "Positive values will skew to the right\n" "while negative values will skew to the left." @@ -11125,17 +11125,17 @@ msgstr "" "Valorile pozitive vor înclina spre dreapta\n" "în timp ce valorile negative vor înclina spre stânga." -#: flatcamGUI/PreferencesUI.py:4776 flatcamGUI/PreferencesUI.py:5234 +#: flatcamGUI/PreferencesUI.py:4777 flatcamGUI/PreferencesUI.py:5235 #: flatcamTools/ToolFilm.py:201 flatcamTools/ToolTransform.py:97 msgid "X angle" msgstr "Unghi X" -#: flatcamGUI/PreferencesUI.py:4785 flatcamGUI/PreferencesUI.py:5248 +#: flatcamGUI/PreferencesUI.py:4786 flatcamGUI/PreferencesUI.py:5249 #: flatcamTools/ToolFilm.py:210 flatcamTools/ToolTransform.py:119 msgid "Y angle" msgstr "Unghi Y" -#: flatcamGUI/PreferencesUI.py:4796 flatcamTools/ToolFilm.py:221 +#: flatcamGUI/PreferencesUI.py:4797 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." @@ -11144,57 +11144,57 @@ msgstr "" "Poate fi unul dintre cele patru puncte ale căsuței de delimitare a " "geometriei." -#: flatcamGUI/PreferencesUI.py:4799 flatcamTools/ToolFiducials.py:87 +#: flatcamGUI/PreferencesUI.py:4800 flatcamTools/ToolFiducials.py:87 #: flatcamTools/ToolFilm.py:224 msgid "Bottom Left" msgstr "Stânga jos" -#: flatcamGUI/PreferencesUI.py:4800 flatcamTools/ToolFilm.py:225 +#: flatcamGUI/PreferencesUI.py:4801 flatcamTools/ToolFilm.py:225 msgid "Top Left" msgstr "Stânga sus" -#: flatcamGUI/PreferencesUI.py:4801 flatcamTools/ToolFilm.py:226 +#: flatcamGUI/PreferencesUI.py:4802 flatcamTools/ToolFilm.py:226 msgid "Bottom Right" msgstr "Dreapta-jos" -#: flatcamGUI/PreferencesUI.py:4802 flatcamTools/ToolFilm.py:227 +#: flatcamGUI/PreferencesUI.py:4803 flatcamTools/ToolFilm.py:227 msgid "Top right" msgstr "Dreapta-sus" -#: flatcamGUI/PreferencesUI.py:4810 flatcamTools/ToolFilm.py:244 +#: flatcamGUI/PreferencesUI.py:4811 flatcamTools/ToolFilm.py:244 msgid "Mirror Film geometry" msgstr "Oglindeste Geo Film" -#: flatcamGUI/PreferencesUI.py:4812 flatcamTools/ToolFilm.py:246 +#: flatcamGUI/PreferencesUI.py:4813 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:4824 flatcamTools/ToolFilm.py:258 +#: flatcamGUI/PreferencesUI.py:4825 flatcamTools/ToolFilm.py:258 msgid "Both" msgstr "Ambele" -#: flatcamGUI/PreferencesUI.py:4826 flatcamTools/ToolFilm.py:260 +#: flatcamGUI/PreferencesUI.py:4827 flatcamTools/ToolFilm.py:260 msgid "Mirror axis" msgstr "Axe oglindire" -#: flatcamGUI/PreferencesUI.py:4836 flatcamTools/ToolFilm.py:403 +#: flatcamGUI/PreferencesUI.py:4837 flatcamTools/ToolFilm.py:403 msgid "SVG" msgstr "SVG" -#: flatcamGUI/PreferencesUI.py:4837 flatcamTools/ToolFilm.py:404 +#: flatcamGUI/PreferencesUI.py:4838 flatcamTools/ToolFilm.py:404 msgid "PNG" msgstr "PNG" -#: flatcamGUI/PreferencesUI.py:4838 flatcamTools/ToolFilm.py:405 +#: flatcamGUI/PreferencesUI.py:4839 flatcamTools/ToolFilm.py:405 msgid "PDF" msgstr "PDF" -#: flatcamGUI/PreferencesUI.py:4841 flatcamTools/ToolFilm.py:298 +#: flatcamGUI/PreferencesUI.py:4842 flatcamTools/ToolFilm.py:298 #: flatcamTools/ToolFilm.py:408 msgid "Film Type:" msgstr "Tip film:" -#: flatcamGUI/PreferencesUI.py:4843 flatcamTools/ToolFilm.py:410 +#: flatcamGUI/PreferencesUI.py:4844 flatcamTools/ToolFilm.py:410 msgid "" "The file type of the saved film. Can be:\n" "- 'SVG' -> open-source vectorial format\n" @@ -11206,23 +11206,23 @@ msgstr "" "- „PNG” -> imagine raster\n" "- „PDF” -> format document portabil" -#: flatcamGUI/PreferencesUI.py:4852 flatcamTools/ToolFilm.py:419 +#: flatcamGUI/PreferencesUI.py:4853 flatcamTools/ToolFilm.py:419 msgid "Page Orientation" msgstr "Orientarea paginii" -#: flatcamGUI/PreferencesUI.py:4865 flatcamTools/ToolFilm.py:432 +#: flatcamGUI/PreferencesUI.py:4866 flatcamTools/ToolFilm.py:432 msgid "Page Size" msgstr "Mărimea paginii" -#: flatcamGUI/PreferencesUI.py:4866 flatcamTools/ToolFilm.py:433 +#: flatcamGUI/PreferencesUI.py:4867 flatcamTools/ToolFilm.py:433 msgid "A selection of standard ISO 216 page sizes." msgstr "O selecție de dimensiuni standard de pagină conform ISO 216." -#: flatcamGUI/PreferencesUI.py:4938 +#: flatcamGUI/PreferencesUI.py:4939 msgid "Panelize Tool Options" msgstr "Opțiuni Unealta Panelizare" -#: flatcamGUI/PreferencesUI.py:4944 +#: flatcamGUI/PreferencesUI.py:4945 msgid "" "Create an object that contains an array of (x, y) elements,\n" "each element is a copy of the source object spaced\n" @@ -11232,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:4961 flatcamTools/ToolPanelize.py:160 +#: flatcamGUI/PreferencesUI.py:4962 flatcamTools/ToolPanelize.py:160 msgid "Spacing cols" msgstr "Sep. coloane" -#: flatcamGUI/PreferencesUI.py:4963 flatcamTools/ToolPanelize.py:162 +#: flatcamGUI/PreferencesUI.py:4964 flatcamTools/ToolPanelize.py:162 msgid "" "Spacing between columns of the desired panel.\n" "In current units." @@ -11244,11 +11244,11 @@ msgstr "" "Spatiul de separare între coloane.\n" "In unitatile curente." -#: flatcamGUI/PreferencesUI.py:4975 flatcamTools/ToolPanelize.py:172 +#: flatcamGUI/PreferencesUI.py:4976 flatcamTools/ToolPanelize.py:172 msgid "Spacing rows" msgstr "Sep. linii" -#: flatcamGUI/PreferencesUI.py:4977 flatcamTools/ToolPanelize.py:174 +#: flatcamGUI/PreferencesUI.py:4978 flatcamTools/ToolPanelize.py:174 msgid "" "Spacing between rows of the desired panel.\n" "In current units." @@ -11256,36 +11256,36 @@ msgstr "" "Spatiul de separare între linii.\n" "In unitatile curente." -#: flatcamGUI/PreferencesUI.py:4988 flatcamTools/ToolPanelize.py:183 +#: flatcamGUI/PreferencesUI.py:4989 flatcamTools/ToolPanelize.py:183 msgid "Columns" msgstr "Coloane" -#: flatcamGUI/PreferencesUI.py:4990 flatcamTools/ToolPanelize.py:185 +#: flatcamGUI/PreferencesUI.py:4991 flatcamTools/ToolPanelize.py:185 msgid "Number of columns of the desired panel" msgstr "Numărul de coloane ale panel-ului dorit" -#: flatcamGUI/PreferencesUI.py:5000 flatcamTools/ToolPanelize.py:193 +#: flatcamGUI/PreferencesUI.py:5001 flatcamTools/ToolPanelize.py:193 msgid "Rows" msgstr "Linii" -#: flatcamGUI/PreferencesUI.py:5002 flatcamTools/ToolPanelize.py:195 +#: flatcamGUI/PreferencesUI.py:5003 flatcamTools/ToolPanelize.py:195 msgid "Number of rows of the desired panel" msgstr "Numărul de linii ale panel-ului dorit" -#: flatcamGUI/PreferencesUI.py:5008 flatcamTools/ToolCalibration.py:196 +#: flatcamGUI/PreferencesUI.py:5009 flatcamTools/ToolCalibration.py:196 #: flatcamTools/ToolCalibration.py:634 flatcamTools/ToolPanelize.py:201 msgid "Gerber" msgstr "Gerber" -#: flatcamGUI/PreferencesUI.py:5009 flatcamTools/ToolPanelize.py:202 +#: flatcamGUI/PreferencesUI.py:5010 flatcamTools/ToolPanelize.py:202 msgid "Geo" msgstr "Geo" -#: flatcamGUI/PreferencesUI.py:5010 flatcamTools/ToolPanelize.py:203 +#: flatcamGUI/PreferencesUI.py:5011 flatcamTools/ToolPanelize.py:203 msgid "Panel Type" msgstr "Tip panel" -#: flatcamGUI/PreferencesUI.py:5012 +#: flatcamGUI/PreferencesUI.py:5013 msgid "" "Choose the type of object for the panel object:\n" "- Gerber\n" @@ -11295,11 +11295,11 @@ msgstr "" "- Gerber\n" "- Geometrie" -#: flatcamGUI/PreferencesUI.py:5021 +#: flatcamGUI/PreferencesUI.py:5022 msgid "Constrain within" msgstr "Constrange" -#: flatcamGUI/PreferencesUI.py:5023 flatcamTools/ToolPanelize.py:215 +#: flatcamGUI/PreferencesUI.py:5024 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" @@ -11313,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:5036 flatcamTools/ToolPanelize.py:227 +#: flatcamGUI/PreferencesUI.py:5037 flatcamTools/ToolPanelize.py:227 msgid "Width (DX)" msgstr "Lătime (Dx)" -#: flatcamGUI/PreferencesUI.py:5038 flatcamTools/ToolPanelize.py:229 +#: flatcamGUI/PreferencesUI.py:5039 flatcamTools/ToolPanelize.py:229 msgid "" "The width (DX) within which the panel must fit.\n" "In current units." @@ -11325,11 +11325,11 @@ msgstr "" "Lăţimea (Dx) in care panelul trebuie să se inscrie.\n" "In unitati curente." -#: flatcamGUI/PreferencesUI.py:5049 flatcamTools/ToolPanelize.py:238 +#: flatcamGUI/PreferencesUI.py:5050 flatcamTools/ToolPanelize.py:238 msgid "Height (DY)" msgstr "Inăltime (Dy)" -#: flatcamGUI/PreferencesUI.py:5051 flatcamTools/ToolPanelize.py:240 +#: flatcamGUI/PreferencesUI.py:5052 flatcamTools/ToolPanelize.py:240 msgid "" "The height (DY)within which the panel must fit.\n" "In current units." @@ -11337,15 +11337,15 @@ msgstr "" "Înălţimea (Dy) in care panelul trebuie să se inscrie.\n" "In unitati curente." -#: flatcamGUI/PreferencesUI.py:5065 +#: flatcamGUI/PreferencesUI.py:5066 msgid "Calculators Tool Options" msgstr "Opțiuni Unealta Calculatoare" -#: flatcamGUI/PreferencesUI.py:5069 flatcamTools/ToolCalculators.py:25 +#: flatcamGUI/PreferencesUI.py:5070 flatcamTools/ToolCalculators.py:25 msgid "V-Shape Tool Calculator" msgstr "Calculator Unealta V-Shape" -#: flatcamGUI/PreferencesUI.py:5071 +#: flatcamGUI/PreferencesUI.py:5072 msgid "" "Calculate the tool diameter for a given V-shape tool,\n" "having the tip diameter, tip angle and\n" @@ -11355,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:5086 flatcamTools/ToolCalculators.py:94 +#: flatcamGUI/PreferencesUI.py:5087 flatcamTools/ToolCalculators.py:94 msgid "Tip Diameter" msgstr "Dia vârf" -#: flatcamGUI/PreferencesUI.py:5088 flatcamTools/ToolCalculators.py:102 +#: flatcamGUI/PreferencesUI.py:5089 flatcamTools/ToolCalculators.py:102 msgid "" "This is the tool tip diameter.\n" "It is specified by manufacturer." @@ -11367,11 +11367,11 @@ msgstr "" "Acesta este diametrul la vârf al uneltei.\n" "Este specificat de producator." -#: flatcamGUI/PreferencesUI.py:5100 flatcamTools/ToolCalculators.py:105 +#: flatcamGUI/PreferencesUI.py:5101 flatcamTools/ToolCalculators.py:105 msgid "Tip Angle" msgstr "V-Unghi" -#: flatcamGUI/PreferencesUI.py:5102 +#: flatcamGUI/PreferencesUI.py:5103 msgid "" "This is the angle on the tip of the tool.\n" "It is specified by manufacturer." @@ -11379,7 +11379,7 @@ msgstr "" "Acesta este unghiul la vârf al uneltei.\n" "Este specificat de producator." -#: flatcamGUI/PreferencesUI.py:5116 +#: flatcamGUI/PreferencesUI.py:5117 msgid "" "This is depth to cut into material.\n" "In the CNCJob object it is the CutZ parameter." @@ -11387,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:5123 flatcamTools/ToolCalculators.py:27 +#: flatcamGUI/PreferencesUI.py:5124 flatcamTools/ToolCalculators.py:27 msgid "ElectroPlating Calculator" msgstr "Calculator ElectroPlacare" -#: flatcamGUI/PreferencesUI.py:5125 flatcamTools/ToolCalculators.py:158 +#: flatcamGUI/PreferencesUI.py:5126 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 " @@ -11403,31 +11403,31 @@ msgstr "" "- clorura paladiu\n" "- hipofosfit de calciu." -#: flatcamGUI/PreferencesUI.py:5139 flatcamTools/ToolCalculators.py:167 +#: flatcamGUI/PreferencesUI.py:5140 flatcamTools/ToolCalculators.py:167 msgid "Board Length" msgstr "Lung. plăcii" -#: flatcamGUI/PreferencesUI.py:5141 flatcamTools/ToolCalculators.py:173 +#: flatcamGUI/PreferencesUI.py:5142 flatcamTools/ToolCalculators.py:173 msgid "This is the board length. In centimeters." msgstr "" "Aceasta este lungimea PCB-ului.\n" "In centimetri." -#: flatcamGUI/PreferencesUI.py:5151 flatcamTools/ToolCalculators.py:175 +#: flatcamGUI/PreferencesUI.py:5152 flatcamTools/ToolCalculators.py:175 msgid "Board Width" msgstr "Lăt. plăcii" -#: flatcamGUI/PreferencesUI.py:5153 flatcamTools/ToolCalculators.py:181 +#: flatcamGUI/PreferencesUI.py:5154 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:5158 flatcamTools/ToolCalculators.py:183 +#: flatcamGUI/PreferencesUI.py:5159 flatcamTools/ToolCalculators.py:183 msgid "Current Density" msgstr "Densitate I" -#: flatcamGUI/PreferencesUI.py:5164 flatcamTools/ToolCalculators.py:190 +#: flatcamGUI/PreferencesUI.py:5165 flatcamTools/ToolCalculators.py:190 msgid "" "Current density to pass through the board. \n" "In Amps per Square Feet ASF." @@ -11435,11 +11435,11 @@ msgstr "" "Densitatea de curent care să treaca prin placa.\n" "In ASF (amperi pe picior la patrat)." -#: flatcamGUI/PreferencesUI.py:5170 flatcamTools/ToolCalculators.py:193 +#: flatcamGUI/PreferencesUI.py:5171 flatcamTools/ToolCalculators.py:193 msgid "Copper Growth" msgstr "Grosime Cu" -#: flatcamGUI/PreferencesUI.py:5176 flatcamTools/ToolCalculators.py:200 +#: flatcamGUI/PreferencesUI.py:5177 flatcamTools/ToolCalculators.py:200 msgid "" "How thick the copper growth is intended to be.\n" "In microns." @@ -11447,11 +11447,11 @@ msgstr "" "Cat de gros se dorește să fie stratul de cupru depus.\n" "In microni." -#: flatcamGUI/PreferencesUI.py:5189 +#: flatcamGUI/PreferencesUI.py:5190 msgid "Transform Tool Options" msgstr "Opțiuni Unealta Transformare" -#: flatcamGUI/PreferencesUI.py:5195 +#: flatcamGUI/PreferencesUI.py:5196 msgid "" "Various transformations that can be applied\n" "on a FlatCAM object." @@ -11459,19 +11459,19 @@ msgstr "" "Diverse transformări care pot fi aplicate\n" "asupra unui obiect FlatCAM." -#: flatcamGUI/PreferencesUI.py:5226 +#: flatcamGUI/PreferencesUI.py:5227 msgid "Skew" msgstr "Deformare" -#: flatcamGUI/PreferencesUI.py:5267 flatcamTools/ToolTransform.py:149 +#: flatcamGUI/PreferencesUI.py:5268 flatcamTools/ToolTransform.py:149 msgid "Factor for scaling on X axis." msgstr "Factor de scalare pe axa X." -#: flatcamGUI/PreferencesUI.py:5280 flatcamTools/ToolTransform.py:170 +#: flatcamGUI/PreferencesUI.py:5281 flatcamTools/ToolTransform.py:170 msgid "Factor for scaling on Y axis." msgstr "Factor de scalare pe axa Y." -#: flatcamGUI/PreferencesUI.py:5288 flatcamTools/ToolTransform.py:193 +#: flatcamGUI/PreferencesUI.py:5289 flatcamTools/ToolTransform.py:193 msgid "" "Scale the selected object(s)\n" "using the Scale_X factor for both axis." @@ -11479,7 +11479,7 @@ msgstr "" "Scalează obiectele selectate folosind\n" "Factor Scal_X pentru ambele axe." -#: flatcamGUI/PreferencesUI.py:5296 flatcamTools/ToolTransform.py:201 +#: flatcamGUI/PreferencesUI.py:5297 flatcamTools/ToolTransform.py:201 msgid "" "Scale the selected object(s)\n" "using the origin reference when checked,\n" @@ -11492,27 +11492,27 @@ msgstr "" "centrul formei inconjuatoare care cuprinde\n" "toate obiectele selectate." -#: flatcamGUI/PreferencesUI.py:5312 flatcamTools/ToolTransform.py:216 +#: flatcamGUI/PreferencesUI.py:5313 flatcamTools/ToolTransform.py:216 msgid "X val" msgstr "Val X" -#: flatcamGUI/PreferencesUI.py:5314 flatcamTools/ToolTransform.py:218 +#: flatcamGUI/PreferencesUI.py:5315 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:5325 flatcamTools/ToolTransform.py:237 +#: flatcamGUI/PreferencesUI.py:5326 flatcamTools/ToolTransform.py:237 msgid "Y val" msgstr "Val Y" -#: flatcamGUI/PreferencesUI.py:5327 flatcamTools/ToolTransform.py:239 +#: flatcamGUI/PreferencesUI.py:5328 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:5333 flatcamTools/ToolTransform.py:284 +#: flatcamGUI/PreferencesUI.py:5334 flatcamTools/ToolTransform.py:284 msgid "Mirror Reference" msgstr "Referinţă Oglindire" -#: flatcamGUI/PreferencesUI.py:5335 flatcamTools/ToolTransform.py:286 +#: flatcamGUI/PreferencesUI.py:5336 flatcamTools/ToolTransform.py:286 msgid "" "Flip the selected object(s)\n" "around the point in Point Entry Field.\n" @@ -11535,11 +11535,11 @@ msgstr "" "in forma (x, y).\n" "La final apasă butonul de oglindire pe axa dorită" -#: flatcamGUI/PreferencesUI.py:5346 +#: flatcamGUI/PreferencesUI.py:5347 msgid "Mirror Reference point" msgstr "Punct referinţă Oglindire" -#: flatcamGUI/PreferencesUI.py:5348 +#: flatcamGUI/PreferencesUI.py:5349 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" @@ -11550,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:5365 +#: flatcamGUI/PreferencesUI.py:5366 msgid "SolderPaste Tool Options" msgstr "Opțiuni Unealta Pasta Fludor" -#: flatcamGUI/PreferencesUI.py:5371 +#: flatcamGUI/PreferencesUI.py:5372 msgid "" "A tool to create GCode for dispensing\n" "solder paste onto a PCB." @@ -11562,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:5382 +#: flatcamGUI/PreferencesUI.py:5383 msgid "Diameters of nozzle tools, separated by ','" msgstr "Diametrele uneltelor (nozzle), separate prin virgula." -#: flatcamGUI/PreferencesUI.py:5390 +#: flatcamGUI/PreferencesUI.py:5391 msgid "New Nozzle Dia" msgstr "Dia nou" -#: flatcamGUI/PreferencesUI.py:5392 flatcamTools/ToolSolderPaste.py:106 +#: flatcamGUI/PreferencesUI.py:5393 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:5408 flatcamTools/ToolSolderPaste.py:182 +#: flatcamGUI/PreferencesUI.py:5409 flatcamTools/ToolSolderPaste.py:182 msgid "Z Dispense Start" msgstr "Z start dispensare" -#: flatcamGUI/PreferencesUI.py:5410 flatcamTools/ToolSolderPaste.py:184 +#: flatcamGUI/PreferencesUI.py:5411 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:5421 flatcamTools/ToolSolderPaste.py:194 +#: flatcamGUI/PreferencesUI.py:5422 flatcamTools/ToolSolderPaste.py:194 msgid "Z Dispense" msgstr "Z dispensare" -#: flatcamGUI/PreferencesUI.py:5423 flatcamTools/ToolSolderPaste.py:196 +#: flatcamGUI/PreferencesUI.py:5424 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:5434 flatcamTools/ToolSolderPaste.py:206 +#: flatcamGUI/PreferencesUI.py:5435 flatcamTools/ToolSolderPaste.py:206 msgid "Z Dispense Stop" msgstr "Z stop dispensare" -#: flatcamGUI/PreferencesUI.py:5436 flatcamTools/ToolSolderPaste.py:208 +#: flatcamGUI/PreferencesUI.py:5437 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:5447 flatcamTools/ToolSolderPaste.py:218 +#: flatcamGUI/PreferencesUI.py:5448 flatcamTools/ToolSolderPaste.py:218 msgid "Z Travel" msgstr "Z deplasare" -#: flatcamGUI/PreferencesUI.py:5449 flatcamTools/ToolSolderPaste.py:220 +#: flatcamGUI/PreferencesUI.py:5450 flatcamTools/ToolSolderPaste.py:220 msgid "" "The height (Z) for travel between pads\n" "(without dispensing solder paste)." @@ -11612,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:5461 flatcamTools/ToolSolderPaste.py:231 +#: flatcamGUI/PreferencesUI.py:5462 flatcamTools/ToolSolderPaste.py:231 msgid "Z Toolchange" msgstr "Z schimb. unealtă" -#: flatcamGUI/PreferencesUI.py:5463 flatcamTools/ToolSolderPaste.py:233 +#: flatcamGUI/PreferencesUI.py:5464 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:5472 flatcamTools/ToolSolderPaste.py:241 +#: flatcamGUI/PreferencesUI.py:5473 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." @@ -11628,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:5486 flatcamTools/ToolSolderPaste.py:254 +#: flatcamGUI/PreferencesUI.py:5487 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:5499 flatcamTools/ToolSolderPaste.py:266 +#: flatcamGUI/PreferencesUI.py:5500 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:5511 flatcamTools/ToolSolderPaste.py:277 +#: flatcamGUI/PreferencesUI.py:5512 flatcamTools/ToolSolderPaste.py:277 msgid "Feedrate Z Dispense" msgstr "Feedrate Z dispensare" -#: flatcamGUI/PreferencesUI.py:5513 +#: flatcamGUI/PreferencesUI.py:5514 msgid "" "Feedrate (speed) while moving up vertically\n" "to Dispense position (on Z plane)." @@ -11651,11 +11651,11 @@ msgstr "" "Viteza de deplasare la mișcarea pe verticala spre\n" "poziţia de dispensare (in planul Z)." -#: flatcamGUI/PreferencesUI.py:5524 flatcamTools/ToolSolderPaste.py:289 +#: flatcamGUI/PreferencesUI.py:5525 flatcamTools/ToolSolderPaste.py:289 msgid "Spindle Speed FWD" msgstr "Viteza motor inainte" -#: flatcamGUI/PreferencesUI.py:5526 flatcamTools/ToolSolderPaste.py:291 +#: flatcamGUI/PreferencesUI.py:5527 flatcamTools/ToolSolderPaste.py:291 msgid "" "The dispenser speed while pushing solder paste\n" "through the dispenser nozzle." @@ -11663,19 +11663,19 @@ msgstr "" "Viteza motorului de dispensare in timp ce impinge pastă de fludor\n" "prin orificiul uneltei de dispensare." -#: flatcamGUI/PreferencesUI.py:5538 flatcamTools/ToolSolderPaste.py:302 +#: flatcamGUI/PreferencesUI.py:5539 flatcamTools/ToolSolderPaste.py:302 msgid "Dwell FWD" msgstr "Pauza FWD" -#: flatcamGUI/PreferencesUI.py:5540 flatcamTools/ToolSolderPaste.py:304 +#: flatcamGUI/PreferencesUI.py:5541 flatcamTools/ToolSolderPaste.py:304 msgid "Pause after solder dispensing." msgstr "Pauza dupa dispensarea de pastă de fludor." -#: flatcamGUI/PreferencesUI.py:5550 flatcamTools/ToolSolderPaste.py:313 +#: flatcamGUI/PreferencesUI.py:5551 flatcamTools/ToolSolderPaste.py:313 msgid "Spindle Speed REV" msgstr "Viteza motor inapoi" -#: flatcamGUI/PreferencesUI.py:5552 flatcamTools/ToolSolderPaste.py:315 +#: flatcamGUI/PreferencesUI.py:5553 flatcamTools/ToolSolderPaste.py:315 msgid "" "The dispenser speed while retracting solder paste\n" "through the dispenser nozzle." @@ -11683,11 +11683,11 @@ msgstr "" "Viteza motorului de dispensare in timp ce retrage pasta de fludor\n" "prin orificiul uneltei de dispensare." -#: flatcamGUI/PreferencesUI.py:5564 flatcamTools/ToolSolderPaste.py:326 +#: flatcamGUI/PreferencesUI.py:5565 flatcamTools/ToolSolderPaste.py:326 msgid "Dwell REV" msgstr "Pauza REV" -#: flatcamGUI/PreferencesUI.py:5566 flatcamTools/ToolSolderPaste.py:328 +#: flatcamGUI/PreferencesUI.py:5567 flatcamTools/ToolSolderPaste.py:328 msgid "" "Pause after solder paste dispenser retracted,\n" "to allow pressure equilibrium." @@ -11695,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:5575 flatcamTools/ToolSolderPaste.py:336 +#: flatcamGUI/PreferencesUI.py:5576 flatcamTools/ToolSolderPaste.py:336 msgid "Files that control the GCode generation." msgstr "Fişiere care controlează generarea codului G-Code." -#: flatcamGUI/PreferencesUI.py:5590 +#: flatcamGUI/PreferencesUI.py:5591 msgid "Substractor Tool Options" msgstr "Opțiuni Unealta Substracţie" -#: flatcamGUI/PreferencesUI.py:5596 +#: flatcamGUI/PreferencesUI.py:5597 msgid "" "A tool to substract one Gerber or Geometry object\n" "from another of the same type." @@ -11711,22 +11711,22 @@ msgstr "" "O unealtă pentru scăderea unui obiect Gerber sau Geometry\n" "din altul de același tip." -#: flatcamGUI/PreferencesUI.py:5601 flatcamTools/ToolSub.py:149 +#: flatcamGUI/PreferencesUI.py:5602 flatcamTools/ToolSub.py:149 msgid "Close paths" msgstr "Închide căile" -#: flatcamGUI/PreferencesUI.py:5602 +#: flatcamGUI/PreferencesUI.py:5603 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:5613 +#: flatcamGUI/PreferencesUI.py:5614 msgid "Check Rules Tool Options" msgstr "Opțiuni Unealta Verificare Reguli" -#: flatcamGUI/PreferencesUI.py:5618 +#: flatcamGUI/PreferencesUI.py:5619 msgid "" "A tool to check if Gerber files are within a set\n" "of Manufacturing Rules." @@ -11734,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:5628 flatcamTools/ToolRulesCheck.py:256 +#: flatcamGUI/PreferencesUI.py:5629 flatcamTools/ToolRulesCheck.py:256 #: flatcamTools/ToolRulesCheck.py:920 msgid "Trace Size" msgstr "Dim. traseu" -#: flatcamGUI/PreferencesUI.py:5630 flatcamTools/ToolRulesCheck.py:258 +#: flatcamGUI/PreferencesUI.py:5631 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: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 +#: flatcamGUI/PreferencesUI.py:5641 flatcamGUI/PreferencesUI.py:5661 +#: flatcamGUI/PreferencesUI.py:5681 flatcamGUI/PreferencesUI.py:5701 +#: flatcamGUI/PreferencesUI.py:5721 flatcamGUI/PreferencesUI.py:5741 +#: flatcamGUI/PreferencesUI.py:5761 flatcamGUI/PreferencesUI.py:5781 +#: flatcamGUI/PreferencesUI.py:5803 flatcamGUI/PreferencesUI.py:5823 #: flatcamTools/ToolRulesCheck.py:268 flatcamTools/ToolRulesCheck.py:290 #: flatcamTools/ToolRulesCheck.py:313 flatcamTools/ToolRulesCheck.py:336 #: flatcamTools/ToolRulesCheck.py:359 flatcamTools/ToolRulesCheck.py:382 @@ -11756,16 +11756,16 @@ msgstr "Aceasta verifică dacă dimensiunea minimă a traseelor este respectată msgid "Min value" msgstr "Val. min" -#: flatcamGUI/PreferencesUI.py:5642 flatcamTools/ToolRulesCheck.py:270 +#: flatcamGUI/PreferencesUI.py:5643 flatcamTools/ToolRulesCheck.py:270 msgid "Minimum acceptable trace size." msgstr "Dimensiunea minimă acceptabilă a traseelor." -#: flatcamGUI/PreferencesUI.py:5647 flatcamTools/ToolRulesCheck.py:277 +#: flatcamGUI/PreferencesUI.py:5648 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:5649 flatcamTools/ToolRulesCheck.py:279 +#: flatcamGUI/PreferencesUI.py:5650 flatcamTools/ToolRulesCheck.py:279 msgid "" "This checks if the minimum clearance between copper\n" "features is met." @@ -11773,23 +11773,23 @@ msgstr "" "Aceasta verifică dacă distanța minimă dintre traseele cupru\n" "este îndeplinita." -#: 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 +#: flatcamGUI/PreferencesUI.py:5663 flatcamGUI/PreferencesUI.py:5683 +#: flatcamGUI/PreferencesUI.py:5703 flatcamGUI/PreferencesUI.py:5723 +#: flatcamGUI/PreferencesUI.py:5743 flatcamGUI/PreferencesUI.py:5763 +#: flatcamGUI/PreferencesUI.py:5825 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:5667 flatcamTools/ToolRulesCheck.py:300 +#: flatcamGUI/PreferencesUI.py:5668 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:5669 flatcamTools/ToolRulesCheck.py:302 +#: flatcamGUI/PreferencesUI.py:5670 flatcamTools/ToolRulesCheck.py:302 msgid "" "This checks if the minimum clearance between copper\n" "features and the outline is met." @@ -11797,11 +11797,11 @@ msgstr "" "Aceasta verifică dacă distanța minimă dintre\n" "traseele de cupru și conturul este îndeplinit." -#: flatcamGUI/PreferencesUI.py:5687 flatcamTools/ToolRulesCheck.py:323 +#: flatcamGUI/PreferencesUI.py:5688 flatcamTools/ToolRulesCheck.py:323 msgid "Silk to Silk Clearance" msgstr "Distanta Silk până la Silk Clearance" -#: flatcamGUI/PreferencesUI.py:5689 flatcamTools/ToolRulesCheck.py:325 +#: flatcamGUI/PreferencesUI.py:5690 flatcamTools/ToolRulesCheck.py:325 msgid "" "This checks if the minimum clearance between silkscreen\n" "features and silkscreen features is met." @@ -11809,13 +11809,13 @@ msgstr "" "Acest lucru verifică dacă distanța minimă între silk (anotari)\n" "sunt îndeplinite." -#: flatcamGUI/PreferencesUI.py:5707 flatcamTools/ToolRulesCheck.py:346 +#: flatcamGUI/PreferencesUI.py:5708 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:5709 flatcamTools/ToolRulesCheck.py:348 +#: flatcamGUI/PreferencesUI.py:5710 flatcamTools/ToolRulesCheck.py:348 msgid "" "This checks if the minimum clearance between silkscreen\n" "features and soldermask features is met." @@ -11823,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:5727 flatcamTools/ToolRulesCheck.py:369 +#: flatcamGUI/PreferencesUI.py:5728 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:5729 flatcamTools/ToolRulesCheck.py:371 +#: flatcamGUI/PreferencesUI.py:5730 flatcamTools/ToolRulesCheck.py:371 msgid "" "This checks if the minimum clearance between silk\n" "features and the outline is met." @@ -11837,14 +11837,14 @@ msgstr "" "Acest lucru verifică dacă distanța minimă dintre Silk (anotari)\n" "și Contur este îndeplinită." -#: flatcamGUI/PreferencesUI.py:5747 flatcamTools/ToolRulesCheck.py:392 +#: flatcamGUI/PreferencesUI.py:5748 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:5749 flatcamTools/ToolRulesCheck.py:394 +#: flatcamGUI/PreferencesUI.py:5750 flatcamTools/ToolRulesCheck.py:394 msgid "" "This checks if the minimum clearance between soldermask\n" "features and soldermask features is met." @@ -11852,13 +11852,13 @@ msgstr "" "Acest lucru verifică dacă distanta minimă între\n" "elementele soldermask (masca de fludor) este îndeplinită." -#: flatcamGUI/PreferencesUI.py:5767 flatcamTools/ToolRulesCheck.py:415 +#: flatcamGUI/PreferencesUI.py:5768 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:5769 flatcamTools/ToolRulesCheck.py:417 +#: flatcamGUI/PreferencesUI.py:5770 flatcamTools/ToolRulesCheck.py:417 msgid "" "This checks if the minimum copper ring left by drilling\n" "a hole into a pad is met." @@ -11866,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:5782 flatcamTools/ToolRulesCheck.py:430 +#: flatcamGUI/PreferencesUI.py:5783 flatcamTools/ToolRulesCheck.py:430 msgid "Minimum acceptable ring value." msgstr "Valoarea minimă acceptabilă a inelului." -#: flatcamGUI/PreferencesUI.py:5789 flatcamTools/ToolRulesCheck.py:440 +#: flatcamGUI/PreferencesUI.py:5790 flatcamTools/ToolRulesCheck.py:440 #: flatcamTools/ToolRulesCheck.py:864 msgid "Hole to Hole Clearance" msgstr "Distanta de la Gaură la Gaură" -#: flatcamGUI/PreferencesUI.py:5791 flatcamTools/ToolRulesCheck.py:442 +#: flatcamGUI/PreferencesUI.py:5792 flatcamTools/ToolRulesCheck.py:442 msgid "" "This checks if the minimum clearance between a drill hole\n" "and another drill hole is met." @@ -11883,16 +11883,16 @@ msgstr "" "Acest lucru verifică dacă distanța minimă dintre o gaură\n" "și o altă gaură este îndeplinită." -#: flatcamGUI/PreferencesUI.py:5804 flatcamTools/ToolRulesCheck.py:478 +#: flatcamGUI/PreferencesUI.py:5805 flatcamTools/ToolRulesCheck.py:478 msgid "Minimum acceptable drill size." msgstr "Dimensiunea minimă acceptabilă a gaurii." -#: flatcamGUI/PreferencesUI.py:5809 flatcamTools/ToolRulesCheck.py:463 +#: flatcamGUI/PreferencesUI.py:5810 flatcamTools/ToolRulesCheck.py:463 #: flatcamTools/ToolRulesCheck.py:838 msgid "Hole Size" msgstr "Dimens. gaura" -#: flatcamGUI/PreferencesUI.py:5811 flatcamTools/ToolRulesCheck.py:465 +#: flatcamGUI/PreferencesUI.py:5812 flatcamTools/ToolRulesCheck.py:465 msgid "" "This checks if the drill holes\n" "sizes are above the threshold." @@ -11900,11 +11900,11 @@ msgstr "" "Acest lucru verifică dacă\n" "dimensiunile găurilor sunt peste prag." -#: flatcamGUI/PreferencesUI.py:5836 +#: flatcamGUI/PreferencesUI.py:5837 msgid "Optimal Tool Options" msgstr "Opțiuni Unealta Optim" -#: flatcamGUI/PreferencesUI.py:5842 +#: flatcamGUI/PreferencesUI.py:5843 msgid "" "A tool to find the minimum distance between\n" "every two Gerber geometric elements" @@ -11912,20 +11912,20 @@ msgstr "" "Un instrument pentru a găsi distanța minimă între\n" "la fiecare două elemente geometrice Gerber" -#: flatcamGUI/PreferencesUI.py:5857 flatcamTools/ToolOptimal.py:78 +#: flatcamGUI/PreferencesUI.py:5858 flatcamTools/ToolOptimal.py:78 msgid "Precision" msgstr "Precizie" -#: flatcamGUI/PreferencesUI.py:5859 +#: flatcamGUI/PreferencesUI.py:5860 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:5873 +#: flatcamGUI/PreferencesUI.py:5874 msgid "QRCode Tool Options" msgstr "Opțiuni Unealta QRCode" -#: flatcamGUI/PreferencesUI.py:5879 +#: flatcamGUI/PreferencesUI.py:5880 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." @@ -11933,11 +11933,11 @@ 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:5891 flatcamTools/ToolQRCode.py:99 +#: flatcamGUI/PreferencesUI.py:5892 flatcamTools/ToolQRCode.py:99 msgid "Version" msgstr "Versiune" -#: flatcamGUI/PreferencesUI.py:5893 flatcamTools/ToolQRCode.py:101 +#: flatcamGUI/PreferencesUI.py:5894 flatcamTools/ToolQRCode.py:101 msgid "" "QRCode version can have values from 1 (21x21 boxes)\n" "to 40 (177x177 boxes)." @@ -11945,11 +11945,11 @@ msgstr "" "Versiunea QRCode poate avea valori de la 1 (21x21 elemente)\n" "la 40 (177x177 elemente)." -#: flatcamGUI/PreferencesUI.py:5904 flatcamTools/ToolQRCode.py:112 +#: flatcamGUI/PreferencesUI.py:5905 flatcamTools/ToolQRCode.py:112 msgid "Error correction" msgstr "Corectarea erorii" -#: flatcamGUI/PreferencesUI.py:5906 flatcamGUI/PreferencesUI.py:5917 +#: flatcamGUI/PreferencesUI.py:5907 flatcamGUI/PreferencesUI.py:5918 #: flatcamTools/ToolQRCode.py:114 flatcamTools/ToolQRCode.py:125 #, python-format msgid "" @@ -11965,11 +11965,11 @@ msgstr "" "Q = erorile maxime de 25%% pot fi corectate\n" "H = maxim 30%% erorile pot fi corectate." -#: flatcamGUI/PreferencesUI.py:5927 flatcamTools/ToolQRCode.py:135 +#: flatcamGUI/PreferencesUI.py:5928 flatcamTools/ToolQRCode.py:135 msgid "Box Size" msgstr "Dim. Element" -#: flatcamGUI/PreferencesUI.py:5929 flatcamTools/ToolQRCode.py:137 +#: flatcamGUI/PreferencesUI.py:5930 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." @@ -11977,11 +11977,11 @@ msgstr "" "Dimensiunea Element controlează dimensiunea generală a codului QR\n" "prin ajustarea dimensiunii fiecărui element din cod." -#: flatcamGUI/PreferencesUI.py:5940 flatcamTools/ToolQRCode.py:148 +#: flatcamGUI/PreferencesUI.py:5941 flatcamTools/ToolQRCode.py:148 msgid "Border Size" msgstr "Dim Bordură" -#: flatcamGUI/PreferencesUI.py:5942 flatcamTools/ToolQRCode.py:150 +#: flatcamGUI/PreferencesUI.py:5943 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." @@ -11989,23 +11989,23 @@ 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:5953 flatcamTools/ToolQRCode.py:162 +#: flatcamGUI/PreferencesUI.py:5954 flatcamTools/ToolQRCode.py:162 msgid "QRCode Data" msgstr "Date QRCode" -#: flatcamGUI/PreferencesUI.py:5955 flatcamTools/ToolQRCode.py:164 +#: flatcamGUI/PreferencesUI.py:5956 flatcamTools/ToolQRCode.py:164 msgid "QRCode Data. Alphanumeric text to be encoded in the QRCode." msgstr "Date QRCode. Text alfanumeric care va fi codat în codul QRC." -#: flatcamGUI/PreferencesUI.py:5959 flatcamTools/ToolQRCode.py:168 +#: flatcamGUI/PreferencesUI.py:5960 flatcamTools/ToolQRCode.py:168 msgid "Add here the text to be included in the QRCode..." msgstr "Adăugați aici textul care va fi inclus în codul QR ..." -#: flatcamGUI/PreferencesUI.py:5965 flatcamTools/ToolQRCode.py:174 +#: flatcamGUI/PreferencesUI.py:5966 flatcamTools/ToolQRCode.py:174 msgid "Polarity" msgstr "Polaritate" -#: flatcamGUI/PreferencesUI.py:5967 flatcamTools/ToolQRCode.py:176 +#: flatcamGUI/PreferencesUI.py:5968 flatcamTools/ToolQRCode.py:176 msgid "" "Choose the polarity of the QRCode.\n" "It can be drawn in a negative way (squares are clear)\n" @@ -12015,17 +12015,17 @@ msgstr "" "Poate fi desenat într-un mod negativ (pătratele sunt clare)\n" "sau într-un mod pozitiv (pătratele sunt opace)." -#: flatcamGUI/PreferencesUI.py:5971 flatcamTools/ToolFilm.py:296 +#: flatcamGUI/PreferencesUI.py:5972 flatcamTools/ToolFilm.py:296 #: flatcamTools/ToolQRCode.py:180 msgid "Negative" msgstr "Negativ" -#: flatcamGUI/PreferencesUI.py:5972 flatcamTools/ToolFilm.py:295 +#: flatcamGUI/PreferencesUI.py:5973 flatcamTools/ToolFilm.py:295 #: flatcamTools/ToolQRCode.py:181 msgid "Positive" msgstr "Pozitiv" -#: flatcamGUI/PreferencesUI.py:5974 flatcamTools/ToolQRCode.py:183 +#: flatcamGUI/PreferencesUI.py:5975 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" @@ -12037,7 +12037,7 @@ msgstr "" "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:5985 flatcamGUI/PreferencesUI.py:5991 +#: flatcamGUI/PreferencesUI.py:5986 flatcamGUI/PreferencesUI.py:5992 #: flatcamTools/ToolQRCode.py:194 flatcamTools/ToolQRCode.py:200 msgid "" "The bounding box, meaning the empty space that surrounds\n" @@ -12046,31 +12046,31 @@ msgstr "" "Caseta de încadrare, adică spațiul gol care înconjoară\n" "geometria QRCode, poate avea o formă rotunjită sau pătrată." -#: flatcamGUI/PreferencesUI.py:5988 flatcamTools/ToolQRCode.py:197 +#: flatcamGUI/PreferencesUI.py:5989 flatcamTools/ToolQRCode.py:197 msgid "Rounded" msgstr "Rotunjit" -#: flatcamGUI/PreferencesUI.py:5998 flatcamTools/ToolQRCode.py:228 +#: flatcamGUI/PreferencesUI.py:5999 flatcamTools/ToolQRCode.py:228 msgid "Fill Color" msgstr "Culoare Continut" -#: flatcamGUI/PreferencesUI.py:6000 flatcamTools/ToolQRCode.py:230 +#: flatcamGUI/PreferencesUI.py:6001 flatcamTools/ToolQRCode.py:230 msgid "Set the QRCode fill color (squares color)." msgstr "Setați culoarea QRCode de umplere (culoarea elementelor)." -#: flatcamGUI/PreferencesUI.py:6019 flatcamTools/ToolQRCode.py:252 +#: flatcamGUI/PreferencesUI.py:6020 flatcamTools/ToolQRCode.py:252 msgid "Back Color" msgstr "Culoare de fundal" -#: flatcamGUI/PreferencesUI.py:6021 flatcamTools/ToolQRCode.py:254 +#: flatcamGUI/PreferencesUI.py:6022 flatcamTools/ToolQRCode.py:254 msgid "Set the QRCode background color." msgstr "Setați culoarea de fundal QRCode." -#: flatcamGUI/PreferencesUI.py:6061 +#: flatcamGUI/PreferencesUI.py:6062 msgid "Copper Thieving Tool Options" msgstr "Opțiunile Uneltei Copper Thieving" -#: flatcamGUI/PreferencesUI.py:6073 +#: flatcamGUI/PreferencesUI.py:6074 msgid "" "A tool to generate a Copper Thieving that can be added\n" "to a selected Gerber file." @@ -12078,16 +12078,16 @@ msgstr "" "Un instrument pentru a genera o Copper Thieving care poate fi adăugat\n" "la un fișier Gerber selectat." -#: flatcamGUI/PreferencesUI.py:6081 +#: flatcamGUI/PreferencesUI.py:6082 msgid "Number of steps (lines) used to interpolate circles." msgstr "Numărul de pași (linii) utilizate pentru interpolarea cercurilor." -#: flatcamGUI/PreferencesUI.py:6091 flatcamGUI/PreferencesUI.py:6295 +#: flatcamGUI/PreferencesUI.py:6092 flatcamGUI/PreferencesUI.py:6296 #: flatcamTools/ToolCopperThieving.py:96 flatcamTools/ToolCopperThieving.py:429 msgid "Clearance" msgstr "Degajare" -#: flatcamGUI/PreferencesUI.py:6093 +#: flatcamGUI/PreferencesUI.py:6094 msgid "" "This set the distance between the copper Thieving components\n" "(the polygon fill may be split in multiple polygons)\n" @@ -12097,22 +12097,22 @@ msgstr "" "(umplutura poligonului poate fi împărțită în mai multe poligoane)\n" "si traseele de cupru din fisierul Gerber." -#: flatcamGUI/PreferencesUI.py:6121 flatcamTools/ToolCopperThieving.py:126 +#: flatcamGUI/PreferencesUI.py:6122 flatcamTools/ToolCopperThieving.py:126 #: flatcamTools/ToolNonCopperClear.py:436 flatcamTools/ToolPaint.py:314 msgid "Area Selection" msgstr "Selecţie zonă" -#: flatcamGUI/PreferencesUI.py:6122 flatcamTools/ToolCopperThieving.py:127 +#: flatcamGUI/PreferencesUI.py:6123 flatcamTools/ToolCopperThieving.py:127 #: flatcamTools/ToolNonCopperClear.py:437 flatcamTools/ToolPaint.py:316 msgid "Reference Object" msgstr "Obiect Ref" -#: flatcamGUI/PreferencesUI.py:6124 flatcamTools/ToolCopperThieving.py:129 +#: flatcamGUI/PreferencesUI.py:6125 flatcamTools/ToolCopperThieving.py:129 #: flatcamTools/ToolNonCopperClear.py:439 msgid "Reference:" msgstr "Referinţă:" -#: flatcamGUI/PreferencesUI.py:6126 +#: flatcamGUI/PreferencesUI.py:6127 msgid "" "- 'Itself' - the copper Thieving extent is based on the object extent.\n" "- 'Area Selection' - left mouse click to start selection of the area to be " @@ -12127,20 +12127,20 @@ msgstr "" "- „Obiect de referință” - va face Copper Thieving în zona specificată de un " "alt obiect." -#: flatcamGUI/PreferencesUI.py:6135 flatcamTools/ToolCopperThieving.py:170 +#: flatcamGUI/PreferencesUI.py:6136 flatcamTools/ToolCopperThieving.py:170 msgid "Rectangular" msgstr "Patrulater" -#: flatcamGUI/PreferencesUI.py:6136 flatcamTools/ToolCopperThieving.py:171 +#: flatcamGUI/PreferencesUI.py:6137 flatcamTools/ToolCopperThieving.py:171 msgid "Minimal" msgstr "Minimal" -#: flatcamGUI/PreferencesUI.py:6138 flatcamTools/ToolCopperThieving.py:173 +#: flatcamGUI/PreferencesUI.py:6139 flatcamTools/ToolCopperThieving.py:173 #: flatcamTools/ToolFilm.py:113 msgid "Box Type:" msgstr "Tip container:" -#: flatcamGUI/PreferencesUI.py:6140 flatcamTools/ToolCopperThieving.py:175 +#: flatcamGUI/PreferencesUI.py:6141 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." @@ -12148,23 +12148,23 @@ msgstr "" "- „Dreptunghiular” - caseta de delimitare va avea o formă dreptunghiulară.\n" "- „Minimal” - caseta de delimitare va fi forma arie convexă." -#: flatcamGUI/PreferencesUI.py:6154 flatcamTools/ToolCopperThieving.py:191 +#: flatcamGUI/PreferencesUI.py:6155 flatcamTools/ToolCopperThieving.py:191 msgid "Dots Grid" msgstr "Grilă de puncte" -#: flatcamGUI/PreferencesUI.py:6155 flatcamTools/ToolCopperThieving.py:192 +#: flatcamGUI/PreferencesUI.py:6156 flatcamTools/ToolCopperThieving.py:192 msgid "Squares Grid" msgstr "Grilă de pătrate" -#: flatcamGUI/PreferencesUI.py:6156 flatcamTools/ToolCopperThieving.py:193 +#: flatcamGUI/PreferencesUI.py:6157 flatcamTools/ToolCopperThieving.py:193 msgid "Lines Grid" msgstr "Grilă de linii" -#: flatcamGUI/PreferencesUI.py:6158 flatcamTools/ToolCopperThieving.py:195 +#: flatcamGUI/PreferencesUI.py:6159 flatcamTools/ToolCopperThieving.py:195 msgid "Fill Type:" msgstr "Tip de umplere:" -#: flatcamGUI/PreferencesUI.py:6160 flatcamTools/ToolCopperThieving.py:197 +#: flatcamGUI/PreferencesUI.py:6161 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" @@ -12176,54 +12176,54 @@ msgstr "" "- „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:6168 flatcamTools/ToolCopperThieving.py:216 +#: flatcamGUI/PreferencesUI.py:6169 flatcamTools/ToolCopperThieving.py:216 msgid "Dots Grid Parameters" msgstr "Parametri grilă puncte" -#: flatcamGUI/PreferencesUI.py:6174 flatcamTools/ToolCopperThieving.py:222 +#: flatcamGUI/PreferencesUI.py:6175 flatcamTools/ToolCopperThieving.py:222 msgid "Dot diameter in Dots Grid." msgstr "Diametrul punctului în Grila de Puncte." -#: flatcamGUI/PreferencesUI.py:6185 flatcamGUI/PreferencesUI.py:6214 -#: flatcamGUI/PreferencesUI.py:6243 flatcamTools/ToolCopperThieving.py:233 +#: flatcamGUI/PreferencesUI.py:6186 flatcamGUI/PreferencesUI.py:6215 +#: flatcamGUI/PreferencesUI.py:6244 flatcamTools/ToolCopperThieving.py:233 #: flatcamTools/ToolCopperThieving.py:273 #: flatcamTools/ToolCopperThieving.py:313 msgid "Spacing" msgstr "Spaţiere" -#: flatcamGUI/PreferencesUI.py:6187 flatcamTools/ToolCopperThieving.py:235 +#: flatcamGUI/PreferencesUI.py:6188 flatcamTools/ToolCopperThieving.py:235 msgid "Distance between each two dots in Dots Grid." msgstr "Distanța dintre fiecare două puncte din Grila de Puncte." -#: flatcamGUI/PreferencesUI.py:6197 flatcamTools/ToolCopperThieving.py:256 +#: flatcamGUI/PreferencesUI.py:6198 flatcamTools/ToolCopperThieving.py:256 msgid "Squares Grid Parameters" msgstr "Parametri grilă de patrate" -#: flatcamGUI/PreferencesUI.py:6203 flatcamTools/ToolCopperThieving.py:262 +#: flatcamGUI/PreferencesUI.py:6204 flatcamTools/ToolCopperThieving.py:262 msgid "Square side size in Squares Grid." msgstr "Dimensiunea pătratului în grila de pătrate" -#: flatcamGUI/PreferencesUI.py:6216 flatcamTools/ToolCopperThieving.py:275 +#: flatcamGUI/PreferencesUI.py:6217 flatcamTools/ToolCopperThieving.py:275 msgid "Distance between each two squares in Squares Grid." msgstr "Distanța dintre fiecare două pătrate din Grila Pătrate." -#: flatcamGUI/PreferencesUI.py:6226 flatcamTools/ToolCopperThieving.py:296 +#: flatcamGUI/PreferencesUI.py:6227 flatcamTools/ToolCopperThieving.py:296 msgid "Lines Grid Parameters" msgstr "Parametri grilă de linii" -#: flatcamGUI/PreferencesUI.py:6232 flatcamTools/ToolCopperThieving.py:302 +#: flatcamGUI/PreferencesUI.py:6233 flatcamTools/ToolCopperThieving.py:302 msgid "Line thickness size in Lines Grid." msgstr "Mărimea grosimii liniei în Grila de linii." -#: flatcamGUI/PreferencesUI.py:6245 flatcamTools/ToolCopperThieving.py:315 +#: flatcamGUI/PreferencesUI.py:6246 flatcamTools/ToolCopperThieving.py:315 msgid "Distance between each two lines in Lines Grid." msgstr "Distanța dintre fiecare două linii în Grial de linii." -#: flatcamGUI/PreferencesUI.py:6255 flatcamTools/ToolCopperThieving.py:353 +#: flatcamGUI/PreferencesUI.py:6256 flatcamTools/ToolCopperThieving.py:353 msgid "Robber Bar Parameters" msgstr "Parametri pentru Robber Bar" -#: flatcamGUI/PreferencesUI.py:6257 flatcamTools/ToolCopperThieving.py:355 +#: flatcamGUI/PreferencesUI.py:6258 flatcamTools/ToolCopperThieving.py:355 msgid "" "Parameters used for the robber bar.\n" "Robber bar = copper border to help in pattern hole plating." @@ -12231,29 +12231,29 @@ 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:6265 flatcamTools/ToolCopperThieving.py:363 +#: flatcamGUI/PreferencesUI.py:6266 flatcamTools/ToolCopperThieving.py:363 msgid "Bounding box margin for robber bar." msgstr "" "Marginea pentru forma înconjurătoare\n" "a Robber Bar." -#: flatcamGUI/PreferencesUI.py:6276 flatcamTools/ToolCopperThieving.py:374 +#: flatcamGUI/PreferencesUI.py:6277 flatcamTools/ToolCopperThieving.py:374 msgid "Thickness" msgstr "Grosime" -#: flatcamGUI/PreferencesUI.py:6278 flatcamTools/ToolCopperThieving.py:376 +#: flatcamGUI/PreferencesUI.py:6279 flatcamTools/ToolCopperThieving.py:376 msgid "The robber bar thickness." msgstr "Grosimea Robber Bar." -#: flatcamGUI/PreferencesUI.py:6288 flatcamTools/ToolCopperThieving.py:407 +#: flatcamGUI/PreferencesUI.py:6289 flatcamTools/ToolCopperThieving.py:407 msgid "Pattern Plating Mask" msgstr "Masca de placare cu model" -#: flatcamGUI/PreferencesUI.py:6290 flatcamTools/ToolCopperThieving.py:409 +#: flatcamGUI/PreferencesUI.py:6291 flatcamTools/ToolCopperThieving.py:409 msgid "Generate a mask for pattern plating." msgstr "Generați o mască pentru placarea cu model." -#: flatcamGUI/PreferencesUI.py:6297 flatcamTools/ToolCopperThieving.py:431 +#: flatcamGUI/PreferencesUI.py:6298 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." @@ -12261,16 +12261,16 @@ msgstr "" "Distanța dintre posibilele elemente Copper Thieving\n" "și / sau Robber Bar și deschiderile efective ale măștii." -#: flatcamGUI/PreferencesUI.py:6316 +#: flatcamGUI/PreferencesUI.py:6317 msgid "Fiducials Tool Options" msgstr "Opțiuni Unealta Fiducials" -#: flatcamGUI/PreferencesUI.py:6327 flatcamGUI/PreferencesUI.py:6443 +#: flatcamGUI/PreferencesUI.py:6328 flatcamGUI/PreferencesUI.py:6444 #: flatcamTools/ToolCopperThieving.py:91 flatcamTools/ToolFiducials.py:151 msgid "Parameters used for this tool." msgstr "Parametrii folosiți pentru aceasta unealta." -#: flatcamGUI/PreferencesUI.py:6334 flatcamTools/ToolFiducials.py:158 +#: flatcamGUI/PreferencesUI.py:6335 flatcamTools/ToolFiducials.py:158 msgid "" "This set the fiducial diameter if fiducial type is circular,\n" "otherwise is the size of the fiducial.\n" @@ -12280,19 +12280,19 @@ msgstr "" "altfel este dimensiunea fiducial-ului.\n" "Deschiderea soldermask este dublă." -#: flatcamGUI/PreferencesUI.py:6362 flatcamTools/ToolFiducials.py:186 +#: flatcamGUI/PreferencesUI.py:6363 flatcamTools/ToolFiducials.py:186 msgid "Auto" msgstr "Auto" -#: flatcamGUI/PreferencesUI.py:6363 flatcamTools/ToolFiducials.py:187 +#: flatcamGUI/PreferencesUI.py:6364 flatcamTools/ToolFiducials.py:187 msgid "Manual" msgstr "Manual" -#: flatcamGUI/PreferencesUI.py:6365 flatcamTools/ToolFiducials.py:189 +#: flatcamGUI/PreferencesUI.py:6366 flatcamTools/ToolFiducials.py:189 msgid "Mode:" msgstr "Mod:" -#: flatcamGUI/PreferencesUI.py:6367 +#: flatcamGUI/PreferencesUI.py:6368 msgid "" "- 'Auto' - automatic placement of fiducials in the corners of the bounding " "box.\n" @@ -12301,19 +12301,19 @@ msgstr "" "- „Auto” - plasarea automată a fiducial în colțurile casetei de delimitare.\n" "- „Manual” - plasarea manuală a fiducial." -#: flatcamGUI/PreferencesUI.py:6375 flatcamTools/ToolFiducials.py:199 +#: flatcamGUI/PreferencesUI.py:6376 flatcamTools/ToolFiducials.py:199 msgid "Up" msgstr "Sus" -#: flatcamGUI/PreferencesUI.py:6376 flatcamTools/ToolFiducials.py:200 +#: flatcamGUI/PreferencesUI.py:6377 flatcamTools/ToolFiducials.py:200 msgid "Down" msgstr "Jos" -#: flatcamGUI/PreferencesUI.py:6379 flatcamTools/ToolFiducials.py:203 +#: flatcamGUI/PreferencesUI.py:6380 flatcamTools/ToolFiducials.py:203 msgid "Second fiducial" msgstr "Al 2-lea Fiducial" -#: flatcamGUI/PreferencesUI.py:6381 flatcamTools/ToolFiducials.py:205 +#: flatcamGUI/PreferencesUI.py:6382 flatcamTools/ToolFiducials.py:205 msgid "" "The position for the second fiducial.\n" "- 'Up' - the order is: bottom-left, top-left, top-right.\n" @@ -12326,19 +12326,19 @@ msgstr "" "- „Niciuna” - nu există un al doilea fiduțial. Ordinea este: jos-stânga, sus-" "dreapta." -#: flatcamGUI/PreferencesUI.py:6397 flatcamTools/ToolFiducials.py:221 +#: flatcamGUI/PreferencesUI.py:6398 flatcamTools/ToolFiducials.py:221 msgid "Cross" msgstr "Cruce" -#: flatcamGUI/PreferencesUI.py:6398 flatcamTools/ToolFiducials.py:222 +#: flatcamGUI/PreferencesUI.py:6399 flatcamTools/ToolFiducials.py:222 msgid "Chess" msgstr "Şah" -#: flatcamGUI/PreferencesUI.py:6401 flatcamTools/ToolFiducials.py:224 +#: flatcamGUI/PreferencesUI.py:6402 flatcamTools/ToolFiducials.py:224 msgid "Fiducial Type" msgstr "Tip Fiducial" -#: flatcamGUI/PreferencesUI.py:6403 flatcamTools/ToolFiducials.py:226 +#: flatcamGUI/PreferencesUI.py:6404 flatcamTools/ToolFiducials.py:226 msgid "" "The type of fiducial.\n" "- 'Circular' - this is the regular fiducial.\n" @@ -12350,19 +12350,19 @@ msgstr "" "- „Cross” - linii încrucișate fiduciare.\n" "- „Șah” - model de șah fiduciar." -#: flatcamGUI/PreferencesUI.py:6412 flatcamTools/ToolFiducials.py:235 +#: flatcamGUI/PreferencesUI.py:6413 flatcamTools/ToolFiducials.py:235 msgid "Line thickness" msgstr "Grosimea liniei" -#: flatcamGUI/PreferencesUI.py:6432 +#: flatcamGUI/PreferencesUI.py:6433 msgid "Calibration Tool Options" msgstr "Opțiuni Unealta Calibrare" -#: flatcamGUI/PreferencesUI.py:6448 flatcamTools/ToolCalibration.py:181 +#: flatcamGUI/PreferencesUI.py:6449 flatcamTools/ToolCalibration.py:181 msgid "Source Type" msgstr "Tipul sursei" -#: flatcamGUI/PreferencesUI.py:6449 flatcamTools/ToolCalibration.py:182 +#: flatcamGUI/PreferencesUI.py:6450 flatcamTools/ToolCalibration.py:182 msgid "" "The source of calibration points.\n" "It can be:\n" @@ -12375,27 +12375,27 @@ msgstr "" "pentru Gerber\n" "- Liber -> faceți clic liber pe ecran pentru a obține punctele de calibrare" -#: flatcamGUI/PreferencesUI.py:6454 flatcamTools/ToolCalibration.py:187 +#: flatcamGUI/PreferencesUI.py:6455 flatcamTools/ToolCalibration.py:187 msgid "Free" msgstr "Liber" -#: flatcamGUI/PreferencesUI.py:6468 flatcamTools/ToolCalibration.py:76 +#: flatcamGUI/PreferencesUI.py:6469 flatcamTools/ToolCalibration.py:76 msgid "Height (Z) for travelling between the points." msgstr "Înălțime (Z) pentru deplasarea între puncte." -#: flatcamGUI/PreferencesUI.py:6480 flatcamTools/ToolCalibration.py:88 +#: flatcamGUI/PreferencesUI.py:6481 flatcamTools/ToolCalibration.py:88 msgid "Verification Z" msgstr "Z Verificare" -#: flatcamGUI/PreferencesUI.py:6482 flatcamTools/ToolCalibration.py:90 +#: flatcamGUI/PreferencesUI.py:6483 flatcamTools/ToolCalibration.py:90 msgid "Height (Z) for checking the point." msgstr "Înălțimea (Z) pentru verificarea punctului." -#: flatcamGUI/PreferencesUI.py:6494 flatcamTools/ToolCalibration.py:102 +#: flatcamGUI/PreferencesUI.py:6495 flatcamTools/ToolCalibration.py:102 msgid "Zero Z tool" msgstr "Realizare Zero Z" -#: flatcamGUI/PreferencesUI.py:6496 flatcamTools/ToolCalibration.py:104 +#: flatcamGUI/PreferencesUI.py:6497 flatcamTools/ToolCalibration.py:104 msgid "" "Include a sequence to zero the height (Z)\n" "of the verification tool." @@ -12403,11 +12403,11 @@ msgstr "" "Includeți o secvență pentru aliniere la zero a înălțimii (Z)\n" "uneltei de verificare." -#: flatcamGUI/PreferencesUI.py:6505 flatcamTools/ToolCalibration.py:113 +#: flatcamGUI/PreferencesUI.py:6506 flatcamTools/ToolCalibration.py:113 msgid "Height (Z) for mounting the verification probe." msgstr "Înălțime (Z) pentru montarea sondei de verificare." -#: flatcamGUI/PreferencesUI.py:6519 flatcamTools/ToolCalibration.py:127 +#: flatcamGUI/PreferencesUI.py:6520 flatcamTools/ToolCalibration.py:127 msgid "" "Toolchange X,Y position.\n" "If no value is entered then the current\n" @@ -12417,11 +12417,11 @@ msgstr "" "Dacă nu este introdusă nicio valoare, atunci poziția\n" "(x, y) curentă se va folosi," -#: flatcamGUI/PreferencesUI.py:6530 flatcamTools/ToolCalibration.py:153 +#: flatcamGUI/PreferencesUI.py:6531 flatcamTools/ToolCalibration.py:153 msgid "Second point" msgstr "Al doilea punct" -#: flatcamGUI/PreferencesUI.py:6532 flatcamTools/ToolCalibration.py:155 +#: flatcamGUI/PreferencesUI.py:6533 flatcamTools/ToolCalibration.py:155 msgid "" "Second point in the Gcode verification can be:\n" "- top-left -> the user will align the PCB vertically\n" @@ -12431,45 +12431,45 @@ msgstr "" "- în stânga sus -> utilizatorul va alinia PCB-ul pe verticală\n" "- în jos-dreapta -> utilizatorul va alinia PCB-ul pe orizontală" -#: flatcamGUI/PreferencesUI.py:6536 flatcamTools/ToolCalibration.py:159 +#: flatcamGUI/PreferencesUI.py:6537 flatcamTools/ToolCalibration.py:159 msgid "Top-Left" msgstr "Stânga-sus" -#: flatcamGUI/PreferencesUI.py:6537 flatcamTools/ToolCalibration.py:160 +#: flatcamGUI/PreferencesUI.py:6538 flatcamTools/ToolCalibration.py:160 msgid "Bottom-Right" msgstr "Dreapta-jos" -#: flatcamGUI/PreferencesUI.py:6551 +#: flatcamGUI/PreferencesUI.py:6552 msgid "Excellon File associations" msgstr "Asocieri fisiere Excellon" -#: flatcamGUI/PreferencesUI.py:6564 flatcamGUI/PreferencesUI.py:6637 -#: flatcamGUI/PreferencesUI.py:6707 flatcamGUI/PreferencesUI.py:6777 +#: flatcamGUI/PreferencesUI.py:6565 flatcamGUI/PreferencesUI.py:6638 +#: flatcamGUI/PreferencesUI.py:6708 flatcamGUI/PreferencesUI.py:6778 msgid "Restore" msgstr "Restabilire" -#: flatcamGUI/PreferencesUI.py:6565 flatcamGUI/PreferencesUI.py:6638 -#: flatcamGUI/PreferencesUI.py:6708 +#: flatcamGUI/PreferencesUI.py:6566 flatcamGUI/PreferencesUI.py:6639 +#: flatcamGUI/PreferencesUI.py:6709 msgid "Restore the extension list to the default state." msgstr "Restabiliți lista de extensii la starea implicită." -#: flatcamGUI/PreferencesUI.py:6566 flatcamGUI/PreferencesUI.py:6639 -#: flatcamGUI/PreferencesUI.py:6709 flatcamGUI/PreferencesUI.py:6779 +#: flatcamGUI/PreferencesUI.py:6567 flatcamGUI/PreferencesUI.py:6640 +#: flatcamGUI/PreferencesUI.py:6710 flatcamGUI/PreferencesUI.py:6780 msgid "Delete All" msgstr "Sterge tot" -#: flatcamGUI/PreferencesUI.py:6567 flatcamGUI/PreferencesUI.py:6640 -#: flatcamGUI/PreferencesUI.py:6710 +#: flatcamGUI/PreferencesUI.py:6568 flatcamGUI/PreferencesUI.py:6641 +#: flatcamGUI/PreferencesUI.py:6711 msgid "Delete all extensions from the list." msgstr "Ștergeți toate extensiile din listă." -#: flatcamGUI/PreferencesUI.py:6575 flatcamGUI/PreferencesUI.py:6648 -#: flatcamGUI/PreferencesUI.py:6718 +#: flatcamGUI/PreferencesUI.py:6576 flatcamGUI/PreferencesUI.py:6649 +#: flatcamGUI/PreferencesUI.py:6719 msgid "Extensions list" msgstr "Lista de extensii" -#: flatcamGUI/PreferencesUI.py:6577 flatcamGUI/PreferencesUI.py:6650 -#: flatcamGUI/PreferencesUI.py:6720 +#: flatcamGUI/PreferencesUI.py:6578 flatcamGUI/PreferencesUI.py:6651 +#: flatcamGUI/PreferencesUI.py:6721 msgid "" "List of file extensions to be\n" "associated with FlatCAM." @@ -12477,43 +12477,43 @@ msgstr "" "Listă de extensii fisiere care să fie\n" "associate cu FlatCAM." -#: flatcamGUI/PreferencesUI.py:6597 flatcamGUI/PreferencesUI.py:6670 -#: flatcamGUI/PreferencesUI.py:6739 flatcamGUI/PreferencesUI.py:6811 +#: flatcamGUI/PreferencesUI.py:6598 flatcamGUI/PreferencesUI.py:6671 +#: flatcamGUI/PreferencesUI.py:6740 flatcamGUI/PreferencesUI.py:6812 msgid "Extension" msgstr "Extensie fișier" -#: flatcamGUI/PreferencesUI.py:6598 flatcamGUI/PreferencesUI.py:6671 -#: flatcamGUI/PreferencesUI.py:6740 +#: flatcamGUI/PreferencesUI.py:6599 flatcamGUI/PreferencesUI.py:6672 +#: flatcamGUI/PreferencesUI.py:6741 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:6606 flatcamGUI/PreferencesUI.py:6679 -#: flatcamGUI/PreferencesUI.py:6748 +#: flatcamGUI/PreferencesUI.py:6607 flatcamGUI/PreferencesUI.py:6680 +#: flatcamGUI/PreferencesUI.py:6749 msgid "Add Extension" msgstr "Adaugă Extensie" -#: flatcamGUI/PreferencesUI.py:6607 flatcamGUI/PreferencesUI.py:6680 -#: flatcamGUI/PreferencesUI.py:6749 +#: flatcamGUI/PreferencesUI.py:6608 flatcamGUI/PreferencesUI.py:6681 +#: flatcamGUI/PreferencesUI.py:6750 msgid "Add a file extension to the list" msgstr "Adăugați o extensie de fișier la listă" -#: flatcamGUI/PreferencesUI.py:6608 flatcamGUI/PreferencesUI.py:6681 -#: flatcamGUI/PreferencesUI.py:6750 +#: flatcamGUI/PreferencesUI.py:6609 flatcamGUI/PreferencesUI.py:6682 +#: flatcamGUI/PreferencesUI.py:6751 msgid "Delete Extension" msgstr "Ștergeți Extensia" -#: flatcamGUI/PreferencesUI.py:6609 flatcamGUI/PreferencesUI.py:6682 -#: flatcamGUI/PreferencesUI.py:6751 +#: flatcamGUI/PreferencesUI.py:6610 flatcamGUI/PreferencesUI.py:6683 +#: flatcamGUI/PreferencesUI.py:6752 msgid "Delete a file extension from the list" msgstr "Ștergeți o extensie de fișier din listă" -#: flatcamGUI/PreferencesUI.py:6616 flatcamGUI/PreferencesUI.py:6689 -#: flatcamGUI/PreferencesUI.py:6758 +#: flatcamGUI/PreferencesUI.py:6617 flatcamGUI/PreferencesUI.py:6690 +#: flatcamGUI/PreferencesUI.py:6759 msgid "Apply Association" msgstr "Aplicați Asociere" -#: flatcamGUI/PreferencesUI.py:6617 flatcamGUI/PreferencesUI.py:6690 -#: flatcamGUI/PreferencesUI.py:6759 +#: flatcamGUI/PreferencesUI.py:6618 flatcamGUI/PreferencesUI.py:6691 +#: flatcamGUI/PreferencesUI.py:6760 msgid "" "Apply the file associations between\n" "FlatCAM and the files with above extensions.\n" @@ -12525,32 +12525,32 @@ msgstr "" "Vor fi active după următorul login.\n" "Functionează numai pt Windows." -#: flatcamGUI/PreferencesUI.py:6634 +#: flatcamGUI/PreferencesUI.py:6635 msgid "GCode File associations" msgstr "Asocierile de fisiere G-Code" -#: flatcamGUI/PreferencesUI.py:6704 +#: flatcamGUI/PreferencesUI.py:6705 msgid "Gerber File associations" msgstr "Asocierile de fisiere Gerber" -#: flatcamGUI/PreferencesUI.py:6774 +#: flatcamGUI/PreferencesUI.py:6775 msgid "Autocompleter Keywords" msgstr "Cuvinte cheie pt autocomplete" -#: flatcamGUI/PreferencesUI.py:6778 +#: flatcamGUI/PreferencesUI.py:6779 msgid "Restore the autocompleter keywords list to the default state." msgstr "" "Restaurați lista cuvinte cheie pentru autocompletere la starea implicită." -#: flatcamGUI/PreferencesUI.py:6780 +#: flatcamGUI/PreferencesUI.py:6781 msgid "Delete all autocompleter keywords from the list." msgstr "Ștergeți din listă toate cuvintele cheie pentru autocompletare." -#: flatcamGUI/PreferencesUI.py:6788 +#: flatcamGUI/PreferencesUI.py:6789 msgid "Keywords list" msgstr "Lista de cuvinte cheie" -#: flatcamGUI/PreferencesUI.py:6790 +#: flatcamGUI/PreferencesUI.py:6791 msgid "" "List of keywords used by\n" "the autocompleter in FlatCAM.\n" @@ -12562,23 +12562,23 @@ msgstr "" "Autocompleterul este instalat\n" "în Editorul de coduri și pentru Shell Tcl." -#: flatcamGUI/PreferencesUI.py:6812 +#: flatcamGUI/PreferencesUI.py:6813 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:6820 +#: flatcamGUI/PreferencesUI.py:6821 msgid "Add keyword" msgstr "Adăugați cuvant cheie" -#: flatcamGUI/PreferencesUI.py:6821 +#: flatcamGUI/PreferencesUI.py:6822 msgid "Add a keyword to the list" msgstr "Adăugați un cuvânt cheie la listă" -#: flatcamGUI/PreferencesUI.py:6822 +#: flatcamGUI/PreferencesUI.py:6823 msgid "Delete keyword" msgstr "Ștergeți cuvântul cheie" -#: flatcamGUI/PreferencesUI.py:6823 +#: flatcamGUI/PreferencesUI.py:6824 msgid "Delete a keyword from the list" msgstr "Ștergeți un cuvânt cheie din listă" @@ -13266,7 +13266,6 @@ msgid "mm" msgstr "mm" #: flatcamTools/ToolCopperThieving.py:458 -#| msgid "info" msgid "in" msgstr "in" @@ -13327,9 +13326,9 @@ msgstr "Unealta Copper Thieving efectuata." #: flatcamTools/ToolCopperThieving.py:754 #: flatcamTools/ToolCopperThieving.py:787 flatcamTools/ToolCutOut.py:466 -#: flatcamTools/ToolCutOut.py:640 flatcamTools/ToolNonCopperClear.py:1156 -#: flatcamTools/ToolNonCopperClear.py:1197 -#: flatcamTools/ToolNonCopperClear.py:1229 flatcamTools/ToolPaint.py:1079 +#: flatcamTools/ToolCutOut.py:640 flatcamTools/ToolNonCopperClear.py:1157 +#: flatcamTools/ToolNonCopperClear.py:1198 +#: flatcamTools/ToolNonCopperClear.py:1230 flatcamTools/ToolPaint.py:1080 #: flatcamTools/ToolPanelize.py:401 flatcamTools/ToolPanelize.py:416 #: flatcamTools/ToolSub.py:288 flatcamTools/ToolSub.py:301 #: flatcamTools/ToolSub.py:492 flatcamTools/ToolSub.py:507 @@ -13339,7 +13338,7 @@ msgid "Could not retrieve object" msgstr "Nu s-a putut incărca obiectul" #: flatcamTools/ToolCopperThieving.py:764 -#: flatcamTools/ToolNonCopperClear.py:1210 +#: flatcamTools/ToolNonCopperClear.py:1211 msgid "Click the start point of the area." msgstr "Faceți clic pe punctul de pornire al zonei." @@ -13348,7 +13347,7 @@ msgid "Click the end point of the filling area." msgstr "Faceți clic pe punctul final al zonei de umplere." #: flatcamTools/ToolCopperThieving.py:821 -#: flatcamTools/ToolNonCopperClear.py:1266 flatcamTools/ToolPaint.py:1206 +#: flatcamTools/ToolNonCopperClear.py:1267 flatcamTools/ToolPaint.py:1207 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 " @@ -13382,12 +13381,12 @@ msgid "Geometry not supported for bounding box" msgstr "Geometria nu este acceptată pentru caseta de delimitare" #: flatcamTools/ToolCopperThieving.py:1061 -#: flatcamTools/ToolNonCopperClear.py:1517 flatcamTools/ToolPaint.py:2571 +#: flatcamTools/ToolNonCopperClear.py:1518 flatcamTools/ToolPaint.py:2572 msgid "No object available." msgstr "Nici-un obiect disponibil." #: flatcamTools/ToolCopperThieving.py:1098 -#: flatcamTools/ToolNonCopperClear.py:1559 +#: flatcamTools/ToolNonCopperClear.py:1560 msgid "The reference object type is not supported." msgstr "Tipul de obiect de referintă nu este acceptat." @@ -13602,8 +13601,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:1160 -#: flatcamTools/ToolPaint.py:999 flatcamTools/ToolPanelize.py:406 +#: flatcamTools/ToolCutOut.py:644 flatcamTools/ToolNonCopperClear.py:1161 +#: flatcamTools/ToolPaint.py:1000 flatcamTools/ToolPanelize.py:406 #: tclCommands/TclCommandBbox.py:70 tclCommands/TclCommandNregions.py:70 msgid "Object not found" msgstr "Obiectul nu a fost gasit" @@ -14612,116 +14611,116 @@ msgstr "" msgid "Generate Geometry" msgstr "Genereza Geometrie" -#: flatcamTools/ToolNonCopperClear.py:587 flatcamTools/ToolPaint.py:498 +#: flatcamTools/ToolNonCopperClear.py:588 flatcamTools/ToolPaint.py:499 #: flatcamTools/ToolSolderPaste.py:553 msgid "New Tool" msgstr "O Noua Unealtă" -#: flatcamTools/ToolNonCopperClear.py:986 flatcamTools/ToolPaint.py:771 -#: flatcamTools/ToolSolderPaste.py:884 +#: flatcamTools/ToolNonCopperClear.py:987 flatcamTools/ToolPaint.py:772 +#: flatcamTools/ToolSolderPaste.py:887 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:1017 flatcamTools/ToolPaint.py:796 +#: flatcamTools/ToolNonCopperClear.py:1018 flatcamTools/ToolPaint.py:797 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:1022 flatcamTools/ToolPaint.py:802 +#: flatcamTools/ToolNonCopperClear.py:1023 flatcamTools/ToolPaint.py:803 msgid "New tool added to Tool Table." msgstr "O noua unealtă a fost adăugată in Tabela de Unelte." -#: flatcamTools/ToolNonCopperClear.py:1066 flatcamTools/ToolPaint.py:848 +#: flatcamTools/ToolNonCopperClear.py:1067 flatcamTools/ToolPaint.py:849 msgid "Tool from Tool Table was edited." msgstr "O unealtă din Tabela de Unelte a fost editata." -#: flatcamTools/ToolNonCopperClear.py:1077 flatcamTools/ToolPaint.py:860 -#: flatcamTools/ToolSolderPaste.py:975 +#: flatcamTools/ToolNonCopperClear.py:1078 flatcamTools/ToolPaint.py:861 +#: flatcamTools/ToolSolderPaste.py:978 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:1124 flatcamTools/ToolPaint.py:958 +#: flatcamTools/ToolNonCopperClear.py:1125 flatcamTools/ToolPaint.py:959 msgid "Delete failed. Select a tool to delete." msgstr "Ștergere eșuată. Selectează o unealtă pt ștergere." -#: flatcamTools/ToolNonCopperClear.py:1129 flatcamTools/ToolPaint.py:964 +#: flatcamTools/ToolNonCopperClear.py:1130 flatcamTools/ToolPaint.py:965 msgid "Tool(s) deleted from Tool Table." msgstr "Au fost șterse unelte din Tabela de Unelte." -#: flatcamTools/ToolNonCopperClear.py:1176 +#: flatcamTools/ToolNonCopperClear.py:1177 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:1185 flatcamTools/ToolPaint.py:1028 +#: flatcamTools/ToolNonCopperClear.py:1186 flatcamTools/ToolPaint.py:1029 msgid "No selected tools in Tool Table." msgstr "Nu sunt unelte selectate in Tabela de Unelte." -#: flatcamTools/ToolNonCopperClear.py:1260 flatcamTools/ToolPaint.py:1200 +#: flatcamTools/ToolNonCopperClear.py:1261 flatcamTools/ToolPaint.py:1201 msgid "Click the end point of the paint area." msgstr "Faceți clic pe punctul final al zonei de pictat." -#: flatcamTools/ToolNonCopperClear.py:1414 -#: flatcamTools/ToolNonCopperClear.py:1416 +#: flatcamTools/ToolNonCopperClear.py:1415 +#: flatcamTools/ToolNonCopperClear.py:1417 msgid "Non-Copper clearing ..." msgstr "Curățare Non-Cupru ..." -#: flatcamTools/ToolNonCopperClear.py:1426 +#: flatcamTools/ToolNonCopperClear.py:1427 msgid "NCC Tool started. Reading parameters." msgstr "Unealta NCC a pornit. Se citesc parametrii." -#: flatcamTools/ToolNonCopperClear.py:1489 +#: flatcamTools/ToolNonCopperClear.py:1490 msgid "NCC Tool. Preparing non-copper polygons." msgstr "Unealta NCC. Se pregătesc poligoanele non-cupru." -#: flatcamTools/ToolNonCopperClear.py:1585 +#: flatcamTools/ToolNonCopperClear.py:1586 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:1617 +#: flatcamTools/ToolNonCopperClear.py:1618 msgid "NCC Tool. Calculate 'empty' area." msgstr "Unealta NCC. Calculează aria 'goală'." -#: flatcamTools/ToolNonCopperClear.py:1630 -#: flatcamTools/ToolNonCopperClear.py:1729 -#: flatcamTools/ToolNonCopperClear.py:1741 -#: flatcamTools/ToolNonCopperClear.py:1990 -#: flatcamTools/ToolNonCopperClear.py:2086 -#: flatcamTools/ToolNonCopperClear.py:2098 +#: flatcamTools/ToolNonCopperClear.py:1631 +#: flatcamTools/ToolNonCopperClear.py:1730 +#: flatcamTools/ToolNonCopperClear.py:1742 +#: flatcamTools/ToolNonCopperClear.py:1991 +#: flatcamTools/ToolNonCopperClear.py:2087 +#: flatcamTools/ToolNonCopperClear.py:2099 msgid "Buffering finished" msgstr "Buferarea terminată" -#: flatcamTools/ToolNonCopperClear.py:1748 -#: flatcamTools/ToolNonCopperClear.py:2104 +#: flatcamTools/ToolNonCopperClear.py:1749 +#: flatcamTools/ToolNonCopperClear.py:2105 msgid "The selected object is not suitable for copper clearing." msgstr "Obiectul selectat nu este potrivit pentru curățarea cuprului." -#: flatcamTools/ToolNonCopperClear.py:1753 -#: flatcamTools/ToolNonCopperClear.py:2109 +#: flatcamTools/ToolNonCopperClear.py:1754 +#: flatcamTools/ToolNonCopperClear.py:2110 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:1760 +#: flatcamTools/ToolNonCopperClear.py:1761 msgid "NCC Tool. Finished calculation of 'empty' area." msgstr "Unealta NCC. S-a terminat calculul suprafetei 'goale'." -#: flatcamTools/ToolNonCopperClear.py:1773 -#: flatcamTools/ToolNonCopperClear.py:2134 +#: flatcamTools/ToolNonCopperClear.py:1774 +#: flatcamTools/ToolNonCopperClear.py:2135 msgid "NCC Tool clearing with tool diameter = " msgstr "Unealta NCC cu diametrul uneltei = " -#: flatcamTools/ToolNonCopperClear.py:1776 -#: flatcamTools/ToolNonCopperClear.py:2137 +#: flatcamTools/ToolNonCopperClear.py:1777 +#: flatcamTools/ToolNonCopperClear.py:2138 msgid "started." msgstr "a inceput." -#: flatcamTools/ToolNonCopperClear.py:1919 +#: flatcamTools/ToolNonCopperClear.py:1920 msgid "" "There is no NCC Geometry in the file.\n" "Usually it means that the tool diameter is too big for the painted " @@ -14733,25 +14732,25 @@ msgstr "" "pictată.\n" "Schimbați parametrii Paint și încercați din nou." -#: flatcamTools/ToolNonCopperClear.py:1939 +#: flatcamTools/ToolNonCopperClear.py:1940 msgid "NCC Tool clear all done." msgstr "Unealta NCC curătare toate efectuată." -#: flatcamTools/ToolNonCopperClear.py:1941 +#: flatcamTools/ToolNonCopperClear.py:1942 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:1944 -#: flatcamTools/ToolNonCopperClear.py:2310 +#: flatcamTools/ToolNonCopperClear.py:1945 +#: flatcamTools/ToolNonCopperClear.py:2311 msgid "tools" msgstr "unelte" -#: flatcamTools/ToolNonCopperClear.py:2306 +#: flatcamTools/ToolNonCopperClear.py:2307 msgid "NCC Tool Rest Machining clear all done." msgstr "Unealta NCC curătare cu prelucrare tip 'rest' efectuată." -#: flatcamTools/ToolNonCopperClear.py:2309 +#: flatcamTools/ToolNonCopperClear.py:2310 msgid "" "NCC Tool Rest Machining clear all done but the copper features isolation is " "broken for" @@ -14759,7 +14758,7 @@ msgstr "" "Unealta NCC curătare toate cu prelucrare tip 'rest' efectuată dar izolatia " "este intreruptă pentru" -#: flatcamTools/ToolNonCopperClear.py:2756 +#: flatcamTools/ToolNonCopperClear.py:2757 msgid "" "Try to use the Buffering Type = Full in Preferences -> Gerber General. " "Reload the Gerber file after this change." @@ -15064,72 +15063,72 @@ msgstr "" "- „Obiect de referință” - va face o curățare fără cupru în zona specificată " "de un alt obiect." -#: flatcamTools/ToolPaint.py:978 +#: flatcamTools/ToolPaint.py:979 msgid "Paint Tool. Reading parameters." msgstr "Unealta Paint. Se citesc parametrii." -#: flatcamTools/ToolPaint.py:993 +#: flatcamTools/ToolPaint.py:994 #, python-format msgid "Could not retrieve object: %s" msgstr "Nu s-a putut incărca obiectul: %s" -#: flatcamTools/ToolPaint.py:1007 +#: flatcamTools/ToolPaint.py:1008 msgid "Can't do Paint on MultiGeo geometries" msgstr "Nu se poate face 'pictare' pe geometrii MultiGeo" -#: flatcamTools/ToolPaint.py:1040 +#: flatcamTools/ToolPaint.py:1041 msgid "Click on a polygon to paint it." msgstr "Faceți clic pe un poligon pentru a-l picta." -#: flatcamTools/ToolPaint.py:1059 +#: flatcamTools/ToolPaint.py:1060 msgid "Click the start point of the paint area." msgstr "Faceți clic pe punctul de pornire al zonei de pictat." -#: flatcamTools/ToolPaint.py:1127 +#: flatcamTools/ToolPaint.py:1128 msgid "Click to add next polygon or right click to start painting." msgstr "" "Faceți clic pentru a adăuga următorul poligon sau faceți clic dreapta pentru " "a începe Paint." -#: flatcamTools/ToolPaint.py:1140 +#: flatcamTools/ToolPaint.py:1141 msgid "Click to add/remove next polygon or right click to start painting." msgstr "" "Faceți clic pentru a adăuga / elimina următorul poligon sau faceți clic " "dreapta pentru a începe Paint." -#: 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 +#: flatcamTools/ToolPaint.py:1349 flatcamTools/ToolPaint.py:1352 +#: flatcamTools/ToolPaint.py:1354 flatcamTools/ToolPaint.py:1886 +#: flatcamTools/ToolPaint.py:1890 flatcamTools/ToolPaint.py:1893 +#: flatcamTools/ToolPaint.py:2175 flatcamTools/ToolPaint.py:2180 +#: flatcamTools/ToolPaint.py:2183 flatcamTools/ToolPaint.py:2357 +#: flatcamTools/ToolPaint.py:2364 msgid "Paint Tool." msgstr "Unealta Paint." -#: flatcamTools/ToolPaint.py:1348 flatcamTools/ToolPaint.py:1351 -#: flatcamTools/ToolPaint.py:1353 +#: flatcamTools/ToolPaint.py:1349 flatcamTools/ToolPaint.py:1352 +#: flatcamTools/ToolPaint.py:1354 msgid "Normal painting polygon task started." msgstr "Taskul de pictare normal a unui polygon a inceput." -#: flatcamTools/ToolPaint.py:1349 flatcamTools/ToolPaint.py:1711 -#: flatcamTools/ToolPaint.py:1886 flatcamTools/ToolPaint.py:2176 -#: flatcamTools/ToolPaint.py:2358 +#: flatcamTools/ToolPaint.py:1350 flatcamTools/ToolPaint.py:1712 +#: flatcamTools/ToolPaint.py:1887 flatcamTools/ToolPaint.py:2177 +#: flatcamTools/ToolPaint.py:2359 msgid "Buffering geometry..." msgstr "Crează o geometrie de tipul Bufer..." -#: flatcamTools/ToolPaint.py:1371 +#: flatcamTools/ToolPaint.py:1372 msgid "No polygon found." msgstr "Nu s-a gasit nici-un poligon." -#: flatcamTools/ToolPaint.py:1405 +#: flatcamTools/ToolPaint.py:1406 msgid "Painting polygon..." msgstr "Se 'pictează' un poligon..." -#: flatcamTools/ToolPaint.py:1453 +#: flatcamTools/ToolPaint.py:1454 msgid "Geometry could not be painted completely" msgstr "Geometria nu a fost posibil să fie 'pictată' complet" -#: flatcamTools/ToolPaint.py:1486 +#: flatcamTools/ToolPaint.py:1487 msgid "" "Could not do Paint. Try a different combination of parameters. Or a " "different strategy of paint" @@ -15137,9 +15136,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:1538 flatcamTools/ToolPaint.py:1865 -#: flatcamTools/ToolPaint.py:2015 flatcamTools/ToolPaint.py:2336 -#: flatcamTools/ToolPaint.py:2490 +#: flatcamTools/ToolPaint.py:1539 flatcamTools/ToolPaint.py:1866 +#: flatcamTools/ToolPaint.py:2016 flatcamTools/ToolPaint.py:2337 +#: flatcamTools/ToolPaint.py:2491 msgid "" "There is no Painting Geometry in the file.\n" "Usually it means that the tool diameter is too big for the painted " @@ -15151,36 +15150,36 @@ msgstr "" "geometrice.\n" "Schimbă parametrii de 'pictare' și încearcă din nou." -#: flatcamTools/ToolPaint.py:1544 +#: flatcamTools/ToolPaint.py:1545 msgid "Paint Single Done." msgstr "Pictarea unui polygon efectuată." -#: flatcamTools/ToolPaint.py:1576 flatcamTools/ToolPaint.py:2043 -#: flatcamTools/ToolPaint.py:2518 +#: flatcamTools/ToolPaint.py:1577 flatcamTools/ToolPaint.py:2044 +#: flatcamTools/ToolPaint.py:2519 msgid "Polygon Paint started ..." msgstr "Paint pt poligon a inceput ..." -#: flatcamTools/ToolPaint.py:1628 flatcamTools/ToolPaint.py:2105 +#: flatcamTools/ToolPaint.py:1629 flatcamTools/ToolPaint.py:2106 msgid "Painting polygons..." msgstr "Se 'pictează' poligoane..." -#: flatcamTools/ToolPaint.py:1710 flatcamTools/ToolPaint.py:1713 -#: flatcamTools/ToolPaint.py:1715 +#: flatcamTools/ToolPaint.py:1711 flatcamTools/ToolPaint.py:1714 +#: flatcamTools/ToolPaint.py:1716 msgid "Paint Tool. Normal painting all task started." msgstr "Unealta Paint. Taskul de pictare a tuturor poligoanelor a inceput." -#: flatcamTools/ToolPaint.py:1749 flatcamTools/ToolPaint.py:1921 -#: flatcamTools/ToolPaint.py:2223 flatcamTools/ToolPaint.py:2399 +#: flatcamTools/ToolPaint.py:1750 flatcamTools/ToolPaint.py:1922 +#: flatcamTools/ToolPaint.py:2224 flatcamTools/ToolPaint.py:2400 msgid "Painting with tool diameter = " msgstr "Pictand cu o unealtă cu diametrul = " -#: flatcamTools/ToolPaint.py:1752 flatcamTools/ToolPaint.py:1924 -#: flatcamTools/ToolPaint.py:2226 flatcamTools/ToolPaint.py:2402 +#: flatcamTools/ToolPaint.py:1753 flatcamTools/ToolPaint.py:1925 +#: flatcamTools/ToolPaint.py:2227 flatcamTools/ToolPaint.py:2403 msgid "started" msgstr "a inceput" -#: flatcamTools/ToolPaint.py:1814 flatcamTools/ToolPaint.py:1970 -#: flatcamTools/ToolPaint.py:2286 flatcamTools/ToolPaint.py:2446 +#: flatcamTools/ToolPaint.py:1815 flatcamTools/ToolPaint.py:1971 +#: flatcamTools/ToolPaint.py:2287 flatcamTools/ToolPaint.py:2447 msgid "" "Could not do Paint All. Try a different combination of parameters. Or a " "different Method of paint" @@ -15188,35 +15187,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:1874 +#: flatcamTools/ToolPaint.py:1875 msgid "Paint All Done." msgstr "Pictarea Tuturor poligoanelor efectuată." -#: flatcamTools/ToolPaint.py:1885 flatcamTools/ToolPaint.py:1889 -#: flatcamTools/ToolPaint.py:1892 +#: flatcamTools/ToolPaint.py:1886 flatcamTools/ToolPaint.py:1890 +#: flatcamTools/ToolPaint.py:1893 msgid "Rest machining painting all task started." msgstr "" "Taskul de pictare prin prelucrare 'rest' a tuturor poligoanelor a inceput." -#: flatcamTools/ToolPaint.py:2024 flatcamTools/ToolPaint.py:2499 +#: flatcamTools/ToolPaint.py:2025 flatcamTools/ToolPaint.py:2500 msgid "Paint All with Rest-Machining done." msgstr "'Paint' pentru toate poligoanele cu strategia Rest a fost efectuată." -#: flatcamTools/ToolPaint.py:2175 flatcamTools/ToolPaint.py:2179 -#: flatcamTools/ToolPaint.py:2182 +#: flatcamTools/ToolPaint.py:2176 flatcamTools/ToolPaint.py:2180 +#: flatcamTools/ToolPaint.py:2183 msgid "Normal painting area task started." msgstr "Taskul de pictare normal a unei arii a inceput." -#: flatcamTools/ToolPaint.py:2345 +#: flatcamTools/ToolPaint.py:2346 msgid "Paint Area Done." msgstr "Paint pt o zona efectuata." -#: flatcamTools/ToolPaint.py:2357 flatcamTools/ToolPaint.py:2363 +#: flatcamTools/ToolPaint.py:2358 flatcamTools/ToolPaint.py:2364 msgid "Rest machining painting area task started." msgstr "" "Taskul de pictare a unei arii cu strategia de masinare 'rest' a inceput." -#: flatcamTools/ToolPaint.py:2360 +#: flatcamTools/ToolPaint.py:2361 msgid "Paint Tool. Rest machining painting area task started." msgstr "" "Unealta Paint. Taskul de pictare a unei arii cu strategia de masinare 'rest' " @@ -16184,95 +16183,95 @@ msgstr "" "avand posibilitatea de a vizualiza continutul acestuia sau de a-l salva\n" "intr-un fişier GCode pe HDD." -#: flatcamTools/ToolSolderPaste.py:914 +#: flatcamTools/ToolSolderPaste.py:917 msgid "Adding Nozzle tool cancelled. Tool already in Tool Table." msgstr "" "Adăugarea unei unelte Nozzle a fost anulată. Unealta există deja in Tabela " "de Unelte." -#: flatcamTools/ToolSolderPaste.py:920 +#: flatcamTools/ToolSolderPaste.py:923 msgid "New Nozzle tool added to Tool Table." msgstr "A fost adăugată o noua unealtă Nozzle in Tabela de Unelte." -#: flatcamTools/ToolSolderPaste.py:963 +#: flatcamTools/ToolSolderPaste.py:966 msgid "Nozzle tool from Tool Table was edited." msgstr "Unealta Nozzle din Tabela de Unelte a fost editată." -#: flatcamTools/ToolSolderPaste.py:1021 +#: flatcamTools/ToolSolderPaste.py:1024 msgid "Delete failed. Select a Nozzle tool to delete." msgstr "Ștergerea a eșuat. Selectează o unealtă Nozzle pt a o șterge." -#: flatcamTools/ToolSolderPaste.py:1027 +#: flatcamTools/ToolSolderPaste.py:1030 msgid "Nozzle tool(s) deleted from Tool Table." msgstr "Uneltele (nozzle) au fost șterse din Tabela de Unelte." -#: flatcamTools/ToolSolderPaste.py:1083 +#: flatcamTools/ToolSolderPaste.py:1086 msgid "No SolderPaste mask Gerber object loaded." msgstr "" "Nu este incărcat ni-un obiect Gerber cu informatia măstii pt pasta de fludor." -#: flatcamTools/ToolSolderPaste.py:1101 +#: flatcamTools/ToolSolderPaste.py:1104 msgid "Creating Solder Paste dispensing geometry." msgstr "Se creează Geometrie pt dispensare pastă de fludor." -#: flatcamTools/ToolSolderPaste.py:1114 +#: flatcamTools/ToolSolderPaste.py:1117 msgid "No Nozzle tools in the tool table." msgstr "Nu sunt unelte Nozzle in Tabela de Unelte." -#: flatcamTools/ToolSolderPaste.py:1241 +#: flatcamTools/ToolSolderPaste.py:1244 msgid "Cancelled. Empty file, it has no geometry..." msgstr "Anulat. Fişier gol, nu are geometrie ..." -#: flatcamTools/ToolSolderPaste.py:1245 +#: flatcamTools/ToolSolderPaste.py:1248 msgid "Solder Paste geometry generated successfully" msgstr "" "Obiectul Geometrie pt dispens. de pastă de fludor a fost generat cu succes" -#: flatcamTools/ToolSolderPaste.py:1252 +#: flatcamTools/ToolSolderPaste.py:1255 msgid "Some or all pads have no solder due of inadequate nozzle diameters..." msgstr "" "Cel puțin unele pad-uri nu au pastă de fludor datorita diametrelor uneltelor " "(nozzle) ne adecvate." -#: flatcamTools/ToolSolderPaste.py:1266 +#: flatcamTools/ToolSolderPaste.py:1269 msgid "Generating Solder Paste dispensing geometry..." msgstr "Se generează Geometria de dispensare a pastei de fludor ..." -#: flatcamTools/ToolSolderPaste.py:1286 +#: flatcamTools/ToolSolderPaste.py:1289 msgid "There is no Geometry object available." msgstr "Nu există obiect Geometrie disponibil." -#: flatcamTools/ToolSolderPaste.py:1291 +#: flatcamTools/ToolSolderPaste.py:1294 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:1398 +#: flatcamTools/ToolSolderPaste.py:1401 msgid "ToolSolderPaste CNCjob created" msgstr "ToolSolderPaste CNCjob a fost creat" -#: flatcamTools/ToolSolderPaste.py:1419 +#: flatcamTools/ToolSolderPaste.py:1422 msgid "SP GCode Editor" msgstr "Editor GCode SP" -#: flatcamTools/ToolSolderPaste.py:1431 flatcamTools/ToolSolderPaste.py:1436 -#: flatcamTools/ToolSolderPaste.py:1491 +#: flatcamTools/ToolSolderPaste.py:1434 flatcamTools/ToolSolderPaste.py:1439 +#: flatcamTools/ToolSolderPaste.py:1494 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:1461 +#: flatcamTools/ToolSolderPaste.py:1464 msgid "No Gcode in the object" msgstr "Nu există cod GCode in acest obiect" -#: flatcamTools/ToolSolderPaste.py:1501 +#: flatcamTools/ToolSolderPaste.py:1504 msgid "Export GCode ..." msgstr "Exporta GCode ..." -#: flatcamTools/ToolSolderPaste.py:1549 +#: flatcamTools/ToolSolderPaste.py:1552 msgid "Solder paste dispenser GCode file saved to" msgstr "Fişierul GCode pt dispensare pastă de fludor este salvat in" diff --git a/locale/ru/LC_MESSAGES/strings.po b/locale/ru/LC_MESSAGES/strings.po index 4bf61c5c..8660df7b 100644 --- a/locale/ru/LC_MESSAGES/strings.po +++ b/locale/ru/LC_MESSAGES/strings.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"POT-Creation-Date: 2019-12-14 02:48+0200\n" +"POT-Creation-Date: 2019-12-15 16:27+0200\n" "PO-Revision-Date: \n" "Last-Translator: Andrey Kultyapov \n" "Language-Team: \n" @@ -20,15 +20,15 @@ msgstr "" "X-Poedit-SearchPathExcluded-1: doc\n" "X-Poedit-SearchPathExcluded-2: tests\n" -#: FlatCAMApp.py:999 +#: FlatCAMApp.py:1004 msgid "FlatCAM is initializing ..." msgstr "Запуск FlatCAM ..." -#: FlatCAMApp.py:1580 +#: FlatCAMApp.py:1585 msgid "Could not find the Language files. The App strings are missing." msgstr "Не удалось найти языковые файлы. Строки приложения отсутствуют." -#: FlatCAMApp.py:1673 +#: FlatCAMApp.py:1678 msgid "" "FlatCAM is initializing ...\n" "Canvas initialization started." @@ -36,7 +36,7 @@ msgstr "" "Запуск FlatCAM ...\n" "Инициализация рабочей области." -#: FlatCAMApp.py:1691 +#: FlatCAMApp.py:1696 msgid "" "FlatCAM is initializing ...\n" "Canvas initialization started.\n" @@ -46,7 +46,7 @@ msgstr "" "Инициализация рабочей области.\n" "Инициализация рабочей области завершена за" -#: FlatCAMApp.py:2388 +#: FlatCAMApp.py:2395 msgid "" "Type >help< to get started\n" "\n" @@ -54,13 +54,13 @@ msgstr "" "Введите >help< для начала работы\n" "\n" -#: FlatCAMApp.py:2643 FlatCAMApp.py:9138 +#: FlatCAMApp.py:2650 FlatCAMApp.py:9170 msgid "New Project - Not saved" msgstr "Новый проект - Не сохранён" -#: FlatCAMApp.py:2718 FlatCAMApp.py:9206 FlatCAMApp.py:9243 FlatCAMApp.py:9284 -#: FlatCAMApp.py:9355 FlatCAMApp.py:10109 FlatCAMApp.py:11123 -#: FlatCAMApp.py:11182 +#: FlatCAMApp.py:2725 FlatCAMApp.py:9238 FlatCAMApp.py:9275 FlatCAMApp.py:9316 +#: FlatCAMApp.py:9387 FlatCAMApp.py:10141 FlatCAMApp.py:11155 +#: FlatCAMApp.py:11214 msgid "" "Canvas initialization started.\n" "Canvas initialization finished in" @@ -68,47 +68,47 @@ msgstr "" "Инициализация холста.\n" "Инициализация холста завершена за" -#: FlatCAMApp.py:2720 +#: FlatCAMApp.py:2727 msgid "Executing Tcl Script ..." msgstr "Выполнение Tcl-сценария ..." -#: FlatCAMApp.py:2735 +#: FlatCAMApp.py:2742 msgid "" "Found old default preferences files. Please reboot the application to update." msgstr "" "Найдены старые файлы настроек по умолчанию. Пожалуйста, перезагрузите " "приложение для обновления." -#: FlatCAMApp.py:2779 ObjectCollection.py:90 flatcamTools/ToolImage.py:248 +#: FlatCAMApp.py:2786 ObjectCollection.py:90 flatcamTools/ToolImage.py:248 #: flatcamTools/ToolPcbWizard.py:301 flatcamTools/ToolPcbWizard.py:324 msgid "Open cancelled." msgstr "Открытие отменено." -#: FlatCAMApp.py:2795 +#: FlatCAMApp.py:2802 msgid "Open Config file failed." msgstr "Не удалось открыть файл конфигурации." -#: FlatCAMApp.py:2810 +#: FlatCAMApp.py:2817 msgid "Open Script file failed." msgstr "Ошибка открытия файла сценария." -#: FlatCAMApp.py:2836 +#: FlatCAMApp.py:2843 msgid "Open Excellon file failed." msgstr "Не удалось открыть файл Excellon." -#: FlatCAMApp.py:2849 +#: FlatCAMApp.py:2856 msgid "Open GCode file failed." msgstr "Не удалось открыть файл GCode." -#: FlatCAMApp.py:2862 +#: FlatCAMApp.py:2869 msgid "Open Gerber file failed." msgstr "Не удалось открыть файл Gerber." -#: FlatCAMApp.py:3203 +#: FlatCAMApp.py:3223 msgid "Select a Geometry, Gerber or Excellon Object to edit." msgstr "Выберите объект Geometry, Gerber или Excellon для редактирования." -#: FlatCAMApp.py:3218 +#: FlatCAMApp.py:3238 msgid "" "Simultaneous editing of tools geometry in a MultiGeo Geometry is not " "possible.\n" @@ -117,82 +117,82 @@ msgstr "" "Одновременное редактирование геометрии в MultiGeo Geometry невозможно.\n" "Редактируйте только одну геометрию за раз." -#: FlatCAMApp.py:3273 +#: FlatCAMApp.py:3293 msgid "Editor is activated ..." msgstr "Редактор активирован ..." -#: FlatCAMApp.py:3294 +#: FlatCAMApp.py:3314 msgid "Do you want to save the edited object?" msgstr "Вы хотите сохранить редактируемый объект?" -#: FlatCAMApp.py:3295 flatcamGUI/FlatCAMGUI.py:1969 +#: FlatCAMApp.py:3315 flatcamGUI/FlatCAMGUI.py:2134 msgid "Close Editor" msgstr "Закрыть редактор" -#: 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 +#: FlatCAMApp.py:3318 FlatCAMApp.py:5029 FlatCAMApp.py:7889 FlatCAMApp.py:7915 +#: FlatCAMApp.py:9077 FlatCAMTranslation.py:108 FlatCAMTranslation.py:193 +#: flatcamGUI/PreferencesUI.py:1035 msgid "Yes" msgstr "Да" -#: 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 +#: FlatCAMApp.py:3319 FlatCAMApp.py:5030 FlatCAMApp.py:7890 FlatCAMApp.py:7916 +#: FlatCAMApp.py:9078 FlatCAMTranslation.py:109 FlatCAMTranslation.py:194 +#: flatcamGUI/PreferencesUI.py:1036 flatcamGUI/PreferencesUI.py:4095 +#: flatcamGUI/PreferencesUI.py:4520 flatcamTools/ToolNonCopperClear.py:189 #: flatcamTools/ToolPaint.py:161 msgid "No" msgstr "Нет" -#: FlatCAMApp.py:3300 FlatCAMApp.py:5003 FlatCAMApp.py:5839 FlatCAMApp.py:7157 -#: FlatCAMApp.py:9047 FlatCAMCommon.py:702 flatcamGUI/FlatCAMGUI.py:1117 +#: FlatCAMApp.py:3320 FlatCAMApp.py:5031 FlatCAMApp.py:5867 FlatCAMApp.py:7185 +#: FlatCAMApp.py:9079 FlatCAMCommon.py:702 flatcamGUI/FlatCAMGUI.py:1233 msgid "Cancel" msgstr "Отмена" -#: FlatCAMApp.py:3328 +#: FlatCAMApp.py:3348 msgid "Object empty after edit." msgstr "Объект пуст после редактирования." -#: FlatCAMApp.py:3377 FlatCAMApp.py:3397 FlatCAMApp.py:3412 +#: FlatCAMApp.py:3397 FlatCAMApp.py:3417 FlatCAMApp.py:3432 msgid "Select a Gerber, Geometry or Excellon Object to update." msgstr "Выберите объект Gerber, Geometry или Excellon для обновления." -#: FlatCAMApp.py:3381 +#: FlatCAMApp.py:3401 msgid "is updated, returning to App..." msgstr "обновлён, возврат в приложение ..." -#: FlatCAMApp.py:3776 FlatCAMApp.py:3850 FlatCAMApp.py:4863 +#: FlatCAMApp.py:3796 FlatCAMApp.py:3870 FlatCAMApp.py:4891 msgid "Could not load defaults file." msgstr "Не удалось загрузить файл значений по умолчанию." -#: FlatCAMApp.py:3788 FlatCAMApp.py:3859 FlatCAMApp.py:4872 +#: FlatCAMApp.py:3808 FlatCAMApp.py:3879 FlatCAMApp.py:4900 msgid "Failed to parse defaults file." msgstr "Не удалось прочитать файл значений по умолчанию." -#: FlatCAMApp.py:3830 FlatCAMApp.py:3834 +#: FlatCAMApp.py:3850 FlatCAMApp.py:3854 msgid "Import FlatCAM Preferences" msgstr "Импорт настроек FlatCAM" -#: FlatCAMApp.py:3841 +#: FlatCAMApp.py:3861 msgid "FlatCAM preferences import cancelled." msgstr "Импорт настроек FlatCAM отменен." -#: FlatCAMApp.py:3864 +#: FlatCAMApp.py:3884 msgid "Imported Defaults from" msgstr "Значения по умолчанию импортированы из" -#: FlatCAMApp.py:3884 FlatCAMApp.py:3889 +#: FlatCAMApp.py:3904 FlatCAMApp.py:3909 msgid "Export FlatCAM Preferences" msgstr "Экспорт настроек FlatCAM" -#: FlatCAMApp.py:3897 +#: FlatCAMApp.py:3917 msgid "FlatCAM preferences export cancelled." msgstr "Экспорт настроек FlatCAM отменён." -#: FlatCAMApp.py:3906 FlatCAMApp.py:10338 FlatCAMApp.py:10386 -#: FlatCAMApp.py:10509 FlatCAMApp.py:10648 FlatCAMCommon.py:378 -#: FlatCAMCommon.py:1094 FlatCAMObj.py:6721 +#: FlatCAMApp.py:3926 FlatCAMApp.py:10370 FlatCAMApp.py:10418 +#: FlatCAMApp.py:10541 FlatCAMApp.py:10680 FlatCAMCommon.py:378 +#: FlatCAMCommon.py:1094 FlatCAMObj.py:6724 #: flatcamEditors/FlatCAMTextEditor.py:228 flatcamTools/ToolFilm.py:1019 -#: flatcamTools/ToolFilm.py:1195 flatcamTools/ToolSolderPaste.py:1541 +#: flatcamTools/ToolFilm.py:1195 flatcamTools/ToolSolderPaste.py:1544 msgid "" "Permission denied, saving not possible.\n" "Most likely another app is holding the file open and not accessible." @@ -200,36 +200,36 @@ msgstr "" "В доступе отказано, сохранение невозможно.\n" "Скорее всего, другое приложение держит файл открытым и недоступным." -#: FlatCAMApp.py:3919 +#: FlatCAMApp.py:3939 msgid "Could not load preferences file." msgstr "Не удаётся загрузить файл настроек." -#: FlatCAMApp.py:3939 FlatCAMApp.py:4919 +#: FlatCAMApp.py:3959 FlatCAMApp.py:4947 msgid "Failed to write defaults to file." msgstr "Не удалось записать значения по умолчанию в файл." -#: FlatCAMApp.py:3945 +#: FlatCAMApp.py:3965 msgid "Exported preferences to" msgstr "Экспорт настроек в" -#: FlatCAMApp.py:3962 +#: FlatCAMApp.py:3982 msgid "FlatCAM Preferences Folder opened." msgstr "Папка настроек FlatCAM открыта." -#: FlatCAMApp.py:4045 +#: FlatCAMApp.py:4065 msgid "Failed to open recent files file for writing." msgstr "Не удалось открыть файл истории для записи." -#: FlatCAMApp.py:4056 +#: FlatCAMApp.py:4076 msgid "Failed to open recent projects file for writing." msgstr "Не удалось открыть файл последних проектов для записи." -#: FlatCAMApp.py:4142 flatcamParsers/ParseExcellon.py:886 -#: flatcamTools/ToolSolderPaste.py:1327 +#: FlatCAMApp.py:4162 flatcamParsers/ParseExcellon.py:886 +#: flatcamTools/ToolSolderPaste.py:1330 msgid "An internal error has ocurred. See shell.\n" msgstr "Произошла внутренняя ошибка. Посмотрите в командную строку.\n" -#: FlatCAMApp.py:4143 +#: FlatCAMApp.py:4163 #, python-brace-format msgid "" "Object ({kind}) failed because: {error} \n" @@ -238,63 +238,63 @@ msgstr "" "Объект ({kind}) не выполнен, потому что: {error} \n" "\n" -#: FlatCAMApp.py:4163 +#: FlatCAMApp.py:4183 msgid "Converting units to " msgstr "Конвертирование единиц в " -#: FlatCAMApp.py:4266 +#: FlatCAMApp.py:4286 msgid "CREATE A NEW FLATCAM TCL SCRIPT" msgstr "СОЗДАЙТЕ НОВЫЙ TCL СЦЕНАРИЙ FLATCAM" -#: FlatCAMApp.py:4267 +#: FlatCAMApp.py:4287 msgid "TCL Tutorial is here" msgstr "Учебное пособие по TCL здесь" -#: FlatCAMApp.py:4269 +#: FlatCAMApp.py:4289 msgid "FlatCAM commands list" msgstr "Список команд FlatCAM" -#: FlatCAMApp.py:4320 FlatCAMApp.py:4326 FlatCAMApp.py:4332 FlatCAMApp.py:4338 -#: FlatCAMApp.py:4344 FlatCAMApp.py:4350 +#: FlatCAMApp.py:4340 FlatCAMApp.py:4346 FlatCAMApp.py:4352 FlatCAMApp.py:4358 +#: FlatCAMApp.py:4364 FlatCAMApp.py:4370 msgid "created/selected" msgstr "создан / выбрана" -#: FlatCAMApp.py:4365 FlatCAMApp.py:7237 FlatCAMObj.py:263 FlatCAMObj.py:294 +#: FlatCAMApp.py:4385 FlatCAMApp.py:7265 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 "Прорисовка" -#: FlatCAMApp.py:4426 flatcamGUI/FlatCAMGUI.py:467 +#: FlatCAMApp.py:4448 flatcamGUI/FlatCAMGUI.py:493 msgid "About FlatCAM" msgstr "О программе" -#: FlatCAMApp.py:4452 +#: FlatCAMApp.py:4474 msgid "2D Computer-Aided Printed Circuit Board Manufacturing" msgstr "2D Computer-Aided Printed Circuit Board Manufacturing" -#: FlatCAMApp.py:4453 +#: FlatCAMApp.py:4475 msgid "Development" msgstr "Исходный код" -#: FlatCAMApp.py:4454 +#: FlatCAMApp.py:4476 msgid "DOWNLOAD" msgstr "Страница загрузок" -#: FlatCAMApp.py:4455 +#: FlatCAMApp.py:4477 msgid "Issue tracker" msgstr "Issue-трекер" -#: FlatCAMApp.py:4459 FlatCAMApp.py:4794 +#: FlatCAMApp.py:4481 FlatCAMApp.py:4822 msgid "Close" msgstr "Закрыть" -#: FlatCAMApp.py:4474 +#: FlatCAMApp.py:4496 msgid "Licensed under the MIT license" msgstr "Под лицензией MIT" -#: FlatCAMApp.py:4483 +#: FlatCAMApp.py:4505 msgid "" "Permission is hereby granted, free of charge, to any person obtaining a " "copy\n" @@ -342,7 +342,7 @@ msgstr "" "OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n" "THE SOFTWARE." -#: FlatCAMApp.py:4505 +#: FlatCAMApp.py:4527 msgid "" "Some of the icons used are from the following sources:
Icons by FreepikIcons8
Иконки " "от oNline Web Fonts" -#: FlatCAMApp.py:4537 +#: FlatCAMApp.py:4559 msgid "Splash" msgstr "Информация" -#: FlatCAMApp.py:4543 +#: FlatCAMApp.py:4565 msgid "Programmers" msgstr "Разработчики" -#: FlatCAMApp.py:4549 +#: FlatCAMApp.py:4571 msgid "Translators" msgstr "Переводчики" -#: FlatCAMApp.py:4555 +#: FlatCAMApp.py:4577 msgid "License" msgstr "Лицензия" -#: FlatCAMApp.py:4561 +#: FlatCAMApp.py:4583 msgid "Attributions" msgstr "Пояснения" -#: FlatCAMApp.py:4584 +#: FlatCAMApp.py:4606 msgid "Programmer" msgstr "Разработчик" -#: FlatCAMApp.py:4585 +#: FlatCAMApp.py:4607 msgid "Status" msgstr "Статус" -#: FlatCAMApp.py:4586 FlatCAMApp.py:4657 +#: FlatCAMApp.py:4608 FlatCAMApp.py:4686 msgid "E-mail" msgstr "E-mail" -#: FlatCAMApp.py:4594 +#: FlatCAMApp.py:4616 msgid "BETA Maintainer >= 2019" msgstr "Куратор >=2019" -#: FlatCAMApp.py:4654 +#: FlatCAMApp.py:4683 msgid "Language" msgstr "Язык" -#: FlatCAMApp.py:4655 +#: FlatCAMApp.py:4684 msgid "Translator" msgstr "Переводчик" -#: FlatCAMApp.py:4656 +#: FlatCAMApp.py:4685 msgid "Corrections" msgstr "Исправления" -#: FlatCAMApp.py:4765 FlatCAMApp.py:4773 FlatCAMApp.py:7906 -#: flatcamGUI/FlatCAMGUI.py:451 +#: FlatCAMApp.py:4794 FlatCAMApp.py:4802 FlatCAMApp.py:7934 +#: flatcamGUI/FlatCAMGUI.py:475 msgid "Bookmarks Manager" msgstr "Диспетчер закладок" -#: FlatCAMApp.py:4785 +#: FlatCAMApp.py:4813 msgid "" "This entry will resolve to another website if:\n" "\n" @@ -431,35 +431,35 @@ msgstr "" "Если вы не можете получить какую-либо информацию о бета-версии FlatCAM\n" "используйте ссылку на канал YouTube в меню «Справка»." -#: FlatCAMApp.py:4792 +#: FlatCAMApp.py:4820 msgid "Alternative website" msgstr "Альтернативный сайт" -#: FlatCAMApp.py:4923 FlatCAMApp.py:7870 +#: FlatCAMApp.py:4951 FlatCAMApp.py:7898 msgid "Preferences saved." msgstr "Настройки сохранены." -#: FlatCAMApp.py:4951 +#: FlatCAMApp.py:4979 msgid "Could not load factory defaults file." msgstr "Не удалось загрузить файл с исходными значениями." -#: FlatCAMApp.py:4961 +#: FlatCAMApp.py:4989 msgid "Failed to parse factory defaults file." msgstr "Не удалось прочитать файл с исходными значениями." -#: FlatCAMApp.py:4977 +#: FlatCAMApp.py:5005 msgid "Failed to write factory defaults to file." msgstr "Не удалось записать исходные значения в файл." -#: FlatCAMApp.py:4981 +#: FlatCAMApp.py:5009 msgid "Factory defaults saved." msgstr "Исходные значения сохранены." -#: FlatCAMApp.py:4991 flatcamGUI/FlatCAMGUI.py:3691 +#: FlatCAMApp.py:5019 flatcamGUI/FlatCAMGUI.py:3926 msgid "Application is saving the project. Please wait ..." msgstr "Приложение сохраняет проект. Пожалуйста, подождите ..." -#: FlatCAMApp.py:4996 FlatCAMTranslation.py:166 +#: FlatCAMApp.py:5024 FlatCAMTranslation.py:188 msgid "" "There are files/objects modified in FlatCAM. \n" "Do you want to Save the project?" @@ -467,29 +467,29 @@ msgstr "" "Есть файлы/объекты, измененные в FlatCAM.\n" "Вы хотите сохранить проект?" -#: FlatCAMApp.py:4999 FlatCAMApp.py:9043 FlatCAMTranslation.py:169 +#: FlatCAMApp.py:5027 FlatCAMApp.py:9075 FlatCAMTranslation.py:191 msgid "Save changes" msgstr "Сохранить изменения" -#: FlatCAMApp.py:5240 +#: FlatCAMApp.py:5268 msgid "Selected Excellon file extensions registered with FlatCAM." msgstr "Выбранные расширения файлов Excellon, зарегистрированные в FlatCAM." -#: FlatCAMApp.py:5262 +#: FlatCAMApp.py:5290 msgid "Selected GCode file extensions registered with FlatCAM." msgstr "Выбранные расширения файлов GCode, зарегистрированные в FlatCAM." -#: FlatCAMApp.py:5284 +#: FlatCAMApp.py:5312 msgid "Selected Gerber file extensions registered with FlatCAM." msgstr "Выбранные расширения файлов Gerber, зарегистрированные в FlatCAM." -#: FlatCAMApp.py:5472 FlatCAMApp.py:5529 FlatCAMApp.py:5557 +#: FlatCAMApp.py:5500 FlatCAMApp.py:5557 FlatCAMApp.py:5585 msgid "At least two objects are required for join. Objects currently selected" msgstr "" "Для объединения требуются как минимум два объекта. Объекты, выбранные в " "данный момент" -#: FlatCAMApp.py:5481 +#: FlatCAMApp.py:5509 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 " @@ -505,51 +505,51 @@ msgstr "" "потеряна, и результат может не соответствовать ожидаемому. \n" "Проверьте сгенерированный GCODE." -#: FlatCAMApp.py:5493 +#: FlatCAMApp.py:5521 msgid "Multigeo. Geometry merging finished" msgstr "Слияние Multigeo. Geometry завершено" -#: FlatCAMApp.py:5502 +#: FlatCAMApp.py:5530 msgid "Geometry merging finished" msgstr "Слияние Geometry завершено" -#: FlatCAMApp.py:5524 +#: FlatCAMApp.py:5552 msgid "Failed. Excellon joining works only on Excellon objects." msgstr "Неудача. Присоединение Excellon работает только на объектах Excellon." -#: FlatCAMApp.py:5534 +#: FlatCAMApp.py:5562 msgid "Excellon merging finished" msgstr "Слияние Excellon завершено" -#: FlatCAMApp.py:5552 +#: FlatCAMApp.py:5580 msgid "Failed. Gerber joining works only on Gerber objects." msgstr "Неудача. Объединение Gerber работает только на объектах Gerber." -#: FlatCAMApp.py:5562 +#: FlatCAMApp.py:5590 msgid "Gerber merging finished" msgstr "Слияние Gerber завершено" -#: FlatCAMApp.py:5582 FlatCAMApp.py:5617 +#: FlatCAMApp.py:5610 FlatCAMApp.py:5645 msgid "Failed. Select a Geometry Object and try again." msgstr "Неудалось. Выберите объект Geometry и попробуйте снова." -#: FlatCAMApp.py:5586 FlatCAMApp.py:5622 +#: FlatCAMApp.py:5614 FlatCAMApp.py:5650 msgid "Expected a FlatCAMGeometry, got" msgstr "Ожидается FlatCAMGeometry, получено" -#: FlatCAMApp.py:5599 +#: FlatCAMApp.py:5627 msgid "A Geometry object was converted to MultiGeo type." msgstr "Объект Geometry был преобразован в тип MultiGeo." -#: FlatCAMApp.py:5637 +#: FlatCAMApp.py:5665 msgid "A Geometry object was converted to SingleGeo type." msgstr "Объект Geometry был преобразован в тип SingleGeo." -#: FlatCAMApp.py:5833 +#: FlatCAMApp.py:5861 msgid "Toggle Units" msgstr "Единицы измерения" -#: FlatCAMApp.py:5835 +#: FlatCAMApp.py:5863 msgid "" "Changing the units of the project\n" "will scale all objects.\n" @@ -560,50 +560,50 @@ msgstr "" "масштабированию всех всех объектов.\n" "Продолжить?" -#: FlatCAMApp.py:5838 FlatCAMApp.py:7080 FlatCAMApp.py:7156 FlatCAMApp.py:9408 -#: FlatCAMApp.py:9422 FlatCAMApp.py:9776 FlatCAMApp.py:9787 +#: FlatCAMApp.py:5866 FlatCAMApp.py:7108 FlatCAMApp.py:7184 FlatCAMApp.py:9440 +#: FlatCAMApp.py:9454 FlatCAMApp.py:9808 FlatCAMApp.py:9819 msgid "Ok" msgstr "Да" -#: FlatCAMApp.py:5887 +#: FlatCAMApp.py:5915 msgid "Converted units to" msgstr "Конвертирование единиц в" -#: FlatCAMApp.py:5901 +#: FlatCAMApp.py:5929 msgid "Units conversion cancelled." msgstr "Изменение единиц отменено." -#: FlatCAMApp.py:6774 +#: FlatCAMApp.py:6802 msgid "Detachable Tabs" msgstr "Плавающие вкладки" -#: FlatCAMApp.py:6993 FlatCAMApp.py:7040 FlatCAMApp.py:7696 FlatCAMApp.py:7759 -#: FlatCAMApp.py:7825 +#: FlatCAMApp.py:7021 FlatCAMApp.py:7068 FlatCAMApp.py:7724 FlatCAMApp.py:7787 +#: FlatCAMApp.py:7853 msgid "Preferences" msgstr "Настройки" -#: FlatCAMApp.py:6996 +#: FlatCAMApp.py:7024 msgid "Preferences applied." msgstr "Настройки применяются." -#: FlatCAMApp.py:7045 +#: FlatCAMApp.py:7073 msgid "Preferences closed without saving." msgstr "Настройки закрыты без сохранения." -#: FlatCAMApp.py:7068 flatcamTools/ToolNonCopperClear.py:596 -#: flatcamTools/ToolNonCopperClear.py:992 flatcamTools/ToolPaint.py:507 -#: flatcamTools/ToolSolderPaste.py:562 flatcamTools/ToolSolderPaste.py:889 +#: FlatCAMApp.py:7096 flatcamTools/ToolNonCopperClear.py:597 +#: flatcamTools/ToolNonCopperClear.py:993 flatcamTools/ToolPaint.py:508 +#: flatcamTools/ToolSolderPaste.py:562 flatcamTools/ToolSolderPaste.py:892 msgid "Please enter a tool diameter with non-zero value, in Float format." msgstr "" "Пожалуйста, введите диаметр инструмента с ненулевым значением в float " "формате." -#: FlatCAMApp.py:7073 flatcamTools/ToolNonCopperClear.py:600 -#: flatcamTools/ToolPaint.py:511 flatcamTools/ToolSolderPaste.py:566 +#: FlatCAMApp.py:7101 flatcamTools/ToolNonCopperClear.py:601 +#: flatcamTools/ToolPaint.py:512 flatcamTools/ToolSolderPaste.py:566 msgid "Adding Tool cancelled" msgstr "Добавление инструмента отменено" -#: FlatCAMApp.py:7076 +#: FlatCAMApp.py:7104 msgid "" "Adding Tool works only when Advanced is checked.\n" "Go to Preferences -> General - Show Advanced Options." @@ -612,11 +612,11 @@ msgstr "" "«Дополнительно».\n" "Перейдите в Настройки -> Основные парам. - Показать дополнительные параметры." -#: FlatCAMApp.py:7151 +#: FlatCAMApp.py:7179 msgid "Delete objects" msgstr "Удалить объекты" -#: FlatCAMApp.py:7154 +#: FlatCAMApp.py:7182 msgid "" "Are you sure you want to permanently delete\n" "the selected objects?" @@ -624,51 +624,51 @@ msgstr "" "Вы уверены, что хотите удалить навсегда\n" "выделенные объекты?" -#: FlatCAMApp.py:7185 +#: FlatCAMApp.py:7213 msgid "Object(s) deleted" msgstr "Объект(ы) удалены" -#: FlatCAMApp.py:7189 +#: FlatCAMApp.py:7217 msgid "Failed. No object(s) selected..." msgstr "Нудача. Объекты не выбраны ..." -#: FlatCAMApp.py:7191 +#: FlatCAMApp.py:7219 msgid "Save the work in Editor and try again ..." msgstr "Сохраните работу в редакторе и попробуйте снова ..." -#: FlatCAMApp.py:7221 +#: FlatCAMApp.py:7249 msgid "Object deleted" msgstr "Объект(ы) удален" -#: FlatCAMApp.py:7248 +#: FlatCAMApp.py:7276 msgid "Click to set the origin ..." msgstr "Кликните, чтобы указать начало координат ..." -#: FlatCAMApp.py:7270 +#: FlatCAMApp.py:7298 msgid "Setting Origin..." msgstr "Установка точки начала координат..." -#: FlatCAMApp.py:7282 +#: FlatCAMApp.py:7310 msgid "Origin set" msgstr "Начало координат установлено" -#: FlatCAMApp.py:7289 +#: FlatCAMApp.py:7317 msgid "Origin coordinates specified but incomplete." msgstr "Координаты начала указаны, но неполны." -#: FlatCAMApp.py:7347 +#: FlatCAMApp.py:7375 msgid "Jump to ..." msgstr "Перейти к ..." -#: FlatCAMApp.py:7348 +#: FlatCAMApp.py:7376 msgid "Enter the coordinates in format X,Y:" msgstr "Введите координаты в формате X, Y:" -#: FlatCAMApp.py:7356 +#: FlatCAMApp.py:7384 msgid "Wrong coordinates. Enter coordinates in format: X,Y" msgstr "Неверные координаты. Введите координаты в формате: X, Y" -#: FlatCAMApp.py:7424 flatcamEditors/FlatCAMExcEditor.py:3518 +#: FlatCAMApp.py:7452 flatcamEditors/FlatCAMExcEditor.py:3518 #: flatcamEditors/FlatCAMExcEditor.py:3526 #: flatcamEditors/FlatCAMGeoEditor.py:3885 #: flatcamEditors/FlatCAMGeoEditor.py:3900 @@ -677,47 +677,47 @@ msgstr "Неверные координаты. Введите координат #: flatcamEditors/FlatCAMGrbEditor.py:1446 #: flatcamEditors/FlatCAMGrbEditor.py:1704 #: flatcamEditors/FlatCAMGrbEditor.py:4368 -#: flatcamEditors/FlatCAMGrbEditor.py:4383 flatcamGUI/FlatCAMGUI.py:2871 -#: flatcamGUI/FlatCAMGUI.py:2883 +#: flatcamEditors/FlatCAMGrbEditor.py:4383 flatcamGUI/FlatCAMGUI.py:3106 +#: flatcamGUI/FlatCAMGUI.py:3118 msgid "Done." msgstr "Готово." -#: FlatCAMApp.py:7576 FlatCAMApp.py:7647 +#: FlatCAMApp.py:7604 FlatCAMApp.py:7675 msgid "No object is selected. Select an object and try again." msgstr "Объект не выбран. Выберите объект и попробуйте снова." -#: FlatCAMApp.py:7667 +#: FlatCAMApp.py:7695 msgid "" "Aborting. The current task will be gracefully closed as soon as possible..." msgstr "Прерывание. Текущая задача будет закрыта как можно скорее..." -#: FlatCAMApp.py:7673 +#: FlatCAMApp.py:7701 msgid "The current task was gracefully closed on user request..." msgstr "Текущая задача была закрыта по запросу пользователя ..." -#: FlatCAMApp.py:7756 +#: FlatCAMApp.py:7784 msgid "Preferences edited but not saved." msgstr "Настройки отредактированы, но не сохранены." -#: FlatCAMApp.py:7770 FlatCAMApp.py:7782 FlatCAMApp.py:7799 FlatCAMApp.py:7816 -#: FlatCAMApp.py:7876 FlatCAMCommon.py:1161 FlatCAMCommon.py:1336 -#: FlatCAMObj.py:4213 +#: FlatCAMApp.py:7798 FlatCAMApp.py:7810 FlatCAMApp.py:7827 FlatCAMApp.py:7844 +#: FlatCAMApp.py:7904 FlatCAMCommon.py:1161 FlatCAMCommon.py:1336 +#: FlatCAMObj.py:4216 msgid "Tools Database" msgstr "База данных" -#: FlatCAMApp.py:7796 +#: FlatCAMApp.py:7824 msgid "Tools in Tools Database edited but not saved." msgstr "Инструменты в базе данных отредактированы, но не сохранены." -#: FlatCAMApp.py:7820 +#: FlatCAMApp.py:7848 msgid "Tool from DB added in Tool Table." msgstr "Инструмент из БД добавлен в таблицу инструментов." -#: FlatCAMApp.py:7822 +#: FlatCAMApp.py:7850 msgid "Adding tool from DB is not allowed for this object." msgstr "Добавление инструмента из БД для данного объекта запрещено." -#: FlatCAMApp.py:7856 +#: FlatCAMApp.py:7884 msgid "" "One or more values are changed.\n" "Do you want to save the Preferences?" @@ -725,11 +725,11 @@ msgstr "" "Одно или несколько значений изменены.\n" "Вы хотите сохранить настройки?" -#: FlatCAMApp.py:7858 flatcamGUI/FlatCAMGUI.py:220 +#: FlatCAMApp.py:7886 flatcamGUI/FlatCAMGUI.py:222 msgid "Save Preferences" msgstr "Сохранить настройки" -#: FlatCAMApp.py:7882 +#: FlatCAMApp.py:7910 msgid "" "One or more Tools are edited.\n" "Do you want to update the Tools Database?" @@ -737,95 +737,95 @@ msgstr "" "Один или несколько инструментов изменены.\n" "Вы хотите обновить базу данных инструментов?" -#: FlatCAMApp.py:7884 +#: FlatCAMApp.py:7912 msgid "Save Tools Database" msgstr "Сохранить БД" -#: FlatCAMApp.py:7903 FlatCAMApp.py:10015 FlatCAMObj.py:6456 +#: FlatCAMApp.py:7931 FlatCAMApp.py:10047 FlatCAMObj.py:6459 msgid "Code Editor" msgstr "Редактор кода" -#: FlatCAMApp.py:7921 +#: FlatCAMApp.py:7949 msgid "No object selected to Flip on Y axis." msgstr "Не выбран объект для отражения по оси Y." -#: FlatCAMApp.py:7947 +#: FlatCAMApp.py:7975 msgid "Flip on Y axis done." msgstr "Отражение по оси Y завершено." -#: FlatCAMApp.py:7949 FlatCAMApp.py:7991 +#: FlatCAMApp.py:7977 FlatCAMApp.py:8019 #: flatcamEditors/FlatCAMGrbEditor.py:5773 msgid "Flip action was not executed." msgstr "Операция переворота не была выполнена." -#: FlatCAMApp.py:7963 +#: FlatCAMApp.py:7991 msgid "No object selected to Flip on X axis." msgstr "Не выбран объект для отражения по оси Х." -#: FlatCAMApp.py:7989 +#: FlatCAMApp.py:8017 msgid "Flip on X axis done." msgstr "Отражение по оси Х завершено." -#: FlatCAMApp.py:8005 +#: FlatCAMApp.py:8033 msgid "No object selected to Rotate." msgstr "Не выбран ни один объект для вращения." -#: FlatCAMApp.py:8008 FlatCAMApp.py:8055 FlatCAMApp.py:8088 +#: FlatCAMApp.py:8036 FlatCAMApp.py:8083 FlatCAMApp.py:8116 msgid "Transform" msgstr "Трансформация" -#: FlatCAMApp.py:8008 FlatCAMApp.py:8055 FlatCAMApp.py:8088 +#: FlatCAMApp.py:8036 FlatCAMApp.py:8083 FlatCAMApp.py:8116 msgid "Enter the Angle value:" msgstr "Введите значение угла:" -#: FlatCAMApp.py:8039 +#: FlatCAMApp.py:8067 msgid "Rotation done." msgstr "Вращение завершено." -#: FlatCAMApp.py:8041 +#: FlatCAMApp.py:8069 msgid "Rotation movement was not executed." msgstr "Вращение не было выполнено." -#: FlatCAMApp.py:8053 +#: FlatCAMApp.py:8081 msgid "No object selected to Skew/Shear on X axis." msgstr "Не выбран ни один объект для наклона/сдвига по оси X." -#: FlatCAMApp.py:8075 +#: FlatCAMApp.py:8103 msgid "Skew on X axis done." msgstr "Наклон по оси X выполнен." -#: FlatCAMApp.py:8086 +#: FlatCAMApp.py:8114 msgid "No object selected to Skew/Shear on Y axis." msgstr "Нет объекта, выбранного для наклона/сдвига по оси Y." -#: FlatCAMApp.py:8108 +#: FlatCAMApp.py:8136 msgid "Skew on Y axis done." msgstr "Наклон по оси Y выполнен." -#: FlatCAMApp.py:8256 FlatCAMApp.py:8303 flatcamGUI/FlatCAMGUI.py:429 -#: flatcamGUI/FlatCAMGUI.py:1465 +#: FlatCAMApp.py:8284 FlatCAMApp.py:8331 flatcamGUI/FlatCAMGUI.py:451 +#: flatcamGUI/FlatCAMGUI.py:1581 msgid "Select All" msgstr "Выбрать все" -#: FlatCAMApp.py:8260 FlatCAMApp.py:8307 flatcamGUI/FlatCAMGUI.py:432 +#: FlatCAMApp.py:8288 FlatCAMApp.py:8335 flatcamGUI/FlatCAMGUI.py:453 msgid "Deselect All" msgstr "Снять выделение" -#: FlatCAMApp.py:8323 +#: FlatCAMApp.py:8351 msgid "All objects are selected." msgstr "Все объекты выделены." -#: FlatCAMApp.py:8333 +#: FlatCAMApp.py:8361 msgid "Objects selection is cleared." msgstr "Выбор объектов очищен." -#: FlatCAMApp.py:8349 flatcamGUI/FlatCAMGUI.py:1458 +#: FlatCAMApp.py:8378 flatcamGUI/FlatCAMGUI.py:1574 msgid "Grid On/Off" msgstr "Сетка вкл/откл" -#: FlatCAMApp.py:8362 flatcamEditors/FlatCAMGeoEditor.py:940 +#: FlatCAMApp.py:8393 flatcamEditors/FlatCAMGeoEditor.py:940 #: flatcamEditors/FlatCAMGrbEditor.py:2503 -#: flatcamEditors/FlatCAMGrbEditor.py:5346 flatcamGUI/ObjectUI.py:1265 +#: flatcamEditors/FlatCAMGrbEditor.py:5346 flatcamGUI/ObjectUI.py:1304 #: flatcamTools/ToolDblSided.py:185 flatcamTools/ToolDblSided.py:238 #: flatcamTools/ToolNonCopperClear.py:286 flatcamTools/ToolPaint.py:188 #: flatcamTools/ToolSolderPaste.py:121 flatcamTools/ToolSolderPaste.py:591 @@ -833,77 +833,77 @@ msgstr "Сетка вкл/откл" msgid "Add" msgstr "Добавить" -#: FlatCAMApp.py:8363 FlatCAMObj.py:3900 +#: FlatCAMApp.py:8395 FlatCAMObj.py:3902 #: flatcamEditors/FlatCAMGrbEditor.py:2508 -#: 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 +#: flatcamEditors/FlatCAMGrbEditor.py:2656 flatcamGUI/FlatCAMGUI.py:654 +#: flatcamGUI/FlatCAMGUI.py:965 flatcamGUI/FlatCAMGUI.py:1987 +#: flatcamGUI/FlatCAMGUI.py:2130 flatcamGUI/FlatCAMGUI.py:2524 +#: flatcamGUI/ObjectUI.py:1330 flatcamTools/ToolNonCopperClear.py:298 #: flatcamTools/ToolPaint.py:200 flatcamTools/ToolSolderPaste.py:127 -#: flatcamTools/ToolSolderPaste.py:593 +#: flatcamTools/ToolSolderPaste.py:594 msgid "Delete" msgstr "Удалить" -#: FlatCAMApp.py:8376 +#: FlatCAMApp.py:8408 msgid "New Grid ..." msgstr "Новая сетка ..." -#: FlatCAMApp.py:8377 +#: FlatCAMApp.py:8409 msgid "Enter a Grid Value:" msgstr "Введите размер сетки:" -#: FlatCAMApp.py:8385 FlatCAMApp.py:8412 +#: FlatCAMApp.py:8417 FlatCAMApp.py:8444 msgid "Please enter a grid value with non-zero value, in Float format." msgstr "" "Пожалуйста, введите значение сетки с ненулевым значением в формате float." -#: FlatCAMApp.py:8391 +#: FlatCAMApp.py:8423 msgid "New Grid added" msgstr "Новая сетка добавлена" -#: FlatCAMApp.py:8394 +#: FlatCAMApp.py:8426 msgid "Grid already exists" msgstr "Сетка уже существует" -#: FlatCAMApp.py:8397 +#: FlatCAMApp.py:8429 msgid "Adding New Grid cancelled" msgstr "Добавление новой сетки отменено" -#: FlatCAMApp.py:8419 +#: FlatCAMApp.py:8451 msgid " Grid Value does not exist" msgstr " Значение сетки не существует" -#: FlatCAMApp.py:8422 +#: FlatCAMApp.py:8454 msgid "Grid Value deleted" msgstr "Значение сетки удалено" -#: FlatCAMApp.py:8425 +#: FlatCAMApp.py:8457 msgid "Delete Grid value cancelled" msgstr "Удаление значения сетки отменено" -#: FlatCAMApp.py:8431 +#: FlatCAMApp.py:8463 msgid "Key Shortcut List" msgstr "Список комбинаций клавиш" -#: FlatCAMApp.py:8465 +#: FlatCAMApp.py:8497 msgid " No object selected to copy it's name" msgstr " Нет объекта, выбранного для копирования его имени" -#: FlatCAMApp.py:8469 +#: FlatCAMApp.py:8501 msgid "Name copied on clipboard ..." msgstr "Имя скопировано в буфер обмена ..." -#: FlatCAMApp.py:8666 flatcamEditors/FlatCAMGrbEditor.py:4300 +#: FlatCAMApp.py:8698 flatcamEditors/FlatCAMGrbEditor.py:4300 msgid "Coordinates copied to clipboard." msgstr "Координаты скопированы в буфер обмена." -#: 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 +#: FlatCAMApp.py:8912 FlatCAMApp.py:8918 FlatCAMApp.py:8924 FlatCAMApp.py:8930 +#: ObjectCollection.py:792 ObjectCollection.py:798 ObjectCollection.py:804 +#: ObjectCollection.py:810 ObjectCollection.py:816 ObjectCollection.py:822 msgid "selected" msgstr "выбранный" -#: FlatCAMApp.py:9040 +#: FlatCAMApp.py:9072 msgid "" "There are files/objects opened in FlatCAM.\n" "Creating a New project will delete them.\n" @@ -913,361 +913,361 @@ msgstr "" "Создание нового проекта удалит их.\n" "Вы хотите сохранить проект?" -#: FlatCAMApp.py:9062 +#: FlatCAMApp.py:9094 msgid "New Project created" msgstr "Новый проект создан" -#: FlatCAMApp.py:9197 FlatCAMApp.py:9201 flatcamGUI/FlatCAMGUI.py:696 -#: flatcamGUI/FlatCAMGUI.py:2149 +#: FlatCAMApp.py:9229 FlatCAMApp.py:9233 flatcamGUI/FlatCAMGUI.py:741 +#: flatcamGUI/FlatCAMGUI.py:2317 msgid "Open Gerber" msgstr "Открыть Gerber" -#: FlatCAMApp.py:9208 +#: FlatCAMApp.py:9240 msgid "Opening Gerber file." msgstr "Открытие файла Gerber." -#: FlatCAMApp.py:9214 +#: FlatCAMApp.py:9246 msgid "Open Gerber cancelled." msgstr "Открытие Gerber отменено." -#: FlatCAMApp.py:9235 FlatCAMApp.py:9239 flatcamGUI/FlatCAMGUI.py:697 -#: flatcamGUI/FlatCAMGUI.py:2150 +#: FlatCAMApp.py:9267 FlatCAMApp.py:9271 flatcamGUI/FlatCAMGUI.py:743 +#: flatcamGUI/FlatCAMGUI.py:2319 msgid "Open Excellon" msgstr "Открыть Excellon" -#: FlatCAMApp.py:9245 +#: FlatCAMApp.py:9277 msgid "Opening Excellon file." msgstr "Открытие файла Excellon." -#: FlatCAMApp.py:9251 +#: FlatCAMApp.py:9283 msgid " Open Excellon cancelled." msgstr " Открытие Excellon отменено." -#: FlatCAMApp.py:9275 FlatCAMApp.py:9279 +#: FlatCAMApp.py:9307 FlatCAMApp.py:9311 msgid "Open G-Code" msgstr "Открыть G-Code" -#: FlatCAMApp.py:9286 +#: FlatCAMApp.py:9318 msgid "Opening G-Code file." msgstr "Открытие файла G-Code." -#: FlatCAMApp.py:9292 +#: FlatCAMApp.py:9324 msgid "Open G-Code cancelled." msgstr "Открытие G-Code отменено." -#: FlatCAMApp.py:9310 FlatCAMApp.py:9313 flatcamGUI/FlatCAMGUI.py:1467 +#: FlatCAMApp.py:9342 FlatCAMApp.py:9345 flatcamGUI/FlatCAMGUI.py:1583 msgid "Open Project" msgstr "Открыть проект" -#: FlatCAMApp.py:9322 +#: FlatCAMApp.py:9354 msgid "Open Project cancelled." msgstr "Открытие проекта отменено." -#: FlatCAMApp.py:9346 FlatCAMApp.py:9350 +#: FlatCAMApp.py:9378 FlatCAMApp.py:9382 msgid "Open HPGL2" msgstr "Открыть HPGL2" -#: FlatCAMApp.py:9357 +#: FlatCAMApp.py:9389 msgid "Opening HPGL2 file." msgstr "Открытие файла HPGL2." -#: FlatCAMApp.py:9362 +#: FlatCAMApp.py:9394 msgid "Open HPGL2 file cancelled." msgstr "Открытие HPGL2 отменено." -#: FlatCAMApp.py:9380 FlatCAMApp.py:9383 +#: FlatCAMApp.py:9412 FlatCAMApp.py:9415 msgid "Open Configuration File" msgstr "Открыть файл конфигурации" -#: FlatCAMApp.py:9388 +#: FlatCAMApp.py:9420 msgid "Open Config cancelled." msgstr "Открытие конфигурации отменено." -#: FlatCAMApp.py:9404 FlatCAMApp.py:9772 FlatCAMApp.py:10246 +#: FlatCAMApp.py:9436 FlatCAMApp.py:9804 FlatCAMApp.py:10278 msgid "No object selected." msgstr "Нет выбранных объектов." -#: FlatCAMApp.py:9405 FlatCAMApp.py:9773 +#: FlatCAMApp.py:9437 FlatCAMApp.py:9805 msgid "Please Select a Geometry object to export" msgstr "Выберите объект Geometry для экспорта" -#: FlatCAMApp.py:9419 +#: FlatCAMApp.py:9451 msgid "Only Geometry, Gerber and CNCJob objects can be used." msgstr "Можно использовать только объекты Geometry, Gerber и CNCJob." -#: FlatCAMApp.py:9432 FlatCAMApp.py:9436 flatcamTools/ToolQRCode.py:827 +#: FlatCAMApp.py:9464 FlatCAMApp.py:9468 flatcamTools/ToolQRCode.py:827 #: flatcamTools/ToolQRCode.py:831 msgid "Export SVG" msgstr "Экспорт SVG" -#: FlatCAMApp.py:9442 flatcamTools/ToolQRCode.py:836 +#: FlatCAMApp.py:9474 flatcamTools/ToolQRCode.py:836 msgid " Export SVG cancelled." msgstr " Экспорт SVG отменён." -#: FlatCAMApp.py:9463 +#: FlatCAMApp.py:9495 msgid "Data must be a 3D array with last dimension 3 or 4" msgstr "Данные должны быть 3D массивом с последним размером 3 или 4" -#: FlatCAMApp.py:9469 FlatCAMApp.py:9473 +#: FlatCAMApp.py:9501 FlatCAMApp.py:9505 msgid "Export PNG Image" msgstr "Экспорт PNG изображения" -#: FlatCAMApp.py:9478 +#: FlatCAMApp.py:9510 msgid "Export PNG cancelled." msgstr "Экспорт PNG отменён." -#: FlatCAMApp.py:9502 +#: FlatCAMApp.py:9534 msgid "No object selected. Please select an Gerber object to export." msgstr "" "Нет выбранных объектов. Пожалуйста, выберите Gerber объект для экспорта." -#: FlatCAMApp.py:9508 FlatCAMApp.py:9731 +#: FlatCAMApp.py:9540 FlatCAMApp.py:9763 msgid "Failed. Only Gerber objects can be saved as Gerber files..." msgstr "Ошибка. Только объекты Gerber могут быть сохранены как файлы Gerber..." -#: FlatCAMApp.py:9520 +#: FlatCAMApp.py:9552 msgid "Save Gerber source file" msgstr "Сохранить исходный файл Gerber" -#: FlatCAMApp.py:9526 +#: FlatCAMApp.py:9558 msgid "Save Gerber source file cancelled." msgstr "Сохранение исходного кода файла Gerber отменено." -#: FlatCAMApp.py:9546 +#: FlatCAMApp.py:9578 msgid "No object selected. Please select an Script object to export." msgstr "" "Нет выбранных объектов. Пожалуйста, выберите объект сценария для экспорта." -#: FlatCAMApp.py:9552 +#: FlatCAMApp.py:9584 msgid "Failed. Only Script objects can be saved as TCL Script files..." msgstr "" "Ошибка. Только объекты сценария могут быть сохранены как файлы TCL-" "сценария..." -#: FlatCAMApp.py:9564 +#: FlatCAMApp.py:9596 msgid "Save Script source file" msgstr "Сохранить исходный файл сценария" -#: FlatCAMApp.py:9570 +#: FlatCAMApp.py:9602 msgid "Save Script source file cancelled." msgstr "Сохранение исходного кода файла сценария отменено." -#: FlatCAMApp.py:9590 +#: FlatCAMApp.py:9622 msgid "No object selected. Please select an Document object to export." msgstr "Объект не выбран. Пожалуйста, выберите объект Document для экспорта." -#: FlatCAMApp.py:9596 +#: FlatCAMApp.py:9628 msgid "Failed. Only Document objects can be saved as Document files..." msgstr "" "Ошибка. Только объекты Document могут быть сохранены как файлы Document..." -#: FlatCAMApp.py:9608 +#: FlatCAMApp.py:9640 msgid "Save Document source file" msgstr "Сохранить исходный файл Document" -#: FlatCAMApp.py:9614 +#: FlatCAMApp.py:9646 msgid "Save Document source file cancelled." msgstr "Сохранение исходного кода файла Document отменено." -#: FlatCAMApp.py:9634 +#: FlatCAMApp.py:9666 msgid "No object selected. Please select an Excellon object to export." msgstr "Объект не выбран. Пожалуйста, выберите Excellon объект для экспорта." -#: FlatCAMApp.py:9640 FlatCAMApp.py:9684 FlatCAMApp.py:10422 +#: FlatCAMApp.py:9672 FlatCAMApp.py:9716 FlatCAMApp.py:10454 msgid "Failed. Only Excellon objects can be saved as Excellon files..." msgstr "" "Ошибка. Только объекты Excellon могут быть сохранены как файлы Excellon..." -#: FlatCAMApp.py:9648 FlatCAMApp.py:9652 +#: FlatCAMApp.py:9680 FlatCAMApp.py:9684 msgid "Save Excellon source file" msgstr "Сохранить исходный файл Excellon" -#: FlatCAMApp.py:9658 +#: FlatCAMApp.py:9690 msgid "Saving Excellon source file cancelled." msgstr "Сохранение исходного кода файла Excellon отменено." -#: FlatCAMApp.py:9678 +#: FlatCAMApp.py:9710 msgid "No object selected. Please Select an Excellon object to export." msgstr "Объект не выбран. Пожалуйста, выберите отличный объект для экспорта." -#: FlatCAMApp.py:9692 FlatCAMApp.py:9696 +#: FlatCAMApp.py:9724 FlatCAMApp.py:9728 msgid "Export Excellon" msgstr "Экспорт Excellon" -#: FlatCAMApp.py:9702 +#: FlatCAMApp.py:9734 msgid "Export Excellon cancelled." msgstr "Экспорт Excellon отменен." -#: FlatCAMApp.py:9725 +#: FlatCAMApp.py:9757 msgid "No object selected. Please Select an Gerber object to export." msgstr "" "Нет выбранных объектов. Пожалуйста, выберите Gerber объект для экспорта." -#: FlatCAMApp.py:9739 FlatCAMApp.py:9743 +#: FlatCAMApp.py:9771 FlatCAMApp.py:9775 msgid "Export Gerber" msgstr "Экспорт Gerber" -#: FlatCAMApp.py:9749 +#: FlatCAMApp.py:9781 msgid "Export Gerber cancelled." msgstr "Экспорт Gerber отменен." -#: FlatCAMApp.py:9784 +#: FlatCAMApp.py:9816 msgid "Only Geometry objects can be used." msgstr "Можно использовать только объекты Geometry." -#: FlatCAMApp.py:9798 FlatCAMApp.py:9802 +#: FlatCAMApp.py:9830 FlatCAMApp.py:9834 msgid "Export DXF" msgstr "Экспорт DXF" -#: FlatCAMApp.py:9809 +#: FlatCAMApp.py:9841 msgid "Export DXF cancelled." msgstr "Экспорт DXF отменен." -#: FlatCAMApp.py:9829 FlatCAMApp.py:9832 +#: FlatCAMApp.py:9861 FlatCAMApp.py:9864 msgid "Import SVG" msgstr "Импорт SVG" -#: FlatCAMApp.py:9842 +#: FlatCAMApp.py:9874 msgid "Open SVG cancelled." msgstr "Открытие SVG отменено." -#: FlatCAMApp.py:9861 FlatCAMApp.py:9865 +#: FlatCAMApp.py:9893 FlatCAMApp.py:9897 msgid "Import DXF" msgstr "Импорт DXF" -#: FlatCAMApp.py:9875 +#: FlatCAMApp.py:9907 msgid "Open DXF cancelled." msgstr "Открытие DXF отменено." -#: FlatCAMApp.py:9917 +#: FlatCAMApp.py:9949 msgid "Viewing the source code of the selected object." msgstr "Просмотр исходного кода выбранного объекта." -#: FlatCAMApp.py:9918 FlatCAMObj.py:6442 FlatCAMObj.py:7043 +#: FlatCAMApp.py:9950 FlatCAMObj.py:6445 FlatCAMObj.py:7046 msgid "Loading..." msgstr "Загрузка..." -#: FlatCAMApp.py:9924 FlatCAMApp.py:9928 +#: FlatCAMApp.py:9956 FlatCAMApp.py:9960 msgid "Select an Gerber or Excellon file to view it's source file." msgstr "Выберите файл Gerber или Excellon для просмотра исходного кода." -#: FlatCAMApp.py:9942 +#: FlatCAMApp.py:9974 msgid "Source Editor" msgstr "Редактор исходного кода" -#: FlatCAMApp.py:9982 FlatCAMApp.py:9989 +#: FlatCAMApp.py:10014 FlatCAMApp.py:10021 msgid "There is no selected object for which to see it's source file code." msgstr "Нет выбранного объекта, для просмотра исходного кода файла." -#: FlatCAMApp.py:10001 +#: FlatCAMApp.py:10033 msgid "Failed to load the source code for the selected object" msgstr "Не удалось загрузить исходный код выбранного объекта" -#: FlatCAMApp.py:10043 +#: FlatCAMApp.py:10075 msgid "New TCL script file created in Code Editor." msgstr "Новый файл сценария создан в редакторе кода." -#: FlatCAMApp.py:10081 FlatCAMApp.py:10083 +#: FlatCAMApp.py:10113 FlatCAMApp.py:10115 msgid "Open TCL script" msgstr "Открыть сценарий TCL" -#: FlatCAMApp.py:10087 +#: FlatCAMApp.py:10119 msgid "Open TCL script cancelled." msgstr "Открытие сценария отменено." -#: FlatCAMApp.py:10111 +#: FlatCAMApp.py:10143 msgid "Executing FlatCAMScript file." msgstr "Выполнение файла FlatCAMScript." -#: FlatCAMApp.py:10118 FlatCAMApp.py:10121 +#: FlatCAMApp.py:10150 FlatCAMApp.py:10153 msgid "Run TCL script" msgstr "Запустить сценарий TCL" -#: FlatCAMApp.py:10131 +#: FlatCAMApp.py:10163 msgid "Run TCL script cancelled." msgstr "Запуск сценария отменен." -#: FlatCAMApp.py:10147 +#: FlatCAMApp.py:10179 msgid "TCL script file opened in Code Editor and executed." msgstr "Файл сценария открывается в редакторе кода и выполняется." -#: FlatCAMApp.py:10198 FlatCAMApp.py:10204 +#: FlatCAMApp.py:10230 FlatCAMApp.py:10236 msgid "Save Project As ..." msgstr "Сохранить проект как..." -#: FlatCAMApp.py:10200 flatcamGUI/FlatCAMGUI.py:909 -#: flatcamGUI/FlatCAMGUI.py:1899 +#: FlatCAMApp.py:10232 flatcamGUI/FlatCAMGUI.py:1025 +#: flatcamGUI/FlatCAMGUI.py:2022 msgid "Project" msgstr "Проект" -#: FlatCAMApp.py:10209 +#: FlatCAMApp.py:10241 msgid "Save Project cancelled." msgstr "Сохранение проекта отменено." -#: FlatCAMApp.py:10216 +#: FlatCAMApp.py:10248 msgid "The object is used by another application." msgstr "Объект используется другим приложением." -#: FlatCAMApp.py:10252 FlatCAMApp.py:10259 flatcamGUI/FlatCAMGUI.py:261 +#: FlatCAMApp.py:10284 FlatCAMApp.py:10291 flatcamGUI/FlatCAMGUI.py:265 msgid "Save Object as PDF ..." msgstr "Сохранить объект как PDF ..." -#: FlatCAMApp.py:10264 +#: FlatCAMApp.py:10296 msgid "Save Object PDF cancelled." msgstr "Сохранить объект PDF отменен." -#: FlatCAMApp.py:10302 +#: FlatCAMApp.py:10334 msgid "Exporting SVG" msgstr "Экспортирование SVG" -#: FlatCAMApp.py:10346 +#: FlatCAMApp.py:10378 msgid "SVG file exported to" msgstr "Файл SVG экспортируется в" -#: FlatCAMApp.py:10371 +#: FlatCAMApp.py:10403 msgid "" "Save cancelled because source file is empty. Try to export the Gerber file." msgstr "" "Сохранение отменено, потому что исходный файл пуст. Попробуйте " "экспортировать файл Gerber." -#: FlatCAMApp.py:10517 +#: FlatCAMApp.py:10549 msgid "Excellon file exported to" msgstr "Файл Excellon экспортируется в" -#: FlatCAMApp.py:10526 +#: FlatCAMApp.py:10558 msgid "Exporting Excellon" msgstr "Экспорт Excellon" -#: FlatCAMApp.py:10532 FlatCAMApp.py:10540 +#: FlatCAMApp.py:10564 FlatCAMApp.py:10572 msgid "Could not export Excellon file." msgstr "Не удалось экспортировать файл Excellon." -#: FlatCAMApp.py:10656 +#: FlatCAMApp.py:10688 msgid "Gerber file exported to" msgstr "Файл Gerber экспортируется в" -#: FlatCAMApp.py:10664 +#: FlatCAMApp.py:10696 msgid "Exporting Gerber" msgstr "Экспортирование Gerber" -#: FlatCAMApp.py:10670 FlatCAMApp.py:10678 +#: FlatCAMApp.py:10702 FlatCAMApp.py:10710 msgid "Could not export Gerber file." msgstr "Не удалось экспортировать файл Gerber." -#: FlatCAMApp.py:10712 +#: FlatCAMApp.py:10744 msgid "DXF file exported to" msgstr "Файл DXF экспортируется в" -#: FlatCAMApp.py:10718 +#: FlatCAMApp.py:10750 msgid "Exporting DXF" msgstr "Экспорт DXF" -#: FlatCAMApp.py:10723 FlatCAMApp.py:10730 +#: FlatCAMApp.py:10755 FlatCAMApp.py:10762 msgid "Could not export DXF file." msgstr "Не удалось экспортировать файл DXF." -#: FlatCAMApp.py:10753 FlatCAMApp.py:10796 flatcamTools/ToolImage.py:278 +#: FlatCAMApp.py:10785 FlatCAMApp.py:10828 flatcamTools/ToolImage.py:278 msgid "" "Not supported type is picked as parameter. Only Geometry and Gerber are " "supported" @@ -1275,86 +1275,86 @@ msgstr "" "В качестве параметра выбран не поддерживаемый тип. Поддерживаются только " "Geometry и Gerber" -#: FlatCAMApp.py:10763 +#: FlatCAMApp.py:10795 msgid "Importing SVG" msgstr "Импортирование SVG" -#: 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 +#: FlatCAMApp.py:10806 FlatCAMApp.py:10848 FlatCAMApp.py:10907 +#: FlatCAMApp.py:10974 FlatCAMApp.py:11037 FlatCAMApp.py:11104 +#: FlatCAMApp.py:11142 flatcamTools/ToolImage.py:298 #: flatcamTools/ToolPDF.py:225 msgid "Opened" msgstr "Открыт" -#: FlatCAMApp.py:10805 +#: FlatCAMApp.py:10837 msgid "Importing DXF" msgstr "Импорт DXF" -#: FlatCAMApp.py:10841 FlatCAMApp.py:11031 +#: FlatCAMApp.py:10873 FlatCAMApp.py:11063 msgid "Failed to open file" msgstr "Не удалось открыть файл" -#: FlatCAMApp.py:10844 FlatCAMApp.py:11034 +#: FlatCAMApp.py:10876 FlatCAMApp.py:11066 msgid "Failed to parse file" msgstr "Не удаётся прочитать файл" -#: FlatCAMApp.py:10849 FlatCAMApp.py:10910 FlatCAMApp.py:11039 -#: FlatCAMObj.py:5004 flatcamEditors/FlatCAMGrbEditor.py:4110 +#: FlatCAMApp.py:10881 FlatCAMApp.py:10942 FlatCAMApp.py:11071 +#: FlatCAMObj.py:5007 flatcamEditors/FlatCAMGrbEditor.py:4110 #: flatcamTools/ToolPcbWizard.py:437 msgid "An internal error has occurred. See shell.\n" msgstr "Произошла внутренняя ошибка. Смотрите командную строку.\n" -#: FlatCAMApp.py:10856 +#: FlatCAMApp.py:10888 msgid "Object is not Gerber file or empty. Aborting object creation." msgstr "" "Объект не является файлом Gerber или пуст. Прерывание создания объекта." -#: FlatCAMApp.py:10861 +#: FlatCAMApp.py:10893 msgid "Opening Gerber" msgstr "Открытие Gerber" -#: FlatCAMApp.py:10868 +#: FlatCAMApp.py:10900 msgid " Open Gerber failed. Probable not a Gerber file." msgstr " Открыть Gerber не удалось. Вероятно это не Gerber файл." -#: FlatCAMApp.py:10900 flatcamTools/ToolPcbWizard.py:427 +#: FlatCAMApp.py:10932 flatcamTools/ToolPcbWizard.py:427 msgid "This is not Excellon file." msgstr "Это не Excellon файл." -#: FlatCAMApp.py:10904 +#: FlatCAMApp.py:10936 msgid "Cannot open file" msgstr "Не удается открыть файл" -#: FlatCAMApp.py:10924 flatcamTools/ToolPDF.py:275 +#: FlatCAMApp.py:10956 flatcamTools/ToolPDF.py:275 #: flatcamTools/ToolPcbWizard.py:451 msgid "No geometry found in file" msgstr "Геометрия не найдена в файле" -#: FlatCAMApp.py:10927 +#: FlatCAMApp.py:10959 msgid "Opening Excellon." msgstr "Открытие Excellon." -#: FlatCAMApp.py:10934 +#: FlatCAMApp.py:10966 msgid "Open Excellon file failed. Probable not an Excellon file." msgstr "Не удалось открыть файл Excellon. Вероятно это не файл Excellon." -#: FlatCAMApp.py:10965 +#: FlatCAMApp.py:10997 msgid "Reading GCode file" msgstr "Чтение файла GCode" -#: FlatCAMApp.py:10972 +#: FlatCAMApp.py:11004 msgid "Failed to open" msgstr "Не удалось открыть" -#: FlatCAMApp.py:10980 +#: FlatCAMApp.py:11012 msgid "This is not GCODE" msgstr "Это не GCODE" -#: FlatCAMApp.py:10985 +#: FlatCAMApp.py:11017 msgid "Opening G-Code." msgstr "Открытие G-Code." -#: FlatCAMApp.py:10994 +#: FlatCAMApp.py:11026 msgid "" "Failed to create CNCJob Object. Probable not a GCode file. Try to load it " "from File menu.\n" @@ -1366,68 +1366,68 @@ msgstr "" " Попытка создать объект FlatCAM CNCJob из файла G-кода не удалась во время " "обработки" -#: FlatCAMApp.py:11053 +#: FlatCAMApp.py:11085 msgid "Object is not HPGL2 file or empty. Aborting object creation." msgstr "" "Объект не является файлом HPGL2 или пустым. Прерывание создания объекта." -#: FlatCAMApp.py:11058 +#: FlatCAMApp.py:11090 msgid "Opening HPGL2" msgstr "Открытие HPGL2" -#: FlatCAMApp.py:11065 +#: FlatCAMApp.py:11097 msgid " Open HPGL2 failed. Probable not a HPGL2 file." msgstr " Открыть HPGL2 не удалось. Вероятно, не файл HPGL2." -#: FlatCAMApp.py:11086 +#: FlatCAMApp.py:11118 msgid "Opening TCL Script..." msgstr "Открытие TCL-сценария..." -#: FlatCAMApp.py:11094 +#: FlatCAMApp.py:11126 msgid "TCL script file opened in Code Editor." msgstr "Файл сценария открыт в редакторе кода." -#: FlatCAMApp.py:11097 +#: FlatCAMApp.py:11129 msgid "Failed to open TCL Script." msgstr "Не удалось открыть TCL-сценарий." -#: FlatCAMApp.py:11125 +#: FlatCAMApp.py:11157 msgid "Opening FlatCAM Config file." msgstr "Открытие файла конфигурации." -#: FlatCAMApp.py:11153 +#: FlatCAMApp.py:11185 msgid "Failed to open config file" msgstr "Не удалось открыть файл конфигурации" -#: FlatCAMApp.py:11179 +#: FlatCAMApp.py:11211 msgid "Loading Project ... Please Wait ..." msgstr "Загрузка проекта ... Пожалуйста, подождите ..." -#: FlatCAMApp.py:11184 +#: FlatCAMApp.py:11216 msgid "Opening FlatCAM Project file." msgstr "Открытие файла проекта FlatCAM." -#: FlatCAMApp.py:11194 FlatCAMApp.py:11212 +#: FlatCAMApp.py:11226 FlatCAMApp.py:11244 msgid "Failed to open project file" msgstr "Не удалось открыть файл проекта" -#: FlatCAMApp.py:11246 +#: FlatCAMApp.py:11278 msgid "Loading Project ... restoring" msgstr "Загрузка проекта ... восстановление" -#: FlatCAMApp.py:11255 +#: FlatCAMApp.py:11287 msgid "Project loaded from" msgstr "Проект загружен из" -#: FlatCAMApp.py:11318 +#: FlatCAMApp.py:11350 msgid "Redrawing all objects" msgstr "Перерисовка всех объектов" -#: FlatCAMApp.py:11350 +#: FlatCAMApp.py:11382 msgid "Available commands:\n" msgstr "Доступные команды:\n" -#: FlatCAMApp.py:11352 +#: FlatCAMApp.py:11384 msgid "" "\n" "\n" @@ -1439,51 +1439,51 @@ msgstr "" "Для дополнительной информации ведите help <имя_команды> .\n" "Пример: help open_gerber" -#: FlatCAMApp.py:11502 +#: FlatCAMApp.py:11534 msgid "Shows list of commands." msgstr "Показывает список команд." -#: FlatCAMApp.py:11564 +#: FlatCAMApp.py:11596 msgid "Failed to load recent item list." msgstr "Не удалось загрузить список недавних файлов." -#: FlatCAMApp.py:11572 +#: FlatCAMApp.py:11604 msgid "Failed to parse recent item list." msgstr "Не удалось прочитать список недавних файлов." -#: FlatCAMApp.py:11583 +#: FlatCAMApp.py:11615 msgid "Failed to load recent projects item list." msgstr "Не удалось загрузить список элементов последних проектов." -#: FlatCAMApp.py:11591 +#: FlatCAMApp.py:11623 msgid "Failed to parse recent project item list." msgstr "Не удалось проанализировать список последних элементов проекта." -#: FlatCAMApp.py:11650 +#: FlatCAMApp.py:11683 msgid "Clear Recent projects" msgstr "Очистить недавние проекты" -#: FlatCAMApp.py:11673 +#: FlatCAMApp.py:11707 msgid "Clear Recent files" msgstr "Очистить список" -#: FlatCAMApp.py:11690 flatcamGUI/FlatCAMGUI.py:1133 +#: FlatCAMApp.py:11724 flatcamGUI/FlatCAMGUI.py:1249 msgid "Shortcut Key List" msgstr "Список комбинаций клавиш" -#: FlatCAMApp.py:11764 +#: FlatCAMApp.py:11798 msgid "Selected Tab - Choose an Item from Project Tab" msgstr "Вкладка \"Выбранное\" - выбранный элемент на вкладке \"Проект\"" -#: FlatCAMApp.py:11765 +#: FlatCAMApp.py:11799 msgid "Details" msgstr "Описание" -#: FlatCAMApp.py:11767 +#: FlatCAMApp.py:11801 msgid "The normal flow when working in FlatCAM is the following:" msgstr "Нормальный порядок при работе в FlatCAM выглядит следующим образом:" -#: FlatCAMApp.py:11768 +#: FlatCAMApp.py:11802 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 " @@ -1493,7 +1493,7 @@ msgstr "" "или SVG-файл в FlatCAM с помощью панели инструментов, сочетания клавиш или " "просто перетащив в окно программы." -#: FlatCAMApp.py:11771 +#: FlatCAMApp.py:11805 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 " @@ -1503,7 +1503,7 @@ msgstr "" "перетащив его в окно программы или с помощью действий меню (или панели " "инструментов), предлагаемых в приложении." -#: FlatCAMApp.py:11774 +#: FlatCAMApp.py:11808 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 " @@ -1515,7 +1515,7 @@ msgstr "" "объекта на вкладке \"Проект\", вкладка \"Выбранное\" будет обновлена в " "соответствии с видом объекта: Gerber, Excellon, Geometry или CNCJob." -#: FlatCAMApp.py:11778 +#: FlatCAMApp.py:11812 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,13 +1528,13 @@ msgstr "" "вкладке \"Выбранное\". Кроме того, двойной щелчок по объекту на холсте " "откроет вкладку \"Выбранное\" и заполнит ее, даже если она была не в фокусе." -#: FlatCAMApp.py:11782 +#: FlatCAMApp.py:11816 msgid "" "You can change the parameters in this screen and the flow direction is like " "this:" msgstr "Вы можете изменить параметры на этом экране, и порядок будет таким:" -#: FlatCAMApp.py:11783 +#: FlatCAMApp.py:11817 msgid "" "Gerber/Excellon Object --> Change Parameter --> Generate Geometry --> " "Geometry Object --> Add tools (change param in Selected Tab) --> Generate " @@ -1548,7 +1548,7 @@ msgstr "" "необходимости, дополнительные команды в начало или конец GCode (опять же, " "во вкладке \"Выбранное\") -> Сохранить GCode (кнопка \"Сохранить CNC Code\")." -#: FlatCAMApp.py:11787 +#: FlatCAMApp.py:11821 msgid "" "A list of key shortcuts is available through an menu entry in Help --> " "Shortcuts List or through its own key shortcut: F3." @@ -1556,24 +1556,24 @@ msgstr "" "Список комбинаций клавиш доступен через пункт меню Помощь --> Список " "комбинаций клавиш или через клавишу: F3." -#: FlatCAMApp.py:11848 +#: FlatCAMApp.py:11882 msgid "Failed checking for latest version. Could not connect." msgstr "" "Не удалось проверить обновление программы. Отсутствует интернет подключение ." -#: FlatCAMApp.py:11856 +#: FlatCAMApp.py:11890 msgid "Could not parse information about latest version." msgstr "Не удается обработать информацию о последней версии." -#: FlatCAMApp.py:11867 +#: FlatCAMApp.py:11901 msgid "FlatCAM is up to date!" msgstr "FlatCAM в актуальном состоянии!" -#: FlatCAMApp.py:11872 +#: FlatCAMApp.py:11906 msgid "Newer Version Available" msgstr "Доступна новая версия" -#: FlatCAMApp.py:11873 +#: FlatCAMApp.py:11907 msgid "" "There is a newer version of FlatCAM available for download:\n" "\n" @@ -1581,63 +1581,63 @@ msgstr "" "Новая версия FlatCAM доступна для загрузки:\n" "\n" -#: FlatCAMApp.py:11875 +#: FlatCAMApp.py:11909 msgid "info" msgstr "инфо" -#: FlatCAMApp.py:11954 +#: FlatCAMApp.py:11988 msgid "All plots disabled." msgstr "Все участки отключены." -#: FlatCAMApp.py:11961 +#: FlatCAMApp.py:11995 msgid "All non selected plots disabled." msgstr "Все не выбранные участки отключены." -#: FlatCAMApp.py:11968 +#: FlatCAMApp.py:12002 msgid "All plots enabled." msgstr "Все участки включены." -#: FlatCAMApp.py:11975 +#: FlatCAMApp.py:12009 msgid "Selected plots enabled..." msgstr "Выбранные участки включены..." -#: FlatCAMApp.py:11984 +#: FlatCAMApp.py:12018 msgid "Selected plots disabled..." msgstr "Выбранные участки отключены..." -#: FlatCAMApp.py:12003 +#: FlatCAMApp.py:12037 msgid "Enabling plots ..." msgstr "Включение участков ..." -#: FlatCAMApp.py:12043 +#: FlatCAMApp.py:12077 msgid "Disabling plots ..." msgstr "Отключение участков ..." -#: FlatCAMApp.py:12065 +#: FlatCAMApp.py:12099 msgid "Working ..." msgstr "Обработка…" -#: FlatCAMApp.py:12104 +#: FlatCAMApp.py:12138 msgid "Saving FlatCAM Project" msgstr "Сохранение проекта FlatCAM" -#: FlatCAMApp.py:12124 FlatCAMApp.py:12162 +#: FlatCAMApp.py:12158 FlatCAMApp.py:12196 msgid "Project saved to" msgstr "Проект сохранён в" -#: FlatCAMApp.py:12144 +#: FlatCAMApp.py:12178 msgid "Failed to verify project file" msgstr "Не удалось проверить файл проекта" -#: FlatCAMApp.py:12144 FlatCAMApp.py:12153 FlatCAMApp.py:12165 +#: FlatCAMApp.py:12178 FlatCAMApp.py:12187 FlatCAMApp.py:12199 msgid "Retry to save it." msgstr "Повторите попытку, чтобы сохранить его." -#: FlatCAMApp.py:12153 FlatCAMApp.py:12165 +#: FlatCAMApp.py:12187 FlatCAMApp.py:12199 msgid "Failed to parse saved project file" msgstr "Не удалось проанализировать сохраненный файл проекта" -#: FlatCAMApp.py:12281 +#: FlatCAMApp.py:12315 msgid "The user requested a graceful exit of the current task." msgstr "Пользователь запросил выход из текущего задания." @@ -1719,7 +1719,7 @@ msgstr "Закладка удалена." msgid "Export FlatCAM Bookmarks" msgstr "Экспорт закладок FlatCAM" -#: FlatCAMCommon.py:363 flatcamGUI/FlatCAMGUI.py:448 +#: FlatCAMCommon.py:363 flatcamGUI/FlatCAMGUI.py:472 msgid "Bookmarks" msgstr "Закладки" @@ -1751,13 +1751,13 @@ msgstr "Импорт закладок FlatCAM отменен." msgid "Imported Bookmarks from" msgstr "Закладки импортированы из" -#: FlatCAMCommon.py:477 FlatCAMObj.py:3588 FlatCAMObj.py:4589 -#: FlatCAMObj.py:4590 FlatCAMObj.py:4599 +#: FlatCAMCommon.py:477 FlatCAMObj.py:3588 FlatCAMObj.py:4592 +#: FlatCAMObj.py:4593 FlatCAMObj.py:4602 msgid "Iso" msgstr "Изоляция" #: FlatCAMCommon.py:477 FlatCAMCommon.py:1012 FlatCAMObj.py:1351 -#: FlatCAMObj.py:3588 FlatCAMObj.py:3861 FlatCAMObj.py:4149 +#: FlatCAMObj.py:3588 FlatCAMObj.py:3861 FlatCAMObj.py:4152 msgid "Rough" msgstr "Грубый" @@ -1770,12 +1770,12 @@ msgid "Tool Name" msgstr "Название инструмента" #: FlatCAMCommon.py:514 flatcamEditors/FlatCAMExcEditor.py:1527 -#: flatcamGUI/ObjectUI.py:1256 flatcamTools/ToolNonCopperClear.py:271 +#: flatcamGUI/ObjectUI.py:1295 flatcamTools/ToolNonCopperClear.py:271 #: flatcamTools/ToolPaint.py:176 msgid "Tool Dia" msgstr "Диаметр инструмента" -#: FlatCAMCommon.py:515 flatcamGUI/ObjectUI.py:1239 +#: FlatCAMCommon.py:515 flatcamGUI/ObjectUI.py:1278 msgid "Tool Offset" msgstr "Смещение" @@ -1783,8 +1783,8 @@ msgstr "Смещение" msgid "Custom Offset" msgstr "Пользовательское смещение" -#: FlatCAMCommon.py:517 flatcamGUI/ObjectUI.py:293 -#: flatcamGUI/PreferencesUI.py:1626 flatcamGUI/PreferencesUI.py:3991 +#: FlatCAMCommon.py:517 flatcamGUI/ObjectUI.py:304 +#: flatcamGUI/PreferencesUI.py:1627 flatcamGUI/PreferencesUI.py:3992 #: flatcamTools/ToolNonCopperClear.py:213 msgid "Tool Type" msgstr "Тип инструмента" @@ -1793,11 +1793,11 @@ msgstr "Тип инструмента" msgid "Tool Shape" msgstr "Форма инструмента" -#: 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 +#: FlatCAMCommon.py:519 flatcamGUI/ObjectUI.py:345 flatcamGUI/ObjectUI.py:820 +#: flatcamGUI/ObjectUI.py:1405 flatcamGUI/ObjectUI.py:1928 +#: flatcamGUI/PreferencesUI.py:1667 flatcamGUI/PreferencesUI.py:2335 +#: flatcamGUI/PreferencesUI.py:3180 flatcamGUI/PreferencesUI.py:4037 +#: flatcamGUI/PreferencesUI.py:4291 flatcamGUI/PreferencesUI.py:5115 #: flatcamTools/ToolCalculators.py:114 flatcamTools/ToolCutOut.py:132 #: flatcamTools/ToolNonCopperClear.py:254 msgid "Cut Z" @@ -1819,9 +1819,9 @@ msgstr "V-Dia" msgid "V-Angle" msgstr "Угол V-образного инструмента" -#: 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 +#: FlatCAMCommon.py:524 flatcamGUI/ObjectUI.py:839 flatcamGUI/ObjectUI.py:1452 +#: flatcamGUI/PreferencesUI.py:2353 flatcamGUI/PreferencesUI.py:3233 +#: flatcamGUI/PreferencesUI.py:6467 flatcamTools/ToolCalibration.py:74 msgid "Travel Z" msgstr "Отвод по Z" @@ -1837,12 +1837,12 @@ msgstr "FR Z" msgid "FR Rapids" msgstr "Скорость подачи" -#: FlatCAMCommon.py:528 flatcamGUI/PreferencesUI.py:2427 +#: FlatCAMCommon.py:528 flatcamGUI/PreferencesUI.py:2428 msgid "Spindle Speed" msgstr "Скорость вращения шпинделя" -#: FlatCAMCommon.py:529 flatcamGUI/ObjectUI.py:939 flatcamGUI/ObjectUI.py:1582 -#: flatcamGUI/PreferencesUI.py:2439 flatcamGUI/PreferencesUI.py:3353 +#: FlatCAMCommon.py:529 flatcamGUI/ObjectUI.py:963 flatcamGUI/ObjectUI.py:1621 +#: flatcamGUI/PreferencesUI.py:2440 flatcamGUI/PreferencesUI.py:3354 msgid "Dwell" msgstr "Задержка" @@ -1850,8 +1850,8 @@ msgstr "Задержка" msgid "Dwelltime" msgstr "Задержка" -#: FlatCAMCommon.py:531 flatcamGUI/ObjectUI.py:958 -#: flatcamGUI/PreferencesUI.py:2461 flatcamGUI/PreferencesUI.py:3375 +#: FlatCAMCommon.py:531 flatcamGUI/ObjectUI.py:982 +#: flatcamGUI/PreferencesUI.py:2462 flatcamGUI/PreferencesUI.py:3376 msgid "Preprocessor" msgstr "Постпроцессор" @@ -1871,8 +1871,8 @@ msgstr "Смена инструментов" msgid "Toolchange XY" msgstr "Смена инструмента XY" -#: FlatCAMCommon.py:536 flatcamGUI/PreferencesUI.py:2378 -#: flatcamGUI/PreferencesUI.py:3264 flatcamGUI/PreferencesUI.py:6503 +#: FlatCAMCommon.py:536 flatcamGUI/PreferencesUI.py:2379 +#: flatcamGUI/PreferencesUI.py:3265 flatcamGUI/PreferencesUI.py:6504 #: flatcamTools/ToolCalibration.py:111 msgid "Toolchange Z" msgstr "Смена инструмента Z" @@ -2311,13 +2311,13 @@ msgstr "Масштабирование..." msgid "Skewing..." msgstr "Наклон..." -#: FlatCAMObj.py:723 FlatCAMObj.py:2710 FlatCAMObj.py:3904 -#: flatcamGUI/PreferencesUI.py:1123 flatcamGUI/PreferencesUI.py:2257 +#: FlatCAMObj.py:723 FlatCAMObj.py:2710 FlatCAMObj.py:3907 +#: flatcamGUI/PreferencesUI.py:1124 flatcamGUI/PreferencesUI.py:2258 msgid "Basic" msgstr "Базовый" -#: FlatCAMObj.py:745 FlatCAMObj.py:2722 FlatCAMObj.py:3925 -#: flatcamGUI/PreferencesUI.py:1124 +#: FlatCAMObj.py:745 FlatCAMObj.py:2722 FlatCAMObj.py:3928 +#: flatcamGUI/PreferencesUI.py:1125 msgid "Advanced" msgstr "Расширенный" @@ -2325,16 +2325,16 @@ msgstr "Расширенный" msgid "Buffering solid geometry" msgstr "Буферизация solid геометрии" -#: FlatCAMObj.py:965 camlib.py:965 flatcamGUI/PreferencesUI.py:1700 +#: FlatCAMObj.py:965 camlib.py:965 flatcamGUI/PreferencesUI.py:1701 #: flatcamTools/ToolCopperThieving.py:1010 #: flatcamTools/ToolCopperThieving.py:1199 #: flatcamTools/ToolCopperThieving.py:1211 -#: flatcamTools/ToolNonCopperClear.py:1628 -#: flatcamTools/ToolNonCopperClear.py:1726 -#: flatcamTools/ToolNonCopperClear.py:1738 -#: flatcamTools/ToolNonCopperClear.py:1987 -#: flatcamTools/ToolNonCopperClear.py:2083 -#: flatcamTools/ToolNonCopperClear.py:2095 +#: flatcamTools/ToolNonCopperClear.py:1629 +#: flatcamTools/ToolNonCopperClear.py:1727 +#: flatcamTools/ToolNonCopperClear.py:1739 +#: flatcamTools/ToolNonCopperClear.py:1988 +#: flatcamTools/ToolNonCopperClear.py:2084 +#: flatcamTools/ToolNonCopperClear.py:2096 msgid "Buffering" msgstr "Буферизация" @@ -2350,7 +2350,7 @@ msgstr "Изоляция..." msgid "Click on a polygon to isolate it." msgstr "Нажмите на полигон, чтобы изолировать его." -#: FlatCAMObj.py:1117 FlatCAMObj.py:1222 flatcamTools/ToolPaint.py:1125 +#: FlatCAMObj.py:1117 FlatCAMObj.py:1222 flatcamTools/ToolPaint.py:1126 msgid "Added polygon" msgstr "Добавленный полигон" @@ -2360,7 +2360,7 @@ msgstr "" "Щелкните, чтобы добавить следующий полигон, или щелкните правой кнопкой " "мыши, чтобы начать изоляцию." -#: FlatCAMObj.py:1131 flatcamTools/ToolPaint.py:1139 +#: FlatCAMObj.py:1131 flatcamTools/ToolPaint.py:1140 msgid "Removed polygon" msgstr "Удалённый полигон" @@ -2370,11 +2370,11 @@ msgstr "" "Щелкните, чтобы добавить/удалить следующий полигон, или щелкните правой " "кнопкой мыши, чтобы начать изоляцию." -#: FlatCAMObj.py:1137 flatcamTools/ToolPaint.py:1145 +#: FlatCAMObj.py:1137 flatcamTools/ToolPaint.py:1146 msgid "No polygon detected under click position." msgstr "Полигон не обнаружен в указанной позиции." -#: FlatCAMObj.py:1158 flatcamTools/ToolPaint.py:1174 +#: FlatCAMObj.py:1158 flatcamTools/ToolPaint.py:1175 msgid "List of single polygons is empty. Aborting." msgstr "Список одиночных полигонов пуст. Отмена." @@ -2383,8 +2383,8 @@ msgid "No polygon in selection." msgstr "Нет полигона в выборе." #: FlatCAMObj.py:1301 FlatCAMObj.py:1430 -#: flatcamTools/ToolNonCopperClear.py:1657 -#: flatcamTools/ToolNonCopperClear.py:2011 +#: flatcamTools/ToolNonCopperClear.py:1658 +#: flatcamTools/ToolNonCopperClear.py:2012 msgid "Isolation geometry could not be generated." msgstr "Геометрия изоляции не может быть сгенерирована." @@ -2418,9 +2418,9 @@ msgstr "" msgid "Milling tool for DRILLS is larger than hole size. Cancelled." msgstr "Сверло больше, чем размер отверстия. Отмена." -#: FlatCAMObj.py:3032 FlatCAMObj.py:4490 flatcamEditors/FlatCAMGeoEditor.py:408 -#: flatcamGUI/FlatCAMGUI.py:438 flatcamGUI/FlatCAMGUI.py:930 -#: flatcamGUI/ObjectUI.py:1314 +#: FlatCAMObj.py:3032 FlatCAMObj.py:4493 flatcamEditors/FlatCAMGeoEditor.py:408 +#: flatcamGUI/FlatCAMGUI.py:459 flatcamGUI/FlatCAMGUI.py:1046 +#: flatcamGUI/ObjectUI.py:1353 msgid "Tool" msgstr "Инструменты" @@ -2430,7 +2430,7 @@ msgstr "№ инструмента" #: FlatCAMObj.py:3048 FlatCAMObj.py:3141 FlatCAMObj.py:3259 #: flatcamEditors/FlatCAMExcEditor.py:1507 -#: flatcamEditors/FlatCAMExcEditor.py:2967 flatcamGUI/ObjectUI.py:753 +#: flatcamEditors/FlatCAMExcEditor.py:2967 flatcamGUI/ObjectUI.py:777 #: flatcamTools/ToolNonCopperClear.py:120 flatcamTools/ToolPaint.py:123 #: flatcamTools/ToolPcbWizard.py:76 flatcamTools/ToolProperties.py:396 #: flatcamTools/ToolProperties.py:449 flatcamTools/ToolSolderPaste.py:84 @@ -2465,7 +2465,7 @@ msgstr "" "Неправильный формат значения для self.defaults[\"feedrate_probe\"] или self." "options[\"feedrate_probe\"]" -#: FlatCAMObj.py:3341 FlatCAMObj.py:5311 FlatCAMObj.py:5315 FlatCAMObj.py:5450 +#: FlatCAMObj.py:3341 FlatCAMObj.py:5314 FlatCAMObj.py:5318 FlatCAMObj.py:5453 msgid "Generating CNC Code" msgstr "Генерация кода ЧПУ" @@ -2473,17 +2473,17 @@ msgstr "Генерация кода ЧПУ" msgid "Add from Tool DB" msgstr "Добавить инструмент из БД" -#: 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 +#: FlatCAMObj.py:3899 flatcamGUI/FlatCAMGUI.py:652 flatcamGUI/FlatCAMGUI.py:768 +#: flatcamGUI/FlatCAMGUI.py:963 flatcamGUI/FlatCAMGUI.py:1984 +#: flatcamGUI/FlatCAMGUI.py:2128 flatcamGUI/FlatCAMGUI.py:2343 +#: flatcamGUI/FlatCAMGUI.py:2522 flatcamGUI/ObjectUI.py:1324 #: flatcamTools/ToolPanelize.py:534 flatcamTools/ToolPanelize.py:561 #: flatcamTools/ToolPanelize.py:660 flatcamTools/ToolPanelize.py:694 #: flatcamTools/ToolPanelize.py:759 msgid "Copy" msgstr "Копировать" -#: FlatCAMObj.py:3985 FlatCAMObj.py:4354 FlatCAMObj.py:5061 FlatCAMObj.py:5701 +#: FlatCAMObj.py:3988 FlatCAMObj.py:4357 FlatCAMObj.py:5064 FlatCAMObj.py:5704 #: flatcamEditors/FlatCAMExcEditor.py:2459 #: flatcamEditors/FlatCAMGeoEditor.py:1078 #: flatcamEditors/FlatCAMGeoEditor.py:1112 @@ -2492,64 +2492,64 @@ msgstr "Копировать" #: 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 +#: flatcamTools/ToolNonCopperClear.py:1058 +#: flatcamTools/ToolNonCopperClear.py:1466 flatcamTools/ToolPaint.py:841 +#: flatcamTools/ToolPaint.py:1025 flatcamTools/ToolPaint.py:2097 +#: flatcamTools/ToolSolderPaste.py:882 flatcamTools/ToolSolderPaste.py:957 msgid "Wrong value format entered, use a number." msgstr "Неправильно введен формат значения, используйте числа." -#: FlatCAMObj.py:4123 +#: FlatCAMObj.py:4126 msgid "Please enter the desired tool diameter in Float format." msgstr "" "Пожалуйста, введите нужный диаметр инструмента в формате числа с плавающей " "точкой." -#: FlatCAMObj.py:4193 +#: FlatCAMObj.py:4196 msgid "Tool added in Tool Table." msgstr "Инструмент добавлен в таблицу инструментов." -#: FlatCAMObj.py:4197 +#: FlatCAMObj.py:4200 msgid "Default Tool added. Wrong value format entered." msgstr "Добавлен инструмент по умолчанию. Введен неправильный формат значения." -#: FlatCAMObj.py:4304 FlatCAMObj.py:4313 +#: FlatCAMObj.py:4307 FlatCAMObj.py:4316 msgid "Failed. Select a tool to copy." msgstr "Ошибка. Выберите инструмент для копирования." -#: FlatCAMObj.py:4340 +#: FlatCAMObj.py:4343 msgid "Tool was copied in Tool Table." msgstr "Инструмент скопирован в таблицу инструментов." -#: FlatCAMObj.py:4368 +#: FlatCAMObj.py:4371 msgid "Tool was edited in Tool Table." msgstr "Инструмент был изменён в таблице инструментов." -#: FlatCAMObj.py:4397 FlatCAMObj.py:4406 +#: FlatCAMObj.py:4400 FlatCAMObj.py:4409 msgid "Failed. Select a tool to delete." msgstr "Ошибка. Выберите инструмент для удаления." -#: FlatCAMObj.py:4429 +#: FlatCAMObj.py:4432 msgid "Tool was deleted in Tool Table." msgstr "Инструмент был удален из таблицы инструментов." -#: FlatCAMObj.py:4490 flatcamGUI/ObjectUI.py:1314 +#: FlatCAMObj.py:4493 flatcamGUI/ObjectUI.py:1353 msgid "Parameters for" msgstr "Параметры для" -#: FlatCAMObj.py:4921 +#: FlatCAMObj.py:4924 msgid "This Geometry can't be processed because it is" msgstr "Эта Geometry не может быть обработана, так как это" -#: FlatCAMObj.py:4923 +#: FlatCAMObj.py:4926 msgid "geometry" msgstr "геометрия" -#: FlatCAMObj.py:4966 +#: FlatCAMObj.py:4969 msgid "Failed. No tool selected in the tool table ..." msgstr "Ошибка. Инструмент не выбран в таблице инструментов ..." -#: FlatCAMObj.py:5066 FlatCAMObj.py:5219 +#: FlatCAMObj.py:5069 FlatCAMObj.py:5222 msgid "" "Tool Offset is selected in Tool Table but no value is provided.\n" "Add a Tool Offset or change the Offset Type." @@ -2557,46 +2557,46 @@ msgstr "" "Смещение выбранного в таблице инструментов инструмента не указано.\n" "Добавьте смещение инструмента или измените тип смещения." -#: FlatCAMObj.py:5131 FlatCAMObj.py:5280 +#: FlatCAMObj.py:5134 FlatCAMObj.py:5283 msgid "G-Code parsing in progress..." msgstr "Разбор G-кода ..." -#: FlatCAMObj.py:5133 FlatCAMObj.py:5282 +#: FlatCAMObj.py:5136 FlatCAMObj.py:5285 msgid "G-Code parsing finished..." msgstr "Разбор G-кода завершен..." -#: FlatCAMObj.py:5141 +#: FlatCAMObj.py:5144 msgid "Finished G-Code processing" msgstr "Закончена обработка G-кода" -#: FlatCAMObj.py:5143 FlatCAMObj.py:5294 +#: FlatCAMObj.py:5146 FlatCAMObj.py:5297 msgid "G-Code processing failed with error" msgstr "Обработка G-кода завершилась ошибкой" -#: FlatCAMObj.py:5189 flatcamTools/ToolSolderPaste.py:1300 +#: FlatCAMObj.py:5192 flatcamTools/ToolSolderPaste.py:1303 msgid "Cancelled. Empty file, it has no geometry" msgstr "Отмена. Пустой файл, он не имеет геометрии" -#: FlatCAMObj.py:5292 FlatCAMObj.py:5443 +#: FlatCAMObj.py:5295 FlatCAMObj.py:5446 msgid "Finished G-Code processing..." msgstr "Разбор G-кода завершен..." -#: FlatCAMObj.py:5313 FlatCAMObj.py:5317 FlatCAMObj.py:5453 +#: FlatCAMObj.py:5316 FlatCAMObj.py:5320 FlatCAMObj.py:5456 msgid "CNCjob created" msgstr "CNCjob создан" -#: FlatCAMObj.py:5484 FlatCAMObj.py:5493 flatcamParsers/ParseGerber.py:1750 +#: FlatCAMObj.py:5487 FlatCAMObj.py:5496 flatcamParsers/ParseGerber.py:1750 #: flatcamParsers/ParseGerber.py:1760 msgid "Scale factor has to be a number: integer or float." msgstr "" "Коэффициент масштабирования должен быть числом: целочисленным или с " "плавающей запятой." -#: FlatCAMObj.py:5557 +#: FlatCAMObj.py:5560 msgid "Geometry Scale done." msgstr "Масштабирование Geometry выполнено." -#: FlatCAMObj.py:5574 flatcamParsers/ParseGerber.py:1876 +#: FlatCAMObj.py:5577 flatcamParsers/ParseGerber.py:1876 msgid "" "An (x,y) pair of values are needed. Probable you entered only one value in " "the Offset field." @@ -2604,11 +2604,11 @@ msgstr "" "Необходима пара значений (x,y). Возможно, вы ввели только одно значение в " "поле \"Смещение\"." -#: FlatCAMObj.py:5631 +#: FlatCAMObj.py:5634 msgid "Geometry Offset done." msgstr "Смещение Geometry выполнено." -#: FlatCAMObj.py:5660 +#: FlatCAMObj.py:5663 msgid "" "The Toolchange X,Y field in Edit -> Preferences has to be in the format (x, " "y)\n" @@ -2618,77 +2618,77 @@ msgstr "" "y)\n" "но теперь есть только одно значение, а не два." -#: FlatCAMObj.py:6335 FlatCAMObj.py:6993 FlatCAMObj.py:7189 +#: FlatCAMObj.py:6338 FlatCAMObj.py:6996 FlatCAMObj.py:7192 msgid "Basic" msgstr "Базовый" -#: FlatCAMObj.py:6341 FlatCAMObj.py:6997 FlatCAMObj.py:7193 +#: FlatCAMObj.py:6344 FlatCAMObj.py:7000 FlatCAMObj.py:7196 msgid "Advanced" msgstr "Расширенный" -#: FlatCAMObj.py:6384 +#: FlatCAMObj.py:6387 msgid "Plotting..." msgstr "Построение..." -#: FlatCAMObj.py:6407 FlatCAMObj.py:6412 flatcamTools/ToolSolderPaste.py:1506 +#: FlatCAMObj.py:6410 FlatCAMObj.py:6415 flatcamTools/ToolSolderPaste.py:1509 msgid "Export Machine Code ..." msgstr "Экспорт GCode ..." -#: FlatCAMObj.py:6417 flatcamTools/ToolSolderPaste.py:1510 +#: FlatCAMObj.py:6420 flatcamTools/ToolSolderPaste.py:1513 msgid "Export Machine Code cancelled ..." msgstr "Экспорт Machine Code отменен ..." -#: FlatCAMObj.py:6439 +#: FlatCAMObj.py:6442 msgid "Machine Code file saved to" msgstr "Файл Machine Code сохранён в" -#: FlatCAMObj.py:6493 flatcamTools/ToolCalibration.py:1083 +#: FlatCAMObj.py:6496 flatcamTools/ToolCalibration.py:1083 msgid "Loaded Machine Code into Code Editor" msgstr "Машинный код загружен в редактор кода" -#: FlatCAMObj.py:6628 +#: FlatCAMObj.py:6631 msgid "This CNCJob object can't be processed because it is a" msgstr "CNCJob объект не может быть обработан, так как" -#: FlatCAMObj.py:6630 +#: FlatCAMObj.py:6633 msgid "CNCJob object" msgstr "CNCJob object" -#: FlatCAMObj.py:6681 +#: FlatCAMObj.py:6684 msgid "G-code does not have a units code: either G20 or G21" msgstr "G-code не имеет кода единиц измерения: G20 или G21" -#: FlatCAMObj.py:6695 +#: FlatCAMObj.py:6698 msgid "Cancelled. The Toolchange Custom code is enabled but it's empty." msgstr "Отмена. Пользовательский код смены инструмента включен, но он пуст." -#: FlatCAMObj.py:6700 +#: FlatCAMObj.py:6703 msgid "Toolchange G-code was replaced by a custom code." msgstr "G-code смены инструмента был заменен на пользовательский код." -#: FlatCAMObj.py:6717 flatcamEditors/FlatCAMTextEditor.py:224 -#: flatcamTools/ToolSolderPaste.py:1537 +#: FlatCAMObj.py:6720 flatcamEditors/FlatCAMTextEditor.py:224 +#: flatcamTools/ToolSolderPaste.py:1540 msgid "No such file or directory" msgstr "Нет такого файла или каталога" -#: FlatCAMObj.py:6731 flatcamEditors/FlatCAMTextEditor.py:236 +#: FlatCAMObj.py:6734 flatcamEditors/FlatCAMTextEditor.py:236 msgid "Saved to" msgstr "Сохранено в" -#: FlatCAMObj.py:6741 FlatCAMObj.py:6751 +#: FlatCAMObj.py:6744 FlatCAMObj.py:6754 msgid "" "The used preprocessor file has to have in it's name: 'toolchange_custom'" msgstr "Используемый файл постпроцессора должен иметь имя: 'toolchange_custom'" -#: FlatCAMObj.py:6755 +#: FlatCAMObj.py:6758 msgid "There is no preprocessor file." msgstr "Это не файл постпроцессора." -#: FlatCAMObj.py:7012 +#: FlatCAMObj.py:7015 msgid "Script Editor" msgstr "Редактор сценариев" -#: FlatCAMObj.py:7293 +#: FlatCAMObj.py:7296 msgid "Document Editor" msgstr "Редактор Document" @@ -2696,24 +2696,24 @@ msgstr "Редактор Document" msgid "processes running." msgstr "процессы запущены." -#: FlatCAMTranslation.py:92 +#: FlatCAMTranslation.py:103 msgid "The application will restart." msgstr "Приложение будет перезапущено." -#: FlatCAMTranslation.py:94 +#: FlatCAMTranslation.py:105 msgid "Are you sure do you want to change the current language to" msgstr "Вы уверены, что хотите изменить текущий язык на" -#: FlatCAMTranslation.py:95 +#: FlatCAMTranslation.py:106 msgid "Apply Language ..." msgstr "Применить язык ..." -#: ObjectCollection.py:453 +#: ObjectCollection.py:454 #, python-brace-format msgid "Object renamed from {old} to {new}" msgstr "Объект переименован из {old} в {new}" -#: ObjectCollection.py:852 +#: ObjectCollection.py:853 msgid "Cause of error" msgstr "Причина ошибки" @@ -3042,8 +3042,8 @@ msgstr "" "изменения размера." #: flatcamEditors/FlatCAMExcEditor.py:983 -#: flatcamEditors/FlatCAMExcEditor.py:1052 flatcamGUI/FlatCAMGUI.py:2892 -#: flatcamGUI/FlatCAMGUI.py:3105 flatcamGUI/FlatCAMGUI.py:3322 +#: flatcamEditors/FlatCAMExcEditor.py:1052 flatcamGUI/FlatCAMGUI.py:3127 +#: flatcamGUI/FlatCAMGUI.py:3340 flatcamGUI/FlatCAMGUI.py:3557 msgid "Cancelled." msgstr "Отменено." @@ -3068,7 +3068,7 @@ msgstr "Готово. Перемещение отверстий завершен msgid "Done. Drill(s) copied." msgstr "Готово. Отверстия скопированы." -#: flatcamEditors/FlatCAMExcEditor.py:1480 flatcamGUI/PreferencesUI.py:2820 +#: flatcamEditors/FlatCAMExcEditor.py:1480 flatcamGUI/PreferencesUI.py:2821 msgid "Excellon Editor" msgstr "Редактор Excellon" @@ -3077,13 +3077,13 @@ msgstr "Редактор Excellon" msgid "Name:" msgstr "Имя:" -#: flatcamEditors/FlatCAMExcEditor.py:1493 flatcamGUI/ObjectUI.py:733 -#: flatcamGUI/ObjectUI.py:1145 flatcamTools/ToolNonCopperClear.py:109 +#: flatcamEditors/FlatCAMExcEditor.py:1493 flatcamGUI/ObjectUI.py:757 +#: flatcamGUI/ObjectUI.py:1184 flatcamTools/ToolNonCopperClear.py:109 #: flatcamTools/ToolPaint.py:112 flatcamTools/ToolSolderPaste.py:73 msgid "Tools Table" msgstr "Таблица инструментов" -#: flatcamEditors/FlatCAMExcEditor.py:1495 flatcamGUI/ObjectUI.py:735 +#: flatcamEditors/FlatCAMExcEditor.py:1495 flatcamGUI/ObjectUI.py:759 msgid "" "Tools in this Excellon object\n" "when are used for drilling." @@ -3103,8 +3103,8 @@ msgstr "" "Добавляет/Удаляет инструмент в списоке инструментов\n" "для этого Excellon объекта ." -#: flatcamEditors/FlatCAMExcEditor.py:1529 flatcamGUI/ObjectUI.py:1258 -#: flatcamGUI/PreferencesUI.py:2851 +#: flatcamEditors/FlatCAMExcEditor.py:1529 flatcamGUI/ObjectUI.py:1297 +#: flatcamGUI/PreferencesUI.py:2852 msgid "Diameter for the new tool" msgstr "Диаметр нового инструмента" @@ -3132,7 +3132,7 @@ msgstr "" "Удаляет инструмент из списка инструментов\n" "в выбранной строке таблицы инструментов." -#: flatcamEditors/FlatCAMExcEditor.py:1573 flatcamGUI/FlatCAMGUI.py:1749 +#: flatcamEditors/FlatCAMExcEditor.py:1573 flatcamGUI/FlatCAMGUI.py:1865 msgid "Resize Drill(s)" msgstr "Изменить размер сверла" @@ -3156,8 +3156,8 @@ msgstr "Изменить" msgid "Resize drill(s)" msgstr "Изменить размер сверла" -#: flatcamEditors/FlatCAMExcEditor.py:1622 flatcamGUI/FlatCAMGUI.py:1748 -#: flatcamGUI/FlatCAMGUI.py:1958 +#: flatcamEditors/FlatCAMExcEditor.py:1622 flatcamGUI/FlatCAMGUI.py:1864 +#: flatcamGUI/FlatCAMGUI.py:2116 msgid "Add Drill Array" msgstr "Добавить массив отверстий" @@ -3181,17 +3181,17 @@ msgstr "Линейный" #: flatcamEditors/FlatCAMExcEditor.py:1634 #: flatcamEditors/FlatCAMExcEditor.py:1848 -#: flatcamEditors/FlatCAMGrbEditor.py:2696 flatcamGUI/ObjectUI.py:300 -#: flatcamGUI/PreferencesUI.py:3999 flatcamGUI/PreferencesUI.py:6396 +#: flatcamEditors/FlatCAMGrbEditor.py:2696 flatcamGUI/ObjectUI.py:311 +#: flatcamGUI/PreferencesUI.py:4000 flatcamGUI/PreferencesUI.py:6397 #: flatcamTools/ToolFiducials.py:220 flatcamTools/ToolNonCopperClear.py:221 msgid "Circular" msgstr "Круг" -#: flatcamEditors/FlatCAMExcEditor.py:1642 flatcamGUI/PreferencesUI.py:2862 +#: flatcamEditors/FlatCAMExcEditor.py:1642 flatcamGUI/PreferencesUI.py:2863 msgid "Nr of drills" msgstr "Количество отверстий" -#: flatcamEditors/FlatCAMExcEditor.py:1643 flatcamGUI/PreferencesUI.py:2864 +#: flatcamEditors/FlatCAMExcEditor.py:1643 flatcamGUI/PreferencesUI.py:2865 msgid "Specify how many drills to be in the array." msgstr "Укажите, сколько свёрел должно быть в массиве." @@ -3202,14 +3202,14 @@ msgstr "Укажите, сколько свёрел должно быть в м #: flatcamEditors/FlatCAMExcEditor.py:1927 #: flatcamEditors/FlatCAMGrbEditor.py:1524 #: flatcamEditors/FlatCAMGrbEditor.py:2724 -#: flatcamEditors/FlatCAMGrbEditor.py:2773 flatcamGUI/PreferencesUI.py:2972 +#: flatcamEditors/FlatCAMGrbEditor.py:2773 flatcamGUI/PreferencesUI.py:2973 msgid "Direction" msgstr "Направление" #: flatcamEditors/FlatCAMExcEditor.py:1663 #: flatcamEditors/FlatCAMExcEditor.py:1878 -#: flatcamEditors/FlatCAMGrbEditor.py:2726 flatcamGUI/PreferencesUI.py:1940 -#: flatcamGUI/PreferencesUI.py:2880 flatcamGUI/PreferencesUI.py:3028 +#: flatcamEditors/FlatCAMGrbEditor.py:2726 flatcamGUI/PreferencesUI.py:1941 +#: flatcamGUI/PreferencesUI.py:2881 flatcamGUI/PreferencesUI.py:3029 msgid "" "Direction on which the linear array is oriented:\n" "- 'X' - horizontal axis \n" @@ -3224,9 +3224,9 @@ msgstr "" #: flatcamEditors/FlatCAMExcEditor.py:1670 #: flatcamEditors/FlatCAMExcEditor.py:1792 #: flatcamEditors/FlatCAMExcEditor.py:1885 -#: flatcamEditors/FlatCAMGrbEditor.py:2733 flatcamGUI/PreferencesUI.py:1946 -#: flatcamGUI/PreferencesUI.py:2886 flatcamGUI/PreferencesUI.py:2981 -#: flatcamGUI/PreferencesUI.py:3034 flatcamGUI/PreferencesUI.py:4822 +#: flatcamEditors/FlatCAMGrbEditor.py:2733 flatcamGUI/PreferencesUI.py:1947 +#: flatcamGUI/PreferencesUI.py:2887 flatcamGUI/PreferencesUI.py:2982 +#: flatcamGUI/PreferencesUI.py:3035 flatcamGUI/PreferencesUI.py:4823 #: flatcamTools/ToolFilm.py:256 msgid "X" msgstr "X" @@ -3234,9 +3234,9 @@ msgstr "X" #: flatcamEditors/FlatCAMExcEditor.py:1671 #: flatcamEditors/FlatCAMExcEditor.py:1793 #: flatcamEditors/FlatCAMExcEditor.py:1886 -#: flatcamEditors/FlatCAMGrbEditor.py:2734 flatcamGUI/PreferencesUI.py:1947 -#: flatcamGUI/PreferencesUI.py:2887 flatcamGUI/PreferencesUI.py:2982 -#: flatcamGUI/PreferencesUI.py:3035 flatcamGUI/PreferencesUI.py:4823 +#: flatcamEditors/FlatCAMGrbEditor.py:2734 flatcamGUI/PreferencesUI.py:1948 +#: flatcamGUI/PreferencesUI.py:2888 flatcamGUI/PreferencesUI.py:2983 +#: flatcamGUI/PreferencesUI.py:3036 flatcamGUI/PreferencesUI.py:4824 #: flatcamTools/ToolFilm.py:257 msgid "Y" msgstr "Y" @@ -3251,11 +3251,11 @@ msgstr "Y" #: flatcamEditors/FlatCAMExcEditor.py:1939 #: flatcamEditors/FlatCAMGrbEditor.py:2735 #: flatcamEditors/FlatCAMGrbEditor.py:2752 -#: flatcamEditors/FlatCAMGrbEditor.py:2788 flatcamGUI/PreferencesUI.py:1948 -#: 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 +#: flatcamEditors/FlatCAMGrbEditor.py:2788 flatcamGUI/PreferencesUI.py:1949 +#: flatcamGUI/PreferencesUI.py:1967 flatcamGUI/PreferencesUI.py:2889 +#: flatcamGUI/PreferencesUI.py:2908 flatcamGUI/PreferencesUI.py:2984 +#: flatcamGUI/PreferencesUI.py:2989 flatcamGUI/PreferencesUI.py:3037 +#: flatcamGUI/PreferencesUI.py:3058 flatcamGUI/PreferencesUI.py:5216 #: flatcamTools/ToolDistance.py:66 flatcamTools/ToolDistanceMin.py:68 #: flatcamTools/ToolTransform.py:62 msgid "Angle" @@ -3263,15 +3263,15 @@ msgstr "Угол" #: flatcamEditors/FlatCAMExcEditor.py:1676 #: flatcamEditors/FlatCAMExcEditor.py:1891 -#: flatcamEditors/FlatCAMGrbEditor.py:2739 flatcamGUI/PreferencesUI.py:1954 -#: flatcamGUI/PreferencesUI.py:2894 flatcamGUI/PreferencesUI.py:3042 +#: flatcamEditors/FlatCAMGrbEditor.py:2739 flatcamGUI/PreferencesUI.py:1955 +#: flatcamGUI/PreferencesUI.py:2895 flatcamGUI/PreferencesUI.py:3043 msgid "Pitch" msgstr "Шаг" #: flatcamEditors/FlatCAMExcEditor.py:1678 #: flatcamEditors/FlatCAMExcEditor.py:1893 -#: flatcamEditors/FlatCAMGrbEditor.py:2741 flatcamGUI/PreferencesUI.py:1956 -#: flatcamGUI/PreferencesUI.py:2896 flatcamGUI/PreferencesUI.py:3044 +#: flatcamEditors/FlatCAMGrbEditor.py:2741 flatcamGUI/PreferencesUI.py:1957 +#: flatcamGUI/PreferencesUI.py:2897 flatcamGUI/PreferencesUI.py:3045 msgid "Pitch = Distance between elements of the array." msgstr "Подача = Расстояние между элементами массива." @@ -3300,26 +3300,26 @@ msgstr "" #: flatcamEditors/FlatCAMExcEditor.py:1719 #: flatcamEditors/FlatCAMExcEditor.py:1935 -#: flatcamEditors/FlatCAMGrbEditor.py:2783 flatcamGUI/PreferencesUI.py:1988 -#: flatcamGUI/PreferencesUI.py:2634 flatcamGUI/PreferencesUI.py:2930 -#: flatcamGUI/PreferencesUI.py:3080 flatcamGUI/PreferencesUI.py:3508 +#: flatcamEditors/FlatCAMGrbEditor.py:2783 flatcamGUI/PreferencesUI.py:1989 +#: flatcamGUI/PreferencesUI.py:2635 flatcamGUI/PreferencesUI.py:2931 +#: flatcamGUI/PreferencesUI.py:3081 flatcamGUI/PreferencesUI.py:3509 msgid "CW" msgstr "CW" #: flatcamEditors/FlatCAMExcEditor.py:1720 #: flatcamEditors/FlatCAMExcEditor.py:1936 -#: flatcamEditors/FlatCAMGrbEditor.py:2784 flatcamGUI/PreferencesUI.py:1989 -#: flatcamGUI/PreferencesUI.py:2635 flatcamGUI/PreferencesUI.py:2931 -#: flatcamGUI/PreferencesUI.py:3081 flatcamGUI/PreferencesUI.py:3509 +#: flatcamEditors/FlatCAMGrbEditor.py:2784 flatcamGUI/PreferencesUI.py:1990 +#: flatcamGUI/PreferencesUI.py:2636 flatcamGUI/PreferencesUI.py:2932 +#: flatcamGUI/PreferencesUI.py:3082 flatcamGUI/PreferencesUI.py:3510 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:2909 -#: flatcamGUI/PreferencesUI.py:2939 flatcamGUI/PreferencesUI.py:3059 -#: flatcamGUI/PreferencesUI.py:3089 +#: flatcamEditors/FlatCAMGrbEditor.py:2790 flatcamGUI/PreferencesUI.py:1969 +#: flatcamGUI/PreferencesUI.py:1998 flatcamGUI/PreferencesUI.py:2910 +#: flatcamGUI/PreferencesUI.py:2940 flatcamGUI/PreferencesUI.py:3060 +#: flatcamGUI/PreferencesUI.py:3090 msgid "Angle at which each element in circular array is placed." msgstr "Угол, под которым расположен каждый элемент в круговом массиве." @@ -3335,16 +3335,16 @@ msgstr "" "Параметры для добавления прорези (отверстие овальной формы)\n" "либо один, либо как часть массива." -#: flatcamEditors/FlatCAMExcEditor.py:1769 flatcamGUI/PreferencesUI.py:2956 +#: flatcamEditors/FlatCAMExcEditor.py:1769 flatcamGUI/PreferencesUI.py:2957 #: flatcamTools/ToolProperties.py:555 msgid "Length" msgstr "Длина" -#: flatcamEditors/FlatCAMExcEditor.py:1771 flatcamGUI/PreferencesUI.py:2958 +#: flatcamEditors/FlatCAMExcEditor.py:1771 flatcamGUI/PreferencesUI.py:2959 msgid "Length = The length of the slot." msgstr "Длина = длина слота." -#: flatcamEditors/FlatCAMExcEditor.py:1785 flatcamGUI/PreferencesUI.py:2974 +#: flatcamEditors/FlatCAMExcEditor.py:1785 flatcamGUI/PreferencesUI.py:2975 msgid "" "Direction on which the slot is oriented:\n" "- 'X' - horizontal axis \n" @@ -3384,11 +3384,11 @@ msgstr "" "Выберите тип массива пазов для создания.\n" "Это может быть линейный X (Y) или круговой" -#: flatcamEditors/FlatCAMExcEditor.py:1856 flatcamGUI/PreferencesUI.py:3013 +#: flatcamEditors/FlatCAMExcEditor.py:1856 flatcamGUI/PreferencesUI.py:3014 msgid "Nr of slots" msgstr "Количество пазов" -#: flatcamEditors/FlatCAMExcEditor.py:1857 flatcamGUI/PreferencesUI.py:3015 +#: flatcamEditors/FlatCAMExcEditor.py:1857 flatcamGUI/PreferencesUI.py:3016 msgid "Specify how many slots to be in the array." msgstr "Укажите, сколько пазов должно быть в массиве." @@ -3401,7 +3401,7 @@ msgstr "" "Сохраните и повторно отредактируйте Excellon, если вам нужно добавить этот " "инструмент. " -#: flatcamEditors/FlatCAMExcEditor.py:2480 flatcamGUI/FlatCAMGUI.py:3491 +#: flatcamEditors/FlatCAMExcEditor.py:2480 flatcamGUI/FlatCAMGUI.py:3726 msgid "Added new tool with dia" msgstr "Добавлен новый инструмент с диаметром" @@ -3474,7 +3474,7 @@ msgid "Round" msgstr "Круглый" #: flatcamEditors/FlatCAMGeoEditor.py:96 -#: flatcamEditors/FlatCAMGrbEditor.py:2552 flatcamGUI/PreferencesUI.py:5989 +#: flatcamEditors/FlatCAMGrbEditor.py:2552 flatcamGUI/PreferencesUI.py:5990 #: flatcamTools/ToolQRCode.py:198 msgid "Square" msgstr "Квадратный" @@ -3497,8 +3497,8 @@ msgid "Full Buffer" msgstr "Полный буфер" #: flatcamEditors/FlatCAMGeoEditor.py:133 -#: flatcamEditors/FlatCAMGeoEditor.py:2758 flatcamGUI/FlatCAMGUI.py:1658 -#: flatcamGUI/PreferencesUI.py:2008 +#: flatcamEditors/FlatCAMGeoEditor.py:2758 flatcamGUI/FlatCAMGUI.py:1774 +#: flatcamGUI/PreferencesUI.py:2009 msgid "Buffer Tool" msgstr "Буфер" @@ -3518,7 +3518,7 @@ msgstr "" msgid "Font" msgstr "Шрифт" -#: flatcamEditors/FlatCAMGeoEditor.py:324 flatcamGUI/FlatCAMGUI.py:1919 +#: flatcamEditors/FlatCAMGeoEditor.py:324 flatcamGUI/FlatCAMGUI.py:2054 msgid "Text" msgstr "Tекст" @@ -3526,13 +3526,13 @@ msgstr "Tекст" msgid "Text Tool" msgstr "Текст" -#: flatcamEditors/FlatCAMGeoEditor.py:442 flatcamGUI/ObjectUI.py:348 -#: flatcamGUI/PreferencesUI.py:1449 flatcamGUI/PreferencesUI.py:3144 -#: flatcamGUI/PreferencesUI.py:4500 +#: flatcamEditors/FlatCAMGeoEditor.py:442 flatcamGUI/ObjectUI.py:359 +#: flatcamGUI/PreferencesUI.py:1450 flatcamGUI/PreferencesUI.py:3145 +#: flatcamGUI/PreferencesUI.py:4501 msgid "Tool dia" msgstr "Диаметр инструмента" -#: flatcamEditors/FlatCAMGeoEditor.py:444 flatcamGUI/PreferencesUI.py:4502 +#: flatcamEditors/FlatCAMGeoEditor.py:444 flatcamGUI/PreferencesUI.py:4503 msgid "" "Diameter of the tool to\n" "be used in the operation." @@ -3540,13 +3540,13 @@ msgstr "" "Диаметр инструмента\n" "используемого в этой операции." -#: flatcamEditors/FlatCAMGeoEditor.py:455 flatcamGUI/PreferencesUI.py:4107 -#: flatcamGUI/PreferencesUI.py:4532 flatcamTools/ToolNonCopperClear.py:319 +#: flatcamEditors/FlatCAMGeoEditor.py:455 flatcamGUI/PreferencesUI.py:4108 +#: flatcamGUI/PreferencesUI.py:4533 flatcamTools/ToolNonCopperClear.py:319 #: flatcamTools/ToolPaint.py:219 msgid "Overlap Rate" msgstr "Частота перекрытия" -#: flatcamEditors/FlatCAMGeoEditor.py:457 flatcamGUI/PreferencesUI.py:4534 +#: flatcamEditors/FlatCAMGeoEditor.py:457 flatcamGUI/PreferencesUI.py:4535 #: flatcamTools/ToolPaint.py:221 msgid "" "How much (fraction) of the tool width to overlap each tool pass.\n" @@ -3567,17 +3567,17 @@ msgstr "" "Более высокие значения = медленная обработка и медленное выполнение на ЧПУ\n" "из-за большого количества путей." -#: 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 +#: flatcamEditors/FlatCAMGeoEditor.py:475 flatcamGUI/PreferencesUI.py:4127 +#: flatcamGUI/PreferencesUI.py:4348 flatcamGUI/PreferencesUI.py:4553 +#: flatcamGUI/PreferencesUI.py:6107 flatcamGUI/PreferencesUI.py:6264 +#: flatcamGUI/PreferencesUI.py:6349 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 "Отступ" -#: flatcamEditors/FlatCAMGeoEditor.py:477 flatcamGUI/PreferencesUI.py:4554 +#: flatcamEditors/FlatCAMGeoEditor.py:477 flatcamGUI/PreferencesUI.py:4555 #: flatcamTools/ToolPaint.py:240 msgid "" "Distance by which to avoid\n" @@ -3585,8 +3585,8 @@ msgid "" "be painted." msgstr "Расстояние, которое не закрашивать до края полигона." -#: flatcamEditors/FlatCAMGeoEditor.py:489 flatcamGUI/PreferencesUI.py:4139 -#: flatcamGUI/PreferencesUI.py:4567 flatcamTools/ToolNonCopperClear.py:348 +#: flatcamEditors/FlatCAMGeoEditor.py:489 flatcamGUI/PreferencesUI.py:4140 +#: flatcamGUI/PreferencesUI.py:4568 flatcamTools/ToolNonCopperClear.py:348 #: flatcamTools/ToolPaint.py:251 msgid "Method" msgstr "Метод" @@ -3599,20 +3599,20 @@ msgstr "" "Алгоритм отрисовки полигона:
Стандартный: Фиксированный шаг внутрь." "
По кругу: От центра наружу." -#: flatcamEditors/FlatCAMGeoEditor.py:496 flatcamGUI/PreferencesUI.py:4148 -#: flatcamGUI/PreferencesUI.py:4576 flatcamTools/ToolNonCopperClear.py:357 +#: flatcamEditors/FlatCAMGeoEditor.py:496 flatcamGUI/PreferencesUI.py:4149 +#: flatcamGUI/PreferencesUI.py:4577 flatcamTools/ToolNonCopperClear.py:357 #: flatcamTools/ToolPaint.py:260 msgid "Standard" msgstr "Стандартный" -#: flatcamEditors/FlatCAMGeoEditor.py:497 flatcamGUI/PreferencesUI.py:4149 -#: flatcamGUI/PreferencesUI.py:4577 flatcamTools/ToolNonCopperClear.py:358 +#: flatcamEditors/FlatCAMGeoEditor.py:497 flatcamGUI/PreferencesUI.py:4150 +#: flatcamGUI/PreferencesUI.py:4578 flatcamTools/ToolNonCopperClear.py:358 #: flatcamTools/ToolPaint.py:261 msgid "Seed-based" msgstr "От центра по кругу" -#: flatcamEditors/FlatCAMGeoEditor.py:498 flatcamGUI/PreferencesUI.py:4150 -#: flatcamGUI/PreferencesUI.py:4578 flatcamTools/ToolNonCopperClear.py:359 +#: flatcamEditors/FlatCAMGeoEditor.py:498 flatcamGUI/PreferencesUI.py:4151 +#: flatcamGUI/PreferencesUI.py:4579 flatcamTools/ToolNonCopperClear.py:359 #: flatcamTools/ToolPaint.py:262 msgid "Straight lines" msgstr "Прямая линия" @@ -3621,8 +3621,8 @@ msgstr "Прямая линия" msgid "Connect:" msgstr "Подключение:" -#: flatcamEditors/FlatCAMGeoEditor.py:507 flatcamGUI/PreferencesUI.py:4159 -#: flatcamGUI/PreferencesUI.py:4585 flatcamTools/ToolNonCopperClear.py:366 +#: flatcamEditors/FlatCAMGeoEditor.py:507 flatcamGUI/PreferencesUI.py:4160 +#: flatcamGUI/PreferencesUI.py:4586 flatcamTools/ToolNonCopperClear.py:366 #: flatcamTools/ToolPaint.py:269 msgid "" "Draw lines between resulting\n" @@ -3635,8 +3635,8 @@ msgstr "" msgid "Contour:" msgstr "Контур:" -#: flatcamEditors/FlatCAMGeoEditor.py:517 flatcamGUI/PreferencesUI.py:4170 -#: flatcamGUI/PreferencesUI.py:4595 flatcamTools/ToolNonCopperClear.py:375 +#: flatcamEditors/FlatCAMGeoEditor.py:517 flatcamGUI/PreferencesUI.py:4171 +#: flatcamGUI/PreferencesUI.py:4596 flatcamTools/ToolNonCopperClear.py:375 #: flatcamTools/ToolPaint.py:278 msgid "" "Cut around the perimeter of the polygon\n" @@ -3645,13 +3645,13 @@ msgstr "" "Обрезка по периметру полигона\n" "для зачистки неровных краёв." -#: flatcamEditors/FlatCAMGeoEditor.py:529 flatcamGUI/FlatCAMGUI.py:1921 +#: flatcamEditors/FlatCAMGeoEditor.py:529 flatcamGUI/FlatCAMGUI.py:2058 msgid "Paint" msgstr "Нарисовать" -#: flatcamEditors/FlatCAMGeoEditor.py:547 flatcamGUI/FlatCAMGUI.py:749 -#: flatcamGUI/FlatCAMGUI.py:2194 flatcamGUI/ObjectUI.py:1694 -#: flatcamTools/ToolPaint.py:41 flatcamTools/ToolPaint.py:538 +#: flatcamEditors/FlatCAMGeoEditor.py:547 flatcamGUI/FlatCAMGUI.py:819 +#: flatcamGUI/FlatCAMGUI.py:2388 flatcamGUI/ObjectUI.py:1733 +#: flatcamTools/ToolPaint.py:41 flatcamTools/ToolPaint.py:539 msgid "Paint Tool" msgstr "Рисование" @@ -3662,7 +3662,7 @@ msgstr "Рисование отменено. Фугура не выбрана." #: flatcamEditors/FlatCAMGeoEditor.py:597 #: flatcamEditors/FlatCAMGeoEditor.py:2784 #: flatcamEditors/FlatCAMGeoEditor.py:2814 -#: flatcamEditors/FlatCAMGeoEditor.py:2844 flatcamGUI/PreferencesUI.py:3140 +#: flatcamEditors/FlatCAMGeoEditor.py:2844 flatcamGUI/PreferencesUI.py:3141 #: flatcamTools/ToolProperties.py:120 flatcamTools/ToolProperties.py:158 msgid "Tools" msgstr "Инструменты" @@ -3670,15 +3670,15 @@ msgstr "Инструменты" #: flatcamEditors/FlatCAMGeoEditor.py:608 #: flatcamEditors/FlatCAMGeoEditor.py:992 #: flatcamEditors/FlatCAMGrbEditor.py:5011 -#: flatcamEditors/FlatCAMGrbEditor.py:5408 flatcamGUI/FlatCAMGUI.py:762 -#: flatcamGUI/FlatCAMGUI.py:2207 flatcamTools/ToolTransform.py:371 +#: flatcamEditors/FlatCAMGrbEditor.py:5408 flatcamGUI/FlatCAMGUI.py:840 +#: flatcamGUI/FlatCAMGUI.py:2406 flatcamTools/ToolTransform.py:371 msgid "Transform Tool" msgstr "Трансформация" #: flatcamEditors/FlatCAMGeoEditor.py:609 #: flatcamEditors/FlatCAMGeoEditor.py:674 #: flatcamEditors/FlatCAMGrbEditor.py:5012 -#: flatcamEditors/FlatCAMGrbEditor.py:5077 flatcamGUI/PreferencesUI.py:5207 +#: flatcamEditors/FlatCAMGrbEditor.py:5077 flatcamGUI/PreferencesUI.py:5208 #: flatcamTools/ToolTransform.py:25 flatcamTools/ToolTransform.py:79 msgid "Rotate" msgstr "Вращение" @@ -3690,10 +3690,10 @@ msgstr "Наклон/Сдвиг" #: flatcamEditors/FlatCAMGeoEditor.py:611 #: flatcamEditors/FlatCAMGrbEditor.py:2600 -#: 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 +#: flatcamEditors/FlatCAMGrbEditor.py:5014 flatcamGUI/FlatCAMGUI.py:954 +#: flatcamGUI/FlatCAMGUI.py:1986 flatcamGUI/FlatCAMGUI.py:2101 +#: flatcamGUI/FlatCAMGUI.py:2514 flatcamGUI/ObjectUI.py:103 +#: flatcamGUI/ObjectUI.py:121 flatcamGUI/PreferencesUI.py:5258 #: flatcamTools/ToolTransform.py:27 msgid "Scale" msgstr "Масштаб" @@ -3704,17 +3704,17 @@ msgid "Mirror (Flip)" msgstr "Зеркалирование (отражение)" #: 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 +#: flatcamEditors/FlatCAMGrbEditor.py:5016 flatcamGUI/ObjectUI.py:132 +#: flatcamGUI/ObjectUI.py:148 flatcamGUI/ObjectUI.py:1217 +#: flatcamGUI/ObjectUI.py:1918 flatcamGUI/PreferencesUI.py:4196 +#: flatcamGUI/PreferencesUI.py:5305 flatcamTools/ToolNonCopperClear.py:397 #: flatcamTools/ToolTransform.py:29 msgid "Offset" msgstr "Смещение" #: flatcamEditors/FlatCAMGeoEditor.py:626 -#: flatcamEditors/FlatCAMGrbEditor.py:5029 flatcamGUI/FlatCAMGUI.py:709 -#: flatcamGUI/FlatCAMGUI.py:2160 +#: flatcamEditors/FlatCAMGrbEditor.py:5029 flatcamGUI/FlatCAMGUI.py:761 +#: flatcamGUI/FlatCAMGUI.py:2335 msgid "Editor" msgstr "Редактор" @@ -3724,7 +3724,7 @@ msgid "Angle:" msgstr "Угол:" #: flatcamEditors/FlatCAMGeoEditor.py:660 -#: flatcamEditors/FlatCAMGrbEditor.py:5063 flatcamGUI/PreferencesUI.py:5217 +#: flatcamEditors/FlatCAMGrbEditor.py:5063 flatcamGUI/PreferencesUI.py:5218 #: flatcamTools/ToolTransform.py:64 msgid "" "Angle for Rotation action, in degrees.\n" @@ -3756,8 +3756,8 @@ msgstr "Угол X:" #: flatcamEditors/FlatCAMGeoEditor.py:701 #: flatcamEditors/FlatCAMGeoEditor.py:721 #: flatcamEditors/FlatCAMGrbEditor.py:5104 -#: flatcamEditors/FlatCAMGrbEditor.py:5124 flatcamGUI/PreferencesUI.py:5236 -#: flatcamGUI/PreferencesUI.py:5250 flatcamTools/ToolCalibration.py:508 +#: flatcamEditors/FlatCAMGrbEditor.py:5124 flatcamGUI/PreferencesUI.py:5237 +#: flatcamGUI/PreferencesUI.py:5251 flatcamTools/ToolCalibration.py:508 #: flatcamTools/ToolCalibration.py:521 msgid "" "Angle for Skew action, in degrees.\n" @@ -3838,7 +3838,7 @@ msgid "Scale Y" msgstr "Масштаб Y" #: flatcamEditors/FlatCAMGeoEditor.py:800 -#: flatcamEditors/FlatCAMGrbEditor.py:5203 flatcamGUI/PreferencesUI.py:5286 +#: flatcamEditors/FlatCAMGrbEditor.py:5203 flatcamGUI/PreferencesUI.py:5287 #: flatcamTools/ToolTransform.py:191 msgid "Link" msgstr "Ссылка" @@ -3853,7 +3853,7 @@ msgstr "" "используя коэффициент X для обеих осей." #: flatcamEditors/FlatCAMGeoEditor.py:808 -#: flatcamEditors/FlatCAMGrbEditor.py:5211 flatcamGUI/PreferencesUI.py:5294 +#: flatcamEditors/FlatCAMGrbEditor.py:5211 flatcamGUI/PreferencesUI.py:5295 #: flatcamTools/ToolTransform.py:199 msgid "Scale Reference" msgstr "Эталон масштабирования" @@ -4415,10 +4415,10 @@ msgstr "с диаметром" msgid "Copy cancelled. No shape selected." msgstr "Копирование отменено. Форма не выбрана." -#: 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 +#: flatcamEditors/FlatCAMGeoEditor.py:4025 flatcamGUI/FlatCAMGUI.py:3435 +#: flatcamGUI/FlatCAMGUI.py:3482 flatcamGUI/FlatCAMGUI.py:3501 +#: flatcamGUI/FlatCAMGUI.py:3636 flatcamGUI/FlatCAMGUI.py:3649 +#: flatcamGUI/FlatCAMGUI.py:3683 flatcamGUI/FlatCAMGUI.py:3741 msgid "Click on target point." msgstr "Нажмите на целевой точке." @@ -4644,62 +4644,62 @@ msgstr "Готово. Перемещение отверстий завершен msgid "Done. Apertures copied." msgstr "Готово. Отверстия скопированы." -#: flatcamEditors/FlatCAMGrbEditor.py:2376 flatcamGUI/FlatCAMGUI.py:1934 -#: flatcamGUI/PreferencesUI.py:1847 +#: flatcamEditors/FlatCAMGrbEditor.py:2376 flatcamGUI/FlatCAMGUI.py:2079 +#: flatcamGUI/PreferencesUI.py:1848 msgid "Gerber Editor" msgstr "Редактор Gerber" -#: flatcamEditors/FlatCAMGrbEditor.py:2396 flatcamGUI/ObjectUI.py:212 +#: flatcamEditors/FlatCAMGrbEditor.py:2396 flatcamGUI/ObjectUI.py:223 #: flatcamTools/ToolProperties.py:156 msgid "Apertures" msgstr "Oтверстие" -#: flatcamEditors/FlatCAMGrbEditor.py:2398 flatcamGUI/ObjectUI.py:214 +#: flatcamEditors/FlatCAMGrbEditor.py:2398 flatcamGUI/ObjectUI.py:225 msgid "Apertures Table for the Gerber Object." msgstr "Таблица отверстий для объекта Gerber." #: flatcamEditors/FlatCAMGrbEditor.py:2409 -#: flatcamEditors/FlatCAMGrbEditor.py:3755 flatcamGUI/ObjectUI.py:247 +#: flatcamEditors/FlatCAMGrbEditor.py:3755 flatcamGUI/ObjectUI.py:258 msgid "Code" msgstr "Код" #: flatcamEditors/FlatCAMGrbEditor.py:2409 -#: flatcamEditors/FlatCAMGrbEditor.py:3755 flatcamGUI/ObjectUI.py:247 -#: flatcamGUI/ObjectUI.py:1178 flatcamGUI/ObjectUI.py:1866 +#: flatcamEditors/FlatCAMGrbEditor.py:3755 flatcamGUI/ObjectUI.py:258 +#: flatcamGUI/ObjectUI.py:1217 flatcamGUI/ObjectUI.py:1918 msgid "Type" msgstr "Тип" #: flatcamEditors/FlatCAMGrbEditor.py:2409 -#: flatcamEditors/FlatCAMGrbEditor.py:3755 flatcamGUI/ObjectUI.py:247 -#: flatcamGUI/PreferencesUI.py:6201 flatcamGUI/PreferencesUI.py:6230 -#: flatcamGUI/PreferencesUI.py:6332 flatcamTools/ToolCopperThieving.py:260 +#: flatcamEditors/FlatCAMGrbEditor.py:3755 flatcamGUI/ObjectUI.py:258 +#: flatcamGUI/PreferencesUI.py:6202 flatcamGUI/PreferencesUI.py:6231 +#: flatcamGUI/PreferencesUI.py:6333 flatcamTools/ToolCopperThieving.py:260 #: flatcamTools/ToolCopperThieving.py:300 flatcamTools/ToolFiducials.py:156 msgid "Size" msgstr "Размер" #: flatcamEditors/FlatCAMGrbEditor.py:2409 -#: flatcamEditors/FlatCAMGrbEditor.py:3755 flatcamGUI/ObjectUI.py:247 +#: flatcamEditors/FlatCAMGrbEditor.py:3755 flatcamGUI/ObjectUI.py:258 msgid "Dim" msgstr "Диаметр" -#: flatcamEditors/FlatCAMGrbEditor.py:2413 flatcamGUI/ObjectUI.py:251 +#: flatcamEditors/FlatCAMGrbEditor.py:2413 flatcamGUI/ObjectUI.py:262 msgid "Index" msgstr "Индекс" #: flatcamEditors/FlatCAMGrbEditor.py:2415 -#: flatcamEditors/FlatCAMGrbEditor.py:2444 flatcamGUI/ObjectUI.py:253 +#: flatcamEditors/FlatCAMGrbEditor.py:2444 flatcamGUI/ObjectUI.py:264 msgid "Aperture Code" msgstr "Код отверстия" -#: flatcamEditors/FlatCAMGrbEditor.py:2417 flatcamGUI/ObjectUI.py:255 +#: flatcamEditors/FlatCAMGrbEditor.py:2417 flatcamGUI/ObjectUI.py:266 msgid "Type of aperture: circular, rectangle, macros etc" msgstr "Тип отверстия: круг, прямоугольник, макросы и так далее" -#: flatcamEditors/FlatCAMGrbEditor.py:2419 flatcamGUI/ObjectUI.py:257 +#: flatcamEditors/FlatCAMGrbEditor.py:2419 flatcamGUI/ObjectUI.py:268 msgid "Aperture Size:" msgstr "Размер отверстия:" -#: flatcamEditors/FlatCAMGrbEditor.py:2421 flatcamGUI/ObjectUI.py:259 +#: flatcamEditors/FlatCAMGrbEditor.py:2421 flatcamGUI/ObjectUI.py:270 msgid "" "Aperture Dimensions:\n" " - (width, height) for R, O type.\n" @@ -4709,7 +4709,7 @@ msgstr "" " - (ширина, высота) для типа R, O.\n" " - (диам., nVertices) для типа P" -#: flatcamEditors/FlatCAMGrbEditor.py:2445 flatcamGUI/PreferencesUI.py:1878 +#: flatcamEditors/FlatCAMGrbEditor.py:2445 flatcamGUI/PreferencesUI.py:1879 msgid "Code for the new aperture" msgstr "Код для нового отверстия" @@ -4785,7 +4785,7 @@ msgstr "Буфер отверстия" msgid "Buffer a aperture in the aperture list" msgstr "Создаёт буфер для отверстия в списке отверстий" -#: flatcamEditors/FlatCAMGrbEditor.py:2542 flatcamGUI/PreferencesUI.py:2012 +#: flatcamEditors/FlatCAMGrbEditor.py:2542 flatcamGUI/PreferencesUI.py:2013 msgid "Buffer distance" msgstr "Расстояние буфера" @@ -4807,9 +4807,9 @@ msgstr "" " - 'Скошенный:' угол-это линия, которая непосредственно соединяет элементы, " "встречающиеся в углу" -#: flatcamEditors/FlatCAMGrbEditor.py:2560 flatcamGUI/FlatCAMGUI.py:842 -#: flatcamGUI/FlatCAMGUI.py:1868 flatcamGUI/FlatCAMGUI.py:1920 -#: flatcamGUI/FlatCAMGUI.py:1947 flatcamGUI/FlatCAMGUI.py:2283 +#: flatcamEditors/FlatCAMGrbEditor.py:2560 flatcamGUI/FlatCAMGUI.py:952 +#: flatcamGUI/FlatCAMGUI.py:1984 flatcamGUI/FlatCAMGUI.py:2056 +#: flatcamGUI/FlatCAMGUI.py:2099 flatcamGUI/FlatCAMGUI.py:2512 msgid "Buffer" msgstr "Буфер" @@ -4821,7 +4821,7 @@ msgstr "Масштабирование отверстий" msgid "Scale a aperture in the aperture list" msgstr "Масштабирование отверстия в списке отверстий" -#: flatcamEditors/FlatCAMGrbEditor.py:2585 flatcamGUI/PreferencesUI.py:2027 +#: flatcamEditors/FlatCAMGrbEditor.py:2585 flatcamGUI/PreferencesUI.py:2028 msgid "Scale factor" msgstr "Коэффициент масштабирования" @@ -4885,8 +4885,8 @@ msgstr "Сбросить" msgid "Clear all the markings." msgstr "Очистить все маркировки." -#: flatcamEditors/FlatCAMGrbEditor.py:2684 flatcamGUI/FlatCAMGUI.py:832 -#: flatcamGUI/FlatCAMGUI.py:1868 flatcamGUI/FlatCAMGUI.py:2273 +#: flatcamEditors/FlatCAMGrbEditor.py:2684 flatcamGUI/FlatCAMGUI.py:937 +#: flatcamGUI/FlatCAMGUI.py:1984 flatcamGUI/FlatCAMGUI.py:2497 msgid "Add Pad Array" msgstr "Добавить массив контактных площадок" @@ -4902,11 +4902,11 @@ msgstr "" "Выбор типа массива контактных площадок.\n" "Он может быть линейным X (Y) или круговым" -#: flatcamEditors/FlatCAMGrbEditor.py:2703 flatcamGUI/PreferencesUI.py:1915 +#: flatcamEditors/FlatCAMGrbEditor.py:2703 flatcamGUI/PreferencesUI.py:1916 msgid "Nr of pads" msgstr "Количество площадок" -#: flatcamEditors/FlatCAMGrbEditor.py:2705 flatcamGUI/PreferencesUI.py:1917 +#: flatcamEditors/FlatCAMGrbEditor.py:2705 flatcamGUI/PreferencesUI.py:1918 msgid "Specify how many pads to be in the array." msgstr "Укажите, сколько контактных площадок должно быть в массиве." @@ -5110,9 +5110,9 @@ msgstr "Заменяет строку из поля «Найти» на стро msgid "String to replace the one in the Find box throughout the text." msgstr "Строка, заменяющая строку в поле поиска по всему тексту." -#: flatcamEditors/FlatCAMTextEditor.py:87 flatcamGUI/ObjectUI.py:471 -#: flatcamGUI/ObjectUI.py:1759 flatcamGUI/PreferencesUI.py:1494 -#: flatcamGUI/PreferencesUI.py:3641 flatcamGUI/PreferencesUI.py:4616 +#: flatcamEditors/FlatCAMTextEditor.py:87 flatcamGUI/ObjectUI.py:482 +#: flatcamGUI/ObjectUI.py:1811 flatcamGUI/PreferencesUI.py:1495 +#: flatcamGUI/PreferencesUI.py:3642 flatcamGUI/PreferencesUI.py:4617 msgid "All" msgstr "Все" @@ -5175,7 +5175,7 @@ msgid "Code Editor content copied to clipboard ..." msgstr "Содержимое редактора кода скопировано в буфер обмена ..." #: flatcamGUI/FlatCAMGUI.py:52 flatcamGUI/FlatCAMGUI.py:54 -#: flatcamGUI/FlatCAMGUI.py:1891 +#: flatcamGUI/FlatCAMGUI.py:2009 msgid "Toggle Panel" msgstr "Переключить бок. панель" @@ -5195,91 +5195,91 @@ msgstr "Создаёт новый пустой проект" msgid "&New" msgstr "&Создать" -#: flatcamGUI/FlatCAMGUI.py:79 +#: flatcamGUI/FlatCAMGUI.py:80 msgid "Geometry\tN" msgstr "Geometry\tN" -#: flatcamGUI/FlatCAMGUI.py:81 +#: flatcamGUI/FlatCAMGUI.py:82 msgid "Will create a new, empty Geometry Object." msgstr "Создаёт новый объект Geometry." -#: flatcamGUI/FlatCAMGUI.py:83 +#: flatcamGUI/FlatCAMGUI.py:84 msgid "Gerber\tB" msgstr "Gerber\tB" -#: flatcamGUI/FlatCAMGUI.py:85 +#: flatcamGUI/FlatCAMGUI.py:86 msgid "Will create a new, empty Gerber Object." msgstr "Создаёт новый объект Gerber." -#: flatcamGUI/FlatCAMGUI.py:87 +#: flatcamGUI/FlatCAMGUI.py:88 msgid "Excellon\tL" msgstr "Excellon\tL" -#: flatcamGUI/FlatCAMGUI.py:89 +#: flatcamGUI/FlatCAMGUI.py:90 msgid "Will create a new, empty Excellon Object." msgstr "Создаёт новый объект Excellon." -#: flatcamGUI/FlatCAMGUI.py:93 +#: flatcamGUI/FlatCAMGUI.py:94 msgid "Document\tD" msgstr "Document\tD" -#: flatcamGUI/FlatCAMGUI.py:95 +#: flatcamGUI/FlatCAMGUI.py:96 msgid "Will create a new, empty Document Object." msgstr "Создаёт новый объект Document." -#: flatcamGUI/FlatCAMGUI.py:98 flatcamGUI/FlatCAMGUI.py:3837 +#: flatcamGUI/FlatCAMGUI.py:99 flatcamGUI/FlatCAMGUI.py:4075 #: flatcamTools/ToolPcbWizard.py:62 flatcamTools/ToolPcbWizard.py:69 msgid "Open" msgstr "Открыть" -#: flatcamGUI/FlatCAMGUI.py:102 +#: flatcamGUI/FlatCAMGUI.py:103 msgid "Open &Project ..." msgstr "Открыть &проект..." -#: flatcamGUI/FlatCAMGUI.py:108 flatcamGUI/FlatCAMGUI.py:3846 +#: flatcamGUI/FlatCAMGUI.py:109 flatcamGUI/FlatCAMGUI.py:4085 msgid "Open &Gerber ...\tCTRL+G" msgstr "Открыть &Gerber...\tCTRL+G" -#: flatcamGUI/FlatCAMGUI.py:113 flatcamGUI/FlatCAMGUI.py:3851 +#: flatcamGUI/FlatCAMGUI.py:114 flatcamGUI/FlatCAMGUI.py:4090 msgid "Open &Excellon ...\tCTRL+E" msgstr "Открыть &Excellon ...\tCTRL+E" -#: flatcamGUI/FlatCAMGUI.py:117 flatcamGUI/FlatCAMGUI.py:3855 +#: flatcamGUI/FlatCAMGUI.py:118 flatcamGUI/FlatCAMGUI.py:4095 msgid "Open G-&Code ..." msgstr "Открыть G-&Code ..." -#: flatcamGUI/FlatCAMGUI.py:123 +#: flatcamGUI/FlatCAMGUI.py:124 msgid "Open Config ..." msgstr "Открыть конфигурацию ..." -#: flatcamGUI/FlatCAMGUI.py:127 +#: flatcamGUI/FlatCAMGUI.py:128 msgid "Recent projects" msgstr "Недавние проекты" -#: flatcamGUI/FlatCAMGUI.py:128 +#: flatcamGUI/FlatCAMGUI.py:129 msgid "Recent files" msgstr "Открыть недавние" -#: flatcamGUI/FlatCAMGUI.py:134 +#: flatcamGUI/FlatCAMGUI.py:135 msgid "Scripting" msgstr "Сценарии" -#: flatcamGUI/FlatCAMGUI.py:137 flatcamGUI/FlatCAMGUI.py:739 -#: flatcamGUI/FlatCAMGUI.py:2186 +#: flatcamGUI/FlatCAMGUI.py:138 flatcamGUI/FlatCAMGUI.py:803 +#: flatcamGUI/FlatCAMGUI.py:2374 msgid "New Script ..." msgstr "Новый сценарий ..." -#: flatcamGUI/FlatCAMGUI.py:138 flatcamGUI/FlatCAMGUI.py:740 -#: flatcamGUI/FlatCAMGUI.py:2187 +#: flatcamGUI/FlatCAMGUI.py:139 flatcamGUI/FlatCAMGUI.py:805 +#: flatcamGUI/FlatCAMGUI.py:2376 msgid "Open Script ..." msgstr "Открыть сценарий ..." -#: flatcamGUI/FlatCAMGUI.py:140 flatcamGUI/FlatCAMGUI.py:741 -#: flatcamGUI/FlatCAMGUI.py:2188 flatcamGUI/FlatCAMGUI.py:3826 +#: flatcamGUI/FlatCAMGUI.py:141 flatcamGUI/FlatCAMGUI.py:807 +#: flatcamGUI/FlatCAMGUI.py:2378 flatcamGUI/FlatCAMGUI.py:4064 msgid "Run Script ..." msgstr "Выполнить сценарий ..." -#: flatcamGUI/FlatCAMGUI.py:142 flatcamGUI/FlatCAMGUI.py:3828 +#: flatcamGUI/FlatCAMGUI.py:143 flatcamGUI/FlatCAMGUI.py:4066 msgid "" "Will run the opened Tcl Script thus\n" "enabling the automation of certain\n" @@ -5289,47 +5289,47 @@ msgstr "" "включающий автоматизацию некоторых\n" "функций FlatCAM." -#: flatcamGUI/FlatCAMGUI.py:155 +#: flatcamGUI/FlatCAMGUI.py:156 msgid "Import" msgstr "Импорт" -#: flatcamGUI/FlatCAMGUI.py:157 +#: flatcamGUI/FlatCAMGUI.py:158 msgid "&SVG as Geometry Object ..." msgstr "&SVG как объект Geometry ..." -#: flatcamGUI/FlatCAMGUI.py:160 +#: flatcamGUI/FlatCAMGUI.py:161 msgid "&SVG as Gerber Object ..." msgstr "&SVG как объект Gerber ..." -#: flatcamGUI/FlatCAMGUI.py:165 +#: flatcamGUI/FlatCAMGUI.py:166 msgid "&DXF as Geometry Object ..." msgstr "&DXF как объект Geometry ..." -#: flatcamGUI/FlatCAMGUI.py:168 +#: flatcamGUI/FlatCAMGUI.py:169 msgid "&DXF as Gerber Object ..." msgstr "&DXF как объект Gerber ..." -#: flatcamGUI/FlatCAMGUI.py:172 +#: flatcamGUI/FlatCAMGUI.py:173 msgid "HPGL2 as Geometry Object ..." msgstr "HPGL2 как объект геометрии ..." -#: flatcamGUI/FlatCAMGUI.py:177 +#: flatcamGUI/FlatCAMGUI.py:178 msgid "Export" msgstr "Экспорт" -#: flatcamGUI/FlatCAMGUI.py:180 +#: flatcamGUI/FlatCAMGUI.py:181 msgid "Export &SVG ..." msgstr "Экспорт &SVG ..." -#: flatcamGUI/FlatCAMGUI.py:183 +#: flatcamGUI/FlatCAMGUI.py:184 msgid "Export DXF ..." msgstr "Экспорт DXF ..." -#: flatcamGUI/FlatCAMGUI.py:188 +#: flatcamGUI/FlatCAMGUI.py:189 msgid "Export &PNG ..." msgstr "Экспорт &PNG ..." -#: flatcamGUI/FlatCAMGUI.py:190 +#: flatcamGUI/FlatCAMGUI.py:191 msgid "" "Will export an image in PNG format,\n" "the saved image will contain the visual \n" @@ -5339,11 +5339,11 @@ msgstr "" "сохраненное изображение будет содержать визуальную\n" "информацию, открытую в настоящее время в пространстве отрисовки FlatCAM." -#: flatcamGUI/FlatCAMGUI.py:199 +#: flatcamGUI/FlatCAMGUI.py:200 msgid "Export &Excellon ..." msgstr "Экспорт &Excellon ..." -#: flatcamGUI/FlatCAMGUI.py:201 +#: flatcamGUI/FlatCAMGUI.py:202 msgid "" "Will export an Excellon Object as Excellon file,\n" "the coordinates format, the file units and zeros\n" @@ -5353,11 +5353,11 @@ msgstr "" "формат координат, единицы измерения и нули\n" "устанавливаются в Настройки -> Экспорт Excellon." -#: flatcamGUI/FlatCAMGUI.py:208 +#: flatcamGUI/FlatCAMGUI.py:209 msgid "Export &Gerber ..." msgstr "Экспорт &Gerber ..." -#: flatcamGUI/FlatCAMGUI.py:210 +#: flatcamGUI/FlatCAMGUI.py:211 msgid "" "Will export an Gerber Object as Gerber file,\n" "the coordinates format, the file units and zeros\n" @@ -5367,61 +5367,61 @@ msgstr "" "формат координат, единицы измерения и нули\n" "устанавливается в Настройки -> Экспорт Gerber." -#: flatcamGUI/FlatCAMGUI.py:226 +#: flatcamGUI/FlatCAMGUI.py:229 msgid "Backup" msgstr "Резервное копирование" -#: flatcamGUI/FlatCAMGUI.py:230 +#: flatcamGUI/FlatCAMGUI.py:233 msgid "Import Preferences from file ..." msgstr "Импортировать настройки из файла ..." -#: flatcamGUI/FlatCAMGUI.py:235 +#: flatcamGUI/FlatCAMGUI.py:238 msgid "Export Preferences to file ..." msgstr "Экспортировать настройки в файл ..." -#: flatcamGUI/FlatCAMGUI.py:241 flatcamGUI/FlatCAMGUI.py:612 -#: flatcamGUI/FlatCAMGUI.py:1109 +#: flatcamGUI/FlatCAMGUI.py:244 flatcamGUI/FlatCAMGUI.py:656 +#: flatcamGUI/FlatCAMGUI.py:1225 msgid "Save" msgstr "Сохранить" -#: flatcamGUI/FlatCAMGUI.py:244 +#: flatcamGUI/FlatCAMGUI.py:248 msgid "&Save Project ..." msgstr "&Сохранить проект ..." -#: flatcamGUI/FlatCAMGUI.py:249 +#: flatcamGUI/FlatCAMGUI.py:253 msgid "Save Project &As ...\tCTRL+S" msgstr "Сохранить проект &как ...\tCTRL+S" -#: flatcamGUI/FlatCAMGUI.py:254 +#: flatcamGUI/FlatCAMGUI.py:258 msgid "Save Project C&opy ..." msgstr "Сохранить к&опию проекта..." -#: flatcamGUI/FlatCAMGUI.py:268 +#: flatcamGUI/FlatCAMGUI.py:273 msgid "E&xit" msgstr "В&ыход" -#: flatcamGUI/FlatCAMGUI.py:276 flatcamGUI/FlatCAMGUI.py:609 -#: flatcamGUI/FlatCAMGUI.py:1968 +#: flatcamGUI/FlatCAMGUI.py:281 flatcamGUI/FlatCAMGUI.py:650 +#: flatcamGUI/FlatCAMGUI.py:2132 msgid "Edit" msgstr "Правка" -#: flatcamGUI/FlatCAMGUI.py:279 +#: flatcamGUI/FlatCAMGUI.py:285 msgid "Edit Object\tE" msgstr "Редактировать объект\tE" -#: flatcamGUI/FlatCAMGUI.py:280 +#: flatcamGUI/FlatCAMGUI.py:287 msgid "Close Editor\tCTRL+S" msgstr "Закрыть редактор\tCTRL+S" -#: flatcamGUI/FlatCAMGUI.py:288 +#: flatcamGUI/FlatCAMGUI.py:296 msgid "Conversion" msgstr "Конвертация" -#: flatcamGUI/FlatCAMGUI.py:290 +#: flatcamGUI/FlatCAMGUI.py:298 msgid "&Join Geo/Gerber/Exc -> Geo" msgstr "&Объединить Geo/Gerber/Exc - > Geo" -#: flatcamGUI/FlatCAMGUI.py:292 +#: flatcamGUI/FlatCAMGUI.py:300 msgid "" "Merge a selection of objects, which can be of type:\n" "- Gerber\n" @@ -5435,30 +5435,30 @@ msgstr "" "- Geometry\n" "в новый комбинированный объект геометрии." -#: flatcamGUI/FlatCAMGUI.py:299 +#: flatcamGUI/FlatCAMGUI.py:307 msgid "Join Excellon(s) -> Excellon" msgstr "Объединить Excellon (s) - > Excellon" -#: flatcamGUI/FlatCAMGUI.py:301 +#: flatcamGUI/FlatCAMGUI.py:309 msgid "Merge a selection of Excellon objects into a new combo Excellon object." msgstr "" "Объединяет выбранные объекты Excellon в новый комбинированный объект " "Excellon." -#: flatcamGUI/FlatCAMGUI.py:304 +#: flatcamGUI/FlatCAMGUI.py:312 msgid "Join Gerber(s) -> Gerber" msgstr "Объединить Gerber(s) - > Gerber" -#: flatcamGUI/FlatCAMGUI.py:306 +#: flatcamGUI/FlatCAMGUI.py:314 msgid "Merge a selection of Gerber objects into a new combo Gerber object." msgstr "" "Объединяет выбранные объекты Gerber в новый комбинированный объект Gerber." -#: flatcamGUI/FlatCAMGUI.py:311 +#: flatcamGUI/FlatCAMGUI.py:319 msgid "Convert Single to MultiGeo" msgstr "Преобразование Single в MultiGeo" -#: flatcamGUI/FlatCAMGUI.py:313 +#: flatcamGUI/FlatCAMGUI.py:321 msgid "" "Will convert a Geometry object from single_geometry type\n" "to a multi_geometry type." @@ -5466,11 +5466,11 @@ msgstr "" "Преобразует объект Geometry из типа single_geometry\n" "в multi_geometry.." -#: flatcamGUI/FlatCAMGUI.py:317 +#: flatcamGUI/FlatCAMGUI.py:325 msgid "Convert Multi to SingleGeo" msgstr "Преобразование Multi в SingleGeo" -#: flatcamGUI/FlatCAMGUI.py:319 +#: flatcamGUI/FlatCAMGUI.py:327 msgid "" "Will convert a Geometry object from multi_geometry type\n" "to a single_geometry type." @@ -5478,702 +5478,702 @@ msgstr "" "Преобразует объект Geometry из типа multi_geometry\n" "в single_geometry.." -#: flatcamGUI/FlatCAMGUI.py:325 +#: flatcamGUI/FlatCAMGUI.py:334 msgid "Convert Any to Geo" msgstr "Конвертировать любой объект в Geo" -#: flatcamGUI/FlatCAMGUI.py:327 +#: flatcamGUI/FlatCAMGUI.py:337 msgid "Convert Any to Gerber" msgstr "Конвертировать любой объект в Gerber" -#: flatcamGUI/FlatCAMGUI.py:332 +#: flatcamGUI/FlatCAMGUI.py:343 msgid "&Copy\tCTRL+C" msgstr "&Копировать\tCTRL+C" -#: flatcamGUI/FlatCAMGUI.py:336 +#: flatcamGUI/FlatCAMGUI.py:348 msgid "&Delete\tDEL" msgstr "&Удалить\tDEL" -#: flatcamGUI/FlatCAMGUI.py:340 +#: flatcamGUI/FlatCAMGUI.py:353 msgid "Se&t Origin\tO" msgstr "Ук&азать начало координат\tO" -#: flatcamGUI/FlatCAMGUI.py:341 +#: flatcamGUI/FlatCAMGUI.py:355 msgid "Jump to Location\tJ" msgstr "Перейти к\tJ" -#: flatcamGUI/FlatCAMGUI.py:346 +#: flatcamGUI/FlatCAMGUI.py:360 msgid "Toggle Units\tQ" msgstr "Единицы измерения\tQ" -#: flatcamGUI/FlatCAMGUI.py:347 +#: flatcamGUI/FlatCAMGUI.py:362 msgid "&Select All\tCTRL+A" msgstr "&Выбрать все\tCTRL+A" -#: flatcamGUI/FlatCAMGUI.py:351 +#: flatcamGUI/FlatCAMGUI.py:367 msgid "&Preferences\tSHIFT+P" msgstr "&Настройки\tSHIFT+P" -#: flatcamGUI/FlatCAMGUI.py:357 flatcamTools/ToolProperties.py:153 +#: flatcamGUI/FlatCAMGUI.py:373 flatcamTools/ToolProperties.py:153 msgid "Options" msgstr "Опции" -#: flatcamGUI/FlatCAMGUI.py:359 +#: flatcamGUI/FlatCAMGUI.py:375 msgid "&Rotate Selection\tSHIFT+(R)" msgstr "&Вращение\tSHIFT+(R)" -#: flatcamGUI/FlatCAMGUI.py:364 +#: flatcamGUI/FlatCAMGUI.py:380 msgid "&Skew on X axis\tSHIFT+X" msgstr "&Наклон по оси X\tSHIFT+X" -#: flatcamGUI/FlatCAMGUI.py:366 +#: flatcamGUI/FlatCAMGUI.py:382 msgid "S&kew on Y axis\tSHIFT+Y" msgstr "Н&аклон по оси Y\tSHIFT+Y" -#: flatcamGUI/FlatCAMGUI.py:371 +#: flatcamGUI/FlatCAMGUI.py:387 msgid "Flip on &X axis\tX" msgstr "Отразить по оси &X\tX" -#: flatcamGUI/FlatCAMGUI.py:373 +#: flatcamGUI/FlatCAMGUI.py:389 msgid "Flip on &Y axis\tY" msgstr "Отразить по оси &Y\tY" -#: flatcamGUI/FlatCAMGUI.py:378 +#: flatcamGUI/FlatCAMGUI.py:394 msgid "View source\tALT+S" msgstr "Просмотреть код\tALT+S" -#: flatcamGUI/FlatCAMGUI.py:380 +#: flatcamGUI/FlatCAMGUI.py:396 msgid "Tools DataBase\tCTRL+D" msgstr "База данных\tCTRL+D" -#: flatcamGUI/FlatCAMGUI.py:387 flatcamGUI/FlatCAMGUI.py:1904 +#: flatcamGUI/FlatCAMGUI.py:403 flatcamGUI/FlatCAMGUI.py:2029 msgid "View" msgstr "Вид" -#: flatcamGUI/FlatCAMGUI.py:388 +#: flatcamGUI/FlatCAMGUI.py:405 msgid "Enable all plots\tALT+1" msgstr "Включить все участки\tALT+1" -#: flatcamGUI/FlatCAMGUI.py:390 +#: flatcamGUI/FlatCAMGUI.py:407 msgid "Disable all plots\tALT+2" msgstr "Отключить все участки\tALT+2" -#: flatcamGUI/FlatCAMGUI.py:392 +#: flatcamGUI/FlatCAMGUI.py:409 msgid "Disable non-selected\tALT+3" msgstr "Отключить не выбранные\tALT+3" -#: flatcamGUI/FlatCAMGUI.py:395 +#: flatcamGUI/FlatCAMGUI.py:413 msgid "&Zoom Fit\tV" msgstr "&Вернуть масштаб\tV" -#: flatcamGUI/FlatCAMGUI.py:396 +#: flatcamGUI/FlatCAMGUI.py:415 msgid "&Zoom In\t=" msgstr "&Увеличить\t=" -#: flatcamGUI/FlatCAMGUI.py:397 +#: flatcamGUI/FlatCAMGUI.py:417 msgid "&Zoom Out\t-" msgstr "&Уменьшить\t-" -#: flatcamGUI/FlatCAMGUI.py:401 +#: flatcamGUI/FlatCAMGUI.py:422 msgid "Redraw All\tF5" msgstr "Перерисовать всё\tF5" -#: flatcamGUI/FlatCAMGUI.py:405 +#: flatcamGUI/FlatCAMGUI.py:426 msgid "Toggle Code Editor\tSHIFT+E" msgstr "Переключить редактор кода\tSHIFT+E" -#: flatcamGUI/FlatCAMGUI.py:408 +#: flatcamGUI/FlatCAMGUI.py:429 msgid "&Toggle FullScreen\tALT+F10" msgstr "&Во весь экран\tALT+F10" -#: flatcamGUI/FlatCAMGUI.py:410 +#: flatcamGUI/FlatCAMGUI.py:431 msgid "&Toggle Plot Area\tCTRL+F10" msgstr "&Рабочая область\tCTRL+F10" -#: flatcamGUI/FlatCAMGUI.py:412 +#: flatcamGUI/FlatCAMGUI.py:433 msgid "&Toggle Project/Sel/Tool\t`" msgstr "&Боковая панель\t`" -#: flatcamGUI/FlatCAMGUI.py:416 +#: flatcamGUI/FlatCAMGUI.py:437 msgid "&Toggle Grid Snap\tG" msgstr "&Привязка к сетке\tG" -#: flatcamGUI/FlatCAMGUI.py:418 +#: flatcamGUI/FlatCAMGUI.py:439 msgid "&Toggle Grid Lines\tALT+G" msgstr "&Переключить линии сетки \tALT+G" -#: flatcamGUI/FlatCAMGUI.py:419 +#: flatcamGUI/FlatCAMGUI.py:441 msgid "&Toggle Axis\tSHIFT+G" msgstr "&Оси\tSHIFT+G" -#: flatcamGUI/FlatCAMGUI.py:422 +#: flatcamGUI/FlatCAMGUI.py:443 msgid "Toggle Workspace\tSHIFT+W" msgstr "Границы рабочего пространства\tSHIFT+W" -#: flatcamGUI/FlatCAMGUI.py:427 +#: flatcamGUI/FlatCAMGUI.py:448 msgid "Objects" msgstr "Объекты" -#: flatcamGUI/FlatCAMGUI.py:440 +#: flatcamGUI/FlatCAMGUI.py:462 msgid "&Command Line\tS" msgstr "&Командная строка\tS" -#: flatcamGUI/FlatCAMGUI.py:445 +#: flatcamGUI/FlatCAMGUI.py:467 msgid "Help" msgstr "Помощь" -#: flatcamGUI/FlatCAMGUI.py:446 +#: flatcamGUI/FlatCAMGUI.py:469 msgid "Online Help\tF1" msgstr "Онлайн справка\tF1" -#: flatcamGUI/FlatCAMGUI.py:454 +#: flatcamGUI/FlatCAMGUI.py:479 msgid "Report a bug" msgstr "Сообщить об ошибке" -#: flatcamGUI/FlatCAMGUI.py:457 +#: flatcamGUI/FlatCAMGUI.py:482 msgid "Excellon Specification" msgstr "Спецификация Excellon" -#: flatcamGUI/FlatCAMGUI.py:459 +#: flatcamGUI/FlatCAMGUI.py:484 msgid "Gerber Specification" msgstr "Спецификация Gerber" -#: flatcamGUI/FlatCAMGUI.py:464 +#: flatcamGUI/FlatCAMGUI.py:489 msgid "Shortcuts List\tF3" msgstr "Список комбинаций клавиш\tF3" -#: flatcamGUI/FlatCAMGUI.py:465 +#: flatcamGUI/FlatCAMGUI.py:491 msgid "YouTube Channel\tF4" msgstr "Канал YouTube\tF4" -#: flatcamGUI/FlatCAMGUI.py:476 +#: flatcamGUI/FlatCAMGUI.py:502 msgid "Add Circle\tO" msgstr "Добавить круг\tO" -#: flatcamGUI/FlatCAMGUI.py:478 +#: flatcamGUI/FlatCAMGUI.py:505 msgid "Add Arc\tA" msgstr "Добавить дугу\tA" -#: flatcamGUI/FlatCAMGUI.py:481 +#: flatcamGUI/FlatCAMGUI.py:508 msgid "Add Rectangle\tR" msgstr "Добавить прямоугольник\tR" -#: flatcamGUI/FlatCAMGUI.py:484 +#: flatcamGUI/FlatCAMGUI.py:511 msgid "Add Polygon\tN" msgstr "Добавить полигон\tN" -#: flatcamGUI/FlatCAMGUI.py:486 +#: flatcamGUI/FlatCAMGUI.py:514 msgid "Add Path\tP" msgstr "Добавить дорожку\tP" -#: flatcamGUI/FlatCAMGUI.py:488 +#: flatcamGUI/FlatCAMGUI.py:517 msgid "Add Text\tT" msgstr "Добавить текст\tT" -#: flatcamGUI/FlatCAMGUI.py:491 +#: flatcamGUI/FlatCAMGUI.py:520 msgid "Polygon Union\tU" msgstr "Объединение полигонов\tU" -#: flatcamGUI/FlatCAMGUI.py:493 +#: flatcamGUI/FlatCAMGUI.py:522 msgid "Polygon Intersection\tE" msgstr "Пересечение полигонов\tE" -#: flatcamGUI/FlatCAMGUI.py:495 +#: flatcamGUI/FlatCAMGUI.py:524 msgid "Polygon Subtraction\tS" msgstr "Вычитание полигонов\tS" -#: flatcamGUI/FlatCAMGUI.py:499 +#: flatcamGUI/FlatCAMGUI.py:528 msgid "Cut Path\tX" msgstr "Вырезать дорожку\tX" -#: flatcamGUI/FlatCAMGUI.py:501 +#: flatcamGUI/FlatCAMGUI.py:531 msgid "Copy Geom\tC" msgstr "Копировать Geom\tC" -#: flatcamGUI/FlatCAMGUI.py:503 +#: flatcamGUI/FlatCAMGUI.py:533 msgid "Delete Shape\tDEL" msgstr "Удалить фигуру\tDEL" -#: flatcamGUI/FlatCAMGUI.py:506 flatcamGUI/FlatCAMGUI.py:588 +#: flatcamGUI/FlatCAMGUI.py:537 flatcamGUI/FlatCAMGUI.py:624 msgid "Move\tM" msgstr "Переместить\tM" -#: flatcamGUI/FlatCAMGUI.py:508 +#: flatcamGUI/FlatCAMGUI.py:539 msgid "Buffer Tool\tB" msgstr "Буфер\tB" -#: flatcamGUI/FlatCAMGUI.py:511 +#: flatcamGUI/FlatCAMGUI.py:542 msgid "Paint Tool\tI" msgstr "Рисование\tI" -#: flatcamGUI/FlatCAMGUI.py:514 +#: flatcamGUI/FlatCAMGUI.py:545 msgid "Transform Tool\tALT+R" msgstr "Трансформация\tALT+R" -#: flatcamGUI/FlatCAMGUI.py:518 +#: flatcamGUI/FlatCAMGUI.py:549 msgid "Toggle Corner Snap\tK" msgstr "Привязка к углу\tK" -#: flatcamGUI/FlatCAMGUI.py:524 +#: flatcamGUI/FlatCAMGUI.py:555 msgid ">Excellon Editor<" msgstr ">Редактор Excellon<" -#: flatcamGUI/FlatCAMGUI.py:528 +#: flatcamGUI/FlatCAMGUI.py:559 msgid "Add Drill Array\tA" msgstr "Добавить группу свёрел\tA" -#: flatcamGUI/FlatCAMGUI.py:530 +#: flatcamGUI/FlatCAMGUI.py:561 msgid "Add Drill\tD" msgstr "Добавить сверло\tD" -#: flatcamGUI/FlatCAMGUI.py:534 +#: flatcamGUI/FlatCAMGUI.py:565 msgid "Add Slot Array\tQ" msgstr "Добавить массив пазов\tQ" -#: flatcamGUI/FlatCAMGUI.py:536 +#: flatcamGUI/FlatCAMGUI.py:567 msgid "Add Slot\tW" msgstr "Добавить паз\tW" -#: flatcamGUI/FlatCAMGUI.py:540 +#: flatcamGUI/FlatCAMGUI.py:571 msgid "Resize Drill(S)\tR" msgstr "Изменить размер отверстия\tR" -#: flatcamGUI/FlatCAMGUI.py:542 flatcamGUI/FlatCAMGUI.py:583 +#: flatcamGUI/FlatCAMGUI.py:574 flatcamGUI/FlatCAMGUI.py:618 msgid "Copy\tC" msgstr "Копировать\tC" -#: flatcamGUI/FlatCAMGUI.py:544 flatcamGUI/FlatCAMGUI.py:585 +#: flatcamGUI/FlatCAMGUI.py:576 flatcamGUI/FlatCAMGUI.py:620 msgid "Delete\tDEL" msgstr "Удалить\tDEL" -#: flatcamGUI/FlatCAMGUI.py:549 +#: flatcamGUI/FlatCAMGUI.py:581 msgid "Move Drill(s)\tM" msgstr "Переместить сверла\tM" -#: flatcamGUI/FlatCAMGUI.py:554 +#: flatcamGUI/FlatCAMGUI.py:586 msgid ">Gerber Editor<" msgstr ">Редактор Gerber<" -#: flatcamGUI/FlatCAMGUI.py:558 +#: flatcamGUI/FlatCAMGUI.py:590 msgid "Add Pad\tP" msgstr "Добавить площадку\tP" -#: flatcamGUI/FlatCAMGUI.py:560 +#: flatcamGUI/FlatCAMGUI.py:592 msgid "Add Pad Array\tA" msgstr "Добавить массив площадок\tA" -#: flatcamGUI/FlatCAMGUI.py:562 +#: flatcamGUI/FlatCAMGUI.py:594 msgid "Add Track\tT" msgstr "Добавить маршрут\tT" -#: flatcamGUI/FlatCAMGUI.py:564 +#: flatcamGUI/FlatCAMGUI.py:596 msgid "Add Region\tN" msgstr "Добавить регион\tN" -#: flatcamGUI/FlatCAMGUI.py:568 +#: flatcamGUI/FlatCAMGUI.py:600 msgid "Poligonize\tALT+N" msgstr "Полигонизация\tALT+N" -#: flatcamGUI/FlatCAMGUI.py:570 +#: flatcamGUI/FlatCAMGUI.py:602 msgid "Add SemiDisc\tE" msgstr "Добавить полукруг\tE" -#: flatcamGUI/FlatCAMGUI.py:571 +#: flatcamGUI/FlatCAMGUI.py:604 msgid "Add Disc\tD" msgstr "Добавить диск\tD" -#: flatcamGUI/FlatCAMGUI.py:573 +#: flatcamGUI/FlatCAMGUI.py:606 msgid "Buffer\tB" msgstr "Буфер\tB" -#: flatcamGUI/FlatCAMGUI.py:574 +#: flatcamGUI/FlatCAMGUI.py:608 msgid "Scale\tS" msgstr "Масштабировать\tS" -#: flatcamGUI/FlatCAMGUI.py:576 +#: flatcamGUI/FlatCAMGUI.py:610 msgid "Mark Area\tALT+A" msgstr "Обозначить области\tALT+A" -#: flatcamGUI/FlatCAMGUI.py:578 +#: flatcamGUI/FlatCAMGUI.py:612 msgid "Eraser\tCTRL+E" msgstr "Ластик\tCTRL+E" -#: flatcamGUI/FlatCAMGUI.py:580 +#: flatcamGUI/FlatCAMGUI.py:614 msgid "Transform\tALT+R" msgstr "Трансформировать\tALT+R" -#: flatcamGUI/FlatCAMGUI.py:603 +#: flatcamGUI/FlatCAMGUI.py:640 msgid "Enable Plot" msgstr "Включить участок" -#: flatcamGUI/FlatCAMGUI.py:604 +#: flatcamGUI/FlatCAMGUI.py:642 msgid "Disable Plot" msgstr "Отключить участок" -#: flatcamGUI/FlatCAMGUI.py:606 +#: flatcamGUI/FlatCAMGUI.py:645 msgid "Generate CNC" msgstr "Создать CNC" -#: flatcamGUI/FlatCAMGUI.py:607 +#: flatcamGUI/FlatCAMGUI.py:647 msgid "View Source" msgstr "Просмотреть код" -#: flatcamGUI/FlatCAMGUI.py:615 flatcamGUI/FlatCAMGUI.py:1974 +#: flatcamGUI/FlatCAMGUI.py:660 flatcamGUI/FlatCAMGUI.py:2141 #: flatcamTools/ToolProperties.py:30 msgid "Properties" msgstr "Свойства" -#: flatcamGUI/FlatCAMGUI.py:644 +#: flatcamGUI/FlatCAMGUI.py:689 msgid "File Toolbar" msgstr "Панель файлов" -#: flatcamGUI/FlatCAMGUI.py:648 +#: flatcamGUI/FlatCAMGUI.py:693 msgid "Edit Toolbar" msgstr "Панель редактирования" -#: flatcamGUI/FlatCAMGUI.py:652 +#: flatcamGUI/FlatCAMGUI.py:697 msgid "View Toolbar" msgstr "Панель просмотра" -#: flatcamGUI/FlatCAMGUI.py:656 +#: flatcamGUI/FlatCAMGUI.py:701 msgid "Shell Toolbar" msgstr "Панель командной строки" -#: flatcamGUI/FlatCAMGUI.py:660 +#: flatcamGUI/FlatCAMGUI.py:705 msgid "Tools Toolbar" msgstr "Панель инструментов" -#: flatcamGUI/FlatCAMGUI.py:664 +#: flatcamGUI/FlatCAMGUI.py:709 msgid "Excellon Editor Toolbar" msgstr "Панель редактора Excellon" -#: flatcamGUI/FlatCAMGUI.py:670 +#: flatcamGUI/FlatCAMGUI.py:715 msgid "Geometry Editor Toolbar" msgstr "Панель редактора Geometry" -#: flatcamGUI/FlatCAMGUI.py:674 +#: flatcamGUI/FlatCAMGUI.py:719 msgid "Gerber Editor Toolbar" msgstr "Панель редактора Gerber" -#: flatcamGUI/FlatCAMGUI.py:678 +#: flatcamGUI/FlatCAMGUI.py:723 msgid "Grid Toolbar" msgstr "Панель сетки координат" -#: flatcamGUI/FlatCAMGUI.py:699 flatcamGUI/FlatCAMGUI.py:2152 +#: flatcamGUI/FlatCAMGUI.py:746 flatcamGUI/FlatCAMGUI.py:2322 msgid "Open project" msgstr "Открыть проект" -#: flatcamGUI/FlatCAMGUI.py:700 flatcamGUI/FlatCAMGUI.py:2153 +#: flatcamGUI/FlatCAMGUI.py:748 flatcamGUI/FlatCAMGUI.py:2324 msgid "Save project" msgstr "Сохранить проект" -#: flatcamGUI/FlatCAMGUI.py:705 flatcamGUI/FlatCAMGUI.py:2156 +#: flatcamGUI/FlatCAMGUI.py:754 flatcamGUI/FlatCAMGUI.py:2328 msgid "New Blank Geometry" msgstr "Создать Geometry" -#: flatcamGUI/FlatCAMGUI.py:706 flatcamGUI/FlatCAMGUI.py:2157 +#: flatcamGUI/FlatCAMGUI.py:756 flatcamGUI/FlatCAMGUI.py:2330 msgid "New Blank Gerber" msgstr "Создать Gerber" -#: flatcamGUI/FlatCAMGUI.py:707 flatcamGUI/FlatCAMGUI.py:2158 +#: flatcamGUI/FlatCAMGUI.py:758 flatcamGUI/FlatCAMGUI.py:2332 msgid "New Blank Excellon" msgstr "Создать Excellon" -#: flatcamGUI/FlatCAMGUI.py:711 flatcamGUI/FlatCAMGUI.py:2162 +#: flatcamGUI/FlatCAMGUI.py:763 flatcamGUI/FlatCAMGUI.py:2338 msgid "Save Object and close the Editor" msgstr "Сохранить объект и закрыть редактор" -#: flatcamGUI/FlatCAMGUI.py:716 flatcamGUI/FlatCAMGUI.py:2167 +#: flatcamGUI/FlatCAMGUI.py:770 flatcamGUI/FlatCAMGUI.py:2345 msgid "&Delete" msgstr "&Удалить" -#: flatcamGUI/FlatCAMGUI.py:718 flatcamGUI/FlatCAMGUI.py:1466 -#: flatcamGUI/FlatCAMGUI.py:1665 flatcamGUI/FlatCAMGUI.py:2169 +#: flatcamGUI/FlatCAMGUI.py:773 flatcamGUI/FlatCAMGUI.py:1582 +#: flatcamGUI/FlatCAMGUI.py:1781 flatcamGUI/FlatCAMGUI.py:2348 #: flatcamTools/ToolDistance.py:30 flatcamTools/ToolDistance.py:160 msgid "Distance Tool" msgstr "Измеритель" -#: flatcamGUI/FlatCAMGUI.py:720 flatcamGUI/FlatCAMGUI.py:2171 +#: flatcamGUI/FlatCAMGUI.py:775 flatcamGUI/FlatCAMGUI.py:2350 msgid "Distance Min Tool" msgstr "Минимальное расстояние" -#: flatcamGUI/FlatCAMGUI.py:721 flatcamGUI/FlatCAMGUI.py:1459 -#: flatcamGUI/FlatCAMGUI.py:2172 +#: flatcamGUI/FlatCAMGUI.py:777 flatcamGUI/FlatCAMGUI.py:1575 +#: flatcamGUI/FlatCAMGUI.py:2352 msgid "Set Origin" msgstr "Указать начало координат" -#: flatcamGUI/FlatCAMGUI.py:722 flatcamGUI/FlatCAMGUI.py:2173 +#: flatcamGUI/FlatCAMGUI.py:779 flatcamGUI/FlatCAMGUI.py:2354 msgid "Jump to Location" msgstr "Перейти к расположению" -#: flatcamGUI/FlatCAMGUI.py:727 flatcamGUI/FlatCAMGUI.py:2176 +#: flatcamGUI/FlatCAMGUI.py:785 flatcamGUI/FlatCAMGUI.py:2358 msgid "&Replot" msgstr "&Перерисовать объект" -#: flatcamGUI/FlatCAMGUI.py:728 flatcamGUI/FlatCAMGUI.py:2177 +#: flatcamGUI/FlatCAMGUI.py:787 flatcamGUI/FlatCAMGUI.py:2360 msgid "&Clear plot" msgstr "&Отключить все участки" -#: flatcamGUI/FlatCAMGUI.py:729 flatcamGUI/FlatCAMGUI.py:1462 -#: flatcamGUI/FlatCAMGUI.py:2178 +#: flatcamGUI/FlatCAMGUI.py:789 flatcamGUI/FlatCAMGUI.py:1578 +#: flatcamGUI/FlatCAMGUI.py:2362 msgid "Zoom In" msgstr "Увеличить" -#: flatcamGUI/FlatCAMGUI.py:730 flatcamGUI/FlatCAMGUI.py:1462 -#: flatcamGUI/FlatCAMGUI.py:2179 +#: flatcamGUI/FlatCAMGUI.py:791 flatcamGUI/FlatCAMGUI.py:1578 +#: flatcamGUI/FlatCAMGUI.py:2364 msgid "Zoom Out" msgstr "Уменьшить" -#: flatcamGUI/FlatCAMGUI.py:731 flatcamGUI/FlatCAMGUI.py:1461 -#: flatcamGUI/FlatCAMGUI.py:1905 flatcamGUI/FlatCAMGUI.py:2180 +#: flatcamGUI/FlatCAMGUI.py:793 flatcamGUI/FlatCAMGUI.py:1577 +#: flatcamGUI/FlatCAMGUI.py:2031 flatcamGUI/FlatCAMGUI.py:2366 msgid "Zoom Fit" msgstr "Вернуть масштаб" -#: flatcamGUI/FlatCAMGUI.py:738 flatcamGUI/FlatCAMGUI.py:2185 +#: flatcamGUI/FlatCAMGUI.py:801 flatcamGUI/FlatCAMGUI.py:2372 msgid "&Command Line" msgstr "&Командная строка" -#: flatcamGUI/FlatCAMGUI.py:746 flatcamGUI/FlatCAMGUI.py:2191 +#: flatcamGUI/FlatCAMGUI.py:813 flatcamGUI/FlatCAMGUI.py:2382 msgid "2Sided Tool" msgstr "2-х сторонняя плата" -#: flatcamGUI/FlatCAMGUI.py:747 flatcamGUI/ObjectUI.py:577 +#: flatcamGUI/FlatCAMGUI.py:815 flatcamGUI/ObjectUI.py:588 #: flatcamTools/ToolCutOut.py:434 msgid "Cutout Tool" msgstr "Обрезка платы" -#: flatcamGUI/FlatCAMGUI.py:748 flatcamGUI/FlatCAMGUI.py:2193 -#: flatcamGUI/ObjectUI.py:555 flatcamGUI/ObjectUI.py:1712 -#: flatcamTools/ToolNonCopperClear.py:637 +#: flatcamGUI/FlatCAMGUI.py:817 flatcamGUI/FlatCAMGUI.py:2386 +#: flatcamGUI/ObjectUI.py:566 flatcamGUI/ObjectUI.py:1751 +#: flatcamTools/ToolNonCopperClear.py:638 msgid "NCC Tool" msgstr "Очистка меди" -#: flatcamGUI/FlatCAMGUI.py:752 flatcamGUI/FlatCAMGUI.py:2197 +#: flatcamGUI/FlatCAMGUI.py:823 flatcamGUI/FlatCAMGUI.py:2392 msgid "Panel Tool" msgstr "Панелизация" -#: flatcamGUI/FlatCAMGUI.py:753 flatcamGUI/FlatCAMGUI.py:2198 +#: flatcamGUI/FlatCAMGUI.py:825 flatcamGUI/FlatCAMGUI.py:2394 #: flatcamTools/ToolFilm.py:578 msgid "Film Tool" msgstr "Плёнка" -#: flatcamGUI/FlatCAMGUI.py:754 flatcamGUI/FlatCAMGUI.py:2200 +#: flatcamGUI/FlatCAMGUI.py:827 flatcamGUI/FlatCAMGUI.py:2397 #: flatcamTools/ToolSolderPaste.py:547 msgid "SolderPaste Tool" msgstr "Паяльная паста" -#: flatcamGUI/FlatCAMGUI.py:755 flatcamGUI/FlatCAMGUI.py:2201 +#: flatcamGUI/FlatCAMGUI.py:829 flatcamGUI/FlatCAMGUI.py:2399 #: flatcamTools/ToolSub.py:35 msgid "Subtract Tool" msgstr "Вычитатель" -#: flatcamGUI/FlatCAMGUI.py:756 flatcamTools/ToolRulesCheck.py:607 +#: flatcamGUI/FlatCAMGUI.py:831 flatcamTools/ToolRulesCheck.py:607 msgid "Rules Tool" msgstr "Правила" -#: flatcamGUI/FlatCAMGUI.py:757 flatcamGUI/FlatCAMGUI.py:1477 +#: flatcamGUI/FlatCAMGUI.py:833 flatcamGUI/FlatCAMGUI.py:1593 #: flatcamTools/ToolOptimal.py:34 flatcamTools/ToolOptimal.py:310 msgid "Optimal Tool" msgstr "Оптимизация" -#: flatcamGUI/FlatCAMGUI.py:761 flatcamGUI/FlatCAMGUI.py:1475 -#: flatcamGUI/FlatCAMGUI.py:2206 +#: flatcamGUI/FlatCAMGUI.py:838 flatcamGUI/FlatCAMGUI.py:1591 +#: flatcamGUI/FlatCAMGUI.py:2404 msgid "Calculators Tool" msgstr "Калькулятор" -#: flatcamGUI/FlatCAMGUI.py:763 flatcamGUI/FlatCAMGUI.py:1478 -#: flatcamGUI/FlatCAMGUI.py:2208 flatcamTools/ToolQRCode.py:43 +#: flatcamGUI/FlatCAMGUI.py:842 flatcamGUI/FlatCAMGUI.py:1594 +#: flatcamGUI/FlatCAMGUI.py:2408 flatcamTools/ToolQRCode.py:43 #: flatcamTools/ToolQRCode.py:382 msgid "QRCode Tool" msgstr "QR код" -#: flatcamGUI/FlatCAMGUI.py:765 flatcamGUI/FlatCAMGUI.py:2210 +#: flatcamGUI/FlatCAMGUI.py:844 flatcamGUI/FlatCAMGUI.py:2410 #: flatcamTools/ToolCopperThieving.py:40 flatcamTools/ToolCopperThieving.py:566 msgid "Copper Thieving Tool" msgstr "Copper Thieving" -#: flatcamGUI/FlatCAMGUI.py:767 flatcamGUI/FlatCAMGUI.py:1475 -#: flatcamGUI/FlatCAMGUI.py:2212 flatcamTools/ToolFiducials.py:33 +#: flatcamGUI/FlatCAMGUI.py:847 flatcamGUI/FlatCAMGUI.py:1591 +#: flatcamGUI/FlatCAMGUI.py:2413 flatcamTools/ToolFiducials.py:33 #: flatcamTools/ToolFiducials.py:393 msgid "Fiducials Tool" msgstr "Контрольные точки" -#: flatcamGUI/FlatCAMGUI.py:768 flatcamGUI/FlatCAMGUI.py:2213 +#: flatcamGUI/FlatCAMGUI.py:849 flatcamGUI/FlatCAMGUI.py:2415 #: flatcamTools/ToolCalibration.py:37 flatcamTools/ToolCalibration.py:762 msgid "Calibration Tool" msgstr "Калькулятор" -#: flatcamGUI/FlatCAMGUI.py:773 flatcamGUI/FlatCAMGUI.py:792 -#: flatcamGUI/FlatCAMGUI.py:830 flatcamGUI/FlatCAMGUI.py:2216 -#: flatcamGUI/FlatCAMGUI.py:2271 +#: flatcamGUI/FlatCAMGUI.py:855 flatcamGUI/FlatCAMGUI.py:881 +#: flatcamGUI/FlatCAMGUI.py:933 flatcamGUI/FlatCAMGUI.py:2419 +#: flatcamGUI/FlatCAMGUI.py:2493 msgid "Select" msgstr "Выбрать" -#: flatcamGUI/FlatCAMGUI.py:774 flatcamGUI/FlatCAMGUI.py:2217 +#: flatcamGUI/FlatCAMGUI.py:857 flatcamGUI/FlatCAMGUI.py:2421 msgid "Add Drill Hole" msgstr "Добавить отверстие" -#: flatcamGUI/FlatCAMGUI.py:776 flatcamGUI/FlatCAMGUI.py:2219 +#: flatcamGUI/FlatCAMGUI.py:859 flatcamGUI/FlatCAMGUI.py:2423 msgid "Add Drill Hole Array" msgstr "Добавить массив отверстий" -#: flatcamGUI/FlatCAMGUI.py:777 flatcamGUI/FlatCAMGUI.py:1750 -#: flatcamGUI/FlatCAMGUI.py:1960 flatcamGUI/FlatCAMGUI.py:2221 +#: flatcamGUI/FlatCAMGUI.py:861 flatcamGUI/FlatCAMGUI.py:1866 +#: flatcamGUI/FlatCAMGUI.py:2119 flatcamGUI/FlatCAMGUI.py:2427 msgid "Add Slot" msgstr "Добавить паз" -#: flatcamGUI/FlatCAMGUI.py:779 flatcamGUI/FlatCAMGUI.py:1749 -#: flatcamGUI/FlatCAMGUI.py:1961 flatcamGUI/FlatCAMGUI.py:2223 +#: flatcamGUI/FlatCAMGUI.py:863 flatcamGUI/FlatCAMGUI.py:1865 +#: flatcamGUI/FlatCAMGUI.py:2121 flatcamGUI/FlatCAMGUI.py:2429 msgid "Add Slot Array" msgstr "Добавить массив пазов" -#: flatcamGUI/FlatCAMGUI.py:780 flatcamGUI/FlatCAMGUI.py:1963 -#: flatcamGUI/FlatCAMGUI.py:2220 +#: flatcamGUI/FlatCAMGUI.py:865 flatcamGUI/FlatCAMGUI.py:2124 +#: flatcamGUI/FlatCAMGUI.py:2425 msgid "Resize Drill" msgstr "Изменить размер отверстия" -#: flatcamGUI/FlatCAMGUI.py:783 flatcamGUI/FlatCAMGUI.py:2226 +#: flatcamGUI/FlatCAMGUI.py:869 flatcamGUI/FlatCAMGUI.py:2433 msgid "Copy Drill" msgstr "Копировать отверстие" -#: flatcamGUI/FlatCAMGUI.py:784 flatcamGUI/FlatCAMGUI.py:2228 +#: flatcamGUI/FlatCAMGUI.py:871 flatcamGUI/FlatCAMGUI.py:2435 msgid "Delete Drill" msgstr "Удалить отверстие" -#: flatcamGUI/FlatCAMGUI.py:787 flatcamGUI/FlatCAMGUI.py:2231 +#: flatcamGUI/FlatCAMGUI.py:875 flatcamGUI/FlatCAMGUI.py:2439 msgid "Move Drill" msgstr "Переместить отверстие" -#: flatcamGUI/FlatCAMGUI.py:793 flatcamGUI/FlatCAMGUI.py:2235 +#: flatcamGUI/FlatCAMGUI.py:883 flatcamGUI/FlatCAMGUI.py:2445 msgid "Add Circle" msgstr "Добавить круг" -#: flatcamGUI/FlatCAMGUI.py:794 flatcamGUI/FlatCAMGUI.py:2236 +#: flatcamGUI/FlatCAMGUI.py:885 flatcamGUI/FlatCAMGUI.py:2447 msgid "Add Arc" msgstr "Добавить дугу" -#: flatcamGUI/FlatCAMGUI.py:796 flatcamGUI/FlatCAMGUI.py:2238 +#: flatcamGUI/FlatCAMGUI.py:887 flatcamGUI/FlatCAMGUI.py:2449 msgid "Add Rectangle" msgstr "Добавить прямоугольник" -#: flatcamGUI/FlatCAMGUI.py:799 flatcamGUI/FlatCAMGUI.py:2241 +#: flatcamGUI/FlatCAMGUI.py:891 flatcamGUI/FlatCAMGUI.py:2453 msgid "Add Path" msgstr "Добавить дорожку" -#: flatcamGUI/FlatCAMGUI.py:800 flatcamGUI/FlatCAMGUI.py:2243 +#: flatcamGUI/FlatCAMGUI.py:893 flatcamGUI/FlatCAMGUI.py:2455 msgid "Add Polygon" msgstr "Добавить полигон" -#: flatcamGUI/FlatCAMGUI.py:802 flatcamGUI/FlatCAMGUI.py:2245 +#: flatcamGUI/FlatCAMGUI.py:896 flatcamGUI/FlatCAMGUI.py:2458 msgid "Add Text" msgstr "Добавить текст" -#: flatcamGUI/FlatCAMGUI.py:803 flatcamGUI/FlatCAMGUI.py:2246 +#: flatcamGUI/FlatCAMGUI.py:898 flatcamGUI/FlatCAMGUI.py:2460 msgid "Add Buffer" msgstr "Добавить буфер" -#: flatcamGUI/FlatCAMGUI.py:804 flatcamGUI/FlatCAMGUI.py:2247 +#: flatcamGUI/FlatCAMGUI.py:900 flatcamGUI/FlatCAMGUI.py:2462 msgid "Paint Shape" msgstr "Нарисовать фигуру" -#: flatcamGUI/FlatCAMGUI.py:805 flatcamGUI/FlatCAMGUI.py:847 -#: flatcamGUI/FlatCAMGUI.py:1922 flatcamGUI/FlatCAMGUI.py:1950 -#: flatcamGUI/FlatCAMGUI.py:2248 flatcamGUI/FlatCAMGUI.py:2287 +#: flatcamGUI/FlatCAMGUI.py:902 flatcamGUI/FlatCAMGUI.py:959 +#: flatcamGUI/FlatCAMGUI.py:2060 flatcamGUI/FlatCAMGUI.py:2105 +#: flatcamGUI/FlatCAMGUI.py:2464 flatcamGUI/FlatCAMGUI.py:2518 msgid "Eraser" msgstr "Ластик" -#: flatcamGUI/FlatCAMGUI.py:808 flatcamGUI/FlatCAMGUI.py:2251 +#: flatcamGUI/FlatCAMGUI.py:906 flatcamGUI/FlatCAMGUI.py:2468 msgid "Polygon Union" msgstr "Сращение полигонов" -#: flatcamGUI/FlatCAMGUI.py:809 flatcamGUI/FlatCAMGUI.py:2252 +#: flatcamGUI/FlatCAMGUI.py:908 flatcamGUI/FlatCAMGUI.py:2470 msgid "Polygon Explode" msgstr "Разделение полигонов" -#: flatcamGUI/FlatCAMGUI.py:812 flatcamGUI/FlatCAMGUI.py:2255 +#: flatcamGUI/FlatCAMGUI.py:911 flatcamGUI/FlatCAMGUI.py:2473 msgid "Polygon Intersection" msgstr "Пересечение полигонов" -#: flatcamGUI/FlatCAMGUI.py:814 flatcamGUI/FlatCAMGUI.py:2257 +#: flatcamGUI/FlatCAMGUI.py:913 flatcamGUI/FlatCAMGUI.py:2475 msgid "Polygon Subtraction" msgstr "Вычитание полигонов" -#: flatcamGUI/FlatCAMGUI.py:817 flatcamGUI/FlatCAMGUI.py:2260 +#: flatcamGUI/FlatCAMGUI.py:917 flatcamGUI/FlatCAMGUI.py:2479 msgid "Cut Path" msgstr "Вырезать путь" -#: flatcamGUI/FlatCAMGUI.py:818 +#: flatcamGUI/FlatCAMGUI.py:919 msgid "Copy Shape(s)" msgstr "Копировать форму(ы)" -#: flatcamGUI/FlatCAMGUI.py:821 +#: flatcamGUI/FlatCAMGUI.py:922 msgid "Delete Shape '-'" msgstr "Удалить фигуру '-'" -#: flatcamGUI/FlatCAMGUI.py:823 flatcamGUI/FlatCAMGUI.py:854 -#: flatcamGUI/FlatCAMGUI.py:1929 flatcamGUI/FlatCAMGUI.py:1954 -#: flatcamGUI/FlatCAMGUI.py:2265 flatcamGUI/FlatCAMGUI.py:2294 +#: flatcamGUI/FlatCAMGUI.py:924 flatcamGUI/FlatCAMGUI.py:967 +#: flatcamGUI/FlatCAMGUI.py:2072 flatcamGUI/FlatCAMGUI.py:2109 +#: flatcamGUI/FlatCAMGUI.py:2485 flatcamGUI/FlatCAMGUI.py:2526 msgid "Transformations" msgstr "Трансформация" -#: flatcamGUI/FlatCAMGUI.py:825 +#: flatcamGUI/FlatCAMGUI.py:927 msgid "Move Objects " msgstr "Переместить объект " -#: flatcamGUI/FlatCAMGUI.py:831 flatcamGUI/FlatCAMGUI.py:1869 -#: flatcamGUI/FlatCAMGUI.py:2272 +#: flatcamGUI/FlatCAMGUI.py:935 flatcamGUI/FlatCAMGUI.py:1985 +#: flatcamGUI/FlatCAMGUI.py:2495 msgid "Add Pad" msgstr "Добавить площадку" -#: flatcamGUI/FlatCAMGUI.py:833 flatcamGUI/FlatCAMGUI.py:1870 -#: flatcamGUI/FlatCAMGUI.py:2274 +#: flatcamGUI/FlatCAMGUI.py:939 flatcamGUI/FlatCAMGUI.py:1986 +#: flatcamGUI/FlatCAMGUI.py:2499 msgid "Add Track" msgstr "Добавить маршрут" -#: flatcamGUI/FlatCAMGUI.py:834 flatcamGUI/FlatCAMGUI.py:1869 -#: flatcamGUI/FlatCAMGUI.py:2275 +#: flatcamGUI/FlatCAMGUI.py:941 flatcamGUI/FlatCAMGUI.py:1985 +#: flatcamGUI/FlatCAMGUI.py:2501 msgid "Add Region" msgstr "Добавить регион" -#: flatcamGUI/FlatCAMGUI.py:836 flatcamGUI/FlatCAMGUI.py:1942 -#: flatcamGUI/FlatCAMGUI.py:2277 +#: flatcamGUI/FlatCAMGUI.py:943 flatcamGUI/FlatCAMGUI.py:2091 +#: flatcamGUI/FlatCAMGUI.py:2503 msgid "Poligonize" msgstr "Полигонизация" -#: flatcamGUI/FlatCAMGUI.py:838 flatcamGUI/FlatCAMGUI.py:1943 -#: flatcamGUI/FlatCAMGUI.py:2279 +#: flatcamGUI/FlatCAMGUI.py:946 flatcamGUI/FlatCAMGUI.py:2093 +#: flatcamGUI/FlatCAMGUI.py:2506 msgid "SemiDisc" msgstr "Полукруг" -#: flatcamGUI/FlatCAMGUI.py:839 flatcamGUI/FlatCAMGUI.py:1944 -#: flatcamGUI/FlatCAMGUI.py:2280 +#: flatcamGUI/FlatCAMGUI.py:948 flatcamGUI/FlatCAMGUI.py:2095 +#: flatcamGUI/FlatCAMGUI.py:2508 msgid "Disc" msgstr "Диск" -#: flatcamGUI/FlatCAMGUI.py:845 flatcamGUI/FlatCAMGUI.py:1949 -#: flatcamGUI/FlatCAMGUI.py:2286 +#: flatcamGUI/FlatCAMGUI.py:956 flatcamGUI/FlatCAMGUI.py:2103 +#: flatcamGUI/FlatCAMGUI.py:2516 msgid "Mark Area" msgstr "Обозначить области" -#: flatcamGUI/FlatCAMGUI.py:856 flatcamGUI/FlatCAMGUI.py:1869 -#: flatcamGUI/FlatCAMGUI.py:1932 flatcamGUI/FlatCAMGUI.py:1973 -#: flatcamGUI/FlatCAMGUI.py:2296 flatcamTools/ToolMove.py:28 +#: flatcamGUI/FlatCAMGUI.py:970 flatcamGUI/FlatCAMGUI.py:1985 +#: flatcamGUI/FlatCAMGUI.py:2076 flatcamGUI/FlatCAMGUI.py:2139 +#: flatcamGUI/FlatCAMGUI.py:2529 flatcamTools/ToolMove.py:28 msgid "Move" msgstr "Переместить" -#: flatcamGUI/FlatCAMGUI.py:863 flatcamGUI/FlatCAMGUI.py:2302 +#: flatcamGUI/FlatCAMGUI.py:978 flatcamGUI/FlatCAMGUI.py:2536 msgid "Snap to grid" msgstr "Привязка к сетке" -#: flatcamGUI/FlatCAMGUI.py:866 flatcamGUI/FlatCAMGUI.py:2305 +#: flatcamGUI/FlatCAMGUI.py:981 flatcamGUI/FlatCAMGUI.py:2539 msgid "Grid X snapping distance" msgstr "Размер сетки по X" -#: flatcamGUI/FlatCAMGUI.py:871 flatcamGUI/FlatCAMGUI.py:2310 +#: flatcamGUI/FlatCAMGUI.py:986 flatcamGUI/FlatCAMGUI.py:2544 msgid "Grid Y snapping distance" msgstr "Размер сетки по Y" -#: flatcamGUI/FlatCAMGUI.py:877 flatcamGUI/FlatCAMGUI.py:2316 +#: flatcamGUI/FlatCAMGUI.py:992 flatcamGUI/FlatCAMGUI.py:2550 msgid "" "When active, value on Grid_X\n" "is copied to the Grid_Y value." @@ -6181,63 +6181,63 @@ msgstr "" "Если активен, значение на Grid_X\n" "копируется в значение Grid_Y." -#: flatcamGUI/FlatCAMGUI.py:883 flatcamGUI/FlatCAMGUI.py:2322 +#: flatcamGUI/FlatCAMGUI.py:999 flatcamGUI/FlatCAMGUI.py:2557 msgid "Snap to corner" msgstr "Привязка к углу" -#: flatcamGUI/FlatCAMGUI.py:887 flatcamGUI/FlatCAMGUI.py:2326 +#: flatcamGUI/FlatCAMGUI.py:1003 flatcamGUI/FlatCAMGUI.py:2561 #: flatcamGUI/PreferencesUI.py:348 msgid "Max. magnet distance" msgstr "Макс. магнит расстояние" -#: flatcamGUI/FlatCAMGUI.py:921 +#: flatcamGUI/FlatCAMGUI.py:1037 msgid "Selected" msgstr "Выбранное" -#: flatcamGUI/FlatCAMGUI.py:948 flatcamGUI/FlatCAMGUI.py:956 +#: flatcamGUI/FlatCAMGUI.py:1064 flatcamGUI/FlatCAMGUI.py:1072 msgid "Plot Area" msgstr "Рабочая область" -#: flatcamGUI/FlatCAMGUI.py:983 +#: flatcamGUI/FlatCAMGUI.py:1099 msgid "General" msgstr "Основные" -#: flatcamGUI/FlatCAMGUI.py:998 flatcamTools/ToolCopperThieving.py:74 +#: flatcamGUI/FlatCAMGUI.py:1114 flatcamTools/ToolCopperThieving.py:74 #: flatcamTools/ToolDblSided.py:57 flatcamTools/ToolOptimal.py:71 #: flatcamTools/ToolQRCode.py:77 msgid "GERBER" msgstr "GERBER" -#: flatcamGUI/FlatCAMGUI.py:1008 flatcamTools/ToolDblSided.py:85 +#: flatcamGUI/FlatCAMGUI.py:1124 flatcamTools/ToolDblSided.py:85 msgid "EXCELLON" msgstr "EXCELLON" -#: flatcamGUI/FlatCAMGUI.py:1018 flatcamTools/ToolDblSided.py:113 +#: flatcamGUI/FlatCAMGUI.py:1134 flatcamTools/ToolDblSided.py:113 msgid "GEOMETRY" msgstr "GEOMETRY" -#: flatcamGUI/FlatCAMGUI.py:1028 +#: flatcamGUI/FlatCAMGUI.py:1144 msgid "CNC-JOB" msgstr "CNC-JOB" -#: flatcamGUI/FlatCAMGUI.py:1037 flatcamGUI/ObjectUI.py:544 -#: flatcamGUI/ObjectUI.py:1687 +#: flatcamGUI/FlatCAMGUI.py:1153 flatcamGUI/ObjectUI.py:555 +#: flatcamGUI/ObjectUI.py:1726 msgid "TOOLS" msgstr "ИНСТРУМЕНТЫ" -#: flatcamGUI/FlatCAMGUI.py:1046 +#: flatcamGUI/FlatCAMGUI.py:1162 msgid "TOOLS 2" msgstr "ИНСТРУМЕНТЫ 2" -#: flatcamGUI/FlatCAMGUI.py:1056 +#: flatcamGUI/FlatCAMGUI.py:1172 msgid "UTILITIES" msgstr "УТИЛИТЫ" -#: flatcamGUI/FlatCAMGUI.py:1073 +#: flatcamGUI/FlatCAMGUI.py:1189 msgid "Import Preferences" msgstr "Импорт настроек" -#: flatcamGUI/FlatCAMGUI.py:1076 +#: flatcamGUI/FlatCAMGUI.py:1192 msgid "" "Import a full set of FlatCAM settings from a file\n" "previously saved on HDD.\n" @@ -6251,11 +6251,11 @@ msgstr "" "FlatCAM автоматически создаёт файл factory_defaults\n" "при первом запуске. Не удаляйте этот файл." -#: flatcamGUI/FlatCAMGUI.py:1083 +#: flatcamGUI/FlatCAMGUI.py:1199 msgid "Export Preferences" msgstr "Экспорт настроек" -#: flatcamGUI/FlatCAMGUI.py:1086 +#: flatcamGUI/FlatCAMGUI.py:1202 msgid "" "Export a full set of FlatCAM settings in a file\n" "that is saved on HDD." @@ -6263,23 +6263,23 @@ msgstr "" "Экспорт полного набора настроек FlatCAM в файл\n" "который сохраняется на жестком диске." -#: flatcamGUI/FlatCAMGUI.py:1091 +#: flatcamGUI/FlatCAMGUI.py:1207 msgid "Open Pref Folder" msgstr "Открыть папку настроек" -#: flatcamGUI/FlatCAMGUI.py:1094 +#: flatcamGUI/FlatCAMGUI.py:1210 msgid "Open the folder where FlatCAM save the preferences files." msgstr "Открывает папку, в которой FlatCAM сохраняет файлы настроек." -#: flatcamGUI/FlatCAMGUI.py:1102 +#: flatcamGUI/FlatCAMGUI.py:1218 msgid "Apply" msgstr "Применить" -#: flatcamGUI/FlatCAMGUI.py:1105 +#: flatcamGUI/FlatCAMGUI.py:1221 msgid "Apply the current preferences without saving to a file." msgstr "Применение текущих настроек без сохранения в файл." -#: flatcamGUI/FlatCAMGUI.py:1112 +#: flatcamGUI/FlatCAMGUI.py:1228 msgid "" "Save the current settings in the 'current_defaults' file\n" "which is the file storing the working default preferences." @@ -6287,532 +6287,532 @@ msgstr "" "Сохраняет текущие настройки в файле 'current_defaults'\n" "который является файлом, хранящим рабочие настройки по умолчанию." -#: flatcamGUI/FlatCAMGUI.py:1120 +#: flatcamGUI/FlatCAMGUI.py:1236 msgid "Will not save the changes and will close the preferences window." msgstr "Закроет окно настроек без сохранения изменений." -#: flatcamGUI/FlatCAMGUI.py:1456 +#: flatcamGUI/FlatCAMGUI.py:1572 msgid "SHOW SHORTCUT LIST" msgstr "ПОКАЗАТЬ СПИСОК КОМБИНАЦИЙ КЛАВИШ" -#: flatcamGUI/FlatCAMGUI.py:1456 +#: flatcamGUI/FlatCAMGUI.py:1572 msgid "Switch to Project Tab" msgstr "Переключиться на вкладку \"Проект\"" -#: flatcamGUI/FlatCAMGUI.py:1456 +#: flatcamGUI/FlatCAMGUI.py:1572 msgid "Switch to Selected Tab" msgstr "Переключиться на вкладку \"Выбранное\"" -#: flatcamGUI/FlatCAMGUI.py:1457 +#: flatcamGUI/FlatCAMGUI.py:1573 msgid "Switch to Tool Tab" msgstr "Переключиться на вкладку свойств" -#: flatcamGUI/FlatCAMGUI.py:1458 +#: flatcamGUI/FlatCAMGUI.py:1574 msgid "New Gerber" msgstr "Создать Gerber" -#: flatcamGUI/FlatCAMGUI.py:1458 +#: flatcamGUI/FlatCAMGUI.py:1574 msgid "Edit Object (if selected)" msgstr "Редактировать объект (если выбран)" -#: flatcamGUI/FlatCAMGUI.py:1458 +#: flatcamGUI/FlatCAMGUI.py:1574 msgid "Jump to Coordinates" msgstr "Перейти к координатам" -#: flatcamGUI/FlatCAMGUI.py:1459 +#: flatcamGUI/FlatCAMGUI.py:1575 msgid "New Excellon" msgstr "Создать Excellon" -#: flatcamGUI/FlatCAMGUI.py:1459 +#: flatcamGUI/FlatCAMGUI.py:1575 msgid "Move Obj" msgstr "Переместить объект" -#: flatcamGUI/FlatCAMGUI.py:1459 +#: flatcamGUI/FlatCAMGUI.py:1575 msgid "New Geometry" msgstr "Создать Geometry" -#: flatcamGUI/FlatCAMGUI.py:1459 +#: flatcamGUI/FlatCAMGUI.py:1575 msgid "Change Units" msgstr "Единицы измерения" -#: flatcamGUI/FlatCAMGUI.py:1460 +#: flatcamGUI/FlatCAMGUI.py:1576 msgid "Open Properties Tool" msgstr "Свойства" -#: flatcamGUI/FlatCAMGUI.py:1460 +#: flatcamGUI/FlatCAMGUI.py:1576 msgid "Rotate by 90 degree CW" msgstr "Поворот на 90 градусов по часовой стрелке" -#: flatcamGUI/FlatCAMGUI.py:1460 +#: flatcamGUI/FlatCAMGUI.py:1576 msgid "Shell Toggle" msgstr "Панель командной строки" -#: flatcamGUI/FlatCAMGUI.py:1461 +#: flatcamGUI/FlatCAMGUI.py:1577 msgid "" "Add a Tool (when in Geometry Selected Tab or in Tools NCC or Tools Paint)" msgstr "" "Добавить инструмент (во вкладках \"Выбранное\", \"Инструменты\" или " "инструменте рисования)" -#: flatcamGUI/FlatCAMGUI.py:1462 +#: flatcamGUI/FlatCAMGUI.py:1578 msgid "Flip on X_axis" msgstr "Отразить по оси X" -#: flatcamGUI/FlatCAMGUI.py:1462 +#: flatcamGUI/FlatCAMGUI.py:1578 msgid "Flip on Y_axis" msgstr "Отразить по оси Y" -#: flatcamGUI/FlatCAMGUI.py:1465 +#: flatcamGUI/FlatCAMGUI.py:1581 msgid "Copy Obj" msgstr "Копировать объекты" -#: flatcamGUI/FlatCAMGUI.py:1465 +#: flatcamGUI/FlatCAMGUI.py:1581 msgid "Open Tools Database" msgstr "Открыть БД" -#: flatcamGUI/FlatCAMGUI.py:1466 +#: flatcamGUI/FlatCAMGUI.py:1582 msgid "Open Excellon File" msgstr "Открыть Excellon" -#: flatcamGUI/FlatCAMGUI.py:1466 +#: flatcamGUI/FlatCAMGUI.py:1582 msgid "Open Gerber File" msgstr "Открыть Gerber" -#: flatcamGUI/FlatCAMGUI.py:1466 +#: flatcamGUI/FlatCAMGUI.py:1582 msgid "New Project" msgstr "Новый проект" -#: flatcamGUI/FlatCAMGUI.py:1467 flatcamTools/ToolPDF.py:42 +#: flatcamGUI/FlatCAMGUI.py:1583 flatcamTools/ToolPDF.py:42 msgid "PDF Import Tool" msgstr "Импорт PDF" -#: flatcamGUI/FlatCAMGUI.py:1467 +#: flatcamGUI/FlatCAMGUI.py:1583 msgid "Save Project As" msgstr "Сохранить проект как" -#: flatcamGUI/FlatCAMGUI.py:1467 +#: flatcamGUI/FlatCAMGUI.py:1583 msgid "Toggle Plot Area" msgstr "Переключить рабочую область" -#: flatcamGUI/FlatCAMGUI.py:1470 +#: flatcamGUI/FlatCAMGUI.py:1586 msgid "Copy Obj_Name" msgstr "Копировать имя объекта" -#: flatcamGUI/FlatCAMGUI.py:1471 +#: flatcamGUI/FlatCAMGUI.py:1587 msgid "Toggle Code Editor" msgstr "Переключить редактор кода" -#: flatcamGUI/FlatCAMGUI.py:1471 +#: flatcamGUI/FlatCAMGUI.py:1587 msgid "Toggle the axis" msgstr "Переключить ось" -#: flatcamGUI/FlatCAMGUI.py:1471 flatcamGUI/FlatCAMGUI.py:1663 -#: flatcamGUI/FlatCAMGUI.py:1750 flatcamGUI/FlatCAMGUI.py:1872 +#: flatcamGUI/FlatCAMGUI.py:1587 flatcamGUI/FlatCAMGUI.py:1779 +#: flatcamGUI/FlatCAMGUI.py:1866 flatcamGUI/FlatCAMGUI.py:1988 msgid "Distance Minimum Tool" msgstr "Минимальное расстояние" -#: flatcamGUI/FlatCAMGUI.py:1471 +#: flatcamGUI/FlatCAMGUI.py:1587 msgid "Open Preferences Window" msgstr "Открыть окно настроек" -#: flatcamGUI/FlatCAMGUI.py:1472 +#: flatcamGUI/FlatCAMGUI.py:1588 msgid "Rotate by 90 degree CCW" msgstr "Поворот на 90 градусов против часовой стрелки" -#: flatcamGUI/FlatCAMGUI.py:1472 +#: flatcamGUI/FlatCAMGUI.py:1588 msgid "Run a Script" msgstr "Запустить сценарий" -#: flatcamGUI/FlatCAMGUI.py:1472 +#: flatcamGUI/FlatCAMGUI.py:1588 msgid "Toggle the workspace" msgstr "Переключить рабочее пространство" -#: flatcamGUI/FlatCAMGUI.py:1472 +#: flatcamGUI/FlatCAMGUI.py:1588 msgid "Skew on X axis" msgstr "Наклон по оси X" -#: flatcamGUI/FlatCAMGUI.py:1473 +#: flatcamGUI/FlatCAMGUI.py:1589 msgid "Skew on Y axis" msgstr "Наклон по оси Y" -#: flatcamGUI/FlatCAMGUI.py:1475 +#: flatcamGUI/FlatCAMGUI.py:1591 msgid "2-Sided PCB Tool" msgstr "2-х сторонняя плата" -#: flatcamGUI/FlatCAMGUI.py:1475 +#: flatcamGUI/FlatCAMGUI.py:1591 msgid "Transformations Tool" msgstr "Трансформация" -#: flatcamGUI/FlatCAMGUI.py:1476 +#: flatcamGUI/FlatCAMGUI.py:1592 msgid "Solder Paste Dispensing Tool" msgstr "Паяльная паста" -#: flatcamGUI/FlatCAMGUI.py:1477 +#: flatcamGUI/FlatCAMGUI.py:1593 msgid "Film PCB Tool" msgstr "Плёнка" -#: flatcamGUI/FlatCAMGUI.py:1477 +#: flatcamGUI/FlatCAMGUI.py:1593 msgid "Non-Copper Clearing Tool" msgstr "Очистка от меди" -#: flatcamGUI/FlatCAMGUI.py:1478 +#: flatcamGUI/FlatCAMGUI.py:1594 msgid "Paint Area Tool" msgstr "Инструмент рисования" -#: flatcamGUI/FlatCAMGUI.py:1478 +#: flatcamGUI/FlatCAMGUI.py:1594 msgid "Rules Check Tool" msgstr "Проверка правил" -#: flatcamGUI/FlatCAMGUI.py:1479 +#: flatcamGUI/FlatCAMGUI.py:1595 msgid "View File Source" msgstr "Просмотреть код" -#: flatcamGUI/FlatCAMGUI.py:1480 +#: flatcamGUI/FlatCAMGUI.py:1596 msgid "Cutout PCB Tool" msgstr "Обрезка платы" -#: flatcamGUI/FlatCAMGUI.py:1480 +#: flatcamGUI/FlatCAMGUI.py:1596 msgid "Enable all Plots" msgstr "Включить все участки" -#: flatcamGUI/FlatCAMGUI.py:1480 +#: flatcamGUI/FlatCAMGUI.py:1596 msgid "Disable all Plots" msgstr "Отключить все участки" -#: flatcamGUI/FlatCAMGUI.py:1480 +#: flatcamGUI/FlatCAMGUI.py:1596 msgid "Disable Non-selected Plots" msgstr "Отключить не выбранные" -#: flatcamGUI/FlatCAMGUI.py:1481 +#: flatcamGUI/FlatCAMGUI.py:1597 msgid "Toggle Full Screen" msgstr "Во весь экран" -#: flatcamGUI/FlatCAMGUI.py:1484 +#: flatcamGUI/FlatCAMGUI.py:1600 msgid "Abort current task (gracefully)" msgstr "Прервать текущее задание (корректно)" -#: flatcamGUI/FlatCAMGUI.py:1487 +#: flatcamGUI/FlatCAMGUI.py:1603 msgid "Open Online Manual" msgstr "Открыть онлайн-руководство" -#: flatcamGUI/FlatCAMGUI.py:1488 +#: flatcamGUI/FlatCAMGUI.py:1604 msgid "Open Online Tutorials" msgstr "Открыть онлайн-уроки" -#: flatcamGUI/FlatCAMGUI.py:1488 +#: flatcamGUI/FlatCAMGUI.py:1604 msgid "Refresh Plots" msgstr "Обновить участки" -#: flatcamGUI/FlatCAMGUI.py:1488 flatcamTools/ToolSolderPaste.py:503 +#: flatcamGUI/FlatCAMGUI.py:1604 flatcamTools/ToolSolderPaste.py:503 msgid "Delete Object" msgstr "Удалить объект" -#: flatcamGUI/FlatCAMGUI.py:1488 +#: flatcamGUI/FlatCAMGUI.py:1604 msgid "Alternate: Delete Tool" msgstr "Альтернатива: Удалить инструмент" -#: flatcamGUI/FlatCAMGUI.py:1489 +#: flatcamGUI/FlatCAMGUI.py:1605 msgid "(left to Key_1)Toogle Notebook Area (Left Side)" msgstr "(слева от клавиши \"1\") Боковая панель" -#: flatcamGUI/FlatCAMGUI.py:1489 +#: flatcamGUI/FlatCAMGUI.py:1605 msgid "En(Dis)able Obj Plot" msgstr "Включить/Отключить участок" -#: flatcamGUI/FlatCAMGUI.py:1490 +#: flatcamGUI/FlatCAMGUI.py:1606 msgid "Deselects all objects" msgstr "Отмена выбора всех объектов" -#: flatcamGUI/FlatCAMGUI.py:1504 +#: flatcamGUI/FlatCAMGUI.py:1620 msgid "Editor Shortcut list" msgstr "Список комбинаций клавиш редактора" -#: flatcamGUI/FlatCAMGUI.py:1658 +#: flatcamGUI/FlatCAMGUI.py:1774 msgid "GEOMETRY EDITOR" msgstr "РЕДАКТОР GEOMETRY" -#: flatcamGUI/FlatCAMGUI.py:1658 +#: flatcamGUI/FlatCAMGUI.py:1774 msgid "Draw an Arc" msgstr "Нарисовать дугу" -#: flatcamGUI/FlatCAMGUI.py:1658 +#: flatcamGUI/FlatCAMGUI.py:1774 msgid "Copy Geo Item" msgstr "Копировать элемент Geo" -#: flatcamGUI/FlatCAMGUI.py:1659 +#: flatcamGUI/FlatCAMGUI.py:1775 msgid "Within Add Arc will toogle the ARC direction: CW or CCW" msgstr "" "При добавлении дуги будет переключаться направление изгиба: по часовой " "стрелке или против" -#: flatcamGUI/FlatCAMGUI.py:1659 +#: flatcamGUI/FlatCAMGUI.py:1775 msgid "Polygon Intersection Tool" msgstr "Пересечение полигонов" -#: flatcamGUI/FlatCAMGUI.py:1660 +#: flatcamGUI/FlatCAMGUI.py:1776 msgid "Geo Paint Tool" msgstr "Рисование" -#: flatcamGUI/FlatCAMGUI.py:1660 flatcamGUI/FlatCAMGUI.py:1749 -#: flatcamGUI/FlatCAMGUI.py:1869 +#: flatcamGUI/FlatCAMGUI.py:1776 flatcamGUI/FlatCAMGUI.py:1865 +#: flatcamGUI/FlatCAMGUI.py:1985 msgid "Jump to Location (x, y)" msgstr "Перейти к координатам (x, y)" -#: flatcamGUI/FlatCAMGUI.py:1660 +#: flatcamGUI/FlatCAMGUI.py:1776 msgid "Toggle Corner Snap" msgstr "Привязка к углу" -#: flatcamGUI/FlatCAMGUI.py:1660 +#: flatcamGUI/FlatCAMGUI.py:1776 msgid "Move Geo Item" msgstr "Переместить элемент Geo" -#: flatcamGUI/FlatCAMGUI.py:1661 +#: flatcamGUI/FlatCAMGUI.py:1777 msgid "Within Add Arc will cycle through the ARC modes" msgstr "При добавлении дуги будет переключаться между режимами дуги" -#: flatcamGUI/FlatCAMGUI.py:1661 +#: flatcamGUI/FlatCAMGUI.py:1777 msgid "Draw a Polygon" msgstr "Полигон" -#: flatcamGUI/FlatCAMGUI.py:1661 +#: flatcamGUI/FlatCAMGUI.py:1777 msgid "Draw a Circle" msgstr "Круг" -#: flatcamGUI/FlatCAMGUI.py:1662 +#: flatcamGUI/FlatCAMGUI.py:1778 msgid "Draw a Path" msgstr "Нарисовать линию" -#: flatcamGUI/FlatCAMGUI.py:1662 +#: flatcamGUI/FlatCAMGUI.py:1778 msgid "Draw Rectangle" msgstr "Прямоугольник" -#: flatcamGUI/FlatCAMGUI.py:1662 +#: flatcamGUI/FlatCAMGUI.py:1778 msgid "Polygon Subtraction Tool" msgstr "Вычитание полигонов" -#: flatcamGUI/FlatCAMGUI.py:1662 +#: flatcamGUI/FlatCAMGUI.py:1778 msgid "Add Text Tool" msgstr "Текст" -#: flatcamGUI/FlatCAMGUI.py:1663 +#: flatcamGUI/FlatCAMGUI.py:1779 msgid "Polygon Union Tool" msgstr "Сращение полигонов" -#: flatcamGUI/FlatCAMGUI.py:1663 +#: flatcamGUI/FlatCAMGUI.py:1779 msgid "Flip shape on X axis" msgstr "Отразить форму по оси X" -#: flatcamGUI/FlatCAMGUI.py:1663 +#: flatcamGUI/FlatCAMGUI.py:1779 msgid "Flip shape on Y axis" msgstr "Отразить форму по оси Y" -#: flatcamGUI/FlatCAMGUI.py:1664 +#: flatcamGUI/FlatCAMGUI.py:1780 msgid "Skew shape on X axis" msgstr "Наклонить форму по оси X" -#: flatcamGUI/FlatCAMGUI.py:1664 +#: flatcamGUI/FlatCAMGUI.py:1780 msgid "Skew shape on Y axis" msgstr "Наклонить форму по оси Y" -#: flatcamGUI/FlatCAMGUI.py:1664 +#: flatcamGUI/FlatCAMGUI.py:1780 msgid "Editor Transformation Tool" msgstr "Трансформация" -#: flatcamGUI/FlatCAMGUI.py:1665 +#: flatcamGUI/FlatCAMGUI.py:1781 msgid "Offset shape on X axis" msgstr "Смещение формы по оси X" -#: flatcamGUI/FlatCAMGUI.py:1665 +#: flatcamGUI/FlatCAMGUI.py:1781 msgid "Offset shape on Y axis" msgstr "Смещение формы по оси Y" -#: flatcamGUI/FlatCAMGUI.py:1666 flatcamGUI/FlatCAMGUI.py:1752 -#: flatcamGUI/FlatCAMGUI.py:1874 +#: flatcamGUI/FlatCAMGUI.py:1782 flatcamGUI/FlatCAMGUI.py:1868 +#: flatcamGUI/FlatCAMGUI.py:1990 msgid "Save Object and Exit Editor" msgstr "Сохранить объект и закрыть редактор" -#: flatcamGUI/FlatCAMGUI.py:1666 +#: flatcamGUI/FlatCAMGUI.py:1782 msgid "Polygon Cut Tool" msgstr "Вычитание полигонов" -#: flatcamGUI/FlatCAMGUI.py:1667 +#: flatcamGUI/FlatCAMGUI.py:1783 msgid "Rotate Geometry" msgstr "Повернуть геометрию" -#: flatcamGUI/FlatCAMGUI.py:1667 +#: flatcamGUI/FlatCAMGUI.py:1783 msgid "Finish drawing for certain tools" msgstr "Завершить рисование для некоторых инструментов" -#: flatcamGUI/FlatCAMGUI.py:1667 flatcamGUI/FlatCAMGUI.py:1752 -#: flatcamGUI/FlatCAMGUI.py:1872 +#: flatcamGUI/FlatCAMGUI.py:1783 flatcamGUI/FlatCAMGUI.py:1868 +#: flatcamGUI/FlatCAMGUI.py:1988 msgid "Abort and return to Select" msgstr "Прервать и вернуться к выбору" -#: flatcamGUI/FlatCAMGUI.py:1668 flatcamGUI/FlatCAMGUI.py:2263 +#: flatcamGUI/FlatCAMGUI.py:1784 flatcamGUI/FlatCAMGUI.py:2483 msgid "Delete Shape" msgstr "Удалить фигуру" -#: flatcamGUI/FlatCAMGUI.py:1748 +#: flatcamGUI/FlatCAMGUI.py:1864 msgid "EXCELLON EDITOR" msgstr "РЕДАКТОР EXCELLON" -#: flatcamGUI/FlatCAMGUI.py:1748 +#: flatcamGUI/FlatCAMGUI.py:1864 msgid "Copy Drill(s)" msgstr "Копировать отверстие" -#: flatcamGUI/FlatCAMGUI.py:1748 flatcamGUI/FlatCAMGUI.py:1957 +#: flatcamGUI/FlatCAMGUI.py:1864 flatcamGUI/FlatCAMGUI.py:2114 msgid "Add Drill" msgstr "Добавить сверло" -#: flatcamGUI/FlatCAMGUI.py:1749 +#: flatcamGUI/FlatCAMGUI.py:1865 msgid "Move Drill(s)" msgstr "Переместить отверстие" -#: flatcamGUI/FlatCAMGUI.py:1750 +#: flatcamGUI/FlatCAMGUI.py:1866 msgid "Add a new Tool" msgstr "Добавить инструмент" -#: flatcamGUI/FlatCAMGUI.py:1751 +#: flatcamGUI/FlatCAMGUI.py:1867 msgid "Delete Drill(s)" msgstr "Удалить отверстие" -#: flatcamGUI/FlatCAMGUI.py:1751 +#: flatcamGUI/FlatCAMGUI.py:1867 msgid "Alternate: Delete Tool(s)" msgstr "Альтернатива: Удалить инструмент(ы)" -#: flatcamGUI/FlatCAMGUI.py:1868 +#: flatcamGUI/FlatCAMGUI.py:1984 msgid "GERBER EDITOR" msgstr "РЕДАКТОР GERBER" -#: flatcamGUI/FlatCAMGUI.py:1868 +#: flatcamGUI/FlatCAMGUI.py:1984 msgid "Add Disc" msgstr "Добавить круг" -#: flatcamGUI/FlatCAMGUI.py:1868 +#: flatcamGUI/FlatCAMGUI.py:1984 msgid "Add SemiDisc" msgstr "Добавить полукруг" -#: flatcamGUI/FlatCAMGUI.py:1870 +#: flatcamGUI/FlatCAMGUI.py:1986 msgid "Within Track & Region Tools will cycle in REVERSE the bend modes" msgstr "" "В пределах трека и региона инструмент будет работать в обратном режиме изгиба" -#: flatcamGUI/FlatCAMGUI.py:1871 +#: flatcamGUI/FlatCAMGUI.py:1987 msgid "Within Track & Region Tools will cycle FORWARD the bend modes" msgstr "" "В пределах трека и региона инструмент будет циклически изменять режимы изгиба" -#: flatcamGUI/FlatCAMGUI.py:1872 +#: flatcamGUI/FlatCAMGUI.py:1988 msgid "Alternate: Delete Apertures" msgstr "Альтернатива: Удалить отверстия" -#: flatcamGUI/FlatCAMGUI.py:1873 +#: flatcamGUI/FlatCAMGUI.py:1989 msgid "Eraser Tool" msgstr "Ластик" -#: flatcamGUI/FlatCAMGUI.py:1874 flatcamGUI/PreferencesUI.py:2038 +#: flatcamGUI/FlatCAMGUI.py:1990 flatcamGUI/PreferencesUI.py:2039 msgid "Mark Area Tool" msgstr "Инструмент «Обозначить область»" -#: flatcamGUI/FlatCAMGUI.py:1874 +#: flatcamGUI/FlatCAMGUI.py:1990 msgid "Poligonize Tool" msgstr "Полигонизация" -#: flatcamGUI/FlatCAMGUI.py:1874 +#: flatcamGUI/FlatCAMGUI.py:1990 msgid "Transformation Tool" msgstr "Трансформация" -#: flatcamGUI/FlatCAMGUI.py:1890 +#: flatcamGUI/FlatCAMGUI.py:2007 msgid "Toggle Visibility" msgstr "Переключить видимость" -#: flatcamGUI/FlatCAMGUI.py:1894 +#: flatcamGUI/FlatCAMGUI.py:2013 msgid "New" msgstr "Создать" -#: flatcamGUI/FlatCAMGUI.py:1895 flatcamTools/ToolCalibration.py:634 +#: flatcamGUI/FlatCAMGUI.py:2015 flatcamTools/ToolCalibration.py:634 msgid "Geometry" msgstr "Geometry" -#: flatcamGUI/FlatCAMGUI.py:1897 flatcamTools/ToolCalibration.py:197 +#: flatcamGUI/FlatCAMGUI.py:2019 flatcamTools/ToolCalibration.py:197 #: flatcamTools/ToolCalibration.py:634 flatcamTools/ToolFilm.py:359 msgid "Excellon" msgstr "Excellon" -#: flatcamGUI/FlatCAMGUI.py:1902 +#: flatcamGUI/FlatCAMGUI.py:2026 msgid "Grids" msgstr "Сетка" -#: flatcamGUI/FlatCAMGUI.py:1906 +#: flatcamGUI/FlatCAMGUI.py:2033 msgid "Clear Plot" msgstr "Отключить все участки" -#: flatcamGUI/FlatCAMGUI.py:1907 +#: flatcamGUI/FlatCAMGUI.py:2035 msgid "Replot" msgstr "Перерисовать" -#: flatcamGUI/FlatCAMGUI.py:1910 +#: flatcamGUI/FlatCAMGUI.py:2039 msgid "Geo Editor" msgstr "Редактор Geo" -#: flatcamGUI/FlatCAMGUI.py:1911 +#: flatcamGUI/FlatCAMGUI.py:2041 msgid "Path" msgstr "Дорожка" -#: flatcamGUI/FlatCAMGUI.py:1912 +#: flatcamGUI/FlatCAMGUI.py:2043 msgid "Rectangle" msgstr "Прямоугольник" -#: flatcamGUI/FlatCAMGUI.py:1914 +#: flatcamGUI/FlatCAMGUI.py:2046 msgid "Circle" msgstr "Круг" -#: flatcamGUI/FlatCAMGUI.py:1915 +#: flatcamGUI/FlatCAMGUI.py:2048 msgid "Polygon" msgstr "Полигон" -#: flatcamGUI/FlatCAMGUI.py:1916 +#: flatcamGUI/FlatCAMGUI.py:2050 msgid "Arc" msgstr "Дуга" -#: flatcamGUI/FlatCAMGUI.py:1925 +#: flatcamGUI/FlatCAMGUI.py:2064 msgid "Union" msgstr "Объединение" -#: flatcamGUI/FlatCAMGUI.py:1926 +#: flatcamGUI/FlatCAMGUI.py:2066 msgid "Intersection" msgstr "Пересечение" -#: flatcamGUI/FlatCAMGUI.py:1927 +#: flatcamGUI/FlatCAMGUI.py:2068 msgid "Subtraction" msgstr "Вычитание" -#: flatcamGUI/FlatCAMGUI.py:1928 flatcamGUI/ObjectUI.py:1761 -#: flatcamGUI/PreferencesUI.py:3643 +#: flatcamGUI/FlatCAMGUI.py:2070 flatcamGUI/ObjectUI.py:1813 +#: flatcamGUI/PreferencesUI.py:3644 msgid "Cut" msgstr "Вырезы" -#: flatcamGUI/FlatCAMGUI.py:1935 +#: flatcamGUI/FlatCAMGUI.py:2081 msgid "Pad" msgstr "Площадка" -#: flatcamGUI/FlatCAMGUI.py:1936 +#: flatcamGUI/FlatCAMGUI.py:2083 msgid "Pad Array" msgstr "Массив площадок" -#: flatcamGUI/FlatCAMGUI.py:1939 +#: flatcamGUI/FlatCAMGUI.py:2087 msgid "Track" msgstr "Трек" -#: flatcamGUI/FlatCAMGUI.py:1940 +#: flatcamGUI/FlatCAMGUI.py:2089 msgid "Region" msgstr "Регион" -#: flatcamGUI/FlatCAMGUI.py:1956 +#: flatcamGUI/FlatCAMGUI.py:2112 msgid "Exc Editor" msgstr "Редактор Excellon" -#: flatcamGUI/FlatCAMGUI.py:1986 +#: flatcamGUI/FlatCAMGUI.py:2153 msgid "" "Relative neasurement.\n" "Reference is last click position" @@ -6820,7 +6820,7 @@ msgstr "" "Относительное измерение.\n" "Ссылка-это позиция последнего клика" -#: flatcamGUI/FlatCAMGUI.py:1992 +#: flatcamGUI/FlatCAMGUI.py:2159 msgid "" "Absolute neasurement.\n" "Reference is (X=0, Y= 0) position" @@ -6828,27 +6828,27 @@ msgstr "" "Абсолютное измерение.\n" "Ссылка (X=0, Y= 0) Положение" -#: flatcamGUI/FlatCAMGUI.py:2099 +#: flatcamGUI/FlatCAMGUI.py:2266 msgid "Lock Toolbars" msgstr "Заблокировать панели" -#: flatcamGUI/FlatCAMGUI.py:2192 +#: flatcamGUI/FlatCAMGUI.py:2384 msgid "&Cutout Tool" msgstr "&Обрезка платы" -#: flatcamGUI/FlatCAMGUI.py:2234 +#: flatcamGUI/FlatCAMGUI.py:2443 msgid "Select 'Esc'" msgstr "Выбор 'Esc'" -#: flatcamGUI/FlatCAMGUI.py:2261 +#: flatcamGUI/FlatCAMGUI.py:2481 msgid "Copy Objects" msgstr "Копировать объекты" -#: flatcamGUI/FlatCAMGUI.py:2268 +#: flatcamGUI/FlatCAMGUI.py:2489 msgid "Move Objects" msgstr "Переместить объект" -#: flatcamGUI/FlatCAMGUI.py:2813 +#: flatcamGUI/FlatCAMGUI.py:3048 msgid "" "Please first select a geometry item to be cutted\n" "then select the geometry item that will be cutted\n" @@ -6860,12 +6860,12 @@ msgstr "" "из первого пункта. В конце нажмите клавишу ~X~ или\n" "кнопка панели инструментов." -#: flatcamGUI/FlatCAMGUI.py:2820 flatcamGUI/FlatCAMGUI.py:2964 -#: flatcamGUI/FlatCAMGUI.py:3023 flatcamGUI/FlatCAMGUI.py:3043 +#: flatcamGUI/FlatCAMGUI.py:3055 flatcamGUI/FlatCAMGUI.py:3199 +#: flatcamGUI/FlatCAMGUI.py:3258 flatcamGUI/FlatCAMGUI.py:3278 msgid "Warning" msgstr "Внимание" -#: flatcamGUI/FlatCAMGUI.py:2959 +#: flatcamGUI/FlatCAMGUI.py:3194 msgid "" "Please select geometry items \n" "on which to perform Intersection Tool." @@ -6873,7 +6873,7 @@ msgstr "" "Пожалуйста, выберите элементы геометрии \n" "на котором выполняется инструмент пересечение." -#: flatcamGUI/FlatCAMGUI.py:3018 +#: flatcamGUI/FlatCAMGUI.py:3253 msgid "" "Please select geometry items \n" "on which to perform Substraction Tool." @@ -6881,7 +6881,7 @@ msgstr "" "Пожалуйста, выберите элементы геометрии \n" "на котором выполнить вычитание инструмента." -#: flatcamGUI/FlatCAMGUI.py:3038 +#: flatcamGUI/FlatCAMGUI.py:3273 msgid "" "Please select geometry items \n" "on which to perform union." @@ -6889,52 +6889,52 @@ msgstr "" "Пожалуйста, выберите элементы геометрии \n" "на котором выполнять объединение." -#: flatcamGUI/FlatCAMGUI.py:3122 flatcamGUI/FlatCAMGUI.py:3340 +#: flatcamGUI/FlatCAMGUI.py:3357 flatcamGUI/FlatCAMGUI.py:3575 msgid "Cancelled. Nothing selected to delete." msgstr "Отмена. Ничего не выбрано для удаления." -#: flatcamGUI/FlatCAMGUI.py:3207 flatcamGUI/FlatCAMGUI.py:3408 +#: flatcamGUI/FlatCAMGUI.py:3442 flatcamGUI/FlatCAMGUI.py:3643 msgid "Cancelled. Nothing selected to copy." msgstr "Отмена. Ничего не выбрано для копирования." -#: flatcamGUI/FlatCAMGUI.py:3254 flatcamGUI/FlatCAMGUI.py:3455 +#: flatcamGUI/FlatCAMGUI.py:3489 flatcamGUI/FlatCAMGUI.py:3690 msgid "Cancelled. Nothing selected to move." msgstr "Отмена. Ничего не выбрано для перемещения." -#: flatcamGUI/FlatCAMGUI.py:3481 +#: flatcamGUI/FlatCAMGUI.py:3716 msgid "New Tool ..." msgstr "Новый инструмент ..." -#: flatcamGUI/FlatCAMGUI.py:3482 flatcamTools/ToolNonCopperClear.py:588 -#: flatcamTools/ToolPaint.py:499 flatcamTools/ToolSolderPaste.py:554 +#: flatcamGUI/FlatCAMGUI.py:3717 flatcamTools/ToolNonCopperClear.py:589 +#: flatcamTools/ToolPaint.py:500 flatcamTools/ToolSolderPaste.py:554 msgid "Enter a Tool Diameter" msgstr "Введите диаметр инструмента" -#: flatcamGUI/FlatCAMGUI.py:3494 +#: flatcamGUI/FlatCAMGUI.py:3729 msgid "Adding Tool cancelled ..." msgstr "Добавление инструмента отменено ..." -#: flatcamGUI/FlatCAMGUI.py:3537 +#: flatcamGUI/FlatCAMGUI.py:3772 msgid "Distance Tool exit..." msgstr "Измеритель закрыт ..." -#: flatcamGUI/FlatCAMGUI.py:3747 flatcamGUI/FlatCAMGUI.py:3754 +#: flatcamGUI/FlatCAMGUI.py:3982 flatcamGUI/FlatCAMGUI.py:3989 msgid "Idle." msgstr "Нет заданий." -#: flatcamGUI/FlatCAMGUI.py:3783 +#: flatcamGUI/FlatCAMGUI.py:4020 msgid "Application started ..." msgstr "Приложение запущено ..." -#: flatcamGUI/FlatCAMGUI.py:3784 +#: flatcamGUI/FlatCAMGUI.py:4021 msgid "Hello!" msgstr "Приветствую!" -#: flatcamGUI/FlatCAMGUI.py:3840 +#: flatcamGUI/FlatCAMGUI.py:4079 msgid "Open Project ..." msgstr "Открыть проект..." -#: flatcamGUI/FlatCAMGUI.py:3865 +#: flatcamGUI/FlatCAMGUI.py:4105 msgid "Exit" msgstr "Выход" @@ -6942,7 +6942,7 @@ msgstr "Выход" msgid "FlatCAM Object" msgstr "Объект FlatCAM" -#: flatcamGUI/ObjectUI.py:66 +#: flatcamGUI/ObjectUI.py:77 msgid "" "BASIC is suitable for a beginner. Many parameters\n" "are hidden from the user in this mode.\n" @@ -6960,15 +6960,15 @@ msgstr "" "Изменить - > настройки -> Общие и проверить:\n" "- Приложение. Уровень ' переключатель." -#: flatcamGUI/ObjectUI.py:94 +#: flatcamGUI/ObjectUI.py:105 msgid "Change the size of the object." msgstr "Изменение размера объекта." -#: flatcamGUI/ObjectUI.py:100 +#: flatcamGUI/ObjectUI.py:111 msgid "Factor" msgstr "Коэффициент" -#: flatcamGUI/ObjectUI.py:102 +#: flatcamGUI/ObjectUI.py:113 msgid "" "Factor by which to multiply\n" "geometric features of this object.\n" @@ -6978,19 +6978,19 @@ msgstr "" "масштаба объекта.\n" "Выражения разрешены. Например: 1 / 25.4" -#: flatcamGUI/ObjectUI.py:112 +#: flatcamGUI/ObjectUI.py:123 msgid "Perform scaling operation." msgstr "Будет выполнена операция масштабирования." -#: flatcamGUI/ObjectUI.py:123 +#: flatcamGUI/ObjectUI.py:134 msgid "Change the position of this object." msgstr "Смена положения этого объекта." -#: flatcamGUI/ObjectUI.py:128 +#: flatcamGUI/ObjectUI.py:139 msgid "Vector" msgstr "Вектор" -#: flatcamGUI/ObjectUI.py:130 +#: flatcamGUI/ObjectUI.py:141 msgid "" "Amount by which to move the object\n" "in the x and y axes in (x, y) format.\n" @@ -7000,60 +7000,60 @@ msgstr "" "по осям X и Y в формате (x, y).\n" "Выражения разрешены. Например: (1/3.2, 0.5*3)" -#: flatcamGUI/ObjectUI.py:139 +#: flatcamGUI/ObjectUI.py:150 msgid "Perform the offset operation." msgstr "Будет произведено смещение на заданное расстояние." -#: flatcamGUI/ObjectUI.py:156 +#: flatcamGUI/ObjectUI.py:167 msgid "Gerber Object" msgstr "Объект Gerber" -#: 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 +#: flatcamGUI/ObjectUI.py:182 flatcamGUI/ObjectUI.py:767 +#: flatcamGUI/ObjectUI.py:1205 flatcamGUI/ObjectUI.py:1907 +#: flatcamGUI/PreferencesUI.py:1361 flatcamGUI/PreferencesUI.py:3119 +#: flatcamGUI/PreferencesUI.py:3629 msgid "Plot (show) this object." msgstr "Начертить (отобразить) этот объект." -#: flatcamGUI/ObjectUI.py:173 flatcamGUI/ObjectUI.py:741 -#: flatcamGUI/PreferencesUI.py:1358 flatcamGUI/PreferencesUI.py:2084 -#: flatcamGUI/PreferencesUI.py:3116 +#: flatcamGUI/ObjectUI.py:184 flatcamGUI/ObjectUI.py:765 +#: flatcamGUI/PreferencesUI.py:1359 flatcamGUI/PreferencesUI.py:2085 +#: flatcamGUI/PreferencesUI.py:3117 msgid "Plot" msgstr "Отображать" -#: 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 +#: flatcamGUI/ObjectUI.py:189 flatcamGUI/ObjectUI.py:726 +#: flatcamGUI/ObjectUI.py:1159 flatcamGUI/ObjectUI.py:1797 +#: flatcamGUI/PreferencesUI.py:1338 flatcamGUI/PreferencesUI.py:2079 +#: flatcamGUI/PreferencesUI.py:3113 flatcamGUI/PreferencesUI.py:3618 msgid "Plot Options" msgstr "Отрисовка" -#: flatcamGUI/ObjectUI.py:184 flatcamGUI/ObjectUI.py:703 -#: flatcamGUI/PreferencesUI.py:1344 flatcamGUI/PreferencesUI.py:2090 -#: flatcamGUI/PreferencesUI.py:6153 flatcamTools/ToolCopperThieving.py:190 +#: flatcamGUI/ObjectUI.py:195 flatcamGUI/ObjectUI.py:727 +#: flatcamGUI/PreferencesUI.py:1345 flatcamGUI/PreferencesUI.py:2091 +#: flatcamGUI/PreferencesUI.py:6154 flatcamTools/ToolCopperThieving.py:190 msgid "Solid" msgstr "Сплошной" -#: flatcamGUI/ObjectUI.py:186 flatcamGUI/PreferencesUI.py:1346 +#: flatcamGUI/ObjectUI.py:197 flatcamGUI/PreferencesUI.py:1347 msgid "Solid color polygons." msgstr "Сплошной цвет полигонов." -#: flatcamGUI/ObjectUI.py:192 +#: flatcamGUI/ObjectUI.py:203 msgid "Multi-Color" msgstr "многоцветный" -#: flatcamGUI/ObjectUI.py:194 flatcamGUI/PreferencesUI.py:1353 +#: flatcamGUI/ObjectUI.py:205 flatcamGUI/PreferencesUI.py:1354 msgid "Draw polygons in different colors." msgstr "Окрашивать полигоны разными цветами." -#: flatcamGUI/ObjectUI.py:202 flatcamGUI/ObjectUI.py:714 -#: flatcamGUI/ObjectUI.py:1126 flatcamGUI/ObjectUI.py:1775 -#: flatcamGUI/ObjectUI.py:2067 flatcamGUI/ObjectUI.py:2122 +#: flatcamGUI/ObjectUI.py:213 flatcamGUI/ObjectUI.py:738 +#: flatcamGUI/ObjectUI.py:1165 flatcamGUI/ObjectUI.py:1827 +#: flatcamGUI/ObjectUI.py:2130 flatcamGUI/ObjectUI.py:2196 #: flatcamTools/ToolCalibration.py:235 flatcamTools/ToolFiducials.py:73 msgid "Name" msgstr "Имя" -#: flatcamGUI/ObjectUI.py:223 +#: flatcamGUI/ObjectUI.py:234 msgid "" "Toggle the display of the Gerber Apertures Table.\n" "When unchecked, it will delete all mark shapes\n" @@ -7063,11 +7063,11 @@ msgstr "" "Когда флажок снят, он удалит все отмеченные фигуры\n" "которые отображены на холсте." -#: flatcamGUI/ObjectUI.py:233 +#: flatcamGUI/ObjectUI.py:244 msgid "Mark All" msgstr "Отметить все" -#: flatcamGUI/ObjectUI.py:235 +#: flatcamGUI/ObjectUI.py:246 msgid "" "When checked it will display all the apertures.\n" "When unchecked, it will delete all mark shapes\n" @@ -7077,15 +7077,15 @@ msgstr "" "Когда флажок снят, он удалит все отмеченные фигуры\n" "которые нарисованы на холсте." -#: flatcamGUI/ObjectUI.py:263 +#: flatcamGUI/ObjectUI.py:274 msgid "Mark the aperture instances on canvas." msgstr "Отметьте экземпляры диафрагмы на холсте." -#: flatcamGUI/ObjectUI.py:275 flatcamGUI/PreferencesUI.py:1438 +#: flatcamGUI/ObjectUI.py:286 flatcamGUI/PreferencesUI.py:1439 msgid "Isolation Routing" msgstr "Изоляция разводки" -#: flatcamGUI/ObjectUI.py:277 flatcamGUI/PreferencesUI.py:1440 +#: flatcamGUI/ObjectUI.py:288 flatcamGUI/PreferencesUI.py:1441 msgid "" "Create a Geometry object with\n" "toolpaths to cut outside polygons." @@ -7094,7 +7094,7 @@ msgstr "" "с траекториям обрезки за\n" "пределами полигонов." -#: flatcamGUI/ObjectUI.py:295 flatcamGUI/PreferencesUI.py:1628 +#: flatcamGUI/ObjectUI.py:306 flatcamGUI/PreferencesUI.py:1629 msgid "" "Choose what tool to use for Gerber isolation:\n" "'Circular' or 'V-shape'.\n" @@ -7106,30 +7106,30 @@ msgstr "" "Когда выбрана \"V-образная форма\", то диаметр инструмента\n" "будет зависеть от выбранной глубины резания." -#: flatcamGUI/ObjectUI.py:301 +#: flatcamGUI/ObjectUI.py:312 msgid "V-Shape" msgstr "V-образная форма" -#: flatcamGUI/ObjectUI.py:307 flatcamGUI/ObjectUI.py:1335 -#: flatcamGUI/PreferencesUI.py:1640 flatcamGUI/PreferencesUI.py:4010 +#: flatcamGUI/ObjectUI.py:318 flatcamGUI/ObjectUI.py:1374 +#: flatcamGUI/PreferencesUI.py:1641 flatcamGUI/PreferencesUI.py:4011 #: flatcamTools/ToolNonCopperClear.py:231 msgid "V-Tip Dia" msgstr "Диаметр V-наконечника" -#: flatcamGUI/ObjectUI.py:309 flatcamGUI/ObjectUI.py:1338 -#: flatcamGUI/PreferencesUI.py:1642 flatcamGUI/PreferencesUI.py:4012 +#: flatcamGUI/ObjectUI.py:320 flatcamGUI/ObjectUI.py:1377 +#: flatcamGUI/PreferencesUI.py:1643 flatcamGUI/PreferencesUI.py:4013 #: flatcamTools/ToolNonCopperClear.py:233 msgid "The tip diameter for V-Shape Tool" msgstr "Диаметр наконечника для V-образного инструмента" -#: flatcamGUI/ObjectUI.py:320 flatcamGUI/ObjectUI.py:1350 -#: flatcamGUI/PreferencesUI.py:1653 flatcamGUI/PreferencesUI.py:4022 +#: flatcamGUI/ObjectUI.py:331 flatcamGUI/ObjectUI.py:1389 +#: flatcamGUI/PreferencesUI.py:1654 flatcamGUI/PreferencesUI.py:4023 #: flatcamTools/ToolNonCopperClear.py:242 msgid "V-Tip Angle" msgstr "Угол V-наконечника" -#: flatcamGUI/ObjectUI.py:322 flatcamGUI/ObjectUI.py:1353 -#: flatcamGUI/PreferencesUI.py:1655 flatcamGUI/PreferencesUI.py:4024 +#: flatcamGUI/ObjectUI.py:333 flatcamGUI/ObjectUI.py:1392 +#: flatcamGUI/PreferencesUI.py:1656 flatcamGUI/PreferencesUI.py:4025 #: flatcamTools/ToolNonCopperClear.py:244 msgid "" "The tip angle for V-Shape Tool.\n" @@ -7138,9 +7138,9 @@ msgstr "" "Угол наклона наконечника для V-образного инструмента.\n" "В степенях." -#: flatcamGUI/ObjectUI.py:336 flatcamGUI/ObjectUI.py:1369 -#: flatcamGUI/PreferencesUI.py:1668 flatcamGUI/PreferencesUI.py:3181 -#: flatcamGUI/PreferencesUI.py:4293 flatcamTools/ToolCutOut.py:135 +#: flatcamGUI/ObjectUI.py:347 flatcamGUI/ObjectUI.py:1408 +#: flatcamGUI/PreferencesUI.py:1669 flatcamGUI/PreferencesUI.py:3182 +#: flatcamGUI/PreferencesUI.py:4294 flatcamTools/ToolCutOut.py:135 msgid "" "Cutting depth (negative)\n" "below the copper surface." @@ -7148,7 +7148,7 @@ msgstr "" "Глубина резания (отрицательная)\n" "ниже слоя меди." -#: flatcamGUI/ObjectUI.py:350 +#: flatcamGUI/ObjectUI.py:361 msgid "" "Diameter of the cutting tool.\n" "If you want to have an isolation path\n" @@ -7162,11 +7162,11 @@ msgstr "" "функцию, используйте отрицательное значение для\n" "этот параметр." -#: flatcamGUI/ObjectUI.py:366 flatcamGUI/PreferencesUI.py:1462 +#: flatcamGUI/ObjectUI.py:377 flatcamGUI/PreferencesUI.py:1463 msgid "# Passes" msgstr "# Проходы" -#: flatcamGUI/ObjectUI.py:368 flatcamGUI/PreferencesUI.py:1464 +#: flatcamGUI/ObjectUI.py:379 flatcamGUI/PreferencesUI.py:1465 msgid "" "Width of the isolation gap in\n" "number (integer) of tool widths." @@ -7174,24 +7174,24 @@ msgstr "" "Ширина промежутка изоляции в \n" "числах (целое число) ширины инструмента." -#: flatcamGUI/ObjectUI.py:378 flatcamGUI/PreferencesUI.py:1474 +#: flatcamGUI/ObjectUI.py:389 flatcamGUI/PreferencesUI.py:1475 msgid "Pass overlap" msgstr "Перекрытие" -#: flatcamGUI/ObjectUI.py:380 flatcamGUI/PreferencesUI.py:1476 +#: flatcamGUI/ObjectUI.py:391 flatcamGUI/PreferencesUI.py:1477 msgid "How much (fraction) of the tool width to overlap each tool pass." msgstr "" "Размер части ширины инструмента, который будет перекрываться за каждый " "проход." -#: flatcamGUI/ObjectUI.py:392 flatcamGUI/PreferencesUI.py:1501 -#: flatcamGUI/PreferencesUI.py:3594 flatcamGUI/PreferencesUI.py:4067 +#: flatcamGUI/ObjectUI.py:403 flatcamGUI/PreferencesUI.py:1502 +#: flatcamGUI/PreferencesUI.py:3595 flatcamGUI/PreferencesUI.py:4068 #: flatcamTools/ToolNonCopperClear.py:162 msgid "Milling Type" msgstr "Тип фрезерования" -#: flatcamGUI/ObjectUI.py:394 flatcamGUI/PreferencesUI.py:1503 -#: flatcamGUI/PreferencesUI.py:3596 +#: flatcamGUI/ObjectUI.py:405 flatcamGUI/PreferencesUI.py:1504 +#: flatcamGUI/PreferencesUI.py:3597 msgid "" "Milling type:\n" "- climb / best for precision milling and to reduce tool usage\n" @@ -7202,29 +7202,29 @@ msgstr "" "использования инструмента\n" "- conventional / полезен, когда нет компенсации люфта" -#: flatcamGUI/ObjectUI.py:398 flatcamGUI/PreferencesUI.py:1508 -#: flatcamGUI/PreferencesUI.py:3600 flatcamGUI/PreferencesUI.py:4074 +#: flatcamGUI/ObjectUI.py:409 flatcamGUI/PreferencesUI.py:1509 +#: flatcamGUI/PreferencesUI.py:3601 flatcamGUI/PreferencesUI.py:4075 #: flatcamTools/ToolNonCopperClear.py:169 msgid "Climb" msgstr "Постепенный" -#: flatcamGUI/ObjectUI.py:399 +#: flatcamGUI/ObjectUI.py:410 msgid "Conventional" msgstr "Обычный" -#: flatcamGUI/ObjectUI.py:404 +#: flatcamGUI/ObjectUI.py:415 msgid "Combine" msgstr "Комбинировать" -#: flatcamGUI/ObjectUI.py:406 flatcamGUI/PreferencesUI.py:1515 +#: flatcamGUI/ObjectUI.py:417 flatcamGUI/PreferencesUI.py:1516 msgid "Combine all passes into one object" msgstr "Объединить все проходы в один объект" -#: flatcamGUI/ObjectUI.py:410 flatcamGUI/PreferencesUI.py:1607 +#: flatcamGUI/ObjectUI.py:421 flatcamGUI/PreferencesUI.py:1608 msgid "\"Follow\"" msgstr "\"Следовать\"" -#: flatcamGUI/ObjectUI.py:411 flatcamGUI/PreferencesUI.py:1609 +#: flatcamGUI/ObjectUI.py:422 flatcamGUI/PreferencesUI.py:1610 msgid "" "Generate a 'Follow' geometry.\n" "This means that it will cut through\n" @@ -7234,11 +7234,11 @@ msgstr "" "Это означает, что он будет прорезать\n" "середину трассы." -#: flatcamGUI/ObjectUI.py:417 +#: flatcamGUI/ObjectUI.py:428 msgid "Except" msgstr "Исключение" -#: flatcamGUI/ObjectUI.py:420 +#: flatcamGUI/ObjectUI.py:431 msgid "" "When the isolation geometry is generated,\n" "by checking this, the area of the object bellow\n" @@ -7248,12 +7248,12 @@ msgstr "" "включив это, площадь объекта ниже\n" "будет вычтена из геометрии изоляции." -#: flatcamGUI/ObjectUI.py:442 flatcamTools/ToolNonCopperClear.py:82 +#: flatcamGUI/ObjectUI.py:453 flatcamTools/ToolNonCopperClear.py:82 #: flatcamTools/ToolPaint.py:85 msgid "Obj Type" msgstr "Тип объекта" -#: flatcamGUI/ObjectUI.py:444 +#: flatcamGUI/ObjectUI.py:455 msgid "" "Specify the type of object to be excepted from isolation.\n" "It can be of type: Gerber or Geometry.\n" @@ -7265,22 +7265,22 @@ msgstr "" "То, что выбрано здесь будет диктовать вид\n" "объектов, которые будут заполнять поле со списком \"объект\"." -#: flatcamGUI/ObjectUI.py:457 flatcamGUI/PreferencesUI.py:6453 +#: flatcamGUI/ObjectUI.py:468 flatcamGUI/PreferencesUI.py:6454 #: flatcamTools/ToolCalibration.py:186 flatcamTools/ToolNonCopperClear.py:100 #: flatcamTools/ToolPaint.py:103 flatcamTools/ToolPanelize.py:81 #: flatcamTools/ToolPanelize.py:94 msgid "Object" msgstr "Объект" -#: flatcamGUI/ObjectUI.py:458 +#: flatcamGUI/ObjectUI.py:469 msgid "Object whose area will be removed from isolation geometry." msgstr "Объект, площадь которого будет удалена из геометрии изоляции." -#: flatcamGUI/ObjectUI.py:465 flatcamGUI/PreferencesUI.py:1488 +#: flatcamGUI/ObjectUI.py:476 flatcamGUI/PreferencesUI.py:1489 msgid "Scope" msgstr "Масштаб" -#: flatcamGUI/ObjectUI.py:467 flatcamGUI/PreferencesUI.py:1490 +#: flatcamGUI/ObjectUI.py:478 flatcamGUI/PreferencesUI.py:1491 msgid "" "Isolation scope. Choose what to isolate:\n" "- 'All' -> Isolate all the polygons in the object\n" @@ -7290,16 +7290,16 @@ msgstr "" "- 'Все' -> Изолировать все полигоны в объекте.\n" "- 'Выделенные' -> Изолировать выделенные полигоны." -#: flatcamGUI/ObjectUI.py:472 flatcamGUI/PreferencesUI.py:1495 -#: flatcamGUI/PreferencesUI.py:4603 flatcamTools/ToolPaint.py:300 +#: flatcamGUI/ObjectUI.py:483 flatcamGUI/PreferencesUI.py:1496 +#: flatcamGUI/PreferencesUI.py:4604 flatcamTools/ToolPaint.py:300 msgid "Selection" msgstr "Выбор" -#: flatcamGUI/ObjectUI.py:480 flatcamGUI/PreferencesUI.py:1681 +#: flatcamGUI/ObjectUI.py:491 flatcamGUI/PreferencesUI.py:1682 msgid "Isolation Type" msgstr "Тип изоляции" -#: flatcamGUI/ObjectUI.py:482 flatcamGUI/PreferencesUI.py:1683 +#: flatcamGUI/ObjectUI.py:493 flatcamGUI/PreferencesUI.py:1684 msgid "" "Choose how the isolation will be executed:\n" "- 'Full' -> complete isolation of polygons\n" @@ -7319,24 +7319,24 @@ msgstr "" "изоляция может быть выполнена только при наличии проема.\n" "внутри полигона (например, полигон имеет форму \"пончика\")." -#: flatcamGUI/ObjectUI.py:491 flatcamGUI/PreferencesUI.py:1692 -#: flatcamGUI/PreferencesUI.py:1708 +#: flatcamGUI/ObjectUI.py:502 flatcamGUI/PreferencesUI.py:1693 +#: flatcamGUI/PreferencesUI.py:1709 msgid "Full" msgstr "Полная" -#: flatcamGUI/ObjectUI.py:492 +#: flatcamGUI/ObjectUI.py:503 msgid "Ext" msgstr "Наруж" -#: flatcamGUI/ObjectUI.py:493 +#: flatcamGUI/ObjectUI.py:504 msgid "Int" msgstr "Внутр" -#: flatcamGUI/ObjectUI.py:498 +#: flatcamGUI/ObjectUI.py:509 msgid "Generate Isolation Geometry" msgstr "Создать геометрию изоляции" -#: flatcamGUI/ObjectUI.py:506 +#: flatcamGUI/ObjectUI.py:517 msgid "" "Create a Geometry object with toolpaths to cut \n" "isolation outside, inside or on both sides of the\n" @@ -7358,11 +7358,11 @@ msgstr "" "внутри фактической функции Gerber используйте отрицательный инструмент\n" "диаметр выше." -#: flatcamGUI/ObjectUI.py:518 +#: flatcamGUI/ObjectUI.py:529 msgid "Buffer Solid Geometry" msgstr "Буферизация solid геометрии" -#: flatcamGUI/ObjectUI.py:520 +#: flatcamGUI/ObjectUI.py:531 msgid "" "This button is shown only when the Gerber file\n" "is loaded without buffering.\n" @@ -7374,11 +7374,11 @@ msgstr "" "Включив это, вы создадите буферную геометрию\n" "требуемую для изоляции." -#: flatcamGUI/ObjectUI.py:548 +#: flatcamGUI/ObjectUI.py:559 msgid "Clear N-copper" msgstr "Очистка меди" -#: flatcamGUI/ObjectUI.py:550 flatcamGUI/PreferencesUI.py:3974 +#: flatcamGUI/ObjectUI.py:561 flatcamGUI/PreferencesUI.py:3975 msgid "" "Create a Geometry object with\n" "toolpaths to cut all non-copper regions." @@ -7386,7 +7386,7 @@ msgstr "" "Создание объекта геометрии с помощью\n" "траектории резания для всех областей, отличных от меди." -#: flatcamGUI/ObjectUI.py:557 flatcamGUI/ObjectUI.py:1714 +#: flatcamGUI/ObjectUI.py:568 flatcamGUI/ObjectUI.py:1753 #: flatcamTools/ToolNonCopperClear.py:479 msgid "" "Create the Geometry Object\n" @@ -7395,11 +7395,11 @@ msgstr "" "Создаёт объект геометрии\n" "для безмедного полигона." -#: flatcamGUI/ObjectUI.py:570 +#: flatcamGUI/ObjectUI.py:581 msgid "Board cutout" msgstr "Обрезка контура платы" -#: flatcamGUI/ObjectUI.py:572 flatcamGUI/PreferencesUI.py:4266 +#: flatcamGUI/ObjectUI.py:583 flatcamGUI/PreferencesUI.py:4267 msgid "" "Create toolpaths to cut around\n" "the PCB and separate it from\n" @@ -7408,7 +7408,7 @@ msgstr "" "Создание траектории обрезки печатной платы и отделения её от\n" "заготовки." -#: flatcamGUI/ObjectUI.py:579 +#: flatcamGUI/ObjectUI.py:590 msgid "" "Generate the geometry for\n" "the board cutout." @@ -7416,11 +7416,11 @@ msgstr "" "Будет создан объект геометрии\n" "для обрезки контура." -#: flatcamGUI/ObjectUI.py:597 flatcamGUI/PreferencesUI.py:1520 +#: flatcamGUI/ObjectUI.py:608 flatcamGUI/PreferencesUI.py:1521 msgid "Non-copper regions" msgstr "Безмедные полигоны" -#: flatcamGUI/ObjectUI.py:599 flatcamGUI/PreferencesUI.py:1522 +#: flatcamGUI/ObjectUI.py:610 flatcamGUI/PreferencesUI.py:1523 msgid "" "Create polygons covering the\n" "areas without copper on the PCB.\n" @@ -7434,12 +7434,12 @@ msgstr "" "объекта может использоваться для удаления всей\n" "меди из указанного региона." -#: flatcamGUI/ObjectUI.py:609 flatcamGUI/ObjectUI.py:650 -#: flatcamGUI/PreferencesUI.py:1534 flatcamGUI/PreferencesUI.py:1562 +#: flatcamGUI/ObjectUI.py:620 flatcamGUI/ObjectUI.py:661 +#: flatcamGUI/PreferencesUI.py:1535 flatcamGUI/PreferencesUI.py:1563 msgid "Boundary Margin" msgstr "Отступ от границы" -#: flatcamGUI/ObjectUI.py:611 flatcamGUI/PreferencesUI.py:1536 +#: flatcamGUI/ObjectUI.py:622 flatcamGUI/PreferencesUI.py:1537 msgid "" "Specify the edge of the PCB\n" "by drawing a box around all\n" @@ -7451,27 +7451,27 @@ msgstr "" "объектов с этим минимальным\n" "расстоянием." -#: flatcamGUI/ObjectUI.py:626 flatcamGUI/ObjectUI.py:664 -#: flatcamGUI/PreferencesUI.py:1549 flatcamGUI/PreferencesUI.py:1575 +#: flatcamGUI/ObjectUI.py:637 flatcamGUI/ObjectUI.py:675 +#: flatcamGUI/PreferencesUI.py:1550 flatcamGUI/PreferencesUI.py:1576 msgid "Rounded Geo" msgstr "Закруглять" -#: flatcamGUI/ObjectUI.py:628 flatcamGUI/PreferencesUI.py:1551 +#: flatcamGUI/ObjectUI.py:639 flatcamGUI/PreferencesUI.py:1552 msgid "Resulting geometry will have rounded corners." msgstr "Полученная геометрия будет иметь закругленные углы." -#: flatcamGUI/ObjectUI.py:632 flatcamGUI/ObjectUI.py:673 +#: flatcamGUI/ObjectUI.py:643 flatcamGUI/ObjectUI.py:684 #: flatcamTools/ToolSolderPaste.py:133 msgid "Generate Geo" msgstr "Создать" -#: flatcamGUI/ObjectUI.py:642 flatcamGUI/PreferencesUI.py:1556 -#: flatcamGUI/PreferencesUI.py:5983 flatcamTools/ToolPanelize.py:95 +#: flatcamGUI/ObjectUI.py:653 flatcamGUI/PreferencesUI.py:1557 +#: flatcamGUI/PreferencesUI.py:5984 flatcamTools/ToolPanelize.py:95 #: flatcamTools/ToolQRCode.py:192 msgid "Bounding Box" msgstr "Ограничительная рамка" -#: flatcamGUI/ObjectUI.py:644 +#: flatcamGUI/ObjectUI.py:655 msgid "" "Create a geometry surrounding the Gerber object.\n" "Square shape." @@ -7479,7 +7479,7 @@ msgstr "" "Создаст геометрию, окружающую объект Gerber.\n" "Квадратная форма." -#: flatcamGUI/ObjectUI.py:652 flatcamGUI/PreferencesUI.py:1564 +#: flatcamGUI/ObjectUI.py:663 flatcamGUI/PreferencesUI.py:1565 msgid "" "Distance of the edges of the box\n" "to the nearest polygon." @@ -7487,7 +7487,7 @@ msgstr "" "Расстояние от края поля\n" "до ближайшего полигона." -#: flatcamGUI/ObjectUI.py:666 flatcamGUI/PreferencesUI.py:1577 +#: flatcamGUI/ObjectUI.py:677 flatcamGUI/PreferencesUI.py:1578 msgid "" "If the bounding box is \n" "to have rounded corners\n" @@ -7499,33 +7499,33 @@ msgstr "" "их радиус будет равен\n" "отступу." -#: flatcamGUI/ObjectUI.py:675 +#: flatcamGUI/ObjectUI.py:686 msgid "Generate the Geometry object." msgstr "Будет создан объект геометрии." -#: flatcamGUI/ObjectUI.py:691 +#: flatcamGUI/ObjectUI.py:715 msgid "Excellon Object" msgstr "Объект Excellon" -#: flatcamGUI/ObjectUI.py:705 +#: flatcamGUI/ObjectUI.py:729 msgid "Solid circles." msgstr "Сплошные круги." -#: flatcamGUI/ObjectUI.py:753 flatcamGUI/ObjectUI.py:1876 +#: flatcamGUI/ObjectUI.py:777 flatcamGUI/ObjectUI.py:1928 #: flatcamTools/ToolProperties.py:161 msgid "Drills" msgstr "Отверстия" -#: flatcamGUI/ObjectUI.py:753 flatcamGUI/ObjectUI.py:1876 -#: flatcamGUI/PreferencesUI.py:2952 flatcamTools/ToolProperties.py:162 +#: flatcamGUI/ObjectUI.py:777 flatcamGUI/ObjectUI.py:1928 +#: flatcamGUI/PreferencesUI.py:2953 flatcamTools/ToolProperties.py:162 msgid "Slots" msgstr "Пазы" -#: flatcamGUI/ObjectUI.py:754 flatcamGUI/PreferencesUI.py:2555 +#: flatcamGUI/ObjectUI.py:778 flatcamGUI/PreferencesUI.py:2556 msgid "Offset Z" msgstr "Смещение Z" -#: flatcamGUI/ObjectUI.py:758 +#: flatcamGUI/ObjectUI.py:782 msgid "" "This is the Tool Number.\n" "When ToolChange is checked, on toolchange event this value\n" @@ -7540,7 +7540,7 @@ msgstr "" "\n" "Здесь выбираются инструменты для генерации G-кода." -#: flatcamGUI/ObjectUI.py:763 flatcamGUI/ObjectUI.py:1191 +#: flatcamGUI/ObjectUI.py:787 flatcamGUI/ObjectUI.py:1230 #: flatcamTools/ToolPaint.py:137 msgid "" "Tool Diameter. It's value (in current FlatCAM units) \n" @@ -7549,7 +7549,7 @@ msgstr "" "Диаметр инструмента. Это значение (в текущих единицах FlatCAM) \n" "ширины разреза в материале." -#: flatcamGUI/ObjectUI.py:766 +#: flatcamGUI/ObjectUI.py:790 msgid "" "The number of Drill holes. Holes that are drilled with\n" "a drill bit." @@ -7557,7 +7557,7 @@ msgstr "" "Количество просверленных отверстий. Отверстия, которые сверлят с помощью\n" "сверло." -#: flatcamGUI/ObjectUI.py:769 +#: flatcamGUI/ObjectUI.py:793 msgid "" "The number of Slot holes. Holes that are created by\n" "milling them with an endmill bit." @@ -7565,7 +7565,7 @@ msgstr "" "Количество щелевых отверстий. Отверстия, которые создаются\n" "фрезы с фрезы бит." -#: flatcamGUI/ObjectUI.py:772 flatcamGUI/PreferencesUI.py:2557 +#: flatcamGUI/ObjectUI.py:796 flatcamGUI/PreferencesUI.py:2558 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" @@ -7575,7 +7575,7 @@ msgstr "" "создать необходимый диаметр выходного отверстия за счет формы наконечника.\n" "Значение здесь может компенсировать Cut Z параметра." -#: flatcamGUI/ObjectUI.py:776 +#: flatcamGUI/ObjectUI.py:800 msgid "" "Toggle display of the drills for the current tool.\n" "This does not select the tools for G-code generation." @@ -7583,18 +7583,18 @@ msgstr "" "Переключение отображения сверл для текущего инструмента.\n" "При этом не выбираются инструменты для генерации G-кода." -#: flatcamGUI/ObjectUI.py:783 flatcamGUI/PreferencesUI.py:2323 -#: flatcamGUI/PreferencesUI.py:3167 +#: flatcamGUI/ObjectUI.py:807 flatcamGUI/PreferencesUI.py:2324 +#: flatcamGUI/PreferencesUI.py:3168 msgid "Create CNC Job" msgstr "Создание программы для ЧПУ" -#: flatcamGUI/ObjectUI.py:785 +#: flatcamGUI/ObjectUI.py:809 msgid "" "Create a CNC Job object\n" "for this drill object." msgstr "Создание G-Code для объекта сверловки." -#: flatcamGUI/ObjectUI.py:798 flatcamGUI/PreferencesUI.py:2336 +#: flatcamGUI/ObjectUI.py:822 flatcamGUI/PreferencesUI.py:2337 msgid "" "Drill depth (negative)\n" "below the copper surface." @@ -7602,7 +7602,7 @@ msgstr "" "Глубина сверления (отрицательная) \n" "ниже слоя меди." -#: flatcamGUI/ObjectUI.py:817 flatcamGUI/PreferencesUI.py:2354 +#: flatcamGUI/ObjectUI.py:841 flatcamGUI/PreferencesUI.py:2355 msgid "" "Tool height when travelling\n" "across the XY plane." @@ -7610,12 +7610,12 @@ msgstr "" "Отвод инструмента при холостом ходе\n" "по плоскости XY." -#: flatcamGUI/ObjectUI.py:834 flatcamGUI/ObjectUI.py:1439 -#: flatcamGUI/PreferencesUI.py:2369 flatcamGUI/PreferencesUI.py:3252 +#: flatcamGUI/ObjectUI.py:858 flatcamGUI/ObjectUI.py:1478 +#: flatcamGUI/PreferencesUI.py:2370 flatcamGUI/PreferencesUI.py:3253 msgid "Tool change" msgstr "Смена инструмента" -#: flatcamGUI/ObjectUI.py:836 flatcamGUI/PreferencesUI.py:2371 +#: flatcamGUI/ObjectUI.py:860 flatcamGUI/PreferencesUI.py:2372 msgid "" "Include tool-change sequence\n" "in G-Code (Pause for tool change)." @@ -7623,23 +7623,23 @@ msgstr "" "Включает последовательность смены инструмента\n" "в G-Code (Пауза для смены инструмента)." -#: flatcamGUI/ObjectUI.py:842 flatcamGUI/ObjectUI.py:1432 +#: flatcamGUI/ObjectUI.py:866 flatcamGUI/ObjectUI.py:1471 msgid "Tool change Z" msgstr "Смена инструмента Z" -#: flatcamGUI/ObjectUI.py:844 flatcamGUI/ObjectUI.py:1435 -#: flatcamGUI/PreferencesUI.py:2380 flatcamGUI/PreferencesUI.py:3267 +#: flatcamGUI/ObjectUI.py:868 flatcamGUI/ObjectUI.py:1474 +#: flatcamGUI/PreferencesUI.py:2381 flatcamGUI/PreferencesUI.py:3268 msgid "" "Z-axis position (height) for\n" "tool change." msgstr "Отвод по оси Z для смены инструмента." -#: flatcamGUI/ObjectUI.py:862 flatcamGUI/PreferencesUI.py:2575 -#: flatcamGUI/PreferencesUI.py:3420 +#: flatcamGUI/ObjectUI.py:886 flatcamGUI/PreferencesUI.py:2576 +#: flatcamGUI/PreferencesUI.py:3421 msgid "Start move Z" msgstr "Начать движение Z" -#: flatcamGUI/ObjectUI.py:864 flatcamGUI/PreferencesUI.py:2577 +#: flatcamGUI/ObjectUI.py:888 flatcamGUI/PreferencesUI.py:2578 msgid "" "Height of the tool just after start.\n" "Delete the value if you don't need this feature." @@ -7647,13 +7647,13 @@ msgstr "" "Высота инструмента сразу после запуска.\n" "Удалить значение если вам не нужна эта функция." -#: flatcamGUI/ObjectUI.py:872 flatcamGUI/ObjectUI.py:1473 -#: flatcamGUI/PreferencesUI.py:2395 flatcamGUI/PreferencesUI.py:3286 +#: flatcamGUI/ObjectUI.py:896 flatcamGUI/ObjectUI.py:1512 +#: flatcamGUI/PreferencesUI.py:2396 flatcamGUI/PreferencesUI.py:3287 msgid "End move Z" msgstr "Высота отвода Z" -#: flatcamGUI/ObjectUI.py:874 flatcamGUI/ObjectUI.py:1475 -#: flatcamGUI/PreferencesUI.py:2397 flatcamGUI/PreferencesUI.py:3288 +#: flatcamGUI/ObjectUI.py:898 flatcamGUI/ObjectUI.py:1514 +#: flatcamGUI/PreferencesUI.py:2398 flatcamGUI/PreferencesUI.py:3289 msgid "" "Height of the tool after\n" "the last move at the end of the job." @@ -7661,13 +7661,13 @@ msgstr "" "Высота инструмента после\n" "последнего прохода в конце задания." -#: flatcamGUI/ObjectUI.py:891 flatcamGUI/ObjectUI.py:1506 -#: flatcamGUI/PreferencesUI.py:2412 flatcamGUI/PreferencesUI.py:3321 -#: flatcamGUI/PreferencesUI.py:5497 flatcamTools/ToolSolderPaste.py:264 +#: flatcamGUI/ObjectUI.py:915 flatcamGUI/ObjectUI.py:1545 +#: flatcamGUI/PreferencesUI.py:2413 flatcamGUI/PreferencesUI.py:3322 +#: flatcamGUI/PreferencesUI.py:5498 flatcamTools/ToolSolderPaste.py:264 msgid "Feedrate Z" msgstr "Скорость подачи Z" -#: flatcamGUI/ObjectUI.py:893 flatcamGUI/PreferencesUI.py:2414 +#: flatcamGUI/ObjectUI.py:917 flatcamGUI/PreferencesUI.py:2415 msgid "" "Tool speed while drilling\n" "(in units per minute).\n" @@ -7679,12 +7679,12 @@ msgstr "" "Так называемая подача «Погружения».\n" "Используется для линейного перемещения G01." -#: flatcamGUI/ObjectUI.py:907 flatcamGUI/ObjectUI.py:1521 -#: flatcamGUI/PreferencesUI.py:2585 flatcamGUI/PreferencesUI.py:3430 +#: flatcamGUI/ObjectUI.py:931 flatcamGUI/ObjectUI.py:1560 +#: flatcamGUI/PreferencesUI.py:2586 flatcamGUI/PreferencesUI.py:3431 msgid "Feedrate Rapids" msgstr "Пороги скорости подачи" -#: flatcamGUI/ObjectUI.py:909 flatcamGUI/PreferencesUI.py:2587 +#: flatcamGUI/ObjectUI.py:933 flatcamGUI/PreferencesUI.py:2588 msgid "" "Tool speed while drilling\n" "(in units per minute).\n" @@ -7698,12 +7698,12 @@ msgstr "" "Полезно только для Marlin,\n" "игнорировать для любых других случаев." -#: flatcamGUI/ObjectUI.py:927 flatcamGUI/ObjectUI.py:1566 -#: flatcamGUI/PreferencesUI.py:3337 +#: flatcamGUI/ObjectUI.py:951 flatcamGUI/ObjectUI.py:1605 +#: flatcamGUI/PreferencesUI.py:3338 msgid "Spindle speed" msgstr "Скорость вращения шпинделя" -#: flatcamGUI/ObjectUI.py:929 flatcamGUI/PreferencesUI.py:2429 +#: flatcamGUI/ObjectUI.py:953 flatcamGUI/PreferencesUI.py:2430 msgid "" "Speed of the spindle\n" "in RPM (optional)" @@ -7711,8 +7711,8 @@ msgstr "" "Скорость шпинделя\n" "в оборотах в минуту(опционально) ." -#: flatcamGUI/ObjectUI.py:941 flatcamGUI/ObjectUI.py:1585 -#: flatcamGUI/PreferencesUI.py:2441 flatcamGUI/PreferencesUI.py:3355 +#: flatcamGUI/ObjectUI.py:965 flatcamGUI/ObjectUI.py:1624 +#: flatcamGUI/PreferencesUI.py:2442 flatcamGUI/PreferencesUI.py:3356 msgid "" "Pause to allow the spindle to reach its\n" "speed before cutting." @@ -7720,12 +7720,12 @@ msgstr "" "Задержка для набора оборотов шпинделя\n" "перед началом обработки." -#: flatcamGUI/ObjectUI.py:950 flatcamGUI/ObjectUI.py:1595 -#: flatcamGUI/PreferencesUI.py:2446 flatcamGUI/PreferencesUI.py:3360 +#: flatcamGUI/ObjectUI.py:974 flatcamGUI/ObjectUI.py:1634 +#: flatcamGUI/PreferencesUI.py:2447 flatcamGUI/PreferencesUI.py:3361 msgid "Number of time units for spindle to dwell." msgstr "Количество единиц времени для остановки шпинделя." -#: flatcamGUI/ObjectUI.py:960 flatcamGUI/PreferencesUI.py:2463 +#: flatcamGUI/ObjectUI.py:984 flatcamGUI/PreferencesUI.py:2464 msgid "" "The preprocessor JSON file that dictates\n" "Gcode output." @@ -7733,13 +7733,13 @@ msgstr "" "JSON-файл постпроцессора, который влияет\n" "на Gcode." -#: flatcamGUI/ObjectUI.py:969 flatcamGUI/ObjectUI.py:1615 -#: flatcamGUI/PreferencesUI.py:2601 flatcamGUI/PreferencesUI.py:3471 +#: flatcamGUI/ObjectUI.py:993 flatcamGUI/ObjectUI.py:1654 +#: flatcamGUI/PreferencesUI.py:2602 flatcamGUI/PreferencesUI.py:3472 msgid "Probe Z depth" msgstr "Глубина зондирования Z" -#: flatcamGUI/ObjectUI.py:971 flatcamGUI/ObjectUI.py:1617 -#: flatcamGUI/PreferencesUI.py:2603 flatcamGUI/PreferencesUI.py:3473 +#: flatcamGUI/ObjectUI.py:995 flatcamGUI/ObjectUI.py:1656 +#: flatcamGUI/PreferencesUI.py:2604 flatcamGUI/PreferencesUI.py:3474 msgid "" "The maximum depth that the probe is allowed\n" "to probe. Negative value, in current units." @@ -7747,21 +7747,21 @@ msgstr "" "Максимальная глубина, допустимая для зонда.\n" "Отрицательное значение в текущих единицах." -#: flatcamGUI/ObjectUI.py:985 flatcamGUI/ObjectUI.py:1632 -#: flatcamGUI/PreferencesUI.py:2614 flatcamGUI/PreferencesUI.py:3486 +#: flatcamGUI/ObjectUI.py:1009 flatcamGUI/ObjectUI.py:1671 +#: flatcamGUI/PreferencesUI.py:2615 flatcamGUI/PreferencesUI.py:3487 msgid "Feedrate Probe" msgstr "Датчик скорости подачи" -#: flatcamGUI/ObjectUI.py:987 flatcamGUI/ObjectUI.py:1634 -#: flatcamGUI/PreferencesUI.py:2616 flatcamGUI/PreferencesUI.py:3488 +#: flatcamGUI/ObjectUI.py:1011 flatcamGUI/ObjectUI.py:1673 +#: flatcamGUI/PreferencesUI.py:2617 flatcamGUI/PreferencesUI.py:3489 msgid "The feedrate used while the probe is probing." msgstr "Скорость подачи, используемая во время зондирования." -#: flatcamGUI/ObjectUI.py:1013 flatcamGUI/PreferencesUI.py:2472 +#: flatcamGUI/ObjectUI.py:1037 flatcamGUI/PreferencesUI.py:2473 msgid "Gcode" msgstr "GCode" -#: flatcamGUI/ObjectUI.py:1015 +#: flatcamGUI/ObjectUI.py:1039 msgid "" "Choose what to use for GCode generation:\n" "'Drills', 'Slots' or 'Both'.\n" @@ -7773,19 +7773,19 @@ msgstr "" "При выборе \"Пазы\" или \"Оба\", пазы будут\n" "преобразованы в массив отверстий." -#: flatcamGUI/ObjectUI.py:1029 +#: flatcamGUI/ObjectUI.py:1053 msgid "Create Drills GCode" msgstr "Создать GCode отверстий" -#: flatcamGUI/ObjectUI.py:1031 +#: flatcamGUI/ObjectUI.py:1055 msgid "Generate the CNC Job." msgstr "Создание программы для ЧПУ." -#: flatcamGUI/ObjectUI.py:1042 flatcamGUI/PreferencesUI.py:2490 +#: flatcamGUI/ObjectUI.py:1066 flatcamGUI/PreferencesUI.py:2491 msgid "Mill Holes" msgstr "Фрезеровка отверстий" -#: flatcamGUI/ObjectUI.py:1044 +#: flatcamGUI/ObjectUI.py:1068 msgid "" "Create Geometry for milling holes.\n" "Select from the Tools Table above the hole dias to be\n" @@ -7795,20 +7795,20 @@ msgstr "" "отверстия, которые должны быть фрезерованы.\n" "Используйте столбец #, чтобы сделать выбор." -#: flatcamGUI/ObjectUI.py:1050 flatcamGUI/PreferencesUI.py:2496 +#: flatcamGUI/ObjectUI.py:1074 flatcamGUI/PreferencesUI.py:2497 msgid "Drill Tool dia" msgstr "Диаметр сверла" -#: flatcamGUI/ObjectUI.py:1052 flatcamGUI/PreferencesUI.py:1451 -#: flatcamGUI/PreferencesUI.py:2498 +#: flatcamGUI/ObjectUI.py:1076 flatcamGUI/PreferencesUI.py:1452 +#: flatcamGUI/PreferencesUI.py:2499 msgid "Diameter of the cutting tool." msgstr "Диаметр режущего инструмента." -#: flatcamGUI/ObjectUI.py:1059 +#: flatcamGUI/ObjectUI.py:1083 msgid "Mill Drills Geo" msgstr "Создать геометрию" -#: flatcamGUI/ObjectUI.py:1061 +#: flatcamGUI/ObjectUI.py:1085 msgid "" "Create the Geometry Object\n" "for milling DRILLS toolpaths." @@ -7816,11 +7816,11 @@ msgstr "" "Создание объекта Geometry \n" "для траектории фрезерования отверстий." -#: flatcamGUI/ObjectUI.py:1075 flatcamGUI/PreferencesUI.py:2507 +#: flatcamGUI/ObjectUI.py:1099 flatcamGUI/PreferencesUI.py:2508 msgid "Slot Tool dia" msgstr "Диаметр инструмента шлица" -#: flatcamGUI/ObjectUI.py:1077 flatcamGUI/PreferencesUI.py:2509 +#: flatcamGUI/ObjectUI.py:1101 flatcamGUI/PreferencesUI.py:2510 msgid "" "Diameter of the cutting tool\n" "when milling slots." @@ -7828,11 +7828,11 @@ msgstr "" "Диаметр режущего инструмента\n" "при фрезеровании пазов." -#: flatcamGUI/ObjectUI.py:1086 +#: flatcamGUI/ObjectUI.py:1110 msgid "Mill Slots Geo" msgstr "Создать геометрию" -#: flatcamGUI/ObjectUI.py:1088 +#: flatcamGUI/ObjectUI.py:1112 msgid "" "Create the Geometry Object\n" "for milling SLOTS toolpaths." @@ -7840,11 +7840,11 @@ msgstr "" "Создание объекта геометрии\n" "траекторий для инструмента фрезерования пазов." -#: flatcamGUI/ObjectUI.py:1115 flatcamTools/ToolCutOut.py:315 +#: flatcamGUI/ObjectUI.py:1152 flatcamTools/ToolCutOut.py:315 msgid "Geometry Object" msgstr "Объект Geometry" -#: flatcamGUI/ObjectUI.py:1147 +#: flatcamGUI/ObjectUI.py:1186 msgid "" "Tools in this Geometry object used for cutting.\n" "The 'Offset' entry will set an offset for the cut.\n" @@ -7873,23 +7873,23 @@ msgstr "" "показал пользовательский интерфейс записи форма имени Вольт-Совет диаметр и " "V-наконечник угол." -#: flatcamGUI/ObjectUI.py:1164 flatcamGUI/ObjectUI.py:1853 -#: flatcamGUI/PreferencesUI.py:3627 +#: flatcamGUI/ObjectUI.py:1203 flatcamGUI/ObjectUI.py:1905 +#: flatcamGUI/PreferencesUI.py:3628 msgid "Plot Object" msgstr "Рисовать объекты" -#: flatcamGUI/ObjectUI.py:1178 flatcamGUI/ObjectUI.py:1866 -#: flatcamGUI/ObjectUI.py:1876 flatcamGUI/PreferencesUI.py:6172 +#: flatcamGUI/ObjectUI.py:1217 flatcamGUI/ObjectUI.py:1918 +#: flatcamGUI/ObjectUI.py:1928 flatcamGUI/PreferencesUI.py:6173 #: flatcamTools/ToolCopperThieving.py:220 msgid "Dia" msgstr "Диаметр" -#: flatcamGUI/ObjectUI.py:1178 flatcamGUI/ObjectUI.py:1866 +#: flatcamGUI/ObjectUI.py:1217 flatcamGUI/ObjectUI.py:1918 #: flatcamTools/ToolNonCopperClear.py:120 flatcamTools/ToolPaint.py:123 msgid "TT" msgstr "TT" -#: flatcamGUI/ObjectUI.py:1185 +#: flatcamGUI/ObjectUI.py:1224 msgid "" "This is the Tool Number.\n" "When ToolChange is checked, on toolchange event this value\n" @@ -7900,7 +7900,7 @@ msgstr "" "значение\n" "будет показано, как Т1, Т2 ... Теннесси" -#: flatcamGUI/ObjectUI.py:1196 +#: flatcamGUI/ObjectUI.py:1235 msgid "" "The value for the Offset can be:\n" "- Path -> There is no offset, the tool cut will be done through the geometry " @@ -7917,7 +7917,7 @@ msgstr "" "- Out (side) -> Резец инструмента будет следовать геометрической линии " "снаружи." -#: flatcamGUI/ObjectUI.py:1203 +#: flatcamGUI/ObjectUI.py:1242 msgid "" "The (Operation) Type has only informative value. Usually the UI form " "values \n" @@ -7940,7 +7940,7 @@ msgstr "" "Для изоляции нам нужна более низкая скорость подачи, так как она использует " "фрезерное долото с мелким наконечником." -#: flatcamGUI/ObjectUI.py:1212 +#: flatcamGUI/ObjectUI.py:1251 msgid "" "The Tool Type (TT) can be:\n" "- Circular with 1 ... 4 teeth -> it is informative only. Being circular the " @@ -7971,7 +7971,7 @@ msgstr "" "При выборе типа инструмента V-образная форма автоматически будет выбран тип " "операции как изоляция." -#: flatcamGUI/ObjectUI.py:1224 +#: flatcamGUI/ObjectUI.py:1263 msgid "" "Plot column. It is visible only for MultiGeo geometries, meaning geometries " "that holds the geometry\n" @@ -7989,7 +7989,7 @@ msgstr "" "отключить участок на холсте\n" "для соответствующего инструмента." -#: flatcamGUI/ObjectUI.py:1242 +#: flatcamGUI/ObjectUI.py:1281 msgid "" "The value to offset the cut when \n" "the Offset type selected is 'Offset'.\n" @@ -8001,7 +8001,7 @@ msgstr "" "Значение может быть положительным для \"снаружи\"\n" "вырезать и отрицательный для \"внутри\" вырезать." -#: flatcamGUI/ObjectUI.py:1267 +#: flatcamGUI/ObjectUI.py:1306 msgid "" "Add a new tool to the Tool Table\n" "with the specified diameter." @@ -8009,11 +8009,11 @@ msgstr "" "Добавление нового инструмента в таблицу инструментов\n" "с диаметром, указанным выше." -#: flatcamGUI/ObjectUI.py:1275 +#: flatcamGUI/ObjectUI.py:1314 msgid "Add Tool from DataBase" msgstr "Добавить инструмент из БД" -#: flatcamGUI/ObjectUI.py:1277 +#: flatcamGUI/ObjectUI.py:1316 msgid "" "Add a new tool to the Tool Table\n" "from the Tool DataBase." @@ -8021,7 +8021,7 @@ msgstr "" "Добавление нового инструмента в таблицу инструментов\n" "из БД." -#: flatcamGUI/ObjectUI.py:1287 +#: flatcamGUI/ObjectUI.py:1326 msgid "" "Copy a selection of tools in the Tool Table\n" "by first selecting a row in the Tool Table." @@ -8029,7 +8029,7 @@ msgstr "" "Копирование выбранных инструментов в таблице инструментов\n" "сначала выберите строку в таблице инструментов." -#: flatcamGUI/ObjectUI.py:1293 +#: flatcamGUI/ObjectUI.py:1332 msgid "" "Delete a selection of tools in the Tool Table\n" "by first selecting a row in the Tool Table." @@ -8037,7 +8037,7 @@ msgstr "" "Удаление выбранных инструментов в таблице инструментов\n" "сначала выберите строку в таблице инструментов." -#: flatcamGUI/ObjectUI.py:1317 +#: flatcamGUI/ObjectUI.py:1356 msgid "" "The data used for creating GCode.\n" "Each tool store it's own set of such data." @@ -8045,13 +8045,13 @@ msgstr "" "Данные, используемые для создания кода.\n" "Каждый инструмент хранит свой собственный набор таких данных." -#: flatcamGUI/ObjectUI.py:1387 flatcamGUI/PreferencesUI.py:3199 -#: flatcamGUI/PreferencesUI.py:4311 flatcamTools/ToolCutOut.py:153 +#: flatcamGUI/ObjectUI.py:1426 flatcamGUI/PreferencesUI.py:3200 +#: flatcamGUI/PreferencesUI.py:4312 flatcamTools/ToolCutOut.py:153 msgid "Multi-Depth" msgstr "Мультипроход" -#: flatcamGUI/ObjectUI.py:1390 flatcamGUI/PreferencesUI.py:3202 -#: flatcamGUI/PreferencesUI.py:4314 flatcamTools/ToolCutOut.py:156 +#: flatcamGUI/ObjectUI.py:1429 flatcamGUI/PreferencesUI.py:3203 +#: flatcamGUI/PreferencesUI.py:4315 flatcamTools/ToolCutOut.py:156 msgid "" "Use multiple passes to limit\n" "the cut depth in each pass. Will\n" @@ -8063,18 +8063,18 @@ msgstr "" "сократить несколько раз, пока Cut Z не станет\n" "достиг." -#: flatcamGUI/ObjectUI.py:1404 flatcamGUI/PreferencesUI.py:4326 +#: flatcamGUI/ObjectUI.py:1443 flatcamGUI/PreferencesUI.py:4327 #: flatcamTools/ToolCutOut.py:170 msgid "Depth of each pass (positive)." msgstr "Глубина каждого прохода (положительный)." -#: flatcamGUI/ObjectUI.py:1415 flatcamGUI/PreferencesUI.py:3234 +#: flatcamGUI/ObjectUI.py:1454 flatcamGUI/PreferencesUI.py:3235 msgid "" "Height of the tool when\n" "moving without cutting." msgstr "Высота отвода инструмента при холостом ходе." -#: flatcamGUI/ObjectUI.py:1442 flatcamGUI/PreferencesUI.py:3255 +#: flatcamGUI/ObjectUI.py:1481 flatcamGUI/PreferencesUI.py:3256 msgid "" "Include tool-change sequence\n" "in the Machine Code (Pause for tool change)." @@ -8082,12 +8082,12 @@ msgstr "" "Включить последовательность смены инструмента\n" "в машинном коде (пауза для смены инструмента)." -#: flatcamGUI/ObjectUI.py:1492 flatcamGUI/PreferencesUI.py:3306 -#: flatcamGUI/PreferencesUI.py:5484 flatcamTools/ToolSolderPaste.py:252 +#: flatcamGUI/ObjectUI.py:1531 flatcamGUI/PreferencesUI.py:3307 +#: flatcamGUI/PreferencesUI.py:5485 flatcamTools/ToolSolderPaste.py:252 msgid "Feedrate X-Y" msgstr "Скорость подачи X-Y" -#: flatcamGUI/ObjectUI.py:1494 flatcamGUI/PreferencesUI.py:3308 +#: flatcamGUI/ObjectUI.py:1533 flatcamGUI/PreferencesUI.py:3309 msgid "" "Cutting speed in the XY\n" "plane in units per minute" @@ -8095,7 +8095,7 @@ msgstr "" "Скорость резания в плоскости XY\n" "в единицах в минуту" -#: flatcamGUI/ObjectUI.py:1508 flatcamGUI/PreferencesUI.py:3323 +#: flatcamGUI/ObjectUI.py:1547 flatcamGUI/PreferencesUI.py:3324 msgid "" "Cutting speed in the XY\n" "plane in units per minute.\n" @@ -8105,7 +8105,7 @@ msgstr "" "самолет в единицах в минуту.\n" "Это называется также Плунге." -#: flatcamGUI/ObjectUI.py:1523 flatcamGUI/PreferencesUI.py:3432 +#: flatcamGUI/ObjectUI.py:1562 flatcamGUI/PreferencesUI.py:3433 msgid "" "Cutting speed in the XY plane\n" "(in units per minute).\n" @@ -8119,12 +8119,12 @@ msgstr "" "Это полезно только для Марлина,\n" "игнорировать для любых других случаев." -#: flatcamGUI/ObjectUI.py:1541 flatcamGUI/PreferencesUI.py:3448 +#: flatcamGUI/ObjectUI.py:1580 flatcamGUI/PreferencesUI.py:3449 msgid "Re-cut" msgstr "Перерезать" -#: flatcamGUI/ObjectUI.py:1543 flatcamGUI/ObjectUI.py:1555 -#: flatcamGUI/PreferencesUI.py:3450 flatcamGUI/PreferencesUI.py:3462 +#: flatcamGUI/ObjectUI.py:1582 flatcamGUI/ObjectUI.py:1594 +#: flatcamGUI/PreferencesUI.py:3451 flatcamGUI/PreferencesUI.py:3463 msgid "" "In order to remove possible\n" "copper leftovers where first cut\n" @@ -8136,7 +8136,7 @@ msgstr "" "встреча с последним отрезком, мы генерируем\n" "расширенный разрез по первой секции разреза." -#: flatcamGUI/ObjectUI.py:1569 flatcamGUI/PreferencesUI.py:3340 +#: flatcamGUI/ObjectUI.py:1608 flatcamGUI/PreferencesUI.py:3341 msgid "" "Speed of the spindle in RPM (optional).\n" "If LASER preprocessor is used,\n" @@ -8146,12 +8146,12 @@ msgstr "" "Если используется лазерный постпроцессор,\n" "это значение - мощность лазера." -#: flatcamGUI/ObjectUI.py:1603 flatcamGUI/PreferencesUI.py:5573 +#: flatcamGUI/ObjectUI.py:1642 flatcamGUI/PreferencesUI.py:5574 #: flatcamTools/ToolSolderPaste.py:334 msgid "PostProcessor" msgstr "Постпроцессор" -#: flatcamGUI/ObjectUI.py:1605 flatcamGUI/PreferencesUI.py:3377 +#: flatcamGUI/ObjectUI.py:1644 flatcamGUI/PreferencesUI.py:3378 msgid "" "The Preprocessor file that dictates\n" "the Machine Code (like GCode, RML, HPGL) output." @@ -8159,11 +8159,11 @@ msgstr "" "Файл постпроцессора, который диктует\n" "вывод машинного кода (например, кода, RML, HPGL)." -#: flatcamGUI/ObjectUI.py:1652 +#: flatcamGUI/ObjectUI.py:1691 msgid "Apply parameters to all tools" msgstr "Применить параметры ко всем инструментам" -#: flatcamGUI/ObjectUI.py:1654 +#: flatcamGUI/ObjectUI.py:1693 msgid "" "The parameters in the current form will be applied\n" "on all the tools from the Tool Table." @@ -8171,7 +8171,7 @@ msgstr "" "Параметры в текущей форме будут применены\n" "для всех инструментов из таблицы инструментов." -#: flatcamGUI/ObjectUI.py:1663 +#: flatcamGUI/ObjectUI.py:1702 msgid "" "Add at least one tool in the tool-table.\n" "Click the header to select all, or Ctrl + LMB\n" @@ -8181,19 +8181,19 @@ msgstr "" "Щелкните заголовок, чтобы выбрать все, или Ctrl + LMB\n" "для пользовательского выбора инструментов." -#: flatcamGUI/ObjectUI.py:1670 +#: flatcamGUI/ObjectUI.py:1709 msgid "Generate CNCJob object" msgstr "Создать объект CNCJob" -#: flatcamGUI/ObjectUI.py:1672 +#: flatcamGUI/ObjectUI.py:1711 msgid "Generate the CNC Job object." msgstr "Будет создан объект программы для ЧПУ." -#: flatcamGUI/ObjectUI.py:1689 +#: flatcamGUI/ObjectUI.py:1728 msgid "Launch Paint Tool in Tools Tab." msgstr "Запускает инструмент рисования во вкладке Инструменты." -#: flatcamGUI/ObjectUI.py:1697 flatcamGUI/PreferencesUI.py:4489 +#: flatcamGUI/ObjectUI.py:1736 flatcamGUI/PreferencesUI.py:4490 msgid "" "Creates tool paths to cover the\n" "whole area of a polygon (remove\n" @@ -8204,15 +8204,15 @@ msgstr "" "всей площади полигона(удаляется вся медь).\n" "Будет предложено нажать на нужный полигон." -#: flatcamGUI/ObjectUI.py:1737 +#: flatcamGUI/ObjectUI.py:1788 msgid "CNC Job Object" msgstr "Объект программы для ЧПУ" -#: flatcamGUI/ObjectUI.py:1748 flatcamGUI/PreferencesUI.py:3632 +#: flatcamGUI/ObjectUI.py:1800 flatcamGUI/PreferencesUI.py:3633 msgid "Plot kind" msgstr "Отрисовка участка" -#: flatcamGUI/ObjectUI.py:1751 flatcamGUI/PreferencesUI.py:3634 +#: flatcamGUI/ObjectUI.py:1803 flatcamGUI/PreferencesUI.py:3635 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" @@ -8224,15 +8224,15 @@ msgstr "" "над заготовкой или она может быть типа \"Cut\",\n" "что означает ходы, которые врезаются в материал." -#: flatcamGUI/ObjectUI.py:1760 flatcamGUI/PreferencesUI.py:3642 +#: flatcamGUI/ObjectUI.py:1812 flatcamGUI/PreferencesUI.py:3643 msgid "Travel" msgstr "Траектория" -#: flatcamGUI/ObjectUI.py:1764 flatcamGUI/PreferencesUI.py:3651 +#: flatcamGUI/ObjectUI.py:1816 flatcamGUI/PreferencesUI.py:3652 msgid "Display Annotation" msgstr "Показывать примечания" -#: flatcamGUI/ObjectUI.py:1766 flatcamGUI/PreferencesUI.py:3653 +#: flatcamGUI/ObjectUI.py:1818 flatcamGUI/PreferencesUI.py:3654 msgid "" "This selects if to display text annotation on the plot.\n" "When checked it will display numbers in order for each end\n" @@ -8243,11 +8243,11 @@ msgstr "" "порядке\n" "траектории движения." -#: flatcamGUI/ObjectUI.py:1781 +#: flatcamGUI/ObjectUI.py:1833 msgid "Travelled dist." msgstr "Пройденное расстояние" -#: flatcamGUI/ObjectUI.py:1783 flatcamGUI/ObjectUI.py:1788 +#: flatcamGUI/ObjectUI.py:1835 flatcamGUI/ObjectUI.py:1840 msgid "" "This is the total travelled distance on X-Y plane.\n" "In current units." @@ -8255,11 +8255,11 @@ msgstr "" "Это общее пройденное расстояние на X-Y плоскости.\n" "В текущих единицах измерения." -#: flatcamGUI/ObjectUI.py:1793 +#: flatcamGUI/ObjectUI.py:1845 msgid "Estimated time" msgstr "Расчетное время" -#: flatcamGUI/ObjectUI.py:1795 flatcamGUI/ObjectUI.py:1800 +#: flatcamGUI/ObjectUI.py:1847 flatcamGUI/ObjectUI.py:1852 msgid "" "This is the estimated time to do the routing/drilling,\n" "without the time spent in ToolChange events." @@ -8267,11 +8267,11 @@ msgstr "" "Это расчетное время для выполнения маршрутизации/бурения,\n" "без времени, затраченного на события смены инструмента." -#: flatcamGUI/ObjectUI.py:1835 +#: flatcamGUI/ObjectUI.py:1887 msgid "CNC Tools Table" msgstr "Таблица инструментов CNC" -#: flatcamGUI/ObjectUI.py:1838 +#: flatcamGUI/ObjectUI.py:1890 msgid "" "Tools in this CNCJob object used for cutting.\n" "The tool diameter is used for plotting on canvas.\n" @@ -8293,24 +8293,24 @@ msgstr "" "\"Тип инструмента\" (TT) может быть круговым с 1 до 4 зубами (C1..C4),\n" "шарик (B), или V-образный(V)." -#: flatcamGUI/ObjectUI.py:1866 flatcamGUI/ObjectUI.py:1877 +#: flatcamGUI/ObjectUI.py:1918 flatcamGUI/ObjectUI.py:1929 msgid "P" msgstr "P" -#: flatcamGUI/ObjectUI.py:1887 +#: flatcamGUI/ObjectUI.py:1939 msgid "Update Plot" msgstr "Обновить участок" -#: flatcamGUI/ObjectUI.py:1889 +#: flatcamGUI/ObjectUI.py:1941 msgid "Update the plot." msgstr "Обновление участка." -#: flatcamGUI/ObjectUI.py:1896 flatcamGUI/PreferencesUI.py:3819 +#: flatcamGUI/ObjectUI.py:1948 flatcamGUI/PreferencesUI.py:3820 msgid "Export CNC Code" msgstr "Экспорт CNC Code" -#: flatcamGUI/ObjectUI.py:1898 flatcamGUI/PreferencesUI.py:3760 -#: flatcamGUI/PreferencesUI.py:3821 +#: flatcamGUI/ObjectUI.py:1950 flatcamGUI/PreferencesUI.py:3761 +#: flatcamGUI/PreferencesUI.py:3822 msgid "" "Export and save G-Code to\n" "make this object to a file." @@ -8319,12 +8319,12 @@ msgstr "" "для сохранения\n" "этого объекта в файл." -#: flatcamGUI/ObjectUI.py:1904 +#: flatcamGUI/ObjectUI.py:1956 msgid "Prepend to CNC Code" msgstr "Добавить в начало CNC Code" -#: flatcamGUI/ObjectUI.py:1906 flatcamGUI/ObjectUI.py:1913 -#: flatcamGUI/PreferencesUI.py:3776 flatcamGUI/PreferencesUI.py:3783 +#: flatcamGUI/ObjectUI.py:1958 flatcamGUI/ObjectUI.py:1965 +#: flatcamGUI/PreferencesUI.py:3777 flatcamGUI/PreferencesUI.py:3784 msgid "" "Type here any G-Code commands you would\n" "like to add at the beginning of the G-Code file." @@ -8332,12 +8332,12 @@ msgstr "" "Введите здесь любые команды G-Code, которые вам\n" "хотелось бы добавить в начале файла G-Code." -#: flatcamGUI/ObjectUI.py:1919 +#: flatcamGUI/ObjectUI.py:1971 msgid "Append to CNC Code" msgstr "Дописать в конец CNC Code" -#: flatcamGUI/ObjectUI.py:1921 flatcamGUI/ObjectUI.py:1929 -#: flatcamGUI/PreferencesUI.py:3792 flatcamGUI/PreferencesUI.py:3800 +#: flatcamGUI/ObjectUI.py:1973 flatcamGUI/ObjectUI.py:1981 +#: flatcamGUI/PreferencesUI.py:3793 flatcamGUI/PreferencesUI.py:3801 msgid "" "Type here any G-Code commands you would\n" "like to append to the generated file.\n" @@ -8347,11 +8347,11 @@ msgstr "" "хотелось бы добавить к созданному файлу.\n" "например: M2 (конец программы)" -#: flatcamGUI/ObjectUI.py:1943 flatcamGUI/PreferencesUI.py:3827 +#: flatcamGUI/ObjectUI.py:1995 flatcamGUI/PreferencesUI.py:3828 msgid "Toolchange G-Code" msgstr "G-Code смены инструмента" -#: flatcamGUI/ObjectUI.py:1946 flatcamGUI/PreferencesUI.py:3830 +#: flatcamGUI/ObjectUI.py:1998 flatcamGUI/PreferencesUI.py:3831 msgid "" "Type here any G-Code commands you would\n" "like to be executed when Toolchange event is encountered.\n" @@ -8373,7 +8373,7 @@ msgstr "" "и иметь \"toolchange_custom\" в имени, и будет построено\n" "используя в качестве шаблона файл постпроцессора \"Tool change Custom\"." -#: flatcamGUI/ObjectUI.py:1961 flatcamGUI/PreferencesUI.py:3853 +#: flatcamGUI/ObjectUI.py:2013 flatcamGUI/PreferencesUI.py:3854 msgid "" "Type here any G-Code commands you would\n" "like to be executed when Toolchange event is encountered.\n" @@ -8391,11 +8391,11 @@ msgstr "" "ВНИМАНИЕ: его можно использовать только с файлом препроцессора\n" "в названии которого есть toolchange_custom." -#: flatcamGUI/ObjectUI.py:1976 flatcamGUI/PreferencesUI.py:3869 +#: flatcamGUI/ObjectUI.py:2028 flatcamGUI/PreferencesUI.py:3870 msgid "Use Toolchange Macro" msgstr "Использовать макросы смены инструмента" -#: flatcamGUI/ObjectUI.py:1978 flatcamGUI/PreferencesUI.py:3871 +#: flatcamGUI/ObjectUI.py:2030 flatcamGUI/PreferencesUI.py:3872 msgid "" "Check this box if you want to use\n" "a Custom Toolchange GCode (macro)." @@ -8403,7 +8403,7 @@ msgstr "" "Установите этот флажок, если хотите использовать\n" "пользовательский GCode смены инструментов (макрос)." -#: flatcamGUI/ObjectUI.py:1986 flatcamGUI/PreferencesUI.py:3883 +#: flatcamGUI/ObjectUI.py:2038 flatcamGUI/PreferencesUI.py:3884 msgid "" "A list of the FlatCAM variables that can be used\n" "in the Toolchange event.\n" @@ -8413,85 +8413,85 @@ msgstr "" "при смене инструмента.\n" "Они должны быть окружены '%' символом" -#: 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 +#: flatcamGUI/ObjectUI.py:2045 flatcamGUI/PreferencesUI.py:1852 +#: flatcamGUI/PreferencesUI.py:2825 flatcamGUI/PreferencesUI.py:3570 +#: flatcamGUI/PreferencesUI.py:3891 flatcamGUI/PreferencesUI.py:3973 +#: flatcamGUI/PreferencesUI.py:4265 flatcamGUI/PreferencesUI.py:4424 +#: flatcamGUI/PreferencesUI.py:4646 flatcamGUI/PreferencesUI.py:4943 +#: flatcamGUI/PreferencesUI.py:5194 flatcamGUI/PreferencesUI.py:5370 +#: flatcamGUI/PreferencesUI.py:5595 flatcamGUI/PreferencesUI.py:5617 +#: flatcamGUI/PreferencesUI.py:5841 flatcamGUI/PreferencesUI.py:5878 +#: flatcamGUI/PreferencesUI.py:6072 flatcamGUI/PreferencesUI.py:6326 +#: flatcamGUI/PreferencesUI.py:6442 flatcamTools/ToolCopperThieving.py:89 #: flatcamTools/ToolFiducials.py:149 flatcamTools/ToolNonCopperClear.py:315 msgid "Parameters" msgstr "Параметры" -#: flatcamGUI/ObjectUI.py:1996 flatcamGUI/PreferencesUI.py:3893 +#: flatcamGUI/ObjectUI.py:2048 flatcamGUI/PreferencesUI.py:3894 msgid "FlatCAM CNC parameters" msgstr "Параметры FlatCAM CNC" -#: flatcamGUI/ObjectUI.py:1997 flatcamGUI/PreferencesUI.py:3894 +#: flatcamGUI/ObjectUI.py:2049 flatcamGUI/PreferencesUI.py:3895 msgid "tool number" msgstr "номер инструмента" -#: flatcamGUI/ObjectUI.py:1998 flatcamGUI/PreferencesUI.py:3895 +#: flatcamGUI/ObjectUI.py:2050 flatcamGUI/PreferencesUI.py:3896 msgid "tool diameter" msgstr "диаметр инструмента" -#: flatcamGUI/ObjectUI.py:1999 flatcamGUI/PreferencesUI.py:3896 +#: flatcamGUI/ObjectUI.py:2051 flatcamGUI/PreferencesUI.py:3897 msgid "for Excellon, total number of drills" msgstr "для Excellon, общее количество сверл" -#: flatcamGUI/ObjectUI.py:2001 flatcamGUI/PreferencesUI.py:3898 +#: flatcamGUI/ObjectUI.py:2053 flatcamGUI/PreferencesUI.py:3899 msgid "X coord for Toolchange" msgstr "Координата X для смены инструмента" -#: flatcamGUI/ObjectUI.py:2002 flatcamGUI/PreferencesUI.py:3899 +#: flatcamGUI/ObjectUI.py:2054 flatcamGUI/PreferencesUI.py:3900 msgid "Y coord for Toolchange" msgstr "Координата Y для смены инструмента" -#: flatcamGUI/ObjectUI.py:2003 flatcamGUI/PreferencesUI.py:3901 +#: flatcamGUI/ObjectUI.py:2055 flatcamGUI/PreferencesUI.py:3902 msgid "Z coord for Toolchange" msgstr "Координата Z для смены инструмента" -#: flatcamGUI/ObjectUI.py:2004 +#: flatcamGUI/ObjectUI.py:2056 msgid "depth where to cut" msgstr "глубина резания" -#: flatcamGUI/ObjectUI.py:2005 +#: flatcamGUI/ObjectUI.py:2057 msgid "height where to travel" msgstr "высота перемещения" -#: flatcamGUI/ObjectUI.py:2006 flatcamGUI/PreferencesUI.py:3904 +#: flatcamGUI/ObjectUI.py:2058 flatcamGUI/PreferencesUI.py:3905 msgid "the step value for multidepth cut" msgstr "значение шага для мультипроходного разреза" -#: flatcamGUI/ObjectUI.py:2008 flatcamGUI/PreferencesUI.py:3906 +#: flatcamGUI/ObjectUI.py:2060 flatcamGUI/PreferencesUI.py:3907 msgid "the value for the spindle speed" msgstr "значение скорости вращения шпинделя" -#: flatcamGUI/ObjectUI.py:2010 +#: flatcamGUI/ObjectUI.py:2062 msgid "time to dwell to allow the spindle to reach it's set RPM" msgstr "" "время, чтобы остановиться, чтобы позволить шпинделю достичь его установлен " "об / мин" -#: flatcamGUI/ObjectUI.py:2026 +#: flatcamGUI/ObjectUI.py:2078 msgid "View CNC Code" msgstr "Просмотр CNC Code" -#: flatcamGUI/ObjectUI.py:2028 +#: flatcamGUI/ObjectUI.py:2080 msgid "" "Opens TAB to view/modify/print G-Code\n" "file." msgstr "Открывает вкладку для просмотра/изменения/печати файла G-Code." -#: flatcamGUI/ObjectUI.py:2033 +#: flatcamGUI/ObjectUI.py:2085 msgid "Save CNC Code" msgstr "Сохранить CNC Code" -#: flatcamGUI/ObjectUI.py:2035 +#: flatcamGUI/ObjectUI.py:2087 msgid "" "Opens dialog to save G-Code\n" "file." @@ -8499,77 +8499,77 @@ msgstr "" "Открывает диалоговое окно для сохранения\n" "файла G-Code." -#: flatcamGUI/ObjectUI.py:2055 +#: flatcamGUI/ObjectUI.py:2118 msgid "Script Object" msgstr "Объект сценария" -#: flatcamGUI/ObjectUI.py:2077 flatcamGUI/ObjectUI.py:2139 +#: flatcamGUI/ObjectUI.py:2140 flatcamGUI/ObjectUI.py:2213 msgid "Auto Completer" msgstr "Автозаполнение" -#: flatcamGUI/ObjectUI.py:2079 +#: flatcamGUI/ObjectUI.py:2142 msgid "This selects if the auto completer is enabled in the Script Editor." msgstr "" "Этот параметр выбирает, включено ли автозаполнение в редакторе сценариев." -#: flatcamGUI/ObjectUI.py:2110 +#: flatcamGUI/ObjectUI.py:2184 msgid "Document Object" msgstr "Объект Document" -#: flatcamGUI/ObjectUI.py:2141 +#: flatcamGUI/ObjectUI.py:2215 msgid "This selects if the auto completer is enabled in the Document Editor." msgstr "" "Этот параметр выбирает, включено ли автозаполнение в редакторе Document." -#: flatcamGUI/ObjectUI.py:2159 +#: flatcamGUI/ObjectUI.py:2233 msgid "Font Type" msgstr "Тип шрифта" -#: flatcamGUI/ObjectUI.py:2176 +#: flatcamGUI/ObjectUI.py:2250 msgid "Font Size" msgstr "Размер шрифта" -#: flatcamGUI/ObjectUI.py:2212 +#: flatcamGUI/ObjectUI.py:2286 msgid "Alignment" msgstr "Выравнивание" -#: flatcamGUI/ObjectUI.py:2217 +#: flatcamGUI/ObjectUI.py:2291 msgid "Align Left" msgstr "Выравнивание по левому краю" -#: flatcamGUI/ObjectUI.py:2222 +#: flatcamGUI/ObjectUI.py:2296 msgid "Center" msgstr "Центр" -#: flatcamGUI/ObjectUI.py:2227 +#: flatcamGUI/ObjectUI.py:2301 msgid "Align Right" msgstr "Выравнивание по правому краю" -#: flatcamGUI/ObjectUI.py:2232 +#: flatcamGUI/ObjectUI.py:2306 msgid "Justify" msgstr "Выравнивание по ширине" -#: flatcamGUI/ObjectUI.py:2239 +#: flatcamGUI/ObjectUI.py:2313 msgid "Font Color" msgstr "Цвет шрифта" -#: flatcamGUI/ObjectUI.py:2241 +#: flatcamGUI/ObjectUI.py:2315 msgid "Set the font color for the selected text" msgstr "Устанавливает цвет шрифта для выделенного текста" -#: flatcamGUI/ObjectUI.py:2255 +#: flatcamGUI/ObjectUI.py:2329 msgid "Selection Color" msgstr "Цвет выделения" -#: flatcamGUI/ObjectUI.py:2257 +#: flatcamGUI/ObjectUI.py:2331 msgid "Set the selection color when doing text selection." msgstr "Установка цвета выделения при выделения текста." -#: flatcamGUI/ObjectUI.py:2271 +#: flatcamGUI/ObjectUI.py:2345 msgid "Tab Size" msgstr "Размер вкладки" -#: flatcamGUI/ObjectUI.py:2273 +#: flatcamGUI/ObjectUI.py:2347 msgid "Set the tab size. In pixels. Default value is 80 pixels." msgstr "" "Установка размера вкладки. В пикселях. Значение по умолчанию составляет 80 " @@ -8635,7 +8635,7 @@ msgstr "" msgid "Wk. Orientation" msgstr "Ориентация рабочей области" -#: flatcamGUI/PreferencesUI.py:430 flatcamGUI/PreferencesUI.py:4853 +#: flatcamGUI/PreferencesUI.py:430 flatcamGUI/PreferencesUI.py:4854 #: flatcamTools/ToolFilm.py:420 msgid "" "Can be:\n" @@ -8646,12 +8646,12 @@ msgstr "" "- Портрет\n" "- Альбом" -#: flatcamGUI/PreferencesUI.py:434 flatcamGUI/PreferencesUI.py:4857 +#: flatcamGUI/PreferencesUI.py:434 flatcamGUI/PreferencesUI.py:4858 #: flatcamTools/ToolFilm.py:424 msgid "Portrait" msgstr "Портретная" -#: flatcamGUI/PreferencesUI.py:435 flatcamGUI/PreferencesUI.py:4858 +#: flatcamGUI/PreferencesUI.py:435 flatcamGUI/PreferencesUI.py:4859 #: flatcamTools/ToolFilm.py:425 msgid "Landscape" msgstr "Альбомная" @@ -8847,7 +8847,7 @@ msgstr "" "Включает поддержку высокого разрешения для FlatCAM.\n" "Требуется перезапуск приложения." -#: flatcamGUI/PreferencesUI.py:782 flatcamGUI/PreferencesUI.py:1032 +#: flatcamGUI/PreferencesUI.py:782 flatcamGUI/PreferencesUI.py:1033 msgid "Clear GUI Settings" msgstr "Сброс настроек интерфейса" @@ -8931,19 +8931,19 @@ msgstr "Заставка" msgid "Enable display of the splash screen at application startup." msgstr "Включает отображение заставки при запуске приложения." -#: flatcamGUI/PreferencesUI.py:899 +#: flatcamGUI/PreferencesUI.py:900 msgid "Sys Tray Icon" msgstr "Иконка в системном трее" -#: flatcamGUI/PreferencesUI.py:901 +#: flatcamGUI/PreferencesUI.py:902 msgid "Enable display of FlatCAM icon in Sys Tray." msgstr "Включает отображение иконки FlatCAM в системном трее." -#: flatcamGUI/PreferencesUI.py:909 +#: flatcamGUI/PreferencesUI.py:910 msgid "Shell at StartUp" msgstr "Командная строка при запуске" -#: flatcamGUI/PreferencesUI.py:911 flatcamGUI/PreferencesUI.py:916 +#: flatcamGUI/PreferencesUI.py:912 flatcamGUI/PreferencesUI.py:917 msgid "" "Check this box if you want the shell to\n" "start automatically at startup." @@ -8951,11 +8951,11 @@ msgstr "" "Установите этот флажок, если требуется, чтобы оболочка\n" "запуск автоматически при запуске." -#: flatcamGUI/PreferencesUI.py:924 +#: flatcamGUI/PreferencesUI.py:925 msgid "Project at StartUp" msgstr "Боковая панель при запуске" -#: flatcamGUI/PreferencesUI.py:926 flatcamGUI/PreferencesUI.py:931 +#: flatcamGUI/PreferencesUI.py:927 flatcamGUI/PreferencesUI.py:932 msgid "" "Check this box if you want the project/selected/tool tab area to\n" "to be shown automatically at startup." @@ -8963,11 +8963,11 @@ msgstr "" "Установите этот флажок, если требуется, чтобы боковая панель\n" "автоматически отображалась при запуске." -#: flatcamGUI/PreferencesUI.py:939 +#: flatcamGUI/PreferencesUI.py:940 msgid "Project AutoHide" msgstr "Автоскрытие боковой панели" -#: flatcamGUI/PreferencesUI.py:941 flatcamGUI/PreferencesUI.py:947 +#: flatcamGUI/PreferencesUI.py:942 flatcamGUI/PreferencesUI.py:948 msgid "" "Check this box if you want the project/selected/tool tab area to\n" "hide automatically when there are no objects loaded and\n" @@ -8978,11 +8978,11 @@ msgstr "" "скрыть автоматически, когда нет загруженных объектов и\n" "показывать при создании нового объекта." -#: flatcamGUI/PreferencesUI.py:958 +#: flatcamGUI/PreferencesUI.py:959 msgid "Enable ToolTips" msgstr "Всплывающие подсказки" -#: flatcamGUI/PreferencesUI.py:960 flatcamGUI/PreferencesUI.py:965 +#: flatcamGUI/PreferencesUI.py:961 flatcamGUI/PreferencesUI.py:966 msgid "" "Check this box if you want to have toolTips displayed\n" "when hovering with mouse over items throughout the App." @@ -8991,11 +8991,11 @@ msgstr "" "отображались\n" "при наведении курсора мыши на элементы по всему приложению." -#: flatcamGUI/PreferencesUI.py:973 +#: flatcamGUI/PreferencesUI.py:974 msgid "Mouse Cursor" msgstr "Курсор мыши" -#: flatcamGUI/PreferencesUI.py:975 +#: flatcamGUI/PreferencesUI.py:976 msgid "" "Choose a mouse cursor shape.\n" "- Small -> with a customizable size.\n" @@ -9005,27 +9005,27 @@ msgstr "" "- Маленький -> с настраиваемым размером.\n" "- Большой -> бесконечные линии" -#: flatcamGUI/PreferencesUI.py:981 +#: flatcamGUI/PreferencesUI.py:982 msgid "Small" msgstr "Небольшой" -#: flatcamGUI/PreferencesUI.py:982 +#: flatcamGUI/PreferencesUI.py:983 msgid "Big" msgstr "Большой" -#: flatcamGUI/PreferencesUI.py:988 +#: flatcamGUI/PreferencesUI.py:989 msgid "Mouse Cursor Size" msgstr "Размер курсора мыши" -#: flatcamGUI/PreferencesUI.py:990 +#: flatcamGUI/PreferencesUI.py:991 msgid "Set the size of the mouse cursor, in pixels." msgstr "Установка размера курсора мыши в пикселях." -#: flatcamGUI/PreferencesUI.py:1001 +#: flatcamGUI/PreferencesUI.py:1002 msgid "Delete object confirmation" msgstr "Подтверждать удаление объекта" -#: flatcamGUI/PreferencesUI.py:1003 +#: flatcamGUI/PreferencesUI.py:1004 msgid "" "When checked the application will ask for user confirmation\n" "whenever the Delete object(s) event is triggered, either by\n" @@ -9035,22 +9035,22 @@ msgstr "" "всякий раз, когда событие Удалить объект (ы) инициируется, либо\n" "ярлык меню или сочетание клавиш." -#: flatcamGUI/PreferencesUI.py:1029 +#: flatcamGUI/PreferencesUI.py:1030 msgid "Are you sure you want to delete the GUI Settings? \n" msgstr "Вы уверены, что хотите сбросить настройки интерфейса?\n" -#: flatcamGUI/PreferencesUI.py:1053 +#: flatcamGUI/PreferencesUI.py:1054 msgid "App Preferences" msgstr "Параметры приложения" -#: flatcamGUI/PreferencesUI.py:1063 flatcamGUI/PreferencesUI.py:1388 -#: flatcamGUI/PreferencesUI.py:1763 flatcamGUI/PreferencesUI.py:2686 +#: flatcamGUI/PreferencesUI.py:1064 flatcamGUI/PreferencesUI.py:1389 +#: flatcamGUI/PreferencesUI.py:1764 flatcamGUI/PreferencesUI.py:2687 #: flatcamTools/ToolDistance.py:49 flatcamTools/ToolDistanceMin.py:49 #: flatcamTools/ToolPcbWizard.py:127 flatcamTools/ToolProperties.py:152 msgid "Units" msgstr "Единицы" -#: flatcamGUI/PreferencesUI.py:1064 +#: flatcamGUI/PreferencesUI.py:1065 msgid "" "The default value for FlatCAM units.\n" "Whatever is selected here is set every time\n" @@ -9060,22 +9060,22 @@ msgstr "" "Все, что выбрано здесь, устанавливается каждый раз\n" "при запуске FLatCAM." -#: flatcamGUI/PreferencesUI.py:1067 flatcamGUI/PreferencesUI.py:1394 -#: flatcamGUI/PreferencesUI.py:1769 flatcamGUI/PreferencesUI.py:2223 -#: flatcamGUI/PreferencesUI.py:2692 flatcamTools/ToolCalculators.py:62 +#: flatcamGUI/PreferencesUI.py:1068 flatcamGUI/PreferencesUI.py:1395 +#: flatcamGUI/PreferencesUI.py:1770 flatcamGUI/PreferencesUI.py:2224 +#: flatcamGUI/PreferencesUI.py:2693 flatcamTools/ToolCalculators.py:62 #: flatcamTools/ToolPcbWizard.py:126 msgid "MM" msgstr "MM" -#: flatcamGUI/PreferencesUI.py:1068 +#: flatcamGUI/PreferencesUI.py:1069 msgid "IN" msgstr "Дюйм" -#: flatcamGUI/PreferencesUI.py:1074 +#: flatcamGUI/PreferencesUI.py:1075 msgid "Precision MM" msgstr "Точность ММ" -#: flatcamGUI/PreferencesUI.py:1076 +#: flatcamGUI/PreferencesUI.py:1077 msgid "" "The number of decimals used throughout the application\n" "when the set units are in METRIC system.\n" @@ -9085,11 +9085,11 @@ msgstr "" "когда установленные единицы измерения находятся в метрической системе.\n" "Любые изменения здесь требуют перезапуска приложения." -#: flatcamGUI/PreferencesUI.py:1088 +#: flatcamGUI/PreferencesUI.py:1089 msgid "Precision INCH" msgstr "Точность ДЮЙМЫ" -#: flatcamGUI/PreferencesUI.py:1090 +#: flatcamGUI/PreferencesUI.py:1091 msgid "" "The number of decimals used throughout the application\n" "when the set units are in INCH system.\n" @@ -9099,11 +9099,11 @@ msgstr "" "когда установленные единицы измерения находятся в дюймовой системе.\n" "Любые изменения здесь требуют перезапуска приложения." -#: flatcamGUI/PreferencesUI.py:1102 +#: flatcamGUI/PreferencesUI.py:1103 msgid "Graphic Engine" msgstr "Графический движок" -#: flatcamGUI/PreferencesUI.py:1103 +#: flatcamGUI/PreferencesUI.py:1104 msgid "" "Choose what graphic engine to use in FlatCAM.\n" "Legacy(2D) -> reduced functionality, slow performance but enhanced " @@ -9122,19 +9122,19 @@ msgstr "" "Intel HD3000 или старше. Если рабочая область будет чёрной, то\n" "используйте режим Legacy (2D)." -#: flatcamGUI/PreferencesUI.py:1109 +#: flatcamGUI/PreferencesUI.py:1110 msgid "Legacy(2D)" msgstr "Legacy(2D)" -#: flatcamGUI/PreferencesUI.py:1110 +#: flatcamGUI/PreferencesUI.py:1111 msgid "OpenGL(3D)" msgstr "OpenGL(3D)" -#: flatcamGUI/PreferencesUI.py:1117 +#: flatcamGUI/PreferencesUI.py:1118 msgid "APP. LEVEL" msgstr "РЕЖИМ" -#: flatcamGUI/PreferencesUI.py:1118 +#: flatcamGUI/PreferencesUI.py:1119 msgid "" "Choose the default level of usage for FlatCAM.\n" "BASIC level -> reduced functionality, best for beginner's.\n" @@ -9151,11 +9151,11 @@ msgstr "" "Выбор здесь повлияет на параметры внутри\n" "выбранная вкладка для всех видов FlatCAM объектов." -#: flatcamGUI/PreferencesUI.py:1130 +#: flatcamGUI/PreferencesUI.py:1131 msgid "Portable app" msgstr "Портативное приложение" -#: flatcamGUI/PreferencesUI.py:1131 +#: flatcamGUI/PreferencesUI.py:1132 msgid "" "Choose if the application should run as portable.\n" "\n" @@ -9169,19 +9169,19 @@ msgstr "" "Это означает, что файлы настроек будут сохранены\n" "в папке приложения, в подпапке lib \\ config." -#: flatcamGUI/PreferencesUI.py:1141 +#: flatcamGUI/PreferencesUI.py:1142 msgid "Languages" msgstr "Языки" -#: flatcamGUI/PreferencesUI.py:1142 +#: flatcamGUI/PreferencesUI.py:1143 msgid "Set the language used throughout FlatCAM." msgstr "Установите язык, используемый в плоском кулачке." -#: flatcamGUI/PreferencesUI.py:1148 +#: flatcamGUI/PreferencesUI.py:1149 msgid "Apply Language" msgstr "Применить" -#: flatcamGUI/PreferencesUI.py:1149 +#: flatcamGUI/PreferencesUI.py:1150 msgid "" "Set the language used throughout FlatCAM.\n" "The app will restart after click.Windows: When FlatCAM is installed in " @@ -9199,11 +9199,11 @@ msgstr "" "элементы безопасности. В этом случае язык будет\n" "применяется при следующем запуске приложения." -#: flatcamGUI/PreferencesUI.py:1161 +#: flatcamGUI/PreferencesUI.py:1162 msgid "Version Check" msgstr "Проверять обновления" -#: flatcamGUI/PreferencesUI.py:1163 flatcamGUI/PreferencesUI.py:1168 +#: flatcamGUI/PreferencesUI.py:1164 flatcamGUI/PreferencesUI.py:1169 msgid "" "Check this box if you want to check\n" "for a new version automatically at startup." @@ -9211,11 +9211,11 @@ msgstr "" "Установите этот флажок, если вы хотите автоматически\n" "проверять обновление программы при запуске." -#: flatcamGUI/PreferencesUI.py:1176 +#: flatcamGUI/PreferencesUI.py:1177 msgid "Send Stats" msgstr "Отправлять статистику" -#: flatcamGUI/PreferencesUI.py:1178 flatcamGUI/PreferencesUI.py:1183 +#: flatcamGUI/PreferencesUI.py:1179 flatcamGUI/PreferencesUI.py:1184 msgid "" "Check this box if you agree to send anonymous\n" "stats automatically at startup, to help improve FlatCAM." @@ -9223,11 +9223,11 @@ msgstr "" "Установите этот флажок, если вы согласны автоматически отправлять\n" "анонимную статистику при запуске, чтобы помочь улучшить FlatCAM." -#: flatcamGUI/PreferencesUI.py:1193 +#: flatcamGUI/PreferencesUI.py:1194 msgid "Pan Button" msgstr "Кнопка панарамирования" -#: flatcamGUI/PreferencesUI.py:1194 +#: flatcamGUI/PreferencesUI.py:1195 msgid "" "Select the mouse button to use for panning:\n" "- MMB --> Middle Mouse Button\n" @@ -9237,35 +9237,35 @@ msgstr "" "- СКМ --> Средняя кнопка мыши\n" "- ПКМ --> Правая кнопка мыши" -#: flatcamGUI/PreferencesUI.py:1197 +#: flatcamGUI/PreferencesUI.py:1198 msgid "MMB" msgstr "СКМ" -#: flatcamGUI/PreferencesUI.py:1198 +#: flatcamGUI/PreferencesUI.py:1199 msgid "RMB" msgstr "ПКМ" -#: flatcamGUI/PreferencesUI.py:1204 +#: flatcamGUI/PreferencesUI.py:1205 msgid "Multiple Sel" msgstr "Мультивыбор" -#: flatcamGUI/PreferencesUI.py:1205 +#: flatcamGUI/PreferencesUI.py:1206 msgid "Select the key used for multiple selection." msgstr "Выберите клавишу, используемую для множественного выбора." -#: flatcamGUI/PreferencesUI.py:1206 +#: flatcamGUI/PreferencesUI.py:1207 msgid "CTRL" msgstr "CTRL" -#: flatcamGUI/PreferencesUI.py:1207 +#: flatcamGUI/PreferencesUI.py:1208 msgid "SHIFT" msgstr "SHIFT" -#: flatcamGUI/PreferencesUI.py:1213 +#: flatcamGUI/PreferencesUI.py:1214 msgid "Workers number" msgstr "Обработчики" -#: flatcamGUI/PreferencesUI.py:1215 flatcamGUI/PreferencesUI.py:1224 +#: flatcamGUI/PreferencesUI.py:1216 flatcamGUI/PreferencesUI.py:1225 msgid "" "The number of Qthreads made available to the App.\n" "A bigger number may finish the jobs more quickly but\n" @@ -9281,11 +9281,11 @@ msgstr "" "Значение по умолчанию-2.\n" "После изменения, он будет применяться при следующем запуске приложения." -#: flatcamGUI/PreferencesUI.py:1237 +#: flatcamGUI/PreferencesUI.py:1238 msgid "Geo Tolerance" msgstr "Допуск геометрии" -#: flatcamGUI/PreferencesUI.py:1239 flatcamGUI/PreferencesUI.py:1248 +#: flatcamGUI/PreferencesUI.py:1240 flatcamGUI/PreferencesUI.py:1249 msgid "" "This value can counter the effect of the Circle Steps\n" "parameter. Default value is 0.01.\n" @@ -9301,11 +9301,11 @@ msgstr "" "спектакль. Более высокое значение обеспечит больше\n" "производительность за счет уровня детализации." -#: flatcamGUI/PreferencesUI.py:1263 +#: flatcamGUI/PreferencesUI.py:1264 msgid "\"Open\" behavior" msgstr "Поведение функции \"Открыть\"" -#: flatcamGUI/PreferencesUI.py:1265 +#: flatcamGUI/PreferencesUI.py:1266 msgid "" "When checked the path for the last saved file is used when saving files,\n" "and the path for the last opened file is used when opening files.\n" @@ -9321,11 +9321,11 @@ msgstr "" "используемых: либо\n" "путь для сохранения файлов либо путь для открытия файлов." -#: flatcamGUI/PreferencesUI.py:1274 +#: flatcamGUI/PreferencesUI.py:1275 msgid "Save Compressed Project" msgstr "Сохранить сжатый проект" -#: flatcamGUI/PreferencesUI.py:1276 +#: flatcamGUI/PreferencesUI.py:1277 msgid "" "Whether to save a compressed or uncompressed project.\n" "When checked it will save a compressed FlatCAM project." @@ -9333,11 +9333,11 @@ msgstr "" "Сохранять ли проект сжатым или несжатым.\n" "Если этот флажок установлен, он сохранит сжатый проект FlatCAM." -#: flatcamGUI/PreferencesUI.py:1285 +#: flatcamGUI/PreferencesUI.py:1286 msgid "Compression" msgstr "Сжатие" -#: flatcamGUI/PreferencesUI.py:1287 +#: flatcamGUI/PreferencesUI.py:1288 msgid "" "The level of compression used when saving\n" "a FlatCAM project. Higher value means better compression\n" @@ -9347,11 +9347,11 @@ msgstr "" "Более высокое значение означает более высокую степень сжатия,\n" "но требуют больше памяти и больше времени на обработку." -#: flatcamGUI/PreferencesUI.py:1299 +#: flatcamGUI/PreferencesUI.py:1300 msgid "Bookmarks limit" msgstr "Количество закладок" -#: flatcamGUI/PreferencesUI.py:1301 +#: flatcamGUI/PreferencesUI.py:1302 msgid "" "The maximum number of bookmarks that may be installed in the menu.\n" "The number of bookmarks in the bookmark manager may be greater\n" @@ -9361,11 +9361,11 @@ msgstr "" "Количество закладок в диспетчере закладок может быть больше\n" "но меню будет содержать только это указанное количество." -#: flatcamGUI/PreferencesUI.py:1310 +#: flatcamGUI/PreferencesUI.py:1311 msgid "Allow Machinist Unsafe Settings" msgstr "Разрешить выполнить небезопасные настройки" -#: flatcamGUI/PreferencesUI.py:1312 +#: flatcamGUI/PreferencesUI.py:1313 msgid "" "If checked, some of the application settings will be allowed\n" "to have values that are usually unsafe to use.\n" @@ -9381,20 +9381,20 @@ msgstr "" "Это будет применено при следующем запуске приложения.\n" "< < Предупреждение>>: Не меняйте это, если вы не знаете, что вы делаете !!!" -#: flatcamGUI/PreferencesUI.py:1333 +#: flatcamGUI/PreferencesUI.py:1334 msgid "Gerber General" msgstr "Gerber основные" -#: flatcamGUI/PreferencesUI.py:1351 +#: flatcamGUI/PreferencesUI.py:1352 msgid "M-Color" msgstr "Разноцветные" -#: flatcamGUI/PreferencesUI.py:1365 flatcamGUI/PreferencesUI.py:3128 -#: flatcamGUI/PreferencesUI.py:3664 flatcamGUI/PreferencesUI.py:6079 +#: flatcamGUI/PreferencesUI.py:1366 flatcamGUI/PreferencesUI.py:3129 +#: flatcamGUI/PreferencesUI.py:3665 flatcamGUI/PreferencesUI.py:6080 msgid "Circle Steps" msgstr "Шаг круга" -#: flatcamGUI/PreferencesUI.py:1367 +#: flatcamGUI/PreferencesUI.py:1368 msgid "" "The number of circle steps for Gerber \n" "circular aperture linear approximation." @@ -9402,11 +9402,11 @@ msgstr "" "Количество шагов круга для Gerber \n" "линейное приближение круговой апертуры." -#: flatcamGUI/PreferencesUI.py:1379 +#: flatcamGUI/PreferencesUI.py:1380 msgid "Default Values" msgstr "Значения по умолчанию" -#: flatcamGUI/PreferencesUI.py:1381 +#: flatcamGUI/PreferencesUI.py:1382 msgid "" "Those values will be used as fallback values\n" "in case that they are not found in the Gerber file." @@ -9414,25 +9414,25 @@ msgstr "" "Эти значения будут использоваться в качестве резервных значений\n" "в случае, если они не найдены в файле Gerber." -#: flatcamGUI/PreferencesUI.py:1390 flatcamGUI/PreferencesUI.py:1396 -#: flatcamGUI/PreferencesUI.py:1765 flatcamGUI/PreferencesUI.py:1771 +#: flatcamGUI/PreferencesUI.py:1391 flatcamGUI/PreferencesUI.py:1397 +#: flatcamGUI/PreferencesUI.py:1766 flatcamGUI/PreferencesUI.py:1772 msgid "The units used in the Gerber file." msgstr "Единицы измерения, используемые в файле Gerber." -#: flatcamGUI/PreferencesUI.py:1393 flatcamGUI/PreferencesUI.py:1768 -#: flatcamGUI/PreferencesUI.py:2124 flatcamGUI/PreferencesUI.py:2222 -#: flatcamGUI/PreferencesUI.py:2691 flatcamTools/ToolCalculators.py:61 +#: flatcamGUI/PreferencesUI.py:1394 flatcamGUI/PreferencesUI.py:1769 +#: flatcamGUI/PreferencesUI.py:2125 flatcamGUI/PreferencesUI.py:2223 +#: flatcamGUI/PreferencesUI.py:2692 flatcamTools/ToolCalculators.py:61 #: flatcamTools/ToolPcbWizard.py:125 msgid "INCH" msgstr "ДЮЙМЫ" -#: flatcamGUI/PreferencesUI.py:1403 flatcamGUI/PreferencesUI.py:1817 -#: flatcamGUI/PreferencesUI.py:2759 +#: flatcamGUI/PreferencesUI.py:1404 flatcamGUI/PreferencesUI.py:1818 +#: flatcamGUI/PreferencesUI.py:2760 msgid "Zeros" msgstr "Нули" -#: flatcamGUI/PreferencesUI.py:1406 flatcamGUI/PreferencesUI.py:1416 -#: flatcamGUI/PreferencesUI.py:1820 flatcamGUI/PreferencesUI.py:1830 +#: flatcamGUI/PreferencesUI.py:1407 flatcamGUI/PreferencesUI.py:1417 +#: flatcamGUI/PreferencesUI.py:1821 flatcamGUI/PreferencesUI.py:1831 msgid "" "This sets the type of Gerber zeros.\n" "If LZ then Leading Zeros are removed and\n" @@ -9446,41 +9446,41 @@ msgstr "" "Если TZ отмечен, то завершающие нули удаляются\n" "и ведущие нули сохраняются." -#: flatcamGUI/PreferencesUI.py:1413 flatcamGUI/PreferencesUI.py:1827 -#: flatcamGUI/PreferencesUI.py:2198 flatcamGUI/PreferencesUI.py:2769 +#: flatcamGUI/PreferencesUI.py:1414 flatcamGUI/PreferencesUI.py:1828 +#: flatcamGUI/PreferencesUI.py:2199 flatcamGUI/PreferencesUI.py:2770 #: flatcamTools/ToolPcbWizard.py:111 msgid "LZ" msgstr "LZ" -#: flatcamGUI/PreferencesUI.py:1414 flatcamGUI/PreferencesUI.py:1828 -#: flatcamGUI/PreferencesUI.py:2199 flatcamGUI/PreferencesUI.py:2770 +#: flatcamGUI/PreferencesUI.py:1415 flatcamGUI/PreferencesUI.py:1829 +#: flatcamGUI/PreferencesUI.py:2200 flatcamGUI/PreferencesUI.py:2771 #: flatcamTools/ToolPcbWizard.py:112 msgid "TZ" msgstr "TZ" -#: flatcamGUI/PreferencesUI.py:1435 +#: flatcamGUI/PreferencesUI.py:1436 msgid "Gerber Options" msgstr "Параметры Gerber" -#: flatcamGUI/PreferencesUI.py:1509 flatcamGUI/PreferencesUI.py:3601 -#: flatcamGUI/PreferencesUI.py:4075 flatcamTools/ToolNonCopperClear.py:170 +#: flatcamGUI/PreferencesUI.py:1510 flatcamGUI/PreferencesUI.py:3602 +#: flatcamGUI/PreferencesUI.py:4076 flatcamTools/ToolNonCopperClear.py:170 msgid "Conv." msgstr "Обычный" -#: flatcamGUI/PreferencesUI.py:1513 +#: flatcamGUI/PreferencesUI.py:1514 msgid "Combine Passes" msgstr "Объединять проходы" -#: flatcamGUI/PreferencesUI.py:1591 +#: flatcamGUI/PreferencesUI.py:1592 msgid "Gerber Adv. Options" msgstr "Gerber дополнительные" -#: flatcamGUI/PreferencesUI.py:1595 flatcamGUI/PreferencesUI.py:2544 -#: flatcamGUI/PreferencesUI.py:3399 +#: flatcamGUI/PreferencesUI.py:1596 flatcamGUI/PreferencesUI.py:2545 +#: flatcamGUI/PreferencesUI.py:3400 msgid "Advanced Options" msgstr "Дополнительные настройки" -#: flatcamGUI/PreferencesUI.py:1597 +#: flatcamGUI/PreferencesUI.py:1598 msgid "" "A list of Gerber advanced parameters.\n" "Those parameters are available only for\n" @@ -9490,11 +9490,11 @@ msgstr "" "Эти параметры доступны только для\n" "расширенного режима приложения." -#: flatcamGUI/PreferencesUI.py:1616 +#: flatcamGUI/PreferencesUI.py:1617 msgid "Table Show/Hide" msgstr "Таблица вкл/откл" -#: flatcamGUI/PreferencesUI.py:1618 +#: flatcamGUI/PreferencesUI.py:1619 msgid "" "Toggle the display of the Gerber Apertures Table.\n" "Also, on hide, it will delete all mark shapes\n" @@ -9504,15 +9504,15 @@ msgstr "" "Кроме того, при скрытии он удалит все фигуры меток\n" "которые нарисованы на холсте." -#: flatcamGUI/PreferencesUI.py:1693 +#: flatcamGUI/PreferencesUI.py:1694 msgid "Exterior" msgstr "Внешняя" -#: flatcamGUI/PreferencesUI.py:1694 +#: flatcamGUI/PreferencesUI.py:1695 msgid "Interior" msgstr "Внутренняя" -#: flatcamGUI/PreferencesUI.py:1702 +#: flatcamGUI/PreferencesUI.py:1703 msgid "" "Buffering type:\n" "- None --> best performance, fast file loading but no so good display\n" @@ -9526,19 +9526,19 @@ msgstr "" "умолчанию.\n" "<< ПРЕДУПРЕЖДЕНИЕ >>: не меняйте это, если не знаете, что делаете !!!" -#: flatcamGUI/PreferencesUI.py:1707 flatcamGUI/PreferencesUI.py:4821 -#: flatcamGUI/PreferencesUI.py:6377 flatcamTools/ToolFiducials.py:201 +#: flatcamGUI/PreferencesUI.py:1708 flatcamGUI/PreferencesUI.py:4822 +#: flatcamGUI/PreferencesUI.py:6378 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 msgid "None" msgstr "Нет" -#: flatcamGUI/PreferencesUI.py:1713 +#: flatcamGUI/PreferencesUI.py:1714 msgid "Simplify" msgstr "Упрощение" -#: flatcamGUI/PreferencesUI.py:1715 +#: flatcamGUI/PreferencesUI.py:1716 msgid "" "When checked all the Gerber polygons will be\n" "loaded with simplification having a set tolerance.\n" @@ -9548,23 +9548,23 @@ msgstr "" "загружается с упрощением, имеющим заданный допуск.\n" "<< ВНИМАНИЕ >>: не изменяйте это, если вы не знаете, что делаете !!!" -#: flatcamGUI/PreferencesUI.py:1722 +#: flatcamGUI/PreferencesUI.py:1723 msgid "Tolerance" msgstr "Допуск" -#: flatcamGUI/PreferencesUI.py:1723 +#: flatcamGUI/PreferencesUI.py:1724 msgid "Tolerance for polygon simplification." msgstr "Допуск для упрощения полигонов." -#: flatcamGUI/PreferencesUI.py:1748 +#: flatcamGUI/PreferencesUI.py:1749 msgid "Gerber Export" msgstr "Экспорт Gerber" -#: flatcamGUI/PreferencesUI.py:1752 flatcamGUI/PreferencesUI.py:2675 +#: flatcamGUI/PreferencesUI.py:1753 flatcamGUI/PreferencesUI.py:2676 msgid "Export Options" msgstr "Параметры экспорта" -#: flatcamGUI/PreferencesUI.py:1754 +#: flatcamGUI/PreferencesUI.py:1755 msgid "" "The parameters set here are used in the file exported\n" "when using the File -> Export -> Export Gerber menu entry." @@ -9572,11 +9572,11 @@ msgstr "" "Заданные здесь параметры используются в экспортированном файле\n" "при использовании пункта меню File -> Export -> Export Gerber." -#: flatcamGUI/PreferencesUI.py:1777 flatcamGUI/PreferencesUI.py:2700 +#: flatcamGUI/PreferencesUI.py:1778 flatcamGUI/PreferencesUI.py:2701 msgid "Int/Decimals" msgstr "Целое число / десятичные дроби" -#: flatcamGUI/PreferencesUI.py:1779 +#: flatcamGUI/PreferencesUI.py:1780 msgid "" "The number of digits in the whole part of the number\n" "and in the fractional part of the number." @@ -9584,7 +9584,7 @@ msgstr "" "Количество цифр в целой части числа\n" "и в дробной части числа." -#: flatcamGUI/PreferencesUI.py:1792 +#: flatcamGUI/PreferencesUI.py:1793 msgid "" "This numbers signify the number of digits in\n" "the whole part of Gerber coordinates." @@ -9592,7 +9592,7 @@ msgstr "" "Эти числа обозначают количество цифр в\n" "вся часть координат Gerber." -#: flatcamGUI/PreferencesUI.py:1808 +#: flatcamGUI/PreferencesUI.py:1809 msgid "" "This numbers signify the number of digits in\n" "the decimal part of Gerber coordinates." @@ -9600,16 +9600,16 @@ msgstr "" "Эти числа обозначают количество цифр в\n" "десятичная часть координат Gerber." -#: flatcamGUI/PreferencesUI.py:1853 +#: flatcamGUI/PreferencesUI.py:1854 msgid "A list of Gerber Editor parameters." msgstr "Список параметров редактора Gerber." -#: flatcamGUI/PreferencesUI.py:1861 flatcamGUI/PreferencesUI.py:2834 -#: flatcamGUI/PreferencesUI.py:3579 flatcamGUI/PreferencesUI.py:6040 +#: flatcamGUI/PreferencesUI.py:1862 flatcamGUI/PreferencesUI.py:2835 +#: flatcamGUI/PreferencesUI.py:3580 flatcamGUI/PreferencesUI.py:6041 msgid "Selection limit" msgstr "Ограничение выбора" -#: flatcamGUI/PreferencesUI.py:1863 +#: flatcamGUI/PreferencesUI.py:1864 msgid "" "Set the number of selected Gerber geometry\n" "items above which the utility geometry\n" @@ -9623,23 +9623,23 @@ msgstr "" "Увеличивает производительность при перемещении\n" "большое количество геометрических элементов." -#: flatcamGUI/PreferencesUI.py:1876 +#: flatcamGUI/PreferencesUI.py:1877 msgid "New Aperture code" msgstr "Новый код диафрагмы" -#: flatcamGUI/PreferencesUI.py:1889 +#: flatcamGUI/PreferencesUI.py:1890 msgid "New Aperture size" msgstr "Новый размер диафрагмы" -#: flatcamGUI/PreferencesUI.py:1891 +#: flatcamGUI/PreferencesUI.py:1892 msgid "Size for the new aperture" msgstr "Размер для новой диафрагмы" -#: flatcamGUI/PreferencesUI.py:1902 +#: flatcamGUI/PreferencesUI.py:1903 msgid "New Aperture type" msgstr "Новый тип диафрагмы" -#: flatcamGUI/PreferencesUI.py:1904 +#: flatcamGUI/PreferencesUI.py:1905 msgid "" "Type for the new aperture.\n" "Can be 'C', 'R' or 'O'." @@ -9647,35 +9647,35 @@ msgstr "" "Введите для новой диафрагмы.\n" "Может быть «C», «R» или «O»." -#: flatcamGUI/PreferencesUI.py:1926 +#: flatcamGUI/PreferencesUI.py:1927 msgid "Aperture Dimensions" msgstr "Разм. диафрагмы" -#: flatcamGUI/PreferencesUI.py:1928 flatcamGUI/PreferencesUI.py:3146 -#: flatcamGUI/PreferencesUI.py:3984 +#: flatcamGUI/PreferencesUI.py:1929 flatcamGUI/PreferencesUI.py:3147 +#: flatcamGUI/PreferencesUI.py:3985 msgid "Diameters of the cutting tools, separated by ','" msgstr "Диаметры режущих инструментов, разделенные знаком ','" -#: flatcamGUI/PreferencesUI.py:1934 +#: flatcamGUI/PreferencesUI.py:1935 msgid "Linear Pad Array" msgstr "Линейный массив площадок" -#: flatcamGUI/PreferencesUI.py:1938 flatcamGUI/PreferencesUI.py:2878 -#: flatcamGUI/PreferencesUI.py:3026 +#: flatcamGUI/PreferencesUI.py:1939 flatcamGUI/PreferencesUI.py:2879 +#: flatcamGUI/PreferencesUI.py:3027 msgid "Linear Direction" msgstr "Линейное направление" -#: flatcamGUI/PreferencesUI.py:1978 +#: flatcamGUI/PreferencesUI.py:1979 msgid "Circular Pad Array" msgstr "Круговая матрица" -#: flatcamGUI/PreferencesUI.py:1982 flatcamGUI/PreferencesUI.py:2924 -#: flatcamGUI/PreferencesUI.py:3074 +#: flatcamGUI/PreferencesUI.py:1983 flatcamGUI/PreferencesUI.py:2925 +#: flatcamGUI/PreferencesUI.py:3075 msgid "Circular Direction" msgstr "Круговое направление" -#: flatcamGUI/PreferencesUI.py:1984 flatcamGUI/PreferencesUI.py:2926 -#: flatcamGUI/PreferencesUI.py:3076 +#: flatcamGUI/PreferencesUI.py:1985 flatcamGUI/PreferencesUI.py:2927 +#: flatcamGUI/PreferencesUI.py:3077 msgid "" "Direction for circular array.\n" "Can be CW = clockwise or CCW = counter clockwise." @@ -9683,48 +9683,48 @@ msgstr "" "Направление для кругового массива.\n" "Может быть CW = по часовой стрелке или CCW = против часовой стрелки." -#: flatcamGUI/PreferencesUI.py:1995 flatcamGUI/PreferencesUI.py:2937 -#: flatcamGUI/PreferencesUI.py:3087 +#: flatcamGUI/PreferencesUI.py:1996 flatcamGUI/PreferencesUI.py:2938 +#: flatcamGUI/PreferencesUI.py:3088 msgid "Circular Angle" msgstr "Угол закругления" -#: flatcamGUI/PreferencesUI.py:2014 +#: flatcamGUI/PreferencesUI.py:2015 msgid "Distance at which to buffer the Gerber element." msgstr "Расстояние, на котором буферизуется элемент Gerber." -#: flatcamGUI/PreferencesUI.py:2023 +#: flatcamGUI/PreferencesUI.py:2024 msgid "Scale Tool" msgstr "Масштаб" -#: flatcamGUI/PreferencesUI.py:2029 +#: flatcamGUI/PreferencesUI.py:2030 msgid "Factor to scale the Gerber element." msgstr "Коэффициент масштабирования для элемента Gerber." -#: flatcamGUI/PreferencesUI.py:2042 +#: flatcamGUI/PreferencesUI.py:2043 msgid "Threshold low" msgstr "Низкий порог" -#: flatcamGUI/PreferencesUI.py:2044 +#: flatcamGUI/PreferencesUI.py:2045 msgid "Threshold value under which the apertures are not marked." msgstr "Пороговое значение, ниже которого отверстия не отмечены." -#: flatcamGUI/PreferencesUI.py:2054 +#: flatcamGUI/PreferencesUI.py:2055 msgid "Threshold high" msgstr "Высокий порог" -#: flatcamGUI/PreferencesUI.py:2056 +#: flatcamGUI/PreferencesUI.py:2057 msgid "Threshold value over which the apertures are not marked." msgstr "Пороговое значение, выше которого отверстия не отмечены." -#: flatcamGUI/PreferencesUI.py:2074 +#: flatcamGUI/PreferencesUI.py:2075 msgid "Excellon General" msgstr "Excellon основные" -#: flatcamGUI/PreferencesUI.py:2097 +#: flatcamGUI/PreferencesUI.py:2098 msgid "Excellon Format" msgstr "Формат Excellon" -#: flatcamGUI/PreferencesUI.py:2099 +#: flatcamGUI/PreferencesUI.py:2100 msgid "" "The NC drill files, usually named Excellon files\n" "are files that can be found in different formats.\n" @@ -9765,12 +9765,12 @@ msgstr "" "Sprint Layout 2:4 INCH LZ\n" "KiCAD 3:5 INCH TZ" -#: flatcamGUI/PreferencesUI.py:2127 +#: flatcamGUI/PreferencesUI.py:2128 msgid "Default values for INCH are 2:4" msgstr "Значения по умолчанию для ДЮЙМОВОЙ 2:4" -#: flatcamGUI/PreferencesUI.py:2134 flatcamGUI/PreferencesUI.py:2165 -#: flatcamGUI/PreferencesUI.py:2714 +#: flatcamGUI/PreferencesUI.py:2135 flatcamGUI/PreferencesUI.py:2166 +#: flatcamGUI/PreferencesUI.py:2715 msgid "" "This numbers signify the number of digits in\n" "the whole part of Excellon coordinates." @@ -9778,8 +9778,8 @@ msgstr "" "Эти числа обозначают количество цифр в\n" "целая часть Excellon координат." -#: flatcamGUI/PreferencesUI.py:2147 flatcamGUI/PreferencesUI.py:2178 -#: flatcamGUI/PreferencesUI.py:2727 +#: flatcamGUI/PreferencesUI.py:2148 flatcamGUI/PreferencesUI.py:2179 +#: flatcamGUI/PreferencesUI.py:2728 msgid "" "This numbers signify the number of digits in\n" "the decimal part of Excellon coordinates." @@ -9787,19 +9787,19 @@ msgstr "" "Эти числа обозначают количество цифр в\n" "десятичная часть Excellon координат." -#: flatcamGUI/PreferencesUI.py:2155 +#: flatcamGUI/PreferencesUI.py:2156 msgid "METRIC" msgstr "МЕТРИЧЕСКАЯ" -#: flatcamGUI/PreferencesUI.py:2158 +#: flatcamGUI/PreferencesUI.py:2159 msgid "Default values for METRIC are 3:3" msgstr "Значения по умолчанию для МЕТРИЧЕСКОЙ 3: 3" -#: flatcamGUI/PreferencesUI.py:2187 +#: flatcamGUI/PreferencesUI.py:2188 msgid "Default Zeros" msgstr "Умолчания Нули" -#: flatcamGUI/PreferencesUI.py:2190 flatcamGUI/PreferencesUI.py:2762 +#: flatcamGUI/PreferencesUI.py:2191 flatcamGUI/PreferencesUI.py:2763 msgid "" "This sets the type of Excellon zeros.\n" "If LZ then Leading Zeros are kept and\n" @@ -9813,7 +9813,7 @@ msgstr "" "Если TZ установлен, то конечные нули сохраняются\n" "и ведущие нули удаляются." -#: flatcamGUI/PreferencesUI.py:2201 +#: flatcamGUI/PreferencesUI.py:2202 msgid "" "This sets the default type of Excellon zeros.\n" "If it is not detected in the parsed file the value here\n" @@ -9829,11 +9829,11 @@ msgstr "" "Если TZ установлен, то конечные нули сохраняются\n" "и ведущие нули удаляются." -#: flatcamGUI/PreferencesUI.py:2211 +#: flatcamGUI/PreferencesUI.py:2212 msgid "Default Units" msgstr "Умолчания Единицы" -#: flatcamGUI/PreferencesUI.py:2214 +#: flatcamGUI/PreferencesUI.py:2215 msgid "" "This sets the default units of Excellon files.\n" "If it is not detected in the parsed file the value here\n" @@ -9845,7 +9845,7 @@ msgstr "" "будем использовать.Некоторые файлы Excellon не имеют заголовка\n" "поэтому этот параметр будет использоваться." -#: flatcamGUI/PreferencesUI.py:2225 +#: flatcamGUI/PreferencesUI.py:2226 msgid "" "This sets the units of Excellon files.\n" "Some Excellon files don't have an header\n" @@ -9855,19 +9855,19 @@ msgstr "" "Некоторые файлы Excellon не имеют заголовка\n" "поэтому этот параметр будет использоваться." -#: flatcamGUI/PreferencesUI.py:2231 +#: flatcamGUI/PreferencesUI.py:2232 msgid "Update Export settings" msgstr "Обновить настройки экспорта" -#: flatcamGUI/PreferencesUI.py:2239 +#: flatcamGUI/PreferencesUI.py:2240 msgid "Excellon Optimization" msgstr "Оптимизация Excellon" -#: flatcamGUI/PreferencesUI.py:2242 +#: flatcamGUI/PreferencesUI.py:2243 msgid "Algorithm:" msgstr "Алгоритм:" -#: flatcamGUI/PreferencesUI.py:2244 flatcamGUI/PreferencesUI.py:2261 +#: flatcamGUI/PreferencesUI.py:2245 flatcamGUI/PreferencesUI.py:2262 msgid "" "This sets the optimization type for the Excellon drill path.\n" "If <> is checked then Google OR-Tools algorithm with\n" @@ -9892,19 +9892,19 @@ msgstr "" "используется\n" "алгоритм Travelling Salesman для оптимизации пути." -#: flatcamGUI/PreferencesUI.py:2256 +#: flatcamGUI/PreferencesUI.py:2257 msgid "MetaHeuristic" msgstr "Метаэвристический" -#: flatcamGUI/PreferencesUI.py:2258 +#: flatcamGUI/PreferencesUI.py:2259 msgid "TSA" msgstr "TSA" -#: flatcamGUI/PreferencesUI.py:2273 +#: flatcamGUI/PreferencesUI.py:2274 msgid "Optimization Time" msgstr "Время оптимизации" -#: flatcamGUI/PreferencesUI.py:2276 +#: flatcamGUI/PreferencesUI.py:2277 msgid "" "When OR-Tools Metaheuristic (MH) is enabled there is a\n" "maximum threshold for how much time is spent doing the\n" @@ -9916,11 +9916,11 @@ msgstr "" "оптимизация пути. Максимальная продолжительность устанавливается здесь.\n" "В секундах." -#: flatcamGUI/PreferencesUI.py:2319 +#: flatcamGUI/PreferencesUI.py:2320 msgid "Excellon Options" msgstr "Параметры Excellon" -#: flatcamGUI/PreferencesUI.py:2325 +#: flatcamGUI/PreferencesUI.py:2326 msgid "" "Parameters used to create a CNC Job object\n" "for this drill object." @@ -9928,11 +9928,11 @@ msgstr "" "Параметры, используемые для создания объекта задания ЧПУ\n" "для этого сверлите объект." -#: flatcamGUI/PreferencesUI.py:2444 flatcamGUI/PreferencesUI.py:3358 +#: flatcamGUI/PreferencesUI.py:2445 flatcamGUI/PreferencesUI.py:3359 msgid "Duration" msgstr "Продолжительность" -#: flatcamGUI/PreferencesUI.py:2474 +#: flatcamGUI/PreferencesUI.py:2475 msgid "" "Choose what to use for GCode generation:\n" "'Drills', 'Slots' or 'Both'.\n" @@ -9944,19 +9944,19 @@ msgstr "" "При выборе \"Пазы\" или \"Оба\", пазы будут\n" "преобразованы в отверстия." -#: flatcamGUI/PreferencesUI.py:2492 +#: flatcamGUI/PreferencesUI.py:2493 msgid "Create Geometry for milling holes." msgstr "Создание объекта геометрии для фрезерования отверстий." -#: flatcamGUI/PreferencesUI.py:2524 +#: flatcamGUI/PreferencesUI.py:2525 msgid "Defaults" msgstr "Значения по умолчанию" -#: flatcamGUI/PreferencesUI.py:2537 +#: flatcamGUI/PreferencesUI.py:2538 msgid "Excellon Adv. Options" msgstr "Excellon дополнительные" -#: flatcamGUI/PreferencesUI.py:2546 +#: flatcamGUI/PreferencesUI.py:2547 msgid "" "A list of Excellon advanced parameters.\n" "Those parameters are available only for\n" @@ -9966,19 +9966,19 @@ msgstr "" "Эти параметры доступны только для\n" "расширенного режима приложения." -#: flatcamGUI/PreferencesUI.py:2567 +#: flatcamGUI/PreferencesUI.py:2568 msgid "Toolchange X,Y" msgstr "Смена инструмента X,Y" -#: flatcamGUI/PreferencesUI.py:2569 flatcamGUI/PreferencesUI.py:3413 +#: flatcamGUI/PreferencesUI.py:2570 flatcamGUI/PreferencesUI.py:3414 msgid "Toolchange X,Y position." msgstr "Позиция X,Y смены инструмента." -#: flatcamGUI/PreferencesUI.py:2626 flatcamGUI/PreferencesUI.py:3500 +#: flatcamGUI/PreferencesUI.py:2627 flatcamGUI/PreferencesUI.py:3501 msgid "Spindle direction" msgstr "Направление вращения шпинделя" -#: flatcamGUI/PreferencesUI.py:2628 flatcamGUI/PreferencesUI.py:3502 +#: flatcamGUI/PreferencesUI.py:2629 flatcamGUI/PreferencesUI.py:3503 msgid "" "This sets the direction that the spindle is rotating.\n" "It can be either:\n" @@ -9990,11 +9990,11 @@ msgstr "" "- CW = по часовой стрелке или\n" "- CCW = против часовой стрелки" -#: flatcamGUI/PreferencesUI.py:2639 flatcamGUI/PreferencesUI.py:3514 +#: flatcamGUI/PreferencesUI.py:2640 flatcamGUI/PreferencesUI.py:3515 msgid "Fast Plunge" msgstr "Быстрый подвод" -#: flatcamGUI/PreferencesUI.py:2641 flatcamGUI/PreferencesUI.py:3516 +#: flatcamGUI/PreferencesUI.py:2642 flatcamGUI/PreferencesUI.py:3517 msgid "" "By checking this, the vertical move from\n" "Z_Toolchange to Z_move is done with G0,\n" @@ -10006,11 +10006,11 @@ msgstr "" "это означает самую быструю скорость.\n" "Предупреждение: перемещение выполняется при смене координат Toolchange X,Y." -#: flatcamGUI/PreferencesUI.py:2650 +#: flatcamGUI/PreferencesUI.py:2651 msgid "Fast Retract" msgstr "Быстрый отвод" -#: flatcamGUI/PreferencesUI.py:2652 +#: flatcamGUI/PreferencesUI.py:2653 msgid "" "Exit hole strategy.\n" " - When uncheked, while exiting the drilled hole the drill bit\n" @@ -10028,11 +10028,11 @@ msgstr "" " - Когда проверено перемещение от Z_cut(глубины отрезка) к Z_move\n" "(высота перемещения) делается как можно быстрее (G0) за один ход." -#: flatcamGUI/PreferencesUI.py:2671 +#: flatcamGUI/PreferencesUI.py:2672 msgid "Excellon Export" msgstr "Экспорт Excellon" -#: flatcamGUI/PreferencesUI.py:2677 +#: flatcamGUI/PreferencesUI.py:2678 msgid "" "The parameters set here are used in the file exported\n" "when using the File -> Export -> Export Excellon menu entry." @@ -10040,11 +10040,11 @@ msgstr "" "Заданные здесь параметры используются в экспортированном файле\n" "при использовании файла - > экспорт - > Экспорт Excellon пункт меню." -#: flatcamGUI/PreferencesUI.py:2688 flatcamGUI/PreferencesUI.py:2694 +#: flatcamGUI/PreferencesUI.py:2689 flatcamGUI/PreferencesUI.py:2695 msgid "The units used in the Excellon file." msgstr "Единицы измерения, используемые в файле Excellon." -#: flatcamGUI/PreferencesUI.py:2702 +#: flatcamGUI/PreferencesUI.py:2703 msgid "" "The NC drill files, usually named Excellon files\n" "are files that can be found in different formats.\n" @@ -10056,11 +10056,11 @@ msgstr "" "Здесь мы устанавливаем формат, используемый, когда\n" "координаты не используют точку." -#: flatcamGUI/PreferencesUI.py:2736 +#: flatcamGUI/PreferencesUI.py:2737 msgid "Format" msgstr "Формат" -#: flatcamGUI/PreferencesUI.py:2738 flatcamGUI/PreferencesUI.py:2748 +#: flatcamGUI/PreferencesUI.py:2739 flatcamGUI/PreferencesUI.py:2749 msgid "" "Select the kind of coordinates format used.\n" "Coordinates can be saved with decimal point or without.\n" @@ -10076,15 +10076,15 @@ msgstr "" "Также это должно быть указано, если LZ = ведущие нули сохраняются\n" "или TZ = конечные нули сохраняются." -#: flatcamGUI/PreferencesUI.py:2745 +#: flatcamGUI/PreferencesUI.py:2746 msgid "Decimal" msgstr "Десятичный" -#: flatcamGUI/PreferencesUI.py:2746 +#: flatcamGUI/PreferencesUI.py:2747 msgid "No-Decimal" msgstr "Недесятичный" -#: flatcamGUI/PreferencesUI.py:2772 +#: flatcamGUI/PreferencesUI.py:2773 msgid "" "This sets the default type of Excellon zeros.\n" "If LZ then Leading Zeros are kept and\n" @@ -10098,11 +10098,11 @@ msgstr "" "Если проверен TZ, то сохраняются нулевые трейлеры\n" "и ведущие нули удаляются." -#: flatcamGUI/PreferencesUI.py:2782 +#: flatcamGUI/PreferencesUI.py:2783 msgid "Slot type" msgstr "Тип слота" -#: flatcamGUI/PreferencesUI.py:2785 flatcamGUI/PreferencesUI.py:2795 +#: flatcamGUI/PreferencesUI.py:2786 flatcamGUI/PreferencesUI.py:2796 msgid "" "This sets how the slots will be exported.\n" "If ROUTED then the slots will be routed\n" @@ -10116,19 +10116,19 @@ msgstr "" "Если пробурено (G85), пазы будут экспортированы\n" "используя команду сверления пазов (G85)." -#: flatcamGUI/PreferencesUI.py:2792 +#: flatcamGUI/PreferencesUI.py:2793 msgid "Routed" msgstr "Направлен" -#: flatcamGUI/PreferencesUI.py:2793 +#: flatcamGUI/PreferencesUI.py:2794 msgid "Drilled(G85)" msgstr "Пробурено (G85)" -#: flatcamGUI/PreferencesUI.py:2826 +#: flatcamGUI/PreferencesUI.py:2827 msgid "A list of Excellon Editor parameters." msgstr "Список параметров редактора Excellon." -#: flatcamGUI/PreferencesUI.py:2836 +#: flatcamGUI/PreferencesUI.py:2837 msgid "" "Set the number of selected Excellon geometry\n" "items above which the utility geometry\n" @@ -10142,19 +10142,19 @@ msgstr "" "Увеличивает производительность при перемещении\n" "большое количество геометрических элементов." -#: flatcamGUI/PreferencesUI.py:2849 flatcamGUI/PreferencesUI.py:4055 +#: flatcamGUI/PreferencesUI.py:2850 flatcamGUI/PreferencesUI.py:4056 msgid "New Tool Dia" msgstr "Новый диаметр инструмента" -#: flatcamGUI/PreferencesUI.py:2874 +#: flatcamGUI/PreferencesUI.py:2875 msgid "Linear Drill Array" msgstr "Линейный массив отверстий" -#: flatcamGUI/PreferencesUI.py:2920 +#: flatcamGUI/PreferencesUI.py:2921 msgid "Circular Drill Array" msgstr "Круговой массив" -#: flatcamGUI/PreferencesUI.py:2990 +#: flatcamGUI/PreferencesUI.py:2991 msgid "" "Angle at which the slot is placed.\n" "The precision is of max 2 decimals.\n" @@ -10166,19 +10166,19 @@ msgstr "" "Минимальное значение: -359,99 градусов.\n" "Максимальное значение: 360,00 градусов." -#: flatcamGUI/PreferencesUI.py:3009 +#: flatcamGUI/PreferencesUI.py:3010 msgid "Linear Slot Array" msgstr "Линейный массив пазов" -#: flatcamGUI/PreferencesUI.py:3070 +#: flatcamGUI/PreferencesUI.py:3071 msgid "Circular Slot Array" msgstr "Круговой массив пазов" -#: flatcamGUI/PreferencesUI.py:3108 +#: flatcamGUI/PreferencesUI.py:3109 msgid "Geometry General" msgstr "Geometry основные" -#: flatcamGUI/PreferencesUI.py:3130 +#: flatcamGUI/PreferencesUI.py:3131 msgid "" "The number of circle steps for Geometry \n" "circle and arc shapes linear approximation." @@ -10186,11 +10186,11 @@ msgstr "" "Количество шагов круга для геометрии\n" "линейная аппроксимация окружности и дуги." -#: flatcamGUI/PreferencesUI.py:3161 +#: flatcamGUI/PreferencesUI.py:3162 msgid "Geometry Options" msgstr "Параметры Geometry" -#: flatcamGUI/PreferencesUI.py:3169 +#: flatcamGUI/PreferencesUI.py:3170 msgid "" "Create a CNC Job object\n" "tracing the contours of this\n" @@ -10200,11 +10200,11 @@ msgstr "" "контуров данного объекта геометрии\n" "для программы ЧПУ." -#: flatcamGUI/PreferencesUI.py:3211 +#: flatcamGUI/PreferencesUI.py:3212 msgid "Depth/Pass" msgstr "Шаг за проход" -#: flatcamGUI/PreferencesUI.py:3213 +#: flatcamGUI/PreferencesUI.py:3214 msgid "" "The depth to cut on each pass,\n" "when multidepth is enabled.\n" @@ -10218,11 +10218,11 @@ msgstr "" "это доля от глубины\n" "который имеет отрицательное значение." -#: flatcamGUI/PreferencesUI.py:3393 +#: flatcamGUI/PreferencesUI.py:3394 msgid "Geometry Adv. Options" msgstr "Geometry дополнительные" -#: flatcamGUI/PreferencesUI.py:3401 +#: flatcamGUI/PreferencesUI.py:3402 msgid "" "A list of Geometry advanced parameters.\n" "Those parameters are available only for\n" @@ -10232,13 +10232,13 @@ msgstr "" "Эти параметры доступны только для\n" "расширенного режима приложения." -#: flatcamGUI/PreferencesUI.py:3411 flatcamGUI/PreferencesUI.py:5470 -#: flatcamGUI/PreferencesUI.py:6517 flatcamTools/ToolCalibration.py:125 +#: flatcamGUI/PreferencesUI.py:3412 flatcamGUI/PreferencesUI.py:5471 +#: flatcamGUI/PreferencesUI.py:6518 flatcamTools/ToolCalibration.py:125 #: flatcamTools/ToolSolderPaste.py:239 msgid "Toolchange X-Y" msgstr "Смена инструмента X,Y" -#: flatcamGUI/PreferencesUI.py:3422 +#: flatcamGUI/PreferencesUI.py:3423 msgid "" "Height of the tool just after starting the work.\n" "Delete the value if you don't need this feature." @@ -10246,11 +10246,11 @@ msgstr "" "Высота инструмента сразу после начала работы.\n" "Удалить значение если вам не нужна эта функция." -#: flatcamGUI/PreferencesUI.py:3526 +#: flatcamGUI/PreferencesUI.py:3527 msgid "Segment X size" msgstr "Размер сегмента по X" -#: flatcamGUI/PreferencesUI.py:3528 +#: flatcamGUI/PreferencesUI.py:3529 msgid "" "The size of the trace segment on the X axis.\n" "Useful for auto-leveling.\n" @@ -10260,11 +10260,11 @@ msgstr "" "Полезно для автоматического выравнивания.\n" "Значение 0 означает отсутствие сегментации по оси X." -#: flatcamGUI/PreferencesUI.py:3542 +#: flatcamGUI/PreferencesUI.py:3543 msgid "Segment Y size" msgstr "Размер сегмента по Y" -#: flatcamGUI/PreferencesUI.py:3544 +#: flatcamGUI/PreferencesUI.py:3545 msgid "" "The size of the trace segment on the Y axis.\n" "Useful for auto-leveling.\n" @@ -10274,15 +10274,15 @@ msgstr "" "Полезно для автоматического выравнивания.\n" "Значение 0 означает отсутствие сегментации по оси Y." -#: flatcamGUI/PreferencesUI.py:3565 +#: flatcamGUI/PreferencesUI.py:3566 msgid "Geometry Editor" msgstr "Редактор Geometry" -#: flatcamGUI/PreferencesUI.py:3571 +#: flatcamGUI/PreferencesUI.py:3572 msgid "A list of Geometry Editor parameters." msgstr "Список параметров редактора Geometry." -#: flatcamGUI/PreferencesUI.py:3581 flatcamGUI/PreferencesUI.py:6042 +#: flatcamGUI/PreferencesUI.py:3582 flatcamGUI/PreferencesUI.py:6043 msgid "" "Set the number of selected geometry\n" "items above which the utility geometry\n" @@ -10296,11 +10296,11 @@ msgstr "" "Увеличивает производительность при перемещении\n" "большое количество геометрических элементов." -#: flatcamGUI/PreferencesUI.py:3613 +#: flatcamGUI/PreferencesUI.py:3614 msgid "CNC Job General" msgstr "CNC Job основные" -#: flatcamGUI/PreferencesUI.py:3666 +#: flatcamGUI/PreferencesUI.py:3667 msgid "" "The number of circle steps for GCode \n" "circle and arc shapes linear approximation." @@ -10308,11 +10308,11 @@ msgstr "" "Число шагов круга для G-код \n" "круг и дуга образуют линейное приближение." -#: flatcamGUI/PreferencesUI.py:3675 +#: flatcamGUI/PreferencesUI.py:3676 msgid "Travel dia" msgstr "Диаметр траектории" -#: flatcamGUI/PreferencesUI.py:3677 +#: flatcamGUI/PreferencesUI.py:3678 msgid "" "The width of the travel lines to be\n" "rendered in the plot." @@ -10320,11 +10320,11 @@ msgstr "" "Диаметр инструмента\n" " для черчения контуров." -#: flatcamGUI/PreferencesUI.py:3693 +#: flatcamGUI/PreferencesUI.py:3694 msgid "Coordinates decimals" msgstr "Координаты десятичные" -#: flatcamGUI/PreferencesUI.py:3695 +#: flatcamGUI/PreferencesUI.py:3696 msgid "" "The number of decimals to be used for \n" "the X, Y, Z coordinates in CNC code (GCODE, etc.)" @@ -10332,11 +10332,11 @@ msgstr "" "Число десятичных знаков, которые будут использоваться для \n" "координаты X, Y, Z в коде CNC (GCODE, и т.д.)" -#: flatcamGUI/PreferencesUI.py:3706 +#: flatcamGUI/PreferencesUI.py:3707 msgid "Feedrate decimals" msgstr "Десятичные скорости подачи" -#: flatcamGUI/PreferencesUI.py:3708 +#: flatcamGUI/PreferencesUI.py:3709 msgid "" "The number of decimals to be used for \n" "the Feedrate parameter in CNC code (GCODE, etc.)" @@ -10344,11 +10344,11 @@ msgstr "" "Число десятичных знаков, которые будут использоваться для \n" "параметра скорости подачи в коде CNC (GCODE, и т.д.)" -#: flatcamGUI/PreferencesUI.py:3719 +#: flatcamGUI/PreferencesUI.py:3720 msgid "Coordinates type" msgstr "Тип координат" -#: flatcamGUI/PreferencesUI.py:3721 +#: flatcamGUI/PreferencesUI.py:3722 msgid "" "The type of coordinates to be used in Gcode.\n" "Can be:\n" @@ -10360,19 +10360,19 @@ msgstr "" "- Абсолютный G90 - > ссылка является началом координат x=0, y=0\n" "- Инкрементальный G91 -> ссылка на предыдущую позицию" -#: flatcamGUI/PreferencesUI.py:3727 +#: flatcamGUI/PreferencesUI.py:3728 msgid "Absolute G90" msgstr "Абсолютный путь G90" -#: flatcamGUI/PreferencesUI.py:3728 +#: flatcamGUI/PreferencesUI.py:3729 msgid "Incremental G91" msgstr "Инкрементальный G91" -#: flatcamGUI/PreferencesUI.py:3738 +#: flatcamGUI/PreferencesUI.py:3739 msgid "Force Windows style line-ending" msgstr "Принудительное завершение строк в стиле Windows" -#: flatcamGUI/PreferencesUI.py:3740 +#: flatcamGUI/PreferencesUI.py:3741 msgid "" "When checked will force a Windows style line-ending\n" "(\\r\\n) on non-Windows OS's." @@ -10381,65 +10381,65 @@ msgstr "" "принудительно завершён\n" "(\\r\\n) в операционных системах, отличных от Windows." -#: flatcamGUI/PreferencesUI.py:3754 +#: flatcamGUI/PreferencesUI.py:3755 msgid "CNC Job Options" msgstr "Параметры CNC Job" -#: flatcamGUI/PreferencesUI.py:3758 +#: flatcamGUI/PreferencesUI.py:3759 msgid "Export G-Code" msgstr "Экспорт G-кода" -#: flatcamGUI/PreferencesUI.py:3774 +#: flatcamGUI/PreferencesUI.py:3775 msgid "Prepend to G-Code" msgstr "Коды предобработки для G-Code" -#: flatcamGUI/PreferencesUI.py:3790 +#: flatcamGUI/PreferencesUI.py:3791 msgid "Append to G-Code" msgstr "Коды постобработки для G-Code" -#: flatcamGUI/PreferencesUI.py:3816 +#: flatcamGUI/PreferencesUI.py:3817 msgid "CNC Job Adv. Options" msgstr "CNC Job дополнительные" -#: flatcamGUI/PreferencesUI.py:3902 +#: flatcamGUI/PreferencesUI.py:3903 msgid "Z depth for the cut" msgstr "Z глубина распила" -#: flatcamGUI/PreferencesUI.py:3903 +#: flatcamGUI/PreferencesUI.py:3904 msgid "Z height for travel" msgstr "Высота Z для перемещения" -#: flatcamGUI/PreferencesUI.py:3909 +#: flatcamGUI/PreferencesUI.py:3910 msgid "dwelltime = time to dwell to allow the spindle to reach it's set RPM" msgstr "" "dwelltime = время, чтобы остановиться, чтобы позволить шпинделю достичь его " "установлен об / мин" -#: flatcamGUI/PreferencesUI.py:3928 +#: flatcamGUI/PreferencesUI.py:3929 msgid "Annotation Size" msgstr "Размер примечаний" -#: flatcamGUI/PreferencesUI.py:3930 +#: flatcamGUI/PreferencesUI.py:3931 msgid "The font size of the annotation text. In pixels." msgstr "Размер шрифта текста примечаний. В пикселях." -#: flatcamGUI/PreferencesUI.py:3940 +#: flatcamGUI/PreferencesUI.py:3941 msgid "Annotation Color" msgstr "Цвет примечаний" -#: flatcamGUI/PreferencesUI.py:3942 +#: flatcamGUI/PreferencesUI.py:3943 msgid "Set the font color for the annotation texts." msgstr "Устанавливает цвет шрифта для текста примечаний." -#: flatcamGUI/PreferencesUI.py:3968 +#: flatcamGUI/PreferencesUI.py:3969 msgid "NCC Tool Options" msgstr "Очистка меди" -#: flatcamGUI/PreferencesUI.py:3982 flatcamGUI/PreferencesUI.py:5380 +#: flatcamGUI/PreferencesUI.py:3983 flatcamGUI/PreferencesUI.py:5381 msgid "Tools dia" msgstr "Диаметр инструмента" -#: flatcamGUI/PreferencesUI.py:3993 flatcamGUI/PreferencesUI.py:4001 +#: flatcamGUI/PreferencesUI.py:3994 flatcamGUI/PreferencesUI.py:4002 #: flatcamTools/ToolNonCopperClear.py:215 #: flatcamTools/ToolNonCopperClear.py:223 msgid "" @@ -10451,11 +10451,11 @@ msgstr "" "- \"V-образная форма\" \n" "- Круглый" -#: flatcamGUI/PreferencesUI.py:3998 flatcamTools/ToolNonCopperClear.py:220 +#: flatcamGUI/PreferencesUI.py:3999 flatcamTools/ToolNonCopperClear.py:220 msgid "V-shape" msgstr "V-образный инструмент" -#: flatcamGUI/PreferencesUI.py:4038 flatcamGUI/PreferencesUI.py:4047 +#: flatcamGUI/PreferencesUI.py:4039 flatcamGUI/PreferencesUI.py:4048 #: flatcamTools/ToolNonCopperClear.py:256 #: flatcamTools/ToolNonCopperClear.py:264 msgid "" @@ -10465,12 +10465,12 @@ msgstr "" "Диаметр инструмента. Это значение (в текущих единицах FlatCAM) \n" "ширины разреза в материале." -#: flatcamGUI/PreferencesUI.py:4057 +#: flatcamGUI/PreferencesUI.py:4058 msgid "The new tool diameter (cut width) to add in the tool table." msgstr "" "Диаметр нового инструмента (ширина разреза) добавлен в таблицу инструментов." -#: flatcamGUI/PreferencesUI.py:4069 flatcamGUI/PreferencesUI.py:4077 +#: flatcamGUI/PreferencesUI.py:4070 flatcamGUI/PreferencesUI.py:4078 #: flatcamTools/ToolNonCopperClear.py:164 #: flatcamTools/ToolNonCopperClear.py:172 msgid "" @@ -10483,13 +10483,13 @@ msgstr "" "использования инструмента\n" "- conventional / полезен, когда нет компенсации люфта" -#: flatcamGUI/PreferencesUI.py:4086 flatcamGUI/PreferencesUI.py:4511 +#: flatcamGUI/PreferencesUI.py:4087 flatcamGUI/PreferencesUI.py:4512 #: flatcamTools/ToolNonCopperClear.py:181 flatcamTools/ToolPaint.py:153 msgid "Tool order" msgstr "Порядок инструмента" -#: flatcamGUI/PreferencesUI.py:4087 flatcamGUI/PreferencesUI.py:4097 -#: flatcamGUI/PreferencesUI.py:4512 flatcamGUI/PreferencesUI.py:4522 +#: flatcamGUI/PreferencesUI.py:4088 flatcamGUI/PreferencesUI.py:4098 +#: flatcamGUI/PreferencesUI.py:4513 flatcamGUI/PreferencesUI.py:4523 #: flatcamTools/ToolNonCopperClear.py:182 #: flatcamTools/ToolNonCopperClear.py:192 flatcamTools/ToolPaint.py:154 #: flatcamTools/ToolPaint.py:164 @@ -10514,17 +10514,17 @@ msgstr "" "установит порядок\n" "на 'Обратный' и отключит этот элемент управления." -#: flatcamGUI/PreferencesUI.py:4095 flatcamGUI/PreferencesUI.py:4520 +#: flatcamGUI/PreferencesUI.py:4096 flatcamGUI/PreferencesUI.py:4521 #: flatcamTools/ToolNonCopperClear.py:190 flatcamTools/ToolPaint.py:162 msgid "Forward" msgstr "Прямой" -#: flatcamGUI/PreferencesUI.py:4096 flatcamGUI/PreferencesUI.py:4521 +#: flatcamGUI/PreferencesUI.py:4097 flatcamGUI/PreferencesUI.py:4522 #: flatcamTools/ToolNonCopperClear.py:191 flatcamTools/ToolPaint.py:163 msgid "Reverse" msgstr "Обратный" -#: flatcamGUI/PreferencesUI.py:4109 flatcamTools/ToolNonCopperClear.py:321 +#: flatcamGUI/PreferencesUI.py:4110 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" @@ -10544,14 +10544,14 @@ msgstr "" "Более высокие значения = медленная обработка и медленное выполнение на ЧПУ\n" "из-за большого количества путей." -#: flatcamGUI/PreferencesUI.py:4128 flatcamGUI/PreferencesUI.py:6108 -#: flatcamGUI/PreferencesUI.py:6350 flatcamGUI/PreferencesUI.py:6414 +#: flatcamGUI/PreferencesUI.py:4129 flatcamGUI/PreferencesUI.py:6109 +#: flatcamGUI/PreferencesUI.py:6351 flatcamGUI/PreferencesUI.py:6415 #: flatcamTools/ToolCopperThieving.py:113 flatcamTools/ToolFiducials.py:174 #: flatcamTools/ToolFiducials.py:237 flatcamTools/ToolNonCopperClear.py:339 msgid "Bounding box margin." msgstr "Граница рамки." -#: flatcamGUI/PreferencesUI.py:4141 flatcamGUI/PreferencesUI.py:4569 +#: flatcamGUI/PreferencesUI.py:4142 flatcamGUI/PreferencesUI.py:4570 #: flatcamTools/ToolNonCopperClear.py:350 msgid "" "Algorithm for non-copper clearing:
Standard: Fixed step inwards." @@ -10562,22 +10562,22 @@ msgstr "" "контурами, повторяющими контур полигона.
По кругу: Обработка " "правильными окружностями.
Линейный: Паралельными линиями." -#: flatcamGUI/PreferencesUI.py:4157 flatcamGUI/PreferencesUI.py:4583 +#: flatcamGUI/PreferencesUI.py:4158 flatcamGUI/PreferencesUI.py:4584 #: flatcamTools/ToolNonCopperClear.py:364 flatcamTools/ToolPaint.py:267 msgid "Connect" msgstr "Подключение" -#: flatcamGUI/PreferencesUI.py:4168 flatcamGUI/PreferencesUI.py:4593 +#: flatcamGUI/PreferencesUI.py:4169 flatcamGUI/PreferencesUI.py:4594 #: flatcamTools/ToolNonCopperClear.py:373 flatcamTools/ToolPaint.py:276 msgid "Contour" msgstr "Контур" -#: flatcamGUI/PreferencesUI.py:4179 flatcamTools/ToolNonCopperClear.py:382 +#: flatcamGUI/PreferencesUI.py:4180 flatcamTools/ToolNonCopperClear.py:382 #: flatcamTools/ToolPaint.py:285 msgid "Rest M." msgstr "Обработка остаточного припуска" -#: flatcamGUI/PreferencesUI.py:4181 flatcamTools/ToolNonCopperClear.py:384 +#: flatcamGUI/PreferencesUI.py:4182 flatcamTools/ToolNonCopperClear.py:384 msgid "" "If checked, use 'rest machining'.\n" "Basically it will clear copper outside PCB features,\n" @@ -10595,7 +10595,7 @@ msgstr "" "больше не останется меди для очистки или больше не будет инструментов.\n" "Если флажок не установлен, используется стандартный алгоритм." -#: flatcamGUI/PreferencesUI.py:4197 flatcamTools/ToolNonCopperClear.py:399 +#: flatcamGUI/PreferencesUI.py:4198 flatcamTools/ToolNonCopperClear.py:399 #: flatcamTools/ToolNonCopperClear.py:411 msgid "" "If used, it will add an offset to the copper features.\n" @@ -10608,11 +10608,11 @@ msgstr "" "из медных штучек.\n" "Значение может быть от 0 до 10 единиц FlatCAM." -#: flatcamGUI/PreferencesUI.py:4208 flatcamTools/ToolNonCopperClear.py:409 +#: flatcamGUI/PreferencesUI.py:4209 flatcamTools/ToolNonCopperClear.py:409 msgid "Offset value" msgstr "Значение смещения" -#: flatcamGUI/PreferencesUI.py:4210 +#: flatcamGUI/PreferencesUI.py:4211 msgid "" "If used, it will add an offset to the copper features.\n" "The copper clearing will finish to a distance\n" @@ -10625,26 +10625,26 @@ msgstr "" "Это значение может находиться в диапазоне от 0,0 до 9999,9 единиц измерения " "FlatCAM." -#: flatcamGUI/PreferencesUI.py:4225 flatcamGUI/PreferencesUI.py:6120 +#: flatcamGUI/PreferencesUI.py:4226 flatcamGUI/PreferencesUI.py:6121 #: flatcamTools/ToolCopperThieving.py:125 #: flatcamTools/ToolNonCopperClear.py:435 msgid "Itself" msgstr "Как есть" -#: flatcamGUI/PreferencesUI.py:4226 flatcamGUI/PreferencesUI.py:4615 +#: flatcamGUI/PreferencesUI.py:4227 flatcamGUI/PreferencesUI.py:4616 msgid "Area" msgstr "Площадь" -#: flatcamGUI/PreferencesUI.py:4227 flatcamGUI/PreferencesUI.py:4617 +#: flatcamGUI/PreferencesUI.py:4228 flatcamGUI/PreferencesUI.py:4618 msgid "Ref" msgstr "Ссылка" -#: flatcamGUI/PreferencesUI.py:4228 flatcamGUI/PreferencesUI.py:4794 +#: flatcamGUI/PreferencesUI.py:4229 flatcamGUI/PreferencesUI.py:4795 #: flatcamTools/ToolFilm.py:219 msgid "Reference" msgstr "Ссылка" -#: flatcamGUI/PreferencesUI.py:4230 +#: flatcamGUI/PreferencesUI.py:4231 msgid "" "- 'Itself' - the non copper clearing extent\n" "is based on the object that is copper cleared.\n" @@ -10664,19 +10664,19 @@ msgstr "" "- 'Референсный объект' - будет выполнять очистку от меди в области\n" "указанной другим объектом." -#: flatcamGUI/PreferencesUI.py:4242 flatcamGUI/PreferencesUI.py:4623 +#: flatcamGUI/PreferencesUI.py:4243 flatcamGUI/PreferencesUI.py:4624 msgid "Normal" msgstr "Нормальный" -#: flatcamGUI/PreferencesUI.py:4243 flatcamGUI/PreferencesUI.py:4624 +#: flatcamGUI/PreferencesUI.py:4244 flatcamGUI/PreferencesUI.py:4625 msgid "Progressive" msgstr "Последовательный" -#: flatcamGUI/PreferencesUI.py:4244 +#: flatcamGUI/PreferencesUI.py:4245 msgid "NCC Plotting" msgstr "Прорисовка очистки от меди" -#: flatcamGUI/PreferencesUI.py:4246 +#: flatcamGUI/PreferencesUI.py:4247 msgid "" "- 'Normal' - normal plotting, done at the end of the NCC job\n" "- 'Progressive' - after each shape is generated it will be plotted." @@ -10686,16 +10686,16 @@ msgstr "" "- 'Последовательный' - после создания каждой фигуры она будет нанесена на " "график." -#: flatcamGUI/PreferencesUI.py:4260 +#: flatcamGUI/PreferencesUI.py:4261 msgid "Cutout Tool Options" msgstr "Обрезка платы" -#: flatcamGUI/PreferencesUI.py:4275 flatcamTools/ToolCalculators.py:123 +#: flatcamGUI/PreferencesUI.py:4276 flatcamTools/ToolCalculators.py:123 #: flatcamTools/ToolCutOut.py:123 msgid "Tool Diameter" msgstr "Диаметр инструмента" -#: flatcamGUI/PreferencesUI.py:4277 flatcamTools/ToolCutOut.py:125 +#: flatcamGUI/PreferencesUI.py:4278 flatcamTools/ToolCutOut.py:125 msgid "" "Diameter of the tool used to cutout\n" "the PCB shape out of the surrounding material." @@ -10703,11 +10703,11 @@ msgstr "" "Диаметр инструмента, используемого для вырезания\n" "форма печатной платы из окружающего материала." -#: flatcamGUI/PreferencesUI.py:4332 flatcamTools/ToolCutOut.py:104 +#: flatcamGUI/PreferencesUI.py:4333 flatcamTools/ToolCutOut.py:104 msgid "Object kind" msgstr "Вид объекта" -#: flatcamGUI/PreferencesUI.py:4334 flatcamTools/ToolCutOut.py:106 +#: flatcamGUI/PreferencesUI.py:4335 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 " @@ -10719,15 +10719,15 @@ msgstr "" "Гербера PCB панели, который сделан\n" "из множества отдельных печатных плат очертания." -#: flatcamGUI/PreferencesUI.py:4341 flatcamTools/ToolCutOut.py:112 +#: flatcamGUI/PreferencesUI.py:4342 flatcamTools/ToolCutOut.py:112 msgid "Single" msgstr "Одиночный" -#: flatcamGUI/PreferencesUI.py:4342 flatcamTools/ToolCutOut.py:113 +#: flatcamGUI/PreferencesUI.py:4343 flatcamTools/ToolCutOut.py:113 msgid "Panel" msgstr "Панель" -#: flatcamGUI/PreferencesUI.py:4349 flatcamTools/ToolCutOut.py:184 +#: flatcamGUI/PreferencesUI.py:4350 flatcamTools/ToolCutOut.py:184 msgid "" "Margin over bounds. A positive value here\n" "will make the cutout of the PCB further from\n" @@ -10737,11 +10737,11 @@ msgstr "" "сделает вырез печатной платы дальше от\n" "фактической границы печатной платы" -#: flatcamGUI/PreferencesUI.py:4362 flatcamTools/ToolCutOut.py:195 +#: flatcamGUI/PreferencesUI.py:4363 flatcamTools/ToolCutOut.py:195 msgid "Gap size" msgstr "Размер перемычки" -#: flatcamGUI/PreferencesUI.py:4364 flatcamTools/ToolCutOut.py:197 +#: flatcamGUI/PreferencesUI.py:4365 flatcamTools/ToolCutOut.py:197 msgid "" "The size of the bridge gaps in the cutout\n" "used to keep the board connected to\n" @@ -10753,11 +10753,11 @@ msgstr "" "окружающий материал (тот самый \n" "из которого вырезается печатная плата)." -#: flatcamGUI/PreferencesUI.py:4378 flatcamTools/ToolCutOut.py:239 +#: flatcamGUI/PreferencesUI.py:4379 flatcamTools/ToolCutOut.py:239 msgid "Gaps" msgstr "Вариант" -#: flatcamGUI/PreferencesUI.py:4380 +#: flatcamGUI/PreferencesUI.py:4381 msgid "" "Number of gaps used for the cutout.\n" "There can be maximum 8 bridges/gaps.\n" @@ -10781,11 +10781,11 @@ msgstr "" "- 2tb - 2*сверху + 2*снизу \n" "- 8 - 2*слева + 2*справа + 2*сверху + 2*снизу" -#: flatcamGUI/PreferencesUI.py:4403 +#: flatcamGUI/PreferencesUI.py:4404 msgid "Convex Sh." msgstr "Закруглять углы" -#: flatcamGUI/PreferencesUI.py:4405 flatcamTools/ToolCutOut.py:217 +#: flatcamGUI/PreferencesUI.py:4406 flatcamTools/ToolCutOut.py:217 msgid "" "Create a convex shape surrounding the entire PCB.\n" "Used only if the source object type is Gerber." @@ -10793,11 +10793,11 @@ msgstr "" "Создайте выпуклую форму, окружающую всю печатную плату.\n" "Используется только в том случае, если тип исходного объекта-Gerber." -#: flatcamGUI/PreferencesUI.py:4419 +#: flatcamGUI/PreferencesUI.py:4420 msgid "2Sided Tool Options" msgstr "2-х сторонняя плата" -#: flatcamGUI/PreferencesUI.py:4425 +#: flatcamGUI/PreferencesUI.py:4426 msgid "" "A tool to help in creating a double sided\n" "PCB using alignment holes." @@ -10805,36 +10805,36 @@ msgstr "" "Инструмент, помогающий создать двухстороннюю\n" "печатную плату с использованием центрирующих отверстий." -#: flatcamGUI/PreferencesUI.py:4439 flatcamTools/ToolDblSided.py:276 +#: flatcamGUI/PreferencesUI.py:4440 flatcamTools/ToolDblSided.py:276 msgid "Drill dia" msgstr "Диаметр сверла" -#: flatcamGUI/PreferencesUI.py:4441 flatcamTools/ToolDblSided.py:267 +#: flatcamGUI/PreferencesUI.py:4442 flatcamTools/ToolDblSided.py:267 #: flatcamTools/ToolDblSided.py:278 msgid "Diameter of the drill for the alignment holes." msgstr "Диаметр сверла для контрольных отверстий." -#: flatcamGUI/PreferencesUI.py:4450 flatcamTools/ToolDblSided.py:144 +#: flatcamGUI/PreferencesUI.py:4451 flatcamTools/ToolDblSided.py:144 msgid "Mirror Axis:" msgstr "Зеркальное отражение:" -#: flatcamGUI/PreferencesUI.py:4452 flatcamTools/ToolDblSided.py:145 +#: flatcamGUI/PreferencesUI.py:4453 flatcamTools/ToolDblSided.py:145 msgid "Mirror vertically (X) or horizontally (Y)." msgstr "Отразить по вертикали (X) или горизонтали (Y)." -#: flatcamGUI/PreferencesUI.py:4461 flatcamTools/ToolDblSided.py:154 +#: flatcamGUI/PreferencesUI.py:4462 flatcamTools/ToolDblSided.py:154 msgid "Point" msgstr "Точка" -#: flatcamGUI/PreferencesUI.py:4462 flatcamTools/ToolDblSided.py:155 +#: flatcamGUI/PreferencesUI.py:4463 flatcamTools/ToolDblSided.py:155 msgid "Box" msgstr "Рамка" -#: flatcamGUI/PreferencesUI.py:4463 flatcamTools/ToolDblSided.py:156 +#: flatcamGUI/PreferencesUI.py:4464 flatcamTools/ToolDblSided.py:156 msgid "Axis Ref" msgstr "Указатель оси" -#: flatcamGUI/PreferencesUI.py:4465 flatcamTools/ToolDblSided.py:158 +#: flatcamGUI/PreferencesUI.py:4466 flatcamTools/ToolDblSided.py:158 msgid "" "The axis should pass through a point or cut\n" " a specified box (in a FlatCAM object) through \n" @@ -10844,15 +10844,15 @@ msgstr "" "указанный коробка (в объекте FlatCAM) через\n" "центр." -#: flatcamGUI/PreferencesUI.py:4481 +#: flatcamGUI/PreferencesUI.py:4482 msgid "Paint Tool Options" msgstr "Рисование" -#: flatcamGUI/PreferencesUI.py:4487 +#: flatcamGUI/PreferencesUI.py:4488 msgid "Parameters:" msgstr "Параметры:" -#: flatcamGUI/PreferencesUI.py:4605 flatcamTools/ToolPaint.py:302 +#: flatcamGUI/PreferencesUI.py:4606 flatcamTools/ToolPaint.py:302 #: flatcamTools/ToolPaint.py:319 msgid "" "How to select Polygons to be painted.\n" @@ -10878,15 +10878,15 @@ msgstr "" "участка.\n" "указанным другим объектом." -#: flatcamGUI/PreferencesUI.py:4614 +#: flatcamGUI/PreferencesUI.py:4615 msgid "Sel" msgstr "Одиночный" -#: flatcamGUI/PreferencesUI.py:4625 +#: flatcamGUI/PreferencesUI.py:4626 msgid "Paint Plotting" msgstr "Прорисовка рисования" -#: flatcamGUI/PreferencesUI.py:4627 +#: flatcamGUI/PreferencesUI.py:4628 msgid "" "- 'Normal' - normal plotting, done at the end of the Paint job\n" "- 'Progressive' - after each shape is generated it will be plotted." @@ -10896,11 +10896,11 @@ msgstr "" "- 'Последовательный' - после создания каждой фигуры она будет нанесена на " "график." -#: flatcamGUI/PreferencesUI.py:4641 +#: flatcamGUI/PreferencesUI.py:4642 msgid "Film Tool Options" msgstr "Плёнка" -#: flatcamGUI/PreferencesUI.py:4647 +#: flatcamGUI/PreferencesUI.py:4648 msgid "" "Create a PCB film from a Gerber or Geometry\n" "FlatCAM object.\n" @@ -10910,11 +10910,11 @@ msgstr "" "объектов FlatCAM.\n" "Файл сохраняется в формате SVG." -#: flatcamGUI/PreferencesUI.py:4658 +#: flatcamGUI/PreferencesUI.py:4659 msgid "Film Type" msgstr "Тип плёнки" -#: flatcamGUI/PreferencesUI.py:4660 flatcamTools/ToolFilm.py:300 +#: flatcamGUI/PreferencesUI.py:4661 flatcamTools/ToolFilm.py:300 msgid "" "Generate a Positive black film or a Negative film.\n" "Positive means that it will print the features\n" @@ -10930,19 +10930,19 @@ msgstr "" "белым на черном холсте.\n" "Формат плёнки - SVG." -#: flatcamGUI/PreferencesUI.py:4671 +#: flatcamGUI/PreferencesUI.py:4672 msgid "Film Color" msgstr "Цвет пленки" -#: flatcamGUI/PreferencesUI.py:4673 +#: flatcamGUI/PreferencesUI.py:4674 msgid "Set the film color when positive film is selected." msgstr "Устанавливает цвет плёнки при режиме \"Позитив\"." -#: flatcamGUI/PreferencesUI.py:4696 flatcamTools/ToolFilm.py:316 +#: flatcamGUI/PreferencesUI.py:4697 flatcamTools/ToolFilm.py:316 msgid "Border" msgstr "Отступ" -#: flatcamGUI/PreferencesUI.py:4698 flatcamTools/ToolFilm.py:318 +#: flatcamGUI/PreferencesUI.py:4699 flatcamTools/ToolFilm.py:318 msgid "" "Specify a border around the object.\n" "Only for negative film.\n" @@ -10962,11 +10962,11 @@ msgstr "" "и которые могут смешаться с \n" "окружающими, если бы не эта граница." -#: flatcamGUI/PreferencesUI.py:4715 flatcamTools/ToolFilm.py:283 +#: flatcamGUI/PreferencesUI.py:4716 flatcamTools/ToolFilm.py:283 msgid "Scale Stroke" msgstr "Масштаб обводки" -#: flatcamGUI/PreferencesUI.py:4717 flatcamTools/ToolFilm.py:285 +#: flatcamGUI/PreferencesUI.py:4718 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 " @@ -10978,11 +10978,11 @@ msgstr "" "тоньше,\n" "поэтому этот параметр может сильно влиять на мелкие объекты." -#: flatcamGUI/PreferencesUI.py:4724 flatcamTools/ToolFilm.py:141 +#: flatcamGUI/PreferencesUI.py:4725 flatcamTools/ToolFilm.py:141 msgid "Film Adjustments" msgstr "Регулировка Пленки" -#: flatcamGUI/PreferencesUI.py:4726 flatcamTools/ToolFilm.py:143 +#: flatcamGUI/PreferencesUI.py:4727 flatcamTools/ToolFilm.py:143 msgid "" "Sometime the printers will distort the print shape, especially the Laser " "types.\n" @@ -10991,11 +10991,11 @@ msgstr "" "Иногда принтеры могут искажать форму печати, особенно лазерные.\n" "В этом разделе представлены инструменты для компенсации искажений печати." -#: flatcamGUI/PreferencesUI.py:4733 flatcamTools/ToolFilm.py:150 +#: flatcamGUI/PreferencesUI.py:4734 flatcamTools/ToolFilm.py:150 msgid "Scale Film geometry" msgstr "Масштабирование плёнки" -#: flatcamGUI/PreferencesUI.py:4735 flatcamTools/ToolFilm.py:152 +#: flatcamGUI/PreferencesUI.py:4736 flatcamTools/ToolFilm.py:152 msgid "" "A value greater than 1 will stretch the film\n" "while a value less than 1 will jolt it." @@ -11003,21 +11003,21 @@ msgstr "" "Значение больше 1 растянет пленку\n" "в то время как значение меньше 1 будет её сжимать." -#: flatcamGUI/PreferencesUI.py:4745 flatcamGUI/PreferencesUI.py:5265 +#: flatcamGUI/PreferencesUI.py:4746 flatcamGUI/PreferencesUI.py:5266 #: flatcamTools/ToolFilm.py:162 flatcamTools/ToolTransform.py:147 msgid "X factor" msgstr "Коэффициент X" -#: flatcamGUI/PreferencesUI.py:4754 flatcamGUI/PreferencesUI.py:5278 +#: flatcamGUI/PreferencesUI.py:4755 flatcamGUI/PreferencesUI.py:5279 #: flatcamTools/ToolFilm.py:171 flatcamTools/ToolTransform.py:168 msgid "Y factor" msgstr "Коэффициент Y" -#: flatcamGUI/PreferencesUI.py:4764 flatcamTools/ToolFilm.py:189 +#: flatcamGUI/PreferencesUI.py:4765 flatcamTools/ToolFilm.py:189 msgid "Skew Film geometry" msgstr "Наклон плёнки" -#: flatcamGUI/PreferencesUI.py:4766 flatcamTools/ToolFilm.py:191 +#: flatcamGUI/PreferencesUI.py:4767 flatcamTools/ToolFilm.py:191 msgid "" "Positive values will skew to the right\n" "while negative values will skew to the left." @@ -11025,17 +11025,17 @@ msgstr "" "Положительные значения будут смещать вправо,\n" "а отрицательные значения будут смещать влево." -#: flatcamGUI/PreferencesUI.py:4776 flatcamGUI/PreferencesUI.py:5234 +#: flatcamGUI/PreferencesUI.py:4777 flatcamGUI/PreferencesUI.py:5235 #: flatcamTools/ToolFilm.py:201 flatcamTools/ToolTransform.py:97 msgid "X angle" msgstr "Угол наклона X" -#: flatcamGUI/PreferencesUI.py:4785 flatcamGUI/PreferencesUI.py:5248 +#: flatcamGUI/PreferencesUI.py:4786 flatcamGUI/PreferencesUI.py:5249 #: flatcamTools/ToolFilm.py:210 flatcamTools/ToolTransform.py:119 msgid "Y angle" msgstr "Угол наклона Y" -#: flatcamGUI/PreferencesUI.py:4796 flatcamTools/ToolFilm.py:221 +#: flatcamGUI/PreferencesUI.py:4797 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." @@ -11043,57 +11043,57 @@ msgstr "" "Опорная точка, используемая в качестве исходной точки для перекоса.\n" "Это может быть одна из четырех точек геометрии ограничительной рамки." -#: flatcamGUI/PreferencesUI.py:4799 flatcamTools/ToolFiducials.py:87 +#: flatcamGUI/PreferencesUI.py:4800 flatcamTools/ToolFiducials.py:87 #: flatcamTools/ToolFilm.py:224 msgid "Bottom Left" msgstr "Нижний левый" -#: flatcamGUI/PreferencesUI.py:4800 flatcamTools/ToolFilm.py:225 +#: flatcamGUI/PreferencesUI.py:4801 flatcamTools/ToolFilm.py:225 msgid "Top Left" msgstr "Верхний левый" -#: flatcamGUI/PreferencesUI.py:4801 flatcamTools/ToolFilm.py:226 +#: flatcamGUI/PreferencesUI.py:4802 flatcamTools/ToolFilm.py:226 msgid "Bottom Right" msgstr "Нижний правый" -#: flatcamGUI/PreferencesUI.py:4802 flatcamTools/ToolFilm.py:227 +#: flatcamGUI/PreferencesUI.py:4803 flatcamTools/ToolFilm.py:227 msgid "Top right" msgstr "Верхний правый" -#: flatcamGUI/PreferencesUI.py:4810 flatcamTools/ToolFilm.py:244 +#: flatcamGUI/PreferencesUI.py:4811 flatcamTools/ToolFilm.py:244 msgid "Mirror Film geometry" msgstr "Зеркалирование геометрии пленки" -#: flatcamGUI/PreferencesUI.py:4812 flatcamTools/ToolFilm.py:246 +#: flatcamGUI/PreferencesUI.py:4813 flatcamTools/ToolFilm.py:246 msgid "Mirror the film geometry on the selected axis or on both." msgstr "Зеркалирование геометрии пленки на выбранной оси или на обеих." -#: flatcamGUI/PreferencesUI.py:4824 flatcamTools/ToolFilm.py:258 +#: flatcamGUI/PreferencesUI.py:4825 flatcamTools/ToolFilm.py:258 msgid "Both" msgstr "Обе" -#: flatcamGUI/PreferencesUI.py:4826 flatcamTools/ToolFilm.py:260 +#: flatcamGUI/PreferencesUI.py:4827 flatcamTools/ToolFilm.py:260 msgid "Mirror axis" msgstr "Ось зеркалирования" -#: flatcamGUI/PreferencesUI.py:4836 flatcamTools/ToolFilm.py:403 +#: flatcamGUI/PreferencesUI.py:4837 flatcamTools/ToolFilm.py:403 msgid "SVG" msgstr "SVG" -#: flatcamGUI/PreferencesUI.py:4837 flatcamTools/ToolFilm.py:404 +#: flatcamGUI/PreferencesUI.py:4838 flatcamTools/ToolFilm.py:404 msgid "PNG" msgstr "PNG" -#: flatcamGUI/PreferencesUI.py:4838 flatcamTools/ToolFilm.py:405 +#: flatcamGUI/PreferencesUI.py:4839 flatcamTools/ToolFilm.py:405 msgid "PDF" msgstr "PDF" -#: flatcamGUI/PreferencesUI.py:4841 flatcamTools/ToolFilm.py:298 +#: flatcamGUI/PreferencesUI.py:4842 flatcamTools/ToolFilm.py:298 #: flatcamTools/ToolFilm.py:408 msgid "Film Type:" msgstr "Тип плёнки:" -#: flatcamGUI/PreferencesUI.py:4843 flatcamTools/ToolFilm.py:410 +#: flatcamGUI/PreferencesUI.py:4844 flatcamTools/ToolFilm.py:410 msgid "" "The file type of the saved film. Can be:\n" "- 'SVG' -> open-source vectorial format\n" @@ -11105,23 +11105,23 @@ msgstr "" "- 'PNG' -> растровое изображение\n" "- 'PDF' -> формат портативного документа" -#: flatcamGUI/PreferencesUI.py:4852 flatcamTools/ToolFilm.py:419 +#: flatcamGUI/PreferencesUI.py:4853 flatcamTools/ToolFilm.py:419 msgid "Page Orientation" msgstr "Ориентация страницы" -#: flatcamGUI/PreferencesUI.py:4865 flatcamTools/ToolFilm.py:432 +#: flatcamGUI/PreferencesUI.py:4866 flatcamTools/ToolFilm.py:432 msgid "Page Size" msgstr "Размер страницы" -#: flatcamGUI/PreferencesUI.py:4866 flatcamTools/ToolFilm.py:433 +#: flatcamGUI/PreferencesUI.py:4867 flatcamTools/ToolFilm.py:433 msgid "A selection of standard ISO 216 page sizes." msgstr "Выбор стандартных размеров страниц ISO 216." -#: flatcamGUI/PreferencesUI.py:4938 +#: flatcamGUI/PreferencesUI.py:4939 msgid "Panelize Tool Options" msgstr "Панелизация" -#: flatcamGUI/PreferencesUI.py:4944 +#: flatcamGUI/PreferencesUI.py:4945 msgid "" "Create an object that contains an array of (x, y) elements,\n" "each element is a copy of the source object spaced\n" @@ -11131,11 +11131,11 @@ msgstr "" "каждый элемент является копией исходного объекта с интервалом\n" "на расстоянии X, Y расстояние друг от друга." -#: flatcamGUI/PreferencesUI.py:4961 flatcamTools/ToolPanelize.py:160 +#: flatcamGUI/PreferencesUI.py:4962 flatcamTools/ToolPanelize.py:160 msgid "Spacing cols" msgstr "Интервал столбцов" -#: flatcamGUI/PreferencesUI.py:4963 flatcamTools/ToolPanelize.py:162 +#: flatcamGUI/PreferencesUI.py:4964 flatcamTools/ToolPanelize.py:162 msgid "" "Spacing between columns of the desired panel.\n" "In current units." @@ -11143,11 +11143,11 @@ msgstr "" "Расстояние между столбцами нужной панели.\n" "В текущих единицах измерения." -#: flatcamGUI/PreferencesUI.py:4975 flatcamTools/ToolPanelize.py:172 +#: flatcamGUI/PreferencesUI.py:4976 flatcamTools/ToolPanelize.py:172 msgid "Spacing rows" msgstr "Интервал строк" -#: flatcamGUI/PreferencesUI.py:4977 flatcamTools/ToolPanelize.py:174 +#: flatcamGUI/PreferencesUI.py:4978 flatcamTools/ToolPanelize.py:174 msgid "" "Spacing between rows of the desired panel.\n" "In current units." @@ -11155,36 +11155,36 @@ msgstr "" "Расстояние между строками нужной панели.\n" "В текущих единицах измерения." -#: flatcamGUI/PreferencesUI.py:4988 flatcamTools/ToolPanelize.py:183 +#: flatcamGUI/PreferencesUI.py:4989 flatcamTools/ToolPanelize.py:183 msgid "Columns" msgstr "Столбцы" -#: flatcamGUI/PreferencesUI.py:4990 flatcamTools/ToolPanelize.py:185 +#: flatcamGUI/PreferencesUI.py:4991 flatcamTools/ToolPanelize.py:185 msgid "Number of columns of the desired panel" msgstr "Количество столбцов нужной панели" -#: flatcamGUI/PreferencesUI.py:5000 flatcamTools/ToolPanelize.py:193 +#: flatcamGUI/PreferencesUI.py:5001 flatcamTools/ToolPanelize.py:193 msgid "Rows" msgstr "Строки" -#: flatcamGUI/PreferencesUI.py:5002 flatcamTools/ToolPanelize.py:195 +#: flatcamGUI/PreferencesUI.py:5003 flatcamTools/ToolPanelize.py:195 msgid "Number of rows of the desired panel" msgstr "Количество строк нужной панели" -#: flatcamGUI/PreferencesUI.py:5008 flatcamTools/ToolCalibration.py:196 +#: flatcamGUI/PreferencesUI.py:5009 flatcamTools/ToolCalibration.py:196 #: flatcamTools/ToolCalibration.py:634 flatcamTools/ToolPanelize.py:201 msgid "Gerber" msgstr "Gerber" -#: flatcamGUI/PreferencesUI.py:5009 flatcamTools/ToolPanelize.py:202 +#: flatcamGUI/PreferencesUI.py:5010 flatcamTools/ToolPanelize.py:202 msgid "Geo" msgstr "Geometry" -#: flatcamGUI/PreferencesUI.py:5010 flatcamTools/ToolPanelize.py:203 +#: flatcamGUI/PreferencesUI.py:5011 flatcamTools/ToolPanelize.py:203 msgid "Panel Type" msgstr "Тип панели" -#: flatcamGUI/PreferencesUI.py:5012 +#: flatcamGUI/PreferencesUI.py:5013 msgid "" "Choose the type of object for the panel object:\n" "- Gerber\n" @@ -11194,11 +11194,11 @@ msgstr "" "- Gerber\n" "- Geometry" -#: flatcamGUI/PreferencesUI.py:5021 +#: flatcamGUI/PreferencesUI.py:5022 msgid "Constrain within" msgstr "Ограничить в пределах" -#: flatcamGUI/PreferencesUI.py:5023 flatcamTools/ToolPanelize.py:215 +#: flatcamGUI/PreferencesUI.py:5024 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" @@ -11212,11 +11212,11 @@ msgstr "" "последняя панель будет иметь столько столбцов и строк, чтобы\n" "она полностью вписывалась в выбранную область." -#: flatcamGUI/PreferencesUI.py:5036 flatcamTools/ToolPanelize.py:227 +#: flatcamGUI/PreferencesUI.py:5037 flatcamTools/ToolPanelize.py:227 msgid "Width (DX)" msgstr "Ширина (DX)" -#: flatcamGUI/PreferencesUI.py:5038 flatcamTools/ToolPanelize.py:229 +#: flatcamGUI/PreferencesUI.py:5039 flatcamTools/ToolPanelize.py:229 msgid "" "The width (DX) within which the panel must fit.\n" "In current units." @@ -11224,11 +11224,11 @@ msgstr "" "Ширина (DX), в пределах которой должна поместиться панель.\n" "В текущих единицах измерения." -#: flatcamGUI/PreferencesUI.py:5049 flatcamTools/ToolPanelize.py:238 +#: flatcamGUI/PreferencesUI.py:5050 flatcamTools/ToolPanelize.py:238 msgid "Height (DY)" msgstr "Высота (DY)" -#: flatcamGUI/PreferencesUI.py:5051 flatcamTools/ToolPanelize.py:240 +#: flatcamGUI/PreferencesUI.py:5052 flatcamTools/ToolPanelize.py:240 msgid "" "The height (DY)within which the panel must fit.\n" "In current units." @@ -11236,15 +11236,15 @@ msgstr "" "Высота (DY), в пределах которой должна поместиться панель.\n" "В текущих единицах измерения." -#: flatcamGUI/PreferencesUI.py:5065 +#: flatcamGUI/PreferencesUI.py:5066 msgid "Calculators Tool Options" msgstr "Калькулятор" -#: flatcamGUI/PreferencesUI.py:5069 flatcamTools/ToolCalculators.py:25 +#: flatcamGUI/PreferencesUI.py:5070 flatcamTools/ToolCalculators.py:25 msgid "V-Shape Tool Calculator" msgstr "Калькулятор V-образного инструмента" -#: flatcamGUI/PreferencesUI.py:5071 +#: flatcamGUI/PreferencesUI.py:5072 msgid "" "Calculate the tool diameter for a given V-shape tool,\n" "having the tip diameter, tip angle and\n" @@ -11254,11 +11254,11 @@ msgstr "" "учитывая диаметр наконечника, угол наклона наконечника и\n" "глубину резания в качестве параметров." -#: flatcamGUI/PreferencesUI.py:5086 flatcamTools/ToolCalculators.py:94 +#: flatcamGUI/PreferencesUI.py:5087 flatcamTools/ToolCalculators.py:94 msgid "Tip Diameter" msgstr "Диаметр наконечника" -#: flatcamGUI/PreferencesUI.py:5088 flatcamTools/ToolCalculators.py:102 +#: flatcamGUI/PreferencesUI.py:5089 flatcamTools/ToolCalculators.py:102 msgid "" "This is the tool tip diameter.\n" "It is specified by manufacturer." @@ -11266,11 +11266,11 @@ msgstr "" "Это диаметр наконечника инструмента.\n" "Это указано производителем." -#: flatcamGUI/PreferencesUI.py:5100 flatcamTools/ToolCalculators.py:105 +#: flatcamGUI/PreferencesUI.py:5101 flatcamTools/ToolCalculators.py:105 msgid "Tip Angle" msgstr "Угол наконечника" -#: flatcamGUI/PreferencesUI.py:5102 +#: flatcamGUI/PreferencesUI.py:5103 msgid "" "This is the angle on the tip of the tool.\n" "It is specified by manufacturer." @@ -11278,7 +11278,7 @@ msgstr "" "Это угол наконечника инструмента.\n" "Это указано производителем." -#: flatcamGUI/PreferencesUI.py:5116 +#: flatcamGUI/PreferencesUI.py:5117 msgid "" "This is depth to cut into material.\n" "In the CNCJob object it is the CutZ parameter." @@ -11286,11 +11286,11 @@ msgstr "" "Это глубина резки материала.\n" "В объекте CNCJob это параметр \"Глубина резания\"." -#: flatcamGUI/PreferencesUI.py:5123 flatcamTools/ToolCalculators.py:27 +#: flatcamGUI/PreferencesUI.py:5124 flatcamTools/ToolCalculators.py:27 msgid "ElectroPlating Calculator" msgstr "Калькулятор электронных плат" -#: flatcamGUI/PreferencesUI.py:5125 flatcamTools/ToolCalculators.py:158 +#: flatcamGUI/PreferencesUI.py:5126 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 " @@ -11301,27 +11301,27 @@ msgstr "" "используя методы такие, как графитовые чернила или чернила гипофосфита " "кальция или хлорид палладия." -#: flatcamGUI/PreferencesUI.py:5139 flatcamTools/ToolCalculators.py:167 +#: flatcamGUI/PreferencesUI.py:5140 flatcamTools/ToolCalculators.py:167 msgid "Board Length" msgstr "Длина платы" -#: flatcamGUI/PreferencesUI.py:5141 flatcamTools/ToolCalculators.py:173 +#: flatcamGUI/PreferencesUI.py:5142 flatcamTools/ToolCalculators.py:173 msgid "This is the board length. In centimeters." msgstr "Это длина платы. В сантиметрах." -#: flatcamGUI/PreferencesUI.py:5151 flatcamTools/ToolCalculators.py:175 +#: flatcamGUI/PreferencesUI.py:5152 flatcamTools/ToolCalculators.py:175 msgid "Board Width" msgstr "Ширина платы" -#: flatcamGUI/PreferencesUI.py:5153 flatcamTools/ToolCalculators.py:181 +#: flatcamGUI/PreferencesUI.py:5154 flatcamTools/ToolCalculators.py:181 msgid "This is the board width.In centimeters." msgstr "Это ширина платы. В сантиметрах." -#: flatcamGUI/PreferencesUI.py:5158 flatcamTools/ToolCalculators.py:183 +#: flatcamGUI/PreferencesUI.py:5159 flatcamTools/ToolCalculators.py:183 msgid "Current Density" msgstr "Текущая плотность" -#: flatcamGUI/PreferencesUI.py:5164 flatcamTools/ToolCalculators.py:190 +#: flatcamGUI/PreferencesUI.py:5165 flatcamTools/ToolCalculators.py:190 msgid "" "Current density to pass through the board. \n" "In Amps per Square Feet ASF." @@ -11329,11 +11329,11 @@ msgstr "" "Плотность тока для прохождения через плату. \n" "В Амперах на квадратный метр АЧС." -#: flatcamGUI/PreferencesUI.py:5170 flatcamTools/ToolCalculators.py:193 +#: flatcamGUI/PreferencesUI.py:5171 flatcamTools/ToolCalculators.py:193 msgid "Copper Growth" msgstr "Медный слой" -#: flatcamGUI/PreferencesUI.py:5176 flatcamTools/ToolCalculators.py:200 +#: flatcamGUI/PreferencesUI.py:5177 flatcamTools/ToolCalculators.py:200 msgid "" "How thick the copper growth is intended to be.\n" "In microns." @@ -11341,11 +11341,11 @@ msgstr "" "Насколько толстым должен быть медный слой.\n" "В микронах." -#: flatcamGUI/PreferencesUI.py:5189 +#: flatcamGUI/PreferencesUI.py:5190 msgid "Transform Tool Options" msgstr "Трансформация" -#: flatcamGUI/PreferencesUI.py:5195 +#: flatcamGUI/PreferencesUI.py:5196 msgid "" "Various transformations that can be applied\n" "on a FlatCAM object." @@ -11353,19 +11353,19 @@ msgstr "" "Различные преобразования, которые могут быть применены\n" "на объекте FlatCAM." -#: flatcamGUI/PreferencesUI.py:5226 +#: flatcamGUI/PreferencesUI.py:5227 msgid "Skew" msgstr "Наклон" -#: flatcamGUI/PreferencesUI.py:5267 flatcamTools/ToolTransform.py:149 +#: flatcamGUI/PreferencesUI.py:5268 flatcamTools/ToolTransform.py:149 msgid "Factor for scaling on X axis." msgstr "Коэффициент масштабирования по оси X." -#: flatcamGUI/PreferencesUI.py:5280 flatcamTools/ToolTransform.py:170 +#: flatcamGUI/PreferencesUI.py:5281 flatcamTools/ToolTransform.py:170 msgid "Factor for scaling on Y axis." msgstr "Коэффициент масштабирования по оси Y." -#: flatcamGUI/PreferencesUI.py:5288 flatcamTools/ToolTransform.py:193 +#: flatcamGUI/PreferencesUI.py:5289 flatcamTools/ToolTransform.py:193 msgid "" "Scale the selected object(s)\n" "using the Scale_X factor for both axis." @@ -11373,7 +11373,7 @@ msgstr "" "Масштабирует выбранный объект(ы)\n" "используя \"Коэффициент X\" для обеих осей." -#: flatcamGUI/PreferencesUI.py:5296 flatcamTools/ToolTransform.py:201 +#: flatcamGUI/PreferencesUI.py:5297 flatcamTools/ToolTransform.py:201 msgid "" "Scale the selected object(s)\n" "using the origin reference when checked,\n" @@ -11385,27 +11385,27 @@ msgstr "" "или центр самой большой ограничительной рамки \n" "выделенных объектов, если флажок снят." -#: flatcamGUI/PreferencesUI.py:5312 flatcamTools/ToolTransform.py:216 +#: flatcamGUI/PreferencesUI.py:5313 flatcamTools/ToolTransform.py:216 msgid "X val" msgstr "Значение X" -#: flatcamGUI/PreferencesUI.py:5314 flatcamTools/ToolTransform.py:218 +#: flatcamGUI/PreferencesUI.py:5315 flatcamTools/ToolTransform.py:218 msgid "Distance to offset on X axis. In current units." msgstr "Расстояние смещения по оси X. В текущих единицах." -#: flatcamGUI/PreferencesUI.py:5325 flatcamTools/ToolTransform.py:237 +#: flatcamGUI/PreferencesUI.py:5326 flatcamTools/ToolTransform.py:237 msgid "Y val" msgstr "Значение Y" -#: flatcamGUI/PreferencesUI.py:5327 flatcamTools/ToolTransform.py:239 +#: flatcamGUI/PreferencesUI.py:5328 flatcamTools/ToolTransform.py:239 msgid "Distance to offset on Y axis. In current units." msgstr "Расстояние смещения по оси Y. В текущих единицах." -#: flatcamGUI/PreferencesUI.py:5333 flatcamTools/ToolTransform.py:284 +#: flatcamGUI/PreferencesUI.py:5334 flatcamTools/ToolTransform.py:284 msgid "Mirror Reference" msgstr "Точка зеркалтрования" -#: flatcamGUI/PreferencesUI.py:5335 flatcamTools/ToolTransform.py:286 +#: flatcamGUI/PreferencesUI.py:5336 flatcamTools/ToolTransform.py:286 msgid "" "Flip the selected object(s)\n" "around the point in Point Entry Field.\n" @@ -11427,11 +11427,11 @@ msgstr "" "Или введите координаты в формате (x, y) в поле\n" "Поле ввода точки и нажмите кнопку флип на X(Y)" -#: flatcamGUI/PreferencesUI.py:5346 +#: flatcamGUI/PreferencesUI.py:5347 msgid "Mirror Reference point" msgstr "Точка зеркалтрования" -#: flatcamGUI/PreferencesUI.py:5348 +#: flatcamGUI/PreferencesUI.py:5349 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" @@ -11442,11 +11442,11 @@ msgstr "" "'x' в (x, y) будет использоваться при отражении по X и\n" "'y' в (x, y) будет использоваться при отражении по Y" -#: flatcamGUI/PreferencesUI.py:5365 +#: flatcamGUI/PreferencesUI.py:5366 msgid "SolderPaste Tool Options" msgstr "Паяльная паста" -#: flatcamGUI/PreferencesUI.py:5371 +#: flatcamGUI/PreferencesUI.py:5372 msgid "" "A tool to create GCode for dispensing\n" "solder paste onto a PCB." @@ -11454,49 +11454,49 @@ msgstr "" "Инструмент для создания GCode для дозирования\n" "нанесения паяльной пасты на печатную плату." -#: flatcamGUI/PreferencesUI.py:5382 +#: flatcamGUI/PreferencesUI.py:5383 msgid "Diameters of nozzle tools, separated by ','" msgstr "Диаметры сопловых инструментов, разделенные ','" -#: flatcamGUI/PreferencesUI.py:5390 +#: flatcamGUI/PreferencesUI.py:5391 msgid "New Nozzle Dia" msgstr "Новый диаметр сопла" -#: flatcamGUI/PreferencesUI.py:5392 flatcamTools/ToolSolderPaste.py:106 +#: flatcamGUI/PreferencesUI.py:5393 flatcamTools/ToolSolderPaste.py:106 msgid "Diameter for the new Nozzle tool to add in the Tool Table" msgstr "" "Диаметр для нового инструмента сопла, который нужно добавить в таблице " "инструмента" -#: flatcamGUI/PreferencesUI.py:5408 flatcamTools/ToolSolderPaste.py:182 +#: flatcamGUI/PreferencesUI.py:5409 flatcamTools/ToolSolderPaste.py:182 msgid "Z Dispense Start" msgstr "Z начала нанесения" -#: flatcamGUI/PreferencesUI.py:5410 flatcamTools/ToolSolderPaste.py:184 +#: flatcamGUI/PreferencesUI.py:5411 flatcamTools/ToolSolderPaste.py:184 msgid "The height (Z) when solder paste dispensing starts." msgstr "Высота (Z), когда начинается выдача паяльной пасты." -#: flatcamGUI/PreferencesUI.py:5421 flatcamTools/ToolSolderPaste.py:194 +#: flatcamGUI/PreferencesUI.py:5422 flatcamTools/ToolSolderPaste.py:194 msgid "Z Dispense" msgstr "Z нанесения" -#: flatcamGUI/PreferencesUI.py:5423 flatcamTools/ToolSolderPaste.py:196 +#: flatcamGUI/PreferencesUI.py:5424 flatcamTools/ToolSolderPaste.py:196 msgid "The height (Z) when doing solder paste dispensing." msgstr "Высота (Z) при выполнении дозирования паяльной пасты." -#: flatcamGUI/PreferencesUI.py:5434 flatcamTools/ToolSolderPaste.py:206 +#: flatcamGUI/PreferencesUI.py:5435 flatcamTools/ToolSolderPaste.py:206 msgid "Z Dispense Stop" msgstr "Z конца нанесения" -#: flatcamGUI/PreferencesUI.py:5436 flatcamTools/ToolSolderPaste.py:208 +#: flatcamGUI/PreferencesUI.py:5437 flatcamTools/ToolSolderPaste.py:208 msgid "The height (Z) when solder paste dispensing stops." msgstr "Высота (Z) при остановке выдачи паяльной пасты." -#: flatcamGUI/PreferencesUI.py:5447 flatcamTools/ToolSolderPaste.py:218 +#: flatcamGUI/PreferencesUI.py:5448 flatcamTools/ToolSolderPaste.py:218 msgid "Z Travel" msgstr "Z перемещения" -#: flatcamGUI/PreferencesUI.py:5449 flatcamTools/ToolSolderPaste.py:220 +#: flatcamGUI/PreferencesUI.py:5450 flatcamTools/ToolSolderPaste.py:220 msgid "" "The height (Z) for travel between pads\n" "(without dispensing solder paste)." @@ -11504,15 +11504,15 @@ msgstr "" "Высота (Z) для перемещения между колодками\n" "(без дозирования паяльной пасты)." -#: flatcamGUI/PreferencesUI.py:5461 flatcamTools/ToolSolderPaste.py:231 +#: flatcamGUI/PreferencesUI.py:5462 flatcamTools/ToolSolderPaste.py:231 msgid "Z Toolchange" msgstr "Z смены инструмента" -#: flatcamGUI/PreferencesUI.py:5463 flatcamTools/ToolSolderPaste.py:233 +#: flatcamGUI/PreferencesUI.py:5464 flatcamTools/ToolSolderPaste.py:233 msgid "The height (Z) for tool (nozzle) change." msgstr "Высота (Z) для изменения инструмента (сопла)." -#: flatcamGUI/PreferencesUI.py:5472 flatcamTools/ToolSolderPaste.py:241 +#: flatcamGUI/PreferencesUI.py:5473 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." @@ -11520,11 +11520,11 @@ msgstr "" "Положение X, Y для изменения инструмента (сопла).\n" "Формат (x, y), где x и y-действительные числа." -#: flatcamGUI/PreferencesUI.py:5486 flatcamTools/ToolSolderPaste.py:254 +#: flatcamGUI/PreferencesUI.py:5487 flatcamTools/ToolSolderPaste.py:254 msgid "Feedrate (speed) while moving on the X-Y plane." msgstr "Скорость подачи при движении по плоскости X-Y." -#: flatcamGUI/PreferencesUI.py:5499 flatcamTools/ToolSolderPaste.py:266 +#: flatcamGUI/PreferencesUI.py:5500 flatcamTools/ToolSolderPaste.py:266 msgid "" "Feedrate (speed) while moving vertically\n" "(on Z plane)." @@ -11532,11 +11532,11 @@ msgstr "" "Скорость подачи (скорость) при движении по вертикали\n" "(на плоскости Z)." -#: flatcamGUI/PreferencesUI.py:5511 flatcamTools/ToolSolderPaste.py:277 +#: flatcamGUI/PreferencesUI.py:5512 flatcamTools/ToolSolderPaste.py:277 msgid "Feedrate Z Dispense" msgstr "Скорость подачи Z Диспенсер" -#: flatcamGUI/PreferencesUI.py:5513 +#: flatcamGUI/PreferencesUI.py:5514 msgid "" "Feedrate (speed) while moving up vertically\n" "to Dispense position (on Z plane)." @@ -11544,11 +11544,11 @@ msgstr "" "Скорость подачи (скорость) при движении вверх по вертикали\n" "распределить положение (на плоскости Z)." -#: flatcamGUI/PreferencesUI.py:5524 flatcamTools/ToolSolderPaste.py:289 +#: flatcamGUI/PreferencesUI.py:5525 flatcamTools/ToolSolderPaste.py:289 msgid "Spindle Speed FWD" msgstr "Скорость прямого вращения шпинделя" -#: flatcamGUI/PreferencesUI.py:5526 flatcamTools/ToolSolderPaste.py:291 +#: flatcamGUI/PreferencesUI.py:5527 flatcamTools/ToolSolderPaste.py:291 msgid "" "The dispenser speed while pushing solder paste\n" "through the dispenser nozzle." @@ -11556,19 +11556,19 @@ msgstr "" "Диспенсер скорости при нажатии паяльной пасты\n" "через сопло дозатора." -#: flatcamGUI/PreferencesUI.py:5538 flatcamTools/ToolSolderPaste.py:302 +#: flatcamGUI/PreferencesUI.py:5539 flatcamTools/ToolSolderPaste.py:302 msgid "Dwell FWD" msgstr "Задержка В НАЧАЛЕ" -#: flatcamGUI/PreferencesUI.py:5540 flatcamTools/ToolSolderPaste.py:304 +#: flatcamGUI/PreferencesUI.py:5541 flatcamTools/ToolSolderPaste.py:304 msgid "Pause after solder dispensing." msgstr "Пауза после выдачи паяльной пасты." -#: flatcamGUI/PreferencesUI.py:5550 flatcamTools/ToolSolderPaste.py:313 +#: flatcamGUI/PreferencesUI.py:5551 flatcamTools/ToolSolderPaste.py:313 msgid "Spindle Speed REV" msgstr "Скорость обратного вращения шпинделя" -#: flatcamGUI/PreferencesUI.py:5552 flatcamTools/ToolSolderPaste.py:315 +#: flatcamGUI/PreferencesUI.py:5553 flatcamTools/ToolSolderPaste.py:315 msgid "" "The dispenser speed while retracting solder paste\n" "through the dispenser nozzle." @@ -11576,11 +11576,11 @@ msgstr "" "Скорость распределителя пока втягивающ затир припоя\n" "через сопло дозатора." -#: flatcamGUI/PreferencesUI.py:5564 flatcamTools/ToolSolderPaste.py:326 +#: flatcamGUI/PreferencesUI.py:5565 flatcamTools/ToolSolderPaste.py:326 msgid "Dwell REV" msgstr "Задержка В КОНЦЕ" -#: flatcamGUI/PreferencesUI.py:5566 flatcamTools/ToolSolderPaste.py:328 +#: flatcamGUI/PreferencesUI.py:5567 flatcamTools/ToolSolderPaste.py:328 msgid "" "Pause after solder paste dispenser retracted,\n" "to allow pressure equilibrium." @@ -11588,15 +11588,15 @@ msgstr "" "Пауза после того, как дозатор паяльной пасты будет убран,\n" "чтобы обеспечить равномерное выдавливание." -#: flatcamGUI/PreferencesUI.py:5575 flatcamTools/ToolSolderPaste.py:336 +#: flatcamGUI/PreferencesUI.py:5576 flatcamTools/ToolSolderPaste.py:336 msgid "Files that control the GCode generation." msgstr "Файлы контролирующие генерацию GCode." -#: flatcamGUI/PreferencesUI.py:5590 +#: flatcamGUI/PreferencesUI.py:5591 msgid "Substractor Tool Options" msgstr "Параметры инструмента Substractor" -#: flatcamGUI/PreferencesUI.py:5596 +#: flatcamGUI/PreferencesUI.py:5597 msgid "" "A tool to substract one Gerber or Geometry object\n" "from another of the same type." @@ -11604,20 +11604,20 @@ msgstr "" "Инструмент для вычитания одного объекта Gerber или Геометрия\n" "от другого того же типа." -#: flatcamGUI/PreferencesUI.py:5601 flatcamTools/ToolSub.py:149 +#: flatcamGUI/PreferencesUI.py:5602 flatcamTools/ToolSub.py:149 msgid "Close paths" msgstr "Закрыть пути" -#: flatcamGUI/PreferencesUI.py:5602 +#: flatcamGUI/PreferencesUI.py:5603 msgid "" "Checking this will close the paths cut by the Geometry substractor object." msgstr "Проверка этого закроет пути, прорезанные объектом субметора Геометрия." -#: flatcamGUI/PreferencesUI.py:5613 +#: flatcamGUI/PreferencesUI.py:5614 msgid "Check Rules Tool Options" msgstr "Параметры проверки правил" -#: flatcamGUI/PreferencesUI.py:5618 +#: flatcamGUI/PreferencesUI.py:5619 msgid "" "A tool to check if Gerber files are within a set\n" "of Manufacturing Rules." @@ -11625,20 +11625,20 @@ msgstr "" "Инструмент для проверки наличия файлов Gerber в наборе\n" "правил изготовления." -#: flatcamGUI/PreferencesUI.py:5628 flatcamTools/ToolRulesCheck.py:256 +#: flatcamGUI/PreferencesUI.py:5629 flatcamTools/ToolRulesCheck.py:256 #: flatcamTools/ToolRulesCheck.py:920 msgid "Trace Size" msgstr "Размер трассы" -#: flatcamGUI/PreferencesUI.py:5630 flatcamTools/ToolRulesCheck.py:258 +#: flatcamGUI/PreferencesUI.py:5631 flatcamTools/ToolRulesCheck.py:258 msgid "This checks if the minimum size for traces is met." msgstr "Это проверяет, соблюден ли минимальный размер трассы." -#: 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 +#: flatcamGUI/PreferencesUI.py:5641 flatcamGUI/PreferencesUI.py:5661 +#: flatcamGUI/PreferencesUI.py:5681 flatcamGUI/PreferencesUI.py:5701 +#: flatcamGUI/PreferencesUI.py:5721 flatcamGUI/PreferencesUI.py:5741 +#: flatcamGUI/PreferencesUI.py:5761 flatcamGUI/PreferencesUI.py:5781 +#: flatcamGUI/PreferencesUI.py:5803 flatcamGUI/PreferencesUI.py:5823 #: flatcamTools/ToolRulesCheck.py:268 flatcamTools/ToolRulesCheck.py:290 #: flatcamTools/ToolRulesCheck.py:313 flatcamTools/ToolRulesCheck.py:336 #: flatcamTools/ToolRulesCheck.py:359 flatcamTools/ToolRulesCheck.py:382 @@ -11647,38 +11647,38 @@ msgstr "Это проверяет, соблюден ли минимальный msgid "Min value" msgstr "Минимальное значение" -#: flatcamGUI/PreferencesUI.py:5642 flatcamTools/ToolRulesCheck.py:270 +#: flatcamGUI/PreferencesUI.py:5643 flatcamTools/ToolRulesCheck.py:270 msgid "Minimum acceptable trace size." msgstr "Минимальный допустимый размер трассировки." -#: flatcamGUI/PreferencesUI.py:5647 flatcamTools/ToolRulesCheck.py:277 +#: flatcamGUI/PreferencesUI.py:5648 flatcamTools/ToolRulesCheck.py:277 #: flatcamTools/ToolRulesCheck.py:1148 flatcamTools/ToolRulesCheck.py:1178 msgid "Copper to Copper clearance" msgstr "Зазор между медными дорожками" -#: flatcamGUI/PreferencesUI.py:5649 flatcamTools/ToolRulesCheck.py:279 +#: flatcamGUI/PreferencesUI.py:5650 flatcamTools/ToolRulesCheck.py:279 msgid "" "This checks if the minimum clearance between copper\n" "features is met." msgstr "Проверяет, соблюдены ли минимальные зазоры между медью." -#: 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 +#: flatcamGUI/PreferencesUI.py:5663 flatcamGUI/PreferencesUI.py:5683 +#: flatcamGUI/PreferencesUI.py:5703 flatcamGUI/PreferencesUI.py:5723 +#: flatcamGUI/PreferencesUI.py:5743 flatcamGUI/PreferencesUI.py:5763 +#: flatcamGUI/PreferencesUI.py:5825 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 "Минимально допустимое значение зазора." -#: flatcamGUI/PreferencesUI.py:5667 flatcamTools/ToolRulesCheck.py:300 +#: flatcamGUI/PreferencesUI.py:5668 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 "Зазор между медью и контуром" -#: flatcamGUI/PreferencesUI.py:5669 flatcamTools/ToolRulesCheck.py:302 +#: flatcamGUI/PreferencesUI.py:5670 flatcamTools/ToolRulesCheck.py:302 msgid "" "This checks if the minimum clearance between copper\n" "features and the outline is met." @@ -11686,23 +11686,23 @@ msgstr "" "Проверяет, выполнены ли минимальные зазоры между медью\n" "и контурами." -#: flatcamGUI/PreferencesUI.py:5687 flatcamTools/ToolRulesCheck.py:323 +#: flatcamGUI/PreferencesUI.py:5688 flatcamTools/ToolRulesCheck.py:323 msgid "Silk to Silk Clearance" msgstr "Зазор между шелкографией" -#: flatcamGUI/PreferencesUI.py:5689 flatcamTools/ToolRulesCheck.py:325 +#: flatcamGUI/PreferencesUI.py:5690 flatcamTools/ToolRulesCheck.py:325 msgid "" "This checks if the minimum clearance between silkscreen\n" "features and silkscreen features is met." msgstr "Проверяет, соблюдены ли минимальные зазоры между шелкографией." -#: flatcamGUI/PreferencesUI.py:5707 flatcamTools/ToolRulesCheck.py:346 +#: flatcamGUI/PreferencesUI.py:5708 flatcamTools/ToolRulesCheck.py:346 #: flatcamTools/ToolRulesCheck.py:1317 flatcamTools/ToolRulesCheck.py:1323 #: flatcamTools/ToolRulesCheck.py:1341 msgid "Silk to Solder Mask Clearance" msgstr "Зазор между шелкографией и паяльной маской" -#: flatcamGUI/PreferencesUI.py:5709 flatcamTools/ToolRulesCheck.py:348 +#: flatcamGUI/PreferencesUI.py:5710 flatcamTools/ToolRulesCheck.py:348 msgid "" "This checks if the minimum clearance between silkscreen\n" "features and soldermask features is met." @@ -11710,13 +11710,13 @@ msgstr "" "Проверяет, соблюдены ли минимальные зазоры между шелкографией\n" "и паяльной маской." -#: flatcamGUI/PreferencesUI.py:5727 flatcamTools/ToolRulesCheck.py:369 +#: flatcamGUI/PreferencesUI.py:5728 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 "Зазор между шелкографией и контуром" -#: flatcamGUI/PreferencesUI.py:5729 flatcamTools/ToolRulesCheck.py:371 +#: flatcamGUI/PreferencesUI.py:5730 flatcamTools/ToolRulesCheck.py:371 msgid "" "This checks if the minimum clearance between silk\n" "features and the outline is met." @@ -11724,12 +11724,12 @@ msgstr "" "Проверяет, соблюдены ли минимальные зазоры между шелкографией\n" "и контурами." -#: flatcamGUI/PreferencesUI.py:5747 flatcamTools/ToolRulesCheck.py:392 +#: flatcamGUI/PreferencesUI.py:5748 flatcamTools/ToolRulesCheck.py:392 #: flatcamTools/ToolRulesCheck.py:1409 flatcamTools/ToolRulesCheck.py:1436 msgid "Minimum Solder Mask Sliver" msgstr "Минимальная ширина паяльной маски" -#: flatcamGUI/PreferencesUI.py:5749 flatcamTools/ToolRulesCheck.py:394 +#: flatcamGUI/PreferencesUI.py:5750 flatcamTools/ToolRulesCheck.py:394 msgid "" "This checks if the minimum clearance between soldermask\n" "features and soldermask features is met." @@ -11737,13 +11737,13 @@ msgstr "" "Проверяет, соблюдены ли минимальные зазоры между паяльной маской\n" "и встречной паяльной маской." -#: flatcamGUI/PreferencesUI.py:5767 flatcamTools/ToolRulesCheck.py:415 +#: flatcamGUI/PreferencesUI.py:5768 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 "Минимальное медное кольцо" -#: flatcamGUI/PreferencesUI.py:5769 flatcamTools/ToolRulesCheck.py:417 +#: flatcamGUI/PreferencesUI.py:5770 flatcamTools/ToolRulesCheck.py:417 msgid "" "This checks if the minimum copper ring left by drilling\n" "a hole into a pad is met." @@ -11751,31 +11751,31 @@ msgstr "" "Проверяет, останется ли минимальное медное кольцо при сверлении\n" "отверстия в площадке." -#: flatcamGUI/PreferencesUI.py:5782 flatcamTools/ToolRulesCheck.py:430 +#: flatcamGUI/PreferencesUI.py:5783 flatcamTools/ToolRulesCheck.py:430 msgid "Minimum acceptable ring value." msgstr "Минимальное допустимое значение кольца." -#: flatcamGUI/PreferencesUI.py:5789 flatcamTools/ToolRulesCheck.py:440 +#: flatcamGUI/PreferencesUI.py:5790 flatcamTools/ToolRulesCheck.py:440 #: flatcamTools/ToolRulesCheck.py:864 msgid "Hole to Hole Clearance" msgstr "Зазор между отверстиями" -#: flatcamGUI/PreferencesUI.py:5791 flatcamTools/ToolRulesCheck.py:442 +#: flatcamGUI/PreferencesUI.py:5792 flatcamTools/ToolRulesCheck.py:442 msgid "" "This checks if the minimum clearance between a drill hole\n" "and another drill hole is met." msgstr "Проверяет, есть ли минимальный зазор между отверстиями." -#: flatcamGUI/PreferencesUI.py:5804 flatcamTools/ToolRulesCheck.py:478 +#: flatcamGUI/PreferencesUI.py:5805 flatcamTools/ToolRulesCheck.py:478 msgid "Minimum acceptable drill size." msgstr "Минимальный допустимый размер отверстия." -#: flatcamGUI/PreferencesUI.py:5809 flatcamTools/ToolRulesCheck.py:463 +#: flatcamGUI/PreferencesUI.py:5810 flatcamTools/ToolRulesCheck.py:463 #: flatcamTools/ToolRulesCheck.py:838 msgid "Hole Size" msgstr "Размер отверстия" -#: flatcamGUI/PreferencesUI.py:5811 flatcamTools/ToolRulesCheck.py:465 +#: flatcamGUI/PreferencesUI.py:5812 flatcamTools/ToolRulesCheck.py:465 msgid "" "This checks if the drill holes\n" "sizes are above the threshold." @@ -11783,11 +11783,11 @@ msgstr "" "Проверяет, превышают ли размеры просверленного отверстия\n" "допустимый порог." -#: flatcamGUI/PreferencesUI.py:5836 +#: flatcamGUI/PreferencesUI.py:5837 msgid "Optimal Tool Options" msgstr "Параметры оптимизации" -#: flatcamGUI/PreferencesUI.py:5842 +#: flatcamGUI/PreferencesUI.py:5843 msgid "" "A tool to find the minimum distance between\n" "every two Gerber geometric elements" @@ -11795,20 +11795,20 @@ msgstr "" "Инструмент для поиска минимального расстояния между\n" "двумя элементами геометрии Gerber" -#: flatcamGUI/PreferencesUI.py:5857 flatcamTools/ToolOptimal.py:78 +#: flatcamGUI/PreferencesUI.py:5858 flatcamTools/ToolOptimal.py:78 msgid "Precision" msgstr "Точность" -#: flatcamGUI/PreferencesUI.py:5859 +#: flatcamGUI/PreferencesUI.py:5860 msgid "Number of decimals for the distances and coordinates in this tool." msgstr "" "Количество десятичных знаков для расстояний и координат в этом инструменте." -#: flatcamGUI/PreferencesUI.py:5873 +#: flatcamGUI/PreferencesUI.py:5874 msgid "QRCode Tool Options" msgstr "Параметры QR-кода" -#: flatcamGUI/PreferencesUI.py:5879 +#: flatcamGUI/PreferencesUI.py:5880 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." @@ -11816,11 +11816,11 @@ msgstr "" "Инструмент для создания QR-кода, который можно вставить\n" "в выбранный файл Gerber, или его можно экспортировать в файл." -#: flatcamGUI/PreferencesUI.py:5891 flatcamTools/ToolQRCode.py:99 +#: flatcamGUI/PreferencesUI.py:5892 flatcamTools/ToolQRCode.py:99 msgid "Version" msgstr "Версия" -#: flatcamGUI/PreferencesUI.py:5893 flatcamTools/ToolQRCode.py:101 +#: flatcamGUI/PreferencesUI.py:5894 flatcamTools/ToolQRCode.py:101 msgid "" "QRCode version can have values from 1 (21x21 boxes)\n" "to 40 (177x177 boxes)." @@ -11828,11 +11828,11 @@ msgstr "" "Версия QRCode может иметь значения от 1 (21x21).\n" "до 40 (177x177)." -#: flatcamGUI/PreferencesUI.py:5904 flatcamTools/ToolQRCode.py:112 +#: flatcamGUI/PreferencesUI.py:5905 flatcamTools/ToolQRCode.py:112 msgid "Error correction" msgstr "Коррекция ошибок" -#: flatcamGUI/PreferencesUI.py:5906 flatcamGUI/PreferencesUI.py:5917 +#: flatcamGUI/PreferencesUI.py:5907 flatcamGUI/PreferencesUI.py:5918 #: flatcamTools/ToolQRCode.py:114 flatcamTools/ToolQRCode.py:125 #, python-format msgid "" @@ -11848,11 +11848,11 @@ msgstr "" "Q = макс. 25%% ошибок могут быть исправлены\n" "H = макс. 30%% ошибок могут быть исправлены." -#: flatcamGUI/PreferencesUI.py:5927 flatcamTools/ToolQRCode.py:135 +#: flatcamGUI/PreferencesUI.py:5928 flatcamTools/ToolQRCode.py:135 msgid "Box Size" msgstr "Размер поля" -#: flatcamGUI/PreferencesUI.py:5929 flatcamTools/ToolQRCode.py:137 +#: flatcamGUI/PreferencesUI.py:5930 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." @@ -11860,11 +11860,11 @@ msgstr "" "Размер рамки регулирует общий размер QR-кода.\n" "откорректировав размер каждой рамки в коде." -#: flatcamGUI/PreferencesUI.py:5940 flatcamTools/ToolQRCode.py:148 +#: flatcamGUI/PreferencesUI.py:5941 flatcamTools/ToolQRCode.py:148 msgid "Border Size" msgstr "Отступ" -#: flatcamGUI/PreferencesUI.py:5942 flatcamTools/ToolQRCode.py:150 +#: flatcamGUI/PreferencesUI.py:5943 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." @@ -11872,24 +11872,24 @@ msgstr "" "Размер границы QR-кода. Насколько рамка толще границы.\n" "Значение по умолчанию 4. Ширина зазора вокруг QR-кода." -#: flatcamGUI/PreferencesUI.py:5953 flatcamTools/ToolQRCode.py:162 +#: flatcamGUI/PreferencesUI.py:5954 flatcamTools/ToolQRCode.py:162 msgid "QRCode Data" msgstr "Данные QR-кода" -#: flatcamGUI/PreferencesUI.py:5955 flatcamTools/ToolQRCode.py:164 +#: flatcamGUI/PreferencesUI.py:5956 flatcamTools/ToolQRCode.py:164 msgid "QRCode Data. Alphanumeric text to be encoded in the QRCode." msgstr "" "Данные QRCode. Буквенно-цифровой текст, подлежащий кодированию в QRCode." -#: flatcamGUI/PreferencesUI.py:5959 flatcamTools/ToolQRCode.py:168 +#: flatcamGUI/PreferencesUI.py:5960 flatcamTools/ToolQRCode.py:168 msgid "Add here the text to be included in the QRCode..." msgstr "Добавьте сюда текст, который будет включен в QRCode..." -#: flatcamGUI/PreferencesUI.py:5965 flatcamTools/ToolQRCode.py:174 +#: flatcamGUI/PreferencesUI.py:5966 flatcamTools/ToolQRCode.py:174 msgid "Polarity" msgstr "Полярность" -#: flatcamGUI/PreferencesUI.py:5967 flatcamTools/ToolQRCode.py:176 +#: flatcamGUI/PreferencesUI.py:5968 flatcamTools/ToolQRCode.py:176 msgid "" "Choose the polarity of the QRCode.\n" "It can be drawn in a negative way (squares are clear)\n" @@ -11899,17 +11899,17 @@ msgstr "" "Он может быть нарисован как негптив (квадраты видны)\n" "или позитив (квадраты непрозрачны)." -#: flatcamGUI/PreferencesUI.py:5971 flatcamTools/ToolFilm.py:296 +#: flatcamGUI/PreferencesUI.py:5972 flatcamTools/ToolFilm.py:296 #: flatcamTools/ToolQRCode.py:180 msgid "Negative" msgstr "Негатив" -#: flatcamGUI/PreferencesUI.py:5972 flatcamTools/ToolFilm.py:295 +#: flatcamGUI/PreferencesUI.py:5973 flatcamTools/ToolFilm.py:295 #: flatcamTools/ToolQRCode.py:181 msgid "Positive" msgstr "Позитив" -#: flatcamGUI/PreferencesUI.py:5974 flatcamTools/ToolQRCode.py:183 +#: flatcamGUI/PreferencesUI.py:5975 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" @@ -11921,7 +11921,7 @@ msgstr "" "будет добавлено как позитив. Если он добавлен к Copper Gerber.\n" "то, возможно, QRCode может быть добавлен как негатив." -#: flatcamGUI/PreferencesUI.py:5985 flatcamGUI/PreferencesUI.py:5991 +#: flatcamGUI/PreferencesUI.py:5986 flatcamGUI/PreferencesUI.py:5992 #: flatcamTools/ToolQRCode.py:194 flatcamTools/ToolQRCode.py:200 msgid "" "The bounding box, meaning the empty space that surrounds\n" @@ -11930,31 +11930,31 @@ msgstr "" "Ограничительная рамка, означающая пустое пространство вокруг\n" "QRCode, может иметь округлую или квадратную форму." -#: flatcamGUI/PreferencesUI.py:5988 flatcamTools/ToolQRCode.py:197 +#: flatcamGUI/PreferencesUI.py:5989 flatcamTools/ToolQRCode.py:197 msgid "Rounded" msgstr "Закругленный" -#: flatcamGUI/PreferencesUI.py:5998 flatcamTools/ToolQRCode.py:228 +#: flatcamGUI/PreferencesUI.py:5999 flatcamTools/ToolQRCode.py:228 msgid "Fill Color" msgstr "Цвет заливки" -#: flatcamGUI/PreferencesUI.py:6000 flatcamTools/ToolQRCode.py:230 +#: flatcamGUI/PreferencesUI.py:6001 flatcamTools/ToolQRCode.py:230 msgid "Set the QRCode fill color (squares color)." msgstr "Задаёт цвет заливки QRCode (цвет квадратов)." -#: flatcamGUI/PreferencesUI.py:6019 flatcamTools/ToolQRCode.py:252 +#: flatcamGUI/PreferencesUI.py:6020 flatcamTools/ToolQRCode.py:252 msgid "Back Color" msgstr "Цвет фона" -#: flatcamGUI/PreferencesUI.py:6021 flatcamTools/ToolQRCode.py:254 +#: flatcamGUI/PreferencesUI.py:6022 flatcamTools/ToolQRCode.py:254 msgid "Set the QRCode background color." msgstr "Устанавливает цвет фона QRCode." -#: flatcamGUI/PreferencesUI.py:6061 +#: flatcamGUI/PreferencesUI.py:6062 msgid "Copper Thieving Tool Options" msgstr "Параметры Copper Thieving" -#: flatcamGUI/PreferencesUI.py:6073 +#: flatcamGUI/PreferencesUI.py:6074 msgid "" "A tool to generate a Copper Thieving that can be added\n" "to a selected Gerber file." @@ -11962,16 +11962,16 @@ msgstr "" "Инструмент для создания Copper Thieving, который может быть добавлен\n" "в выбранный Gerber файл." -#: flatcamGUI/PreferencesUI.py:6081 +#: flatcamGUI/PreferencesUI.py:6082 msgid "Number of steps (lines) used to interpolate circles." msgstr "Количество шагов (линий), используемых для интерполяции окружностей." -#: flatcamGUI/PreferencesUI.py:6091 flatcamGUI/PreferencesUI.py:6295 +#: flatcamGUI/PreferencesUI.py:6092 flatcamGUI/PreferencesUI.py:6296 #: flatcamTools/ToolCopperThieving.py:96 flatcamTools/ToolCopperThieving.py:429 msgid "Clearance" msgstr "Зазор" -#: flatcamGUI/PreferencesUI.py:6093 +#: flatcamGUI/PreferencesUI.py:6094 msgid "" "This set the distance between the copper Thieving components\n" "(the polygon fill may be split in multiple polygons)\n" @@ -11981,22 +11981,22 @@ msgstr "" "(заливка полигона может быть разделена на несколько полигонов)\n" "и медными трассами в Gerber файле." -#: flatcamGUI/PreferencesUI.py:6121 flatcamTools/ToolCopperThieving.py:126 +#: flatcamGUI/PreferencesUI.py:6122 flatcamTools/ToolCopperThieving.py:126 #: flatcamTools/ToolNonCopperClear.py:436 flatcamTools/ToolPaint.py:314 msgid "Area Selection" msgstr "Выбор области" -#: flatcamGUI/PreferencesUI.py:6122 flatcamTools/ToolCopperThieving.py:127 +#: flatcamGUI/PreferencesUI.py:6123 flatcamTools/ToolCopperThieving.py:127 #: flatcamTools/ToolNonCopperClear.py:437 flatcamTools/ToolPaint.py:316 msgid "Reference Object" msgstr "Ссылочный объект" -#: flatcamGUI/PreferencesUI.py:6124 flatcamTools/ToolCopperThieving.py:129 +#: flatcamGUI/PreferencesUI.py:6125 flatcamTools/ToolCopperThieving.py:129 #: flatcamTools/ToolNonCopperClear.py:439 msgid "Reference:" msgstr "Ссылка:" -#: flatcamGUI/PreferencesUI.py:6126 +#: flatcamGUI/PreferencesUI.py:6127 msgid "" "- 'Itself' - the copper Thieving extent is based on the object extent.\n" "- 'Area Selection' - left mouse click to start selection of the area to be " @@ -12011,20 +12011,20 @@ msgstr "" "- 'Референсный объект' - будет выполнять Copper Thieving в области указанной " "другим объектом." -#: flatcamGUI/PreferencesUI.py:6135 flatcamTools/ToolCopperThieving.py:170 +#: flatcamGUI/PreferencesUI.py:6136 flatcamTools/ToolCopperThieving.py:170 msgid "Rectangular" msgstr "Прямоугольная" -#: flatcamGUI/PreferencesUI.py:6136 flatcamTools/ToolCopperThieving.py:171 +#: flatcamGUI/PreferencesUI.py:6137 flatcamTools/ToolCopperThieving.py:171 msgid "Minimal" msgstr "Минимальный" -#: flatcamGUI/PreferencesUI.py:6138 flatcamTools/ToolCopperThieving.py:173 +#: flatcamGUI/PreferencesUI.py:6139 flatcamTools/ToolCopperThieving.py:173 #: flatcamTools/ToolFilm.py:113 msgid "Box Type:" msgstr "Тип рамки:" -#: flatcamGUI/PreferencesUI.py:6140 flatcamTools/ToolCopperThieving.py:175 +#: flatcamGUI/PreferencesUI.py:6141 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." @@ -12032,23 +12032,23 @@ msgstr "" "- 'Прямоугольник' - ограничительная рамка будет иметь прямоугольную форму.\n" "- 'Минимальный' - ограничительная рамка будет повторять форму корпуса." -#: flatcamGUI/PreferencesUI.py:6154 flatcamTools/ToolCopperThieving.py:191 +#: flatcamGUI/PreferencesUI.py:6155 flatcamTools/ToolCopperThieving.py:191 msgid "Dots Grid" msgstr "Сетка точек" -#: flatcamGUI/PreferencesUI.py:6155 flatcamTools/ToolCopperThieving.py:192 +#: flatcamGUI/PreferencesUI.py:6156 flatcamTools/ToolCopperThieving.py:192 msgid "Squares Grid" msgstr "Сетка квадратов" -#: flatcamGUI/PreferencesUI.py:6156 flatcamTools/ToolCopperThieving.py:193 +#: flatcamGUI/PreferencesUI.py:6157 flatcamTools/ToolCopperThieving.py:193 msgid "Lines Grid" msgstr "Линии сетки" -#: flatcamGUI/PreferencesUI.py:6158 flatcamTools/ToolCopperThieving.py:195 +#: flatcamGUI/PreferencesUI.py:6159 flatcamTools/ToolCopperThieving.py:195 msgid "Fill Type:" msgstr "Тип заполнения:" -#: flatcamGUI/PreferencesUI.py:6160 flatcamTools/ToolCopperThieving.py:197 +#: flatcamGUI/PreferencesUI.py:6161 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" @@ -12060,54 +12060,54 @@ msgstr "" "- 'Сетка квадратов' - пустая площадь будет заполнена сеткой квадратов.\n" "- 'Сетка линий' - пустая область будет заполнена сеткой линий." -#: flatcamGUI/PreferencesUI.py:6168 flatcamTools/ToolCopperThieving.py:216 +#: flatcamGUI/PreferencesUI.py:6169 flatcamTools/ToolCopperThieving.py:216 msgid "Dots Grid Parameters" msgstr "Параметры точки сетки" -#: flatcamGUI/PreferencesUI.py:6174 flatcamTools/ToolCopperThieving.py:222 +#: flatcamGUI/PreferencesUI.py:6175 flatcamTools/ToolCopperThieving.py:222 msgid "Dot diameter in Dots Grid." msgstr "Диаметр точки в сетке точек." -#: flatcamGUI/PreferencesUI.py:6185 flatcamGUI/PreferencesUI.py:6214 -#: flatcamGUI/PreferencesUI.py:6243 flatcamTools/ToolCopperThieving.py:233 +#: flatcamGUI/PreferencesUI.py:6186 flatcamGUI/PreferencesUI.py:6215 +#: flatcamGUI/PreferencesUI.py:6244 flatcamTools/ToolCopperThieving.py:233 #: flatcamTools/ToolCopperThieving.py:273 #: flatcamTools/ToolCopperThieving.py:313 msgid "Spacing" msgstr "Промежуток" -#: flatcamGUI/PreferencesUI.py:6187 flatcamTools/ToolCopperThieving.py:235 +#: flatcamGUI/PreferencesUI.py:6188 flatcamTools/ToolCopperThieving.py:235 msgid "Distance between each two dots in Dots Grid." msgstr "Расстояние между каждыми двумя точками в сетке точек." -#: flatcamGUI/PreferencesUI.py:6197 flatcamTools/ToolCopperThieving.py:256 +#: flatcamGUI/PreferencesUI.py:6198 flatcamTools/ToolCopperThieving.py:256 msgid "Squares Grid Parameters" msgstr "Параметры квадратной сетки" -#: flatcamGUI/PreferencesUI.py:6203 flatcamTools/ToolCopperThieving.py:262 +#: flatcamGUI/PreferencesUI.py:6204 flatcamTools/ToolCopperThieving.py:262 msgid "Square side size in Squares Grid." msgstr "Размер стороны квадрата в сетке квадратов." -#: flatcamGUI/PreferencesUI.py:6216 flatcamTools/ToolCopperThieving.py:275 +#: flatcamGUI/PreferencesUI.py:6217 flatcamTools/ToolCopperThieving.py:275 msgid "Distance between each two squares in Squares Grid." msgstr "Расстояние между каждыми двумя квадратами в сетке квадратов ." -#: flatcamGUI/PreferencesUI.py:6226 flatcamTools/ToolCopperThieving.py:296 +#: flatcamGUI/PreferencesUI.py:6227 flatcamTools/ToolCopperThieving.py:296 msgid "Lines Grid Parameters" msgstr "Параметры линий сетки" -#: flatcamGUI/PreferencesUI.py:6232 flatcamTools/ToolCopperThieving.py:302 +#: flatcamGUI/PreferencesUI.py:6233 flatcamTools/ToolCopperThieving.py:302 msgid "Line thickness size in Lines Grid." msgstr "Размеры линий по толщине в сетке линий." -#: flatcamGUI/PreferencesUI.py:6245 flatcamTools/ToolCopperThieving.py:315 +#: flatcamGUI/PreferencesUI.py:6246 flatcamTools/ToolCopperThieving.py:315 msgid "Distance between each two lines in Lines Grid." msgstr "Расстояние между двумя линиями в сетке линий." -#: flatcamGUI/PreferencesUI.py:6255 flatcamTools/ToolCopperThieving.py:353 +#: flatcamGUI/PreferencesUI.py:6256 flatcamTools/ToolCopperThieving.py:353 msgid "Robber Bar Parameters" msgstr "Параметры Robber Bar" -#: flatcamGUI/PreferencesUI.py:6257 flatcamTools/ToolCopperThieving.py:355 +#: flatcamGUI/PreferencesUI.py:6258 flatcamTools/ToolCopperThieving.py:355 msgid "" "Parameters used for the robber bar.\n" "Robber bar = copper border to help in pattern hole plating." @@ -12115,27 +12115,27 @@ msgstr "" "Параметры, используемые для robber bar.\n" "Robber ba = медная рамка для облегчения нанесения покрытия на отверстия." -#: flatcamGUI/PreferencesUI.py:6265 flatcamTools/ToolCopperThieving.py:363 +#: flatcamGUI/PreferencesUI.py:6266 flatcamTools/ToolCopperThieving.py:363 msgid "Bounding box margin for robber bar." msgstr "Граница рамки." -#: flatcamGUI/PreferencesUI.py:6276 flatcamTools/ToolCopperThieving.py:374 +#: flatcamGUI/PreferencesUI.py:6277 flatcamTools/ToolCopperThieving.py:374 msgid "Thickness" msgstr "Толщина" -#: flatcamGUI/PreferencesUI.py:6278 flatcamTools/ToolCopperThieving.py:376 +#: flatcamGUI/PreferencesUI.py:6279 flatcamTools/ToolCopperThieving.py:376 msgid "The robber bar thickness." msgstr "Толщина robber bar." -#: flatcamGUI/PreferencesUI.py:6288 flatcamTools/ToolCopperThieving.py:407 +#: flatcamGUI/PreferencesUI.py:6289 flatcamTools/ToolCopperThieving.py:407 msgid "Pattern Plating Mask" msgstr "Рисунок гальванической маски" -#: flatcamGUI/PreferencesUI.py:6290 flatcamTools/ToolCopperThieving.py:409 +#: flatcamGUI/PreferencesUI.py:6291 flatcamTools/ToolCopperThieving.py:409 msgid "Generate a mask for pattern plating." msgstr "Создание рисунка гальванической маски." -#: flatcamGUI/PreferencesUI.py:6297 flatcamTools/ToolCopperThieving.py:431 +#: flatcamGUI/PreferencesUI.py:6298 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." @@ -12143,16 +12143,16 @@ msgstr "" "Расстояние между возможными элементами copper thieving\n" "и/или robber bar и фактическими отверстиями в маске." -#: flatcamGUI/PreferencesUI.py:6316 +#: flatcamGUI/PreferencesUI.py:6317 msgid "Fiducials Tool Options" msgstr "Параметры контрольных точек" -#: flatcamGUI/PreferencesUI.py:6327 flatcamGUI/PreferencesUI.py:6443 +#: flatcamGUI/PreferencesUI.py:6328 flatcamGUI/PreferencesUI.py:6444 #: flatcamTools/ToolCopperThieving.py:91 flatcamTools/ToolFiducials.py:151 msgid "Parameters used for this tool." msgstr "Параметры, используемые для этого инструмента." -#: flatcamGUI/PreferencesUI.py:6334 flatcamTools/ToolFiducials.py:158 +#: flatcamGUI/PreferencesUI.py:6335 flatcamTools/ToolFiducials.py:158 msgid "" "This set the fiducial diameter if fiducial type is circular,\n" "otherwise is the size of the fiducial.\n" @@ -12163,19 +12163,19 @@ msgstr "" "в противном случае, размер контрольного отверстия\n" "вдвое больше отверстия паяльной маски." -#: flatcamGUI/PreferencesUI.py:6362 flatcamTools/ToolFiducials.py:186 +#: flatcamGUI/PreferencesUI.py:6363 flatcamTools/ToolFiducials.py:186 msgid "Auto" msgstr "Авто" -#: flatcamGUI/PreferencesUI.py:6363 flatcamTools/ToolFiducials.py:187 +#: flatcamGUI/PreferencesUI.py:6364 flatcamTools/ToolFiducials.py:187 msgid "Manual" msgstr "Вручную" -#: flatcamGUI/PreferencesUI.py:6365 flatcamTools/ToolFiducials.py:189 +#: flatcamGUI/PreferencesUI.py:6366 flatcamTools/ToolFiducials.py:189 msgid "Mode:" msgstr "Режим:" -#: flatcamGUI/PreferencesUI.py:6367 +#: flatcamGUI/PreferencesUI.py:6368 msgid "" "- 'Auto' - automatic placement of fiducials in the corners of the bounding " "box.\n" @@ -12185,19 +12185,19 @@ msgstr "" "ограничительной рамки.\n" "- 'Вручную' - ручное размещение контрольных точек." -#: flatcamGUI/PreferencesUI.py:6375 flatcamTools/ToolFiducials.py:199 +#: flatcamGUI/PreferencesUI.py:6376 flatcamTools/ToolFiducials.py:199 msgid "Up" msgstr "Вверху" -#: flatcamGUI/PreferencesUI.py:6376 flatcamTools/ToolFiducials.py:200 +#: flatcamGUI/PreferencesUI.py:6377 flatcamTools/ToolFiducials.py:200 msgid "Down" msgstr "Внизу" -#: flatcamGUI/PreferencesUI.py:6379 flatcamTools/ToolFiducials.py:203 +#: flatcamGUI/PreferencesUI.py:6380 flatcamTools/ToolFiducials.py:203 msgid "Second fiducial" msgstr "Вторичные контрольные точки" -#: flatcamGUI/PreferencesUI.py:6381 flatcamTools/ToolFiducials.py:205 +#: flatcamGUI/PreferencesUI.py:6382 flatcamTools/ToolFiducials.py:205 msgid "" "The position for the second fiducial.\n" "- 'Up' - the order is: bottom-left, top-left, top-right.\n" @@ -12210,19 +12210,19 @@ msgstr "" "- 'Нет' - вторичная контрольная точка отсутствует. Порядок: снизу слева, " "сверху справа." -#: flatcamGUI/PreferencesUI.py:6397 flatcamTools/ToolFiducials.py:221 +#: flatcamGUI/PreferencesUI.py:6398 flatcamTools/ToolFiducials.py:221 msgid "Cross" msgstr "Крест" -#: flatcamGUI/PreferencesUI.py:6398 flatcamTools/ToolFiducials.py:222 +#: flatcamGUI/PreferencesUI.py:6399 flatcamTools/ToolFiducials.py:222 msgid "Chess" msgstr "Шахматный порядок" -#: flatcamGUI/PreferencesUI.py:6401 flatcamTools/ToolFiducials.py:224 +#: flatcamGUI/PreferencesUI.py:6402 flatcamTools/ToolFiducials.py:224 msgid "Fiducial Type" msgstr "Тип контрольных точек" -#: flatcamGUI/PreferencesUI.py:6403 flatcamTools/ToolFiducials.py:226 +#: flatcamGUI/PreferencesUI.py:6404 flatcamTools/ToolFiducials.py:226 msgid "" "The type of fiducial.\n" "- 'Circular' - this is the regular fiducial.\n" @@ -12234,19 +12234,19 @@ msgstr "" "- 'Крест' - крестообразные.\n" "- 'Шахматный порядок' - точки в шахматном порядке." -#: flatcamGUI/PreferencesUI.py:6412 flatcamTools/ToolFiducials.py:235 +#: flatcamGUI/PreferencesUI.py:6413 flatcamTools/ToolFiducials.py:235 msgid "Line thickness" msgstr "Толщина линии" -#: flatcamGUI/PreferencesUI.py:6432 +#: flatcamGUI/PreferencesUI.py:6433 msgid "Calibration Tool Options" msgstr "Параметры калибровки" -#: flatcamGUI/PreferencesUI.py:6448 flatcamTools/ToolCalibration.py:181 +#: flatcamGUI/PreferencesUI.py:6449 flatcamTools/ToolCalibration.py:181 msgid "Source Type" msgstr "Тип источника" -#: flatcamGUI/PreferencesUI.py:6449 flatcamTools/ToolCalibration.py:182 +#: flatcamGUI/PreferencesUI.py:6450 flatcamTools/ToolCalibration.py:182 msgid "" "The source of calibration points.\n" "It can be:\n" @@ -12259,27 +12259,27 @@ msgstr "" "Gerber\n" "- Свободно - > щелкните мышью по холсту для получения точек калибровки" -#: flatcamGUI/PreferencesUI.py:6454 flatcamTools/ToolCalibration.py:187 +#: flatcamGUI/PreferencesUI.py:6455 flatcamTools/ToolCalibration.py:187 msgid "Free" msgstr "Свободно" -#: flatcamGUI/PreferencesUI.py:6468 flatcamTools/ToolCalibration.py:76 +#: flatcamGUI/PreferencesUI.py:6469 flatcamTools/ToolCalibration.py:76 msgid "Height (Z) for travelling between the points." msgstr "Высота (Z) для перемещения между точками." -#: flatcamGUI/PreferencesUI.py:6480 flatcamTools/ToolCalibration.py:88 +#: flatcamGUI/PreferencesUI.py:6481 flatcamTools/ToolCalibration.py:88 msgid "Verification Z" msgstr "Проверка Z" -#: flatcamGUI/PreferencesUI.py:6482 flatcamTools/ToolCalibration.py:90 +#: flatcamGUI/PreferencesUI.py:6483 flatcamTools/ToolCalibration.py:90 msgid "Height (Z) for checking the point." msgstr "Высота (Z) для проверки точки." -#: flatcamGUI/PreferencesUI.py:6494 flatcamTools/ToolCalibration.py:102 +#: flatcamGUI/PreferencesUI.py:6495 flatcamTools/ToolCalibration.py:102 msgid "Zero Z tool" msgstr "Обнуление Z" -#: flatcamGUI/PreferencesUI.py:6496 flatcamTools/ToolCalibration.py:104 +#: flatcamGUI/PreferencesUI.py:6497 flatcamTools/ToolCalibration.py:104 msgid "" "Include a sequence to zero the height (Z)\n" "of the verification tool." @@ -12287,11 +12287,11 @@ msgstr "" "Включает последовательное обнуление высоты (Z)\n" "при проверке." -#: flatcamGUI/PreferencesUI.py:6505 flatcamTools/ToolCalibration.py:113 +#: flatcamGUI/PreferencesUI.py:6506 flatcamTools/ToolCalibration.py:113 msgid "Height (Z) for mounting the verification probe." msgstr "Высота (Z) для установки проверочной пробы." -#: flatcamGUI/PreferencesUI.py:6519 flatcamTools/ToolCalibration.py:127 +#: flatcamGUI/PreferencesUI.py:6520 flatcamTools/ToolCalibration.py:127 msgid "" "Toolchange X,Y position.\n" "If no value is entered then the current\n" @@ -12301,11 +12301,11 @@ msgstr "" "Если значение не введено, то текущий\n" "(х, у) точка будет использоваться," -#: flatcamGUI/PreferencesUI.py:6530 flatcamTools/ToolCalibration.py:153 +#: flatcamGUI/PreferencesUI.py:6531 flatcamTools/ToolCalibration.py:153 msgid "Second point" msgstr "Вторая точка" -#: flatcamGUI/PreferencesUI.py:6532 flatcamTools/ToolCalibration.py:155 +#: flatcamGUI/PreferencesUI.py:6533 flatcamTools/ToolCalibration.py:155 msgid "" "Second point in the Gcode verification can be:\n" "- top-left -> the user will align the PCB vertically\n" @@ -12315,45 +12315,45 @@ msgstr "" "- вверху слева -> пользователь выровняет печатную плату по вертикали\n" "- внизу справа -> пользователь выровняет печатную плату по горизонтали" -#: flatcamGUI/PreferencesUI.py:6536 flatcamTools/ToolCalibration.py:159 +#: flatcamGUI/PreferencesUI.py:6537 flatcamTools/ToolCalibration.py:159 msgid "Top-Left" msgstr "Верхний левый" -#: flatcamGUI/PreferencesUI.py:6537 flatcamTools/ToolCalibration.py:160 +#: flatcamGUI/PreferencesUI.py:6538 flatcamTools/ToolCalibration.py:160 msgid "Bottom-Right" msgstr "Внизу справа" -#: flatcamGUI/PreferencesUI.py:6551 +#: flatcamGUI/PreferencesUI.py:6552 msgid "Excellon File associations" msgstr "Ассоциации файлов Excellon" -#: flatcamGUI/PreferencesUI.py:6564 flatcamGUI/PreferencesUI.py:6637 -#: flatcamGUI/PreferencesUI.py:6707 flatcamGUI/PreferencesUI.py:6777 +#: flatcamGUI/PreferencesUI.py:6565 flatcamGUI/PreferencesUI.py:6638 +#: flatcamGUI/PreferencesUI.py:6708 flatcamGUI/PreferencesUI.py:6778 msgid "Restore" msgstr "Восстановить" -#: flatcamGUI/PreferencesUI.py:6565 flatcamGUI/PreferencesUI.py:6638 -#: flatcamGUI/PreferencesUI.py:6708 +#: flatcamGUI/PreferencesUI.py:6566 flatcamGUI/PreferencesUI.py:6639 +#: flatcamGUI/PreferencesUI.py:6709 msgid "Restore the extension list to the default state." msgstr "Восстановление списка расширений в состояние по умолчанию." -#: flatcamGUI/PreferencesUI.py:6566 flatcamGUI/PreferencesUI.py:6639 -#: flatcamGUI/PreferencesUI.py:6709 flatcamGUI/PreferencesUI.py:6779 +#: flatcamGUI/PreferencesUI.py:6567 flatcamGUI/PreferencesUI.py:6640 +#: flatcamGUI/PreferencesUI.py:6710 flatcamGUI/PreferencesUI.py:6780 msgid "Delete All" msgstr "Удалить все" -#: flatcamGUI/PreferencesUI.py:6567 flatcamGUI/PreferencesUI.py:6640 -#: flatcamGUI/PreferencesUI.py:6710 +#: flatcamGUI/PreferencesUI.py:6568 flatcamGUI/PreferencesUI.py:6641 +#: flatcamGUI/PreferencesUI.py:6711 msgid "Delete all extensions from the list." msgstr "Удаляет все расширения из списка." -#: flatcamGUI/PreferencesUI.py:6575 flatcamGUI/PreferencesUI.py:6648 -#: flatcamGUI/PreferencesUI.py:6718 +#: flatcamGUI/PreferencesUI.py:6576 flatcamGUI/PreferencesUI.py:6649 +#: flatcamGUI/PreferencesUI.py:6719 msgid "Extensions list" msgstr "Список расширений" -#: flatcamGUI/PreferencesUI.py:6577 flatcamGUI/PreferencesUI.py:6650 -#: flatcamGUI/PreferencesUI.py:6720 +#: flatcamGUI/PreferencesUI.py:6578 flatcamGUI/PreferencesUI.py:6651 +#: flatcamGUI/PreferencesUI.py:6721 msgid "" "List of file extensions to be\n" "associated with FlatCAM." @@ -12361,43 +12361,43 @@ msgstr "" "Список расширений файлов, которые будут\n" "связаны с FlatCAM." -#: flatcamGUI/PreferencesUI.py:6597 flatcamGUI/PreferencesUI.py:6670 -#: flatcamGUI/PreferencesUI.py:6739 flatcamGUI/PreferencesUI.py:6811 +#: flatcamGUI/PreferencesUI.py:6598 flatcamGUI/PreferencesUI.py:6671 +#: flatcamGUI/PreferencesUI.py:6740 flatcamGUI/PreferencesUI.py:6812 msgid "Extension" msgstr "Расширение" -#: flatcamGUI/PreferencesUI.py:6598 flatcamGUI/PreferencesUI.py:6671 -#: flatcamGUI/PreferencesUI.py:6740 +#: flatcamGUI/PreferencesUI.py:6599 flatcamGUI/PreferencesUI.py:6672 +#: flatcamGUI/PreferencesUI.py:6741 msgid "A file extension to be added or deleted to the list." msgstr "Расширение файла для добавления или удаления из списка." -#: flatcamGUI/PreferencesUI.py:6606 flatcamGUI/PreferencesUI.py:6679 -#: flatcamGUI/PreferencesUI.py:6748 +#: flatcamGUI/PreferencesUI.py:6607 flatcamGUI/PreferencesUI.py:6680 +#: flatcamGUI/PreferencesUI.py:6749 msgid "Add Extension" msgstr "Добавить расширение" -#: flatcamGUI/PreferencesUI.py:6607 flatcamGUI/PreferencesUI.py:6680 -#: flatcamGUI/PreferencesUI.py:6749 +#: flatcamGUI/PreferencesUI.py:6608 flatcamGUI/PreferencesUI.py:6681 +#: flatcamGUI/PreferencesUI.py:6750 msgid "Add a file extension to the list" msgstr "Добавляет расширение файла в список" -#: flatcamGUI/PreferencesUI.py:6608 flatcamGUI/PreferencesUI.py:6681 -#: flatcamGUI/PreferencesUI.py:6750 +#: flatcamGUI/PreferencesUI.py:6609 flatcamGUI/PreferencesUI.py:6682 +#: flatcamGUI/PreferencesUI.py:6751 msgid "Delete Extension" msgstr "Удалить расширение" -#: flatcamGUI/PreferencesUI.py:6609 flatcamGUI/PreferencesUI.py:6682 -#: flatcamGUI/PreferencesUI.py:6751 +#: flatcamGUI/PreferencesUI.py:6610 flatcamGUI/PreferencesUI.py:6683 +#: flatcamGUI/PreferencesUI.py:6752 msgid "Delete a file extension from the list" msgstr "Удаляет расширение файла из списка" -#: flatcamGUI/PreferencesUI.py:6616 flatcamGUI/PreferencesUI.py:6689 -#: flatcamGUI/PreferencesUI.py:6758 +#: flatcamGUI/PreferencesUI.py:6617 flatcamGUI/PreferencesUI.py:6690 +#: flatcamGUI/PreferencesUI.py:6759 msgid "Apply Association" msgstr "Ассоциировать" -#: flatcamGUI/PreferencesUI.py:6617 flatcamGUI/PreferencesUI.py:6690 -#: flatcamGUI/PreferencesUI.py:6759 +#: flatcamGUI/PreferencesUI.py:6618 flatcamGUI/PreferencesUI.py:6691 +#: flatcamGUI/PreferencesUI.py:6760 msgid "" "Apply the file associations between\n" "FlatCAM and the files with above extensions.\n" @@ -12409,32 +12409,32 @@ msgstr "" "Они будут активны после следующего входа в систему.\n" "Эта работает только в Windows." -#: flatcamGUI/PreferencesUI.py:6634 +#: flatcamGUI/PreferencesUI.py:6635 msgid "GCode File associations" msgstr "Ассоциации файлов GCode" -#: flatcamGUI/PreferencesUI.py:6704 +#: flatcamGUI/PreferencesUI.py:6705 msgid "Gerber File associations" msgstr "Ассоциации файлов Gerber" -#: flatcamGUI/PreferencesUI.py:6774 +#: flatcamGUI/PreferencesUI.py:6775 msgid "Autocompleter Keywords" msgstr "Ключевые слова автозаполнения" -#: flatcamGUI/PreferencesUI.py:6778 +#: flatcamGUI/PreferencesUI.py:6779 msgid "Restore the autocompleter keywords list to the default state." msgstr "" "Восстановление списока ключевых слов автозаполнения в состояние по умолчанию." -#: flatcamGUI/PreferencesUI.py:6780 +#: flatcamGUI/PreferencesUI.py:6781 msgid "Delete all autocompleter keywords from the list." msgstr "Удаление всех ключевых слов автозаполнения из списка." -#: flatcamGUI/PreferencesUI.py:6788 +#: flatcamGUI/PreferencesUI.py:6789 msgid "Keywords list" msgstr "Список ключевых слов" -#: flatcamGUI/PreferencesUI.py:6790 +#: flatcamGUI/PreferencesUI.py:6791 msgid "" "List of keywords used by\n" "the autocompleter in FlatCAM.\n" @@ -12446,23 +12446,23 @@ msgstr "" "Автозаполнение установлено\n" "в редакторе кода и для Tcl Shell." -#: flatcamGUI/PreferencesUI.py:6812 +#: flatcamGUI/PreferencesUI.py:6813 msgid "A keyword to be added or deleted to the list." msgstr "Ключевое слово, которое будет добавлено или удалено из списка." -#: flatcamGUI/PreferencesUI.py:6820 +#: flatcamGUI/PreferencesUI.py:6821 msgid "Add keyword" msgstr "Добавить ключевое слово" -#: flatcamGUI/PreferencesUI.py:6821 +#: flatcamGUI/PreferencesUI.py:6822 msgid "Add a keyword to the list" msgstr "Добавляет ключевое слово в список" -#: flatcamGUI/PreferencesUI.py:6822 +#: flatcamGUI/PreferencesUI.py:6823 msgid "Delete keyword" msgstr "Удалить ключевое слово" -#: flatcamGUI/PreferencesUI.py:6823 +#: flatcamGUI/PreferencesUI.py:6824 msgid "Delete a keyword from the list" msgstr "Удаляет ключевое слово из списка" @@ -13211,9 +13211,9 @@ msgstr "Copper Thieving завершён." #: flatcamTools/ToolCopperThieving.py:754 #: flatcamTools/ToolCopperThieving.py:787 flatcamTools/ToolCutOut.py:466 -#: flatcamTools/ToolCutOut.py:640 flatcamTools/ToolNonCopperClear.py:1156 -#: flatcamTools/ToolNonCopperClear.py:1197 -#: flatcamTools/ToolNonCopperClear.py:1229 flatcamTools/ToolPaint.py:1079 +#: flatcamTools/ToolCutOut.py:640 flatcamTools/ToolNonCopperClear.py:1157 +#: flatcamTools/ToolNonCopperClear.py:1198 +#: flatcamTools/ToolNonCopperClear.py:1230 flatcamTools/ToolPaint.py:1080 #: flatcamTools/ToolPanelize.py:401 flatcamTools/ToolPanelize.py:416 #: flatcamTools/ToolSub.py:288 flatcamTools/ToolSub.py:301 #: flatcamTools/ToolSub.py:492 flatcamTools/ToolSub.py:507 @@ -13223,7 +13223,7 @@ msgid "Could not retrieve object" msgstr "Не удалось получить объект" #: flatcamTools/ToolCopperThieving.py:764 -#: flatcamTools/ToolNonCopperClear.py:1210 +#: flatcamTools/ToolNonCopperClear.py:1211 msgid "Click the start point of the area." msgstr "Нажмите на начальную точку области." @@ -13232,7 +13232,7 @@ msgid "Click the end point of the filling area." msgstr "Нажмите на конечную точку области рисования." #: flatcamTools/ToolCopperThieving.py:821 -#: flatcamTools/ToolNonCopperClear.py:1266 flatcamTools/ToolPaint.py:1206 +#: flatcamTools/ToolNonCopperClear.py:1267 flatcamTools/ToolPaint.py:1207 msgid "Zone added. Click to start adding next zone or right click to finish." msgstr "Зона добавлена. Щелкните правой кнопкой мыши для завершения." @@ -13264,12 +13264,12 @@ msgid "Geometry not supported for bounding box" msgstr "Геометрия не поддерживается для ограничивающих рамок" #: flatcamTools/ToolCopperThieving.py:1061 -#: flatcamTools/ToolNonCopperClear.py:1517 flatcamTools/ToolPaint.py:2571 +#: flatcamTools/ToolNonCopperClear.py:1518 flatcamTools/ToolPaint.py:2572 msgid "No object available." msgstr "Нет доступных объектов." #: flatcamTools/ToolCopperThieving.py:1098 -#: flatcamTools/ToolNonCopperClear.py:1559 +#: flatcamTools/ToolNonCopperClear.py:1560 msgid "The reference object type is not supported." msgstr "Тип указанного объекта не поддерживается." @@ -13480,8 +13480,8 @@ msgstr "" msgid "Any form CutOut operation finished." msgstr "Операция обрезки закончена." -#: flatcamTools/ToolCutOut.py:644 flatcamTools/ToolNonCopperClear.py:1160 -#: flatcamTools/ToolPaint.py:999 flatcamTools/ToolPanelize.py:406 +#: flatcamTools/ToolCutOut.py:644 flatcamTools/ToolNonCopperClear.py:1161 +#: flatcamTools/ToolPaint.py:1000 flatcamTools/ToolPanelize.py:406 #: tclCommands/TclCommandBbox.py:70 tclCommands/TclCommandNregions.py:70 msgid "Object not found" msgstr "Объект не найден" @@ -14492,115 +14492,115 @@ msgstr "" msgid "Generate Geometry" msgstr "Создать объект" -#: flatcamTools/ToolNonCopperClear.py:587 flatcamTools/ToolPaint.py:498 +#: flatcamTools/ToolNonCopperClear.py:588 flatcamTools/ToolPaint.py:499 #: flatcamTools/ToolSolderPaste.py:553 msgid "New Tool" msgstr "Новый инструмент" -#: flatcamTools/ToolNonCopperClear.py:986 flatcamTools/ToolPaint.py:771 -#: flatcamTools/ToolSolderPaste.py:884 +#: flatcamTools/ToolNonCopperClear.py:987 flatcamTools/ToolPaint.py:772 +#: flatcamTools/ToolSolderPaste.py:887 msgid "Please enter a tool diameter to add, in Float format." msgstr "" "Пожалуйста, введите диаметр инструмента для добавления в формате Float." -#: flatcamTools/ToolNonCopperClear.py:1017 flatcamTools/ToolPaint.py:796 +#: flatcamTools/ToolNonCopperClear.py:1018 flatcamTools/ToolPaint.py:797 msgid "Adding tool cancelled. Tool already in Tool Table." msgstr "" "Добавление инструмента отменено. Инструмент уже в таблице инструментов." -#: flatcamTools/ToolNonCopperClear.py:1022 flatcamTools/ToolPaint.py:802 +#: flatcamTools/ToolNonCopperClear.py:1023 flatcamTools/ToolPaint.py:803 msgid "New tool added to Tool Table." msgstr "Новый инструмент добавлен в таблицу инструментов." -#: flatcamTools/ToolNonCopperClear.py:1066 flatcamTools/ToolPaint.py:848 +#: flatcamTools/ToolNonCopperClear.py:1067 flatcamTools/ToolPaint.py:849 msgid "Tool from Tool Table was edited." msgstr "Инструмент был изменён в таблице инструментов." -#: flatcamTools/ToolNonCopperClear.py:1077 flatcamTools/ToolPaint.py:860 -#: flatcamTools/ToolSolderPaste.py:975 +#: flatcamTools/ToolNonCopperClear.py:1078 flatcamTools/ToolPaint.py:861 +#: flatcamTools/ToolSolderPaste.py:978 msgid "Edit cancelled. New diameter value is already in the Tool Table." msgstr "" "Правка отменена. Новое значение диаметра уже находится в таблице " "инструментов." -#: flatcamTools/ToolNonCopperClear.py:1124 flatcamTools/ToolPaint.py:958 +#: flatcamTools/ToolNonCopperClear.py:1125 flatcamTools/ToolPaint.py:959 msgid "Delete failed. Select a tool to delete." msgstr "Ошибка удаления. Выберите инструмент для удаления." -#: flatcamTools/ToolNonCopperClear.py:1129 flatcamTools/ToolPaint.py:964 +#: flatcamTools/ToolNonCopperClear.py:1130 flatcamTools/ToolPaint.py:965 msgid "Tool(s) deleted from Tool Table." msgstr "Инструмент удалён из таблицы инструментов." -#: flatcamTools/ToolNonCopperClear.py:1176 +#: flatcamTools/ToolNonCopperClear.py:1177 msgid "Wrong Tool Dia value format entered, use a number." msgstr "Неверный формат ввода диаметра инструмента, используйте цифры." -#: flatcamTools/ToolNonCopperClear.py:1185 flatcamTools/ToolPaint.py:1028 +#: flatcamTools/ToolNonCopperClear.py:1186 flatcamTools/ToolPaint.py:1029 msgid "No selected tools in Tool Table." msgstr "Нет инструментов сопла в таблице инструментов." -#: flatcamTools/ToolNonCopperClear.py:1260 flatcamTools/ToolPaint.py:1200 +#: flatcamTools/ToolNonCopperClear.py:1261 flatcamTools/ToolPaint.py:1201 msgid "Click the end point of the paint area." msgstr "Нажмите на конечную точку области рисования." -#: flatcamTools/ToolNonCopperClear.py:1414 -#: flatcamTools/ToolNonCopperClear.py:1416 +#: flatcamTools/ToolNonCopperClear.py:1415 +#: flatcamTools/ToolNonCopperClear.py:1417 msgid "Non-Copper clearing ..." msgstr "Очистка от меди ..." -#: flatcamTools/ToolNonCopperClear.py:1426 +#: flatcamTools/ToolNonCopperClear.py:1427 msgid "NCC Tool started. Reading parameters." msgstr "Очистка от меди. Чтение параметров." -#: flatcamTools/ToolNonCopperClear.py:1489 +#: flatcamTools/ToolNonCopperClear.py:1490 msgid "NCC Tool. Preparing non-copper polygons." msgstr "Очистка от меди. Подготовка безмедных полигонов." -#: flatcamTools/ToolNonCopperClear.py:1585 +#: flatcamTools/ToolNonCopperClear.py:1586 msgid "" "NCC Tool. Finished non-copper polygons. Normal copper clearing task started." msgstr "" "Очистка от меди. Безмедные полигоны готовы. Началось задание по нормальной " "очистке меди." -#: flatcamTools/ToolNonCopperClear.py:1617 +#: flatcamTools/ToolNonCopperClear.py:1618 msgid "NCC Tool. Calculate 'empty' area." msgstr "Очистка от меди. Расчёт «пустой» области." -#: flatcamTools/ToolNonCopperClear.py:1630 -#: flatcamTools/ToolNonCopperClear.py:1729 -#: flatcamTools/ToolNonCopperClear.py:1741 -#: flatcamTools/ToolNonCopperClear.py:1990 -#: flatcamTools/ToolNonCopperClear.py:2086 -#: flatcamTools/ToolNonCopperClear.py:2098 +#: flatcamTools/ToolNonCopperClear.py:1631 +#: flatcamTools/ToolNonCopperClear.py:1730 +#: flatcamTools/ToolNonCopperClear.py:1742 +#: flatcamTools/ToolNonCopperClear.py:1991 +#: flatcamTools/ToolNonCopperClear.py:2087 +#: flatcamTools/ToolNonCopperClear.py:2099 msgid "Buffering finished" msgstr "Буферизация закончена" -#: flatcamTools/ToolNonCopperClear.py:1748 -#: flatcamTools/ToolNonCopperClear.py:2104 +#: flatcamTools/ToolNonCopperClear.py:1749 +#: flatcamTools/ToolNonCopperClear.py:2105 msgid "The selected object is not suitable for copper clearing." msgstr "Выбранный объект не подходит для очистки меди." -#: flatcamTools/ToolNonCopperClear.py:1753 -#: flatcamTools/ToolNonCopperClear.py:2109 +#: flatcamTools/ToolNonCopperClear.py:1754 +#: flatcamTools/ToolNonCopperClear.py:2110 msgid "Could not get the extent of the area to be non copper cleared." msgstr "Не удалось получить размер области, не подлежащей очистке от меди." -#: flatcamTools/ToolNonCopperClear.py:1760 +#: flatcamTools/ToolNonCopperClear.py:1761 msgid "NCC Tool. Finished calculation of 'empty' area." msgstr "Очистка от меди. Закончен расчёт «пустой» области." -#: flatcamTools/ToolNonCopperClear.py:1773 -#: flatcamTools/ToolNonCopperClear.py:2134 +#: flatcamTools/ToolNonCopperClear.py:1774 +#: flatcamTools/ToolNonCopperClear.py:2135 msgid "NCC Tool clearing with tool diameter = " msgstr "Очистка от меди инструментом с диаметром = " -#: flatcamTools/ToolNonCopperClear.py:1776 -#: flatcamTools/ToolNonCopperClear.py:2137 +#: flatcamTools/ToolNonCopperClear.py:1777 +#: flatcamTools/ToolNonCopperClear.py:2138 msgid "started." msgstr "запущен." -#: flatcamTools/ToolNonCopperClear.py:1919 +#: flatcamTools/ToolNonCopperClear.py:1920 msgid "" "There is no NCC Geometry in the file.\n" "Usually it means that the tool diameter is too big for the painted " @@ -14612,24 +14612,24 @@ msgstr "" "рисования .\n" "Измените параметры рисования и повторите попытку." -#: flatcamTools/ToolNonCopperClear.py:1939 +#: flatcamTools/ToolNonCopperClear.py:1940 msgid "NCC Tool clear all done." msgstr "Очистка от меди выполнена." -#: flatcamTools/ToolNonCopperClear.py:1941 +#: flatcamTools/ToolNonCopperClear.py:1942 msgid "NCC Tool clear all done but the copper features isolation is broken for" msgstr "Очистка от меди выполнена, но медная изоляция нарушена для" -#: flatcamTools/ToolNonCopperClear.py:1944 -#: flatcamTools/ToolNonCopperClear.py:2310 +#: flatcamTools/ToolNonCopperClear.py:1945 +#: flatcamTools/ToolNonCopperClear.py:2311 msgid "tools" msgstr "инструментов" -#: flatcamTools/ToolNonCopperClear.py:2306 +#: flatcamTools/ToolNonCopperClear.py:2307 msgid "NCC Tool Rest Machining clear all done." msgstr "Очистка от меди с обработкой остаточного припуска выполнена." -#: flatcamTools/ToolNonCopperClear.py:2309 +#: flatcamTools/ToolNonCopperClear.py:2310 msgid "" "NCC Tool Rest Machining clear all done but the copper features isolation is " "broken for" @@ -14637,7 +14637,7 @@ msgstr "" "Очистка от меди с обработкой остаточного припуска выполнена, но медная " "изоляция нарушена для" -#: flatcamTools/ToolNonCopperClear.py:2756 +#: flatcamTools/ToolNonCopperClear.py:2757 msgid "" "Try to use the Buffering Type = Full in Preferences -> Gerber General. " "Reload the Gerber file after this change." @@ -14943,72 +14943,72 @@ msgstr "" "- «Контрольный объект» - будет выполнять очистку от меди в области\n" "указано другим объектом." -#: flatcamTools/ToolPaint.py:978 +#: flatcamTools/ToolPaint.py:979 msgid "Paint Tool. Reading parameters." msgstr "Инструмент рисования. Чтение параметров." -#: flatcamTools/ToolPaint.py:993 +#: flatcamTools/ToolPaint.py:994 #, python-format msgid "Could not retrieve object: %s" msgstr "Не удалось получить объект: %s" -#: flatcamTools/ToolPaint.py:1007 +#: flatcamTools/ToolPaint.py:1008 msgid "Can't do Paint on MultiGeo geometries" msgstr "Невозможно окрашивание MultiGeo Geometries" -#: flatcamTools/ToolPaint.py:1040 +#: flatcamTools/ToolPaint.py:1041 msgid "Click on a polygon to paint it." msgstr "Нажмите на полигон, чтобы нарисовать его." -#: flatcamTools/ToolPaint.py:1059 +#: flatcamTools/ToolPaint.py:1060 msgid "Click the start point of the paint area." msgstr "Нажмите на начальную точку области рисования." -#: flatcamTools/ToolPaint.py:1127 +#: flatcamTools/ToolPaint.py:1128 msgid "Click to add next polygon or right click to start painting." msgstr "" "Щелкните, чтобы добавить следующий полигон, или щелкните правой кнопкой " "мыши, чтобы начать рисование." -#: flatcamTools/ToolPaint.py:1140 +#: flatcamTools/ToolPaint.py:1141 msgid "Click to add/remove next polygon or right click to start painting." msgstr "" "Нажмите для добавления/удаления следующего полигона или щелкните правой " "кнопкой мыши, чтобы начать рисование." -#: 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 +#: flatcamTools/ToolPaint.py:1349 flatcamTools/ToolPaint.py:1352 +#: flatcamTools/ToolPaint.py:1354 flatcamTools/ToolPaint.py:1886 +#: flatcamTools/ToolPaint.py:1890 flatcamTools/ToolPaint.py:1893 +#: flatcamTools/ToolPaint.py:2175 flatcamTools/ToolPaint.py:2180 +#: flatcamTools/ToolPaint.py:2183 flatcamTools/ToolPaint.py:2357 +#: flatcamTools/ToolPaint.py:2364 msgid "Paint Tool." msgstr "Рисование." -#: flatcamTools/ToolPaint.py:1348 flatcamTools/ToolPaint.py:1351 -#: flatcamTools/ToolPaint.py:1353 +#: flatcamTools/ToolPaint.py:1349 flatcamTools/ToolPaint.py:1352 +#: flatcamTools/ToolPaint.py:1354 msgid "Normal painting polygon task started." msgstr "Началась задача нормальной отрисовки полигона." -#: flatcamTools/ToolPaint.py:1349 flatcamTools/ToolPaint.py:1711 -#: flatcamTools/ToolPaint.py:1886 flatcamTools/ToolPaint.py:2176 -#: flatcamTools/ToolPaint.py:2358 +#: flatcamTools/ToolPaint.py:1350 flatcamTools/ToolPaint.py:1712 +#: flatcamTools/ToolPaint.py:1887 flatcamTools/ToolPaint.py:2177 +#: flatcamTools/ToolPaint.py:2359 msgid "Buffering geometry..." msgstr "Буферизация geometry..." -#: flatcamTools/ToolPaint.py:1371 +#: flatcamTools/ToolPaint.py:1372 msgid "No polygon found." msgstr "Полигон не найден." -#: flatcamTools/ToolPaint.py:1405 +#: flatcamTools/ToolPaint.py:1406 msgid "Painting polygon..." msgstr "Отрисовка полигона..." -#: flatcamTools/ToolPaint.py:1453 +#: flatcamTools/ToolPaint.py:1454 msgid "Geometry could not be painted completely" msgstr "Геометрия не может быть окрашена полностью" -#: flatcamTools/ToolPaint.py:1486 +#: flatcamTools/ToolPaint.py:1487 msgid "" "Could not do Paint. Try a different combination of parameters. Or a " "different strategy of paint" @@ -15016,9 +15016,9 @@ msgstr "" "Окраска не выполнена. Попробуйте другую комбинацию параметров. Или другой " "способ рисования" -#: flatcamTools/ToolPaint.py:1538 flatcamTools/ToolPaint.py:1865 -#: flatcamTools/ToolPaint.py:2015 flatcamTools/ToolPaint.py:2336 -#: flatcamTools/ToolPaint.py:2490 +#: flatcamTools/ToolPaint.py:1539 flatcamTools/ToolPaint.py:1866 +#: flatcamTools/ToolPaint.py:2016 flatcamTools/ToolPaint.py:2337 +#: flatcamTools/ToolPaint.py:2491 msgid "" "There is no Painting Geometry in the file.\n" "Usually it means that the tool diameter is too big for the painted " @@ -15030,36 +15030,36 @@ msgstr "" "Geometry .\n" "Измените параметры рисования и повторите попытку." -#: flatcamTools/ToolPaint.py:1544 +#: flatcamTools/ToolPaint.py:1545 msgid "Paint Single Done." msgstr "Paint Single выполнена." -#: flatcamTools/ToolPaint.py:1576 flatcamTools/ToolPaint.py:2043 -#: flatcamTools/ToolPaint.py:2518 +#: flatcamTools/ToolPaint.py:1577 flatcamTools/ToolPaint.py:2044 +#: flatcamTools/ToolPaint.py:2519 msgid "Polygon Paint started ..." msgstr "Запущена отрисовка полигона ..." -#: flatcamTools/ToolPaint.py:1628 flatcamTools/ToolPaint.py:2105 +#: flatcamTools/ToolPaint.py:1629 flatcamTools/ToolPaint.py:2106 msgid "Painting polygons..." msgstr "Отрисовка полигонов..." -#: flatcamTools/ToolPaint.py:1710 flatcamTools/ToolPaint.py:1713 -#: flatcamTools/ToolPaint.py:1715 +#: flatcamTools/ToolPaint.py:1711 flatcamTools/ToolPaint.py:1714 +#: flatcamTools/ToolPaint.py:1716 msgid "Paint Tool. Normal painting all task started." msgstr "Инструмент рисования. Запущены все задания нормальной покраски." -#: flatcamTools/ToolPaint.py:1749 flatcamTools/ToolPaint.py:1921 -#: flatcamTools/ToolPaint.py:2223 flatcamTools/ToolPaint.py:2399 +#: flatcamTools/ToolPaint.py:1750 flatcamTools/ToolPaint.py:1922 +#: flatcamTools/ToolPaint.py:2224 flatcamTools/ToolPaint.py:2400 msgid "Painting with tool diameter = " msgstr "Покраска инструментом с диаметром = " -#: flatcamTools/ToolPaint.py:1752 flatcamTools/ToolPaint.py:1924 -#: flatcamTools/ToolPaint.py:2226 flatcamTools/ToolPaint.py:2402 +#: flatcamTools/ToolPaint.py:1753 flatcamTools/ToolPaint.py:1925 +#: flatcamTools/ToolPaint.py:2227 flatcamTools/ToolPaint.py:2403 msgid "started" msgstr "запущено" -#: flatcamTools/ToolPaint.py:1814 flatcamTools/ToolPaint.py:1970 -#: flatcamTools/ToolPaint.py:2286 flatcamTools/ToolPaint.py:2446 +#: flatcamTools/ToolPaint.py:1815 flatcamTools/ToolPaint.py:1971 +#: flatcamTools/ToolPaint.py:2287 flatcamTools/ToolPaint.py:2447 msgid "" "Could not do Paint All. Try a different combination of parameters. Or a " "different Method of paint" @@ -15067,33 +15067,33 @@ msgstr "" "Окраска не выполнена. Попробуйте другую комбинацию параметров. Или другой " "способ рисования" -#: flatcamTools/ToolPaint.py:1874 +#: flatcamTools/ToolPaint.py:1875 msgid "Paint All Done." msgstr "Задание \"Окрасить всё\" выполнено." -#: flatcamTools/ToolPaint.py:1885 flatcamTools/ToolPaint.py:1889 -#: flatcamTools/ToolPaint.py:1892 +#: flatcamTools/ToolPaint.py:1886 flatcamTools/ToolPaint.py:1890 +#: flatcamTools/ToolPaint.py:1893 msgid "Rest machining painting all task started." msgstr "Запущены все задания окраски с обработкой остаточного припуска." -#: flatcamTools/ToolPaint.py:2024 flatcamTools/ToolPaint.py:2499 +#: flatcamTools/ToolPaint.py:2025 flatcamTools/ToolPaint.py:2500 msgid "Paint All with Rest-Machining done." msgstr "[success] Окрашивание с обработкой остаточного припуска выполнено." -#: flatcamTools/ToolPaint.py:2175 flatcamTools/ToolPaint.py:2179 -#: flatcamTools/ToolPaint.py:2182 +#: flatcamTools/ToolPaint.py:2176 flatcamTools/ToolPaint.py:2180 +#: flatcamTools/ToolPaint.py:2183 msgid "Normal painting area task started." msgstr "Запущена задача нормальной окраски." -#: flatcamTools/ToolPaint.py:2345 +#: flatcamTools/ToolPaint.py:2346 msgid "Paint Area Done." msgstr "Окраска области сделана." -#: flatcamTools/ToolPaint.py:2357 flatcamTools/ToolPaint.py:2363 +#: flatcamTools/ToolPaint.py:2358 flatcamTools/ToolPaint.py:2364 msgid "Rest machining painting area task started." msgstr "Запущено задание окраски с обработкой остаточного припуска." -#: flatcamTools/ToolPaint.py:2360 +#: flatcamTools/ToolPaint.py:2361 msgid "Paint Tool. Rest machining painting area task started." msgstr "" "Инструмент рисования. Запущено задание окраски с обработкой остаточного " @@ -16044,92 +16044,92 @@ msgstr "" "Четвертый шаг (и последний) - выбор CNCJob, сделанного из \n" "геометрии распределения паяльной пасты, а затем просмотр/сохранение ее GCode." -#: flatcamTools/ToolSolderPaste.py:914 +#: flatcamTools/ToolSolderPaste.py:917 msgid "Adding Nozzle tool cancelled. Tool already in Tool Table." msgstr "" "Добавление инструмента Сопло отменено. Инструмент уже в таблице инструментов." -#: flatcamTools/ToolSolderPaste.py:920 +#: flatcamTools/ToolSolderPaste.py:923 msgid "New Nozzle tool added to Tool Table." msgstr "Новое сопло добавлено в таблицу инструментов." -#: flatcamTools/ToolSolderPaste.py:963 +#: flatcamTools/ToolSolderPaste.py:966 msgid "Nozzle tool from Tool Table was edited." msgstr "Сопло было изменено в таблице инструментов." -#: flatcamTools/ToolSolderPaste.py:1021 +#: flatcamTools/ToolSolderPaste.py:1024 msgid "Delete failed. Select a Nozzle tool to delete." msgstr "Удалить не удалось. Выберите инструмент Сопла для удаления." -#: flatcamTools/ToolSolderPaste.py:1027 +#: flatcamTools/ToolSolderPaste.py:1030 msgid "Nozzle tool(s) deleted from Tool Table." msgstr "Сопло удалено из таблицы инструментов." -#: flatcamTools/ToolSolderPaste.py:1083 +#: flatcamTools/ToolSolderPaste.py:1086 msgid "No SolderPaste mask Gerber object loaded." msgstr "Нет загруженного Gerber объекта маски паяльной пасты." -#: flatcamTools/ToolSolderPaste.py:1101 +#: flatcamTools/ToolSolderPaste.py:1104 msgid "Creating Solder Paste dispensing geometry." msgstr "Создание геометрии дозирования паяльной пасты." -#: flatcamTools/ToolSolderPaste.py:1114 +#: flatcamTools/ToolSolderPaste.py:1117 msgid "No Nozzle tools in the tool table." msgstr "Нет инструментов сопла в таблице инструментов." -#: flatcamTools/ToolSolderPaste.py:1241 +#: flatcamTools/ToolSolderPaste.py:1244 msgid "Cancelled. Empty file, it has no geometry..." msgstr "Отмена. Пустой файл, он не имеет геометрии..." -#: flatcamTools/ToolSolderPaste.py:1245 +#: flatcamTools/ToolSolderPaste.py:1248 msgid "Solder Paste geometry generated successfully" msgstr "Геометрия дозатора паяльной пасты успешно создана" -#: flatcamTools/ToolSolderPaste.py:1252 +#: flatcamTools/ToolSolderPaste.py:1255 msgid "Some or all pads have no solder due of inadequate nozzle diameters..." msgstr "" "Некоторые или все площадки не имеют припоя из-за недостаточного диаметра " "сопла ..." -#: flatcamTools/ToolSolderPaste.py:1266 +#: flatcamTools/ToolSolderPaste.py:1269 msgid "Generating Solder Paste dispensing geometry..." msgstr "Генерация геометрии дозирования паяльной пасты ..." -#: flatcamTools/ToolSolderPaste.py:1286 +#: flatcamTools/ToolSolderPaste.py:1289 msgid "There is no Geometry object available." msgstr "Объект Geometry недоступен." -#: flatcamTools/ToolSolderPaste.py:1291 +#: flatcamTools/ToolSolderPaste.py:1294 msgid "This Geometry can't be processed. NOT a solder_paste_tool geometry." msgstr "" "Эта геометрия не может быть обработана. НЕТ геометрии инструмента паяльная " "пасты." -#: flatcamTools/ToolSolderPaste.py:1398 +#: flatcamTools/ToolSolderPaste.py:1401 msgid "ToolSolderPaste CNCjob created" msgstr "CNCjob дозатора паяльной пасты создан" -#: flatcamTools/ToolSolderPaste.py:1419 +#: flatcamTools/ToolSolderPaste.py:1422 msgid "SP GCode Editor" msgstr "Редактор кода паяльной пасты" -#: flatcamTools/ToolSolderPaste.py:1431 flatcamTools/ToolSolderPaste.py:1436 -#: flatcamTools/ToolSolderPaste.py:1491 +#: flatcamTools/ToolSolderPaste.py:1434 flatcamTools/ToolSolderPaste.py:1439 +#: flatcamTools/ToolSolderPaste.py:1494 msgid "" "This CNCJob object can't be processed. NOT a solder_paste_tool CNCJob object." msgstr "" "Этот объект CNCJob не может быть обработан. Нет CNCJob объекта паяльной " "пасты." -#: flatcamTools/ToolSolderPaste.py:1461 +#: flatcamTools/ToolSolderPaste.py:1464 msgid "No Gcode in the object" msgstr "Нет Gcode в этом объекте" -#: flatcamTools/ToolSolderPaste.py:1501 +#: flatcamTools/ToolSolderPaste.py:1504 msgid "Export GCode ..." msgstr "Экспорт GCode ..." -#: flatcamTools/ToolSolderPaste.py:1549 +#: flatcamTools/ToolSolderPaste.py:1552 msgid "Solder paste dispenser GCode file saved to" msgstr "Файл GCode дозатора паяльной пасты сохранён в" diff --git a/locale_template/strings.pot b/locale_template/strings.pot index 57288f31..444d80ea 100644 --- a/locale_template/strings.pot +++ b/locale_template/strings.pot @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"POT-Creation-Date: 2019-12-14 02:48+0200\n" +"POT-Creation-Date: 2019-12-15 16:26+0200\n" "PO-Revision-Date: 2019-03-25 15:08+0200\n" "Last-Translator: \n" "Language-Team: \n" @@ -23,260 +23,260 @@ msgstr "" "X-Poedit-SearchPathExcluded-1: doc\n" "X-Poedit-SearchPathExcluded-2: tests\n" -#: FlatCAMApp.py:999 +#: FlatCAMApp.py:1004 msgid "FlatCAM is initializing ..." msgstr "" -#: FlatCAMApp.py:1580 +#: FlatCAMApp.py:1585 msgid "Could not find the Language files. The App strings are missing." msgstr "" -#: FlatCAMApp.py:1673 +#: FlatCAMApp.py:1678 msgid "" "FlatCAM is initializing ...\n" "Canvas initialization started." msgstr "" -#: FlatCAMApp.py:1691 +#: FlatCAMApp.py:1696 msgid "" "FlatCAM is initializing ...\n" "Canvas initialization started.\n" "Canvas initialization finished in" msgstr "" -#: FlatCAMApp.py:2388 +#: FlatCAMApp.py:2395 msgid "" "Type >help< to get started\n" "\n" msgstr "" -#: FlatCAMApp.py:2643 FlatCAMApp.py:9138 +#: FlatCAMApp.py:2650 FlatCAMApp.py:9170 msgid "New Project - Not saved" msgstr "" -#: FlatCAMApp.py:2718 FlatCAMApp.py:9206 FlatCAMApp.py:9243 FlatCAMApp.py:9284 -#: FlatCAMApp.py:9355 FlatCAMApp.py:10109 FlatCAMApp.py:11123 FlatCAMApp.py:11182 +#: FlatCAMApp.py:2725 FlatCAMApp.py:9238 FlatCAMApp.py:9275 FlatCAMApp.py:9316 +#: FlatCAMApp.py:9387 FlatCAMApp.py:10141 FlatCAMApp.py:11155 FlatCAMApp.py:11214 msgid "" "Canvas initialization started.\n" "Canvas initialization finished in" msgstr "" -#: FlatCAMApp.py:2720 +#: FlatCAMApp.py:2727 msgid "Executing Tcl Script ..." msgstr "" -#: FlatCAMApp.py:2735 +#: FlatCAMApp.py:2742 msgid "Found old default preferences files. Please reboot the application to update." msgstr "" -#: FlatCAMApp.py:2779 ObjectCollection.py:90 flatcamTools/ToolImage.py:248 +#: FlatCAMApp.py:2786 ObjectCollection.py:90 flatcamTools/ToolImage.py:248 #: flatcamTools/ToolPcbWizard.py:301 flatcamTools/ToolPcbWizard.py:324 msgid "Open cancelled." msgstr "" -#: FlatCAMApp.py:2795 +#: FlatCAMApp.py:2802 msgid "Open Config file failed." msgstr "" -#: FlatCAMApp.py:2810 +#: FlatCAMApp.py:2817 msgid "Open Script file failed." msgstr "" -#: FlatCAMApp.py:2836 +#: FlatCAMApp.py:2843 msgid "Open Excellon file failed." msgstr "" -#: FlatCAMApp.py:2849 +#: FlatCAMApp.py:2856 msgid "Open GCode file failed." msgstr "" -#: FlatCAMApp.py:2862 +#: FlatCAMApp.py:2869 msgid "Open Gerber file failed." msgstr "" -#: FlatCAMApp.py:3203 +#: FlatCAMApp.py:3223 msgid "Select a Geometry, Gerber or Excellon Object to edit." msgstr "" -#: FlatCAMApp.py:3218 +#: FlatCAMApp.py:3238 msgid "" "Simultaneous editing of tools geometry in a MultiGeo Geometry is not possible.\n" "Edit only one geometry at a time." msgstr "" -#: FlatCAMApp.py:3273 +#: FlatCAMApp.py:3293 msgid "Editor is activated ..." msgstr "" -#: FlatCAMApp.py:3294 +#: FlatCAMApp.py:3314 msgid "Do you want to save the edited object?" msgstr "" -#: FlatCAMApp.py:3295 flatcamGUI/FlatCAMGUI.py:1969 +#: FlatCAMApp.py:3315 flatcamGUI/FlatCAMGUI.py:2134 msgid "Close Editor" msgstr "" -#: 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 +#: FlatCAMApp.py:3318 FlatCAMApp.py:5029 FlatCAMApp.py:7889 FlatCAMApp.py:7915 +#: FlatCAMApp.py:9077 FlatCAMTranslation.py:108 FlatCAMTranslation.py:193 +#: flatcamGUI/PreferencesUI.py:1035 msgid "Yes" msgstr "" -#: 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 +#: FlatCAMApp.py:3319 FlatCAMApp.py:5030 FlatCAMApp.py:7890 FlatCAMApp.py:7916 +#: FlatCAMApp.py:9078 FlatCAMTranslation.py:109 FlatCAMTranslation.py:194 +#: flatcamGUI/PreferencesUI.py:1036 flatcamGUI/PreferencesUI.py:4095 +#: flatcamGUI/PreferencesUI.py:4520 flatcamTools/ToolNonCopperClear.py:189 #: flatcamTools/ToolPaint.py:161 msgid "No" msgstr "" -#: FlatCAMApp.py:3300 FlatCAMApp.py:5003 FlatCAMApp.py:5839 FlatCAMApp.py:7157 -#: FlatCAMApp.py:9047 FlatCAMCommon.py:702 flatcamGUI/FlatCAMGUI.py:1117 +#: FlatCAMApp.py:3320 FlatCAMApp.py:5031 FlatCAMApp.py:5867 FlatCAMApp.py:7185 +#: FlatCAMApp.py:9079 FlatCAMCommon.py:702 flatcamGUI/FlatCAMGUI.py:1233 msgid "Cancel" msgstr "" -#: FlatCAMApp.py:3328 +#: FlatCAMApp.py:3348 msgid "Object empty after edit." msgstr "" -#: FlatCAMApp.py:3377 FlatCAMApp.py:3397 FlatCAMApp.py:3412 +#: FlatCAMApp.py:3397 FlatCAMApp.py:3417 FlatCAMApp.py:3432 msgid "Select a Gerber, Geometry or Excellon Object to update." msgstr "" -#: FlatCAMApp.py:3381 +#: FlatCAMApp.py:3401 msgid "is updated, returning to App..." msgstr "" -#: FlatCAMApp.py:3776 FlatCAMApp.py:3850 FlatCAMApp.py:4863 +#: FlatCAMApp.py:3796 FlatCAMApp.py:3870 FlatCAMApp.py:4891 msgid "Could not load defaults file." msgstr "" -#: FlatCAMApp.py:3788 FlatCAMApp.py:3859 FlatCAMApp.py:4872 +#: FlatCAMApp.py:3808 FlatCAMApp.py:3879 FlatCAMApp.py:4900 msgid "Failed to parse defaults file." msgstr "" -#: FlatCAMApp.py:3830 FlatCAMApp.py:3834 +#: FlatCAMApp.py:3850 FlatCAMApp.py:3854 msgid "Import FlatCAM Preferences" msgstr "" -#: FlatCAMApp.py:3841 +#: FlatCAMApp.py:3861 msgid "FlatCAM preferences import cancelled." msgstr "" -#: FlatCAMApp.py:3864 +#: FlatCAMApp.py:3884 msgid "Imported Defaults from" msgstr "" -#: FlatCAMApp.py:3884 FlatCAMApp.py:3889 +#: FlatCAMApp.py:3904 FlatCAMApp.py:3909 msgid "Export FlatCAM Preferences" msgstr "" -#: FlatCAMApp.py:3897 +#: FlatCAMApp.py:3917 msgid "FlatCAM preferences export cancelled." msgstr "" -#: FlatCAMApp.py:3906 FlatCAMApp.py:10338 FlatCAMApp.py:10386 FlatCAMApp.py:10509 -#: FlatCAMApp.py:10648 FlatCAMCommon.py:378 FlatCAMCommon.py:1094 FlatCAMObj.py:6721 +#: FlatCAMApp.py:3926 FlatCAMApp.py:10370 FlatCAMApp.py:10418 FlatCAMApp.py:10541 +#: FlatCAMApp.py:10680 FlatCAMCommon.py:378 FlatCAMCommon.py:1094 FlatCAMObj.py:6724 #: flatcamEditors/FlatCAMTextEditor.py:228 flatcamTools/ToolFilm.py:1019 -#: flatcamTools/ToolFilm.py:1195 flatcamTools/ToolSolderPaste.py:1541 +#: flatcamTools/ToolFilm.py:1195 flatcamTools/ToolSolderPaste.py:1544 msgid "" "Permission denied, saving not possible.\n" "Most likely another app is holding the file open and not accessible." msgstr "" -#: FlatCAMApp.py:3919 +#: FlatCAMApp.py:3939 msgid "Could not load preferences file." msgstr "" -#: FlatCAMApp.py:3939 FlatCAMApp.py:4919 +#: FlatCAMApp.py:3959 FlatCAMApp.py:4947 msgid "Failed to write defaults to file." msgstr "" -#: FlatCAMApp.py:3945 +#: FlatCAMApp.py:3965 msgid "Exported preferences to" msgstr "" -#: FlatCAMApp.py:3962 +#: FlatCAMApp.py:3982 msgid "FlatCAM Preferences Folder opened." msgstr "" -#: FlatCAMApp.py:4045 +#: FlatCAMApp.py:4065 msgid "Failed to open recent files file for writing." msgstr "" -#: FlatCAMApp.py:4056 +#: FlatCAMApp.py:4076 msgid "Failed to open recent projects file for writing." msgstr "" -#: FlatCAMApp.py:4142 flatcamParsers/ParseExcellon.py:886 -#: flatcamTools/ToolSolderPaste.py:1327 +#: FlatCAMApp.py:4162 flatcamParsers/ParseExcellon.py:886 +#: flatcamTools/ToolSolderPaste.py:1330 msgid "An internal error has ocurred. See shell.\n" msgstr "" -#: FlatCAMApp.py:4143 +#: FlatCAMApp.py:4163 #, python-brace-format msgid "" "Object ({kind}) failed because: {error} \n" "\n" msgstr "" -#: FlatCAMApp.py:4163 +#: FlatCAMApp.py:4183 msgid "Converting units to " msgstr "" -#: FlatCAMApp.py:4266 +#: FlatCAMApp.py:4286 msgid "CREATE A NEW FLATCAM TCL SCRIPT" msgstr "" -#: FlatCAMApp.py:4267 +#: FlatCAMApp.py:4287 msgid "TCL Tutorial is here" msgstr "" -#: FlatCAMApp.py:4269 +#: FlatCAMApp.py:4289 msgid "FlatCAM commands list" msgstr "" -#: FlatCAMApp.py:4320 FlatCAMApp.py:4326 FlatCAMApp.py:4332 FlatCAMApp.py:4338 -#: FlatCAMApp.py:4344 FlatCAMApp.py:4350 +#: FlatCAMApp.py:4340 FlatCAMApp.py:4346 FlatCAMApp.py:4352 FlatCAMApp.py:4358 +#: FlatCAMApp.py:4364 FlatCAMApp.py:4370 msgid "created/selected" msgstr "" -#: FlatCAMApp.py:4365 FlatCAMApp.py:7237 FlatCAMObj.py:263 FlatCAMObj.py:294 +#: FlatCAMApp.py:4385 FlatCAMApp.py:7265 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 "" -#: FlatCAMApp.py:4426 flatcamGUI/FlatCAMGUI.py:467 +#: FlatCAMApp.py:4448 flatcamGUI/FlatCAMGUI.py:493 msgid "About FlatCAM" msgstr "" -#: FlatCAMApp.py:4452 +#: FlatCAMApp.py:4474 msgid "2D Computer-Aided Printed Circuit Board Manufacturing" msgstr "" -#: FlatCAMApp.py:4453 +#: FlatCAMApp.py:4475 msgid "Development" msgstr "" -#: FlatCAMApp.py:4454 +#: FlatCAMApp.py:4476 msgid "DOWNLOAD" msgstr "" -#: FlatCAMApp.py:4455 +#: FlatCAMApp.py:4477 msgid "Issue tracker" msgstr "" -#: FlatCAMApp.py:4459 FlatCAMApp.py:4794 +#: FlatCAMApp.py:4481 FlatCAMApp.py:4822 msgid "Close" msgstr "" -#: FlatCAMApp.py:4474 +#: FlatCAMApp.py:4496 msgid "Licensed under the MIT license" msgstr "" -#: FlatCAMApp.py:4483 +#: FlatCAMApp.py:4505 msgid "" "Permission is hereby granted, free of charge, to any person obtaining a copy\n" "of this software and associated documentation files (the \"Software\"), to deal\n" @@ -297,7 +297,7 @@ msgid "" "THE SOFTWARE." msgstr "" -#: FlatCAMApp.py:4505 +#: FlatCAMApp.py:4527 msgid "" "Some of the icons used are from the following sources:
Icons by Freepik from oNline Web Fonts" msgstr "" -#: FlatCAMApp.py:4537 +#: FlatCAMApp.py:4559 msgid "Splash" msgstr "" -#: FlatCAMApp.py:4543 +#: FlatCAMApp.py:4565 msgid "Programmers" msgstr "" -#: FlatCAMApp.py:4549 +#: FlatCAMApp.py:4571 msgid "Translators" msgstr "" -#: FlatCAMApp.py:4555 +#: FlatCAMApp.py:4577 msgid "License" msgstr "" -#: FlatCAMApp.py:4561 +#: FlatCAMApp.py:4583 msgid "Attributions" msgstr "" -#: FlatCAMApp.py:4584 +#: FlatCAMApp.py:4606 msgid "Programmer" msgstr "" -#: FlatCAMApp.py:4585 +#: FlatCAMApp.py:4607 msgid "Status" msgstr "" -#: FlatCAMApp.py:4586 FlatCAMApp.py:4657 +#: FlatCAMApp.py:4608 FlatCAMApp.py:4686 msgid "E-mail" msgstr "" -#: FlatCAMApp.py:4594 +#: FlatCAMApp.py:4616 msgid "BETA Maintainer >= 2019" msgstr "" -#: FlatCAMApp.py:4654 +#: FlatCAMApp.py:4683 msgid "Language" msgstr "" -#: FlatCAMApp.py:4655 +#: FlatCAMApp.py:4684 msgid "Translator" msgstr "" -#: FlatCAMApp.py:4656 +#: FlatCAMApp.py:4685 msgid "Corrections" msgstr "" -#: FlatCAMApp.py:4765 FlatCAMApp.py:4773 FlatCAMApp.py:7906 flatcamGUI/FlatCAMGUI.py:451 +#: FlatCAMApp.py:4794 FlatCAMApp.py:4802 FlatCAMApp.py:7934 flatcamGUI/FlatCAMGUI.py:475 msgid "Bookmarks Manager" msgstr "" -#: FlatCAMApp.py:4785 +#: FlatCAMApp.py:4813 msgid "" "This entry will resolve to another website if:\n" "\n" @@ -370,61 +370,61 @@ msgid "" "use the YouTube channel link from the Help menu." msgstr "" -#: FlatCAMApp.py:4792 +#: FlatCAMApp.py:4820 msgid "Alternative website" msgstr "" -#: FlatCAMApp.py:4923 FlatCAMApp.py:7870 +#: FlatCAMApp.py:4951 FlatCAMApp.py:7898 msgid "Preferences saved." msgstr "" -#: FlatCAMApp.py:4951 +#: FlatCAMApp.py:4979 msgid "Could not load factory defaults file." msgstr "" -#: FlatCAMApp.py:4961 +#: FlatCAMApp.py:4989 msgid "Failed to parse factory defaults file." msgstr "" -#: FlatCAMApp.py:4977 +#: FlatCAMApp.py:5005 msgid "Failed to write factory defaults to file." msgstr "" -#: FlatCAMApp.py:4981 +#: FlatCAMApp.py:5009 msgid "Factory defaults saved." msgstr "" -#: FlatCAMApp.py:4991 flatcamGUI/FlatCAMGUI.py:3691 +#: FlatCAMApp.py:5019 flatcamGUI/FlatCAMGUI.py:3926 msgid "Application is saving the project. Please wait ..." msgstr "" -#: FlatCAMApp.py:4996 FlatCAMTranslation.py:166 +#: FlatCAMApp.py:5024 FlatCAMTranslation.py:188 msgid "" "There are files/objects modified in FlatCAM. \n" "Do you want to Save the project?" msgstr "" -#: FlatCAMApp.py:4999 FlatCAMApp.py:9043 FlatCAMTranslation.py:169 +#: FlatCAMApp.py:5027 FlatCAMApp.py:9075 FlatCAMTranslation.py:191 msgid "Save changes" msgstr "" -#: FlatCAMApp.py:5240 +#: FlatCAMApp.py:5268 msgid "Selected Excellon file extensions registered with FlatCAM." msgstr "" -#: FlatCAMApp.py:5262 +#: FlatCAMApp.py:5290 msgid "Selected GCode file extensions registered with FlatCAM." msgstr "" -#: FlatCAMApp.py:5284 +#: FlatCAMApp.py:5312 msgid "Selected Gerber file extensions registered with FlatCAM." msgstr "" -#: FlatCAMApp.py:5472 FlatCAMApp.py:5529 FlatCAMApp.py:5557 +#: FlatCAMApp.py:5500 FlatCAMApp.py:5557 FlatCAMApp.py:5585 msgid "At least two objects are required for join. Objects currently selected" msgstr "" -#: FlatCAMApp.py:5481 +#: FlatCAMApp.py:5509 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 is to " @@ -434,51 +434,51 @@ msgid "" "Check the generated GCODE." msgstr "" -#: FlatCAMApp.py:5493 +#: FlatCAMApp.py:5521 msgid "Multigeo. Geometry merging finished" msgstr "" -#: FlatCAMApp.py:5502 +#: FlatCAMApp.py:5530 msgid "Geometry merging finished" msgstr "" -#: FlatCAMApp.py:5524 +#: FlatCAMApp.py:5552 msgid "Failed. Excellon joining works only on Excellon objects." msgstr "" -#: FlatCAMApp.py:5534 +#: FlatCAMApp.py:5562 msgid "Excellon merging finished" msgstr "" -#: FlatCAMApp.py:5552 +#: FlatCAMApp.py:5580 msgid "Failed. Gerber joining works only on Gerber objects." msgstr "" -#: FlatCAMApp.py:5562 +#: FlatCAMApp.py:5590 msgid "Gerber merging finished" msgstr "" -#: FlatCAMApp.py:5582 FlatCAMApp.py:5617 +#: FlatCAMApp.py:5610 FlatCAMApp.py:5645 msgid "Failed. Select a Geometry Object and try again." msgstr "" -#: FlatCAMApp.py:5586 FlatCAMApp.py:5622 +#: FlatCAMApp.py:5614 FlatCAMApp.py:5650 msgid "Expected a FlatCAMGeometry, got" msgstr "" -#: FlatCAMApp.py:5599 +#: FlatCAMApp.py:5627 msgid "A Geometry object was converted to MultiGeo type." msgstr "" -#: FlatCAMApp.py:5637 +#: FlatCAMApp.py:5665 msgid "A Geometry object was converted to SingleGeo type." msgstr "" -#: FlatCAMApp.py:5833 +#: FlatCAMApp.py:5861 msgid "Toggle Units" msgstr "" -#: FlatCAMApp.py:5835 +#: FlatCAMApp.py:5863 msgid "" "Changing the units of the project\n" "will scale all objects.\n" @@ -486,824 +486,824 @@ msgid "" "Do you want to continue?" msgstr "" -#: FlatCAMApp.py:5838 FlatCAMApp.py:7080 FlatCAMApp.py:7156 FlatCAMApp.py:9408 -#: FlatCAMApp.py:9422 FlatCAMApp.py:9776 FlatCAMApp.py:9787 +#: FlatCAMApp.py:5866 FlatCAMApp.py:7108 FlatCAMApp.py:7184 FlatCAMApp.py:9440 +#: FlatCAMApp.py:9454 FlatCAMApp.py:9808 FlatCAMApp.py:9819 msgid "Ok" msgstr "" -#: FlatCAMApp.py:5887 +#: FlatCAMApp.py:5915 msgid "Converted units to" msgstr "" -#: FlatCAMApp.py:5901 +#: FlatCAMApp.py:5929 msgid "Units conversion cancelled." msgstr "" -#: FlatCAMApp.py:6774 +#: FlatCAMApp.py:6802 msgid "Detachable Tabs" msgstr "" -#: FlatCAMApp.py:6993 FlatCAMApp.py:7040 FlatCAMApp.py:7696 FlatCAMApp.py:7759 -#: FlatCAMApp.py:7825 +#: FlatCAMApp.py:7021 FlatCAMApp.py:7068 FlatCAMApp.py:7724 FlatCAMApp.py:7787 +#: FlatCAMApp.py:7853 msgid "Preferences" msgstr "" -#: FlatCAMApp.py:6996 +#: FlatCAMApp.py:7024 msgid "Preferences applied." msgstr "" -#: FlatCAMApp.py:7045 +#: FlatCAMApp.py:7073 msgid "Preferences closed without saving." msgstr "" -#: FlatCAMApp.py:7068 flatcamTools/ToolNonCopperClear.py:596 -#: flatcamTools/ToolNonCopperClear.py:992 flatcamTools/ToolPaint.py:507 -#: flatcamTools/ToolSolderPaste.py:562 flatcamTools/ToolSolderPaste.py:889 +#: FlatCAMApp.py:7096 flatcamTools/ToolNonCopperClear.py:597 +#: flatcamTools/ToolNonCopperClear.py:993 flatcamTools/ToolPaint.py:508 +#: flatcamTools/ToolSolderPaste.py:562 flatcamTools/ToolSolderPaste.py:892 msgid "Please enter a tool diameter with non-zero value, in Float format." msgstr "" -#: FlatCAMApp.py:7073 flatcamTools/ToolNonCopperClear.py:600 flatcamTools/ToolPaint.py:511 +#: FlatCAMApp.py:7101 flatcamTools/ToolNonCopperClear.py:601 flatcamTools/ToolPaint.py:512 #: flatcamTools/ToolSolderPaste.py:566 msgid "Adding Tool cancelled" msgstr "" -#: FlatCAMApp.py:7076 +#: FlatCAMApp.py:7104 msgid "" "Adding Tool works only when Advanced is checked.\n" "Go to Preferences -> General - Show Advanced Options." msgstr "" -#: FlatCAMApp.py:7151 +#: FlatCAMApp.py:7179 msgid "Delete objects" msgstr "" -#: FlatCAMApp.py:7154 +#: FlatCAMApp.py:7182 msgid "" "Are you sure you want to permanently delete\n" "the selected objects?" msgstr "" -#: FlatCAMApp.py:7185 +#: FlatCAMApp.py:7213 msgid "Object(s) deleted" msgstr "" -#: FlatCAMApp.py:7189 +#: FlatCAMApp.py:7217 msgid "Failed. No object(s) selected..." msgstr "" -#: FlatCAMApp.py:7191 +#: FlatCAMApp.py:7219 msgid "Save the work in Editor and try again ..." msgstr "" -#: FlatCAMApp.py:7221 +#: FlatCAMApp.py:7249 msgid "Object deleted" msgstr "" -#: FlatCAMApp.py:7248 +#: FlatCAMApp.py:7276 msgid "Click to set the origin ..." msgstr "" -#: FlatCAMApp.py:7270 +#: FlatCAMApp.py:7298 msgid "Setting Origin..." msgstr "" -#: FlatCAMApp.py:7282 +#: FlatCAMApp.py:7310 msgid "Origin set" msgstr "" -#: FlatCAMApp.py:7289 +#: FlatCAMApp.py:7317 msgid "Origin coordinates specified but incomplete." msgstr "" -#: FlatCAMApp.py:7347 +#: FlatCAMApp.py:7375 msgid "Jump to ..." msgstr "" -#: FlatCAMApp.py:7348 +#: FlatCAMApp.py:7376 msgid "Enter the coordinates in format X,Y:" msgstr "" -#: FlatCAMApp.py:7356 +#: FlatCAMApp.py:7384 msgid "Wrong coordinates. Enter coordinates in format: X,Y" msgstr "" -#: FlatCAMApp.py:7424 flatcamEditors/FlatCAMExcEditor.py:3518 +#: FlatCAMApp.py:7452 flatcamEditors/FlatCAMExcEditor.py:3518 #: flatcamEditors/FlatCAMExcEditor.py:3526 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:2871 -#: flatcamGUI/FlatCAMGUI.py:2883 +#: flatcamEditors/FlatCAMGrbEditor.py:4383 flatcamGUI/FlatCAMGUI.py:3106 +#: flatcamGUI/FlatCAMGUI.py:3118 msgid "Done." msgstr "" -#: FlatCAMApp.py:7576 FlatCAMApp.py:7647 +#: FlatCAMApp.py:7604 FlatCAMApp.py:7675 msgid "No object is selected. Select an object and try again." msgstr "" -#: FlatCAMApp.py:7667 +#: FlatCAMApp.py:7695 msgid "Aborting. The current task will be gracefully closed as soon as possible..." msgstr "" -#: FlatCAMApp.py:7673 +#: FlatCAMApp.py:7701 msgid "The current task was gracefully closed on user request..." msgstr "" -#: FlatCAMApp.py:7756 +#: FlatCAMApp.py:7784 msgid "Preferences edited but not saved." msgstr "" -#: FlatCAMApp.py:7770 FlatCAMApp.py:7782 FlatCAMApp.py:7799 FlatCAMApp.py:7816 -#: FlatCAMApp.py:7876 FlatCAMCommon.py:1161 FlatCAMCommon.py:1336 FlatCAMObj.py:4213 +#: FlatCAMApp.py:7798 FlatCAMApp.py:7810 FlatCAMApp.py:7827 FlatCAMApp.py:7844 +#: FlatCAMApp.py:7904 FlatCAMCommon.py:1161 FlatCAMCommon.py:1336 FlatCAMObj.py:4216 msgid "Tools Database" msgstr "" -#: FlatCAMApp.py:7796 +#: FlatCAMApp.py:7824 msgid "Tools in Tools Database edited but not saved." msgstr "" -#: FlatCAMApp.py:7820 +#: FlatCAMApp.py:7848 msgid "Tool from DB added in Tool Table." msgstr "" -#: FlatCAMApp.py:7822 +#: FlatCAMApp.py:7850 msgid "Adding tool from DB is not allowed for this object." msgstr "" -#: FlatCAMApp.py:7856 +#: FlatCAMApp.py:7884 msgid "" "One or more values are changed.\n" "Do you want to save the Preferences?" msgstr "" -#: FlatCAMApp.py:7858 flatcamGUI/FlatCAMGUI.py:220 +#: FlatCAMApp.py:7886 flatcamGUI/FlatCAMGUI.py:222 msgid "Save Preferences" msgstr "" -#: FlatCAMApp.py:7882 +#: FlatCAMApp.py:7910 msgid "" "One or more Tools are edited.\n" "Do you want to update the Tools Database?" msgstr "" -#: FlatCAMApp.py:7884 +#: FlatCAMApp.py:7912 msgid "Save Tools Database" msgstr "" -#: FlatCAMApp.py:7903 FlatCAMApp.py:10015 FlatCAMObj.py:6456 +#: FlatCAMApp.py:7931 FlatCAMApp.py:10047 FlatCAMObj.py:6459 msgid "Code Editor" msgstr "" -#: FlatCAMApp.py:7921 +#: FlatCAMApp.py:7949 msgid "No object selected to Flip on Y axis." msgstr "" -#: FlatCAMApp.py:7947 +#: FlatCAMApp.py:7975 msgid "Flip on Y axis done." msgstr "" -#: FlatCAMApp.py:7949 FlatCAMApp.py:7991 flatcamEditors/FlatCAMGrbEditor.py:5773 +#: FlatCAMApp.py:7977 FlatCAMApp.py:8019 flatcamEditors/FlatCAMGrbEditor.py:5773 msgid "Flip action was not executed." msgstr "" -#: FlatCAMApp.py:7963 +#: FlatCAMApp.py:7991 msgid "No object selected to Flip on X axis." msgstr "" -#: FlatCAMApp.py:7989 +#: FlatCAMApp.py:8017 msgid "Flip on X axis done." msgstr "" -#: FlatCAMApp.py:8005 +#: FlatCAMApp.py:8033 msgid "No object selected to Rotate." msgstr "" -#: FlatCAMApp.py:8008 FlatCAMApp.py:8055 FlatCAMApp.py:8088 +#: FlatCAMApp.py:8036 FlatCAMApp.py:8083 FlatCAMApp.py:8116 msgid "Transform" msgstr "" -#: FlatCAMApp.py:8008 FlatCAMApp.py:8055 FlatCAMApp.py:8088 +#: FlatCAMApp.py:8036 FlatCAMApp.py:8083 FlatCAMApp.py:8116 msgid "Enter the Angle value:" msgstr "" -#: FlatCAMApp.py:8039 +#: FlatCAMApp.py:8067 msgid "Rotation done." msgstr "" -#: FlatCAMApp.py:8041 +#: FlatCAMApp.py:8069 msgid "Rotation movement was not executed." msgstr "" -#: FlatCAMApp.py:8053 +#: FlatCAMApp.py:8081 msgid "No object selected to Skew/Shear on X axis." msgstr "" -#: FlatCAMApp.py:8075 +#: FlatCAMApp.py:8103 msgid "Skew on X axis done." msgstr "" -#: FlatCAMApp.py:8086 +#: FlatCAMApp.py:8114 msgid "No object selected to Skew/Shear on Y axis." msgstr "" -#: FlatCAMApp.py:8108 +#: FlatCAMApp.py:8136 msgid "Skew on Y axis done." msgstr "" -#: FlatCAMApp.py:8256 FlatCAMApp.py:8303 flatcamGUI/FlatCAMGUI.py:429 -#: flatcamGUI/FlatCAMGUI.py:1465 +#: FlatCAMApp.py:8284 FlatCAMApp.py:8331 flatcamGUI/FlatCAMGUI.py:451 +#: flatcamGUI/FlatCAMGUI.py:1581 msgid "Select All" msgstr "" -#: FlatCAMApp.py:8260 FlatCAMApp.py:8307 flatcamGUI/FlatCAMGUI.py:432 +#: FlatCAMApp.py:8288 FlatCAMApp.py:8335 flatcamGUI/FlatCAMGUI.py:453 msgid "Deselect All" msgstr "" -#: FlatCAMApp.py:8323 +#: FlatCAMApp.py:8351 msgid "All objects are selected." msgstr "" -#: FlatCAMApp.py:8333 +#: FlatCAMApp.py:8361 msgid "Objects selection is cleared." msgstr "" -#: FlatCAMApp.py:8349 flatcamGUI/FlatCAMGUI.py:1458 +#: FlatCAMApp.py:8378 flatcamGUI/FlatCAMGUI.py:1574 msgid "Grid On/Off" msgstr "" -#: FlatCAMApp.py:8362 flatcamEditors/FlatCAMGeoEditor.py:940 +#: FlatCAMApp.py:8393 flatcamEditors/FlatCAMGeoEditor.py:940 #: flatcamEditors/FlatCAMGrbEditor.py:2503 flatcamEditors/FlatCAMGrbEditor.py:5346 -#: flatcamGUI/ObjectUI.py:1265 flatcamTools/ToolDblSided.py:185 +#: flatcamGUI/ObjectUI.py:1304 flatcamTools/ToolDblSided.py:185 #: flatcamTools/ToolDblSided.py:238 flatcamTools/ToolNonCopperClear.py:286 #: flatcamTools/ToolPaint.py:188 flatcamTools/ToolSolderPaste.py:121 #: flatcamTools/ToolSolderPaste.py:591 flatcamTools/ToolTransform.py:309 msgid "Add" msgstr "" -#: FlatCAMApp.py:8363 FlatCAMObj.py:3900 flatcamEditors/FlatCAMGrbEditor.py:2508 -#: 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 +#: FlatCAMApp.py:8395 FlatCAMObj.py:3902 flatcamEditors/FlatCAMGrbEditor.py:2508 +#: flatcamEditors/FlatCAMGrbEditor.py:2656 flatcamGUI/FlatCAMGUI.py:654 +#: flatcamGUI/FlatCAMGUI.py:965 flatcamGUI/FlatCAMGUI.py:1987 flatcamGUI/FlatCAMGUI.py:2130 +#: flatcamGUI/FlatCAMGUI.py:2524 flatcamGUI/ObjectUI.py:1330 #: flatcamTools/ToolNonCopperClear.py:298 flatcamTools/ToolPaint.py:200 -#: flatcamTools/ToolSolderPaste.py:127 flatcamTools/ToolSolderPaste.py:593 +#: flatcamTools/ToolSolderPaste.py:127 flatcamTools/ToolSolderPaste.py:594 msgid "Delete" msgstr "" -#: FlatCAMApp.py:8376 +#: FlatCAMApp.py:8408 msgid "New Grid ..." msgstr "" -#: FlatCAMApp.py:8377 +#: FlatCAMApp.py:8409 msgid "Enter a Grid Value:" msgstr "" -#: FlatCAMApp.py:8385 FlatCAMApp.py:8412 +#: FlatCAMApp.py:8417 FlatCAMApp.py:8444 msgid "Please enter a grid value with non-zero value, in Float format." msgstr "" -#: FlatCAMApp.py:8391 +#: FlatCAMApp.py:8423 msgid "New Grid added" msgstr "" -#: FlatCAMApp.py:8394 +#: FlatCAMApp.py:8426 msgid "Grid already exists" msgstr "" -#: FlatCAMApp.py:8397 +#: FlatCAMApp.py:8429 msgid "Adding New Grid cancelled" msgstr "" -#: FlatCAMApp.py:8419 +#: FlatCAMApp.py:8451 msgid " Grid Value does not exist" msgstr "" -#: FlatCAMApp.py:8422 +#: FlatCAMApp.py:8454 msgid "Grid Value deleted" msgstr "" -#: FlatCAMApp.py:8425 +#: FlatCAMApp.py:8457 msgid "Delete Grid value cancelled" msgstr "" -#: FlatCAMApp.py:8431 +#: FlatCAMApp.py:8463 msgid "Key Shortcut List" msgstr "" -#: FlatCAMApp.py:8465 +#: FlatCAMApp.py:8497 msgid " No object selected to copy it's name" msgstr "" -#: FlatCAMApp.py:8469 +#: FlatCAMApp.py:8501 msgid "Name copied on clipboard ..." msgstr "" -#: FlatCAMApp.py:8666 flatcamEditors/FlatCAMGrbEditor.py:4300 +#: FlatCAMApp.py:8698 flatcamEditors/FlatCAMGrbEditor.py:4300 msgid "Coordinates copied to clipboard." msgstr "" -#: 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 +#: FlatCAMApp.py:8912 FlatCAMApp.py:8918 FlatCAMApp.py:8924 FlatCAMApp.py:8930 +#: ObjectCollection.py:792 ObjectCollection.py:798 ObjectCollection.py:804 +#: ObjectCollection.py:810 ObjectCollection.py:816 ObjectCollection.py:822 msgid "selected" msgstr "" -#: FlatCAMApp.py:9040 +#: FlatCAMApp.py:9072 msgid "" "There are files/objects opened in FlatCAM.\n" "Creating a New project will delete them.\n" "Do you want to Save the project?" msgstr "" -#: FlatCAMApp.py:9062 +#: FlatCAMApp.py:9094 msgid "New Project created" msgstr "" -#: FlatCAMApp.py:9197 FlatCAMApp.py:9201 flatcamGUI/FlatCAMGUI.py:696 -#: flatcamGUI/FlatCAMGUI.py:2149 +#: FlatCAMApp.py:9229 FlatCAMApp.py:9233 flatcamGUI/FlatCAMGUI.py:741 +#: flatcamGUI/FlatCAMGUI.py:2317 msgid "Open Gerber" msgstr "" -#: FlatCAMApp.py:9208 +#: FlatCAMApp.py:9240 msgid "Opening Gerber file." msgstr "" -#: FlatCAMApp.py:9214 +#: FlatCAMApp.py:9246 msgid "Open Gerber cancelled." msgstr "" -#: FlatCAMApp.py:9235 FlatCAMApp.py:9239 flatcamGUI/FlatCAMGUI.py:697 -#: flatcamGUI/FlatCAMGUI.py:2150 +#: FlatCAMApp.py:9267 FlatCAMApp.py:9271 flatcamGUI/FlatCAMGUI.py:743 +#: flatcamGUI/FlatCAMGUI.py:2319 msgid "Open Excellon" msgstr "" -#: FlatCAMApp.py:9245 +#: FlatCAMApp.py:9277 msgid "Opening Excellon file." msgstr "" -#: FlatCAMApp.py:9251 +#: FlatCAMApp.py:9283 msgid " Open Excellon cancelled." msgstr "" -#: FlatCAMApp.py:9275 FlatCAMApp.py:9279 +#: FlatCAMApp.py:9307 FlatCAMApp.py:9311 msgid "Open G-Code" msgstr "" -#: FlatCAMApp.py:9286 +#: FlatCAMApp.py:9318 msgid "Opening G-Code file." msgstr "" -#: FlatCAMApp.py:9292 +#: FlatCAMApp.py:9324 msgid "Open G-Code cancelled." msgstr "" -#: FlatCAMApp.py:9310 FlatCAMApp.py:9313 flatcamGUI/FlatCAMGUI.py:1467 +#: FlatCAMApp.py:9342 FlatCAMApp.py:9345 flatcamGUI/FlatCAMGUI.py:1583 msgid "Open Project" msgstr "" -#: FlatCAMApp.py:9322 +#: FlatCAMApp.py:9354 msgid "Open Project cancelled." msgstr "" -#: FlatCAMApp.py:9346 FlatCAMApp.py:9350 +#: FlatCAMApp.py:9378 FlatCAMApp.py:9382 msgid "Open HPGL2" msgstr "" -#: FlatCAMApp.py:9357 +#: FlatCAMApp.py:9389 msgid "Opening HPGL2 file." msgstr "" -#: FlatCAMApp.py:9362 +#: FlatCAMApp.py:9394 msgid "Open HPGL2 file cancelled." msgstr "" -#: FlatCAMApp.py:9380 FlatCAMApp.py:9383 +#: FlatCAMApp.py:9412 FlatCAMApp.py:9415 msgid "Open Configuration File" msgstr "" -#: FlatCAMApp.py:9388 +#: FlatCAMApp.py:9420 msgid "Open Config cancelled." msgstr "" -#: FlatCAMApp.py:9404 FlatCAMApp.py:9772 FlatCAMApp.py:10246 +#: FlatCAMApp.py:9436 FlatCAMApp.py:9804 FlatCAMApp.py:10278 msgid "No object selected." msgstr "" -#: FlatCAMApp.py:9405 FlatCAMApp.py:9773 +#: FlatCAMApp.py:9437 FlatCAMApp.py:9805 msgid "Please Select a Geometry object to export" msgstr "" -#: FlatCAMApp.py:9419 +#: FlatCAMApp.py:9451 msgid "Only Geometry, Gerber and CNCJob objects can be used." msgstr "" -#: FlatCAMApp.py:9432 FlatCAMApp.py:9436 flatcamTools/ToolQRCode.py:827 +#: FlatCAMApp.py:9464 FlatCAMApp.py:9468 flatcamTools/ToolQRCode.py:827 #: flatcamTools/ToolQRCode.py:831 msgid "Export SVG" msgstr "" -#: FlatCAMApp.py:9442 flatcamTools/ToolQRCode.py:836 +#: FlatCAMApp.py:9474 flatcamTools/ToolQRCode.py:836 msgid " Export SVG cancelled." msgstr "" -#: FlatCAMApp.py:9463 +#: FlatCAMApp.py:9495 msgid "Data must be a 3D array with last dimension 3 or 4" msgstr "" -#: FlatCAMApp.py:9469 FlatCAMApp.py:9473 +#: FlatCAMApp.py:9501 FlatCAMApp.py:9505 msgid "Export PNG Image" msgstr "" -#: FlatCAMApp.py:9478 +#: FlatCAMApp.py:9510 msgid "Export PNG cancelled." msgstr "" -#: FlatCAMApp.py:9502 +#: FlatCAMApp.py:9534 msgid "No object selected. Please select an Gerber object to export." msgstr "" -#: FlatCAMApp.py:9508 FlatCAMApp.py:9731 +#: FlatCAMApp.py:9540 FlatCAMApp.py:9763 msgid "Failed. Only Gerber objects can be saved as Gerber files..." msgstr "" -#: FlatCAMApp.py:9520 +#: FlatCAMApp.py:9552 msgid "Save Gerber source file" msgstr "" -#: FlatCAMApp.py:9526 +#: FlatCAMApp.py:9558 msgid "Save Gerber source file cancelled." msgstr "" -#: FlatCAMApp.py:9546 +#: FlatCAMApp.py:9578 msgid "No object selected. Please select an Script object to export." msgstr "" -#: FlatCAMApp.py:9552 +#: FlatCAMApp.py:9584 msgid "Failed. Only Script objects can be saved as TCL Script files..." msgstr "" -#: FlatCAMApp.py:9564 +#: FlatCAMApp.py:9596 msgid "Save Script source file" msgstr "" -#: FlatCAMApp.py:9570 +#: FlatCAMApp.py:9602 msgid "Save Script source file cancelled." msgstr "" -#: FlatCAMApp.py:9590 +#: FlatCAMApp.py:9622 msgid "No object selected. Please select an Document object to export." msgstr "" -#: FlatCAMApp.py:9596 +#: FlatCAMApp.py:9628 msgid "Failed. Only Document objects can be saved as Document files..." msgstr "" -#: FlatCAMApp.py:9608 +#: FlatCAMApp.py:9640 msgid "Save Document source file" msgstr "" -#: FlatCAMApp.py:9614 +#: FlatCAMApp.py:9646 msgid "Save Document source file cancelled." msgstr "" -#: FlatCAMApp.py:9634 +#: FlatCAMApp.py:9666 msgid "No object selected. Please select an Excellon object to export." msgstr "" -#: FlatCAMApp.py:9640 FlatCAMApp.py:9684 FlatCAMApp.py:10422 +#: FlatCAMApp.py:9672 FlatCAMApp.py:9716 FlatCAMApp.py:10454 msgid "Failed. Only Excellon objects can be saved as Excellon files..." msgstr "" -#: FlatCAMApp.py:9648 FlatCAMApp.py:9652 +#: FlatCAMApp.py:9680 FlatCAMApp.py:9684 msgid "Save Excellon source file" msgstr "" -#: FlatCAMApp.py:9658 +#: FlatCAMApp.py:9690 msgid "Saving Excellon source file cancelled." msgstr "" -#: FlatCAMApp.py:9678 +#: FlatCAMApp.py:9710 msgid "No object selected. Please Select an Excellon object to export." msgstr "" -#: FlatCAMApp.py:9692 FlatCAMApp.py:9696 +#: FlatCAMApp.py:9724 FlatCAMApp.py:9728 msgid "Export Excellon" msgstr "" -#: FlatCAMApp.py:9702 +#: FlatCAMApp.py:9734 msgid "Export Excellon cancelled." msgstr "" -#: FlatCAMApp.py:9725 +#: FlatCAMApp.py:9757 msgid "No object selected. Please Select an Gerber object to export." msgstr "" -#: FlatCAMApp.py:9739 FlatCAMApp.py:9743 +#: FlatCAMApp.py:9771 FlatCAMApp.py:9775 msgid "Export Gerber" msgstr "" -#: FlatCAMApp.py:9749 +#: FlatCAMApp.py:9781 msgid "Export Gerber cancelled." msgstr "" -#: FlatCAMApp.py:9784 +#: FlatCAMApp.py:9816 msgid "Only Geometry objects can be used." msgstr "" -#: FlatCAMApp.py:9798 FlatCAMApp.py:9802 +#: FlatCAMApp.py:9830 FlatCAMApp.py:9834 msgid "Export DXF" msgstr "" -#: FlatCAMApp.py:9809 +#: FlatCAMApp.py:9841 msgid "Export DXF cancelled." msgstr "" -#: FlatCAMApp.py:9829 FlatCAMApp.py:9832 +#: FlatCAMApp.py:9861 FlatCAMApp.py:9864 msgid "Import SVG" msgstr "" -#: FlatCAMApp.py:9842 +#: FlatCAMApp.py:9874 msgid "Open SVG cancelled." msgstr "" -#: FlatCAMApp.py:9861 FlatCAMApp.py:9865 +#: FlatCAMApp.py:9893 FlatCAMApp.py:9897 msgid "Import DXF" msgstr "" -#: FlatCAMApp.py:9875 +#: FlatCAMApp.py:9907 msgid "Open DXF cancelled." msgstr "" -#: FlatCAMApp.py:9917 +#: FlatCAMApp.py:9949 msgid "Viewing the source code of the selected object." msgstr "" -#: FlatCAMApp.py:9918 FlatCAMObj.py:6442 FlatCAMObj.py:7043 +#: FlatCAMApp.py:9950 FlatCAMObj.py:6445 FlatCAMObj.py:7046 msgid "Loading..." msgstr "" -#: FlatCAMApp.py:9924 FlatCAMApp.py:9928 +#: FlatCAMApp.py:9956 FlatCAMApp.py:9960 msgid "Select an Gerber or Excellon file to view it's source file." msgstr "" -#: FlatCAMApp.py:9942 +#: FlatCAMApp.py:9974 msgid "Source Editor" msgstr "" -#: FlatCAMApp.py:9982 FlatCAMApp.py:9989 +#: FlatCAMApp.py:10014 FlatCAMApp.py:10021 msgid "There is no selected object for which to see it's source file code." msgstr "" -#: FlatCAMApp.py:10001 +#: FlatCAMApp.py:10033 msgid "Failed to load the source code for the selected object" msgstr "" -#: FlatCAMApp.py:10043 +#: FlatCAMApp.py:10075 msgid "New TCL script file created in Code Editor." msgstr "" -#: FlatCAMApp.py:10081 FlatCAMApp.py:10083 +#: FlatCAMApp.py:10113 FlatCAMApp.py:10115 msgid "Open TCL script" msgstr "" -#: FlatCAMApp.py:10087 +#: FlatCAMApp.py:10119 msgid "Open TCL script cancelled." msgstr "" -#: FlatCAMApp.py:10111 +#: FlatCAMApp.py:10143 msgid "Executing FlatCAMScript file." msgstr "" -#: FlatCAMApp.py:10118 FlatCAMApp.py:10121 +#: FlatCAMApp.py:10150 FlatCAMApp.py:10153 msgid "Run TCL script" msgstr "" -#: FlatCAMApp.py:10131 +#: FlatCAMApp.py:10163 msgid "Run TCL script cancelled." msgstr "" -#: FlatCAMApp.py:10147 +#: FlatCAMApp.py:10179 msgid "TCL script file opened in Code Editor and executed." msgstr "" -#: FlatCAMApp.py:10198 FlatCAMApp.py:10204 +#: FlatCAMApp.py:10230 FlatCAMApp.py:10236 msgid "Save Project As ..." msgstr "" -#: FlatCAMApp.py:10200 flatcamGUI/FlatCAMGUI.py:909 flatcamGUI/FlatCAMGUI.py:1899 +#: FlatCAMApp.py:10232 flatcamGUI/FlatCAMGUI.py:1025 flatcamGUI/FlatCAMGUI.py:2022 msgid "Project" msgstr "" -#: FlatCAMApp.py:10209 +#: FlatCAMApp.py:10241 msgid "Save Project cancelled." msgstr "" -#: FlatCAMApp.py:10216 +#: FlatCAMApp.py:10248 msgid "The object is used by another application." msgstr "" -#: FlatCAMApp.py:10252 FlatCAMApp.py:10259 flatcamGUI/FlatCAMGUI.py:261 +#: FlatCAMApp.py:10284 FlatCAMApp.py:10291 flatcamGUI/FlatCAMGUI.py:265 msgid "Save Object as PDF ..." msgstr "" -#: FlatCAMApp.py:10264 +#: FlatCAMApp.py:10296 msgid "Save Object PDF cancelled." msgstr "" -#: FlatCAMApp.py:10302 +#: FlatCAMApp.py:10334 msgid "Exporting SVG" msgstr "" -#: FlatCAMApp.py:10346 +#: FlatCAMApp.py:10378 msgid "SVG file exported to" msgstr "" -#: FlatCAMApp.py:10371 +#: FlatCAMApp.py:10403 msgid "Save cancelled because source file is empty. Try to export the Gerber file." msgstr "" -#: FlatCAMApp.py:10517 +#: FlatCAMApp.py:10549 msgid "Excellon file exported to" msgstr "" -#: FlatCAMApp.py:10526 +#: FlatCAMApp.py:10558 msgid "Exporting Excellon" msgstr "" -#: FlatCAMApp.py:10532 FlatCAMApp.py:10540 +#: FlatCAMApp.py:10564 FlatCAMApp.py:10572 msgid "Could not export Excellon file." msgstr "" -#: FlatCAMApp.py:10656 +#: FlatCAMApp.py:10688 msgid "Gerber file exported to" msgstr "" -#: FlatCAMApp.py:10664 +#: FlatCAMApp.py:10696 msgid "Exporting Gerber" msgstr "" -#: FlatCAMApp.py:10670 FlatCAMApp.py:10678 +#: FlatCAMApp.py:10702 FlatCAMApp.py:10710 msgid "Could not export Gerber file." msgstr "" -#: FlatCAMApp.py:10712 +#: FlatCAMApp.py:10744 msgid "DXF file exported to" msgstr "" -#: FlatCAMApp.py:10718 +#: FlatCAMApp.py:10750 msgid "Exporting DXF" msgstr "" -#: FlatCAMApp.py:10723 FlatCAMApp.py:10730 +#: FlatCAMApp.py:10755 FlatCAMApp.py:10762 msgid "Could not export DXF file." msgstr "" -#: FlatCAMApp.py:10753 FlatCAMApp.py:10796 flatcamTools/ToolImage.py:278 +#: FlatCAMApp.py:10785 FlatCAMApp.py:10828 flatcamTools/ToolImage.py:278 msgid "Not supported type is picked as parameter. Only Geometry and Gerber are supported" msgstr "" -#: FlatCAMApp.py:10763 +#: FlatCAMApp.py:10795 msgid "Importing SVG" msgstr "" -#: 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 +#: FlatCAMApp.py:10806 FlatCAMApp.py:10848 FlatCAMApp.py:10907 FlatCAMApp.py:10974 +#: FlatCAMApp.py:11037 FlatCAMApp.py:11104 FlatCAMApp.py:11142 flatcamTools/ToolImage.py:298 #: flatcamTools/ToolPDF.py:225 msgid "Opened" msgstr "" -#: FlatCAMApp.py:10805 +#: FlatCAMApp.py:10837 msgid "Importing DXF" msgstr "" -#: FlatCAMApp.py:10841 FlatCAMApp.py:11031 +#: FlatCAMApp.py:10873 FlatCAMApp.py:11063 msgid "Failed to open file" msgstr "" -#: FlatCAMApp.py:10844 FlatCAMApp.py:11034 +#: FlatCAMApp.py:10876 FlatCAMApp.py:11066 msgid "Failed to parse file" msgstr "" -#: FlatCAMApp.py:10849 FlatCAMApp.py:10910 FlatCAMApp.py:11039 FlatCAMObj.py:5004 +#: FlatCAMApp.py:10881 FlatCAMApp.py:10942 FlatCAMApp.py:11071 FlatCAMObj.py:5007 #: flatcamEditors/FlatCAMGrbEditor.py:4110 flatcamTools/ToolPcbWizard.py:437 msgid "An internal error has occurred. See shell.\n" msgstr "" -#: FlatCAMApp.py:10856 +#: FlatCAMApp.py:10888 msgid "Object is not Gerber file or empty. Aborting object creation." msgstr "" -#: FlatCAMApp.py:10861 +#: FlatCAMApp.py:10893 msgid "Opening Gerber" msgstr "" -#: FlatCAMApp.py:10868 +#: FlatCAMApp.py:10900 msgid " Open Gerber failed. Probable not a Gerber file." msgstr "" -#: FlatCAMApp.py:10900 flatcamTools/ToolPcbWizard.py:427 +#: FlatCAMApp.py:10932 flatcamTools/ToolPcbWizard.py:427 msgid "This is not Excellon file." msgstr "" -#: FlatCAMApp.py:10904 +#: FlatCAMApp.py:10936 msgid "Cannot open file" msgstr "" -#: FlatCAMApp.py:10924 flatcamTools/ToolPDF.py:275 flatcamTools/ToolPcbWizard.py:451 +#: FlatCAMApp.py:10956 flatcamTools/ToolPDF.py:275 flatcamTools/ToolPcbWizard.py:451 msgid "No geometry found in file" msgstr "" -#: FlatCAMApp.py:10927 +#: FlatCAMApp.py:10959 msgid "Opening Excellon." msgstr "" -#: FlatCAMApp.py:10934 +#: FlatCAMApp.py:10966 msgid "Open Excellon file failed. Probable not an Excellon file." msgstr "" -#: FlatCAMApp.py:10965 +#: FlatCAMApp.py:10997 msgid "Reading GCode file" msgstr "" -#: FlatCAMApp.py:10972 +#: FlatCAMApp.py:11004 msgid "Failed to open" msgstr "" -#: FlatCAMApp.py:10980 +#: FlatCAMApp.py:11012 msgid "This is not GCODE" msgstr "" -#: FlatCAMApp.py:10985 +#: FlatCAMApp.py:11017 msgid "Opening G-Code." msgstr "" -#: FlatCAMApp.py:10994 +#: FlatCAMApp.py:11026 msgid "" "Failed to create CNCJob Object. Probable not a GCode file. Try to load it from File " "menu.\n" " Attempting to create a FlatCAM CNCJob Object from G-Code file failed during processing" msgstr "" -#: FlatCAMApp.py:11053 +#: FlatCAMApp.py:11085 msgid "Object is not HPGL2 file or empty. Aborting object creation." msgstr "" -#: FlatCAMApp.py:11058 +#: FlatCAMApp.py:11090 msgid "Opening HPGL2" msgstr "" -#: FlatCAMApp.py:11065 +#: FlatCAMApp.py:11097 msgid " Open HPGL2 failed. Probable not a HPGL2 file." msgstr "" -#: FlatCAMApp.py:11086 +#: FlatCAMApp.py:11118 msgid "Opening TCL Script..." msgstr "" -#: FlatCAMApp.py:11094 +#: FlatCAMApp.py:11126 msgid "TCL script file opened in Code Editor." msgstr "" -#: FlatCAMApp.py:11097 +#: FlatCAMApp.py:11129 msgid "Failed to open TCL Script." msgstr "" -#: FlatCAMApp.py:11125 +#: FlatCAMApp.py:11157 msgid "Opening FlatCAM Config file." msgstr "" -#: FlatCAMApp.py:11153 +#: FlatCAMApp.py:11185 msgid "Failed to open config file" msgstr "" -#: FlatCAMApp.py:11179 +#: FlatCAMApp.py:11211 msgid "Loading Project ... Please Wait ..." msgstr "" -#: FlatCAMApp.py:11184 +#: FlatCAMApp.py:11216 msgid "Opening FlatCAM Project file." msgstr "" -#: FlatCAMApp.py:11194 FlatCAMApp.py:11212 +#: FlatCAMApp.py:11226 FlatCAMApp.py:11244 msgid "Failed to open project file" msgstr "" -#: FlatCAMApp.py:11246 +#: FlatCAMApp.py:11278 msgid "Loading Project ... restoring" msgstr "" -#: FlatCAMApp.py:11255 +#: FlatCAMApp.py:11287 msgid "Project loaded from" msgstr "" -#: FlatCAMApp.py:11318 +#: FlatCAMApp.py:11350 msgid "Redrawing all objects" msgstr "" -#: FlatCAMApp.py:11350 +#: FlatCAMApp.py:11382 msgid "Available commands:\n" msgstr "" -#: FlatCAMApp.py:11352 +#: FlatCAMApp.py:11384 msgid "" "\n" "\n" @@ -1311,64 +1311,64 @@ msgid "" " Example: help open_gerber" msgstr "" -#: FlatCAMApp.py:11502 +#: FlatCAMApp.py:11534 msgid "Shows list of commands." msgstr "" -#: FlatCAMApp.py:11564 +#: FlatCAMApp.py:11596 msgid "Failed to load recent item list." msgstr "" -#: FlatCAMApp.py:11572 +#: FlatCAMApp.py:11604 msgid "Failed to parse recent item list." msgstr "" -#: FlatCAMApp.py:11583 +#: FlatCAMApp.py:11615 msgid "Failed to load recent projects item list." msgstr "" -#: FlatCAMApp.py:11591 +#: FlatCAMApp.py:11623 msgid "Failed to parse recent project item list." msgstr "" -#: FlatCAMApp.py:11650 +#: FlatCAMApp.py:11683 msgid "Clear Recent projects" msgstr "" -#: FlatCAMApp.py:11673 +#: FlatCAMApp.py:11707 msgid "Clear Recent files" msgstr "" -#: FlatCAMApp.py:11690 flatcamGUI/FlatCAMGUI.py:1133 +#: FlatCAMApp.py:11724 flatcamGUI/FlatCAMGUI.py:1249 msgid "Shortcut Key List" msgstr "" -#: FlatCAMApp.py:11764 +#: FlatCAMApp.py:11798 msgid "Selected Tab - Choose an Item from Project Tab" msgstr "" -#: FlatCAMApp.py:11765 +#: FlatCAMApp.py:11799 msgid "Details" msgstr "" -#: FlatCAMApp.py:11767 +#: FlatCAMApp.py:11801 msgid "The normal flow when working in FlatCAM is the following:" msgstr "" -#: FlatCAMApp.py:11768 +#: FlatCAMApp.py:11802 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 dropping the files on the GUI." msgstr "" -#: FlatCAMApp.py:11771 +#: FlatCAMApp.py:11805 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 toolbar) actions offered within " "the app." msgstr "" -#: FlatCAMApp.py:11774 +#: FlatCAMApp.py:11808 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 the Project Tab, " @@ -1376,7 +1376,7 @@ msgid "" "Excellon, Geometry or CNCJob object." msgstr "" -#: FlatCAMApp.py:11778 +#: FlatCAMApp.py:11812 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 be displayed into the Selected " @@ -1384,11 +1384,11 @@ msgid "" "TAB and populate it even if it was out of focus." msgstr "" -#: FlatCAMApp.py:11782 +#: FlatCAMApp.py:11816 msgid "You can change the parameters in this screen and the flow direction is like this:" msgstr "" -#: FlatCAMApp.py:11783 +#: FlatCAMApp.py:11817 msgid "" "Gerber/Excellon Object --> Change Parameter --> Generate Geometry --> Geometry Object --> " "Add tools (change param in Selected Tab) --> Generate CNCJob --> CNCJob Object --> Verify " @@ -1396,91 +1396,91 @@ msgid "" "TAB) --> Save GCode." msgstr "" -#: FlatCAMApp.py:11787 +#: FlatCAMApp.py:11821 msgid "" "A list of key shortcuts is available through an menu entry in Help --> Shortcuts List or " "through its own key shortcut: F3." msgstr "" -#: FlatCAMApp.py:11848 +#: FlatCAMApp.py:11882 msgid "Failed checking for latest version. Could not connect." msgstr "" -#: FlatCAMApp.py:11856 +#: FlatCAMApp.py:11890 msgid "Could not parse information about latest version." msgstr "" -#: FlatCAMApp.py:11867 +#: FlatCAMApp.py:11901 msgid "FlatCAM is up to date!" msgstr "" -#: FlatCAMApp.py:11872 +#: FlatCAMApp.py:11906 msgid "Newer Version Available" msgstr "" -#: FlatCAMApp.py:11873 +#: FlatCAMApp.py:11907 msgid "" "There is a newer version of FlatCAM available for download:\n" "\n" msgstr "" -#: FlatCAMApp.py:11875 +#: FlatCAMApp.py:11909 msgid "info" msgstr "" -#: FlatCAMApp.py:11954 +#: FlatCAMApp.py:11988 msgid "All plots disabled." msgstr "" -#: FlatCAMApp.py:11961 +#: FlatCAMApp.py:11995 msgid "All non selected plots disabled." msgstr "" -#: FlatCAMApp.py:11968 +#: FlatCAMApp.py:12002 msgid "All plots enabled." msgstr "" -#: FlatCAMApp.py:11975 +#: FlatCAMApp.py:12009 msgid "Selected plots enabled..." msgstr "" -#: FlatCAMApp.py:11984 +#: FlatCAMApp.py:12018 msgid "Selected plots disabled..." msgstr "" -#: FlatCAMApp.py:12003 +#: FlatCAMApp.py:12037 msgid "Enabling plots ..." msgstr "" -#: FlatCAMApp.py:12043 +#: FlatCAMApp.py:12077 msgid "Disabling plots ..." msgstr "" -#: FlatCAMApp.py:12065 +#: FlatCAMApp.py:12099 msgid "Working ..." msgstr "" -#: FlatCAMApp.py:12104 +#: FlatCAMApp.py:12138 msgid "Saving FlatCAM Project" msgstr "" -#: FlatCAMApp.py:12124 FlatCAMApp.py:12162 +#: FlatCAMApp.py:12158 FlatCAMApp.py:12196 msgid "Project saved to" msgstr "" -#: FlatCAMApp.py:12144 +#: FlatCAMApp.py:12178 msgid "Failed to verify project file" msgstr "" -#: FlatCAMApp.py:12144 FlatCAMApp.py:12153 FlatCAMApp.py:12165 +#: FlatCAMApp.py:12178 FlatCAMApp.py:12187 FlatCAMApp.py:12199 msgid "Retry to save it." msgstr "" -#: FlatCAMApp.py:12153 FlatCAMApp.py:12165 +#: FlatCAMApp.py:12187 FlatCAMApp.py:12199 msgid "Failed to parse saved project file" msgstr "" -#: FlatCAMApp.py:12281 +#: FlatCAMApp.py:12315 msgid "The user requested a graceful exit of the current task." msgstr "" @@ -1557,7 +1557,7 @@ msgstr "" msgid "Export FlatCAM Bookmarks" msgstr "" -#: FlatCAMCommon.py:363 flatcamGUI/FlatCAMGUI.py:448 +#: FlatCAMCommon.py:363 flatcamGUI/FlatCAMGUI.py:472 msgid "Bookmarks" msgstr "" @@ -1589,13 +1589,13 @@ msgstr "" msgid "Imported Bookmarks from" msgstr "" -#: FlatCAMCommon.py:477 FlatCAMObj.py:3588 FlatCAMObj.py:4589 FlatCAMObj.py:4590 -#: FlatCAMObj.py:4599 +#: FlatCAMCommon.py:477 FlatCAMObj.py:3588 FlatCAMObj.py:4592 FlatCAMObj.py:4593 +#: FlatCAMObj.py:4602 msgid "Iso" msgstr "" #: FlatCAMCommon.py:477 FlatCAMCommon.py:1012 FlatCAMObj.py:1351 FlatCAMObj.py:3588 -#: FlatCAMObj.py:3861 FlatCAMObj.py:4149 +#: FlatCAMObj.py:3861 FlatCAMObj.py:4152 msgid "Rough" msgstr "" @@ -1607,12 +1607,12 @@ msgstr "" msgid "Tool Name" msgstr "" -#: FlatCAMCommon.py:514 flatcamEditors/FlatCAMExcEditor.py:1527 flatcamGUI/ObjectUI.py:1256 +#: FlatCAMCommon.py:514 flatcamEditors/FlatCAMExcEditor.py:1527 flatcamGUI/ObjectUI.py:1295 #: flatcamTools/ToolNonCopperClear.py:271 flatcamTools/ToolPaint.py:176 msgid "Tool Dia" msgstr "" -#: FlatCAMCommon.py:515 flatcamGUI/ObjectUI.py:1239 +#: FlatCAMCommon.py:515 flatcamGUI/ObjectUI.py:1278 msgid "Tool Offset" msgstr "" @@ -1620,8 +1620,8 @@ msgstr "" msgid "Custom Offset" msgstr "" -#: FlatCAMCommon.py:517 flatcamGUI/ObjectUI.py:293 flatcamGUI/PreferencesUI.py:1626 -#: flatcamGUI/PreferencesUI.py:3991 flatcamTools/ToolNonCopperClear.py:213 +#: FlatCAMCommon.py:517 flatcamGUI/ObjectUI.py:304 flatcamGUI/PreferencesUI.py:1627 +#: flatcamGUI/PreferencesUI.py:3992 flatcamTools/ToolNonCopperClear.py:213 msgid "Tool Type" msgstr "" @@ -1629,11 +1629,11 @@ msgstr "" msgid "Tool Shape" msgstr "" -#: 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 +#: FlatCAMCommon.py:519 flatcamGUI/ObjectUI.py:345 flatcamGUI/ObjectUI.py:820 +#: flatcamGUI/ObjectUI.py:1405 flatcamGUI/ObjectUI.py:1928 flatcamGUI/PreferencesUI.py:1667 +#: flatcamGUI/PreferencesUI.py:2335 flatcamGUI/PreferencesUI.py:3180 +#: flatcamGUI/PreferencesUI.py:4037 flatcamGUI/PreferencesUI.py:4291 +#: flatcamGUI/PreferencesUI.py:5115 flatcamTools/ToolCalculators.py:114 #: flatcamTools/ToolCutOut.py:132 flatcamTools/ToolNonCopperClear.py:254 msgid "Cut Z" msgstr "" @@ -1654,9 +1654,9 @@ msgstr "" msgid "V-Angle" msgstr "" -#: 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 +#: FlatCAMCommon.py:524 flatcamGUI/ObjectUI.py:839 flatcamGUI/ObjectUI.py:1452 +#: flatcamGUI/PreferencesUI.py:2353 flatcamGUI/PreferencesUI.py:3233 +#: flatcamGUI/PreferencesUI.py:6467 flatcamTools/ToolCalibration.py:74 msgid "Travel Z" msgstr "" @@ -1672,12 +1672,12 @@ msgstr "" msgid "FR Rapids" msgstr "" -#: FlatCAMCommon.py:528 flatcamGUI/PreferencesUI.py:2427 +#: FlatCAMCommon.py:528 flatcamGUI/PreferencesUI.py:2428 msgid "Spindle Speed" msgstr "" -#: FlatCAMCommon.py:529 flatcamGUI/ObjectUI.py:939 flatcamGUI/ObjectUI.py:1582 -#: flatcamGUI/PreferencesUI.py:2439 flatcamGUI/PreferencesUI.py:3353 +#: FlatCAMCommon.py:529 flatcamGUI/ObjectUI.py:963 flatcamGUI/ObjectUI.py:1621 +#: flatcamGUI/PreferencesUI.py:2440 flatcamGUI/PreferencesUI.py:3354 msgid "Dwell" msgstr "" @@ -1685,8 +1685,8 @@ msgstr "" msgid "Dwelltime" msgstr "" -#: FlatCAMCommon.py:531 flatcamGUI/ObjectUI.py:958 flatcamGUI/PreferencesUI.py:2461 -#: flatcamGUI/PreferencesUI.py:3375 +#: FlatCAMCommon.py:531 flatcamGUI/ObjectUI.py:982 flatcamGUI/PreferencesUI.py:2462 +#: flatcamGUI/PreferencesUI.py:3376 msgid "Preprocessor" msgstr "" @@ -1706,8 +1706,8 @@ msgstr "" msgid "Toolchange XY" msgstr "" -#: FlatCAMCommon.py:536 flatcamGUI/PreferencesUI.py:2378 flatcamGUI/PreferencesUI.py:3264 -#: flatcamGUI/PreferencesUI.py:6503 flatcamTools/ToolCalibration.py:111 +#: FlatCAMCommon.py:536 flatcamGUI/PreferencesUI.py:2379 flatcamGUI/PreferencesUI.py:3265 +#: flatcamGUI/PreferencesUI.py:6504 flatcamTools/ToolCalibration.py:111 msgid "Toolchange Z" msgstr "" @@ -2056,12 +2056,12 @@ msgstr "" msgid "Skewing..." msgstr "" -#: FlatCAMObj.py:723 FlatCAMObj.py:2710 FlatCAMObj.py:3904 flatcamGUI/PreferencesUI.py:1123 -#: flatcamGUI/PreferencesUI.py:2257 +#: FlatCAMObj.py:723 FlatCAMObj.py:2710 FlatCAMObj.py:3907 flatcamGUI/PreferencesUI.py:1124 +#: flatcamGUI/PreferencesUI.py:2258 msgid "Basic" msgstr "" -#: FlatCAMObj.py:745 FlatCAMObj.py:2722 FlatCAMObj.py:3925 flatcamGUI/PreferencesUI.py:1124 +#: FlatCAMObj.py:745 FlatCAMObj.py:2722 FlatCAMObj.py:3928 flatcamGUI/PreferencesUI.py:1125 msgid "Advanced" msgstr "" @@ -2069,12 +2069,12 @@ msgstr "" msgid "Buffering solid geometry" msgstr "" -#: FlatCAMObj.py:965 camlib.py:965 flatcamGUI/PreferencesUI.py:1700 +#: FlatCAMObj.py:965 camlib.py:965 flatcamGUI/PreferencesUI.py:1701 #: flatcamTools/ToolCopperThieving.py:1010 flatcamTools/ToolCopperThieving.py:1199 -#: flatcamTools/ToolCopperThieving.py:1211 flatcamTools/ToolNonCopperClear.py:1628 -#: flatcamTools/ToolNonCopperClear.py:1726 flatcamTools/ToolNonCopperClear.py:1738 -#: flatcamTools/ToolNonCopperClear.py:1987 flatcamTools/ToolNonCopperClear.py:2083 -#: flatcamTools/ToolNonCopperClear.py:2095 +#: flatcamTools/ToolCopperThieving.py:1211 flatcamTools/ToolNonCopperClear.py:1629 +#: flatcamTools/ToolNonCopperClear.py:1727 flatcamTools/ToolNonCopperClear.py:1739 +#: flatcamTools/ToolNonCopperClear.py:1988 flatcamTools/ToolNonCopperClear.py:2084 +#: flatcamTools/ToolNonCopperClear.py:2096 msgid "Buffering" msgstr "" @@ -2090,7 +2090,7 @@ msgstr "" msgid "Click on a polygon to isolate it." msgstr "" -#: FlatCAMObj.py:1117 FlatCAMObj.py:1222 flatcamTools/ToolPaint.py:1125 +#: FlatCAMObj.py:1117 FlatCAMObj.py:1222 flatcamTools/ToolPaint.py:1126 msgid "Added polygon" msgstr "" @@ -2098,7 +2098,7 @@ msgstr "" msgid "Click to add next polygon or right click to start isolation." msgstr "" -#: FlatCAMObj.py:1131 flatcamTools/ToolPaint.py:1139 +#: FlatCAMObj.py:1131 flatcamTools/ToolPaint.py:1140 msgid "Removed polygon" msgstr "" @@ -2106,11 +2106,11 @@ msgstr "" msgid "Click to add/remove next polygon or right click to start isolation." msgstr "" -#: FlatCAMObj.py:1137 flatcamTools/ToolPaint.py:1145 +#: FlatCAMObj.py:1137 flatcamTools/ToolPaint.py:1146 msgid "No polygon detected under click position." msgstr "" -#: FlatCAMObj.py:1158 flatcamTools/ToolPaint.py:1174 +#: FlatCAMObj.py:1158 flatcamTools/ToolPaint.py:1175 msgid "List of single polygons is empty. Aborting." msgstr "" @@ -2118,8 +2118,8 @@ msgstr "" msgid "No polygon in selection." msgstr "" -#: FlatCAMObj.py:1301 FlatCAMObj.py:1430 flatcamTools/ToolNonCopperClear.py:1657 -#: flatcamTools/ToolNonCopperClear.py:2011 +#: FlatCAMObj.py:1301 FlatCAMObj.py:1430 flatcamTools/ToolNonCopperClear.py:1658 +#: flatcamTools/ToolNonCopperClear.py:2012 msgid "Isolation geometry could not be generated." msgstr "" @@ -2151,8 +2151,8 @@ msgstr "" msgid "Milling tool for DRILLS is larger than hole size. Cancelled." msgstr "" -#: FlatCAMObj.py:3032 FlatCAMObj.py:4490 flatcamEditors/FlatCAMGeoEditor.py:408 -#: flatcamGUI/FlatCAMGUI.py:438 flatcamGUI/FlatCAMGUI.py:930 flatcamGUI/ObjectUI.py:1314 +#: FlatCAMObj.py:3032 FlatCAMObj.py:4493 flatcamEditors/FlatCAMGeoEditor.py:408 +#: flatcamGUI/FlatCAMGUI.py:459 flatcamGUI/FlatCAMGUI.py:1046 flatcamGUI/ObjectUI.py:1353 msgid "Tool" msgstr "" @@ -2162,7 +2162,7 @@ msgstr "" #: FlatCAMObj.py:3048 FlatCAMObj.py:3141 FlatCAMObj.py:3259 #: flatcamEditors/FlatCAMExcEditor.py:1507 flatcamEditors/FlatCAMExcEditor.py:2967 -#: flatcamGUI/ObjectUI.py:753 flatcamTools/ToolNonCopperClear.py:120 +#: flatcamGUI/ObjectUI.py:777 flatcamTools/ToolNonCopperClear.py:120 #: flatcamTools/ToolPaint.py:123 flatcamTools/ToolPcbWizard.py:76 #: flatcamTools/ToolProperties.py:396 flatcamTools/ToolProperties.py:449 #: flatcamTools/ToolSolderPaste.py:84 @@ -2191,7 +2191,7 @@ msgid "" "\"]" msgstr "" -#: FlatCAMObj.py:3341 FlatCAMObj.py:5311 FlatCAMObj.py:5315 FlatCAMObj.py:5450 +#: FlatCAMObj.py:3341 FlatCAMObj.py:5314 FlatCAMObj.py:5318 FlatCAMObj.py:5453 msgid "Generating CNC Code" msgstr "" @@ -2199,204 +2199,204 @@ msgstr "" msgid "Add from Tool DB" msgstr "" -#: 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 +#: FlatCAMObj.py:3899 flatcamGUI/FlatCAMGUI.py:652 flatcamGUI/FlatCAMGUI.py:768 +#: flatcamGUI/FlatCAMGUI.py:963 flatcamGUI/FlatCAMGUI.py:1984 flatcamGUI/FlatCAMGUI.py:2128 +#: flatcamGUI/FlatCAMGUI.py:2343 flatcamGUI/FlatCAMGUI.py:2522 flatcamGUI/ObjectUI.py:1324 #: flatcamTools/ToolPanelize.py:534 flatcamTools/ToolPanelize.py:561 #: flatcamTools/ToolPanelize.py:660 flatcamTools/ToolPanelize.py:694 #: flatcamTools/ToolPanelize.py:759 msgid "Copy" msgstr "" -#: FlatCAMObj.py:3985 FlatCAMObj.py:4354 FlatCAMObj.py:5061 FlatCAMObj.py:5701 +#: FlatCAMObj.py:3988 FlatCAMObj.py:4357 FlatCAMObj.py:5064 FlatCAMObj.py:5704 #: flatcamEditors/FlatCAMExcEditor.py:2459 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 +#: flatcamTools/ToolNonCopperClear.py:1058 flatcamTools/ToolNonCopperClear.py:1466 +#: flatcamTools/ToolPaint.py:841 flatcamTools/ToolPaint.py:1025 +#: flatcamTools/ToolPaint.py:2097 flatcamTools/ToolSolderPaste.py:882 +#: flatcamTools/ToolSolderPaste.py:957 msgid "Wrong value format entered, use a number." msgstr "" -#: FlatCAMObj.py:4123 +#: FlatCAMObj.py:4126 msgid "Please enter the desired tool diameter in Float format." msgstr "" -#: FlatCAMObj.py:4193 +#: FlatCAMObj.py:4196 msgid "Tool added in Tool Table." msgstr "" -#: FlatCAMObj.py:4197 +#: FlatCAMObj.py:4200 msgid "Default Tool added. Wrong value format entered." msgstr "" -#: FlatCAMObj.py:4304 FlatCAMObj.py:4313 +#: FlatCAMObj.py:4307 FlatCAMObj.py:4316 msgid "Failed. Select a tool to copy." msgstr "" -#: FlatCAMObj.py:4340 +#: FlatCAMObj.py:4343 msgid "Tool was copied in Tool Table." msgstr "" -#: FlatCAMObj.py:4368 +#: FlatCAMObj.py:4371 msgid "Tool was edited in Tool Table." msgstr "" -#: FlatCAMObj.py:4397 FlatCAMObj.py:4406 +#: FlatCAMObj.py:4400 FlatCAMObj.py:4409 msgid "Failed. Select a tool to delete." msgstr "" -#: FlatCAMObj.py:4429 +#: FlatCAMObj.py:4432 msgid "Tool was deleted in Tool Table." msgstr "" -#: FlatCAMObj.py:4490 flatcamGUI/ObjectUI.py:1314 +#: FlatCAMObj.py:4493 flatcamGUI/ObjectUI.py:1353 msgid "Parameters for" msgstr "" -#: FlatCAMObj.py:4921 +#: FlatCAMObj.py:4924 msgid "This Geometry can't be processed because it is" msgstr "" -#: FlatCAMObj.py:4923 +#: FlatCAMObj.py:4926 msgid "geometry" msgstr "" -#: FlatCAMObj.py:4966 +#: FlatCAMObj.py:4969 msgid "Failed. No tool selected in the tool table ..." msgstr "" -#: FlatCAMObj.py:5066 FlatCAMObj.py:5219 +#: FlatCAMObj.py:5069 FlatCAMObj.py:5222 msgid "" "Tool Offset is selected in Tool Table but no value is provided.\n" "Add a Tool Offset or change the Offset Type." msgstr "" -#: FlatCAMObj.py:5131 FlatCAMObj.py:5280 +#: FlatCAMObj.py:5134 FlatCAMObj.py:5283 msgid "G-Code parsing in progress..." msgstr "" -#: FlatCAMObj.py:5133 FlatCAMObj.py:5282 +#: FlatCAMObj.py:5136 FlatCAMObj.py:5285 msgid "G-Code parsing finished..." msgstr "" -#: FlatCAMObj.py:5141 +#: FlatCAMObj.py:5144 msgid "Finished G-Code processing" msgstr "" -#: FlatCAMObj.py:5143 FlatCAMObj.py:5294 +#: FlatCAMObj.py:5146 FlatCAMObj.py:5297 msgid "G-Code processing failed with error" msgstr "" -#: FlatCAMObj.py:5189 flatcamTools/ToolSolderPaste.py:1300 +#: FlatCAMObj.py:5192 flatcamTools/ToolSolderPaste.py:1303 msgid "Cancelled. Empty file, it has no geometry" msgstr "" -#: FlatCAMObj.py:5292 FlatCAMObj.py:5443 +#: FlatCAMObj.py:5295 FlatCAMObj.py:5446 msgid "Finished G-Code processing..." msgstr "" -#: FlatCAMObj.py:5313 FlatCAMObj.py:5317 FlatCAMObj.py:5453 +#: FlatCAMObj.py:5316 FlatCAMObj.py:5320 FlatCAMObj.py:5456 msgid "CNCjob created" msgstr "" -#: FlatCAMObj.py:5484 FlatCAMObj.py:5493 flatcamParsers/ParseGerber.py:1750 +#: FlatCAMObj.py:5487 FlatCAMObj.py:5496 flatcamParsers/ParseGerber.py:1750 #: flatcamParsers/ParseGerber.py:1760 msgid "Scale factor has to be a number: integer or float." msgstr "" -#: FlatCAMObj.py:5557 +#: FlatCAMObj.py:5560 msgid "Geometry Scale done." msgstr "" -#: FlatCAMObj.py:5574 flatcamParsers/ParseGerber.py:1876 +#: FlatCAMObj.py:5577 flatcamParsers/ParseGerber.py:1876 msgid "" "An (x,y) pair of values are needed. Probable you entered only one value in the Offset " "field." msgstr "" -#: FlatCAMObj.py:5631 +#: FlatCAMObj.py:5634 msgid "Geometry Offset done." msgstr "" -#: FlatCAMObj.py:5660 +#: FlatCAMObj.py:5663 msgid "" "The Toolchange X,Y field in Edit -> Preferences has to be in the format (x, y)\n" "but now there is only one value, not two." msgstr "" -#: FlatCAMObj.py:6335 FlatCAMObj.py:6993 FlatCAMObj.py:7189 +#: FlatCAMObj.py:6338 FlatCAMObj.py:6996 FlatCAMObj.py:7192 msgid "Basic" msgstr "" -#: FlatCAMObj.py:6341 FlatCAMObj.py:6997 FlatCAMObj.py:7193 +#: FlatCAMObj.py:6344 FlatCAMObj.py:7000 FlatCAMObj.py:7196 msgid "Advanced" msgstr "" -#: FlatCAMObj.py:6384 +#: FlatCAMObj.py:6387 msgid "Plotting..." msgstr "" -#: FlatCAMObj.py:6407 FlatCAMObj.py:6412 flatcamTools/ToolSolderPaste.py:1506 +#: FlatCAMObj.py:6410 FlatCAMObj.py:6415 flatcamTools/ToolSolderPaste.py:1509 msgid "Export Machine Code ..." msgstr "" -#: FlatCAMObj.py:6417 flatcamTools/ToolSolderPaste.py:1510 +#: FlatCAMObj.py:6420 flatcamTools/ToolSolderPaste.py:1513 msgid "Export Machine Code cancelled ..." msgstr "" -#: FlatCAMObj.py:6439 +#: FlatCAMObj.py:6442 msgid "Machine Code file saved to" msgstr "" -#: FlatCAMObj.py:6493 flatcamTools/ToolCalibration.py:1083 +#: FlatCAMObj.py:6496 flatcamTools/ToolCalibration.py:1083 msgid "Loaded Machine Code into Code Editor" msgstr "" -#: FlatCAMObj.py:6628 +#: FlatCAMObj.py:6631 msgid "This CNCJob object can't be processed because it is a" msgstr "" -#: FlatCAMObj.py:6630 +#: FlatCAMObj.py:6633 msgid "CNCJob object" msgstr "" -#: FlatCAMObj.py:6681 +#: FlatCAMObj.py:6684 msgid "G-code does not have a units code: either G20 or G21" msgstr "" -#: FlatCAMObj.py:6695 +#: FlatCAMObj.py:6698 msgid "Cancelled. The Toolchange Custom code is enabled but it's empty." msgstr "" -#: FlatCAMObj.py:6700 +#: FlatCAMObj.py:6703 msgid "Toolchange G-code was replaced by a custom code." msgstr "" -#: FlatCAMObj.py:6717 flatcamEditors/FlatCAMTextEditor.py:224 -#: flatcamTools/ToolSolderPaste.py:1537 +#: FlatCAMObj.py:6720 flatcamEditors/FlatCAMTextEditor.py:224 +#: flatcamTools/ToolSolderPaste.py:1540 msgid "No such file or directory" msgstr "" -#: FlatCAMObj.py:6731 flatcamEditors/FlatCAMTextEditor.py:236 +#: FlatCAMObj.py:6734 flatcamEditors/FlatCAMTextEditor.py:236 msgid "Saved to" msgstr "" -#: FlatCAMObj.py:6741 FlatCAMObj.py:6751 +#: FlatCAMObj.py:6744 FlatCAMObj.py:6754 msgid "The used preprocessor file has to have in it's name: 'toolchange_custom'" msgstr "" -#: FlatCAMObj.py:6755 +#: FlatCAMObj.py:6758 msgid "There is no preprocessor file." msgstr "" -#: FlatCAMObj.py:7012 +#: FlatCAMObj.py:7015 msgid "Script Editor" msgstr "" -#: FlatCAMObj.py:7293 +#: FlatCAMObj.py:7296 msgid "Document Editor" msgstr "" @@ -2404,24 +2404,24 @@ msgstr "" msgid "processes running." msgstr "" -#: FlatCAMTranslation.py:92 +#: FlatCAMTranslation.py:103 msgid "The application will restart." msgstr "" -#: FlatCAMTranslation.py:94 +#: FlatCAMTranslation.py:105 msgid "Are you sure do you want to change the current language to" msgstr "" -#: FlatCAMTranslation.py:95 +#: FlatCAMTranslation.py:106 msgid "Apply Language ..." msgstr "" -#: ObjectCollection.py:453 +#: ObjectCollection.py:454 #, python-brace-format msgid "Object renamed from {old} to {new}" msgstr "" -#: ObjectCollection.py:852 +#: ObjectCollection.py:853 msgid "Cause of error" msgstr "" @@ -2694,7 +2694,7 @@ msgid "Resize drill(s) failed. Please enter a diameter for resize." msgstr "" #: flatcamEditors/FlatCAMExcEditor.py:983 flatcamEditors/FlatCAMExcEditor.py:1052 -#: flatcamGUI/FlatCAMGUI.py:2892 flatcamGUI/FlatCAMGUI.py:3105 flatcamGUI/FlatCAMGUI.py:3322 +#: flatcamGUI/FlatCAMGUI.py:3127 flatcamGUI/FlatCAMGUI.py:3340 flatcamGUI/FlatCAMGUI.py:3557 msgid "Cancelled." msgstr "" @@ -2718,7 +2718,7 @@ msgstr "" msgid "Done. Drill(s) copied." msgstr "" -#: flatcamEditors/FlatCAMExcEditor.py:1480 flatcamGUI/PreferencesUI.py:2820 +#: flatcamEditors/FlatCAMExcEditor.py:1480 flatcamGUI/PreferencesUI.py:2821 msgid "Excellon Editor" msgstr "" @@ -2726,13 +2726,13 @@ msgstr "" msgid "Name:" msgstr "" -#: flatcamEditors/FlatCAMExcEditor.py:1493 flatcamGUI/ObjectUI.py:733 -#: flatcamGUI/ObjectUI.py:1145 flatcamTools/ToolNonCopperClear.py:109 +#: flatcamEditors/FlatCAMExcEditor.py:1493 flatcamGUI/ObjectUI.py:757 +#: flatcamGUI/ObjectUI.py:1184 flatcamTools/ToolNonCopperClear.py:109 #: flatcamTools/ToolPaint.py:112 flatcamTools/ToolSolderPaste.py:73 msgid "Tools Table" msgstr "" -#: flatcamEditors/FlatCAMExcEditor.py:1495 flatcamGUI/ObjectUI.py:735 +#: flatcamEditors/FlatCAMExcEditor.py:1495 flatcamGUI/ObjectUI.py:759 msgid "" "Tools in this Excellon object\n" "when are used for drilling." @@ -2748,8 +2748,8 @@ msgid "" "for this Excellon object." msgstr "" -#: flatcamEditors/FlatCAMExcEditor.py:1529 flatcamGUI/ObjectUI.py:1258 -#: flatcamGUI/PreferencesUI.py:2851 +#: flatcamEditors/FlatCAMExcEditor.py:1529 flatcamGUI/ObjectUI.py:1297 +#: flatcamGUI/PreferencesUI.py:2852 msgid "Diameter for the new tool" msgstr "" @@ -2773,7 +2773,7 @@ msgid "" "by selecting a row in the tool table." msgstr "" -#: flatcamEditors/FlatCAMExcEditor.py:1573 flatcamGUI/FlatCAMGUI.py:1749 +#: flatcamEditors/FlatCAMExcEditor.py:1573 flatcamGUI/FlatCAMGUI.py:1865 msgid "Resize Drill(s)" msgstr "" @@ -2797,8 +2797,8 @@ msgstr "" msgid "Resize drill(s)" msgstr "" -#: flatcamEditors/FlatCAMExcEditor.py:1622 flatcamGUI/FlatCAMGUI.py:1748 -#: flatcamGUI/FlatCAMGUI.py:1958 +#: flatcamEditors/FlatCAMExcEditor.py:1622 flatcamGUI/FlatCAMGUI.py:1864 +#: flatcamGUI/FlatCAMGUI.py:2116 msgid "Add Drill Array" msgstr "" @@ -2818,17 +2818,17 @@ msgid "Linear" msgstr "" #: flatcamEditors/FlatCAMExcEditor.py:1634 flatcamEditors/FlatCAMExcEditor.py:1848 -#: flatcamEditors/FlatCAMGrbEditor.py:2696 flatcamGUI/ObjectUI.py:300 -#: flatcamGUI/PreferencesUI.py:3999 flatcamGUI/PreferencesUI.py:6396 +#: flatcamEditors/FlatCAMGrbEditor.py:2696 flatcamGUI/ObjectUI.py:311 +#: flatcamGUI/PreferencesUI.py:4000 flatcamGUI/PreferencesUI.py:6397 #: flatcamTools/ToolFiducials.py:220 flatcamTools/ToolNonCopperClear.py:221 msgid "Circular" msgstr "" -#: flatcamEditors/FlatCAMExcEditor.py:1642 flatcamGUI/PreferencesUI.py:2862 +#: flatcamEditors/FlatCAMExcEditor.py:1642 flatcamGUI/PreferencesUI.py:2863 msgid "Nr of drills" msgstr "" -#: flatcamEditors/FlatCAMExcEditor.py:1643 flatcamGUI/PreferencesUI.py:2864 +#: flatcamEditors/FlatCAMExcEditor.py:1643 flatcamGUI/PreferencesUI.py:2865 msgid "Specify how many drills to be in the array." msgstr "" @@ -2836,13 +2836,13 @@ msgstr "" #: flatcamEditors/FlatCAMExcEditor.py:1783 flatcamEditors/FlatCAMExcEditor.py:1876 #: flatcamEditors/FlatCAMExcEditor.py:1927 flatcamEditors/FlatCAMGrbEditor.py:1524 #: flatcamEditors/FlatCAMGrbEditor.py:2724 flatcamEditors/FlatCAMGrbEditor.py:2773 -#: flatcamGUI/PreferencesUI.py:2972 +#: flatcamGUI/PreferencesUI.py:2973 msgid "Direction" msgstr "" #: flatcamEditors/FlatCAMExcEditor.py:1663 flatcamEditors/FlatCAMExcEditor.py:1878 -#: flatcamEditors/FlatCAMGrbEditor.py:2726 flatcamGUI/PreferencesUI.py:1940 -#: flatcamGUI/PreferencesUI.py:2880 flatcamGUI/PreferencesUI.py:3028 +#: flatcamEditors/FlatCAMGrbEditor.py:2726 flatcamGUI/PreferencesUI.py:1941 +#: flatcamGUI/PreferencesUI.py:2881 flatcamGUI/PreferencesUI.py:3029 msgid "" "Direction on which the linear array is oriented:\n" "- 'X' - horizontal axis \n" @@ -2852,17 +2852,17 @@ msgstr "" #: flatcamEditors/FlatCAMExcEditor.py:1670 flatcamEditors/FlatCAMExcEditor.py:1792 #: flatcamEditors/FlatCAMExcEditor.py:1885 flatcamEditors/FlatCAMGrbEditor.py:2733 -#: flatcamGUI/PreferencesUI.py:1946 flatcamGUI/PreferencesUI.py:2886 -#: flatcamGUI/PreferencesUI.py:2981 flatcamGUI/PreferencesUI.py:3034 -#: flatcamGUI/PreferencesUI.py:4822 flatcamTools/ToolFilm.py:256 +#: flatcamGUI/PreferencesUI.py:1947 flatcamGUI/PreferencesUI.py:2887 +#: flatcamGUI/PreferencesUI.py:2982 flatcamGUI/PreferencesUI.py:3035 +#: flatcamGUI/PreferencesUI.py:4823 flatcamTools/ToolFilm.py:256 msgid "X" msgstr "" #: flatcamEditors/FlatCAMExcEditor.py:1671 flatcamEditors/FlatCAMExcEditor.py:1793 #: flatcamEditors/FlatCAMExcEditor.py:1886 flatcamEditors/FlatCAMGrbEditor.py:2734 -#: flatcamGUI/PreferencesUI.py:1947 flatcamGUI/PreferencesUI.py:2887 -#: flatcamGUI/PreferencesUI.py:2982 flatcamGUI/PreferencesUI.py:3035 -#: flatcamGUI/PreferencesUI.py:4823 flatcamTools/ToolFilm.py:257 +#: flatcamGUI/PreferencesUI.py:1948 flatcamGUI/PreferencesUI.py:2888 +#: flatcamGUI/PreferencesUI.py:2983 flatcamGUI/PreferencesUI.py:3036 +#: flatcamGUI/PreferencesUI.py:4824 flatcamTools/ToolFilm.py:257 msgid "Y" msgstr "" @@ -2871,25 +2871,25 @@ msgstr "" #: flatcamEditors/FlatCAMExcEditor.py:1798 flatcamEditors/FlatCAMExcEditor.py:1887 #: flatcamEditors/FlatCAMExcEditor.py:1905 flatcamEditors/FlatCAMExcEditor.py:1939 #: flatcamEditors/FlatCAMGrbEditor.py:2735 flatcamEditors/FlatCAMGrbEditor.py:2752 -#: flatcamEditors/FlatCAMGrbEditor.py:2788 flatcamGUI/PreferencesUI.py:1948 -#: 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 +#: flatcamEditors/FlatCAMGrbEditor.py:2788 flatcamGUI/PreferencesUI.py:1949 +#: flatcamGUI/PreferencesUI.py:1967 flatcamGUI/PreferencesUI.py:2889 +#: flatcamGUI/PreferencesUI.py:2908 flatcamGUI/PreferencesUI.py:2984 +#: flatcamGUI/PreferencesUI.py:2989 flatcamGUI/PreferencesUI.py:3037 +#: flatcamGUI/PreferencesUI.py:3058 flatcamGUI/PreferencesUI.py:5216 #: flatcamTools/ToolDistance.py:66 flatcamTools/ToolDistanceMin.py:68 #: flatcamTools/ToolTransform.py:62 msgid "Angle" msgstr "" #: flatcamEditors/FlatCAMExcEditor.py:1676 flatcamEditors/FlatCAMExcEditor.py:1891 -#: flatcamEditors/FlatCAMGrbEditor.py:2739 flatcamGUI/PreferencesUI.py:1954 -#: flatcamGUI/PreferencesUI.py:2894 flatcamGUI/PreferencesUI.py:3042 +#: flatcamEditors/FlatCAMGrbEditor.py:2739 flatcamGUI/PreferencesUI.py:1955 +#: flatcamGUI/PreferencesUI.py:2895 flatcamGUI/PreferencesUI.py:3043 msgid "Pitch" msgstr "" #: flatcamEditors/FlatCAMExcEditor.py:1678 flatcamEditors/FlatCAMExcEditor.py:1893 -#: flatcamEditors/FlatCAMGrbEditor.py:2741 flatcamGUI/PreferencesUI.py:1956 -#: flatcamGUI/PreferencesUI.py:2896 flatcamGUI/PreferencesUI.py:3044 +#: flatcamEditors/FlatCAMGrbEditor.py:2741 flatcamGUI/PreferencesUI.py:1957 +#: flatcamGUI/PreferencesUI.py:2897 flatcamGUI/PreferencesUI.py:3045 msgid "Pitch = Distance between elements of the array." msgstr "" @@ -2907,24 +2907,24 @@ msgid "Direction for circular array.Can be CW = clockwise or CCW = counter clock msgstr "" #: flatcamEditors/FlatCAMExcEditor.py:1719 flatcamEditors/FlatCAMExcEditor.py:1935 -#: flatcamEditors/FlatCAMGrbEditor.py:2783 flatcamGUI/PreferencesUI.py:1988 -#: flatcamGUI/PreferencesUI.py:2634 flatcamGUI/PreferencesUI.py:2930 -#: flatcamGUI/PreferencesUI.py:3080 flatcamGUI/PreferencesUI.py:3508 +#: flatcamEditors/FlatCAMGrbEditor.py:2783 flatcamGUI/PreferencesUI.py:1989 +#: flatcamGUI/PreferencesUI.py:2635 flatcamGUI/PreferencesUI.py:2931 +#: flatcamGUI/PreferencesUI.py:3081 flatcamGUI/PreferencesUI.py:3509 msgid "CW" msgstr "" #: flatcamEditors/FlatCAMExcEditor.py:1720 flatcamEditors/FlatCAMExcEditor.py:1936 -#: flatcamEditors/FlatCAMGrbEditor.py:2784 flatcamGUI/PreferencesUI.py:1989 -#: flatcamGUI/PreferencesUI.py:2635 flatcamGUI/PreferencesUI.py:2931 -#: flatcamGUI/PreferencesUI.py:3081 flatcamGUI/PreferencesUI.py:3509 +#: flatcamEditors/FlatCAMGrbEditor.py:2784 flatcamGUI/PreferencesUI.py:1990 +#: flatcamGUI/PreferencesUI.py:2636 flatcamGUI/PreferencesUI.py:2932 +#: flatcamGUI/PreferencesUI.py:3082 flatcamGUI/PreferencesUI.py:3510 msgid "CCW" msgstr "" #: flatcamEditors/FlatCAMExcEditor.py:1724 flatcamEditors/FlatCAMExcEditor.py:1940 -#: flatcamEditors/FlatCAMGrbEditor.py:2790 flatcamGUI/PreferencesUI.py:1968 -#: flatcamGUI/PreferencesUI.py:1997 flatcamGUI/PreferencesUI.py:2909 -#: flatcamGUI/PreferencesUI.py:2939 flatcamGUI/PreferencesUI.py:3059 -#: flatcamGUI/PreferencesUI.py:3089 +#: flatcamEditors/FlatCAMGrbEditor.py:2790 flatcamGUI/PreferencesUI.py:1969 +#: flatcamGUI/PreferencesUI.py:1998 flatcamGUI/PreferencesUI.py:2910 +#: flatcamGUI/PreferencesUI.py:2940 flatcamGUI/PreferencesUI.py:3060 +#: flatcamGUI/PreferencesUI.py:3090 msgid "Angle at which each element in circular array is placed." msgstr "" @@ -2938,16 +2938,16 @@ msgid "" "either single or as an part of an array." msgstr "" -#: flatcamEditors/FlatCAMExcEditor.py:1769 flatcamGUI/PreferencesUI.py:2956 +#: flatcamEditors/FlatCAMExcEditor.py:1769 flatcamGUI/PreferencesUI.py:2957 #: flatcamTools/ToolProperties.py:555 msgid "Length" msgstr "" -#: flatcamEditors/FlatCAMExcEditor.py:1771 flatcamGUI/PreferencesUI.py:2958 +#: flatcamEditors/FlatCAMExcEditor.py:1771 flatcamGUI/PreferencesUI.py:2959 msgid "Length = The length of the slot." msgstr "" -#: flatcamEditors/FlatCAMExcEditor.py:1785 flatcamGUI/PreferencesUI.py:2974 +#: flatcamEditors/FlatCAMExcEditor.py:1785 flatcamGUI/PreferencesUI.py:2975 msgid "" "Direction on which the slot is oriented:\n" "- 'X' - horizontal axis \n" @@ -2977,11 +2977,11 @@ msgid "" "It can be Linear X(Y) or Circular" msgstr "" -#: flatcamEditors/FlatCAMExcEditor.py:1856 flatcamGUI/PreferencesUI.py:3013 +#: flatcamEditors/FlatCAMExcEditor.py:1856 flatcamGUI/PreferencesUI.py:3014 msgid "Nr of slots" msgstr "" -#: flatcamEditors/FlatCAMExcEditor.py:1857 flatcamGUI/PreferencesUI.py:3015 +#: flatcamEditors/FlatCAMExcEditor.py:1857 flatcamGUI/PreferencesUI.py:3016 msgid "Specify how many slots to be in the array." msgstr "" @@ -2991,7 +2991,7 @@ msgid "" "Save and reedit Excellon if you need to add this tool. " msgstr "" -#: flatcamEditors/FlatCAMExcEditor.py:2480 flatcamGUI/FlatCAMGUI.py:3491 +#: flatcamEditors/FlatCAMExcEditor.py:2480 flatcamGUI/FlatCAMGUI.py:3726 msgid "Added new tool with dia" msgstr "" @@ -3058,7 +3058,7 @@ msgid "Round" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:96 flatcamEditors/FlatCAMGrbEditor.py:2552 -#: flatcamGUI/PreferencesUI.py:5989 flatcamTools/ToolQRCode.py:198 +#: flatcamGUI/PreferencesUI.py:5990 flatcamTools/ToolQRCode.py:198 msgid "Square" msgstr "" @@ -3079,7 +3079,7 @@ msgid "Full Buffer" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:133 flatcamEditors/FlatCAMGeoEditor.py:2758 -#: flatcamGUI/FlatCAMGUI.py:1658 flatcamGUI/PreferencesUI.py:2008 +#: flatcamGUI/FlatCAMGUI.py:1774 flatcamGUI/PreferencesUI.py:2009 msgid "Buffer Tool" msgstr "" @@ -3094,7 +3094,7 @@ msgstr "" msgid "Font" msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:324 flatcamGUI/FlatCAMGUI.py:1919 +#: flatcamEditors/FlatCAMGeoEditor.py:324 flatcamGUI/FlatCAMGUI.py:2054 msgid "Text" msgstr "" @@ -3102,25 +3102,25 @@ msgstr "" msgid "Text Tool" msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:442 flatcamGUI/ObjectUI.py:348 -#: flatcamGUI/PreferencesUI.py:1449 flatcamGUI/PreferencesUI.py:3144 -#: flatcamGUI/PreferencesUI.py:4500 +#: flatcamEditors/FlatCAMGeoEditor.py:442 flatcamGUI/ObjectUI.py:359 +#: flatcamGUI/PreferencesUI.py:1450 flatcamGUI/PreferencesUI.py:3145 +#: flatcamGUI/PreferencesUI.py:4501 msgid "Tool dia" msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:444 flatcamGUI/PreferencesUI.py:4502 +#: flatcamEditors/FlatCAMGeoEditor.py:444 flatcamGUI/PreferencesUI.py:4503 msgid "" "Diameter of the tool to\n" "be used in the operation." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:455 flatcamGUI/PreferencesUI.py:4107 -#: flatcamGUI/PreferencesUI.py:4532 flatcamTools/ToolNonCopperClear.py:319 +#: flatcamEditors/FlatCAMGeoEditor.py:455 flatcamGUI/PreferencesUI.py:4108 +#: flatcamGUI/PreferencesUI.py:4533 flatcamTools/ToolNonCopperClear.py:319 #: flatcamTools/ToolPaint.py:219 msgid "Overlap Rate" msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:457 flatcamGUI/PreferencesUI.py:4534 +#: flatcamEditors/FlatCAMGeoEditor.py:457 flatcamGUI/PreferencesUI.py:4535 #: flatcamTools/ToolPaint.py:221 msgid "" "How much (fraction) of the tool width to overlap each tool pass.\n" @@ -3132,17 +3132,17 @@ msgid "" "due of too many paths." msgstr "" -#: 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 +#: flatcamEditors/FlatCAMGeoEditor.py:475 flatcamGUI/PreferencesUI.py:4127 +#: flatcamGUI/PreferencesUI.py:4348 flatcamGUI/PreferencesUI.py:4553 +#: flatcamGUI/PreferencesUI.py:6107 flatcamGUI/PreferencesUI.py:6264 +#: flatcamGUI/PreferencesUI.py:6349 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 "" -#: flatcamEditors/FlatCAMGeoEditor.py:477 flatcamGUI/PreferencesUI.py:4554 +#: flatcamEditors/FlatCAMGeoEditor.py:477 flatcamGUI/PreferencesUI.py:4555 #: flatcamTools/ToolPaint.py:240 msgid "" "Distance by which to avoid\n" @@ -3150,8 +3150,8 @@ msgid "" "be painted." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:489 flatcamGUI/PreferencesUI.py:4139 -#: flatcamGUI/PreferencesUI.py:4567 flatcamTools/ToolNonCopperClear.py:348 +#: flatcamEditors/FlatCAMGeoEditor.py:489 flatcamGUI/PreferencesUI.py:4140 +#: flatcamGUI/PreferencesUI.py:4568 flatcamTools/ToolNonCopperClear.py:348 #: flatcamTools/ToolPaint.py:251 msgid "Method" msgstr "" @@ -3162,20 +3162,20 @@ msgid "" "B>: Outwards from seed." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:496 flatcamGUI/PreferencesUI.py:4148 -#: flatcamGUI/PreferencesUI.py:4576 flatcamTools/ToolNonCopperClear.py:357 +#: flatcamEditors/FlatCAMGeoEditor.py:496 flatcamGUI/PreferencesUI.py:4149 +#: flatcamGUI/PreferencesUI.py:4577 flatcamTools/ToolNonCopperClear.py:357 #: flatcamTools/ToolPaint.py:260 msgid "Standard" msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:497 flatcamGUI/PreferencesUI.py:4149 -#: flatcamGUI/PreferencesUI.py:4577 flatcamTools/ToolNonCopperClear.py:358 +#: flatcamEditors/FlatCAMGeoEditor.py:497 flatcamGUI/PreferencesUI.py:4150 +#: flatcamGUI/PreferencesUI.py:4578 flatcamTools/ToolNonCopperClear.py:358 #: flatcamTools/ToolPaint.py:261 msgid "Seed-based" msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:498 flatcamGUI/PreferencesUI.py:4150 -#: flatcamGUI/PreferencesUI.py:4578 flatcamTools/ToolNonCopperClear.py:359 +#: flatcamEditors/FlatCAMGeoEditor.py:498 flatcamGUI/PreferencesUI.py:4151 +#: flatcamGUI/PreferencesUI.py:4579 flatcamTools/ToolNonCopperClear.py:359 #: flatcamTools/ToolPaint.py:262 msgid "Straight lines" msgstr "" @@ -3184,8 +3184,8 @@ msgstr "" msgid "Connect:" msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:507 flatcamGUI/PreferencesUI.py:4159 -#: flatcamGUI/PreferencesUI.py:4585 flatcamTools/ToolNonCopperClear.py:366 +#: flatcamEditors/FlatCAMGeoEditor.py:507 flatcamGUI/PreferencesUI.py:4160 +#: flatcamGUI/PreferencesUI.py:4586 flatcamTools/ToolNonCopperClear.py:366 #: flatcamTools/ToolPaint.py:269 msgid "" "Draw lines between resulting\n" @@ -3196,21 +3196,21 @@ msgstr "" msgid "Contour:" msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:517 flatcamGUI/PreferencesUI.py:4170 -#: flatcamGUI/PreferencesUI.py:4595 flatcamTools/ToolNonCopperClear.py:375 +#: flatcamEditors/FlatCAMGeoEditor.py:517 flatcamGUI/PreferencesUI.py:4171 +#: flatcamGUI/PreferencesUI.py:4596 flatcamTools/ToolNonCopperClear.py:375 #: flatcamTools/ToolPaint.py:278 msgid "" "Cut around the perimeter of the polygon\n" "to trim rough edges." msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:529 flatcamGUI/FlatCAMGUI.py:1921 +#: flatcamEditors/FlatCAMGeoEditor.py:529 flatcamGUI/FlatCAMGUI.py:2058 msgid "Paint" msgstr "" -#: flatcamEditors/FlatCAMGeoEditor.py:547 flatcamGUI/FlatCAMGUI.py:749 -#: flatcamGUI/FlatCAMGUI.py:2194 flatcamGUI/ObjectUI.py:1694 flatcamTools/ToolPaint.py:41 -#: flatcamTools/ToolPaint.py:538 +#: flatcamEditors/FlatCAMGeoEditor.py:547 flatcamGUI/FlatCAMGUI.py:819 +#: flatcamGUI/FlatCAMGUI.py:2388 flatcamGUI/ObjectUI.py:1733 flatcamTools/ToolPaint.py:41 +#: flatcamTools/ToolPaint.py:539 msgid "Paint Tool" msgstr "" @@ -3220,21 +3220,21 @@ msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:597 flatcamEditors/FlatCAMGeoEditor.py:2784 #: flatcamEditors/FlatCAMGeoEditor.py:2814 flatcamEditors/FlatCAMGeoEditor.py:2844 -#: flatcamGUI/PreferencesUI.py:3140 flatcamTools/ToolProperties.py:120 +#: flatcamGUI/PreferencesUI.py:3141 flatcamTools/ToolProperties.py:120 #: flatcamTools/ToolProperties.py:158 msgid "Tools" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:608 flatcamEditors/FlatCAMGeoEditor.py:992 #: flatcamEditors/FlatCAMGrbEditor.py:5011 flatcamEditors/FlatCAMGrbEditor.py:5408 -#: flatcamGUI/FlatCAMGUI.py:762 flatcamGUI/FlatCAMGUI.py:2207 +#: flatcamGUI/FlatCAMGUI.py:840 flatcamGUI/FlatCAMGUI.py:2406 #: flatcamTools/ToolTransform.py:371 msgid "Transform Tool" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:609 flatcamEditors/FlatCAMGeoEditor.py:674 #: flatcamEditors/FlatCAMGrbEditor.py:5012 flatcamEditors/FlatCAMGrbEditor.py:5077 -#: flatcamGUI/PreferencesUI.py:5207 flatcamTools/ToolTransform.py:25 +#: flatcamGUI/PreferencesUI.py:5208 flatcamTools/ToolTransform.py:25 #: flatcamTools/ToolTransform.py:79 msgid "Rotate" msgstr "" @@ -3245,9 +3245,9 @@ msgid "Skew/Shear" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:611 flatcamEditors/FlatCAMGrbEditor.py:2600 -#: 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 +#: flatcamEditors/FlatCAMGrbEditor.py:5014 flatcamGUI/FlatCAMGUI.py:954 +#: flatcamGUI/FlatCAMGUI.py:1986 flatcamGUI/FlatCAMGUI.py:2101 flatcamGUI/FlatCAMGUI.py:2514 +#: flatcamGUI/ObjectUI.py:103 flatcamGUI/ObjectUI.py:121 flatcamGUI/PreferencesUI.py:5258 #: flatcamTools/ToolTransform.py:27 msgid "Scale" msgstr "" @@ -3258,15 +3258,15 @@ msgid "Mirror (Flip)" msgstr "" #: 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 +#: flatcamGUI/ObjectUI.py:132 flatcamGUI/ObjectUI.py:148 flatcamGUI/ObjectUI.py:1217 +#: flatcamGUI/ObjectUI.py:1918 flatcamGUI/PreferencesUI.py:4196 +#: flatcamGUI/PreferencesUI.py:5305 flatcamTools/ToolNonCopperClear.py:397 #: flatcamTools/ToolTransform.py:29 msgid "Offset" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:626 flatcamEditors/FlatCAMGrbEditor.py:5029 -#: flatcamGUI/FlatCAMGUI.py:709 flatcamGUI/FlatCAMGUI.py:2160 +#: flatcamGUI/FlatCAMGUI.py:761 flatcamGUI/FlatCAMGUI.py:2335 msgid "Editor" msgstr "" @@ -3275,7 +3275,7 @@ msgid "Angle:" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:660 flatcamEditors/FlatCAMGrbEditor.py:5063 -#: flatcamGUI/PreferencesUI.py:5217 flatcamTools/ToolTransform.py:64 +#: flatcamGUI/PreferencesUI.py:5218 flatcamTools/ToolTransform.py:64 msgid "" "Angle for Rotation action, in degrees.\n" "Float number between -360 and 359.\n" @@ -3296,7 +3296,7 @@ msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:701 flatcamEditors/FlatCAMGeoEditor.py:721 #: flatcamEditors/FlatCAMGrbEditor.py:5104 flatcamEditors/FlatCAMGrbEditor.py:5124 -#: flatcamGUI/PreferencesUI.py:5236 flatcamGUI/PreferencesUI.py:5250 +#: flatcamGUI/PreferencesUI.py:5237 flatcamGUI/PreferencesUI.py:5251 #: flatcamTools/ToolCalibration.py:508 flatcamTools/ToolCalibration.py:521 msgid "" "Angle for Skew action, in degrees.\n" @@ -3362,7 +3362,7 @@ msgid "Scale Y" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:800 flatcamEditors/FlatCAMGrbEditor.py:5203 -#: flatcamGUI/PreferencesUI.py:5286 flatcamTools/ToolTransform.py:191 +#: flatcamGUI/PreferencesUI.py:5287 flatcamTools/ToolTransform.py:191 msgid "Link" msgstr "" @@ -3373,7 +3373,7 @@ msgid "" msgstr "" #: flatcamEditors/FlatCAMGeoEditor.py:808 flatcamEditors/FlatCAMGrbEditor.py:5211 -#: flatcamGUI/PreferencesUI.py:5294 flatcamTools/ToolTransform.py:199 +#: flatcamGUI/PreferencesUI.py:5295 flatcamTools/ToolTransform.py:199 msgid "Scale Reference" msgstr "" @@ -3837,9 +3837,9 @@ msgstr "" msgid "Copy cancelled. No shape selected." msgstr "" -#: 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 +#: flatcamEditors/FlatCAMGeoEditor.py:4025 flatcamGUI/FlatCAMGUI.py:3435 +#: flatcamGUI/FlatCAMGUI.py:3482 flatcamGUI/FlatCAMGUI.py:3501 flatcamGUI/FlatCAMGUI.py:3636 +#: flatcamGUI/FlatCAMGUI.py:3649 flatcamGUI/FlatCAMGUI.py:3683 flatcamGUI/FlatCAMGUI.py:3741 msgid "Click on target point." msgstr "" @@ -4031,68 +4031,68 @@ msgstr "" msgid "Done. Apertures copied." msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:2376 flatcamGUI/FlatCAMGUI.py:1934 -#: flatcamGUI/PreferencesUI.py:1847 +#: flatcamEditors/FlatCAMGrbEditor.py:2376 flatcamGUI/FlatCAMGUI.py:2079 +#: flatcamGUI/PreferencesUI.py:1848 msgid "Gerber Editor" msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:2396 flatcamGUI/ObjectUI.py:212 +#: flatcamEditors/FlatCAMGrbEditor.py:2396 flatcamGUI/ObjectUI.py:223 #: flatcamTools/ToolProperties.py:156 msgid "Apertures" msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:2398 flatcamGUI/ObjectUI.py:214 +#: flatcamEditors/FlatCAMGrbEditor.py:2398 flatcamGUI/ObjectUI.py:225 msgid "Apertures Table for the Gerber Object." msgstr "" #: flatcamEditors/FlatCAMGrbEditor.py:2409 flatcamEditors/FlatCAMGrbEditor.py:3755 -#: flatcamGUI/ObjectUI.py:247 +#: flatcamGUI/ObjectUI.py:258 msgid "Code" msgstr "" #: flatcamEditors/FlatCAMGrbEditor.py:2409 flatcamEditors/FlatCAMGrbEditor.py:3755 -#: flatcamGUI/ObjectUI.py:247 flatcamGUI/ObjectUI.py:1178 flatcamGUI/ObjectUI.py:1866 +#: flatcamGUI/ObjectUI.py:258 flatcamGUI/ObjectUI.py:1217 flatcamGUI/ObjectUI.py:1918 msgid "Type" msgstr "" #: flatcamEditors/FlatCAMGrbEditor.py:2409 flatcamEditors/FlatCAMGrbEditor.py:3755 -#: flatcamGUI/ObjectUI.py:247 flatcamGUI/PreferencesUI.py:6201 -#: flatcamGUI/PreferencesUI.py:6230 flatcamGUI/PreferencesUI.py:6332 +#: flatcamGUI/ObjectUI.py:258 flatcamGUI/PreferencesUI.py:6202 +#: flatcamGUI/PreferencesUI.py:6231 flatcamGUI/PreferencesUI.py:6333 #: flatcamTools/ToolCopperThieving.py:260 flatcamTools/ToolCopperThieving.py:300 #: flatcamTools/ToolFiducials.py:156 msgid "Size" msgstr "" #: flatcamEditors/FlatCAMGrbEditor.py:2409 flatcamEditors/FlatCAMGrbEditor.py:3755 -#: flatcamGUI/ObjectUI.py:247 +#: flatcamGUI/ObjectUI.py:258 msgid "Dim" msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:2413 flatcamGUI/ObjectUI.py:251 +#: flatcamEditors/FlatCAMGrbEditor.py:2413 flatcamGUI/ObjectUI.py:262 msgid "Index" msgstr "" #: flatcamEditors/FlatCAMGrbEditor.py:2415 flatcamEditors/FlatCAMGrbEditor.py:2444 -#: flatcamGUI/ObjectUI.py:253 +#: flatcamGUI/ObjectUI.py:264 msgid "Aperture Code" msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:2417 flatcamGUI/ObjectUI.py:255 +#: flatcamEditors/FlatCAMGrbEditor.py:2417 flatcamGUI/ObjectUI.py:266 msgid "Type of aperture: circular, rectangle, macros etc" msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:2419 flatcamGUI/ObjectUI.py:257 +#: flatcamEditors/FlatCAMGrbEditor.py:2419 flatcamGUI/ObjectUI.py:268 msgid "Aperture Size:" msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:2421 flatcamGUI/ObjectUI.py:259 +#: flatcamEditors/FlatCAMGrbEditor.py:2421 flatcamGUI/ObjectUI.py:270 msgid "" "Aperture Dimensions:\n" " - (width, height) for R, O type.\n" " - (dia, nVertices) for P type" msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:2445 flatcamGUI/PreferencesUI.py:1878 +#: flatcamEditors/FlatCAMGrbEditor.py:2445 flatcamGUI/PreferencesUI.py:1879 msgid "Code for the new aperture" msgstr "" @@ -4156,7 +4156,7 @@ msgstr "" msgid "Buffer a aperture in the aperture list" msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:2542 flatcamGUI/PreferencesUI.py:2012 +#: flatcamEditors/FlatCAMGrbEditor.py:2542 flatcamGUI/PreferencesUI.py:2013 msgid "Buffer distance" msgstr "" @@ -4173,9 +4173,9 @@ msgid "" "corner" msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:2560 flatcamGUI/FlatCAMGUI.py:842 -#: flatcamGUI/FlatCAMGUI.py:1868 flatcamGUI/FlatCAMGUI.py:1920 flatcamGUI/FlatCAMGUI.py:1947 -#: flatcamGUI/FlatCAMGUI.py:2283 +#: flatcamEditors/FlatCAMGrbEditor.py:2560 flatcamGUI/FlatCAMGUI.py:952 +#: flatcamGUI/FlatCAMGUI.py:1984 flatcamGUI/FlatCAMGUI.py:2056 flatcamGUI/FlatCAMGUI.py:2099 +#: flatcamGUI/FlatCAMGUI.py:2512 msgid "Buffer" msgstr "" @@ -4187,7 +4187,7 @@ msgstr "" msgid "Scale a aperture in the aperture list" msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:2585 flatcamGUI/PreferencesUI.py:2027 +#: flatcamEditors/FlatCAMGrbEditor.py:2585 flatcamGUI/PreferencesUI.py:2028 msgid "Scale factor" msgstr "" @@ -4245,8 +4245,8 @@ msgstr "" msgid "Clear all the markings." msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:2684 flatcamGUI/FlatCAMGUI.py:832 -#: flatcamGUI/FlatCAMGUI.py:1868 flatcamGUI/FlatCAMGUI.py:2273 +#: flatcamEditors/FlatCAMGrbEditor.py:2684 flatcamGUI/FlatCAMGUI.py:937 +#: flatcamGUI/FlatCAMGUI.py:1984 flatcamGUI/FlatCAMGUI.py:2497 msgid "Add Pad Array" msgstr "" @@ -4260,11 +4260,11 @@ msgid "" "It can be Linear X(Y) or Circular" msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:2703 flatcamGUI/PreferencesUI.py:1915 +#: flatcamEditors/FlatCAMGrbEditor.py:2703 flatcamGUI/PreferencesUI.py:1916 msgid "Nr of pads" msgstr "" -#: flatcamEditors/FlatCAMGrbEditor.py:2705 flatcamGUI/PreferencesUI.py:1917 +#: flatcamEditors/FlatCAMGrbEditor.py:2705 flatcamGUI/PreferencesUI.py:1918 msgid "Specify how many pads to be in the array." msgstr "" @@ -4446,9 +4446,9 @@ msgstr "" msgid "String to replace the one in the Find box throughout the text." msgstr "" -#: flatcamEditors/FlatCAMTextEditor.py:87 flatcamGUI/ObjectUI.py:471 -#: flatcamGUI/ObjectUI.py:1759 flatcamGUI/PreferencesUI.py:1494 -#: flatcamGUI/PreferencesUI.py:3641 flatcamGUI/PreferencesUI.py:4616 +#: flatcamEditors/FlatCAMTextEditor.py:87 flatcamGUI/ObjectUI.py:482 +#: flatcamGUI/ObjectUI.py:1811 flatcamGUI/PreferencesUI.py:1495 +#: flatcamGUI/PreferencesUI.py:3642 flatcamGUI/PreferencesUI.py:4617 msgid "All" msgstr "" @@ -4506,7 +4506,7 @@ msgstr "" msgid "Code Editor content copied to clipboard ..." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:52 flatcamGUI/FlatCAMGUI.py:54 flatcamGUI/FlatCAMGUI.py:1891 +#: flatcamGUI/FlatCAMGUI.py:52 flatcamGUI/FlatCAMGUI.py:54 flatcamGUI/FlatCAMGUI.py:2009 msgid "Toggle Panel" msgstr "" @@ -4526,217 +4526,217 @@ msgstr "" msgid "&New" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:79 +#: flatcamGUI/FlatCAMGUI.py:80 msgid "Geometry\tN" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:81 +#: flatcamGUI/FlatCAMGUI.py:82 msgid "Will create a new, empty Geometry Object." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:83 +#: flatcamGUI/FlatCAMGUI.py:84 msgid "Gerber\tB" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:85 +#: flatcamGUI/FlatCAMGUI.py:86 msgid "Will create a new, empty Gerber Object." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:87 +#: flatcamGUI/FlatCAMGUI.py:88 msgid "Excellon\tL" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:89 +#: flatcamGUI/FlatCAMGUI.py:90 msgid "Will create a new, empty Excellon Object." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:93 +#: flatcamGUI/FlatCAMGUI.py:94 msgid "Document\tD" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:95 +#: flatcamGUI/FlatCAMGUI.py:96 msgid "Will create a new, empty Document Object." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:98 flatcamGUI/FlatCAMGUI.py:3837 +#: flatcamGUI/FlatCAMGUI.py:99 flatcamGUI/FlatCAMGUI.py:4075 #: flatcamTools/ToolPcbWizard.py:62 flatcamTools/ToolPcbWizard.py:69 msgid "Open" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:102 +#: flatcamGUI/FlatCAMGUI.py:103 msgid "Open &Project ..." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:108 flatcamGUI/FlatCAMGUI.py:3846 +#: flatcamGUI/FlatCAMGUI.py:109 flatcamGUI/FlatCAMGUI.py:4085 msgid "Open &Gerber ...\tCTRL+G" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:113 flatcamGUI/FlatCAMGUI.py:3851 +#: flatcamGUI/FlatCAMGUI.py:114 flatcamGUI/FlatCAMGUI.py:4090 msgid "Open &Excellon ...\tCTRL+E" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:117 flatcamGUI/FlatCAMGUI.py:3855 +#: flatcamGUI/FlatCAMGUI.py:118 flatcamGUI/FlatCAMGUI.py:4095 msgid "Open G-&Code ..." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:123 +#: flatcamGUI/FlatCAMGUI.py:124 msgid "Open Config ..." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:127 +#: flatcamGUI/FlatCAMGUI.py:128 msgid "Recent projects" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:128 +#: flatcamGUI/FlatCAMGUI.py:129 msgid "Recent files" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:134 +#: flatcamGUI/FlatCAMGUI.py:135 msgid "Scripting" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:137 flatcamGUI/FlatCAMGUI.py:739 flatcamGUI/FlatCAMGUI.py:2186 +#: flatcamGUI/FlatCAMGUI.py:138 flatcamGUI/FlatCAMGUI.py:803 flatcamGUI/FlatCAMGUI.py:2374 msgid "New Script ..." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:138 flatcamGUI/FlatCAMGUI.py:740 flatcamGUI/FlatCAMGUI.py:2187 +#: flatcamGUI/FlatCAMGUI.py:139 flatcamGUI/FlatCAMGUI.py:805 flatcamGUI/FlatCAMGUI.py:2376 msgid "Open Script ..." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:140 flatcamGUI/FlatCAMGUI.py:741 flatcamGUI/FlatCAMGUI.py:2188 -#: flatcamGUI/FlatCAMGUI.py:3826 +#: flatcamGUI/FlatCAMGUI.py:141 flatcamGUI/FlatCAMGUI.py:807 flatcamGUI/FlatCAMGUI.py:2378 +#: flatcamGUI/FlatCAMGUI.py:4064 msgid "Run Script ..." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:142 flatcamGUI/FlatCAMGUI.py:3828 +#: flatcamGUI/FlatCAMGUI.py:143 flatcamGUI/FlatCAMGUI.py:4066 msgid "" "Will run the opened Tcl Script thus\n" "enabling the automation of certain\n" "functions of FlatCAM." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:155 +#: flatcamGUI/FlatCAMGUI.py:156 msgid "Import" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:157 +#: flatcamGUI/FlatCAMGUI.py:158 msgid "&SVG as Geometry Object ..." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:160 +#: flatcamGUI/FlatCAMGUI.py:161 msgid "&SVG as Gerber Object ..." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:165 +#: flatcamGUI/FlatCAMGUI.py:166 msgid "&DXF as Geometry Object ..." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:168 +#: flatcamGUI/FlatCAMGUI.py:169 msgid "&DXF as Gerber Object ..." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:172 +#: flatcamGUI/FlatCAMGUI.py:173 msgid "HPGL2 as Geometry Object ..." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:177 +#: flatcamGUI/FlatCAMGUI.py:178 msgid "Export" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:180 +#: flatcamGUI/FlatCAMGUI.py:181 msgid "Export &SVG ..." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:183 +#: flatcamGUI/FlatCAMGUI.py:184 msgid "Export DXF ..." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:188 +#: flatcamGUI/FlatCAMGUI.py:189 msgid "Export &PNG ..." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:190 +#: flatcamGUI/FlatCAMGUI.py:191 msgid "" "Will export an image in PNG format,\n" "the saved image will contain the visual \n" "information currently in FlatCAM Plot Area." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:199 +#: flatcamGUI/FlatCAMGUI.py:200 msgid "Export &Excellon ..." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:201 +#: flatcamGUI/FlatCAMGUI.py:202 msgid "" "Will export an Excellon Object as Excellon file,\n" "the coordinates format, the file units and zeros\n" "are set in Preferences -> Excellon Export." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:208 +#: flatcamGUI/FlatCAMGUI.py:209 msgid "Export &Gerber ..." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:210 +#: flatcamGUI/FlatCAMGUI.py:211 msgid "" "Will export an Gerber Object as Gerber file,\n" "the coordinates format, the file units and zeros\n" "are set in Preferences -> Gerber Export." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:226 +#: flatcamGUI/FlatCAMGUI.py:229 msgid "Backup" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:230 +#: flatcamGUI/FlatCAMGUI.py:233 msgid "Import Preferences from file ..." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:235 +#: flatcamGUI/FlatCAMGUI.py:238 msgid "Export Preferences to file ..." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:241 flatcamGUI/FlatCAMGUI.py:612 flatcamGUI/FlatCAMGUI.py:1109 +#: flatcamGUI/FlatCAMGUI.py:244 flatcamGUI/FlatCAMGUI.py:656 flatcamGUI/FlatCAMGUI.py:1225 msgid "Save" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:244 +#: flatcamGUI/FlatCAMGUI.py:248 msgid "&Save Project ..." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:249 +#: flatcamGUI/FlatCAMGUI.py:253 msgid "Save Project &As ...\tCTRL+S" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:254 +#: flatcamGUI/FlatCAMGUI.py:258 msgid "Save Project C&opy ..." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:268 +#: flatcamGUI/FlatCAMGUI.py:273 msgid "E&xit" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:276 flatcamGUI/FlatCAMGUI.py:609 flatcamGUI/FlatCAMGUI.py:1968 +#: flatcamGUI/FlatCAMGUI.py:281 flatcamGUI/FlatCAMGUI.py:650 flatcamGUI/FlatCAMGUI.py:2132 msgid "Edit" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:279 +#: flatcamGUI/FlatCAMGUI.py:285 msgid "Edit Object\tE" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:280 +#: flatcamGUI/FlatCAMGUI.py:287 msgid "Close Editor\tCTRL+S" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:288 +#: flatcamGUI/FlatCAMGUI.py:296 msgid "Conversion" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:290 +#: flatcamGUI/FlatCAMGUI.py:298 msgid "&Join Geo/Gerber/Exc -> Geo" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:292 +#: flatcamGUI/FlatCAMGUI.py:300 msgid "" "Merge a selection of objects, which can be of type:\n" "- Gerber\n" @@ -4745,777 +4745,777 @@ msgid "" "into a new combo Geometry object." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:299 +#: flatcamGUI/FlatCAMGUI.py:307 msgid "Join Excellon(s) -> Excellon" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:301 +#: flatcamGUI/FlatCAMGUI.py:309 msgid "Merge a selection of Excellon objects into a new combo Excellon object." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:304 +#: flatcamGUI/FlatCAMGUI.py:312 msgid "Join Gerber(s) -> Gerber" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:306 +#: flatcamGUI/FlatCAMGUI.py:314 msgid "Merge a selection of Gerber objects into a new combo Gerber object." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:311 +#: flatcamGUI/FlatCAMGUI.py:319 msgid "Convert Single to MultiGeo" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:313 +#: flatcamGUI/FlatCAMGUI.py:321 msgid "" "Will convert a Geometry object from single_geometry type\n" "to a multi_geometry type." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:317 +#: flatcamGUI/FlatCAMGUI.py:325 msgid "Convert Multi to SingleGeo" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:319 +#: flatcamGUI/FlatCAMGUI.py:327 msgid "" "Will convert a Geometry object from multi_geometry type\n" "to a single_geometry type." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:325 +#: flatcamGUI/FlatCAMGUI.py:334 msgid "Convert Any to Geo" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:327 +#: flatcamGUI/FlatCAMGUI.py:337 msgid "Convert Any to Gerber" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:332 +#: flatcamGUI/FlatCAMGUI.py:343 msgid "&Copy\tCTRL+C" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:336 +#: flatcamGUI/FlatCAMGUI.py:348 msgid "&Delete\tDEL" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:340 +#: flatcamGUI/FlatCAMGUI.py:353 msgid "Se&t Origin\tO" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:341 +#: flatcamGUI/FlatCAMGUI.py:355 msgid "Jump to Location\tJ" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:346 +#: flatcamGUI/FlatCAMGUI.py:360 msgid "Toggle Units\tQ" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:347 +#: flatcamGUI/FlatCAMGUI.py:362 msgid "&Select All\tCTRL+A" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:351 +#: flatcamGUI/FlatCAMGUI.py:367 msgid "&Preferences\tSHIFT+P" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:357 flatcamTools/ToolProperties.py:153 +#: flatcamGUI/FlatCAMGUI.py:373 flatcamTools/ToolProperties.py:153 msgid "Options" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:359 +#: flatcamGUI/FlatCAMGUI.py:375 msgid "&Rotate Selection\tSHIFT+(R)" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:364 +#: flatcamGUI/FlatCAMGUI.py:380 msgid "&Skew on X axis\tSHIFT+X" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:366 +#: flatcamGUI/FlatCAMGUI.py:382 msgid "S&kew on Y axis\tSHIFT+Y" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:371 +#: flatcamGUI/FlatCAMGUI.py:387 msgid "Flip on &X axis\tX" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:373 +#: flatcamGUI/FlatCAMGUI.py:389 msgid "Flip on &Y axis\tY" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:378 +#: flatcamGUI/FlatCAMGUI.py:394 msgid "View source\tALT+S" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:380 +#: flatcamGUI/FlatCAMGUI.py:396 msgid "Tools DataBase\tCTRL+D" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:387 flatcamGUI/FlatCAMGUI.py:1904 +#: flatcamGUI/FlatCAMGUI.py:403 flatcamGUI/FlatCAMGUI.py:2029 msgid "View" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:388 +#: flatcamGUI/FlatCAMGUI.py:405 msgid "Enable all plots\tALT+1" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:390 +#: flatcamGUI/FlatCAMGUI.py:407 msgid "Disable all plots\tALT+2" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:392 +#: flatcamGUI/FlatCAMGUI.py:409 msgid "Disable non-selected\tALT+3" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:395 +#: flatcamGUI/FlatCAMGUI.py:413 msgid "&Zoom Fit\tV" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:396 +#: flatcamGUI/FlatCAMGUI.py:415 msgid "&Zoom In\t=" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:397 +#: flatcamGUI/FlatCAMGUI.py:417 msgid "&Zoom Out\t-" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:401 +#: flatcamGUI/FlatCAMGUI.py:422 msgid "Redraw All\tF5" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:405 +#: flatcamGUI/FlatCAMGUI.py:426 msgid "Toggle Code Editor\tSHIFT+E" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:408 +#: flatcamGUI/FlatCAMGUI.py:429 msgid "&Toggle FullScreen\tALT+F10" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:410 +#: flatcamGUI/FlatCAMGUI.py:431 msgid "&Toggle Plot Area\tCTRL+F10" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:412 +#: flatcamGUI/FlatCAMGUI.py:433 msgid "&Toggle Project/Sel/Tool\t`" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:416 +#: flatcamGUI/FlatCAMGUI.py:437 msgid "&Toggle Grid Snap\tG" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:418 +#: flatcamGUI/FlatCAMGUI.py:439 msgid "&Toggle Grid Lines\tALT+G" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:419 +#: flatcamGUI/FlatCAMGUI.py:441 msgid "&Toggle Axis\tSHIFT+G" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:422 +#: flatcamGUI/FlatCAMGUI.py:443 msgid "Toggle Workspace\tSHIFT+W" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:427 +#: flatcamGUI/FlatCAMGUI.py:448 msgid "Objects" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:440 +#: flatcamGUI/FlatCAMGUI.py:462 msgid "&Command Line\tS" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:445 +#: flatcamGUI/FlatCAMGUI.py:467 msgid "Help" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:446 +#: flatcamGUI/FlatCAMGUI.py:469 msgid "Online Help\tF1" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:454 +#: flatcamGUI/FlatCAMGUI.py:479 msgid "Report a bug" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:457 +#: flatcamGUI/FlatCAMGUI.py:482 msgid "Excellon Specification" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:459 +#: flatcamGUI/FlatCAMGUI.py:484 msgid "Gerber Specification" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:464 +#: flatcamGUI/FlatCAMGUI.py:489 msgid "Shortcuts List\tF3" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:465 +#: flatcamGUI/FlatCAMGUI.py:491 msgid "YouTube Channel\tF4" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:476 +#: flatcamGUI/FlatCAMGUI.py:502 msgid "Add Circle\tO" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:478 +#: flatcamGUI/FlatCAMGUI.py:505 msgid "Add Arc\tA" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:481 +#: flatcamGUI/FlatCAMGUI.py:508 msgid "Add Rectangle\tR" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:484 +#: flatcamGUI/FlatCAMGUI.py:511 msgid "Add Polygon\tN" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:486 +#: flatcamGUI/FlatCAMGUI.py:514 msgid "Add Path\tP" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:488 +#: flatcamGUI/FlatCAMGUI.py:517 msgid "Add Text\tT" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:491 +#: flatcamGUI/FlatCAMGUI.py:520 msgid "Polygon Union\tU" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:493 +#: flatcamGUI/FlatCAMGUI.py:522 msgid "Polygon Intersection\tE" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:495 +#: flatcamGUI/FlatCAMGUI.py:524 msgid "Polygon Subtraction\tS" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:499 +#: flatcamGUI/FlatCAMGUI.py:528 msgid "Cut Path\tX" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:501 +#: flatcamGUI/FlatCAMGUI.py:531 msgid "Copy Geom\tC" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:503 +#: flatcamGUI/FlatCAMGUI.py:533 msgid "Delete Shape\tDEL" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:506 flatcamGUI/FlatCAMGUI.py:588 +#: flatcamGUI/FlatCAMGUI.py:537 flatcamGUI/FlatCAMGUI.py:624 msgid "Move\tM" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:508 +#: flatcamGUI/FlatCAMGUI.py:539 msgid "Buffer Tool\tB" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:511 +#: flatcamGUI/FlatCAMGUI.py:542 msgid "Paint Tool\tI" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:514 +#: flatcamGUI/FlatCAMGUI.py:545 msgid "Transform Tool\tALT+R" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:518 +#: flatcamGUI/FlatCAMGUI.py:549 msgid "Toggle Corner Snap\tK" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:524 +#: flatcamGUI/FlatCAMGUI.py:555 msgid ">Excellon Editor<" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:528 +#: flatcamGUI/FlatCAMGUI.py:559 msgid "Add Drill Array\tA" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:530 +#: flatcamGUI/FlatCAMGUI.py:561 msgid "Add Drill\tD" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:534 +#: flatcamGUI/FlatCAMGUI.py:565 msgid "Add Slot Array\tQ" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:536 +#: flatcamGUI/FlatCAMGUI.py:567 msgid "Add Slot\tW" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:540 +#: flatcamGUI/FlatCAMGUI.py:571 msgid "Resize Drill(S)\tR" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:542 flatcamGUI/FlatCAMGUI.py:583 +#: flatcamGUI/FlatCAMGUI.py:574 flatcamGUI/FlatCAMGUI.py:618 msgid "Copy\tC" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:544 flatcamGUI/FlatCAMGUI.py:585 +#: flatcamGUI/FlatCAMGUI.py:576 flatcamGUI/FlatCAMGUI.py:620 msgid "Delete\tDEL" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:549 +#: flatcamGUI/FlatCAMGUI.py:581 msgid "Move Drill(s)\tM" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:554 +#: flatcamGUI/FlatCAMGUI.py:586 msgid ">Gerber Editor<" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:558 +#: flatcamGUI/FlatCAMGUI.py:590 msgid "Add Pad\tP" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:560 +#: flatcamGUI/FlatCAMGUI.py:592 msgid "Add Pad Array\tA" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:562 +#: flatcamGUI/FlatCAMGUI.py:594 msgid "Add Track\tT" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:564 +#: flatcamGUI/FlatCAMGUI.py:596 msgid "Add Region\tN" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:568 +#: flatcamGUI/FlatCAMGUI.py:600 msgid "Poligonize\tALT+N" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:570 +#: flatcamGUI/FlatCAMGUI.py:602 msgid "Add SemiDisc\tE" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:571 +#: flatcamGUI/FlatCAMGUI.py:604 msgid "Add Disc\tD" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:573 +#: flatcamGUI/FlatCAMGUI.py:606 msgid "Buffer\tB" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:574 +#: flatcamGUI/FlatCAMGUI.py:608 msgid "Scale\tS" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:576 +#: flatcamGUI/FlatCAMGUI.py:610 msgid "Mark Area\tALT+A" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:578 +#: flatcamGUI/FlatCAMGUI.py:612 msgid "Eraser\tCTRL+E" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:580 +#: flatcamGUI/FlatCAMGUI.py:614 msgid "Transform\tALT+R" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:603 +#: flatcamGUI/FlatCAMGUI.py:640 msgid "Enable Plot" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:604 +#: flatcamGUI/FlatCAMGUI.py:642 msgid "Disable Plot" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:606 +#: flatcamGUI/FlatCAMGUI.py:645 msgid "Generate CNC" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:607 +#: flatcamGUI/FlatCAMGUI.py:647 msgid "View Source" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:615 flatcamGUI/FlatCAMGUI.py:1974 +#: flatcamGUI/FlatCAMGUI.py:660 flatcamGUI/FlatCAMGUI.py:2141 #: flatcamTools/ToolProperties.py:30 msgid "Properties" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:644 +#: flatcamGUI/FlatCAMGUI.py:689 msgid "File Toolbar" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:648 +#: flatcamGUI/FlatCAMGUI.py:693 msgid "Edit Toolbar" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:652 +#: flatcamGUI/FlatCAMGUI.py:697 msgid "View Toolbar" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:656 +#: flatcamGUI/FlatCAMGUI.py:701 msgid "Shell Toolbar" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:660 +#: flatcamGUI/FlatCAMGUI.py:705 msgid "Tools Toolbar" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:664 +#: flatcamGUI/FlatCAMGUI.py:709 msgid "Excellon Editor Toolbar" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:670 +#: flatcamGUI/FlatCAMGUI.py:715 msgid "Geometry Editor Toolbar" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:674 +#: flatcamGUI/FlatCAMGUI.py:719 msgid "Gerber Editor Toolbar" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:678 +#: flatcamGUI/FlatCAMGUI.py:723 msgid "Grid Toolbar" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:699 flatcamGUI/FlatCAMGUI.py:2152 +#: flatcamGUI/FlatCAMGUI.py:746 flatcamGUI/FlatCAMGUI.py:2322 msgid "Open project" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:700 flatcamGUI/FlatCAMGUI.py:2153 +#: flatcamGUI/FlatCAMGUI.py:748 flatcamGUI/FlatCAMGUI.py:2324 msgid "Save project" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:705 flatcamGUI/FlatCAMGUI.py:2156 +#: flatcamGUI/FlatCAMGUI.py:754 flatcamGUI/FlatCAMGUI.py:2328 msgid "New Blank Geometry" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:706 flatcamGUI/FlatCAMGUI.py:2157 +#: flatcamGUI/FlatCAMGUI.py:756 flatcamGUI/FlatCAMGUI.py:2330 msgid "New Blank Gerber" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:707 flatcamGUI/FlatCAMGUI.py:2158 +#: flatcamGUI/FlatCAMGUI.py:758 flatcamGUI/FlatCAMGUI.py:2332 msgid "New Blank Excellon" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:711 flatcamGUI/FlatCAMGUI.py:2162 +#: flatcamGUI/FlatCAMGUI.py:763 flatcamGUI/FlatCAMGUI.py:2338 msgid "Save Object and close the Editor" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:716 flatcamGUI/FlatCAMGUI.py:2167 +#: flatcamGUI/FlatCAMGUI.py:770 flatcamGUI/FlatCAMGUI.py:2345 msgid "&Delete" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:718 flatcamGUI/FlatCAMGUI.py:1466 flatcamGUI/FlatCAMGUI.py:1665 -#: flatcamGUI/FlatCAMGUI.py:2169 flatcamTools/ToolDistance.py:30 +#: flatcamGUI/FlatCAMGUI.py:773 flatcamGUI/FlatCAMGUI.py:1582 flatcamGUI/FlatCAMGUI.py:1781 +#: flatcamGUI/FlatCAMGUI.py:2348 flatcamTools/ToolDistance.py:30 #: flatcamTools/ToolDistance.py:160 msgid "Distance Tool" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:720 flatcamGUI/FlatCAMGUI.py:2171 +#: flatcamGUI/FlatCAMGUI.py:775 flatcamGUI/FlatCAMGUI.py:2350 msgid "Distance Min Tool" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:721 flatcamGUI/FlatCAMGUI.py:1459 flatcamGUI/FlatCAMGUI.py:2172 +#: flatcamGUI/FlatCAMGUI.py:777 flatcamGUI/FlatCAMGUI.py:1575 flatcamGUI/FlatCAMGUI.py:2352 msgid "Set Origin" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:722 flatcamGUI/FlatCAMGUI.py:2173 +#: flatcamGUI/FlatCAMGUI.py:779 flatcamGUI/FlatCAMGUI.py:2354 msgid "Jump to Location" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:727 flatcamGUI/FlatCAMGUI.py:2176 +#: flatcamGUI/FlatCAMGUI.py:785 flatcamGUI/FlatCAMGUI.py:2358 msgid "&Replot" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:728 flatcamGUI/FlatCAMGUI.py:2177 +#: flatcamGUI/FlatCAMGUI.py:787 flatcamGUI/FlatCAMGUI.py:2360 msgid "&Clear plot" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:729 flatcamGUI/FlatCAMGUI.py:1462 flatcamGUI/FlatCAMGUI.py:2178 +#: flatcamGUI/FlatCAMGUI.py:789 flatcamGUI/FlatCAMGUI.py:1578 flatcamGUI/FlatCAMGUI.py:2362 msgid "Zoom In" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:730 flatcamGUI/FlatCAMGUI.py:1462 flatcamGUI/FlatCAMGUI.py:2179 +#: flatcamGUI/FlatCAMGUI.py:791 flatcamGUI/FlatCAMGUI.py:1578 flatcamGUI/FlatCAMGUI.py:2364 msgid "Zoom Out" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:731 flatcamGUI/FlatCAMGUI.py:1461 flatcamGUI/FlatCAMGUI.py:1905 -#: flatcamGUI/FlatCAMGUI.py:2180 +#: flatcamGUI/FlatCAMGUI.py:793 flatcamGUI/FlatCAMGUI.py:1577 flatcamGUI/FlatCAMGUI.py:2031 +#: flatcamGUI/FlatCAMGUI.py:2366 msgid "Zoom Fit" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:738 flatcamGUI/FlatCAMGUI.py:2185 +#: flatcamGUI/FlatCAMGUI.py:801 flatcamGUI/FlatCAMGUI.py:2372 msgid "&Command Line" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:746 flatcamGUI/FlatCAMGUI.py:2191 +#: flatcamGUI/FlatCAMGUI.py:813 flatcamGUI/FlatCAMGUI.py:2382 msgid "2Sided Tool" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:747 flatcamGUI/ObjectUI.py:577 flatcamTools/ToolCutOut.py:434 +#: flatcamGUI/FlatCAMGUI.py:815 flatcamGUI/ObjectUI.py:588 flatcamTools/ToolCutOut.py:434 msgid "Cutout Tool" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:748 flatcamGUI/FlatCAMGUI.py:2193 flatcamGUI/ObjectUI.py:555 -#: flatcamGUI/ObjectUI.py:1712 flatcamTools/ToolNonCopperClear.py:637 +#: flatcamGUI/FlatCAMGUI.py:817 flatcamGUI/FlatCAMGUI.py:2386 flatcamGUI/ObjectUI.py:566 +#: flatcamGUI/ObjectUI.py:1751 flatcamTools/ToolNonCopperClear.py:638 msgid "NCC Tool" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:752 flatcamGUI/FlatCAMGUI.py:2197 +#: flatcamGUI/FlatCAMGUI.py:823 flatcamGUI/FlatCAMGUI.py:2392 msgid "Panel Tool" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:753 flatcamGUI/FlatCAMGUI.py:2198 flatcamTools/ToolFilm.py:578 +#: flatcamGUI/FlatCAMGUI.py:825 flatcamGUI/FlatCAMGUI.py:2394 flatcamTools/ToolFilm.py:578 msgid "Film Tool" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:754 flatcamGUI/FlatCAMGUI.py:2200 +#: flatcamGUI/FlatCAMGUI.py:827 flatcamGUI/FlatCAMGUI.py:2397 #: flatcamTools/ToolSolderPaste.py:547 msgid "SolderPaste Tool" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:755 flatcamGUI/FlatCAMGUI.py:2201 flatcamTools/ToolSub.py:35 +#: flatcamGUI/FlatCAMGUI.py:829 flatcamGUI/FlatCAMGUI.py:2399 flatcamTools/ToolSub.py:35 msgid "Subtract Tool" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:756 flatcamTools/ToolRulesCheck.py:607 +#: flatcamGUI/FlatCAMGUI.py:831 flatcamTools/ToolRulesCheck.py:607 msgid "Rules Tool" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:757 flatcamGUI/FlatCAMGUI.py:1477 flatcamTools/ToolOptimal.py:34 +#: flatcamGUI/FlatCAMGUI.py:833 flatcamGUI/FlatCAMGUI.py:1593 flatcamTools/ToolOptimal.py:34 #: flatcamTools/ToolOptimal.py:310 msgid "Optimal Tool" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:761 flatcamGUI/FlatCAMGUI.py:1475 flatcamGUI/FlatCAMGUI.py:2206 +#: flatcamGUI/FlatCAMGUI.py:838 flatcamGUI/FlatCAMGUI.py:1591 flatcamGUI/FlatCAMGUI.py:2404 msgid "Calculators Tool" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:763 flatcamGUI/FlatCAMGUI.py:1478 flatcamGUI/FlatCAMGUI.py:2208 +#: flatcamGUI/FlatCAMGUI.py:842 flatcamGUI/FlatCAMGUI.py:1594 flatcamGUI/FlatCAMGUI.py:2408 #: flatcamTools/ToolQRCode.py:43 flatcamTools/ToolQRCode.py:382 msgid "QRCode Tool" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:765 flatcamGUI/FlatCAMGUI.py:2210 +#: flatcamGUI/FlatCAMGUI.py:844 flatcamGUI/FlatCAMGUI.py:2410 #: flatcamTools/ToolCopperThieving.py:40 flatcamTools/ToolCopperThieving.py:566 msgid "Copper Thieving Tool" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:767 flatcamGUI/FlatCAMGUI.py:1475 flatcamGUI/FlatCAMGUI.py:2212 +#: flatcamGUI/FlatCAMGUI.py:847 flatcamGUI/FlatCAMGUI.py:1591 flatcamGUI/FlatCAMGUI.py:2413 #: flatcamTools/ToolFiducials.py:33 flatcamTools/ToolFiducials.py:393 msgid "Fiducials Tool" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:768 flatcamGUI/FlatCAMGUI.py:2213 +#: flatcamGUI/FlatCAMGUI.py:849 flatcamGUI/FlatCAMGUI.py:2415 #: flatcamTools/ToolCalibration.py:37 flatcamTools/ToolCalibration.py:762 msgid "Calibration Tool" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:773 flatcamGUI/FlatCAMGUI.py:792 flatcamGUI/FlatCAMGUI.py:830 -#: flatcamGUI/FlatCAMGUI.py:2216 flatcamGUI/FlatCAMGUI.py:2271 +#: flatcamGUI/FlatCAMGUI.py:855 flatcamGUI/FlatCAMGUI.py:881 flatcamGUI/FlatCAMGUI.py:933 +#: flatcamGUI/FlatCAMGUI.py:2419 flatcamGUI/FlatCAMGUI.py:2493 msgid "Select" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:774 flatcamGUI/FlatCAMGUI.py:2217 +#: flatcamGUI/FlatCAMGUI.py:857 flatcamGUI/FlatCAMGUI.py:2421 msgid "Add Drill Hole" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:776 flatcamGUI/FlatCAMGUI.py:2219 +#: flatcamGUI/FlatCAMGUI.py:859 flatcamGUI/FlatCAMGUI.py:2423 msgid "Add Drill Hole Array" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:777 flatcamGUI/FlatCAMGUI.py:1750 flatcamGUI/FlatCAMGUI.py:1960 -#: flatcamGUI/FlatCAMGUI.py:2221 +#: flatcamGUI/FlatCAMGUI.py:861 flatcamGUI/FlatCAMGUI.py:1866 flatcamGUI/FlatCAMGUI.py:2119 +#: flatcamGUI/FlatCAMGUI.py:2427 msgid "Add Slot" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:779 flatcamGUI/FlatCAMGUI.py:1749 flatcamGUI/FlatCAMGUI.py:1961 -#: flatcamGUI/FlatCAMGUI.py:2223 +#: flatcamGUI/FlatCAMGUI.py:863 flatcamGUI/FlatCAMGUI.py:1865 flatcamGUI/FlatCAMGUI.py:2121 +#: flatcamGUI/FlatCAMGUI.py:2429 msgid "Add Slot Array" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:780 flatcamGUI/FlatCAMGUI.py:1963 flatcamGUI/FlatCAMGUI.py:2220 +#: flatcamGUI/FlatCAMGUI.py:865 flatcamGUI/FlatCAMGUI.py:2124 flatcamGUI/FlatCAMGUI.py:2425 msgid "Resize Drill" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:783 flatcamGUI/FlatCAMGUI.py:2226 +#: flatcamGUI/FlatCAMGUI.py:869 flatcamGUI/FlatCAMGUI.py:2433 msgid "Copy Drill" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:784 flatcamGUI/FlatCAMGUI.py:2228 +#: flatcamGUI/FlatCAMGUI.py:871 flatcamGUI/FlatCAMGUI.py:2435 msgid "Delete Drill" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:787 flatcamGUI/FlatCAMGUI.py:2231 +#: flatcamGUI/FlatCAMGUI.py:875 flatcamGUI/FlatCAMGUI.py:2439 msgid "Move Drill" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:793 flatcamGUI/FlatCAMGUI.py:2235 +#: flatcamGUI/FlatCAMGUI.py:883 flatcamGUI/FlatCAMGUI.py:2445 msgid "Add Circle" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:794 flatcamGUI/FlatCAMGUI.py:2236 +#: flatcamGUI/FlatCAMGUI.py:885 flatcamGUI/FlatCAMGUI.py:2447 msgid "Add Arc" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:796 flatcamGUI/FlatCAMGUI.py:2238 +#: flatcamGUI/FlatCAMGUI.py:887 flatcamGUI/FlatCAMGUI.py:2449 msgid "Add Rectangle" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:799 flatcamGUI/FlatCAMGUI.py:2241 +#: flatcamGUI/FlatCAMGUI.py:891 flatcamGUI/FlatCAMGUI.py:2453 msgid "Add Path" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:800 flatcamGUI/FlatCAMGUI.py:2243 +#: flatcamGUI/FlatCAMGUI.py:893 flatcamGUI/FlatCAMGUI.py:2455 msgid "Add Polygon" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:802 flatcamGUI/FlatCAMGUI.py:2245 +#: flatcamGUI/FlatCAMGUI.py:896 flatcamGUI/FlatCAMGUI.py:2458 msgid "Add Text" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:803 flatcamGUI/FlatCAMGUI.py:2246 +#: flatcamGUI/FlatCAMGUI.py:898 flatcamGUI/FlatCAMGUI.py:2460 msgid "Add Buffer" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:804 flatcamGUI/FlatCAMGUI.py:2247 +#: flatcamGUI/FlatCAMGUI.py:900 flatcamGUI/FlatCAMGUI.py:2462 msgid "Paint Shape" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:805 flatcamGUI/FlatCAMGUI.py:847 flatcamGUI/FlatCAMGUI.py:1922 -#: flatcamGUI/FlatCAMGUI.py:1950 flatcamGUI/FlatCAMGUI.py:2248 flatcamGUI/FlatCAMGUI.py:2287 +#: flatcamGUI/FlatCAMGUI.py:902 flatcamGUI/FlatCAMGUI.py:959 flatcamGUI/FlatCAMGUI.py:2060 +#: flatcamGUI/FlatCAMGUI.py:2105 flatcamGUI/FlatCAMGUI.py:2464 flatcamGUI/FlatCAMGUI.py:2518 msgid "Eraser" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:808 flatcamGUI/FlatCAMGUI.py:2251 +#: flatcamGUI/FlatCAMGUI.py:906 flatcamGUI/FlatCAMGUI.py:2468 msgid "Polygon Union" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:809 flatcamGUI/FlatCAMGUI.py:2252 +#: flatcamGUI/FlatCAMGUI.py:908 flatcamGUI/FlatCAMGUI.py:2470 msgid "Polygon Explode" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:812 flatcamGUI/FlatCAMGUI.py:2255 +#: flatcamGUI/FlatCAMGUI.py:911 flatcamGUI/FlatCAMGUI.py:2473 msgid "Polygon Intersection" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:814 flatcamGUI/FlatCAMGUI.py:2257 +#: flatcamGUI/FlatCAMGUI.py:913 flatcamGUI/FlatCAMGUI.py:2475 msgid "Polygon Subtraction" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:817 flatcamGUI/FlatCAMGUI.py:2260 +#: flatcamGUI/FlatCAMGUI.py:917 flatcamGUI/FlatCAMGUI.py:2479 msgid "Cut Path" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:818 +#: flatcamGUI/FlatCAMGUI.py:919 msgid "Copy Shape(s)" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:821 +#: flatcamGUI/FlatCAMGUI.py:922 msgid "Delete Shape '-'" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:823 flatcamGUI/FlatCAMGUI.py:854 flatcamGUI/FlatCAMGUI.py:1929 -#: flatcamGUI/FlatCAMGUI.py:1954 flatcamGUI/FlatCAMGUI.py:2265 flatcamGUI/FlatCAMGUI.py:2294 +#: flatcamGUI/FlatCAMGUI.py:924 flatcamGUI/FlatCAMGUI.py:967 flatcamGUI/FlatCAMGUI.py:2072 +#: flatcamGUI/FlatCAMGUI.py:2109 flatcamGUI/FlatCAMGUI.py:2485 flatcamGUI/FlatCAMGUI.py:2526 msgid "Transformations" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:825 +#: flatcamGUI/FlatCAMGUI.py:927 msgid "Move Objects " msgstr "" -#: flatcamGUI/FlatCAMGUI.py:831 flatcamGUI/FlatCAMGUI.py:1869 flatcamGUI/FlatCAMGUI.py:2272 +#: flatcamGUI/FlatCAMGUI.py:935 flatcamGUI/FlatCAMGUI.py:1985 flatcamGUI/FlatCAMGUI.py:2495 msgid "Add Pad" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:833 flatcamGUI/FlatCAMGUI.py:1870 flatcamGUI/FlatCAMGUI.py:2274 +#: flatcamGUI/FlatCAMGUI.py:939 flatcamGUI/FlatCAMGUI.py:1986 flatcamGUI/FlatCAMGUI.py:2499 msgid "Add Track" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:834 flatcamGUI/FlatCAMGUI.py:1869 flatcamGUI/FlatCAMGUI.py:2275 +#: flatcamGUI/FlatCAMGUI.py:941 flatcamGUI/FlatCAMGUI.py:1985 flatcamGUI/FlatCAMGUI.py:2501 msgid "Add Region" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:836 flatcamGUI/FlatCAMGUI.py:1942 flatcamGUI/FlatCAMGUI.py:2277 +#: flatcamGUI/FlatCAMGUI.py:943 flatcamGUI/FlatCAMGUI.py:2091 flatcamGUI/FlatCAMGUI.py:2503 msgid "Poligonize" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:838 flatcamGUI/FlatCAMGUI.py:1943 flatcamGUI/FlatCAMGUI.py:2279 +#: flatcamGUI/FlatCAMGUI.py:946 flatcamGUI/FlatCAMGUI.py:2093 flatcamGUI/FlatCAMGUI.py:2506 msgid "SemiDisc" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:839 flatcamGUI/FlatCAMGUI.py:1944 flatcamGUI/FlatCAMGUI.py:2280 +#: flatcamGUI/FlatCAMGUI.py:948 flatcamGUI/FlatCAMGUI.py:2095 flatcamGUI/FlatCAMGUI.py:2508 msgid "Disc" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:845 flatcamGUI/FlatCAMGUI.py:1949 flatcamGUI/FlatCAMGUI.py:2286 +#: flatcamGUI/FlatCAMGUI.py:956 flatcamGUI/FlatCAMGUI.py:2103 flatcamGUI/FlatCAMGUI.py:2516 msgid "Mark Area" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:856 flatcamGUI/FlatCAMGUI.py:1869 flatcamGUI/FlatCAMGUI.py:1932 -#: flatcamGUI/FlatCAMGUI.py:1973 flatcamGUI/FlatCAMGUI.py:2296 flatcamTools/ToolMove.py:28 +#: flatcamGUI/FlatCAMGUI.py:970 flatcamGUI/FlatCAMGUI.py:1985 flatcamGUI/FlatCAMGUI.py:2076 +#: flatcamGUI/FlatCAMGUI.py:2139 flatcamGUI/FlatCAMGUI.py:2529 flatcamTools/ToolMove.py:28 msgid "Move" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:863 flatcamGUI/FlatCAMGUI.py:2302 +#: flatcamGUI/FlatCAMGUI.py:978 flatcamGUI/FlatCAMGUI.py:2536 msgid "Snap to grid" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:866 flatcamGUI/FlatCAMGUI.py:2305 +#: flatcamGUI/FlatCAMGUI.py:981 flatcamGUI/FlatCAMGUI.py:2539 msgid "Grid X snapping distance" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:871 flatcamGUI/FlatCAMGUI.py:2310 +#: flatcamGUI/FlatCAMGUI.py:986 flatcamGUI/FlatCAMGUI.py:2544 msgid "Grid Y snapping distance" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:877 flatcamGUI/FlatCAMGUI.py:2316 +#: flatcamGUI/FlatCAMGUI.py:992 flatcamGUI/FlatCAMGUI.py:2550 msgid "" "When active, value on Grid_X\n" "is copied to the Grid_Y value." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:883 flatcamGUI/FlatCAMGUI.py:2322 +#: flatcamGUI/FlatCAMGUI.py:999 flatcamGUI/FlatCAMGUI.py:2557 msgid "Snap to corner" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:887 flatcamGUI/FlatCAMGUI.py:2326 +#: flatcamGUI/FlatCAMGUI.py:1003 flatcamGUI/FlatCAMGUI.py:2561 #: flatcamGUI/PreferencesUI.py:348 msgid "Max. magnet distance" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:921 +#: flatcamGUI/FlatCAMGUI.py:1037 msgid "Selected" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:948 flatcamGUI/FlatCAMGUI.py:956 +#: flatcamGUI/FlatCAMGUI.py:1064 flatcamGUI/FlatCAMGUI.py:1072 msgid "Plot Area" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:983 +#: flatcamGUI/FlatCAMGUI.py:1099 msgid "General" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:998 flatcamTools/ToolCopperThieving.py:74 +#: flatcamGUI/FlatCAMGUI.py:1114 flatcamTools/ToolCopperThieving.py:74 #: flatcamTools/ToolDblSided.py:57 flatcamTools/ToolOptimal.py:71 #: flatcamTools/ToolQRCode.py:77 msgid "GERBER" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1008 flatcamTools/ToolDblSided.py:85 +#: flatcamGUI/FlatCAMGUI.py:1124 flatcamTools/ToolDblSided.py:85 msgid "EXCELLON" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1018 flatcamTools/ToolDblSided.py:113 +#: flatcamGUI/FlatCAMGUI.py:1134 flatcamTools/ToolDblSided.py:113 msgid "GEOMETRY" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1028 +#: flatcamGUI/FlatCAMGUI.py:1144 msgid "CNC-JOB" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1037 flatcamGUI/ObjectUI.py:544 flatcamGUI/ObjectUI.py:1687 +#: flatcamGUI/FlatCAMGUI.py:1153 flatcamGUI/ObjectUI.py:555 flatcamGUI/ObjectUI.py:1726 msgid "TOOLS" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1046 +#: flatcamGUI/FlatCAMGUI.py:1162 msgid "TOOLS 2" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1056 +#: flatcamGUI/FlatCAMGUI.py:1172 msgid "UTILITIES" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1073 +#: flatcamGUI/FlatCAMGUI.py:1189 msgid "Import Preferences" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1076 +#: flatcamGUI/FlatCAMGUI.py:1192 msgid "" "Import a full set of FlatCAM settings from a file\n" "previously saved on HDD.\n" @@ -5524,586 +5524,586 @@ msgid "" "on the first start. Do not delete that file." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1083 +#: flatcamGUI/FlatCAMGUI.py:1199 msgid "Export Preferences" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1086 +#: flatcamGUI/FlatCAMGUI.py:1202 msgid "" "Export a full set of FlatCAM settings in a file\n" "that is saved on HDD." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1091 +#: flatcamGUI/FlatCAMGUI.py:1207 msgid "Open Pref Folder" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1094 +#: flatcamGUI/FlatCAMGUI.py:1210 msgid "Open the folder where FlatCAM save the preferences files." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1102 +#: flatcamGUI/FlatCAMGUI.py:1218 msgid "Apply" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1105 +#: flatcamGUI/FlatCAMGUI.py:1221 msgid "Apply the current preferences without saving to a file." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1112 +#: flatcamGUI/FlatCAMGUI.py:1228 msgid "" "Save the current settings in the 'current_defaults' file\n" "which is the file storing the working default preferences." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1120 +#: flatcamGUI/FlatCAMGUI.py:1236 msgid "Will not save the changes and will close the preferences window." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1456 +#: flatcamGUI/FlatCAMGUI.py:1572 msgid "SHOW SHORTCUT LIST" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1456 +#: flatcamGUI/FlatCAMGUI.py:1572 msgid "Switch to Project Tab" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1456 +#: flatcamGUI/FlatCAMGUI.py:1572 msgid "Switch to Selected Tab" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1457 +#: flatcamGUI/FlatCAMGUI.py:1573 msgid "Switch to Tool Tab" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1458 +#: flatcamGUI/FlatCAMGUI.py:1574 msgid "New Gerber" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1458 +#: flatcamGUI/FlatCAMGUI.py:1574 msgid "Edit Object (if selected)" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1458 +#: flatcamGUI/FlatCAMGUI.py:1574 msgid "Jump to Coordinates" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1459 +#: flatcamGUI/FlatCAMGUI.py:1575 msgid "New Excellon" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1459 +#: flatcamGUI/FlatCAMGUI.py:1575 msgid "Move Obj" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1459 +#: flatcamGUI/FlatCAMGUI.py:1575 msgid "New Geometry" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1459 +#: flatcamGUI/FlatCAMGUI.py:1575 msgid "Change Units" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1460 +#: flatcamGUI/FlatCAMGUI.py:1576 msgid "Open Properties Tool" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1460 +#: flatcamGUI/FlatCAMGUI.py:1576 msgid "Rotate by 90 degree CW" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1460 +#: flatcamGUI/FlatCAMGUI.py:1576 msgid "Shell Toggle" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1461 +#: flatcamGUI/FlatCAMGUI.py:1577 msgid "Add a Tool (when in Geometry Selected Tab or in Tools NCC or Tools Paint)" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1462 +#: flatcamGUI/FlatCAMGUI.py:1578 msgid "Flip on X_axis" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1462 +#: flatcamGUI/FlatCAMGUI.py:1578 msgid "Flip on Y_axis" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1465 +#: flatcamGUI/FlatCAMGUI.py:1581 msgid "Copy Obj" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1465 +#: flatcamGUI/FlatCAMGUI.py:1581 msgid "Open Tools Database" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1466 +#: flatcamGUI/FlatCAMGUI.py:1582 msgid "Open Excellon File" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1466 +#: flatcamGUI/FlatCAMGUI.py:1582 msgid "Open Gerber File" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1466 +#: flatcamGUI/FlatCAMGUI.py:1582 msgid "New Project" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1467 flatcamTools/ToolPDF.py:42 +#: flatcamGUI/FlatCAMGUI.py:1583 flatcamTools/ToolPDF.py:42 msgid "PDF Import Tool" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1467 +#: flatcamGUI/FlatCAMGUI.py:1583 msgid "Save Project As" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1467 +#: flatcamGUI/FlatCAMGUI.py:1583 msgid "Toggle Plot Area" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1470 +#: flatcamGUI/FlatCAMGUI.py:1586 msgid "Copy Obj_Name" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1471 +#: flatcamGUI/FlatCAMGUI.py:1587 msgid "Toggle Code Editor" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1471 +#: flatcamGUI/FlatCAMGUI.py:1587 msgid "Toggle the axis" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1471 flatcamGUI/FlatCAMGUI.py:1663 flatcamGUI/FlatCAMGUI.py:1750 -#: flatcamGUI/FlatCAMGUI.py:1872 +#: flatcamGUI/FlatCAMGUI.py:1587 flatcamGUI/FlatCAMGUI.py:1779 flatcamGUI/FlatCAMGUI.py:1866 +#: flatcamGUI/FlatCAMGUI.py:1988 msgid "Distance Minimum Tool" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1471 +#: flatcamGUI/FlatCAMGUI.py:1587 msgid "Open Preferences Window" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1472 +#: flatcamGUI/FlatCAMGUI.py:1588 msgid "Rotate by 90 degree CCW" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1472 +#: flatcamGUI/FlatCAMGUI.py:1588 msgid "Run a Script" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1472 +#: flatcamGUI/FlatCAMGUI.py:1588 msgid "Toggle the workspace" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1472 +#: flatcamGUI/FlatCAMGUI.py:1588 msgid "Skew on X axis" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1473 +#: flatcamGUI/FlatCAMGUI.py:1589 msgid "Skew on Y axis" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1475 +#: flatcamGUI/FlatCAMGUI.py:1591 msgid "2-Sided PCB Tool" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1475 +#: flatcamGUI/FlatCAMGUI.py:1591 msgid "Transformations Tool" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1476 +#: flatcamGUI/FlatCAMGUI.py:1592 msgid "Solder Paste Dispensing Tool" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1477 +#: flatcamGUI/FlatCAMGUI.py:1593 msgid "Film PCB Tool" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1477 +#: flatcamGUI/FlatCAMGUI.py:1593 msgid "Non-Copper Clearing Tool" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1478 +#: flatcamGUI/FlatCAMGUI.py:1594 msgid "Paint Area Tool" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1478 +#: flatcamGUI/FlatCAMGUI.py:1594 msgid "Rules Check Tool" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1479 +#: flatcamGUI/FlatCAMGUI.py:1595 msgid "View File Source" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1480 +#: flatcamGUI/FlatCAMGUI.py:1596 msgid "Cutout PCB Tool" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1480 +#: flatcamGUI/FlatCAMGUI.py:1596 msgid "Enable all Plots" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1480 +#: flatcamGUI/FlatCAMGUI.py:1596 msgid "Disable all Plots" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1480 +#: flatcamGUI/FlatCAMGUI.py:1596 msgid "Disable Non-selected Plots" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1481 +#: flatcamGUI/FlatCAMGUI.py:1597 msgid "Toggle Full Screen" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1484 +#: flatcamGUI/FlatCAMGUI.py:1600 msgid "Abort current task (gracefully)" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1487 +#: flatcamGUI/FlatCAMGUI.py:1603 msgid "Open Online Manual" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1488 +#: flatcamGUI/FlatCAMGUI.py:1604 msgid "Open Online Tutorials" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1488 +#: flatcamGUI/FlatCAMGUI.py:1604 msgid "Refresh Plots" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1488 flatcamTools/ToolSolderPaste.py:503 +#: flatcamGUI/FlatCAMGUI.py:1604 flatcamTools/ToolSolderPaste.py:503 msgid "Delete Object" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1488 +#: flatcamGUI/FlatCAMGUI.py:1604 msgid "Alternate: Delete Tool" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1489 +#: flatcamGUI/FlatCAMGUI.py:1605 msgid "(left to Key_1)Toogle Notebook Area (Left Side)" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1489 +#: flatcamGUI/FlatCAMGUI.py:1605 msgid "En(Dis)able Obj Plot" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1490 +#: flatcamGUI/FlatCAMGUI.py:1606 msgid "Deselects all objects" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1504 +#: flatcamGUI/FlatCAMGUI.py:1620 msgid "Editor Shortcut list" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1658 +#: flatcamGUI/FlatCAMGUI.py:1774 msgid "GEOMETRY EDITOR" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1658 +#: flatcamGUI/FlatCAMGUI.py:1774 msgid "Draw an Arc" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1658 +#: flatcamGUI/FlatCAMGUI.py:1774 msgid "Copy Geo Item" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1659 +#: flatcamGUI/FlatCAMGUI.py:1775 msgid "Within Add Arc will toogle the ARC direction: CW or CCW" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1659 +#: flatcamGUI/FlatCAMGUI.py:1775 msgid "Polygon Intersection Tool" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1660 +#: flatcamGUI/FlatCAMGUI.py:1776 msgid "Geo Paint Tool" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1660 flatcamGUI/FlatCAMGUI.py:1749 flatcamGUI/FlatCAMGUI.py:1869 +#: flatcamGUI/FlatCAMGUI.py:1776 flatcamGUI/FlatCAMGUI.py:1865 flatcamGUI/FlatCAMGUI.py:1985 msgid "Jump to Location (x, y)" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1660 +#: flatcamGUI/FlatCAMGUI.py:1776 msgid "Toggle Corner Snap" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1660 +#: flatcamGUI/FlatCAMGUI.py:1776 msgid "Move Geo Item" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1661 +#: flatcamGUI/FlatCAMGUI.py:1777 msgid "Within Add Arc will cycle through the ARC modes" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1661 +#: flatcamGUI/FlatCAMGUI.py:1777 msgid "Draw a Polygon" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1661 +#: flatcamGUI/FlatCAMGUI.py:1777 msgid "Draw a Circle" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1662 +#: flatcamGUI/FlatCAMGUI.py:1778 msgid "Draw a Path" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1662 +#: flatcamGUI/FlatCAMGUI.py:1778 msgid "Draw Rectangle" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1662 +#: flatcamGUI/FlatCAMGUI.py:1778 msgid "Polygon Subtraction Tool" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1662 +#: flatcamGUI/FlatCAMGUI.py:1778 msgid "Add Text Tool" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1663 +#: flatcamGUI/FlatCAMGUI.py:1779 msgid "Polygon Union Tool" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1663 +#: flatcamGUI/FlatCAMGUI.py:1779 msgid "Flip shape on X axis" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1663 +#: flatcamGUI/FlatCAMGUI.py:1779 msgid "Flip shape on Y axis" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1664 +#: flatcamGUI/FlatCAMGUI.py:1780 msgid "Skew shape on X axis" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1664 +#: flatcamGUI/FlatCAMGUI.py:1780 msgid "Skew shape on Y axis" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1664 +#: flatcamGUI/FlatCAMGUI.py:1780 msgid "Editor Transformation Tool" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1665 +#: flatcamGUI/FlatCAMGUI.py:1781 msgid "Offset shape on X axis" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1665 +#: flatcamGUI/FlatCAMGUI.py:1781 msgid "Offset shape on Y axis" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1666 flatcamGUI/FlatCAMGUI.py:1752 flatcamGUI/FlatCAMGUI.py:1874 +#: flatcamGUI/FlatCAMGUI.py:1782 flatcamGUI/FlatCAMGUI.py:1868 flatcamGUI/FlatCAMGUI.py:1990 msgid "Save Object and Exit Editor" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1666 +#: flatcamGUI/FlatCAMGUI.py:1782 msgid "Polygon Cut Tool" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1667 +#: flatcamGUI/FlatCAMGUI.py:1783 msgid "Rotate Geometry" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1667 +#: flatcamGUI/FlatCAMGUI.py:1783 msgid "Finish drawing for certain tools" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1667 flatcamGUI/FlatCAMGUI.py:1752 flatcamGUI/FlatCAMGUI.py:1872 +#: flatcamGUI/FlatCAMGUI.py:1783 flatcamGUI/FlatCAMGUI.py:1868 flatcamGUI/FlatCAMGUI.py:1988 msgid "Abort and return to Select" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1668 flatcamGUI/FlatCAMGUI.py:2263 +#: flatcamGUI/FlatCAMGUI.py:1784 flatcamGUI/FlatCAMGUI.py:2483 msgid "Delete Shape" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1748 +#: flatcamGUI/FlatCAMGUI.py:1864 msgid "EXCELLON EDITOR" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1748 +#: flatcamGUI/FlatCAMGUI.py:1864 msgid "Copy Drill(s)" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1748 flatcamGUI/FlatCAMGUI.py:1957 +#: flatcamGUI/FlatCAMGUI.py:1864 flatcamGUI/FlatCAMGUI.py:2114 msgid "Add Drill" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1749 +#: flatcamGUI/FlatCAMGUI.py:1865 msgid "Move Drill(s)" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1750 +#: flatcamGUI/FlatCAMGUI.py:1866 msgid "Add a new Tool" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1751 +#: flatcamGUI/FlatCAMGUI.py:1867 msgid "Delete Drill(s)" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1751 +#: flatcamGUI/FlatCAMGUI.py:1867 msgid "Alternate: Delete Tool(s)" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1868 +#: flatcamGUI/FlatCAMGUI.py:1984 msgid "GERBER EDITOR" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1868 +#: flatcamGUI/FlatCAMGUI.py:1984 msgid "Add Disc" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1868 +#: flatcamGUI/FlatCAMGUI.py:1984 msgid "Add SemiDisc" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1870 +#: flatcamGUI/FlatCAMGUI.py:1986 msgid "Within Track & Region Tools will cycle in REVERSE the bend modes" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1871 +#: flatcamGUI/FlatCAMGUI.py:1987 msgid "Within Track & Region Tools will cycle FORWARD the bend modes" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1872 +#: flatcamGUI/FlatCAMGUI.py:1988 msgid "Alternate: Delete Apertures" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1873 +#: flatcamGUI/FlatCAMGUI.py:1989 msgid "Eraser Tool" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1874 flatcamGUI/PreferencesUI.py:2038 +#: flatcamGUI/FlatCAMGUI.py:1990 flatcamGUI/PreferencesUI.py:2039 msgid "Mark Area Tool" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1874 +#: flatcamGUI/FlatCAMGUI.py:1990 msgid "Poligonize Tool" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1874 +#: flatcamGUI/FlatCAMGUI.py:1990 msgid "Transformation Tool" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1890 +#: flatcamGUI/FlatCAMGUI.py:2007 msgid "Toggle Visibility" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1894 +#: flatcamGUI/FlatCAMGUI.py:2013 msgid "New" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1895 flatcamTools/ToolCalibration.py:634 +#: flatcamGUI/FlatCAMGUI.py:2015 flatcamTools/ToolCalibration.py:634 msgid "Geometry" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1897 flatcamTools/ToolCalibration.py:197 +#: flatcamGUI/FlatCAMGUI.py:2019 flatcamTools/ToolCalibration.py:197 #: flatcamTools/ToolCalibration.py:634 flatcamTools/ToolFilm.py:359 msgid "Excellon" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1902 +#: flatcamGUI/FlatCAMGUI.py:2026 msgid "Grids" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1906 +#: flatcamGUI/FlatCAMGUI.py:2033 msgid "Clear Plot" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1907 +#: flatcamGUI/FlatCAMGUI.py:2035 msgid "Replot" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1910 +#: flatcamGUI/FlatCAMGUI.py:2039 msgid "Geo Editor" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1911 +#: flatcamGUI/FlatCAMGUI.py:2041 msgid "Path" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1912 +#: flatcamGUI/FlatCAMGUI.py:2043 msgid "Rectangle" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1914 +#: flatcamGUI/FlatCAMGUI.py:2046 msgid "Circle" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1915 +#: flatcamGUI/FlatCAMGUI.py:2048 msgid "Polygon" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1916 +#: flatcamGUI/FlatCAMGUI.py:2050 msgid "Arc" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1925 +#: flatcamGUI/FlatCAMGUI.py:2064 msgid "Union" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1926 +#: flatcamGUI/FlatCAMGUI.py:2066 msgid "Intersection" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1927 +#: flatcamGUI/FlatCAMGUI.py:2068 msgid "Subtraction" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1928 flatcamGUI/ObjectUI.py:1761 -#: flatcamGUI/PreferencesUI.py:3643 +#: flatcamGUI/FlatCAMGUI.py:2070 flatcamGUI/ObjectUI.py:1813 +#: flatcamGUI/PreferencesUI.py:3644 msgid "Cut" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1935 +#: flatcamGUI/FlatCAMGUI.py:2081 msgid "Pad" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1936 +#: flatcamGUI/FlatCAMGUI.py:2083 msgid "Pad Array" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1939 +#: flatcamGUI/FlatCAMGUI.py:2087 msgid "Track" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1940 +#: flatcamGUI/FlatCAMGUI.py:2089 msgid "Region" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1956 +#: flatcamGUI/FlatCAMGUI.py:2112 msgid "Exc Editor" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1986 +#: flatcamGUI/FlatCAMGUI.py:2153 msgid "" "Relative neasurement.\n" "Reference is last click position" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:1992 +#: flatcamGUI/FlatCAMGUI.py:2159 msgid "" "Absolute neasurement.\n" "Reference is (X=0, Y= 0) position" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:2099 +#: flatcamGUI/FlatCAMGUI.py:2266 msgid "Lock Toolbars" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:2192 +#: flatcamGUI/FlatCAMGUI.py:2384 msgid "&Cutout Tool" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:2234 +#: flatcamGUI/FlatCAMGUI.py:2443 msgid "Select 'Esc'" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:2261 +#: flatcamGUI/FlatCAMGUI.py:2481 msgid "Copy Objects" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:2268 +#: flatcamGUI/FlatCAMGUI.py:2489 msgid "Move Objects" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:2813 +#: flatcamGUI/FlatCAMGUI.py:3048 msgid "" "Please first select a geometry item to be cutted\n" "then select the geometry item that will be cutted\n" @@ -6111,75 +6111,75 @@ msgid "" "the toolbar button." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:2820 flatcamGUI/FlatCAMGUI.py:2964 flatcamGUI/FlatCAMGUI.py:3023 -#: flatcamGUI/FlatCAMGUI.py:3043 +#: flatcamGUI/FlatCAMGUI.py:3055 flatcamGUI/FlatCAMGUI.py:3199 flatcamGUI/FlatCAMGUI.py:3258 +#: flatcamGUI/FlatCAMGUI.py:3278 msgid "Warning" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:2959 +#: flatcamGUI/FlatCAMGUI.py:3194 msgid "" "Please select geometry items \n" "on which to perform Intersection Tool." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3018 +#: flatcamGUI/FlatCAMGUI.py:3253 msgid "" "Please select geometry items \n" "on which to perform Substraction Tool." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3038 +#: flatcamGUI/FlatCAMGUI.py:3273 msgid "" "Please select geometry items \n" "on which to perform union." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3122 flatcamGUI/FlatCAMGUI.py:3340 +#: flatcamGUI/FlatCAMGUI.py:3357 flatcamGUI/FlatCAMGUI.py:3575 msgid "Cancelled. Nothing selected to delete." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3207 flatcamGUI/FlatCAMGUI.py:3408 +#: flatcamGUI/FlatCAMGUI.py:3442 flatcamGUI/FlatCAMGUI.py:3643 msgid "Cancelled. Nothing selected to copy." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3254 flatcamGUI/FlatCAMGUI.py:3455 +#: flatcamGUI/FlatCAMGUI.py:3489 flatcamGUI/FlatCAMGUI.py:3690 msgid "Cancelled. Nothing selected to move." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3481 +#: flatcamGUI/FlatCAMGUI.py:3716 msgid "New Tool ..." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3482 flatcamTools/ToolNonCopperClear.py:588 -#: flatcamTools/ToolPaint.py:499 flatcamTools/ToolSolderPaste.py:554 +#: flatcamGUI/FlatCAMGUI.py:3717 flatcamTools/ToolNonCopperClear.py:589 +#: flatcamTools/ToolPaint.py:500 flatcamTools/ToolSolderPaste.py:554 msgid "Enter a Tool Diameter" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3494 +#: flatcamGUI/FlatCAMGUI.py:3729 msgid "Adding Tool cancelled ..." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3537 +#: flatcamGUI/FlatCAMGUI.py:3772 msgid "Distance Tool exit..." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3747 flatcamGUI/FlatCAMGUI.py:3754 +#: flatcamGUI/FlatCAMGUI.py:3982 flatcamGUI/FlatCAMGUI.py:3989 msgid "Idle." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3783 +#: flatcamGUI/FlatCAMGUI.py:4020 msgid "Application started ..." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3784 +#: flatcamGUI/FlatCAMGUI.py:4021 msgid "Hello!" msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3840 +#: flatcamGUI/FlatCAMGUI.py:4079 msgid "Open Project ..." msgstr "" -#: flatcamGUI/FlatCAMGUI.py:3865 +#: flatcamGUI/FlatCAMGUI.py:4105 msgid "Exit" msgstr "" @@ -6187,7 +6187,7 @@ msgstr "" msgid "FlatCAM Object" msgstr "" -#: flatcamGUI/ObjectUI.py:66 +#: flatcamGUI/ObjectUI.py:77 msgid "" "BASIC is suitable for a beginner. Many parameters\n" "are hidden from the user in this mode.\n" @@ -6198,123 +6198,123 @@ msgid "" "'APP. LEVEL' radio button." msgstr "" -#: flatcamGUI/ObjectUI.py:94 +#: flatcamGUI/ObjectUI.py:105 msgid "Change the size of the object." msgstr "" -#: flatcamGUI/ObjectUI.py:100 +#: flatcamGUI/ObjectUI.py:111 msgid "Factor" msgstr "" -#: flatcamGUI/ObjectUI.py:102 +#: flatcamGUI/ObjectUI.py:113 msgid "" "Factor by which to multiply\n" "geometric features of this object.\n" "Expressions are allowed. E.g: 1/25.4" msgstr "" -#: flatcamGUI/ObjectUI.py:112 +#: flatcamGUI/ObjectUI.py:123 msgid "Perform scaling operation." msgstr "" -#: flatcamGUI/ObjectUI.py:123 +#: flatcamGUI/ObjectUI.py:134 msgid "Change the position of this object." msgstr "" -#: flatcamGUI/ObjectUI.py:128 +#: flatcamGUI/ObjectUI.py:139 msgid "Vector" msgstr "" -#: flatcamGUI/ObjectUI.py:130 +#: flatcamGUI/ObjectUI.py:141 msgid "" "Amount by which to move the object\n" "in the x and y axes in (x, y) format.\n" "Expressions are allowed. E.g: (1/3.2, 0.5*3)" msgstr "" -#: flatcamGUI/ObjectUI.py:139 +#: flatcamGUI/ObjectUI.py:150 msgid "Perform the offset operation." msgstr "" -#: flatcamGUI/ObjectUI.py:156 +#: flatcamGUI/ObjectUI.py:167 msgid "Gerber Object" msgstr "" -#: 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 +#: flatcamGUI/ObjectUI.py:182 flatcamGUI/ObjectUI.py:767 flatcamGUI/ObjectUI.py:1205 +#: flatcamGUI/ObjectUI.py:1907 flatcamGUI/PreferencesUI.py:1361 +#: flatcamGUI/PreferencesUI.py:3119 flatcamGUI/PreferencesUI.py:3629 msgid "Plot (show) this object." msgstr "" -#: flatcamGUI/ObjectUI.py:173 flatcamGUI/ObjectUI.py:741 flatcamGUI/PreferencesUI.py:1358 -#: flatcamGUI/PreferencesUI.py:2084 flatcamGUI/PreferencesUI.py:3116 +#: flatcamGUI/ObjectUI.py:184 flatcamGUI/ObjectUI.py:765 flatcamGUI/PreferencesUI.py:1359 +#: flatcamGUI/PreferencesUI.py:2085 flatcamGUI/PreferencesUI.py:3117 msgid "Plot" msgstr "" -#: 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 +#: flatcamGUI/ObjectUI.py:189 flatcamGUI/ObjectUI.py:726 flatcamGUI/ObjectUI.py:1159 +#: flatcamGUI/ObjectUI.py:1797 flatcamGUI/PreferencesUI.py:1338 +#: flatcamGUI/PreferencesUI.py:2079 flatcamGUI/PreferencesUI.py:3113 +#: flatcamGUI/PreferencesUI.py:3618 msgid "Plot Options" msgstr "" -#: flatcamGUI/ObjectUI.py:184 flatcamGUI/ObjectUI.py:703 flatcamGUI/PreferencesUI.py:1344 -#: flatcamGUI/PreferencesUI.py:2090 flatcamGUI/PreferencesUI.py:6153 +#: flatcamGUI/ObjectUI.py:195 flatcamGUI/ObjectUI.py:727 flatcamGUI/PreferencesUI.py:1345 +#: flatcamGUI/PreferencesUI.py:2091 flatcamGUI/PreferencesUI.py:6154 #: flatcamTools/ToolCopperThieving.py:190 msgid "Solid" msgstr "" -#: flatcamGUI/ObjectUI.py:186 flatcamGUI/PreferencesUI.py:1346 +#: flatcamGUI/ObjectUI.py:197 flatcamGUI/PreferencesUI.py:1347 msgid "Solid color polygons." msgstr "" -#: flatcamGUI/ObjectUI.py:192 +#: flatcamGUI/ObjectUI.py:203 msgid "Multi-Color" msgstr "" -#: flatcamGUI/ObjectUI.py:194 flatcamGUI/PreferencesUI.py:1353 +#: flatcamGUI/ObjectUI.py:205 flatcamGUI/PreferencesUI.py:1354 msgid "Draw polygons in different colors." msgstr "" -#: flatcamGUI/ObjectUI.py:202 flatcamGUI/ObjectUI.py:714 flatcamGUI/ObjectUI.py:1126 -#: flatcamGUI/ObjectUI.py:1775 flatcamGUI/ObjectUI.py:2067 flatcamGUI/ObjectUI.py:2122 +#: flatcamGUI/ObjectUI.py:213 flatcamGUI/ObjectUI.py:738 flatcamGUI/ObjectUI.py:1165 +#: flatcamGUI/ObjectUI.py:1827 flatcamGUI/ObjectUI.py:2130 flatcamGUI/ObjectUI.py:2196 #: flatcamTools/ToolCalibration.py:235 flatcamTools/ToolFiducials.py:73 msgid "Name" msgstr "" -#: flatcamGUI/ObjectUI.py:223 +#: flatcamGUI/ObjectUI.py:234 msgid "" "Toggle the display of the Gerber Apertures Table.\n" "When unchecked, it will delete all mark shapes\n" "that are drawn on canvas." msgstr "" -#: flatcamGUI/ObjectUI.py:233 +#: flatcamGUI/ObjectUI.py:244 msgid "Mark All" msgstr "" -#: flatcamGUI/ObjectUI.py:235 +#: flatcamGUI/ObjectUI.py:246 msgid "" "When checked it will display all the apertures.\n" "When unchecked, it will delete all mark shapes\n" "that are drawn on canvas." msgstr "" -#: flatcamGUI/ObjectUI.py:263 +#: flatcamGUI/ObjectUI.py:274 msgid "Mark the aperture instances on canvas." msgstr "" -#: flatcamGUI/ObjectUI.py:275 flatcamGUI/PreferencesUI.py:1438 +#: flatcamGUI/ObjectUI.py:286 flatcamGUI/PreferencesUI.py:1439 msgid "Isolation Routing" msgstr "" -#: flatcamGUI/ObjectUI.py:277 flatcamGUI/PreferencesUI.py:1440 +#: flatcamGUI/ObjectUI.py:288 flatcamGUI/PreferencesUI.py:1441 msgid "" "Create a Geometry object with\n" "toolpaths to cut outside polygons." msgstr "" -#: flatcamGUI/ObjectUI.py:295 flatcamGUI/PreferencesUI.py:1628 +#: flatcamGUI/ObjectUI.py:306 flatcamGUI/PreferencesUI.py:1629 msgid "" "Choose what tool to use for Gerber isolation:\n" "'Circular' or 'V-shape'.\n" @@ -6322,41 +6322,41 @@ msgid "" "diameter will depend on the chosen cut depth." msgstr "" -#: flatcamGUI/ObjectUI.py:301 +#: flatcamGUI/ObjectUI.py:312 msgid "V-Shape" msgstr "" -#: flatcamGUI/ObjectUI.py:307 flatcamGUI/ObjectUI.py:1335 flatcamGUI/PreferencesUI.py:1640 -#: flatcamGUI/PreferencesUI.py:4010 flatcamTools/ToolNonCopperClear.py:231 +#: flatcamGUI/ObjectUI.py:318 flatcamGUI/ObjectUI.py:1374 flatcamGUI/PreferencesUI.py:1641 +#: flatcamGUI/PreferencesUI.py:4011 flatcamTools/ToolNonCopperClear.py:231 msgid "V-Tip Dia" msgstr "" -#: flatcamGUI/ObjectUI.py:309 flatcamGUI/ObjectUI.py:1338 flatcamGUI/PreferencesUI.py:1642 -#: flatcamGUI/PreferencesUI.py:4012 flatcamTools/ToolNonCopperClear.py:233 +#: flatcamGUI/ObjectUI.py:320 flatcamGUI/ObjectUI.py:1377 flatcamGUI/PreferencesUI.py:1643 +#: flatcamGUI/PreferencesUI.py:4013 flatcamTools/ToolNonCopperClear.py:233 msgid "The tip diameter for V-Shape Tool" msgstr "" -#: flatcamGUI/ObjectUI.py:320 flatcamGUI/ObjectUI.py:1350 flatcamGUI/PreferencesUI.py:1653 -#: flatcamGUI/PreferencesUI.py:4022 flatcamTools/ToolNonCopperClear.py:242 +#: flatcamGUI/ObjectUI.py:331 flatcamGUI/ObjectUI.py:1389 flatcamGUI/PreferencesUI.py:1654 +#: flatcamGUI/PreferencesUI.py:4023 flatcamTools/ToolNonCopperClear.py:242 msgid "V-Tip Angle" msgstr "" -#: flatcamGUI/ObjectUI.py:322 flatcamGUI/ObjectUI.py:1353 flatcamGUI/PreferencesUI.py:1655 -#: flatcamGUI/PreferencesUI.py:4024 flatcamTools/ToolNonCopperClear.py:244 +#: flatcamGUI/ObjectUI.py:333 flatcamGUI/ObjectUI.py:1392 flatcamGUI/PreferencesUI.py:1656 +#: flatcamGUI/PreferencesUI.py:4025 flatcamTools/ToolNonCopperClear.py:244 msgid "" "The tip angle for V-Shape Tool.\n" "In degree." msgstr "" -#: flatcamGUI/ObjectUI.py:336 flatcamGUI/ObjectUI.py:1369 flatcamGUI/PreferencesUI.py:1668 -#: flatcamGUI/PreferencesUI.py:3181 flatcamGUI/PreferencesUI.py:4293 +#: flatcamGUI/ObjectUI.py:347 flatcamGUI/ObjectUI.py:1408 flatcamGUI/PreferencesUI.py:1669 +#: flatcamGUI/PreferencesUI.py:3182 flatcamGUI/PreferencesUI.py:4294 #: flatcamTools/ToolCutOut.py:135 msgid "" "Cutting depth (negative)\n" "below the copper surface." msgstr "" -#: flatcamGUI/ObjectUI.py:350 +#: flatcamGUI/ObjectUI.py:361 msgid "" "Diameter of the cutting tool.\n" "If you want to have an isolation path\n" @@ -6365,84 +6365,84 @@ msgid "" "this parameter." msgstr "" -#: flatcamGUI/ObjectUI.py:366 flatcamGUI/PreferencesUI.py:1462 +#: flatcamGUI/ObjectUI.py:377 flatcamGUI/PreferencesUI.py:1463 msgid "# Passes" msgstr "" -#: flatcamGUI/ObjectUI.py:368 flatcamGUI/PreferencesUI.py:1464 +#: flatcamGUI/ObjectUI.py:379 flatcamGUI/PreferencesUI.py:1465 msgid "" "Width of the isolation gap in\n" "number (integer) of tool widths." msgstr "" -#: flatcamGUI/ObjectUI.py:378 flatcamGUI/PreferencesUI.py:1474 +#: flatcamGUI/ObjectUI.py:389 flatcamGUI/PreferencesUI.py:1475 msgid "Pass overlap" msgstr "" -#: flatcamGUI/ObjectUI.py:380 flatcamGUI/PreferencesUI.py:1476 +#: flatcamGUI/ObjectUI.py:391 flatcamGUI/PreferencesUI.py:1477 msgid "How much (fraction) of the tool width to overlap each tool pass." msgstr "" -#: flatcamGUI/ObjectUI.py:392 flatcamGUI/PreferencesUI.py:1501 -#: flatcamGUI/PreferencesUI.py:3594 flatcamGUI/PreferencesUI.py:4067 +#: flatcamGUI/ObjectUI.py:403 flatcamGUI/PreferencesUI.py:1502 +#: flatcamGUI/PreferencesUI.py:3595 flatcamGUI/PreferencesUI.py:4068 #: flatcamTools/ToolNonCopperClear.py:162 msgid "Milling Type" msgstr "" -#: flatcamGUI/ObjectUI.py:394 flatcamGUI/PreferencesUI.py:1503 -#: flatcamGUI/PreferencesUI.py:3596 +#: flatcamGUI/ObjectUI.py:405 flatcamGUI/PreferencesUI.py:1504 +#: flatcamGUI/PreferencesUI.py:3597 msgid "" "Milling type:\n" "- climb / best for precision milling and to reduce tool usage\n" "- conventional / useful when there is no backlash compensation" msgstr "" -#: flatcamGUI/ObjectUI.py:398 flatcamGUI/PreferencesUI.py:1508 -#: flatcamGUI/PreferencesUI.py:3600 flatcamGUI/PreferencesUI.py:4074 +#: flatcamGUI/ObjectUI.py:409 flatcamGUI/PreferencesUI.py:1509 +#: flatcamGUI/PreferencesUI.py:3601 flatcamGUI/PreferencesUI.py:4075 #: flatcamTools/ToolNonCopperClear.py:169 msgid "Climb" msgstr "" -#: flatcamGUI/ObjectUI.py:399 +#: flatcamGUI/ObjectUI.py:410 msgid "Conventional" msgstr "" -#: flatcamGUI/ObjectUI.py:404 +#: flatcamGUI/ObjectUI.py:415 msgid "Combine" msgstr "" -#: flatcamGUI/ObjectUI.py:406 flatcamGUI/PreferencesUI.py:1515 +#: flatcamGUI/ObjectUI.py:417 flatcamGUI/PreferencesUI.py:1516 msgid "Combine all passes into one object" msgstr "" -#: flatcamGUI/ObjectUI.py:410 flatcamGUI/PreferencesUI.py:1607 +#: flatcamGUI/ObjectUI.py:421 flatcamGUI/PreferencesUI.py:1608 msgid "\"Follow\"" msgstr "" -#: flatcamGUI/ObjectUI.py:411 flatcamGUI/PreferencesUI.py:1609 +#: flatcamGUI/ObjectUI.py:422 flatcamGUI/PreferencesUI.py:1610 msgid "" "Generate a 'Follow' geometry.\n" "This means that it will cut through\n" "the middle of the trace." msgstr "" -#: flatcamGUI/ObjectUI.py:417 +#: flatcamGUI/ObjectUI.py:428 msgid "Except" msgstr "" -#: flatcamGUI/ObjectUI.py:420 +#: flatcamGUI/ObjectUI.py:431 msgid "" "When the isolation geometry is generated,\n" "by checking this, the area of the object bellow\n" "will be subtracted from the isolation geometry." msgstr "" -#: flatcamGUI/ObjectUI.py:442 flatcamTools/ToolNonCopperClear.py:82 +#: flatcamGUI/ObjectUI.py:453 flatcamTools/ToolNonCopperClear.py:82 #: flatcamTools/ToolPaint.py:85 msgid "Obj Type" msgstr "" -#: flatcamGUI/ObjectUI.py:444 +#: flatcamGUI/ObjectUI.py:455 msgid "" "Specify the type of object to be excepted from isolation.\n" "It can be of type: Gerber or Geometry.\n" @@ -6450,38 +6450,38 @@ msgid "" "of objects that will populate the 'Object' combobox." msgstr "" -#: flatcamGUI/ObjectUI.py:457 flatcamGUI/PreferencesUI.py:6453 +#: flatcamGUI/ObjectUI.py:468 flatcamGUI/PreferencesUI.py:6454 #: flatcamTools/ToolCalibration.py:186 flatcamTools/ToolNonCopperClear.py:100 #: flatcamTools/ToolPaint.py:103 flatcamTools/ToolPanelize.py:81 #: flatcamTools/ToolPanelize.py:94 msgid "Object" msgstr "" -#: flatcamGUI/ObjectUI.py:458 +#: flatcamGUI/ObjectUI.py:469 msgid "Object whose area will be removed from isolation geometry." msgstr "" -#: flatcamGUI/ObjectUI.py:465 flatcamGUI/PreferencesUI.py:1488 +#: flatcamGUI/ObjectUI.py:476 flatcamGUI/PreferencesUI.py:1489 msgid "Scope" msgstr "" -#: flatcamGUI/ObjectUI.py:467 flatcamGUI/PreferencesUI.py:1490 +#: flatcamGUI/ObjectUI.py:478 flatcamGUI/PreferencesUI.py:1491 msgid "" "Isolation scope. Choose what to isolate:\n" "- 'All' -> Isolate all the polygons in the object\n" "- 'Selection' -> Isolate a selection of polygons." msgstr "" -#: flatcamGUI/ObjectUI.py:472 flatcamGUI/PreferencesUI.py:1495 -#: flatcamGUI/PreferencesUI.py:4603 flatcamTools/ToolPaint.py:300 +#: flatcamGUI/ObjectUI.py:483 flatcamGUI/PreferencesUI.py:1496 +#: flatcamGUI/PreferencesUI.py:4604 flatcamTools/ToolPaint.py:300 msgid "Selection" msgstr "" -#: flatcamGUI/ObjectUI.py:480 flatcamGUI/PreferencesUI.py:1681 +#: flatcamGUI/ObjectUI.py:491 flatcamGUI/PreferencesUI.py:1682 msgid "Isolation Type" msgstr "" -#: flatcamGUI/ObjectUI.py:482 flatcamGUI/PreferencesUI.py:1683 +#: flatcamGUI/ObjectUI.py:493 flatcamGUI/PreferencesUI.py:1684 msgid "" "Choose how the isolation will be executed:\n" "- 'Full' -> complete isolation of polygons\n" @@ -6493,24 +6493,24 @@ msgid "" "inside of the polygon (e.g polygon is a 'doughnut' shape)." msgstr "" -#: flatcamGUI/ObjectUI.py:491 flatcamGUI/PreferencesUI.py:1692 -#: flatcamGUI/PreferencesUI.py:1708 +#: flatcamGUI/ObjectUI.py:502 flatcamGUI/PreferencesUI.py:1693 +#: flatcamGUI/PreferencesUI.py:1709 msgid "Full" msgstr "" -#: flatcamGUI/ObjectUI.py:492 +#: flatcamGUI/ObjectUI.py:503 msgid "Ext" msgstr "" -#: flatcamGUI/ObjectUI.py:493 +#: flatcamGUI/ObjectUI.py:504 msgid "Int" msgstr "" -#: flatcamGUI/ObjectUI.py:498 +#: flatcamGUI/ObjectUI.py:509 msgid "Generate Isolation Geometry" msgstr "" -#: flatcamGUI/ObjectUI.py:506 +#: flatcamGUI/ObjectUI.py:517 msgid "" "Create a Geometry object with toolpaths to cut \n" "isolation outside, inside or on both sides of the\n" @@ -6523,11 +6523,11 @@ msgid "" "diameter above." msgstr "" -#: flatcamGUI/ObjectUI.py:518 +#: flatcamGUI/ObjectUI.py:529 msgid "Buffer Solid Geometry" msgstr "" -#: flatcamGUI/ObjectUI.py:520 +#: flatcamGUI/ObjectUI.py:531 msgid "" "This button is shown only when the Gerber file\n" "is loaded without buffering.\n" @@ -6535,45 +6535,45 @@ msgid "" "required for isolation." msgstr "" -#: flatcamGUI/ObjectUI.py:548 +#: flatcamGUI/ObjectUI.py:559 msgid "Clear N-copper" msgstr "" -#: flatcamGUI/ObjectUI.py:550 flatcamGUI/PreferencesUI.py:3974 +#: flatcamGUI/ObjectUI.py:561 flatcamGUI/PreferencesUI.py:3975 msgid "" "Create a Geometry object with\n" "toolpaths to cut all non-copper regions." msgstr "" -#: flatcamGUI/ObjectUI.py:557 flatcamGUI/ObjectUI.py:1714 +#: flatcamGUI/ObjectUI.py:568 flatcamGUI/ObjectUI.py:1753 #: flatcamTools/ToolNonCopperClear.py:479 msgid "" "Create the Geometry Object\n" "for non-copper routing." msgstr "" -#: flatcamGUI/ObjectUI.py:570 +#: flatcamGUI/ObjectUI.py:581 msgid "Board cutout" msgstr "" -#: flatcamGUI/ObjectUI.py:572 flatcamGUI/PreferencesUI.py:4266 +#: flatcamGUI/ObjectUI.py:583 flatcamGUI/PreferencesUI.py:4267 msgid "" "Create toolpaths to cut around\n" "the PCB and separate it from\n" "the original board." msgstr "" -#: flatcamGUI/ObjectUI.py:579 +#: flatcamGUI/ObjectUI.py:590 msgid "" "Generate the geometry for\n" "the board cutout." msgstr "" -#: flatcamGUI/ObjectUI.py:597 flatcamGUI/PreferencesUI.py:1520 +#: flatcamGUI/ObjectUI.py:608 flatcamGUI/PreferencesUI.py:1521 msgid "Non-copper regions" msgstr "" -#: flatcamGUI/ObjectUI.py:599 flatcamGUI/PreferencesUI.py:1522 +#: flatcamGUI/ObjectUI.py:610 flatcamGUI/PreferencesUI.py:1523 msgid "" "Create polygons covering the\n" "areas without copper on the PCB.\n" @@ -6582,12 +6582,12 @@ msgid "" "copper from a specified region." msgstr "" -#: flatcamGUI/ObjectUI.py:609 flatcamGUI/ObjectUI.py:650 flatcamGUI/PreferencesUI.py:1534 -#: flatcamGUI/PreferencesUI.py:1562 +#: flatcamGUI/ObjectUI.py:620 flatcamGUI/ObjectUI.py:661 flatcamGUI/PreferencesUI.py:1535 +#: flatcamGUI/PreferencesUI.py:1563 msgid "Boundary Margin" msgstr "" -#: flatcamGUI/ObjectUI.py:611 flatcamGUI/PreferencesUI.py:1536 +#: flatcamGUI/ObjectUI.py:622 flatcamGUI/PreferencesUI.py:1537 msgid "" "Specify the edge of the PCB\n" "by drawing a box around all\n" @@ -6595,38 +6595,38 @@ msgid "" "distance." msgstr "" -#: flatcamGUI/ObjectUI.py:626 flatcamGUI/ObjectUI.py:664 flatcamGUI/PreferencesUI.py:1549 -#: flatcamGUI/PreferencesUI.py:1575 +#: flatcamGUI/ObjectUI.py:637 flatcamGUI/ObjectUI.py:675 flatcamGUI/PreferencesUI.py:1550 +#: flatcamGUI/PreferencesUI.py:1576 msgid "Rounded Geo" msgstr "" -#: flatcamGUI/ObjectUI.py:628 flatcamGUI/PreferencesUI.py:1551 +#: flatcamGUI/ObjectUI.py:639 flatcamGUI/PreferencesUI.py:1552 msgid "Resulting geometry will have rounded corners." msgstr "" -#: flatcamGUI/ObjectUI.py:632 flatcamGUI/ObjectUI.py:673 flatcamTools/ToolSolderPaste.py:133 +#: flatcamGUI/ObjectUI.py:643 flatcamGUI/ObjectUI.py:684 flatcamTools/ToolSolderPaste.py:133 msgid "Generate Geo" msgstr "" -#: flatcamGUI/ObjectUI.py:642 flatcamGUI/PreferencesUI.py:1556 -#: flatcamGUI/PreferencesUI.py:5983 flatcamTools/ToolPanelize.py:95 +#: flatcamGUI/ObjectUI.py:653 flatcamGUI/PreferencesUI.py:1557 +#: flatcamGUI/PreferencesUI.py:5984 flatcamTools/ToolPanelize.py:95 #: flatcamTools/ToolQRCode.py:192 msgid "Bounding Box" msgstr "" -#: flatcamGUI/ObjectUI.py:644 +#: flatcamGUI/ObjectUI.py:655 msgid "" "Create a geometry surrounding the Gerber object.\n" "Square shape." msgstr "" -#: flatcamGUI/ObjectUI.py:652 flatcamGUI/PreferencesUI.py:1564 +#: flatcamGUI/ObjectUI.py:663 flatcamGUI/PreferencesUI.py:1565 msgid "" "Distance of the edges of the box\n" "to the nearest polygon." msgstr "" -#: flatcamGUI/ObjectUI.py:666 flatcamGUI/PreferencesUI.py:1577 +#: flatcamGUI/ObjectUI.py:677 flatcamGUI/PreferencesUI.py:1578 msgid "" "If the bounding box is \n" "to have rounded corners\n" @@ -6634,32 +6634,32 @@ msgid "" "the margin." msgstr "" -#: flatcamGUI/ObjectUI.py:675 +#: flatcamGUI/ObjectUI.py:686 msgid "Generate the Geometry object." msgstr "" -#: flatcamGUI/ObjectUI.py:691 +#: flatcamGUI/ObjectUI.py:715 msgid "Excellon Object" msgstr "" -#: flatcamGUI/ObjectUI.py:705 +#: flatcamGUI/ObjectUI.py:729 msgid "Solid circles." msgstr "" -#: flatcamGUI/ObjectUI.py:753 flatcamGUI/ObjectUI.py:1876 flatcamTools/ToolProperties.py:161 +#: flatcamGUI/ObjectUI.py:777 flatcamGUI/ObjectUI.py:1928 flatcamTools/ToolProperties.py:161 msgid "Drills" msgstr "" -#: flatcamGUI/ObjectUI.py:753 flatcamGUI/ObjectUI.py:1876 flatcamGUI/PreferencesUI.py:2952 +#: flatcamGUI/ObjectUI.py:777 flatcamGUI/ObjectUI.py:1928 flatcamGUI/PreferencesUI.py:2953 #: flatcamTools/ToolProperties.py:162 msgid "Slots" msgstr "" -#: flatcamGUI/ObjectUI.py:754 flatcamGUI/PreferencesUI.py:2555 +#: flatcamGUI/ObjectUI.py:778 flatcamGUI/PreferencesUI.py:2556 msgid "Offset Z" msgstr "" -#: flatcamGUI/ObjectUI.py:758 +#: flatcamGUI/ObjectUI.py:782 msgid "" "This is the Tool Number.\n" "When ToolChange is checked, on toolchange event this value\n" @@ -6668,112 +6668,112 @@ msgid "" "Here the tools are selected for G-code generation." msgstr "" -#: flatcamGUI/ObjectUI.py:763 flatcamGUI/ObjectUI.py:1191 flatcamTools/ToolPaint.py:137 +#: flatcamGUI/ObjectUI.py:787 flatcamGUI/ObjectUI.py:1230 flatcamTools/ToolPaint.py:137 msgid "" "Tool Diameter. It's value (in current FlatCAM units) \n" "is the cut width into the material." msgstr "" -#: flatcamGUI/ObjectUI.py:766 +#: flatcamGUI/ObjectUI.py:790 msgid "" "The number of Drill holes. Holes that are drilled with\n" "a drill bit." msgstr "" -#: flatcamGUI/ObjectUI.py:769 +#: flatcamGUI/ObjectUI.py:793 msgid "" "The number of Slot holes. Holes that are created by\n" "milling them with an endmill bit." msgstr "" -#: flatcamGUI/ObjectUI.py:772 flatcamGUI/PreferencesUI.py:2557 +#: flatcamGUI/ObjectUI.py:796 flatcamGUI/PreferencesUI.py:2558 msgid "" "Some drill bits (the larger ones) need to drill deeper\n" "to create the desired exit hole diameter due of the tip shape.\n" "The value here can compensate the Cut Z parameter." msgstr "" -#: flatcamGUI/ObjectUI.py:776 +#: flatcamGUI/ObjectUI.py:800 msgid "" "Toggle display of the drills for the current tool.\n" "This does not select the tools for G-code generation." msgstr "" -#: flatcamGUI/ObjectUI.py:783 flatcamGUI/PreferencesUI.py:2323 -#: flatcamGUI/PreferencesUI.py:3167 +#: flatcamGUI/ObjectUI.py:807 flatcamGUI/PreferencesUI.py:2324 +#: flatcamGUI/PreferencesUI.py:3168 msgid "Create CNC Job" msgstr "" -#: flatcamGUI/ObjectUI.py:785 +#: flatcamGUI/ObjectUI.py:809 msgid "" "Create a CNC Job object\n" "for this drill object." msgstr "" -#: flatcamGUI/ObjectUI.py:798 flatcamGUI/PreferencesUI.py:2336 +#: flatcamGUI/ObjectUI.py:822 flatcamGUI/PreferencesUI.py:2337 msgid "" "Drill depth (negative)\n" "below the copper surface." msgstr "" -#: flatcamGUI/ObjectUI.py:817 flatcamGUI/PreferencesUI.py:2354 +#: flatcamGUI/ObjectUI.py:841 flatcamGUI/PreferencesUI.py:2355 msgid "" "Tool height when travelling\n" "across the XY plane." msgstr "" -#: flatcamGUI/ObjectUI.py:834 flatcamGUI/ObjectUI.py:1439 flatcamGUI/PreferencesUI.py:2369 -#: flatcamGUI/PreferencesUI.py:3252 +#: flatcamGUI/ObjectUI.py:858 flatcamGUI/ObjectUI.py:1478 flatcamGUI/PreferencesUI.py:2370 +#: flatcamGUI/PreferencesUI.py:3253 msgid "Tool change" msgstr "" -#: flatcamGUI/ObjectUI.py:836 flatcamGUI/PreferencesUI.py:2371 +#: flatcamGUI/ObjectUI.py:860 flatcamGUI/PreferencesUI.py:2372 msgid "" "Include tool-change sequence\n" "in G-Code (Pause for tool change)." msgstr "" -#: flatcamGUI/ObjectUI.py:842 flatcamGUI/ObjectUI.py:1432 +#: flatcamGUI/ObjectUI.py:866 flatcamGUI/ObjectUI.py:1471 msgid "Tool change Z" msgstr "" -#: flatcamGUI/ObjectUI.py:844 flatcamGUI/ObjectUI.py:1435 flatcamGUI/PreferencesUI.py:2380 -#: flatcamGUI/PreferencesUI.py:3267 +#: flatcamGUI/ObjectUI.py:868 flatcamGUI/ObjectUI.py:1474 flatcamGUI/PreferencesUI.py:2381 +#: flatcamGUI/PreferencesUI.py:3268 msgid "" "Z-axis position (height) for\n" "tool change." msgstr "" -#: flatcamGUI/ObjectUI.py:862 flatcamGUI/PreferencesUI.py:2575 -#: flatcamGUI/PreferencesUI.py:3420 +#: flatcamGUI/ObjectUI.py:886 flatcamGUI/PreferencesUI.py:2576 +#: flatcamGUI/PreferencesUI.py:3421 msgid "Start move Z" msgstr "" -#: flatcamGUI/ObjectUI.py:864 flatcamGUI/PreferencesUI.py:2577 +#: flatcamGUI/ObjectUI.py:888 flatcamGUI/PreferencesUI.py:2578 msgid "" "Height of the tool just after start.\n" "Delete the value if you don't need this feature." msgstr "" -#: flatcamGUI/ObjectUI.py:872 flatcamGUI/ObjectUI.py:1473 flatcamGUI/PreferencesUI.py:2395 -#: flatcamGUI/PreferencesUI.py:3286 +#: flatcamGUI/ObjectUI.py:896 flatcamGUI/ObjectUI.py:1512 flatcamGUI/PreferencesUI.py:2396 +#: flatcamGUI/PreferencesUI.py:3287 msgid "End move Z" msgstr "" -#: flatcamGUI/ObjectUI.py:874 flatcamGUI/ObjectUI.py:1475 flatcamGUI/PreferencesUI.py:2397 -#: flatcamGUI/PreferencesUI.py:3288 +#: flatcamGUI/ObjectUI.py:898 flatcamGUI/ObjectUI.py:1514 flatcamGUI/PreferencesUI.py:2398 +#: flatcamGUI/PreferencesUI.py:3289 msgid "" "Height of the tool after\n" "the last move at the end of the job." msgstr "" -#: flatcamGUI/ObjectUI.py:891 flatcamGUI/ObjectUI.py:1506 flatcamGUI/PreferencesUI.py:2412 -#: flatcamGUI/PreferencesUI.py:3321 flatcamGUI/PreferencesUI.py:5497 +#: flatcamGUI/ObjectUI.py:915 flatcamGUI/ObjectUI.py:1545 flatcamGUI/PreferencesUI.py:2413 +#: flatcamGUI/PreferencesUI.py:3322 flatcamGUI/PreferencesUI.py:5498 #: flatcamTools/ToolSolderPaste.py:264 msgid "Feedrate Z" msgstr "" -#: flatcamGUI/ObjectUI.py:893 flatcamGUI/PreferencesUI.py:2414 +#: flatcamGUI/ObjectUI.py:917 flatcamGUI/PreferencesUI.py:2415 msgid "" "Tool speed while drilling\n" "(in units per minute).\n" @@ -6781,12 +6781,12 @@ msgid "" "This is for linear move G01." msgstr "" -#: flatcamGUI/ObjectUI.py:907 flatcamGUI/ObjectUI.py:1521 flatcamGUI/PreferencesUI.py:2585 -#: flatcamGUI/PreferencesUI.py:3430 +#: flatcamGUI/ObjectUI.py:931 flatcamGUI/ObjectUI.py:1560 flatcamGUI/PreferencesUI.py:2586 +#: flatcamGUI/PreferencesUI.py:3431 msgid "Feedrate Rapids" msgstr "" -#: flatcamGUI/ObjectUI.py:909 flatcamGUI/PreferencesUI.py:2587 +#: flatcamGUI/ObjectUI.py:933 flatcamGUI/PreferencesUI.py:2588 msgid "" "Tool speed while drilling\n" "(in units per minute).\n" @@ -6795,61 +6795,61 @@ msgid "" "ignore for any other cases." msgstr "" -#: flatcamGUI/ObjectUI.py:927 flatcamGUI/ObjectUI.py:1566 flatcamGUI/PreferencesUI.py:3337 +#: flatcamGUI/ObjectUI.py:951 flatcamGUI/ObjectUI.py:1605 flatcamGUI/PreferencesUI.py:3338 msgid "Spindle speed" msgstr "" -#: flatcamGUI/ObjectUI.py:929 flatcamGUI/PreferencesUI.py:2429 +#: flatcamGUI/ObjectUI.py:953 flatcamGUI/PreferencesUI.py:2430 msgid "" "Speed of the spindle\n" "in RPM (optional)" msgstr "" -#: flatcamGUI/ObjectUI.py:941 flatcamGUI/ObjectUI.py:1585 flatcamGUI/PreferencesUI.py:2441 -#: flatcamGUI/PreferencesUI.py:3355 +#: flatcamGUI/ObjectUI.py:965 flatcamGUI/ObjectUI.py:1624 flatcamGUI/PreferencesUI.py:2442 +#: flatcamGUI/PreferencesUI.py:3356 msgid "" "Pause to allow the spindle to reach its\n" "speed before cutting." msgstr "" -#: flatcamGUI/ObjectUI.py:950 flatcamGUI/ObjectUI.py:1595 flatcamGUI/PreferencesUI.py:2446 -#: flatcamGUI/PreferencesUI.py:3360 +#: flatcamGUI/ObjectUI.py:974 flatcamGUI/ObjectUI.py:1634 flatcamGUI/PreferencesUI.py:2447 +#: flatcamGUI/PreferencesUI.py:3361 msgid "Number of time units for spindle to dwell." msgstr "" -#: flatcamGUI/ObjectUI.py:960 flatcamGUI/PreferencesUI.py:2463 +#: flatcamGUI/ObjectUI.py:984 flatcamGUI/PreferencesUI.py:2464 msgid "" "The preprocessor JSON file that dictates\n" "Gcode output." msgstr "" -#: flatcamGUI/ObjectUI.py:969 flatcamGUI/ObjectUI.py:1615 flatcamGUI/PreferencesUI.py:2601 -#: flatcamGUI/PreferencesUI.py:3471 +#: flatcamGUI/ObjectUI.py:993 flatcamGUI/ObjectUI.py:1654 flatcamGUI/PreferencesUI.py:2602 +#: flatcamGUI/PreferencesUI.py:3472 msgid "Probe Z depth" msgstr "" -#: flatcamGUI/ObjectUI.py:971 flatcamGUI/ObjectUI.py:1617 flatcamGUI/PreferencesUI.py:2603 -#: flatcamGUI/PreferencesUI.py:3473 +#: flatcamGUI/ObjectUI.py:995 flatcamGUI/ObjectUI.py:1656 flatcamGUI/PreferencesUI.py:2604 +#: flatcamGUI/PreferencesUI.py:3474 msgid "" "The maximum depth that the probe is allowed\n" "to probe. Negative value, in current units." msgstr "" -#: flatcamGUI/ObjectUI.py:985 flatcamGUI/ObjectUI.py:1632 flatcamGUI/PreferencesUI.py:2614 -#: flatcamGUI/PreferencesUI.py:3486 +#: flatcamGUI/ObjectUI.py:1009 flatcamGUI/ObjectUI.py:1671 flatcamGUI/PreferencesUI.py:2615 +#: flatcamGUI/PreferencesUI.py:3487 msgid "Feedrate Probe" msgstr "" -#: flatcamGUI/ObjectUI.py:987 flatcamGUI/ObjectUI.py:1634 flatcamGUI/PreferencesUI.py:2616 -#: flatcamGUI/PreferencesUI.py:3488 +#: flatcamGUI/ObjectUI.py:1011 flatcamGUI/ObjectUI.py:1673 flatcamGUI/PreferencesUI.py:2617 +#: flatcamGUI/PreferencesUI.py:3489 msgid "The feedrate used while the probe is probing." msgstr "" -#: flatcamGUI/ObjectUI.py:1013 flatcamGUI/PreferencesUI.py:2472 +#: flatcamGUI/ObjectUI.py:1037 flatcamGUI/PreferencesUI.py:2473 msgid "Gcode" msgstr "" -#: flatcamGUI/ObjectUI.py:1015 +#: flatcamGUI/ObjectUI.py:1039 msgid "" "Choose what to use for GCode generation:\n" "'Drills', 'Slots' or 'Both'.\n" @@ -6857,69 +6857,69 @@ msgid "" "converted to a series of drills." msgstr "" -#: flatcamGUI/ObjectUI.py:1029 +#: flatcamGUI/ObjectUI.py:1053 msgid "Create Drills GCode" msgstr "" -#: flatcamGUI/ObjectUI.py:1031 +#: flatcamGUI/ObjectUI.py:1055 msgid "Generate the CNC Job." msgstr "" -#: flatcamGUI/ObjectUI.py:1042 flatcamGUI/PreferencesUI.py:2490 +#: flatcamGUI/ObjectUI.py:1066 flatcamGUI/PreferencesUI.py:2491 msgid "Mill Holes" msgstr "" -#: flatcamGUI/ObjectUI.py:1044 +#: flatcamGUI/ObjectUI.py:1068 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 "" -#: flatcamGUI/ObjectUI.py:1050 flatcamGUI/PreferencesUI.py:2496 +#: flatcamGUI/ObjectUI.py:1074 flatcamGUI/PreferencesUI.py:2497 msgid "Drill Tool dia" msgstr "" -#: flatcamGUI/ObjectUI.py:1052 flatcamGUI/PreferencesUI.py:1451 -#: flatcamGUI/PreferencesUI.py:2498 +#: flatcamGUI/ObjectUI.py:1076 flatcamGUI/PreferencesUI.py:1452 +#: flatcamGUI/PreferencesUI.py:2499 msgid "Diameter of the cutting tool." msgstr "" -#: flatcamGUI/ObjectUI.py:1059 +#: flatcamGUI/ObjectUI.py:1083 msgid "Mill Drills Geo" msgstr "" -#: flatcamGUI/ObjectUI.py:1061 +#: flatcamGUI/ObjectUI.py:1085 msgid "" "Create the Geometry Object\n" "for milling DRILLS toolpaths." msgstr "" -#: flatcamGUI/ObjectUI.py:1075 flatcamGUI/PreferencesUI.py:2507 +#: flatcamGUI/ObjectUI.py:1099 flatcamGUI/PreferencesUI.py:2508 msgid "Slot Tool dia" msgstr "" -#: flatcamGUI/ObjectUI.py:1077 flatcamGUI/PreferencesUI.py:2509 +#: flatcamGUI/ObjectUI.py:1101 flatcamGUI/PreferencesUI.py:2510 msgid "" "Diameter of the cutting tool\n" "when milling slots." msgstr "" -#: flatcamGUI/ObjectUI.py:1086 +#: flatcamGUI/ObjectUI.py:1110 msgid "Mill Slots Geo" msgstr "" -#: flatcamGUI/ObjectUI.py:1088 +#: flatcamGUI/ObjectUI.py:1112 msgid "" "Create the Geometry Object\n" "for milling SLOTS toolpaths." msgstr "" -#: flatcamGUI/ObjectUI.py:1115 flatcamTools/ToolCutOut.py:315 +#: flatcamGUI/ObjectUI.py:1152 flatcamTools/ToolCutOut.py:315 msgid "Geometry Object" msgstr "" -#: flatcamGUI/ObjectUI.py:1147 +#: flatcamGUI/ObjectUI.py:1186 msgid "" "Tools in this Geometry object used for cutting.\n" "The 'Offset' entry will set an offset for the cut.\n" @@ -6935,28 +6935,28 @@ msgid "" "showed UI form entries named V-Tip Dia and V-Tip Angle." msgstr "" -#: flatcamGUI/ObjectUI.py:1164 flatcamGUI/ObjectUI.py:1853 flatcamGUI/PreferencesUI.py:3627 +#: flatcamGUI/ObjectUI.py:1203 flatcamGUI/ObjectUI.py:1905 flatcamGUI/PreferencesUI.py:3628 msgid "Plot Object" msgstr "" -#: flatcamGUI/ObjectUI.py:1178 flatcamGUI/ObjectUI.py:1866 flatcamGUI/ObjectUI.py:1876 -#: flatcamGUI/PreferencesUI.py:6172 flatcamTools/ToolCopperThieving.py:220 +#: flatcamGUI/ObjectUI.py:1217 flatcamGUI/ObjectUI.py:1918 flatcamGUI/ObjectUI.py:1928 +#: flatcamGUI/PreferencesUI.py:6173 flatcamTools/ToolCopperThieving.py:220 msgid "Dia" msgstr "" -#: flatcamGUI/ObjectUI.py:1178 flatcamGUI/ObjectUI.py:1866 +#: flatcamGUI/ObjectUI.py:1217 flatcamGUI/ObjectUI.py:1918 #: flatcamTools/ToolNonCopperClear.py:120 flatcamTools/ToolPaint.py:123 msgid "TT" msgstr "" -#: flatcamGUI/ObjectUI.py:1185 +#: flatcamGUI/ObjectUI.py:1224 msgid "" "This is the Tool Number.\n" "When ToolChange is checked, on toolchange event this value\n" "will be showed as a T1, T2 ... Tn" msgstr "" -#: flatcamGUI/ObjectUI.py:1196 +#: flatcamGUI/ObjectUI.py:1235 msgid "" "The value for the Offset can be:\n" "- Path -> There is no offset, the tool cut will be done through the geometry line.\n" @@ -6964,7 +6964,7 @@ msgid "" "- Out(side) -> The tool cut will follow the geometry line on the outside." msgstr "" -#: flatcamGUI/ObjectUI.py:1203 +#: flatcamGUI/ObjectUI.py:1242 msgid "" "The (Operation) Type has only informative value. Usually the UI form values \n" "are choose based on the operation type and this will serve as a reminder.\n" @@ -6974,7 +6974,7 @@ msgid "" "For Isolation we need a lower Feedrate as it use a milling bit with a fine tip." msgstr "" -#: flatcamGUI/ObjectUI.py:1212 +#: flatcamGUI/ObjectUI.py:1251 msgid "" "The Tool Type (TT) can be:\n" "- Circular with 1 ... 4 teeth -> it is informative only. Being circular the cut width in " @@ -6990,7 +6990,7 @@ msgid "" "Choosing the V-Shape Tool Type automatically will select the Operation Type as Isolation." msgstr "" -#: flatcamGUI/ObjectUI.py:1224 +#: flatcamGUI/ObjectUI.py:1263 msgid "" "Plot column. It is visible only for MultiGeo geometries, meaning geometries that holds " "the geometry\n" @@ -7001,7 +7001,7 @@ msgid "" "for the corresponding tool." msgstr "" -#: flatcamGUI/ObjectUI.py:1242 +#: flatcamGUI/ObjectUI.py:1281 msgid "" "The value to offset the cut when \n" "the Offset type selected is 'Offset'.\n" @@ -7009,47 +7009,47 @@ msgid "" "cut and negative for 'inside' cut." msgstr "" -#: flatcamGUI/ObjectUI.py:1267 +#: flatcamGUI/ObjectUI.py:1306 msgid "" "Add a new tool to the Tool Table\n" "with the specified diameter." msgstr "" -#: flatcamGUI/ObjectUI.py:1275 +#: flatcamGUI/ObjectUI.py:1314 msgid "Add Tool from DataBase" msgstr "" -#: flatcamGUI/ObjectUI.py:1277 +#: flatcamGUI/ObjectUI.py:1316 msgid "" "Add a new tool to the Tool Table\n" "from the Tool DataBase." msgstr "" -#: flatcamGUI/ObjectUI.py:1287 +#: flatcamGUI/ObjectUI.py:1326 msgid "" "Copy a selection of tools in the Tool Table\n" "by first selecting a row in the Tool Table." msgstr "" -#: flatcamGUI/ObjectUI.py:1293 +#: flatcamGUI/ObjectUI.py:1332 msgid "" "Delete a selection of tools in the Tool Table\n" "by first selecting a row in the Tool Table." msgstr "" -#: flatcamGUI/ObjectUI.py:1317 +#: flatcamGUI/ObjectUI.py:1356 msgid "" "The data used for creating GCode.\n" "Each tool store it's own set of such data." msgstr "" -#: flatcamGUI/ObjectUI.py:1387 flatcamGUI/PreferencesUI.py:3199 -#: flatcamGUI/PreferencesUI.py:4311 flatcamTools/ToolCutOut.py:153 +#: flatcamGUI/ObjectUI.py:1426 flatcamGUI/PreferencesUI.py:3200 +#: flatcamGUI/PreferencesUI.py:4312 flatcamTools/ToolCutOut.py:153 msgid "Multi-Depth" msgstr "" -#: flatcamGUI/ObjectUI.py:1390 flatcamGUI/PreferencesUI.py:3202 -#: flatcamGUI/PreferencesUI.py:4314 flatcamTools/ToolCutOut.py:156 +#: flatcamGUI/ObjectUI.py:1429 flatcamGUI/PreferencesUI.py:3203 +#: flatcamGUI/PreferencesUI.py:4315 flatcamTools/ToolCutOut.py:156 msgid "" "Use multiple passes to limit\n" "the cut depth in each pass. Will\n" @@ -7057,42 +7057,42 @@ msgid "" "reached." msgstr "" -#: flatcamGUI/ObjectUI.py:1404 flatcamGUI/PreferencesUI.py:4326 +#: flatcamGUI/ObjectUI.py:1443 flatcamGUI/PreferencesUI.py:4327 #: flatcamTools/ToolCutOut.py:170 msgid "Depth of each pass (positive)." msgstr "" -#: flatcamGUI/ObjectUI.py:1415 flatcamGUI/PreferencesUI.py:3234 +#: flatcamGUI/ObjectUI.py:1454 flatcamGUI/PreferencesUI.py:3235 msgid "" "Height of the tool when\n" "moving without cutting." msgstr "" -#: flatcamGUI/ObjectUI.py:1442 flatcamGUI/PreferencesUI.py:3255 +#: flatcamGUI/ObjectUI.py:1481 flatcamGUI/PreferencesUI.py:3256 msgid "" "Include tool-change sequence\n" "in the Machine Code (Pause for tool change)." msgstr "" -#: flatcamGUI/ObjectUI.py:1492 flatcamGUI/PreferencesUI.py:3306 -#: flatcamGUI/PreferencesUI.py:5484 flatcamTools/ToolSolderPaste.py:252 +#: flatcamGUI/ObjectUI.py:1531 flatcamGUI/PreferencesUI.py:3307 +#: flatcamGUI/PreferencesUI.py:5485 flatcamTools/ToolSolderPaste.py:252 msgid "Feedrate X-Y" msgstr "" -#: flatcamGUI/ObjectUI.py:1494 flatcamGUI/PreferencesUI.py:3308 +#: flatcamGUI/ObjectUI.py:1533 flatcamGUI/PreferencesUI.py:3309 msgid "" "Cutting speed in the XY\n" "plane in units per minute" msgstr "" -#: flatcamGUI/ObjectUI.py:1508 flatcamGUI/PreferencesUI.py:3323 +#: flatcamGUI/ObjectUI.py:1547 flatcamGUI/PreferencesUI.py:3324 msgid "" "Cutting speed in the XY\n" "plane in units per minute.\n" "It is called also Plunge." msgstr "" -#: flatcamGUI/ObjectUI.py:1523 flatcamGUI/PreferencesUI.py:3432 +#: flatcamGUI/ObjectUI.py:1562 flatcamGUI/PreferencesUI.py:3433 msgid "" "Cutting speed in the XY plane\n" "(in units per minute).\n" @@ -7101,12 +7101,12 @@ msgid "" "ignore for any other cases." msgstr "" -#: flatcamGUI/ObjectUI.py:1541 flatcamGUI/PreferencesUI.py:3448 +#: flatcamGUI/ObjectUI.py:1580 flatcamGUI/PreferencesUI.py:3449 msgid "Re-cut" msgstr "" -#: flatcamGUI/ObjectUI.py:1543 flatcamGUI/ObjectUI.py:1555 flatcamGUI/PreferencesUI.py:3450 -#: flatcamGUI/PreferencesUI.py:3462 +#: flatcamGUI/ObjectUI.py:1582 flatcamGUI/ObjectUI.py:1594 flatcamGUI/PreferencesUI.py:3451 +#: flatcamGUI/PreferencesUI.py:3463 msgid "" "In order to remove possible\n" "copper leftovers where first cut\n" @@ -7114,54 +7114,54 @@ msgid "" "extended cut over the first cut section." msgstr "" -#: flatcamGUI/ObjectUI.py:1569 flatcamGUI/PreferencesUI.py:3340 +#: flatcamGUI/ObjectUI.py:1608 flatcamGUI/PreferencesUI.py:3341 msgid "" "Speed of the spindle in RPM (optional).\n" "If LASER preprocessor is used,\n" "this value is the power of laser." msgstr "" -#: flatcamGUI/ObjectUI.py:1603 flatcamGUI/PreferencesUI.py:5573 +#: flatcamGUI/ObjectUI.py:1642 flatcamGUI/PreferencesUI.py:5574 #: flatcamTools/ToolSolderPaste.py:334 msgid "PostProcessor" msgstr "" -#: flatcamGUI/ObjectUI.py:1605 flatcamGUI/PreferencesUI.py:3377 +#: flatcamGUI/ObjectUI.py:1644 flatcamGUI/PreferencesUI.py:3378 msgid "" "The Preprocessor file that dictates\n" "the Machine Code (like GCode, RML, HPGL) output." msgstr "" -#: flatcamGUI/ObjectUI.py:1652 +#: flatcamGUI/ObjectUI.py:1691 msgid "Apply parameters to all tools" msgstr "" -#: flatcamGUI/ObjectUI.py:1654 +#: flatcamGUI/ObjectUI.py:1693 msgid "" "The parameters in the current form will be applied\n" "on all the tools from the Tool Table." msgstr "" -#: flatcamGUI/ObjectUI.py:1663 +#: flatcamGUI/ObjectUI.py:1702 msgid "" "Add at least one tool in the tool-table.\n" "Click the header to select all, or Ctrl + LMB\n" "for custom selection of tools." msgstr "" -#: flatcamGUI/ObjectUI.py:1670 +#: flatcamGUI/ObjectUI.py:1709 msgid "Generate CNCJob object" msgstr "" -#: flatcamGUI/ObjectUI.py:1672 +#: flatcamGUI/ObjectUI.py:1711 msgid "Generate the CNC Job object." msgstr "" -#: flatcamGUI/ObjectUI.py:1689 +#: flatcamGUI/ObjectUI.py:1728 msgid "Launch Paint Tool in Tools Tab." msgstr "" -#: flatcamGUI/ObjectUI.py:1697 flatcamGUI/PreferencesUI.py:4489 +#: flatcamGUI/ObjectUI.py:1736 flatcamGUI/PreferencesUI.py:4490 msgid "" "Creates tool paths to cover the\n" "whole area of a polygon (remove\n" @@ -7169,15 +7169,15 @@ msgid "" "to click on the desired polygon." msgstr "" -#: flatcamGUI/ObjectUI.py:1737 +#: flatcamGUI/ObjectUI.py:1788 msgid "CNC Job Object" msgstr "" -#: flatcamGUI/ObjectUI.py:1748 flatcamGUI/PreferencesUI.py:3632 +#: flatcamGUI/ObjectUI.py:1800 flatcamGUI/PreferencesUI.py:3633 msgid "Plot kind" msgstr "" -#: flatcamGUI/ObjectUI.py:1751 flatcamGUI/PreferencesUI.py:3634 +#: flatcamGUI/ObjectUI.py:1803 flatcamGUI/PreferencesUI.py:3635 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" @@ -7185,46 +7185,46 @@ msgid "" "which means the moves that cut into the material." msgstr "" -#: flatcamGUI/ObjectUI.py:1760 flatcamGUI/PreferencesUI.py:3642 +#: flatcamGUI/ObjectUI.py:1812 flatcamGUI/PreferencesUI.py:3643 msgid "Travel" msgstr "" -#: flatcamGUI/ObjectUI.py:1764 flatcamGUI/PreferencesUI.py:3651 +#: flatcamGUI/ObjectUI.py:1816 flatcamGUI/PreferencesUI.py:3652 msgid "Display Annotation" msgstr "" -#: flatcamGUI/ObjectUI.py:1766 flatcamGUI/PreferencesUI.py:3653 +#: flatcamGUI/ObjectUI.py:1818 flatcamGUI/PreferencesUI.py:3654 msgid "" "This selects if to display text annotation on the plot.\n" "When checked it will display numbers in order for each end\n" "of a travel line." msgstr "" -#: flatcamGUI/ObjectUI.py:1781 +#: flatcamGUI/ObjectUI.py:1833 msgid "Travelled dist." msgstr "" -#: flatcamGUI/ObjectUI.py:1783 flatcamGUI/ObjectUI.py:1788 +#: flatcamGUI/ObjectUI.py:1835 flatcamGUI/ObjectUI.py:1840 msgid "" "This is the total travelled distance on X-Y plane.\n" "In current units." msgstr "" -#: flatcamGUI/ObjectUI.py:1793 +#: flatcamGUI/ObjectUI.py:1845 msgid "Estimated time" msgstr "" -#: flatcamGUI/ObjectUI.py:1795 flatcamGUI/ObjectUI.py:1800 +#: flatcamGUI/ObjectUI.py:1847 flatcamGUI/ObjectUI.py:1852 msgid "" "This is the estimated time to do the routing/drilling,\n" "without the time spent in ToolChange events." msgstr "" -#: flatcamGUI/ObjectUI.py:1835 +#: flatcamGUI/ObjectUI.py:1887 msgid "CNC Tools Table" msgstr "" -#: flatcamGUI/ObjectUI.py:1838 +#: flatcamGUI/ObjectUI.py:1890 msgid "" "Tools in this CNCJob object used for cutting.\n" "The tool diameter is used for plotting on canvas.\n" @@ -7237,57 +7237,57 @@ msgid "" "ball(B), or V-Shaped(V)." msgstr "" -#: flatcamGUI/ObjectUI.py:1866 flatcamGUI/ObjectUI.py:1877 +#: flatcamGUI/ObjectUI.py:1918 flatcamGUI/ObjectUI.py:1929 msgid "P" msgstr "" -#: flatcamGUI/ObjectUI.py:1887 +#: flatcamGUI/ObjectUI.py:1939 msgid "Update Plot" msgstr "" -#: flatcamGUI/ObjectUI.py:1889 +#: flatcamGUI/ObjectUI.py:1941 msgid "Update the plot." msgstr "" -#: flatcamGUI/ObjectUI.py:1896 flatcamGUI/PreferencesUI.py:3819 +#: flatcamGUI/ObjectUI.py:1948 flatcamGUI/PreferencesUI.py:3820 msgid "Export CNC Code" msgstr "" -#: flatcamGUI/ObjectUI.py:1898 flatcamGUI/PreferencesUI.py:3760 -#: flatcamGUI/PreferencesUI.py:3821 +#: flatcamGUI/ObjectUI.py:1950 flatcamGUI/PreferencesUI.py:3761 +#: flatcamGUI/PreferencesUI.py:3822 msgid "" "Export and save G-Code to\n" "make this object to a file." msgstr "" -#: flatcamGUI/ObjectUI.py:1904 +#: flatcamGUI/ObjectUI.py:1956 msgid "Prepend to CNC Code" msgstr "" -#: flatcamGUI/ObjectUI.py:1906 flatcamGUI/ObjectUI.py:1913 flatcamGUI/PreferencesUI.py:3776 -#: flatcamGUI/PreferencesUI.py:3783 +#: flatcamGUI/ObjectUI.py:1958 flatcamGUI/ObjectUI.py:1965 flatcamGUI/PreferencesUI.py:3777 +#: flatcamGUI/PreferencesUI.py:3784 msgid "" "Type here any G-Code commands you would\n" "like to add at the beginning of the G-Code file." msgstr "" -#: flatcamGUI/ObjectUI.py:1919 +#: flatcamGUI/ObjectUI.py:1971 msgid "Append to CNC Code" msgstr "" -#: flatcamGUI/ObjectUI.py:1921 flatcamGUI/ObjectUI.py:1929 flatcamGUI/PreferencesUI.py:3792 -#: flatcamGUI/PreferencesUI.py:3800 +#: flatcamGUI/ObjectUI.py:1973 flatcamGUI/ObjectUI.py:1981 flatcamGUI/PreferencesUI.py:3793 +#: flatcamGUI/PreferencesUI.py:3801 msgid "" "Type here any G-Code commands you would\n" "like to append to the generated file.\n" "I.e.: M2 (End of program)" msgstr "" -#: flatcamGUI/ObjectUI.py:1943 flatcamGUI/PreferencesUI.py:3827 +#: flatcamGUI/ObjectUI.py:1995 flatcamGUI/PreferencesUI.py:3828 msgid "Toolchange G-Code" msgstr "" -#: flatcamGUI/ObjectUI.py:1946 flatcamGUI/PreferencesUI.py:3830 +#: flatcamGUI/ObjectUI.py:1998 flatcamGUI/PreferencesUI.py:3831 msgid "" "Type here any G-Code commands you would\n" "like to be executed when Toolchange event is encountered.\n" @@ -7300,7 +7300,7 @@ msgid "" "having as template the 'Toolchange Custom' posprocessor file." msgstr "" -#: flatcamGUI/ObjectUI.py:1961 flatcamGUI/PreferencesUI.py:3853 +#: flatcamGUI/ObjectUI.py:2013 flatcamGUI/PreferencesUI.py:3854 msgid "" "Type here any G-Code commands you would\n" "like to be executed when Toolchange event is encountered.\n" @@ -7311,174 +7311,174 @@ msgid "" "that has 'toolchange_custom' in it's name." msgstr "" -#: flatcamGUI/ObjectUI.py:1976 flatcamGUI/PreferencesUI.py:3869 +#: flatcamGUI/ObjectUI.py:2028 flatcamGUI/PreferencesUI.py:3870 msgid "Use Toolchange Macro" msgstr "" -#: flatcamGUI/ObjectUI.py:1978 flatcamGUI/PreferencesUI.py:3871 +#: flatcamGUI/ObjectUI.py:2030 flatcamGUI/PreferencesUI.py:3872 msgid "" "Check this box if you want to use\n" "a Custom Toolchange GCode (macro)." msgstr "" -#: flatcamGUI/ObjectUI.py:1986 flatcamGUI/PreferencesUI.py:3883 +#: flatcamGUI/ObjectUI.py:2038 flatcamGUI/PreferencesUI.py:3884 msgid "" "A list of the FlatCAM variables that can be used\n" "in the Toolchange event.\n" "They have to be surrounded by the '%' symbol" msgstr "" -#: flatcamGUI/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 +#: flatcamGUI/ObjectUI.py:2045 flatcamGUI/PreferencesUI.py:1852 +#: flatcamGUI/PreferencesUI.py:2825 flatcamGUI/PreferencesUI.py:3570 +#: flatcamGUI/PreferencesUI.py:3891 flatcamGUI/PreferencesUI.py:3973 +#: flatcamGUI/PreferencesUI.py:4265 flatcamGUI/PreferencesUI.py:4424 +#: flatcamGUI/PreferencesUI.py:4646 flatcamGUI/PreferencesUI.py:4943 +#: flatcamGUI/PreferencesUI.py:5194 flatcamGUI/PreferencesUI.py:5370 +#: flatcamGUI/PreferencesUI.py:5595 flatcamGUI/PreferencesUI.py:5617 +#: flatcamGUI/PreferencesUI.py:5841 flatcamGUI/PreferencesUI.py:5878 +#: flatcamGUI/PreferencesUI.py:6072 flatcamGUI/PreferencesUI.py:6326 +#: flatcamGUI/PreferencesUI.py:6442 flatcamTools/ToolCopperThieving.py:89 #: flatcamTools/ToolFiducials.py:149 flatcamTools/ToolNonCopperClear.py:315 msgid "Parameters" msgstr "" -#: flatcamGUI/ObjectUI.py:1996 flatcamGUI/PreferencesUI.py:3893 +#: flatcamGUI/ObjectUI.py:2048 flatcamGUI/PreferencesUI.py:3894 msgid "FlatCAM CNC parameters" msgstr "" -#: flatcamGUI/ObjectUI.py:1997 flatcamGUI/PreferencesUI.py:3894 +#: flatcamGUI/ObjectUI.py:2049 flatcamGUI/PreferencesUI.py:3895 msgid "tool number" msgstr "" -#: flatcamGUI/ObjectUI.py:1998 flatcamGUI/PreferencesUI.py:3895 +#: flatcamGUI/ObjectUI.py:2050 flatcamGUI/PreferencesUI.py:3896 msgid "tool diameter" msgstr "" -#: flatcamGUI/ObjectUI.py:1999 flatcamGUI/PreferencesUI.py:3896 +#: flatcamGUI/ObjectUI.py:2051 flatcamGUI/PreferencesUI.py:3897 msgid "for Excellon, total number of drills" msgstr "" -#: flatcamGUI/ObjectUI.py:2001 flatcamGUI/PreferencesUI.py:3898 +#: flatcamGUI/ObjectUI.py:2053 flatcamGUI/PreferencesUI.py:3899 msgid "X coord for Toolchange" msgstr "" -#: flatcamGUI/ObjectUI.py:2002 flatcamGUI/PreferencesUI.py:3899 +#: flatcamGUI/ObjectUI.py:2054 flatcamGUI/PreferencesUI.py:3900 msgid "Y coord for Toolchange" msgstr "" -#: flatcamGUI/ObjectUI.py:2003 flatcamGUI/PreferencesUI.py:3901 +#: flatcamGUI/ObjectUI.py:2055 flatcamGUI/PreferencesUI.py:3902 msgid "Z coord for Toolchange" msgstr "" -#: flatcamGUI/ObjectUI.py:2004 +#: flatcamGUI/ObjectUI.py:2056 msgid "depth where to cut" msgstr "" -#: flatcamGUI/ObjectUI.py:2005 +#: flatcamGUI/ObjectUI.py:2057 msgid "height where to travel" msgstr "" -#: flatcamGUI/ObjectUI.py:2006 flatcamGUI/PreferencesUI.py:3904 +#: flatcamGUI/ObjectUI.py:2058 flatcamGUI/PreferencesUI.py:3905 msgid "the step value for multidepth cut" msgstr "" -#: flatcamGUI/ObjectUI.py:2008 flatcamGUI/PreferencesUI.py:3906 +#: flatcamGUI/ObjectUI.py:2060 flatcamGUI/PreferencesUI.py:3907 msgid "the value for the spindle speed" msgstr "" -#: flatcamGUI/ObjectUI.py:2010 +#: flatcamGUI/ObjectUI.py:2062 msgid "time to dwell to allow the spindle to reach it's set RPM" msgstr "" -#: flatcamGUI/ObjectUI.py:2026 +#: flatcamGUI/ObjectUI.py:2078 msgid "View CNC Code" msgstr "" -#: flatcamGUI/ObjectUI.py:2028 +#: flatcamGUI/ObjectUI.py:2080 msgid "" "Opens TAB to view/modify/print G-Code\n" "file." msgstr "" -#: flatcamGUI/ObjectUI.py:2033 +#: flatcamGUI/ObjectUI.py:2085 msgid "Save CNC Code" msgstr "" -#: flatcamGUI/ObjectUI.py:2035 +#: flatcamGUI/ObjectUI.py:2087 msgid "" "Opens dialog to save G-Code\n" "file." msgstr "" -#: flatcamGUI/ObjectUI.py:2055 +#: flatcamGUI/ObjectUI.py:2118 msgid "Script Object" msgstr "" -#: flatcamGUI/ObjectUI.py:2077 flatcamGUI/ObjectUI.py:2139 +#: flatcamGUI/ObjectUI.py:2140 flatcamGUI/ObjectUI.py:2213 msgid "Auto Completer" msgstr "" -#: flatcamGUI/ObjectUI.py:2079 +#: flatcamGUI/ObjectUI.py:2142 msgid "This selects if the auto completer is enabled in the Script Editor." msgstr "" -#: flatcamGUI/ObjectUI.py:2110 +#: flatcamGUI/ObjectUI.py:2184 msgid "Document Object" msgstr "" -#: flatcamGUI/ObjectUI.py:2141 +#: flatcamGUI/ObjectUI.py:2215 msgid "This selects if the auto completer is enabled in the Document Editor." msgstr "" -#: flatcamGUI/ObjectUI.py:2159 +#: flatcamGUI/ObjectUI.py:2233 msgid "Font Type" msgstr "" -#: flatcamGUI/ObjectUI.py:2176 +#: flatcamGUI/ObjectUI.py:2250 msgid "Font Size" msgstr "" -#: flatcamGUI/ObjectUI.py:2212 +#: flatcamGUI/ObjectUI.py:2286 msgid "Alignment" msgstr "" -#: flatcamGUI/ObjectUI.py:2217 +#: flatcamGUI/ObjectUI.py:2291 msgid "Align Left" msgstr "" -#: flatcamGUI/ObjectUI.py:2222 +#: flatcamGUI/ObjectUI.py:2296 msgid "Center" msgstr "" -#: flatcamGUI/ObjectUI.py:2227 +#: flatcamGUI/ObjectUI.py:2301 msgid "Align Right" msgstr "" -#: flatcamGUI/ObjectUI.py:2232 +#: flatcamGUI/ObjectUI.py:2306 msgid "Justify" msgstr "" -#: flatcamGUI/ObjectUI.py:2239 +#: flatcamGUI/ObjectUI.py:2313 msgid "Font Color" msgstr "" -#: flatcamGUI/ObjectUI.py:2241 +#: flatcamGUI/ObjectUI.py:2315 msgid "Set the font color for the selected text" msgstr "" -#: flatcamGUI/ObjectUI.py:2255 +#: flatcamGUI/ObjectUI.py:2329 msgid "Selection Color" msgstr "" -#: flatcamGUI/ObjectUI.py:2257 +#: flatcamGUI/ObjectUI.py:2331 msgid "Set the selection color when doing text selection." msgstr "" -#: flatcamGUI/ObjectUI.py:2271 +#: flatcamGUI/ObjectUI.py:2345 msgid "Tab Size" msgstr "" -#: flatcamGUI/ObjectUI.py:2273 +#: flatcamGUI/ObjectUI.py:2347 msgid "Set the tab size. In pixels. Default value is 80 pixels." msgstr "" @@ -7536,7 +7536,7 @@ msgstr "" msgid "Wk. Orientation" msgstr "" -#: flatcamGUI/PreferencesUI.py:430 flatcamGUI/PreferencesUI.py:4853 +#: flatcamGUI/PreferencesUI.py:430 flatcamGUI/PreferencesUI.py:4854 #: flatcamTools/ToolFilm.py:420 msgid "" "Can be:\n" @@ -7544,12 +7544,12 @@ msgid "" "- Landscape" msgstr "" -#: flatcamGUI/PreferencesUI.py:434 flatcamGUI/PreferencesUI.py:4857 +#: flatcamGUI/PreferencesUI.py:434 flatcamGUI/PreferencesUI.py:4858 #: flatcamTools/ToolFilm.py:424 msgid "Portrait" msgstr "" -#: flatcamGUI/PreferencesUI.py:435 flatcamGUI/PreferencesUI.py:4858 +#: flatcamGUI/PreferencesUI.py:435 flatcamGUI/PreferencesUI.py:4859 #: flatcamTools/ToolFilm.py:425 msgid "Landscape" msgstr "" @@ -7724,7 +7724,7 @@ msgid "" "It will be applied at the next app start." msgstr "" -#: flatcamGUI/PreferencesUI.py:782 flatcamGUI/PreferencesUI.py:1032 +#: flatcamGUI/PreferencesUI.py:782 flatcamGUI/PreferencesUI.py:1033 msgid "Clear GUI Settings" msgstr "" @@ -7794,153 +7794,153 @@ msgstr "" msgid "Enable display of the splash screen at application startup." msgstr "" -#: flatcamGUI/PreferencesUI.py:899 +#: flatcamGUI/PreferencesUI.py:900 msgid "Sys Tray Icon" msgstr "" -#: flatcamGUI/PreferencesUI.py:901 +#: flatcamGUI/PreferencesUI.py:902 msgid "Enable display of FlatCAM icon in Sys Tray." msgstr "" -#: flatcamGUI/PreferencesUI.py:909 +#: flatcamGUI/PreferencesUI.py:910 msgid "Shell at StartUp" msgstr "" -#: flatcamGUI/PreferencesUI.py:911 flatcamGUI/PreferencesUI.py:916 +#: flatcamGUI/PreferencesUI.py:912 flatcamGUI/PreferencesUI.py:917 msgid "" "Check this box if you want the shell to\n" "start automatically at startup." msgstr "" -#: flatcamGUI/PreferencesUI.py:924 +#: flatcamGUI/PreferencesUI.py:925 msgid "Project at StartUp" msgstr "" -#: flatcamGUI/PreferencesUI.py:926 flatcamGUI/PreferencesUI.py:931 +#: flatcamGUI/PreferencesUI.py:927 flatcamGUI/PreferencesUI.py:932 msgid "" "Check this box if you want the project/selected/tool tab area to\n" "to be shown automatically at startup." msgstr "" -#: flatcamGUI/PreferencesUI.py:939 +#: flatcamGUI/PreferencesUI.py:940 msgid "Project AutoHide" msgstr "" -#: flatcamGUI/PreferencesUI.py:941 flatcamGUI/PreferencesUI.py:947 +#: flatcamGUI/PreferencesUI.py:942 flatcamGUI/PreferencesUI.py:948 msgid "" "Check this box if you want the project/selected/tool tab area to\n" "hide automatically when there are no objects loaded and\n" "to show whenever a new object is created." msgstr "" -#: flatcamGUI/PreferencesUI.py:958 +#: flatcamGUI/PreferencesUI.py:959 msgid "Enable ToolTips" msgstr "" -#: flatcamGUI/PreferencesUI.py:960 flatcamGUI/PreferencesUI.py:965 +#: flatcamGUI/PreferencesUI.py:961 flatcamGUI/PreferencesUI.py:966 msgid "" "Check this box if you want to have toolTips displayed\n" "when hovering with mouse over items throughout the App." msgstr "" -#: flatcamGUI/PreferencesUI.py:973 +#: flatcamGUI/PreferencesUI.py:974 msgid "Mouse Cursor" msgstr "" -#: flatcamGUI/PreferencesUI.py:975 +#: flatcamGUI/PreferencesUI.py:976 msgid "" "Choose a mouse cursor shape.\n" "- Small -> with a customizable size.\n" "- Big -> Infinite lines" msgstr "" -#: flatcamGUI/PreferencesUI.py:981 +#: flatcamGUI/PreferencesUI.py:982 msgid "Small" msgstr "" -#: flatcamGUI/PreferencesUI.py:982 +#: flatcamGUI/PreferencesUI.py:983 msgid "Big" msgstr "" -#: flatcamGUI/PreferencesUI.py:988 +#: flatcamGUI/PreferencesUI.py:989 msgid "Mouse Cursor Size" msgstr "" -#: flatcamGUI/PreferencesUI.py:990 +#: flatcamGUI/PreferencesUI.py:991 msgid "Set the size of the mouse cursor, in pixels." msgstr "" -#: flatcamGUI/PreferencesUI.py:1001 +#: flatcamGUI/PreferencesUI.py:1002 msgid "Delete object confirmation" msgstr "" -#: flatcamGUI/PreferencesUI.py:1003 +#: flatcamGUI/PreferencesUI.py:1004 msgid "" "When checked the application will ask for user confirmation\n" "whenever the Delete object(s) event is triggered, either by\n" "menu shortcut or key shortcut." msgstr "" -#: flatcamGUI/PreferencesUI.py:1029 +#: flatcamGUI/PreferencesUI.py:1030 msgid "Are you sure you want to delete the GUI Settings? \n" msgstr "" -#: flatcamGUI/PreferencesUI.py:1053 +#: flatcamGUI/PreferencesUI.py:1054 msgid "App Preferences" msgstr "" -#: flatcamGUI/PreferencesUI.py:1063 flatcamGUI/PreferencesUI.py:1388 -#: flatcamGUI/PreferencesUI.py:1763 flatcamGUI/PreferencesUI.py:2686 +#: flatcamGUI/PreferencesUI.py:1064 flatcamGUI/PreferencesUI.py:1389 +#: flatcamGUI/PreferencesUI.py:1764 flatcamGUI/PreferencesUI.py:2687 #: flatcamTools/ToolDistance.py:49 flatcamTools/ToolDistanceMin.py:49 #: flatcamTools/ToolPcbWizard.py:127 flatcamTools/ToolProperties.py:152 msgid "Units" msgstr "" -#: flatcamGUI/PreferencesUI.py:1064 +#: flatcamGUI/PreferencesUI.py:1065 msgid "" "The default value for FlatCAM units.\n" "Whatever is selected here is set every time\n" "FLatCAM is started." msgstr "" -#: flatcamGUI/PreferencesUI.py:1067 flatcamGUI/PreferencesUI.py:1394 -#: flatcamGUI/PreferencesUI.py:1769 flatcamGUI/PreferencesUI.py:2223 -#: flatcamGUI/PreferencesUI.py:2692 flatcamTools/ToolCalculators.py:62 +#: flatcamGUI/PreferencesUI.py:1068 flatcamGUI/PreferencesUI.py:1395 +#: flatcamGUI/PreferencesUI.py:1770 flatcamGUI/PreferencesUI.py:2224 +#: flatcamGUI/PreferencesUI.py:2693 flatcamTools/ToolCalculators.py:62 #: flatcamTools/ToolPcbWizard.py:126 msgid "MM" msgstr "" -#: flatcamGUI/PreferencesUI.py:1068 +#: flatcamGUI/PreferencesUI.py:1069 msgid "IN" msgstr "" -#: flatcamGUI/PreferencesUI.py:1074 +#: flatcamGUI/PreferencesUI.py:1075 msgid "Precision MM" msgstr "" -#: flatcamGUI/PreferencesUI.py:1076 +#: flatcamGUI/PreferencesUI.py:1077 msgid "" "The number of decimals used throughout the application\n" "when the set units are in METRIC system.\n" "Any change here require an application restart." msgstr "" -#: flatcamGUI/PreferencesUI.py:1088 +#: flatcamGUI/PreferencesUI.py:1089 msgid "Precision INCH" msgstr "" -#: flatcamGUI/PreferencesUI.py:1090 +#: flatcamGUI/PreferencesUI.py:1091 msgid "" "The number of decimals used throughout the application\n" "when the set units are in INCH system.\n" "Any change here require an application restart." msgstr "" -#: flatcamGUI/PreferencesUI.py:1102 +#: flatcamGUI/PreferencesUI.py:1103 msgid "Graphic Engine" msgstr "" -#: flatcamGUI/PreferencesUI.py:1103 +#: flatcamGUI/PreferencesUI.py:1104 msgid "" "Choose what graphic engine to use in FlatCAM.\n" "Legacy(2D) -> reduced functionality, slow performance but enhanced compatibility.\n" @@ -7950,19 +7950,19 @@ msgid "" "use the Legacy(2D) mode." msgstr "" -#: flatcamGUI/PreferencesUI.py:1109 +#: flatcamGUI/PreferencesUI.py:1110 msgid "Legacy(2D)" msgstr "" -#: flatcamGUI/PreferencesUI.py:1110 +#: flatcamGUI/PreferencesUI.py:1111 msgid "OpenGL(3D)" msgstr "" -#: flatcamGUI/PreferencesUI.py:1117 +#: flatcamGUI/PreferencesUI.py:1118 msgid "APP. LEVEL" msgstr "" -#: flatcamGUI/PreferencesUI.py:1118 +#: flatcamGUI/PreferencesUI.py:1119 msgid "" "Choose the default level of usage for FlatCAM.\n" "BASIC level -> reduced functionality, best for beginner's.\n" @@ -7972,11 +7972,11 @@ msgid "" "the Selected Tab for all kinds of FlatCAM objects." msgstr "" -#: flatcamGUI/PreferencesUI.py:1130 +#: flatcamGUI/PreferencesUI.py:1131 msgid "Portable app" msgstr "" -#: flatcamGUI/PreferencesUI.py:1131 +#: flatcamGUI/PreferencesUI.py:1132 msgid "" "Choose if the application should run as portable.\n" "\n" @@ -7985,19 +7985,19 @@ msgid "" "in the application folder, in the lib\\config subfolder." msgstr "" -#: flatcamGUI/PreferencesUI.py:1141 +#: flatcamGUI/PreferencesUI.py:1142 msgid "Languages" msgstr "" -#: flatcamGUI/PreferencesUI.py:1142 +#: flatcamGUI/PreferencesUI.py:1143 msgid "Set the language used throughout FlatCAM." msgstr "" -#: flatcamGUI/PreferencesUI.py:1148 +#: flatcamGUI/PreferencesUI.py:1149 msgid "Apply Language" msgstr "" -#: flatcamGUI/PreferencesUI.py:1149 +#: flatcamGUI/PreferencesUI.py:1150 msgid "" "Set the language used throughout FlatCAM.\n" "The app will restart after click.Windows: When FlatCAM is installed in Program Files\n" @@ -8007,66 +8007,66 @@ msgid "" "applied at the next app start." msgstr "" -#: flatcamGUI/PreferencesUI.py:1161 +#: flatcamGUI/PreferencesUI.py:1162 msgid "Version Check" msgstr "" -#: flatcamGUI/PreferencesUI.py:1163 flatcamGUI/PreferencesUI.py:1168 +#: flatcamGUI/PreferencesUI.py:1164 flatcamGUI/PreferencesUI.py:1169 msgid "" "Check this box if you want to check\n" "for a new version automatically at startup." msgstr "" -#: flatcamGUI/PreferencesUI.py:1176 +#: flatcamGUI/PreferencesUI.py:1177 msgid "Send Stats" msgstr "" -#: flatcamGUI/PreferencesUI.py:1178 flatcamGUI/PreferencesUI.py:1183 +#: flatcamGUI/PreferencesUI.py:1179 flatcamGUI/PreferencesUI.py:1184 msgid "" "Check this box if you agree to send anonymous\n" "stats automatically at startup, to help improve FlatCAM." msgstr "" -#: flatcamGUI/PreferencesUI.py:1193 +#: flatcamGUI/PreferencesUI.py:1194 msgid "Pan Button" msgstr "" -#: flatcamGUI/PreferencesUI.py:1194 +#: flatcamGUI/PreferencesUI.py:1195 msgid "" "Select the mouse button to use for panning:\n" "- MMB --> Middle Mouse Button\n" "- RMB --> Right Mouse Button" msgstr "" -#: flatcamGUI/PreferencesUI.py:1197 +#: flatcamGUI/PreferencesUI.py:1198 msgid "MMB" msgstr "" -#: flatcamGUI/PreferencesUI.py:1198 +#: flatcamGUI/PreferencesUI.py:1199 msgid "RMB" msgstr "" -#: flatcamGUI/PreferencesUI.py:1204 +#: flatcamGUI/PreferencesUI.py:1205 msgid "Multiple Sel" msgstr "" -#: flatcamGUI/PreferencesUI.py:1205 +#: flatcamGUI/PreferencesUI.py:1206 msgid "Select the key used for multiple selection." msgstr "" -#: flatcamGUI/PreferencesUI.py:1206 +#: flatcamGUI/PreferencesUI.py:1207 msgid "CTRL" msgstr "" -#: flatcamGUI/PreferencesUI.py:1207 +#: flatcamGUI/PreferencesUI.py:1208 msgid "SHIFT" msgstr "" -#: flatcamGUI/PreferencesUI.py:1213 +#: flatcamGUI/PreferencesUI.py:1214 msgid "Workers number" msgstr "" -#: flatcamGUI/PreferencesUI.py:1215 flatcamGUI/PreferencesUI.py:1224 +#: flatcamGUI/PreferencesUI.py:1216 flatcamGUI/PreferencesUI.py:1225 msgid "" "The number of Qthreads made available to the App.\n" "A bigger number may finish the jobs more quickly but\n" @@ -8076,11 +8076,11 @@ msgid "" "After change, it will be applied at next App start." msgstr "" -#: flatcamGUI/PreferencesUI.py:1237 +#: flatcamGUI/PreferencesUI.py:1238 msgid "Geo Tolerance" msgstr "" -#: flatcamGUI/PreferencesUI.py:1239 flatcamGUI/PreferencesUI.py:1248 +#: flatcamGUI/PreferencesUI.py:1240 flatcamGUI/PreferencesUI.py:1249 msgid "" "This value can counter the effect of the Circle Steps\n" "parameter. Default value is 0.01.\n" @@ -8090,11 +8090,11 @@ msgid "" "performance at the expense of level of detail." msgstr "" -#: flatcamGUI/PreferencesUI.py:1263 +#: flatcamGUI/PreferencesUI.py:1264 msgid "\"Open\" behavior" msgstr "" -#: flatcamGUI/PreferencesUI.py:1265 +#: flatcamGUI/PreferencesUI.py:1266 msgid "" "When checked the path for the last saved file is used when saving files,\n" "and the path for the last opened file is used when opening files.\n" @@ -8103,43 +8103,43 @@ msgid "" "path for saving files or the path for opening files." msgstr "" -#: flatcamGUI/PreferencesUI.py:1274 +#: flatcamGUI/PreferencesUI.py:1275 msgid "Save Compressed Project" msgstr "" -#: flatcamGUI/PreferencesUI.py:1276 +#: flatcamGUI/PreferencesUI.py:1277 msgid "" "Whether to save a compressed or uncompressed project.\n" "When checked it will save a compressed FlatCAM project." msgstr "" -#: flatcamGUI/PreferencesUI.py:1285 +#: flatcamGUI/PreferencesUI.py:1286 msgid "Compression" msgstr "" -#: flatcamGUI/PreferencesUI.py:1287 +#: flatcamGUI/PreferencesUI.py:1288 msgid "" "The level of compression used when saving\n" "a FlatCAM project. Higher value means better compression\n" "but require more RAM usage and more processing time." msgstr "" -#: flatcamGUI/PreferencesUI.py:1299 +#: flatcamGUI/PreferencesUI.py:1300 msgid "Bookmarks limit" msgstr "" -#: flatcamGUI/PreferencesUI.py:1301 +#: flatcamGUI/PreferencesUI.py:1302 msgid "" "The maximum number of bookmarks that may be installed in the menu.\n" "The number of bookmarks in the bookmark manager may be greater\n" "but the menu will hold only so much." msgstr "" -#: flatcamGUI/PreferencesUI.py:1310 +#: flatcamGUI/PreferencesUI.py:1311 msgid "Allow Machinist Unsafe Settings" msgstr "" -#: flatcamGUI/PreferencesUI.py:1312 +#: flatcamGUI/PreferencesUI.py:1313 msgid "" "If checked, some of the application settings will be allowed\n" "to have values that are usually unsafe to use.\n" @@ -8148,54 +8148,54 @@ msgid "" "<>: Don't change this unless you know what you are doing !!!" msgstr "" -#: flatcamGUI/PreferencesUI.py:1333 +#: flatcamGUI/PreferencesUI.py:1334 msgid "Gerber General" msgstr "" -#: flatcamGUI/PreferencesUI.py:1351 +#: flatcamGUI/PreferencesUI.py:1352 msgid "M-Color" msgstr "" -#: flatcamGUI/PreferencesUI.py:1365 flatcamGUI/PreferencesUI.py:3128 -#: flatcamGUI/PreferencesUI.py:3664 flatcamGUI/PreferencesUI.py:6079 +#: flatcamGUI/PreferencesUI.py:1366 flatcamGUI/PreferencesUI.py:3129 +#: flatcamGUI/PreferencesUI.py:3665 flatcamGUI/PreferencesUI.py:6080 msgid "Circle Steps" msgstr "" -#: flatcamGUI/PreferencesUI.py:1367 +#: flatcamGUI/PreferencesUI.py:1368 msgid "" "The number of circle steps for Gerber \n" "circular aperture linear approximation." msgstr "" -#: flatcamGUI/PreferencesUI.py:1379 +#: flatcamGUI/PreferencesUI.py:1380 msgid "Default Values" msgstr "" -#: flatcamGUI/PreferencesUI.py:1381 +#: flatcamGUI/PreferencesUI.py:1382 msgid "" "Those values will be used as fallback values\n" "in case that they are not found in the Gerber file." msgstr "" -#: flatcamGUI/PreferencesUI.py:1390 flatcamGUI/PreferencesUI.py:1396 -#: flatcamGUI/PreferencesUI.py:1765 flatcamGUI/PreferencesUI.py:1771 +#: flatcamGUI/PreferencesUI.py:1391 flatcamGUI/PreferencesUI.py:1397 +#: flatcamGUI/PreferencesUI.py:1766 flatcamGUI/PreferencesUI.py:1772 msgid "The units used in the Gerber file." msgstr "" -#: flatcamGUI/PreferencesUI.py:1393 flatcamGUI/PreferencesUI.py:1768 -#: flatcamGUI/PreferencesUI.py:2124 flatcamGUI/PreferencesUI.py:2222 -#: flatcamGUI/PreferencesUI.py:2691 flatcamTools/ToolCalculators.py:61 +#: flatcamGUI/PreferencesUI.py:1394 flatcamGUI/PreferencesUI.py:1769 +#: flatcamGUI/PreferencesUI.py:2125 flatcamGUI/PreferencesUI.py:2223 +#: flatcamGUI/PreferencesUI.py:2692 flatcamTools/ToolCalculators.py:61 #: flatcamTools/ToolPcbWizard.py:125 msgid "INCH" msgstr "" -#: flatcamGUI/PreferencesUI.py:1403 flatcamGUI/PreferencesUI.py:1817 -#: flatcamGUI/PreferencesUI.py:2759 +#: flatcamGUI/PreferencesUI.py:1404 flatcamGUI/PreferencesUI.py:1818 +#: flatcamGUI/PreferencesUI.py:2760 msgid "Zeros" msgstr "" -#: flatcamGUI/PreferencesUI.py:1406 flatcamGUI/PreferencesUI.py:1416 -#: flatcamGUI/PreferencesUI.py:1820 flatcamGUI/PreferencesUI.py:1830 +#: flatcamGUI/PreferencesUI.py:1407 flatcamGUI/PreferencesUI.py:1417 +#: flatcamGUI/PreferencesUI.py:1821 flatcamGUI/PreferencesUI.py:1831 msgid "" "This sets the type of Gerber zeros.\n" "If LZ then Leading Zeros are removed and\n" @@ -8204,67 +8204,67 @@ msgid "" "and Leading Zeros are kept." msgstr "" -#: flatcamGUI/PreferencesUI.py:1413 flatcamGUI/PreferencesUI.py:1827 -#: flatcamGUI/PreferencesUI.py:2198 flatcamGUI/PreferencesUI.py:2769 +#: flatcamGUI/PreferencesUI.py:1414 flatcamGUI/PreferencesUI.py:1828 +#: flatcamGUI/PreferencesUI.py:2199 flatcamGUI/PreferencesUI.py:2770 #: flatcamTools/ToolPcbWizard.py:111 msgid "LZ" msgstr "" -#: flatcamGUI/PreferencesUI.py:1414 flatcamGUI/PreferencesUI.py:1828 -#: flatcamGUI/PreferencesUI.py:2199 flatcamGUI/PreferencesUI.py:2770 +#: flatcamGUI/PreferencesUI.py:1415 flatcamGUI/PreferencesUI.py:1829 +#: flatcamGUI/PreferencesUI.py:2200 flatcamGUI/PreferencesUI.py:2771 #: flatcamTools/ToolPcbWizard.py:112 msgid "TZ" msgstr "" -#: flatcamGUI/PreferencesUI.py:1435 +#: flatcamGUI/PreferencesUI.py:1436 msgid "Gerber Options" msgstr "" -#: flatcamGUI/PreferencesUI.py:1509 flatcamGUI/PreferencesUI.py:3601 -#: flatcamGUI/PreferencesUI.py:4075 flatcamTools/ToolNonCopperClear.py:170 +#: flatcamGUI/PreferencesUI.py:1510 flatcamGUI/PreferencesUI.py:3602 +#: flatcamGUI/PreferencesUI.py:4076 flatcamTools/ToolNonCopperClear.py:170 msgid "Conv." msgstr "" -#: flatcamGUI/PreferencesUI.py:1513 +#: flatcamGUI/PreferencesUI.py:1514 msgid "Combine Passes" msgstr "" -#: flatcamGUI/PreferencesUI.py:1591 +#: flatcamGUI/PreferencesUI.py:1592 msgid "Gerber Adv. Options" msgstr "" -#: flatcamGUI/PreferencesUI.py:1595 flatcamGUI/PreferencesUI.py:2544 -#: flatcamGUI/PreferencesUI.py:3399 +#: flatcamGUI/PreferencesUI.py:1596 flatcamGUI/PreferencesUI.py:2545 +#: flatcamGUI/PreferencesUI.py:3400 msgid "Advanced Options" msgstr "" -#: flatcamGUI/PreferencesUI.py:1597 +#: flatcamGUI/PreferencesUI.py:1598 msgid "" "A list of Gerber advanced parameters.\n" "Those parameters are available only for\n" "Advanced App. Level." msgstr "" -#: flatcamGUI/PreferencesUI.py:1616 +#: flatcamGUI/PreferencesUI.py:1617 msgid "Table Show/Hide" msgstr "" -#: flatcamGUI/PreferencesUI.py:1618 +#: flatcamGUI/PreferencesUI.py:1619 msgid "" "Toggle the display of the Gerber Apertures Table.\n" "Also, on hide, it will delete all mark shapes\n" "that are drawn on canvas." msgstr "" -#: flatcamGUI/PreferencesUI.py:1693 +#: flatcamGUI/PreferencesUI.py:1694 msgid "Exterior" msgstr "" -#: flatcamGUI/PreferencesUI.py:1694 +#: flatcamGUI/PreferencesUI.py:1695 msgid "Interior" msgstr "" -#: flatcamGUI/PreferencesUI.py:1702 +#: flatcamGUI/PreferencesUI.py:1703 msgid "" "Buffering type:\n" "- None --> best performance, fast file loading but no so good display\n" @@ -8272,79 +8272,79 @@ msgid "" "<>: Don't change this unless you know what you are doing !!!" msgstr "" -#: flatcamGUI/PreferencesUI.py:1707 flatcamGUI/PreferencesUI.py:4821 -#: flatcamGUI/PreferencesUI.py:6377 flatcamTools/ToolFiducials.py:201 +#: flatcamGUI/PreferencesUI.py:1708 flatcamGUI/PreferencesUI.py:4822 +#: flatcamGUI/PreferencesUI.py:6378 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 msgid "None" msgstr "" -#: flatcamGUI/PreferencesUI.py:1713 +#: flatcamGUI/PreferencesUI.py:1714 msgid "Simplify" msgstr "" -#: flatcamGUI/PreferencesUI.py:1715 +#: flatcamGUI/PreferencesUI.py:1716 msgid "" "When checked all the Gerber polygons will be\n" "loaded with simplification having a set tolerance.\n" "<>: Don't change this unless you know what you are doing !!!" msgstr "" -#: flatcamGUI/PreferencesUI.py:1722 +#: flatcamGUI/PreferencesUI.py:1723 msgid "Tolerance" msgstr "" -#: flatcamGUI/PreferencesUI.py:1723 +#: flatcamGUI/PreferencesUI.py:1724 msgid "Tolerance for polygon simplification." msgstr "" -#: flatcamGUI/PreferencesUI.py:1748 +#: flatcamGUI/PreferencesUI.py:1749 msgid "Gerber Export" msgstr "" -#: flatcamGUI/PreferencesUI.py:1752 flatcamGUI/PreferencesUI.py:2675 +#: flatcamGUI/PreferencesUI.py:1753 flatcamGUI/PreferencesUI.py:2676 msgid "Export Options" msgstr "" -#: flatcamGUI/PreferencesUI.py:1754 +#: flatcamGUI/PreferencesUI.py:1755 msgid "" "The parameters set here are used in the file exported\n" "when using the File -> Export -> Export Gerber menu entry." msgstr "" -#: flatcamGUI/PreferencesUI.py:1777 flatcamGUI/PreferencesUI.py:2700 +#: flatcamGUI/PreferencesUI.py:1778 flatcamGUI/PreferencesUI.py:2701 msgid "Int/Decimals" msgstr "" -#: flatcamGUI/PreferencesUI.py:1779 +#: flatcamGUI/PreferencesUI.py:1780 msgid "" "The number of digits in the whole part of the number\n" "and in the fractional part of the number." msgstr "" -#: flatcamGUI/PreferencesUI.py:1792 +#: flatcamGUI/PreferencesUI.py:1793 msgid "" "This numbers signify the number of digits in\n" "the whole part of Gerber coordinates." msgstr "" -#: flatcamGUI/PreferencesUI.py:1808 +#: flatcamGUI/PreferencesUI.py:1809 msgid "" "This numbers signify the number of digits in\n" "the decimal part of Gerber coordinates." msgstr "" -#: flatcamGUI/PreferencesUI.py:1853 +#: flatcamGUI/PreferencesUI.py:1854 msgid "A list of Gerber Editor parameters." msgstr "" -#: flatcamGUI/PreferencesUI.py:1861 flatcamGUI/PreferencesUI.py:2834 -#: flatcamGUI/PreferencesUI.py:3579 flatcamGUI/PreferencesUI.py:6040 +#: flatcamGUI/PreferencesUI.py:1862 flatcamGUI/PreferencesUI.py:2835 +#: flatcamGUI/PreferencesUI.py:3580 flatcamGUI/PreferencesUI.py:6041 msgid "Selection limit" msgstr "" -#: flatcamGUI/PreferencesUI.py:1863 +#: flatcamGUI/PreferencesUI.py:1864 msgid "" "Set the number of selected Gerber geometry\n" "items above which the utility geometry\n" @@ -8353,104 +8353,104 @@ msgid "" "large number of geometric elements." msgstr "" -#: flatcamGUI/PreferencesUI.py:1876 +#: flatcamGUI/PreferencesUI.py:1877 msgid "New Aperture code" msgstr "" -#: flatcamGUI/PreferencesUI.py:1889 +#: flatcamGUI/PreferencesUI.py:1890 msgid "New Aperture size" msgstr "" -#: flatcamGUI/PreferencesUI.py:1891 +#: flatcamGUI/PreferencesUI.py:1892 msgid "Size for the new aperture" msgstr "" -#: flatcamGUI/PreferencesUI.py:1902 +#: flatcamGUI/PreferencesUI.py:1903 msgid "New Aperture type" msgstr "" -#: flatcamGUI/PreferencesUI.py:1904 +#: flatcamGUI/PreferencesUI.py:1905 msgid "" "Type for the new aperture.\n" "Can be 'C', 'R' or 'O'." msgstr "" -#: flatcamGUI/PreferencesUI.py:1926 +#: flatcamGUI/PreferencesUI.py:1927 msgid "Aperture Dimensions" msgstr "" -#: flatcamGUI/PreferencesUI.py:1928 flatcamGUI/PreferencesUI.py:3146 -#: flatcamGUI/PreferencesUI.py:3984 +#: flatcamGUI/PreferencesUI.py:1929 flatcamGUI/PreferencesUI.py:3147 +#: flatcamGUI/PreferencesUI.py:3985 msgid "Diameters of the cutting tools, separated by ','" msgstr "" -#: flatcamGUI/PreferencesUI.py:1934 +#: flatcamGUI/PreferencesUI.py:1935 msgid "Linear Pad Array" msgstr "" -#: flatcamGUI/PreferencesUI.py:1938 flatcamGUI/PreferencesUI.py:2878 -#: flatcamGUI/PreferencesUI.py:3026 +#: flatcamGUI/PreferencesUI.py:1939 flatcamGUI/PreferencesUI.py:2879 +#: flatcamGUI/PreferencesUI.py:3027 msgid "Linear Direction" msgstr "" -#: flatcamGUI/PreferencesUI.py:1978 +#: flatcamGUI/PreferencesUI.py:1979 msgid "Circular Pad Array" msgstr "" -#: flatcamGUI/PreferencesUI.py:1982 flatcamGUI/PreferencesUI.py:2924 -#: flatcamGUI/PreferencesUI.py:3074 +#: flatcamGUI/PreferencesUI.py:1983 flatcamGUI/PreferencesUI.py:2925 +#: flatcamGUI/PreferencesUI.py:3075 msgid "Circular Direction" msgstr "" -#: flatcamGUI/PreferencesUI.py:1984 flatcamGUI/PreferencesUI.py:2926 -#: flatcamGUI/PreferencesUI.py:3076 +#: flatcamGUI/PreferencesUI.py:1985 flatcamGUI/PreferencesUI.py:2927 +#: flatcamGUI/PreferencesUI.py:3077 msgid "" "Direction for circular array.\n" "Can be CW = clockwise or CCW = counter clockwise." msgstr "" -#: flatcamGUI/PreferencesUI.py:1995 flatcamGUI/PreferencesUI.py:2937 -#: flatcamGUI/PreferencesUI.py:3087 +#: flatcamGUI/PreferencesUI.py:1996 flatcamGUI/PreferencesUI.py:2938 +#: flatcamGUI/PreferencesUI.py:3088 msgid "Circular Angle" msgstr "" -#: flatcamGUI/PreferencesUI.py:2014 +#: flatcamGUI/PreferencesUI.py:2015 msgid "Distance at which to buffer the Gerber element." msgstr "" -#: flatcamGUI/PreferencesUI.py:2023 +#: flatcamGUI/PreferencesUI.py:2024 msgid "Scale Tool" msgstr "" -#: flatcamGUI/PreferencesUI.py:2029 +#: flatcamGUI/PreferencesUI.py:2030 msgid "Factor to scale the Gerber element." msgstr "" -#: flatcamGUI/PreferencesUI.py:2042 +#: flatcamGUI/PreferencesUI.py:2043 msgid "Threshold low" msgstr "" -#: flatcamGUI/PreferencesUI.py:2044 +#: flatcamGUI/PreferencesUI.py:2045 msgid "Threshold value under which the apertures are not marked." msgstr "" -#: flatcamGUI/PreferencesUI.py:2054 +#: flatcamGUI/PreferencesUI.py:2055 msgid "Threshold high" msgstr "" -#: flatcamGUI/PreferencesUI.py:2056 +#: flatcamGUI/PreferencesUI.py:2057 msgid "Threshold value over which the apertures are not marked." msgstr "" -#: flatcamGUI/PreferencesUI.py:2074 +#: flatcamGUI/PreferencesUI.py:2075 msgid "Excellon General" msgstr "" -#: flatcamGUI/PreferencesUI.py:2097 +#: flatcamGUI/PreferencesUI.py:2098 msgid "Excellon Format" msgstr "" -#: flatcamGUI/PreferencesUI.py:2099 +#: flatcamGUI/PreferencesUI.py:2100 msgid "" "The NC drill files, usually named Excellon files\n" "are files that can be found in different formats.\n" @@ -8473,37 +8473,37 @@ msgid "" "KiCAD 3:5 INCH TZ" msgstr "" -#: flatcamGUI/PreferencesUI.py:2127 +#: flatcamGUI/PreferencesUI.py:2128 msgid "Default values for INCH are 2:4" msgstr "" -#: flatcamGUI/PreferencesUI.py:2134 flatcamGUI/PreferencesUI.py:2165 -#: flatcamGUI/PreferencesUI.py:2714 +#: flatcamGUI/PreferencesUI.py:2135 flatcamGUI/PreferencesUI.py:2166 +#: flatcamGUI/PreferencesUI.py:2715 msgid "" "This numbers signify the number of digits in\n" "the whole part of Excellon coordinates." msgstr "" -#: flatcamGUI/PreferencesUI.py:2147 flatcamGUI/PreferencesUI.py:2178 -#: flatcamGUI/PreferencesUI.py:2727 +#: flatcamGUI/PreferencesUI.py:2148 flatcamGUI/PreferencesUI.py:2179 +#: flatcamGUI/PreferencesUI.py:2728 msgid "" "This numbers signify the number of digits in\n" "the decimal part of Excellon coordinates." msgstr "" -#: flatcamGUI/PreferencesUI.py:2155 +#: flatcamGUI/PreferencesUI.py:2156 msgid "METRIC" msgstr "" -#: flatcamGUI/PreferencesUI.py:2158 +#: flatcamGUI/PreferencesUI.py:2159 msgid "Default values for METRIC are 3:3" msgstr "" -#: flatcamGUI/PreferencesUI.py:2187 +#: flatcamGUI/PreferencesUI.py:2188 msgid "Default Zeros" msgstr "" -#: flatcamGUI/PreferencesUI.py:2190 flatcamGUI/PreferencesUI.py:2762 +#: flatcamGUI/PreferencesUI.py:2191 flatcamGUI/PreferencesUI.py:2763 msgid "" "This sets the type of Excellon zeros.\n" "If LZ then Leading Zeros are kept and\n" @@ -8512,7 +8512,7 @@ msgid "" "and Leading Zeros are removed." msgstr "" -#: flatcamGUI/PreferencesUI.py:2201 +#: flatcamGUI/PreferencesUI.py:2202 msgid "" "This sets the default type of Excellon zeros.\n" "If it is not detected in the parsed file the value here\n" @@ -8522,11 +8522,11 @@ msgid "" "and Leading Zeros are removed." msgstr "" -#: flatcamGUI/PreferencesUI.py:2211 +#: flatcamGUI/PreferencesUI.py:2212 msgid "Default Units" msgstr "" -#: flatcamGUI/PreferencesUI.py:2214 +#: flatcamGUI/PreferencesUI.py:2215 msgid "" "This sets the default units of Excellon files.\n" "If it is not detected in the parsed file the value here\n" @@ -8534,26 +8534,26 @@ msgid "" "therefore this parameter will be used." msgstr "" -#: flatcamGUI/PreferencesUI.py:2225 +#: flatcamGUI/PreferencesUI.py:2226 msgid "" "This sets the units of Excellon files.\n" "Some Excellon files don't have an header\n" "therefore this parameter will be used." msgstr "" -#: flatcamGUI/PreferencesUI.py:2231 +#: flatcamGUI/PreferencesUI.py:2232 msgid "Update Export settings" msgstr "" -#: flatcamGUI/PreferencesUI.py:2239 +#: flatcamGUI/PreferencesUI.py:2240 msgid "Excellon Optimization" msgstr "" -#: flatcamGUI/PreferencesUI.py:2242 +#: flatcamGUI/PreferencesUI.py:2243 msgid "Algorithm:" msgstr "" -#: flatcamGUI/PreferencesUI.py:2244 flatcamGUI/PreferencesUI.py:2261 +#: flatcamGUI/PreferencesUI.py:2245 flatcamGUI/PreferencesUI.py:2262 msgid "" "This sets the optimization type for the Excellon drill path.\n" "If <> is checked then Google OR-Tools algorithm with\n" @@ -8566,19 +8566,19 @@ msgid "" "Travelling Salesman algorithm for path optimization." msgstr "" -#: flatcamGUI/PreferencesUI.py:2256 +#: flatcamGUI/PreferencesUI.py:2257 msgid "MetaHeuristic" msgstr "" -#: flatcamGUI/PreferencesUI.py:2258 +#: flatcamGUI/PreferencesUI.py:2259 msgid "TSA" msgstr "" -#: flatcamGUI/PreferencesUI.py:2273 +#: flatcamGUI/PreferencesUI.py:2274 msgid "Optimization Time" msgstr "" -#: flatcamGUI/PreferencesUI.py:2276 +#: flatcamGUI/PreferencesUI.py:2277 msgid "" "When OR-Tools Metaheuristic (MH) is enabled there is a\n" "maximum threshold for how much time is spent doing the\n" @@ -8586,21 +8586,21 @@ msgid "" "In seconds." msgstr "" -#: flatcamGUI/PreferencesUI.py:2319 +#: flatcamGUI/PreferencesUI.py:2320 msgid "Excellon Options" msgstr "" -#: flatcamGUI/PreferencesUI.py:2325 +#: flatcamGUI/PreferencesUI.py:2326 msgid "" "Parameters used to create a CNC Job object\n" "for this drill object." msgstr "" -#: flatcamGUI/PreferencesUI.py:2444 flatcamGUI/PreferencesUI.py:3358 +#: flatcamGUI/PreferencesUI.py:2445 flatcamGUI/PreferencesUI.py:3359 msgid "Duration" msgstr "" -#: flatcamGUI/PreferencesUI.py:2474 +#: flatcamGUI/PreferencesUI.py:2475 msgid "" "Choose what to use for GCode generation:\n" "'Drills', 'Slots' or 'Both'.\n" @@ -8608,38 +8608,38 @@ msgid "" "converted to drills." msgstr "" -#: flatcamGUI/PreferencesUI.py:2492 +#: flatcamGUI/PreferencesUI.py:2493 msgid "Create Geometry for milling holes." msgstr "" -#: flatcamGUI/PreferencesUI.py:2524 +#: flatcamGUI/PreferencesUI.py:2525 msgid "Defaults" msgstr "" -#: flatcamGUI/PreferencesUI.py:2537 +#: flatcamGUI/PreferencesUI.py:2538 msgid "Excellon Adv. Options" msgstr "" -#: flatcamGUI/PreferencesUI.py:2546 +#: flatcamGUI/PreferencesUI.py:2547 msgid "" "A list of Excellon advanced parameters.\n" "Those parameters are available only for\n" "Advanced App. Level." msgstr "" -#: flatcamGUI/PreferencesUI.py:2567 +#: flatcamGUI/PreferencesUI.py:2568 msgid "Toolchange X,Y" msgstr "" -#: flatcamGUI/PreferencesUI.py:2569 flatcamGUI/PreferencesUI.py:3413 +#: flatcamGUI/PreferencesUI.py:2570 flatcamGUI/PreferencesUI.py:3414 msgid "Toolchange X,Y position." msgstr "" -#: flatcamGUI/PreferencesUI.py:2626 flatcamGUI/PreferencesUI.py:3500 +#: flatcamGUI/PreferencesUI.py:2627 flatcamGUI/PreferencesUI.py:3501 msgid "Spindle direction" msgstr "" -#: flatcamGUI/PreferencesUI.py:2628 flatcamGUI/PreferencesUI.py:3502 +#: flatcamGUI/PreferencesUI.py:2629 flatcamGUI/PreferencesUI.py:3503 msgid "" "This sets the direction that the spindle is rotating.\n" "It can be either:\n" @@ -8647,11 +8647,11 @@ msgid "" "- CCW = counter clockwise" msgstr "" -#: flatcamGUI/PreferencesUI.py:2639 flatcamGUI/PreferencesUI.py:3514 +#: flatcamGUI/PreferencesUI.py:2640 flatcamGUI/PreferencesUI.py:3515 msgid "Fast Plunge" msgstr "" -#: flatcamGUI/PreferencesUI.py:2641 flatcamGUI/PreferencesUI.py:3516 +#: flatcamGUI/PreferencesUI.py:2642 flatcamGUI/PreferencesUI.py:3517 msgid "" "By checking this, the vertical move from\n" "Z_Toolchange to Z_move is done with G0,\n" @@ -8659,11 +8659,11 @@ msgid "" "WARNING: the move is done at Toolchange X,Y coords." msgstr "" -#: flatcamGUI/PreferencesUI.py:2650 +#: flatcamGUI/PreferencesUI.py:2651 msgid "Fast Retract" msgstr "" -#: flatcamGUI/PreferencesUI.py:2652 +#: flatcamGUI/PreferencesUI.py:2653 msgid "" "Exit hole strategy.\n" " - When uncheked, while exiting the drilled hole the drill bit\n" @@ -8673,21 +8673,21 @@ msgid "" "(travel height) is done as fast as possible (G0) in one move." msgstr "" -#: flatcamGUI/PreferencesUI.py:2671 +#: flatcamGUI/PreferencesUI.py:2672 msgid "Excellon Export" msgstr "" -#: flatcamGUI/PreferencesUI.py:2677 +#: flatcamGUI/PreferencesUI.py:2678 msgid "" "The parameters set here are used in the file exported\n" "when using the File -> Export -> Export Excellon menu entry." msgstr "" -#: flatcamGUI/PreferencesUI.py:2688 flatcamGUI/PreferencesUI.py:2694 +#: flatcamGUI/PreferencesUI.py:2689 flatcamGUI/PreferencesUI.py:2695 msgid "The units used in the Excellon file." msgstr "" -#: flatcamGUI/PreferencesUI.py:2702 +#: flatcamGUI/PreferencesUI.py:2703 msgid "" "The NC drill files, usually named Excellon files\n" "are files that can be found in different formats.\n" @@ -8695,11 +8695,11 @@ msgid "" "coordinates are not using period." msgstr "" -#: flatcamGUI/PreferencesUI.py:2736 +#: flatcamGUI/PreferencesUI.py:2737 msgid "Format" msgstr "" -#: flatcamGUI/PreferencesUI.py:2738 flatcamGUI/PreferencesUI.py:2748 +#: flatcamGUI/PreferencesUI.py:2739 flatcamGUI/PreferencesUI.py:2749 msgid "" "Select the kind of coordinates format used.\n" "Coordinates can be saved with decimal point or without.\n" @@ -8709,15 +8709,15 @@ msgid "" "or TZ = trailing zeros are kept." msgstr "" -#: flatcamGUI/PreferencesUI.py:2745 +#: flatcamGUI/PreferencesUI.py:2746 msgid "Decimal" msgstr "" -#: flatcamGUI/PreferencesUI.py:2746 +#: flatcamGUI/PreferencesUI.py:2747 msgid "No-Decimal" msgstr "" -#: flatcamGUI/PreferencesUI.py:2772 +#: flatcamGUI/PreferencesUI.py:2773 msgid "" "This sets the default type of Excellon zeros.\n" "If LZ then Leading Zeros are kept and\n" @@ -8726,11 +8726,11 @@ msgid "" "and Leading Zeros are removed." msgstr "" -#: flatcamGUI/PreferencesUI.py:2782 +#: flatcamGUI/PreferencesUI.py:2783 msgid "Slot type" msgstr "" -#: flatcamGUI/PreferencesUI.py:2785 flatcamGUI/PreferencesUI.py:2795 +#: flatcamGUI/PreferencesUI.py:2786 flatcamGUI/PreferencesUI.py:2796 msgid "" "This sets how the slots will be exported.\n" "If ROUTED then the slots will be routed\n" @@ -8739,19 +8739,19 @@ msgid "" "using the Drilled slot command (G85)." msgstr "" -#: flatcamGUI/PreferencesUI.py:2792 +#: flatcamGUI/PreferencesUI.py:2793 msgid "Routed" msgstr "" -#: flatcamGUI/PreferencesUI.py:2793 +#: flatcamGUI/PreferencesUI.py:2794 msgid "Drilled(G85)" msgstr "" -#: flatcamGUI/PreferencesUI.py:2826 +#: flatcamGUI/PreferencesUI.py:2827 msgid "A list of Excellon Editor parameters." msgstr "" -#: flatcamGUI/PreferencesUI.py:2836 +#: flatcamGUI/PreferencesUI.py:2837 msgid "" "Set the number of selected Excellon geometry\n" "items above which the utility geometry\n" @@ -8760,19 +8760,19 @@ msgid "" "large number of geometric elements." msgstr "" -#: flatcamGUI/PreferencesUI.py:2849 flatcamGUI/PreferencesUI.py:4055 +#: flatcamGUI/PreferencesUI.py:2850 flatcamGUI/PreferencesUI.py:4056 msgid "New Tool Dia" msgstr "" -#: flatcamGUI/PreferencesUI.py:2874 +#: flatcamGUI/PreferencesUI.py:2875 msgid "Linear Drill Array" msgstr "" -#: flatcamGUI/PreferencesUI.py:2920 +#: flatcamGUI/PreferencesUI.py:2921 msgid "Circular Drill Array" msgstr "" -#: flatcamGUI/PreferencesUI.py:2990 +#: flatcamGUI/PreferencesUI.py:2991 msgid "" "Angle at which the slot is placed.\n" "The precision is of max 2 decimals.\n" @@ -8780,40 +8780,40 @@ msgid "" "Max value is: 360.00 degrees." msgstr "" -#: flatcamGUI/PreferencesUI.py:3009 +#: flatcamGUI/PreferencesUI.py:3010 msgid "Linear Slot Array" msgstr "" -#: flatcamGUI/PreferencesUI.py:3070 +#: flatcamGUI/PreferencesUI.py:3071 msgid "Circular Slot Array" msgstr "" -#: flatcamGUI/PreferencesUI.py:3108 +#: flatcamGUI/PreferencesUI.py:3109 msgid "Geometry General" msgstr "" -#: flatcamGUI/PreferencesUI.py:3130 +#: flatcamGUI/PreferencesUI.py:3131 msgid "" "The number of circle steps for Geometry \n" "circle and arc shapes linear approximation." msgstr "" -#: flatcamGUI/PreferencesUI.py:3161 +#: flatcamGUI/PreferencesUI.py:3162 msgid "Geometry Options" msgstr "" -#: flatcamGUI/PreferencesUI.py:3169 +#: flatcamGUI/PreferencesUI.py:3170 msgid "" "Create a CNC Job object\n" "tracing the contours of this\n" "Geometry object." msgstr "" -#: flatcamGUI/PreferencesUI.py:3211 +#: flatcamGUI/PreferencesUI.py:3212 msgid "Depth/Pass" msgstr "" -#: flatcamGUI/PreferencesUI.py:3213 +#: flatcamGUI/PreferencesUI.py:3214 msgid "" "The depth to cut on each pass,\n" "when multidepth is enabled.\n" @@ -8822,60 +8822,60 @@ msgid "" "which has negative value." msgstr "" -#: flatcamGUI/PreferencesUI.py:3393 +#: flatcamGUI/PreferencesUI.py:3394 msgid "Geometry Adv. Options" msgstr "" -#: flatcamGUI/PreferencesUI.py:3401 +#: flatcamGUI/PreferencesUI.py:3402 msgid "" "A list of Geometry advanced parameters.\n" "Those parameters are available only for\n" "Advanced App. Level." msgstr "" -#: flatcamGUI/PreferencesUI.py:3411 flatcamGUI/PreferencesUI.py:5470 -#: flatcamGUI/PreferencesUI.py:6517 flatcamTools/ToolCalibration.py:125 +#: flatcamGUI/PreferencesUI.py:3412 flatcamGUI/PreferencesUI.py:5471 +#: flatcamGUI/PreferencesUI.py:6518 flatcamTools/ToolCalibration.py:125 #: flatcamTools/ToolSolderPaste.py:239 msgid "Toolchange X-Y" msgstr "" -#: flatcamGUI/PreferencesUI.py:3422 +#: flatcamGUI/PreferencesUI.py:3423 msgid "" "Height of the tool just after starting the work.\n" "Delete the value if you don't need this feature." msgstr "" -#: flatcamGUI/PreferencesUI.py:3526 +#: flatcamGUI/PreferencesUI.py:3527 msgid "Segment X size" msgstr "" -#: flatcamGUI/PreferencesUI.py:3528 +#: flatcamGUI/PreferencesUI.py:3529 msgid "" "The size of the trace segment on the X axis.\n" "Useful for auto-leveling.\n" "A value of 0 means no segmentation on the X axis." msgstr "" -#: flatcamGUI/PreferencesUI.py:3542 +#: flatcamGUI/PreferencesUI.py:3543 msgid "Segment Y size" msgstr "" -#: flatcamGUI/PreferencesUI.py:3544 +#: flatcamGUI/PreferencesUI.py:3545 msgid "" "The size of the trace segment on the Y axis.\n" "Useful for auto-leveling.\n" "A value of 0 means no segmentation on the Y axis." msgstr "" -#: flatcamGUI/PreferencesUI.py:3565 +#: flatcamGUI/PreferencesUI.py:3566 msgid "Geometry Editor" msgstr "" -#: flatcamGUI/PreferencesUI.py:3571 +#: flatcamGUI/PreferencesUI.py:3572 msgid "A list of Geometry Editor parameters." msgstr "" -#: flatcamGUI/PreferencesUI.py:3581 flatcamGUI/PreferencesUI.py:6042 +#: flatcamGUI/PreferencesUI.py:3582 flatcamGUI/PreferencesUI.py:6043 msgid "" "Set the number of selected geometry\n" "items above which the utility geometry\n" @@ -8884,51 +8884,51 @@ msgid "" "large number of geometric elements." msgstr "" -#: flatcamGUI/PreferencesUI.py:3613 +#: flatcamGUI/PreferencesUI.py:3614 msgid "CNC Job General" msgstr "" -#: flatcamGUI/PreferencesUI.py:3666 +#: flatcamGUI/PreferencesUI.py:3667 msgid "" "The number of circle steps for GCode \n" "circle and arc shapes linear approximation." msgstr "" -#: flatcamGUI/PreferencesUI.py:3675 +#: flatcamGUI/PreferencesUI.py:3676 msgid "Travel dia" msgstr "" -#: flatcamGUI/PreferencesUI.py:3677 +#: flatcamGUI/PreferencesUI.py:3678 msgid "" "The width of the travel lines to be\n" "rendered in the plot." msgstr "" -#: flatcamGUI/PreferencesUI.py:3693 +#: flatcamGUI/PreferencesUI.py:3694 msgid "Coordinates decimals" msgstr "" -#: flatcamGUI/PreferencesUI.py:3695 +#: flatcamGUI/PreferencesUI.py:3696 msgid "" "The number of decimals to be used for \n" "the X, Y, Z coordinates in CNC code (GCODE, etc.)" msgstr "" -#: flatcamGUI/PreferencesUI.py:3706 +#: flatcamGUI/PreferencesUI.py:3707 msgid "Feedrate decimals" msgstr "" -#: flatcamGUI/PreferencesUI.py:3708 +#: flatcamGUI/PreferencesUI.py:3709 msgid "" "The number of decimals to be used for \n" "the Feedrate parameter in CNC code (GCODE, etc.)" msgstr "" -#: flatcamGUI/PreferencesUI.py:3719 +#: flatcamGUI/PreferencesUI.py:3720 msgid "Coordinates type" msgstr "" -#: flatcamGUI/PreferencesUI.py:3721 +#: flatcamGUI/PreferencesUI.py:3722 msgid "" "The type of coordinates to be used in Gcode.\n" "Can be:\n" @@ -8936,81 +8936,81 @@ msgid "" "- Incremental G91 -> the reference is the previous position" msgstr "" -#: flatcamGUI/PreferencesUI.py:3727 +#: flatcamGUI/PreferencesUI.py:3728 msgid "Absolute G90" msgstr "" -#: flatcamGUI/PreferencesUI.py:3728 +#: flatcamGUI/PreferencesUI.py:3729 msgid "Incremental G91" msgstr "" -#: flatcamGUI/PreferencesUI.py:3738 +#: flatcamGUI/PreferencesUI.py:3739 msgid "Force Windows style line-ending" msgstr "" -#: flatcamGUI/PreferencesUI.py:3740 +#: flatcamGUI/PreferencesUI.py:3741 msgid "" "When checked will force a Windows style line-ending\n" "(\\r\\n) on non-Windows OS's." msgstr "" -#: flatcamGUI/PreferencesUI.py:3754 +#: flatcamGUI/PreferencesUI.py:3755 msgid "CNC Job Options" msgstr "" -#: flatcamGUI/PreferencesUI.py:3758 +#: flatcamGUI/PreferencesUI.py:3759 msgid "Export G-Code" msgstr "" -#: flatcamGUI/PreferencesUI.py:3774 +#: flatcamGUI/PreferencesUI.py:3775 msgid "Prepend to G-Code" msgstr "" -#: flatcamGUI/PreferencesUI.py:3790 +#: flatcamGUI/PreferencesUI.py:3791 msgid "Append to G-Code" msgstr "" -#: flatcamGUI/PreferencesUI.py:3816 +#: flatcamGUI/PreferencesUI.py:3817 msgid "CNC Job Adv. Options" msgstr "" -#: flatcamGUI/PreferencesUI.py:3902 +#: flatcamGUI/PreferencesUI.py:3903 msgid "Z depth for the cut" msgstr "" -#: flatcamGUI/PreferencesUI.py:3903 +#: flatcamGUI/PreferencesUI.py:3904 msgid "Z height for travel" msgstr "" -#: flatcamGUI/PreferencesUI.py:3909 +#: flatcamGUI/PreferencesUI.py:3910 msgid "dwelltime = time to dwell to allow the spindle to reach it's set RPM" msgstr "" -#: flatcamGUI/PreferencesUI.py:3928 +#: flatcamGUI/PreferencesUI.py:3929 msgid "Annotation Size" msgstr "" -#: flatcamGUI/PreferencesUI.py:3930 +#: flatcamGUI/PreferencesUI.py:3931 msgid "The font size of the annotation text. In pixels." msgstr "" -#: flatcamGUI/PreferencesUI.py:3940 +#: flatcamGUI/PreferencesUI.py:3941 msgid "Annotation Color" msgstr "" -#: flatcamGUI/PreferencesUI.py:3942 +#: flatcamGUI/PreferencesUI.py:3943 msgid "Set the font color for the annotation texts." msgstr "" -#: flatcamGUI/PreferencesUI.py:3968 +#: flatcamGUI/PreferencesUI.py:3969 msgid "NCC Tool Options" msgstr "" -#: flatcamGUI/PreferencesUI.py:3982 flatcamGUI/PreferencesUI.py:5380 +#: flatcamGUI/PreferencesUI.py:3983 flatcamGUI/PreferencesUI.py:5381 msgid "Tools dia" msgstr "" -#: flatcamGUI/PreferencesUI.py:3993 flatcamGUI/PreferencesUI.py:4001 +#: flatcamGUI/PreferencesUI.py:3994 flatcamGUI/PreferencesUI.py:4002 #: flatcamTools/ToolNonCopperClear.py:215 flatcamTools/ToolNonCopperClear.py:223 msgid "" "Default tool type:\n" @@ -9018,22 +9018,22 @@ msgid "" "- Circular" msgstr "" -#: flatcamGUI/PreferencesUI.py:3998 flatcamTools/ToolNonCopperClear.py:220 +#: flatcamGUI/PreferencesUI.py:3999 flatcamTools/ToolNonCopperClear.py:220 msgid "V-shape" msgstr "" -#: flatcamGUI/PreferencesUI.py:4038 flatcamGUI/PreferencesUI.py:4047 +#: flatcamGUI/PreferencesUI.py:4039 flatcamGUI/PreferencesUI.py:4048 #: flatcamTools/ToolNonCopperClear.py:256 flatcamTools/ToolNonCopperClear.py:264 msgid "" "Depth of cut into material. Negative value.\n" "In FlatCAM units." msgstr "" -#: flatcamGUI/PreferencesUI.py:4057 +#: flatcamGUI/PreferencesUI.py:4058 msgid "The new tool diameter (cut width) to add in the tool table." msgstr "" -#: flatcamGUI/PreferencesUI.py:4069 flatcamGUI/PreferencesUI.py:4077 +#: flatcamGUI/PreferencesUI.py:4070 flatcamGUI/PreferencesUI.py:4078 #: flatcamTools/ToolNonCopperClear.py:164 flatcamTools/ToolNonCopperClear.py:172 msgid "" "Milling type when the selected tool is of type: 'iso_op':\n" @@ -9041,13 +9041,13 @@ msgid "" "- conventional / useful when there is no backlash compensation" msgstr "" -#: flatcamGUI/PreferencesUI.py:4086 flatcamGUI/PreferencesUI.py:4511 +#: flatcamGUI/PreferencesUI.py:4087 flatcamGUI/PreferencesUI.py:4512 #: flatcamTools/ToolNonCopperClear.py:181 flatcamTools/ToolPaint.py:153 msgid "Tool order" msgstr "" -#: flatcamGUI/PreferencesUI.py:4087 flatcamGUI/PreferencesUI.py:4097 -#: flatcamGUI/PreferencesUI.py:4512 flatcamGUI/PreferencesUI.py:4522 +#: flatcamGUI/PreferencesUI.py:4088 flatcamGUI/PreferencesUI.py:4098 +#: flatcamGUI/PreferencesUI.py:4513 flatcamGUI/PreferencesUI.py:4523 #: flatcamTools/ToolNonCopperClear.py:182 flatcamTools/ToolNonCopperClear.py:192 #: flatcamTools/ToolPaint.py:154 flatcamTools/ToolPaint.py:164 msgid "" @@ -9060,17 +9060,17 @@ msgid "" "in reverse and disable this control." msgstr "" -#: flatcamGUI/PreferencesUI.py:4095 flatcamGUI/PreferencesUI.py:4520 +#: flatcamGUI/PreferencesUI.py:4096 flatcamGUI/PreferencesUI.py:4521 #: flatcamTools/ToolNonCopperClear.py:190 flatcamTools/ToolPaint.py:162 msgid "Forward" msgstr "" -#: flatcamGUI/PreferencesUI.py:4096 flatcamGUI/PreferencesUI.py:4521 +#: flatcamGUI/PreferencesUI.py:4097 flatcamGUI/PreferencesUI.py:4522 #: flatcamTools/ToolNonCopperClear.py:191 flatcamTools/ToolPaint.py:163 msgid "Reverse" msgstr "" -#: flatcamGUI/PreferencesUI.py:4109 flatcamTools/ToolNonCopperClear.py:321 +#: flatcamGUI/PreferencesUI.py:4110 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" @@ -9081,36 +9081,36 @@ msgid "" "due of too many paths." msgstr "" -#: flatcamGUI/PreferencesUI.py:4128 flatcamGUI/PreferencesUI.py:6108 -#: flatcamGUI/PreferencesUI.py:6350 flatcamGUI/PreferencesUI.py:6414 +#: flatcamGUI/PreferencesUI.py:4129 flatcamGUI/PreferencesUI.py:6109 +#: flatcamGUI/PreferencesUI.py:6351 flatcamGUI/PreferencesUI.py:6415 #: flatcamTools/ToolCopperThieving.py:113 flatcamTools/ToolFiducials.py:174 #: flatcamTools/ToolFiducials.py:237 flatcamTools/ToolNonCopperClear.py:339 msgid "Bounding box margin." msgstr "" -#: flatcamGUI/PreferencesUI.py:4141 flatcamGUI/PreferencesUI.py:4569 +#: flatcamGUI/PreferencesUI.py:4142 flatcamGUI/PreferencesUI.py:4570 #: flatcamTools/ToolNonCopperClear.py:350 msgid "" "Algorithm for non-copper clearing:
Standard: Fixed step inwards.
Seed-" "based: Outwards from seed.
Line-based: Parallel lines." msgstr "" -#: flatcamGUI/PreferencesUI.py:4157 flatcamGUI/PreferencesUI.py:4583 +#: flatcamGUI/PreferencesUI.py:4158 flatcamGUI/PreferencesUI.py:4584 #: flatcamTools/ToolNonCopperClear.py:364 flatcamTools/ToolPaint.py:267 msgid "Connect" msgstr "" -#: flatcamGUI/PreferencesUI.py:4168 flatcamGUI/PreferencesUI.py:4593 +#: flatcamGUI/PreferencesUI.py:4169 flatcamGUI/PreferencesUI.py:4594 #: flatcamTools/ToolNonCopperClear.py:373 flatcamTools/ToolPaint.py:276 msgid "Contour" msgstr "" -#: flatcamGUI/PreferencesUI.py:4179 flatcamTools/ToolNonCopperClear.py:382 +#: flatcamGUI/PreferencesUI.py:4180 flatcamTools/ToolNonCopperClear.py:382 #: flatcamTools/ToolPaint.py:285 msgid "Rest M." msgstr "" -#: flatcamGUI/PreferencesUI.py:4181 flatcamTools/ToolNonCopperClear.py:384 +#: flatcamGUI/PreferencesUI.py:4182 flatcamTools/ToolNonCopperClear.py:384 msgid "" "If checked, use 'rest machining'.\n" "Basically it will clear copper outside PCB features,\n" @@ -9121,7 +9121,7 @@ msgid "" "If not checked, use the standard algorithm." msgstr "" -#: flatcamGUI/PreferencesUI.py:4197 flatcamTools/ToolNonCopperClear.py:399 +#: flatcamGUI/PreferencesUI.py:4198 flatcamTools/ToolNonCopperClear.py:399 #: flatcamTools/ToolNonCopperClear.py:411 msgid "" "If used, it will add an offset to the copper features.\n" @@ -9130,11 +9130,11 @@ msgid "" "The value can be between 0 and 10 FlatCAM units." msgstr "" -#: flatcamGUI/PreferencesUI.py:4208 flatcamTools/ToolNonCopperClear.py:409 +#: flatcamGUI/PreferencesUI.py:4209 flatcamTools/ToolNonCopperClear.py:409 msgid "Offset value" msgstr "" -#: flatcamGUI/PreferencesUI.py:4210 +#: flatcamGUI/PreferencesUI.py:4211 msgid "" "If used, it will add an offset to the copper features.\n" "The copper clearing will finish to a distance\n" @@ -9142,25 +9142,25 @@ msgid "" "The value can be between 0.0 and 9999.9 FlatCAM units." msgstr "" -#: flatcamGUI/PreferencesUI.py:4225 flatcamGUI/PreferencesUI.py:6120 +#: flatcamGUI/PreferencesUI.py:4226 flatcamGUI/PreferencesUI.py:6121 #: flatcamTools/ToolCopperThieving.py:125 flatcamTools/ToolNonCopperClear.py:435 msgid "Itself" msgstr "" -#: flatcamGUI/PreferencesUI.py:4226 flatcamGUI/PreferencesUI.py:4615 +#: flatcamGUI/PreferencesUI.py:4227 flatcamGUI/PreferencesUI.py:4616 msgid "Area" msgstr "" -#: flatcamGUI/PreferencesUI.py:4227 flatcamGUI/PreferencesUI.py:4617 +#: flatcamGUI/PreferencesUI.py:4228 flatcamGUI/PreferencesUI.py:4618 msgid "Ref" msgstr "" -#: flatcamGUI/PreferencesUI.py:4228 flatcamGUI/PreferencesUI.py:4794 +#: flatcamGUI/PreferencesUI.py:4229 flatcamGUI/PreferencesUI.py:4795 #: flatcamTools/ToolFilm.py:219 msgid "Reference" msgstr "" -#: flatcamGUI/PreferencesUI.py:4230 +#: flatcamGUI/PreferencesUI.py:4231 msgid "" "- 'Itself' - the non copper clearing extent\n" "is based on the object that is copper cleared.\n" @@ -9170,70 +9170,70 @@ msgid "" "specified by another object." msgstr "" -#: flatcamGUI/PreferencesUI.py:4242 flatcamGUI/PreferencesUI.py:4623 +#: flatcamGUI/PreferencesUI.py:4243 flatcamGUI/PreferencesUI.py:4624 msgid "Normal" msgstr "" -#: flatcamGUI/PreferencesUI.py:4243 flatcamGUI/PreferencesUI.py:4624 +#: flatcamGUI/PreferencesUI.py:4244 flatcamGUI/PreferencesUI.py:4625 msgid "Progressive" msgstr "" -#: flatcamGUI/PreferencesUI.py:4244 +#: flatcamGUI/PreferencesUI.py:4245 msgid "NCC Plotting" msgstr "" -#: flatcamGUI/PreferencesUI.py:4246 +#: flatcamGUI/PreferencesUI.py:4247 msgid "" "- 'Normal' - normal plotting, done at the end of the NCC job\n" "- 'Progressive' - after each shape is generated it will be plotted." msgstr "" -#: flatcamGUI/PreferencesUI.py:4260 +#: flatcamGUI/PreferencesUI.py:4261 msgid "Cutout Tool Options" msgstr "" -#: flatcamGUI/PreferencesUI.py:4275 flatcamTools/ToolCalculators.py:123 +#: flatcamGUI/PreferencesUI.py:4276 flatcamTools/ToolCalculators.py:123 #: flatcamTools/ToolCutOut.py:123 msgid "Tool Diameter" msgstr "" -#: flatcamGUI/PreferencesUI.py:4277 flatcamTools/ToolCutOut.py:125 +#: flatcamGUI/PreferencesUI.py:4278 flatcamTools/ToolCutOut.py:125 msgid "" "Diameter of the tool used to cutout\n" "the PCB shape out of the surrounding material." msgstr "" -#: flatcamGUI/PreferencesUI.py:4332 flatcamTools/ToolCutOut.py:104 +#: flatcamGUI/PreferencesUI.py:4333 flatcamTools/ToolCutOut.py:104 msgid "Object kind" msgstr "" -#: flatcamGUI/PreferencesUI.py:4334 flatcamTools/ToolCutOut.py:106 +#: flatcamGUI/PreferencesUI.py:4335 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 Gerber object, which is made\n" "out of many individual PCB outlines." msgstr "" -#: flatcamGUI/PreferencesUI.py:4341 flatcamTools/ToolCutOut.py:112 +#: flatcamGUI/PreferencesUI.py:4342 flatcamTools/ToolCutOut.py:112 msgid "Single" msgstr "" -#: flatcamGUI/PreferencesUI.py:4342 flatcamTools/ToolCutOut.py:113 +#: flatcamGUI/PreferencesUI.py:4343 flatcamTools/ToolCutOut.py:113 msgid "Panel" msgstr "" -#: flatcamGUI/PreferencesUI.py:4349 flatcamTools/ToolCutOut.py:184 +#: flatcamGUI/PreferencesUI.py:4350 flatcamTools/ToolCutOut.py:184 msgid "" "Margin over bounds. A positive value here\n" "will make the cutout of the PCB further from\n" "the actual PCB border" msgstr "" -#: flatcamGUI/PreferencesUI.py:4362 flatcamTools/ToolCutOut.py:195 +#: flatcamGUI/PreferencesUI.py:4363 flatcamTools/ToolCutOut.py:195 msgid "Gap size" msgstr "" -#: flatcamGUI/PreferencesUI.py:4364 flatcamTools/ToolCutOut.py:197 +#: flatcamGUI/PreferencesUI.py:4365 flatcamTools/ToolCutOut.py:197 msgid "" "The size of the bridge gaps in the cutout\n" "used to keep the board connected to\n" @@ -9241,11 +9241,11 @@ msgid "" "from which the PCB is cutout)." msgstr "" -#: flatcamGUI/PreferencesUI.py:4378 flatcamTools/ToolCutOut.py:239 +#: flatcamGUI/PreferencesUI.py:4379 flatcamTools/ToolCutOut.py:239 msgid "Gaps" msgstr "" -#: flatcamGUI/PreferencesUI.py:4380 +#: flatcamGUI/PreferencesUI.py:4381 msgid "" "Number of gaps used for the cutout.\n" "There can be maximum 8 bridges/gaps.\n" @@ -9259,71 +9259,71 @@ msgid "" "- 8 - 2*left + 2*right +2*top + 2*bottom" msgstr "" -#: flatcamGUI/PreferencesUI.py:4403 +#: flatcamGUI/PreferencesUI.py:4404 msgid "Convex Sh." msgstr "" -#: flatcamGUI/PreferencesUI.py:4405 flatcamTools/ToolCutOut.py:217 +#: flatcamGUI/PreferencesUI.py:4406 flatcamTools/ToolCutOut.py:217 msgid "" "Create a convex shape surrounding the entire PCB.\n" "Used only if the source object type is Gerber." msgstr "" -#: flatcamGUI/PreferencesUI.py:4419 +#: flatcamGUI/PreferencesUI.py:4420 msgid "2Sided Tool Options" msgstr "" -#: flatcamGUI/PreferencesUI.py:4425 +#: flatcamGUI/PreferencesUI.py:4426 msgid "" "A tool to help in creating a double sided\n" "PCB using alignment holes." msgstr "" -#: flatcamGUI/PreferencesUI.py:4439 flatcamTools/ToolDblSided.py:276 +#: flatcamGUI/PreferencesUI.py:4440 flatcamTools/ToolDblSided.py:276 msgid "Drill dia" msgstr "" -#: flatcamGUI/PreferencesUI.py:4441 flatcamTools/ToolDblSided.py:267 +#: flatcamGUI/PreferencesUI.py:4442 flatcamTools/ToolDblSided.py:267 #: flatcamTools/ToolDblSided.py:278 msgid "Diameter of the drill for the alignment holes." msgstr "" -#: flatcamGUI/PreferencesUI.py:4450 flatcamTools/ToolDblSided.py:144 +#: flatcamGUI/PreferencesUI.py:4451 flatcamTools/ToolDblSided.py:144 msgid "Mirror Axis:" msgstr "" -#: flatcamGUI/PreferencesUI.py:4452 flatcamTools/ToolDblSided.py:145 +#: flatcamGUI/PreferencesUI.py:4453 flatcamTools/ToolDblSided.py:145 msgid "Mirror vertically (X) or horizontally (Y)." msgstr "" -#: flatcamGUI/PreferencesUI.py:4461 flatcamTools/ToolDblSided.py:154 +#: flatcamGUI/PreferencesUI.py:4462 flatcamTools/ToolDblSided.py:154 msgid "Point" msgstr "" -#: flatcamGUI/PreferencesUI.py:4462 flatcamTools/ToolDblSided.py:155 +#: flatcamGUI/PreferencesUI.py:4463 flatcamTools/ToolDblSided.py:155 msgid "Box" msgstr "" -#: flatcamGUI/PreferencesUI.py:4463 flatcamTools/ToolDblSided.py:156 +#: flatcamGUI/PreferencesUI.py:4464 flatcamTools/ToolDblSided.py:156 msgid "Axis Ref" msgstr "" -#: flatcamGUI/PreferencesUI.py:4465 flatcamTools/ToolDblSided.py:158 +#: flatcamGUI/PreferencesUI.py:4466 flatcamTools/ToolDblSided.py:158 msgid "" "The axis should pass through a point or cut\n" " a specified box (in a FlatCAM object) through \n" "the center." msgstr "" -#: flatcamGUI/PreferencesUI.py:4481 +#: flatcamGUI/PreferencesUI.py:4482 msgid "Paint Tool Options" msgstr "" -#: flatcamGUI/PreferencesUI.py:4487 +#: flatcamGUI/PreferencesUI.py:4488 msgid "Parameters:" msgstr "" -#: flatcamGUI/PreferencesUI.py:4605 flatcamTools/ToolPaint.py:302 +#: flatcamGUI/PreferencesUI.py:4606 flatcamTools/ToolPaint.py:302 #: flatcamTools/ToolPaint.py:319 msgid "" "How to select Polygons to be painted.\n" @@ -9335,36 +9335,36 @@ msgid "" "specified by another object." msgstr "" -#: flatcamGUI/PreferencesUI.py:4614 +#: flatcamGUI/PreferencesUI.py:4615 msgid "Sel" msgstr "" -#: flatcamGUI/PreferencesUI.py:4625 +#: flatcamGUI/PreferencesUI.py:4626 msgid "Paint Plotting" msgstr "" -#: flatcamGUI/PreferencesUI.py:4627 +#: flatcamGUI/PreferencesUI.py:4628 msgid "" "- 'Normal' - normal plotting, done at the end of the Paint job\n" "- 'Progressive' - after each shape is generated it will be plotted." msgstr "" -#: flatcamGUI/PreferencesUI.py:4641 +#: flatcamGUI/PreferencesUI.py:4642 msgid "Film Tool Options" msgstr "" -#: flatcamGUI/PreferencesUI.py:4647 +#: flatcamGUI/PreferencesUI.py:4648 msgid "" "Create a PCB film from a Gerber or Geometry\n" "FlatCAM object.\n" "The file is saved in SVG format." msgstr "" -#: flatcamGUI/PreferencesUI.py:4658 +#: flatcamGUI/PreferencesUI.py:4659 msgid "Film Type" msgstr "" -#: flatcamGUI/PreferencesUI.py:4660 flatcamTools/ToolFilm.py:300 +#: flatcamGUI/PreferencesUI.py:4661 flatcamTools/ToolFilm.py:300 msgid "" "Generate a Positive black film or a Negative film.\n" "Positive means that it will print the features\n" @@ -9374,19 +9374,19 @@ msgid "" "The Film format is SVG." msgstr "" -#: flatcamGUI/PreferencesUI.py:4671 +#: flatcamGUI/PreferencesUI.py:4672 msgid "Film Color" msgstr "" -#: flatcamGUI/PreferencesUI.py:4673 +#: flatcamGUI/PreferencesUI.py:4674 msgid "Set the film color when positive film is selected." msgstr "" -#: flatcamGUI/PreferencesUI.py:4696 flatcamTools/ToolFilm.py:316 +#: flatcamGUI/PreferencesUI.py:4697 flatcamTools/ToolFilm.py:316 msgid "Border" msgstr "" -#: flatcamGUI/PreferencesUI.py:4698 flatcamTools/ToolFilm.py:318 +#: flatcamGUI/PreferencesUI.py:4699 flatcamTools/ToolFilm.py:318 msgid "" "Specify a border around the object.\n" "Only for negative film.\n" @@ -9398,124 +9398,124 @@ msgid "" "surroundings if not for this border." msgstr "" -#: flatcamGUI/PreferencesUI.py:4715 flatcamTools/ToolFilm.py:283 +#: flatcamGUI/PreferencesUI.py:4716 flatcamTools/ToolFilm.py:283 msgid "Scale Stroke" msgstr "" -#: flatcamGUI/PreferencesUI.py:4717 flatcamTools/ToolFilm.py:285 +#: flatcamGUI/PreferencesUI.py:4718 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 thinner,\n" "therefore the fine features may be more affected by this parameter." msgstr "" -#: flatcamGUI/PreferencesUI.py:4724 flatcamTools/ToolFilm.py:141 +#: flatcamGUI/PreferencesUI.py:4725 flatcamTools/ToolFilm.py:141 msgid "Film Adjustments" msgstr "" -#: flatcamGUI/PreferencesUI.py:4726 flatcamTools/ToolFilm.py:143 +#: flatcamGUI/PreferencesUI.py:4727 flatcamTools/ToolFilm.py:143 msgid "" "Sometime the printers will distort the print shape, especially the Laser types.\n" "This section provide the tools to compensate for the print distortions." msgstr "" -#: flatcamGUI/PreferencesUI.py:4733 flatcamTools/ToolFilm.py:150 +#: flatcamGUI/PreferencesUI.py:4734 flatcamTools/ToolFilm.py:150 msgid "Scale Film geometry" msgstr "" -#: flatcamGUI/PreferencesUI.py:4735 flatcamTools/ToolFilm.py:152 +#: flatcamGUI/PreferencesUI.py:4736 flatcamTools/ToolFilm.py:152 msgid "" "A value greater than 1 will stretch the film\n" "while a value less than 1 will jolt it." msgstr "" -#: flatcamGUI/PreferencesUI.py:4745 flatcamGUI/PreferencesUI.py:5265 +#: flatcamGUI/PreferencesUI.py:4746 flatcamGUI/PreferencesUI.py:5266 #: flatcamTools/ToolFilm.py:162 flatcamTools/ToolTransform.py:147 msgid "X factor" msgstr "" -#: flatcamGUI/PreferencesUI.py:4754 flatcamGUI/PreferencesUI.py:5278 +#: flatcamGUI/PreferencesUI.py:4755 flatcamGUI/PreferencesUI.py:5279 #: flatcamTools/ToolFilm.py:171 flatcamTools/ToolTransform.py:168 msgid "Y factor" msgstr "" -#: flatcamGUI/PreferencesUI.py:4764 flatcamTools/ToolFilm.py:189 +#: flatcamGUI/PreferencesUI.py:4765 flatcamTools/ToolFilm.py:189 msgid "Skew Film geometry" msgstr "" -#: flatcamGUI/PreferencesUI.py:4766 flatcamTools/ToolFilm.py:191 +#: flatcamGUI/PreferencesUI.py:4767 flatcamTools/ToolFilm.py:191 msgid "" "Positive values will skew to the right\n" "while negative values will skew to the left." msgstr "" -#: flatcamGUI/PreferencesUI.py:4776 flatcamGUI/PreferencesUI.py:5234 +#: flatcamGUI/PreferencesUI.py:4777 flatcamGUI/PreferencesUI.py:5235 #: flatcamTools/ToolFilm.py:201 flatcamTools/ToolTransform.py:97 msgid "X angle" msgstr "" -#: flatcamGUI/PreferencesUI.py:4785 flatcamGUI/PreferencesUI.py:5248 +#: flatcamGUI/PreferencesUI.py:4786 flatcamGUI/PreferencesUI.py:5249 #: flatcamTools/ToolFilm.py:210 flatcamTools/ToolTransform.py:119 msgid "Y angle" msgstr "" -#: flatcamGUI/PreferencesUI.py:4796 flatcamTools/ToolFilm.py:221 +#: flatcamGUI/PreferencesUI.py:4797 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." msgstr "" -#: flatcamGUI/PreferencesUI.py:4799 flatcamTools/ToolFiducials.py:87 +#: flatcamGUI/PreferencesUI.py:4800 flatcamTools/ToolFiducials.py:87 #: flatcamTools/ToolFilm.py:224 msgid "Bottom Left" msgstr "" -#: flatcamGUI/PreferencesUI.py:4800 flatcamTools/ToolFilm.py:225 +#: flatcamGUI/PreferencesUI.py:4801 flatcamTools/ToolFilm.py:225 msgid "Top Left" msgstr "" -#: flatcamGUI/PreferencesUI.py:4801 flatcamTools/ToolFilm.py:226 +#: flatcamGUI/PreferencesUI.py:4802 flatcamTools/ToolFilm.py:226 msgid "Bottom Right" msgstr "" -#: flatcamGUI/PreferencesUI.py:4802 flatcamTools/ToolFilm.py:227 +#: flatcamGUI/PreferencesUI.py:4803 flatcamTools/ToolFilm.py:227 msgid "Top right" msgstr "" -#: flatcamGUI/PreferencesUI.py:4810 flatcamTools/ToolFilm.py:244 +#: flatcamGUI/PreferencesUI.py:4811 flatcamTools/ToolFilm.py:244 msgid "Mirror Film geometry" msgstr "" -#: flatcamGUI/PreferencesUI.py:4812 flatcamTools/ToolFilm.py:246 +#: flatcamGUI/PreferencesUI.py:4813 flatcamTools/ToolFilm.py:246 msgid "Mirror the film geometry on the selected axis or on both." msgstr "" -#: flatcamGUI/PreferencesUI.py:4824 flatcamTools/ToolFilm.py:258 +#: flatcamGUI/PreferencesUI.py:4825 flatcamTools/ToolFilm.py:258 msgid "Both" msgstr "" -#: flatcamGUI/PreferencesUI.py:4826 flatcamTools/ToolFilm.py:260 +#: flatcamGUI/PreferencesUI.py:4827 flatcamTools/ToolFilm.py:260 msgid "Mirror axis" msgstr "" -#: flatcamGUI/PreferencesUI.py:4836 flatcamTools/ToolFilm.py:403 +#: flatcamGUI/PreferencesUI.py:4837 flatcamTools/ToolFilm.py:403 msgid "SVG" msgstr "" -#: flatcamGUI/PreferencesUI.py:4837 flatcamTools/ToolFilm.py:404 +#: flatcamGUI/PreferencesUI.py:4838 flatcamTools/ToolFilm.py:404 msgid "PNG" msgstr "" -#: flatcamGUI/PreferencesUI.py:4838 flatcamTools/ToolFilm.py:405 +#: flatcamGUI/PreferencesUI.py:4839 flatcamTools/ToolFilm.py:405 msgid "PDF" msgstr "" -#: flatcamGUI/PreferencesUI.py:4841 flatcamTools/ToolFilm.py:298 +#: flatcamGUI/PreferencesUI.py:4842 flatcamTools/ToolFilm.py:298 #: flatcamTools/ToolFilm.py:408 msgid "Film Type:" msgstr "" -#: flatcamGUI/PreferencesUI.py:4843 flatcamTools/ToolFilm.py:410 +#: flatcamGUI/PreferencesUI.py:4844 flatcamTools/ToolFilm.py:410 msgid "" "The file type of the saved film. Can be:\n" "- 'SVG' -> open-source vectorial format\n" @@ -9523,90 +9523,90 @@ msgid "" "- 'PDF' -> portable document format" msgstr "" -#: flatcamGUI/PreferencesUI.py:4852 flatcamTools/ToolFilm.py:419 +#: flatcamGUI/PreferencesUI.py:4853 flatcamTools/ToolFilm.py:419 msgid "Page Orientation" msgstr "" -#: flatcamGUI/PreferencesUI.py:4865 flatcamTools/ToolFilm.py:432 +#: flatcamGUI/PreferencesUI.py:4866 flatcamTools/ToolFilm.py:432 msgid "Page Size" msgstr "" -#: flatcamGUI/PreferencesUI.py:4866 flatcamTools/ToolFilm.py:433 +#: flatcamGUI/PreferencesUI.py:4867 flatcamTools/ToolFilm.py:433 msgid "A selection of standard ISO 216 page sizes." msgstr "" -#: flatcamGUI/PreferencesUI.py:4938 +#: flatcamGUI/PreferencesUI.py:4939 msgid "Panelize Tool Options" msgstr "" -#: flatcamGUI/PreferencesUI.py:4944 +#: flatcamGUI/PreferencesUI.py:4945 msgid "" "Create an object that contains an array of (x, y) elements,\n" "each element is a copy of the source object spaced\n" "at a X distance, Y distance of each other." msgstr "" -#: flatcamGUI/PreferencesUI.py:4961 flatcamTools/ToolPanelize.py:160 +#: flatcamGUI/PreferencesUI.py:4962 flatcamTools/ToolPanelize.py:160 msgid "Spacing cols" msgstr "" -#: flatcamGUI/PreferencesUI.py:4963 flatcamTools/ToolPanelize.py:162 +#: flatcamGUI/PreferencesUI.py:4964 flatcamTools/ToolPanelize.py:162 msgid "" "Spacing between columns of the desired panel.\n" "In current units." msgstr "" -#: flatcamGUI/PreferencesUI.py:4975 flatcamTools/ToolPanelize.py:172 +#: flatcamGUI/PreferencesUI.py:4976 flatcamTools/ToolPanelize.py:172 msgid "Spacing rows" msgstr "" -#: flatcamGUI/PreferencesUI.py:4977 flatcamTools/ToolPanelize.py:174 +#: flatcamGUI/PreferencesUI.py:4978 flatcamTools/ToolPanelize.py:174 msgid "" "Spacing between rows of the desired panel.\n" "In current units." msgstr "" -#: flatcamGUI/PreferencesUI.py:4988 flatcamTools/ToolPanelize.py:183 +#: flatcamGUI/PreferencesUI.py:4989 flatcamTools/ToolPanelize.py:183 msgid "Columns" msgstr "" -#: flatcamGUI/PreferencesUI.py:4990 flatcamTools/ToolPanelize.py:185 +#: flatcamGUI/PreferencesUI.py:4991 flatcamTools/ToolPanelize.py:185 msgid "Number of columns of the desired panel" msgstr "" -#: flatcamGUI/PreferencesUI.py:5000 flatcamTools/ToolPanelize.py:193 +#: flatcamGUI/PreferencesUI.py:5001 flatcamTools/ToolPanelize.py:193 msgid "Rows" msgstr "" -#: flatcamGUI/PreferencesUI.py:5002 flatcamTools/ToolPanelize.py:195 +#: flatcamGUI/PreferencesUI.py:5003 flatcamTools/ToolPanelize.py:195 msgid "Number of rows of the desired panel" msgstr "" -#: flatcamGUI/PreferencesUI.py:5008 flatcamTools/ToolCalibration.py:196 +#: flatcamGUI/PreferencesUI.py:5009 flatcamTools/ToolCalibration.py:196 #: flatcamTools/ToolCalibration.py:634 flatcamTools/ToolPanelize.py:201 msgid "Gerber" msgstr "" -#: flatcamGUI/PreferencesUI.py:5009 flatcamTools/ToolPanelize.py:202 +#: flatcamGUI/PreferencesUI.py:5010 flatcamTools/ToolPanelize.py:202 msgid "Geo" msgstr "" -#: flatcamGUI/PreferencesUI.py:5010 flatcamTools/ToolPanelize.py:203 +#: flatcamGUI/PreferencesUI.py:5011 flatcamTools/ToolPanelize.py:203 msgid "Panel Type" msgstr "" -#: flatcamGUI/PreferencesUI.py:5012 +#: flatcamGUI/PreferencesUI.py:5013 msgid "" "Choose the type of object for the panel object:\n" "- Gerber\n" "- Geometry" msgstr "" -#: flatcamGUI/PreferencesUI.py:5021 +#: flatcamGUI/PreferencesUI.py:5022 msgid "Constrain within" msgstr "" -#: flatcamGUI/PreferencesUI.py:5023 flatcamTools/ToolPanelize.py:215 +#: flatcamGUI/PreferencesUI.py:5024 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" @@ -9615,142 +9615,142 @@ msgid "" "they fit completely within selected area." msgstr "" -#: flatcamGUI/PreferencesUI.py:5036 flatcamTools/ToolPanelize.py:227 +#: flatcamGUI/PreferencesUI.py:5037 flatcamTools/ToolPanelize.py:227 msgid "Width (DX)" msgstr "" -#: flatcamGUI/PreferencesUI.py:5038 flatcamTools/ToolPanelize.py:229 +#: flatcamGUI/PreferencesUI.py:5039 flatcamTools/ToolPanelize.py:229 msgid "" "The width (DX) within which the panel must fit.\n" "In current units." msgstr "" -#: flatcamGUI/PreferencesUI.py:5049 flatcamTools/ToolPanelize.py:238 +#: flatcamGUI/PreferencesUI.py:5050 flatcamTools/ToolPanelize.py:238 msgid "Height (DY)" msgstr "" -#: flatcamGUI/PreferencesUI.py:5051 flatcamTools/ToolPanelize.py:240 +#: flatcamGUI/PreferencesUI.py:5052 flatcamTools/ToolPanelize.py:240 msgid "" "The height (DY)within which the panel must fit.\n" "In current units." msgstr "" -#: flatcamGUI/PreferencesUI.py:5065 +#: flatcamGUI/PreferencesUI.py:5066 msgid "Calculators Tool Options" msgstr "" -#: flatcamGUI/PreferencesUI.py:5069 flatcamTools/ToolCalculators.py:25 +#: flatcamGUI/PreferencesUI.py:5070 flatcamTools/ToolCalculators.py:25 msgid "V-Shape Tool Calculator" msgstr "" -#: flatcamGUI/PreferencesUI.py:5071 +#: flatcamGUI/PreferencesUI.py:5072 msgid "" "Calculate the tool diameter for a given V-shape tool,\n" "having the tip diameter, tip angle and\n" "depth-of-cut as parameters." msgstr "" -#: flatcamGUI/PreferencesUI.py:5086 flatcamTools/ToolCalculators.py:94 +#: flatcamGUI/PreferencesUI.py:5087 flatcamTools/ToolCalculators.py:94 msgid "Tip Diameter" msgstr "" -#: flatcamGUI/PreferencesUI.py:5088 flatcamTools/ToolCalculators.py:102 +#: flatcamGUI/PreferencesUI.py:5089 flatcamTools/ToolCalculators.py:102 msgid "" "This is the tool tip diameter.\n" "It is specified by manufacturer." msgstr "" -#: flatcamGUI/PreferencesUI.py:5100 flatcamTools/ToolCalculators.py:105 +#: flatcamGUI/PreferencesUI.py:5101 flatcamTools/ToolCalculators.py:105 msgid "Tip Angle" msgstr "" -#: flatcamGUI/PreferencesUI.py:5102 +#: flatcamGUI/PreferencesUI.py:5103 msgid "" "This is the angle on the tip of the tool.\n" "It is specified by manufacturer." msgstr "" -#: flatcamGUI/PreferencesUI.py:5116 +#: flatcamGUI/PreferencesUI.py:5117 msgid "" "This is depth to cut into material.\n" "In the CNCJob object it is the CutZ parameter." msgstr "" -#: flatcamGUI/PreferencesUI.py:5123 flatcamTools/ToolCalculators.py:27 +#: flatcamGUI/PreferencesUI.py:5124 flatcamTools/ToolCalculators.py:27 msgid "ElectroPlating Calculator" msgstr "" -#: flatcamGUI/PreferencesUI.py:5125 flatcamTools/ToolCalculators.py:158 +#: flatcamGUI/PreferencesUI.py:5126 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 chloride." msgstr "" -#: flatcamGUI/PreferencesUI.py:5139 flatcamTools/ToolCalculators.py:167 +#: flatcamGUI/PreferencesUI.py:5140 flatcamTools/ToolCalculators.py:167 msgid "Board Length" msgstr "" -#: flatcamGUI/PreferencesUI.py:5141 flatcamTools/ToolCalculators.py:173 +#: flatcamGUI/PreferencesUI.py:5142 flatcamTools/ToolCalculators.py:173 msgid "This is the board length. In centimeters." msgstr "" -#: flatcamGUI/PreferencesUI.py:5151 flatcamTools/ToolCalculators.py:175 +#: flatcamGUI/PreferencesUI.py:5152 flatcamTools/ToolCalculators.py:175 msgid "Board Width" msgstr "" -#: flatcamGUI/PreferencesUI.py:5153 flatcamTools/ToolCalculators.py:181 +#: flatcamGUI/PreferencesUI.py:5154 flatcamTools/ToolCalculators.py:181 msgid "This is the board width.In centimeters." msgstr "" -#: flatcamGUI/PreferencesUI.py:5158 flatcamTools/ToolCalculators.py:183 +#: flatcamGUI/PreferencesUI.py:5159 flatcamTools/ToolCalculators.py:183 msgid "Current Density" msgstr "" -#: flatcamGUI/PreferencesUI.py:5164 flatcamTools/ToolCalculators.py:190 +#: flatcamGUI/PreferencesUI.py:5165 flatcamTools/ToolCalculators.py:190 msgid "" "Current density to pass through the board. \n" "In Amps per Square Feet ASF." msgstr "" -#: flatcamGUI/PreferencesUI.py:5170 flatcamTools/ToolCalculators.py:193 +#: flatcamGUI/PreferencesUI.py:5171 flatcamTools/ToolCalculators.py:193 msgid "Copper Growth" msgstr "" -#: flatcamGUI/PreferencesUI.py:5176 flatcamTools/ToolCalculators.py:200 +#: flatcamGUI/PreferencesUI.py:5177 flatcamTools/ToolCalculators.py:200 msgid "" "How thick the copper growth is intended to be.\n" "In microns." msgstr "" -#: flatcamGUI/PreferencesUI.py:5189 +#: flatcamGUI/PreferencesUI.py:5190 msgid "Transform Tool Options" msgstr "" -#: flatcamGUI/PreferencesUI.py:5195 +#: flatcamGUI/PreferencesUI.py:5196 msgid "" "Various transformations that can be applied\n" "on a FlatCAM object." msgstr "" -#: flatcamGUI/PreferencesUI.py:5226 +#: flatcamGUI/PreferencesUI.py:5227 msgid "Skew" msgstr "" -#: flatcamGUI/PreferencesUI.py:5267 flatcamTools/ToolTransform.py:149 +#: flatcamGUI/PreferencesUI.py:5268 flatcamTools/ToolTransform.py:149 msgid "Factor for scaling on X axis." msgstr "" -#: flatcamGUI/PreferencesUI.py:5280 flatcamTools/ToolTransform.py:170 +#: flatcamGUI/PreferencesUI.py:5281 flatcamTools/ToolTransform.py:170 msgid "Factor for scaling on Y axis." msgstr "" -#: flatcamGUI/PreferencesUI.py:5288 flatcamTools/ToolTransform.py:193 +#: flatcamGUI/PreferencesUI.py:5289 flatcamTools/ToolTransform.py:193 msgid "" "Scale the selected object(s)\n" "using the Scale_X factor for both axis." msgstr "" -#: flatcamGUI/PreferencesUI.py:5296 flatcamTools/ToolTransform.py:201 +#: flatcamGUI/PreferencesUI.py:5297 flatcamTools/ToolTransform.py:201 msgid "" "Scale the selected object(s)\n" "using the origin reference when checked,\n" @@ -9758,27 +9758,27 @@ msgid "" "of the selected objects when unchecked." msgstr "" -#: flatcamGUI/PreferencesUI.py:5312 flatcamTools/ToolTransform.py:216 +#: flatcamGUI/PreferencesUI.py:5313 flatcamTools/ToolTransform.py:216 msgid "X val" msgstr "" -#: flatcamGUI/PreferencesUI.py:5314 flatcamTools/ToolTransform.py:218 +#: flatcamGUI/PreferencesUI.py:5315 flatcamTools/ToolTransform.py:218 msgid "Distance to offset on X axis. In current units." msgstr "" -#: flatcamGUI/PreferencesUI.py:5325 flatcamTools/ToolTransform.py:237 +#: flatcamGUI/PreferencesUI.py:5326 flatcamTools/ToolTransform.py:237 msgid "Y val" msgstr "" -#: flatcamGUI/PreferencesUI.py:5327 flatcamTools/ToolTransform.py:239 +#: flatcamGUI/PreferencesUI.py:5328 flatcamTools/ToolTransform.py:239 msgid "Distance to offset on Y axis. In current units." msgstr "" -#: flatcamGUI/PreferencesUI.py:5333 flatcamTools/ToolTransform.py:284 +#: flatcamGUI/PreferencesUI.py:5334 flatcamTools/ToolTransform.py:284 msgid "Mirror Reference" msgstr "" -#: flatcamGUI/PreferencesUI.py:5335 flatcamTools/ToolTransform.py:286 +#: flatcamGUI/PreferencesUI.py:5336 flatcamTools/ToolTransform.py:286 msgid "" "Flip the selected object(s)\n" "around the point in Point Entry Field.\n" @@ -9791,191 +9791,191 @@ msgid "" "Point Entry field and click Flip on X(Y)" msgstr "" -#: flatcamGUI/PreferencesUI.py:5346 +#: flatcamGUI/PreferencesUI.py:5347 msgid "Mirror Reference point" msgstr "" -#: flatcamGUI/PreferencesUI.py:5348 +#: flatcamGUI/PreferencesUI.py:5349 msgid "" "Coordinates in format (x, y) used as reference for mirroring.\n" "The 'x' in (x, y) will be used when using Flip on X and\n" "the 'y' in (x, y) will be used when using Flip on Y and" msgstr "" -#: flatcamGUI/PreferencesUI.py:5365 +#: flatcamGUI/PreferencesUI.py:5366 msgid "SolderPaste Tool Options" msgstr "" -#: flatcamGUI/PreferencesUI.py:5371 +#: flatcamGUI/PreferencesUI.py:5372 msgid "" "A tool to create GCode for dispensing\n" "solder paste onto a PCB." msgstr "" -#: flatcamGUI/PreferencesUI.py:5382 +#: flatcamGUI/PreferencesUI.py:5383 msgid "Diameters of nozzle tools, separated by ','" msgstr "" -#: flatcamGUI/PreferencesUI.py:5390 +#: flatcamGUI/PreferencesUI.py:5391 msgid "New Nozzle Dia" msgstr "" -#: flatcamGUI/PreferencesUI.py:5392 flatcamTools/ToolSolderPaste.py:106 +#: flatcamGUI/PreferencesUI.py:5393 flatcamTools/ToolSolderPaste.py:106 msgid "Diameter for the new Nozzle tool to add in the Tool Table" msgstr "" -#: flatcamGUI/PreferencesUI.py:5408 flatcamTools/ToolSolderPaste.py:182 +#: flatcamGUI/PreferencesUI.py:5409 flatcamTools/ToolSolderPaste.py:182 msgid "Z Dispense Start" msgstr "" -#: flatcamGUI/PreferencesUI.py:5410 flatcamTools/ToolSolderPaste.py:184 +#: flatcamGUI/PreferencesUI.py:5411 flatcamTools/ToolSolderPaste.py:184 msgid "The height (Z) when solder paste dispensing starts." msgstr "" -#: flatcamGUI/PreferencesUI.py:5421 flatcamTools/ToolSolderPaste.py:194 +#: flatcamGUI/PreferencesUI.py:5422 flatcamTools/ToolSolderPaste.py:194 msgid "Z Dispense" msgstr "" -#: flatcamGUI/PreferencesUI.py:5423 flatcamTools/ToolSolderPaste.py:196 +#: flatcamGUI/PreferencesUI.py:5424 flatcamTools/ToolSolderPaste.py:196 msgid "The height (Z) when doing solder paste dispensing." msgstr "" -#: flatcamGUI/PreferencesUI.py:5434 flatcamTools/ToolSolderPaste.py:206 +#: flatcamGUI/PreferencesUI.py:5435 flatcamTools/ToolSolderPaste.py:206 msgid "Z Dispense Stop" msgstr "" -#: flatcamGUI/PreferencesUI.py:5436 flatcamTools/ToolSolderPaste.py:208 +#: flatcamGUI/PreferencesUI.py:5437 flatcamTools/ToolSolderPaste.py:208 msgid "The height (Z) when solder paste dispensing stops." msgstr "" -#: flatcamGUI/PreferencesUI.py:5447 flatcamTools/ToolSolderPaste.py:218 +#: flatcamGUI/PreferencesUI.py:5448 flatcamTools/ToolSolderPaste.py:218 msgid "Z Travel" msgstr "" -#: flatcamGUI/PreferencesUI.py:5449 flatcamTools/ToolSolderPaste.py:220 +#: flatcamGUI/PreferencesUI.py:5450 flatcamTools/ToolSolderPaste.py:220 msgid "" "The height (Z) for travel between pads\n" "(without dispensing solder paste)." msgstr "" -#: flatcamGUI/PreferencesUI.py:5461 flatcamTools/ToolSolderPaste.py:231 +#: flatcamGUI/PreferencesUI.py:5462 flatcamTools/ToolSolderPaste.py:231 msgid "Z Toolchange" msgstr "" -#: flatcamGUI/PreferencesUI.py:5463 flatcamTools/ToolSolderPaste.py:233 +#: flatcamGUI/PreferencesUI.py:5464 flatcamTools/ToolSolderPaste.py:233 msgid "The height (Z) for tool (nozzle) change." msgstr "" -#: flatcamGUI/PreferencesUI.py:5472 flatcamTools/ToolSolderPaste.py:241 +#: flatcamGUI/PreferencesUI.py:5473 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." msgstr "" -#: flatcamGUI/PreferencesUI.py:5486 flatcamTools/ToolSolderPaste.py:254 +#: flatcamGUI/PreferencesUI.py:5487 flatcamTools/ToolSolderPaste.py:254 msgid "Feedrate (speed) while moving on the X-Y plane." msgstr "" -#: flatcamGUI/PreferencesUI.py:5499 flatcamTools/ToolSolderPaste.py:266 +#: flatcamGUI/PreferencesUI.py:5500 flatcamTools/ToolSolderPaste.py:266 msgid "" "Feedrate (speed) while moving vertically\n" "(on Z plane)." msgstr "" -#: flatcamGUI/PreferencesUI.py:5511 flatcamTools/ToolSolderPaste.py:277 +#: flatcamGUI/PreferencesUI.py:5512 flatcamTools/ToolSolderPaste.py:277 msgid "Feedrate Z Dispense" msgstr "" -#: flatcamGUI/PreferencesUI.py:5513 +#: flatcamGUI/PreferencesUI.py:5514 msgid "" "Feedrate (speed) while moving up vertically\n" "to Dispense position (on Z plane)." msgstr "" -#: flatcamGUI/PreferencesUI.py:5524 flatcamTools/ToolSolderPaste.py:289 +#: flatcamGUI/PreferencesUI.py:5525 flatcamTools/ToolSolderPaste.py:289 msgid "Spindle Speed FWD" msgstr "" -#: flatcamGUI/PreferencesUI.py:5526 flatcamTools/ToolSolderPaste.py:291 +#: flatcamGUI/PreferencesUI.py:5527 flatcamTools/ToolSolderPaste.py:291 msgid "" "The dispenser speed while pushing solder paste\n" "through the dispenser nozzle." msgstr "" -#: flatcamGUI/PreferencesUI.py:5538 flatcamTools/ToolSolderPaste.py:302 +#: flatcamGUI/PreferencesUI.py:5539 flatcamTools/ToolSolderPaste.py:302 msgid "Dwell FWD" msgstr "" -#: flatcamGUI/PreferencesUI.py:5540 flatcamTools/ToolSolderPaste.py:304 +#: flatcamGUI/PreferencesUI.py:5541 flatcamTools/ToolSolderPaste.py:304 msgid "Pause after solder dispensing." msgstr "" -#: flatcamGUI/PreferencesUI.py:5550 flatcamTools/ToolSolderPaste.py:313 +#: flatcamGUI/PreferencesUI.py:5551 flatcamTools/ToolSolderPaste.py:313 msgid "Spindle Speed REV" msgstr "" -#: flatcamGUI/PreferencesUI.py:5552 flatcamTools/ToolSolderPaste.py:315 +#: flatcamGUI/PreferencesUI.py:5553 flatcamTools/ToolSolderPaste.py:315 msgid "" "The dispenser speed while retracting solder paste\n" "through the dispenser nozzle." msgstr "" -#: flatcamGUI/PreferencesUI.py:5564 flatcamTools/ToolSolderPaste.py:326 +#: flatcamGUI/PreferencesUI.py:5565 flatcamTools/ToolSolderPaste.py:326 msgid "Dwell REV" msgstr "" -#: flatcamGUI/PreferencesUI.py:5566 flatcamTools/ToolSolderPaste.py:328 +#: flatcamGUI/PreferencesUI.py:5567 flatcamTools/ToolSolderPaste.py:328 msgid "" "Pause after solder paste dispenser retracted,\n" "to allow pressure equilibrium." msgstr "" -#: flatcamGUI/PreferencesUI.py:5575 flatcamTools/ToolSolderPaste.py:336 +#: flatcamGUI/PreferencesUI.py:5576 flatcamTools/ToolSolderPaste.py:336 msgid "Files that control the GCode generation." msgstr "" -#: flatcamGUI/PreferencesUI.py:5590 +#: flatcamGUI/PreferencesUI.py:5591 msgid "Substractor Tool Options" msgstr "" -#: flatcamGUI/PreferencesUI.py:5596 +#: flatcamGUI/PreferencesUI.py:5597 msgid "" "A tool to substract one Gerber or Geometry object\n" "from another of the same type." msgstr "" -#: flatcamGUI/PreferencesUI.py:5601 flatcamTools/ToolSub.py:149 +#: flatcamGUI/PreferencesUI.py:5602 flatcamTools/ToolSub.py:149 msgid "Close paths" msgstr "" -#: flatcamGUI/PreferencesUI.py:5602 +#: flatcamGUI/PreferencesUI.py:5603 msgid "Checking this will close the paths cut by the Geometry substractor object." msgstr "" -#: flatcamGUI/PreferencesUI.py:5613 +#: flatcamGUI/PreferencesUI.py:5614 msgid "Check Rules Tool Options" msgstr "" -#: flatcamGUI/PreferencesUI.py:5618 +#: flatcamGUI/PreferencesUI.py:5619 msgid "" "A tool to check if Gerber files are within a set\n" "of Manufacturing Rules." msgstr "" -#: flatcamGUI/PreferencesUI.py:5628 flatcamTools/ToolRulesCheck.py:256 +#: flatcamGUI/PreferencesUI.py:5629 flatcamTools/ToolRulesCheck.py:256 #: flatcamTools/ToolRulesCheck.py:920 msgid "Trace Size" msgstr "" -#: flatcamGUI/PreferencesUI.py:5630 flatcamTools/ToolRulesCheck.py:258 +#: flatcamGUI/PreferencesUI.py:5631 flatcamTools/ToolRulesCheck.py:258 msgid "This checks if the minimum size for traces is met." msgstr "" -#: 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 +#: flatcamGUI/PreferencesUI.py:5641 flatcamGUI/PreferencesUI.py:5661 +#: flatcamGUI/PreferencesUI.py:5681 flatcamGUI/PreferencesUI.py:5701 +#: flatcamGUI/PreferencesUI.py:5721 flatcamGUI/PreferencesUI.py:5741 +#: flatcamGUI/PreferencesUI.py:5761 flatcamGUI/PreferencesUI.py:5781 +#: flatcamGUI/PreferencesUI.py:5803 flatcamGUI/PreferencesUI.py:5823 #: flatcamTools/ToolRulesCheck.py:268 flatcamTools/ToolRulesCheck.py:290 #: flatcamTools/ToolRulesCheck.py:313 flatcamTools/ToolRulesCheck.py:336 #: flatcamTools/ToolRulesCheck.py:359 flatcamTools/ToolRulesCheck.py:382 @@ -9984,173 +9984,173 @@ msgstr "" msgid "Min value" msgstr "" -#: flatcamGUI/PreferencesUI.py:5642 flatcamTools/ToolRulesCheck.py:270 +#: flatcamGUI/PreferencesUI.py:5643 flatcamTools/ToolRulesCheck.py:270 msgid "Minimum acceptable trace size." msgstr "" -#: flatcamGUI/PreferencesUI.py:5647 flatcamTools/ToolRulesCheck.py:277 +#: flatcamGUI/PreferencesUI.py:5648 flatcamTools/ToolRulesCheck.py:277 #: flatcamTools/ToolRulesCheck.py:1148 flatcamTools/ToolRulesCheck.py:1178 msgid "Copper to Copper clearance" msgstr "" -#: flatcamGUI/PreferencesUI.py:5649 flatcamTools/ToolRulesCheck.py:279 +#: flatcamGUI/PreferencesUI.py:5650 flatcamTools/ToolRulesCheck.py:279 msgid "" "This checks if the minimum clearance between copper\n" "features is met." msgstr "" -#: 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 +#: flatcamGUI/PreferencesUI.py:5663 flatcamGUI/PreferencesUI.py:5683 +#: flatcamGUI/PreferencesUI.py:5703 flatcamGUI/PreferencesUI.py:5723 +#: flatcamGUI/PreferencesUI.py:5743 flatcamGUI/PreferencesUI.py:5763 +#: flatcamGUI/PreferencesUI.py:5825 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 "" -#: flatcamGUI/PreferencesUI.py:5667 flatcamTools/ToolRulesCheck.py:300 +#: flatcamGUI/PreferencesUI.py:5668 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 "" -#: flatcamGUI/PreferencesUI.py:5669 flatcamTools/ToolRulesCheck.py:302 +#: flatcamGUI/PreferencesUI.py:5670 flatcamTools/ToolRulesCheck.py:302 msgid "" "This checks if the minimum clearance between copper\n" "features and the outline is met." msgstr "" -#: flatcamGUI/PreferencesUI.py:5687 flatcamTools/ToolRulesCheck.py:323 +#: flatcamGUI/PreferencesUI.py:5688 flatcamTools/ToolRulesCheck.py:323 msgid "Silk to Silk Clearance" msgstr "" -#: flatcamGUI/PreferencesUI.py:5689 flatcamTools/ToolRulesCheck.py:325 +#: flatcamGUI/PreferencesUI.py:5690 flatcamTools/ToolRulesCheck.py:325 msgid "" "This checks if the minimum clearance between silkscreen\n" "features and silkscreen features is met." msgstr "" -#: flatcamGUI/PreferencesUI.py:5707 flatcamTools/ToolRulesCheck.py:346 +#: flatcamGUI/PreferencesUI.py:5708 flatcamTools/ToolRulesCheck.py:346 #: flatcamTools/ToolRulesCheck.py:1317 flatcamTools/ToolRulesCheck.py:1323 #: flatcamTools/ToolRulesCheck.py:1341 msgid "Silk to Solder Mask Clearance" msgstr "" -#: flatcamGUI/PreferencesUI.py:5709 flatcamTools/ToolRulesCheck.py:348 +#: flatcamGUI/PreferencesUI.py:5710 flatcamTools/ToolRulesCheck.py:348 msgid "" "This checks if the minimum clearance between silkscreen\n" "features and soldermask features is met." msgstr "" -#: flatcamGUI/PreferencesUI.py:5727 flatcamTools/ToolRulesCheck.py:369 +#: flatcamGUI/PreferencesUI.py:5728 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 "" -#: flatcamGUI/PreferencesUI.py:5729 flatcamTools/ToolRulesCheck.py:371 +#: flatcamGUI/PreferencesUI.py:5730 flatcamTools/ToolRulesCheck.py:371 msgid "" "This checks if the minimum clearance between silk\n" "features and the outline is met." msgstr "" -#: flatcamGUI/PreferencesUI.py:5747 flatcamTools/ToolRulesCheck.py:392 +#: flatcamGUI/PreferencesUI.py:5748 flatcamTools/ToolRulesCheck.py:392 #: flatcamTools/ToolRulesCheck.py:1409 flatcamTools/ToolRulesCheck.py:1436 msgid "Minimum Solder Mask Sliver" msgstr "" -#: flatcamGUI/PreferencesUI.py:5749 flatcamTools/ToolRulesCheck.py:394 +#: flatcamGUI/PreferencesUI.py:5750 flatcamTools/ToolRulesCheck.py:394 msgid "" "This checks if the minimum clearance between soldermask\n" "features and soldermask features is met." msgstr "" -#: flatcamGUI/PreferencesUI.py:5767 flatcamTools/ToolRulesCheck.py:415 +#: flatcamGUI/PreferencesUI.py:5768 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 "" -#: flatcamGUI/PreferencesUI.py:5769 flatcamTools/ToolRulesCheck.py:417 +#: flatcamGUI/PreferencesUI.py:5770 flatcamTools/ToolRulesCheck.py:417 msgid "" "This checks if the minimum copper ring left by drilling\n" "a hole into a pad is met." msgstr "" -#: flatcamGUI/PreferencesUI.py:5782 flatcamTools/ToolRulesCheck.py:430 +#: flatcamGUI/PreferencesUI.py:5783 flatcamTools/ToolRulesCheck.py:430 msgid "Minimum acceptable ring value." msgstr "" -#: flatcamGUI/PreferencesUI.py:5789 flatcamTools/ToolRulesCheck.py:440 +#: flatcamGUI/PreferencesUI.py:5790 flatcamTools/ToolRulesCheck.py:440 #: flatcamTools/ToolRulesCheck.py:864 msgid "Hole to Hole Clearance" msgstr "" -#: flatcamGUI/PreferencesUI.py:5791 flatcamTools/ToolRulesCheck.py:442 +#: flatcamGUI/PreferencesUI.py:5792 flatcamTools/ToolRulesCheck.py:442 msgid "" "This checks if the minimum clearance between a drill hole\n" "and another drill hole is met." msgstr "" -#: flatcamGUI/PreferencesUI.py:5804 flatcamTools/ToolRulesCheck.py:478 +#: flatcamGUI/PreferencesUI.py:5805 flatcamTools/ToolRulesCheck.py:478 msgid "Minimum acceptable drill size." msgstr "" -#: flatcamGUI/PreferencesUI.py:5809 flatcamTools/ToolRulesCheck.py:463 +#: flatcamGUI/PreferencesUI.py:5810 flatcamTools/ToolRulesCheck.py:463 #: flatcamTools/ToolRulesCheck.py:838 msgid "Hole Size" msgstr "" -#: flatcamGUI/PreferencesUI.py:5811 flatcamTools/ToolRulesCheck.py:465 +#: flatcamGUI/PreferencesUI.py:5812 flatcamTools/ToolRulesCheck.py:465 msgid "" "This checks if the drill holes\n" "sizes are above the threshold." msgstr "" -#: flatcamGUI/PreferencesUI.py:5836 +#: flatcamGUI/PreferencesUI.py:5837 msgid "Optimal Tool Options" msgstr "" -#: flatcamGUI/PreferencesUI.py:5842 +#: flatcamGUI/PreferencesUI.py:5843 msgid "" "A tool to find the minimum distance between\n" "every two Gerber geometric elements" msgstr "" -#: flatcamGUI/PreferencesUI.py:5857 flatcamTools/ToolOptimal.py:78 +#: flatcamGUI/PreferencesUI.py:5858 flatcamTools/ToolOptimal.py:78 msgid "Precision" msgstr "" -#: flatcamGUI/PreferencesUI.py:5859 +#: flatcamGUI/PreferencesUI.py:5860 msgid "Number of decimals for the distances and coordinates in this tool." msgstr "" -#: flatcamGUI/PreferencesUI.py:5873 +#: flatcamGUI/PreferencesUI.py:5874 msgid "QRCode Tool Options" msgstr "" -#: flatcamGUI/PreferencesUI.py:5879 +#: flatcamGUI/PreferencesUI.py:5880 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 "" -#: flatcamGUI/PreferencesUI.py:5891 flatcamTools/ToolQRCode.py:99 +#: flatcamGUI/PreferencesUI.py:5892 flatcamTools/ToolQRCode.py:99 msgid "Version" msgstr "" -#: flatcamGUI/PreferencesUI.py:5893 flatcamTools/ToolQRCode.py:101 +#: flatcamGUI/PreferencesUI.py:5894 flatcamTools/ToolQRCode.py:101 msgid "" "QRCode version can have values from 1 (21x21 boxes)\n" "to 40 (177x177 boxes)." msgstr "" -#: flatcamGUI/PreferencesUI.py:5904 flatcamTools/ToolQRCode.py:112 +#: flatcamGUI/PreferencesUI.py:5905 flatcamTools/ToolQRCode.py:112 msgid "Error correction" msgstr "" -#: flatcamGUI/PreferencesUI.py:5906 flatcamGUI/PreferencesUI.py:5917 +#: flatcamGUI/PreferencesUI.py:5907 flatcamGUI/PreferencesUI.py:5918 #: flatcamTools/ToolQRCode.py:114 flatcamTools/ToolQRCode.py:125 #, python-format msgid "" @@ -10161,60 +10161,60 @@ msgid "" "H = maximum 30%% errors can be corrected." msgstr "" -#: flatcamGUI/PreferencesUI.py:5927 flatcamTools/ToolQRCode.py:135 +#: flatcamGUI/PreferencesUI.py:5928 flatcamTools/ToolQRCode.py:135 msgid "Box Size" msgstr "" -#: flatcamGUI/PreferencesUI.py:5929 flatcamTools/ToolQRCode.py:137 +#: flatcamGUI/PreferencesUI.py:5930 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 "" -#: flatcamGUI/PreferencesUI.py:5940 flatcamTools/ToolQRCode.py:148 +#: flatcamGUI/PreferencesUI.py:5941 flatcamTools/ToolQRCode.py:148 msgid "Border Size" msgstr "" -#: flatcamGUI/PreferencesUI.py:5942 flatcamTools/ToolQRCode.py:150 +#: flatcamGUI/PreferencesUI.py:5943 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 "" -#: flatcamGUI/PreferencesUI.py:5953 flatcamTools/ToolQRCode.py:162 +#: flatcamGUI/PreferencesUI.py:5954 flatcamTools/ToolQRCode.py:162 msgid "QRCode Data" msgstr "" -#: flatcamGUI/PreferencesUI.py:5955 flatcamTools/ToolQRCode.py:164 +#: flatcamGUI/PreferencesUI.py:5956 flatcamTools/ToolQRCode.py:164 msgid "QRCode Data. Alphanumeric text to be encoded in the QRCode." msgstr "" -#: flatcamGUI/PreferencesUI.py:5959 flatcamTools/ToolQRCode.py:168 +#: flatcamGUI/PreferencesUI.py:5960 flatcamTools/ToolQRCode.py:168 msgid "Add here the text to be included in the QRCode..." msgstr "" -#: flatcamGUI/PreferencesUI.py:5965 flatcamTools/ToolQRCode.py:174 +#: flatcamGUI/PreferencesUI.py:5966 flatcamTools/ToolQRCode.py:174 msgid "Polarity" msgstr "" -#: flatcamGUI/PreferencesUI.py:5967 flatcamTools/ToolQRCode.py:176 +#: flatcamGUI/PreferencesUI.py:5968 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 "" -#: flatcamGUI/PreferencesUI.py:5971 flatcamTools/ToolFilm.py:296 +#: flatcamGUI/PreferencesUI.py:5972 flatcamTools/ToolFilm.py:296 #: flatcamTools/ToolQRCode.py:180 msgid "Negative" msgstr "" -#: flatcamGUI/PreferencesUI.py:5972 flatcamTools/ToolFilm.py:295 +#: flatcamGUI/PreferencesUI.py:5973 flatcamTools/ToolFilm.py:295 #: flatcamTools/ToolQRCode.py:181 msgid "Positive" msgstr "" -#: flatcamGUI/PreferencesUI.py:5974 flatcamTools/ToolQRCode.py:183 +#: flatcamGUI/PreferencesUI.py:5975 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" @@ -10222,75 +10222,75 @@ msgid "" "file then perhaps the QRCode can be added as negative." msgstr "" -#: flatcamGUI/PreferencesUI.py:5985 flatcamGUI/PreferencesUI.py:5991 +#: flatcamGUI/PreferencesUI.py:5986 flatcamGUI/PreferencesUI.py:5992 #: 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 "" -#: flatcamGUI/PreferencesUI.py:5988 flatcamTools/ToolQRCode.py:197 +#: flatcamGUI/PreferencesUI.py:5989 flatcamTools/ToolQRCode.py:197 msgid "Rounded" msgstr "" -#: flatcamGUI/PreferencesUI.py:5998 flatcamTools/ToolQRCode.py:228 +#: flatcamGUI/PreferencesUI.py:5999 flatcamTools/ToolQRCode.py:228 msgid "Fill Color" msgstr "" -#: flatcamGUI/PreferencesUI.py:6000 flatcamTools/ToolQRCode.py:230 +#: flatcamGUI/PreferencesUI.py:6001 flatcamTools/ToolQRCode.py:230 msgid "Set the QRCode fill color (squares color)." msgstr "" -#: flatcamGUI/PreferencesUI.py:6019 flatcamTools/ToolQRCode.py:252 +#: flatcamGUI/PreferencesUI.py:6020 flatcamTools/ToolQRCode.py:252 msgid "Back Color" msgstr "" -#: flatcamGUI/PreferencesUI.py:6021 flatcamTools/ToolQRCode.py:254 +#: flatcamGUI/PreferencesUI.py:6022 flatcamTools/ToolQRCode.py:254 msgid "Set the QRCode background color." msgstr "" -#: flatcamGUI/PreferencesUI.py:6061 +#: flatcamGUI/PreferencesUI.py:6062 msgid "Copper Thieving Tool Options" msgstr "" -#: flatcamGUI/PreferencesUI.py:6073 +#: flatcamGUI/PreferencesUI.py:6074 msgid "" "A tool to generate a Copper Thieving that can be added\n" "to a selected Gerber file." msgstr "" -#: flatcamGUI/PreferencesUI.py:6081 +#: flatcamGUI/PreferencesUI.py:6082 msgid "Number of steps (lines) used to interpolate circles." msgstr "" -#: flatcamGUI/PreferencesUI.py:6091 flatcamGUI/PreferencesUI.py:6295 +#: flatcamGUI/PreferencesUI.py:6092 flatcamGUI/PreferencesUI.py:6296 #: flatcamTools/ToolCopperThieving.py:96 flatcamTools/ToolCopperThieving.py:429 msgid "Clearance" msgstr "" -#: flatcamGUI/PreferencesUI.py:6093 +#: flatcamGUI/PreferencesUI.py:6094 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 "" -#: flatcamGUI/PreferencesUI.py:6121 flatcamTools/ToolCopperThieving.py:126 +#: flatcamGUI/PreferencesUI.py:6122 flatcamTools/ToolCopperThieving.py:126 #: flatcamTools/ToolNonCopperClear.py:436 flatcamTools/ToolPaint.py:314 msgid "Area Selection" msgstr "" -#: flatcamGUI/PreferencesUI.py:6122 flatcamTools/ToolCopperThieving.py:127 +#: flatcamGUI/PreferencesUI.py:6123 flatcamTools/ToolCopperThieving.py:127 #: flatcamTools/ToolNonCopperClear.py:437 flatcamTools/ToolPaint.py:316 msgid "Reference Object" msgstr "" -#: flatcamGUI/PreferencesUI.py:6124 flatcamTools/ToolCopperThieving.py:129 +#: flatcamGUI/PreferencesUI.py:6125 flatcamTools/ToolCopperThieving.py:129 #: flatcamTools/ToolNonCopperClear.py:439 msgid "Reference:" msgstr "" -#: flatcamGUI/PreferencesUI.py:6126 +#: flatcamGUI/PreferencesUI.py:6127 msgid "" "- 'Itself' - the copper Thieving extent is based on the object extent.\n" "- 'Area Selection' - left mouse click to start selection of the area to be filled.\n" @@ -10298,42 +10298,42 @@ msgid "" "object." msgstr "" -#: flatcamGUI/PreferencesUI.py:6135 flatcamTools/ToolCopperThieving.py:170 +#: flatcamGUI/PreferencesUI.py:6136 flatcamTools/ToolCopperThieving.py:170 msgid "Rectangular" msgstr "" -#: flatcamGUI/PreferencesUI.py:6136 flatcamTools/ToolCopperThieving.py:171 +#: flatcamGUI/PreferencesUI.py:6137 flatcamTools/ToolCopperThieving.py:171 msgid "Minimal" msgstr "" -#: flatcamGUI/PreferencesUI.py:6138 flatcamTools/ToolCopperThieving.py:173 +#: flatcamGUI/PreferencesUI.py:6139 flatcamTools/ToolCopperThieving.py:173 #: flatcamTools/ToolFilm.py:113 msgid "Box Type:" msgstr "" -#: flatcamGUI/PreferencesUI.py:6140 flatcamTools/ToolCopperThieving.py:175 +#: flatcamGUI/PreferencesUI.py:6141 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 "" -#: flatcamGUI/PreferencesUI.py:6154 flatcamTools/ToolCopperThieving.py:191 +#: flatcamGUI/PreferencesUI.py:6155 flatcamTools/ToolCopperThieving.py:191 msgid "Dots Grid" msgstr "" -#: flatcamGUI/PreferencesUI.py:6155 flatcamTools/ToolCopperThieving.py:192 +#: flatcamGUI/PreferencesUI.py:6156 flatcamTools/ToolCopperThieving.py:192 msgid "Squares Grid" msgstr "" -#: flatcamGUI/PreferencesUI.py:6156 flatcamTools/ToolCopperThieving.py:193 +#: flatcamGUI/PreferencesUI.py:6157 flatcamTools/ToolCopperThieving.py:193 msgid "Lines Grid" msgstr "" -#: flatcamGUI/PreferencesUI.py:6158 flatcamTools/ToolCopperThieving.py:195 +#: flatcamGUI/PreferencesUI.py:6159 flatcamTools/ToolCopperThieving.py:195 msgid "Fill Type:" msgstr "" -#: flatcamGUI/PreferencesUI.py:6160 flatcamTools/ToolCopperThieving.py:197 +#: flatcamGUI/PreferencesUI.py:6161 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" @@ -10341,131 +10341,131 @@ msgid "" "- 'Lines Grid' - the empty area will be filled with a pattern of lines." msgstr "" -#: flatcamGUI/PreferencesUI.py:6168 flatcamTools/ToolCopperThieving.py:216 +#: flatcamGUI/PreferencesUI.py:6169 flatcamTools/ToolCopperThieving.py:216 msgid "Dots Grid Parameters" msgstr "" -#: flatcamGUI/PreferencesUI.py:6174 flatcamTools/ToolCopperThieving.py:222 +#: flatcamGUI/PreferencesUI.py:6175 flatcamTools/ToolCopperThieving.py:222 msgid "Dot diameter in Dots Grid." msgstr "" -#: flatcamGUI/PreferencesUI.py:6185 flatcamGUI/PreferencesUI.py:6214 -#: flatcamGUI/PreferencesUI.py:6243 flatcamTools/ToolCopperThieving.py:233 +#: flatcamGUI/PreferencesUI.py:6186 flatcamGUI/PreferencesUI.py:6215 +#: flatcamGUI/PreferencesUI.py:6244 flatcamTools/ToolCopperThieving.py:233 #: flatcamTools/ToolCopperThieving.py:273 flatcamTools/ToolCopperThieving.py:313 msgid "Spacing" msgstr "" -#: flatcamGUI/PreferencesUI.py:6187 flatcamTools/ToolCopperThieving.py:235 +#: flatcamGUI/PreferencesUI.py:6188 flatcamTools/ToolCopperThieving.py:235 msgid "Distance between each two dots in Dots Grid." msgstr "" -#: flatcamGUI/PreferencesUI.py:6197 flatcamTools/ToolCopperThieving.py:256 +#: flatcamGUI/PreferencesUI.py:6198 flatcamTools/ToolCopperThieving.py:256 msgid "Squares Grid Parameters" msgstr "" -#: flatcamGUI/PreferencesUI.py:6203 flatcamTools/ToolCopperThieving.py:262 +#: flatcamGUI/PreferencesUI.py:6204 flatcamTools/ToolCopperThieving.py:262 msgid "Square side size in Squares Grid." msgstr "" -#: flatcamGUI/PreferencesUI.py:6216 flatcamTools/ToolCopperThieving.py:275 +#: flatcamGUI/PreferencesUI.py:6217 flatcamTools/ToolCopperThieving.py:275 msgid "Distance between each two squares in Squares Grid." msgstr "" -#: flatcamGUI/PreferencesUI.py:6226 flatcamTools/ToolCopperThieving.py:296 +#: flatcamGUI/PreferencesUI.py:6227 flatcamTools/ToolCopperThieving.py:296 msgid "Lines Grid Parameters" msgstr "" -#: flatcamGUI/PreferencesUI.py:6232 flatcamTools/ToolCopperThieving.py:302 +#: flatcamGUI/PreferencesUI.py:6233 flatcamTools/ToolCopperThieving.py:302 msgid "Line thickness size in Lines Grid." msgstr "" -#: flatcamGUI/PreferencesUI.py:6245 flatcamTools/ToolCopperThieving.py:315 +#: flatcamGUI/PreferencesUI.py:6246 flatcamTools/ToolCopperThieving.py:315 msgid "Distance between each two lines in Lines Grid." msgstr "" -#: flatcamGUI/PreferencesUI.py:6255 flatcamTools/ToolCopperThieving.py:353 +#: flatcamGUI/PreferencesUI.py:6256 flatcamTools/ToolCopperThieving.py:353 msgid "Robber Bar Parameters" msgstr "" -#: flatcamGUI/PreferencesUI.py:6257 flatcamTools/ToolCopperThieving.py:355 +#: flatcamGUI/PreferencesUI.py:6258 flatcamTools/ToolCopperThieving.py:355 msgid "" "Parameters used for the robber bar.\n" "Robber bar = copper border to help in pattern hole plating." msgstr "" -#: flatcamGUI/PreferencesUI.py:6265 flatcamTools/ToolCopperThieving.py:363 +#: flatcamGUI/PreferencesUI.py:6266 flatcamTools/ToolCopperThieving.py:363 msgid "Bounding box margin for robber bar." msgstr "" -#: flatcamGUI/PreferencesUI.py:6276 flatcamTools/ToolCopperThieving.py:374 +#: flatcamGUI/PreferencesUI.py:6277 flatcamTools/ToolCopperThieving.py:374 msgid "Thickness" msgstr "" -#: flatcamGUI/PreferencesUI.py:6278 flatcamTools/ToolCopperThieving.py:376 +#: flatcamGUI/PreferencesUI.py:6279 flatcamTools/ToolCopperThieving.py:376 msgid "The robber bar thickness." msgstr "" -#: flatcamGUI/PreferencesUI.py:6288 flatcamTools/ToolCopperThieving.py:407 +#: flatcamGUI/PreferencesUI.py:6289 flatcamTools/ToolCopperThieving.py:407 msgid "Pattern Plating Mask" msgstr "" -#: flatcamGUI/PreferencesUI.py:6290 flatcamTools/ToolCopperThieving.py:409 +#: flatcamGUI/PreferencesUI.py:6291 flatcamTools/ToolCopperThieving.py:409 msgid "Generate a mask for pattern plating." msgstr "" -#: flatcamGUI/PreferencesUI.py:6297 flatcamTools/ToolCopperThieving.py:431 +#: flatcamGUI/PreferencesUI.py:6298 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:6316 +#: flatcamGUI/PreferencesUI.py:6317 msgid "Fiducials Tool Options" msgstr "" -#: flatcamGUI/PreferencesUI.py:6327 flatcamGUI/PreferencesUI.py:6443 +#: flatcamGUI/PreferencesUI.py:6328 flatcamGUI/PreferencesUI.py:6444 #: flatcamTools/ToolCopperThieving.py:91 flatcamTools/ToolFiducials.py:151 msgid "Parameters used for this tool." msgstr "" -#: flatcamGUI/PreferencesUI.py:6334 flatcamTools/ToolFiducials.py:158 +#: flatcamGUI/PreferencesUI.py:6335 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:6362 flatcamTools/ToolFiducials.py:186 +#: flatcamGUI/PreferencesUI.py:6363 flatcamTools/ToolFiducials.py:186 msgid "Auto" msgstr "" -#: flatcamGUI/PreferencesUI.py:6363 flatcamTools/ToolFiducials.py:187 +#: flatcamGUI/PreferencesUI.py:6364 flatcamTools/ToolFiducials.py:187 msgid "Manual" msgstr "" -#: flatcamGUI/PreferencesUI.py:6365 flatcamTools/ToolFiducials.py:189 +#: flatcamGUI/PreferencesUI.py:6366 flatcamTools/ToolFiducials.py:189 msgid "Mode:" msgstr "" -#: flatcamGUI/PreferencesUI.py:6367 +#: flatcamGUI/PreferencesUI.py:6368 msgid "" "- 'Auto' - automatic placement of fiducials in the corners of the bounding box.\n" "- 'Manual' - manual placement of fiducials." msgstr "" -#: flatcamGUI/PreferencesUI.py:6375 flatcamTools/ToolFiducials.py:199 +#: flatcamGUI/PreferencesUI.py:6376 flatcamTools/ToolFiducials.py:199 msgid "Up" msgstr "" -#: flatcamGUI/PreferencesUI.py:6376 flatcamTools/ToolFiducials.py:200 +#: flatcamGUI/PreferencesUI.py:6377 flatcamTools/ToolFiducials.py:200 msgid "Down" msgstr "" -#: flatcamGUI/PreferencesUI.py:6379 flatcamTools/ToolFiducials.py:203 +#: flatcamGUI/PreferencesUI.py:6380 flatcamTools/ToolFiducials.py:203 msgid "Second fiducial" msgstr "" -#: flatcamGUI/PreferencesUI.py:6381 flatcamTools/ToolFiducials.py:205 +#: flatcamGUI/PreferencesUI.py:6382 flatcamTools/ToolFiducials.py:205 msgid "" "The position for the second fiducial.\n" "- 'Up' - the order is: bottom-left, top-left, top-right.\n" @@ -10473,19 +10473,19 @@ msgid "" "- 'None' - there is no second fiducial. The order is: bottom-left, top-right." msgstr "" -#: flatcamGUI/PreferencesUI.py:6397 flatcamTools/ToolFiducials.py:221 +#: flatcamGUI/PreferencesUI.py:6398 flatcamTools/ToolFiducials.py:221 msgid "Cross" msgstr "" -#: flatcamGUI/PreferencesUI.py:6398 flatcamTools/ToolFiducials.py:222 +#: flatcamGUI/PreferencesUI.py:6399 flatcamTools/ToolFiducials.py:222 msgid "Chess" msgstr "" -#: flatcamGUI/PreferencesUI.py:6401 flatcamTools/ToolFiducials.py:224 +#: flatcamGUI/PreferencesUI.py:6402 flatcamTools/ToolFiducials.py:224 msgid "Fiducial Type" msgstr "" -#: flatcamGUI/PreferencesUI.py:6403 flatcamTools/ToolFiducials.py:226 +#: flatcamGUI/PreferencesUI.py:6404 flatcamTools/ToolFiducials.py:226 msgid "" "The type of fiducial.\n" "- 'Circular' - this is the regular fiducial.\n" @@ -10493,19 +10493,19 @@ msgid "" "- 'Chess' - chess pattern fiducial." msgstr "" -#: flatcamGUI/PreferencesUI.py:6412 flatcamTools/ToolFiducials.py:235 +#: flatcamGUI/PreferencesUI.py:6413 flatcamTools/ToolFiducials.py:235 msgid "Line thickness" msgstr "" -#: flatcamGUI/PreferencesUI.py:6432 +#: flatcamGUI/PreferencesUI.py:6433 msgid "Calibration Tool Options" msgstr "" -#: flatcamGUI/PreferencesUI.py:6448 flatcamTools/ToolCalibration.py:181 +#: flatcamGUI/PreferencesUI.py:6449 flatcamTools/ToolCalibration.py:181 msgid "Source Type" msgstr "" -#: flatcamGUI/PreferencesUI.py:6449 flatcamTools/ToolCalibration.py:182 +#: flatcamGUI/PreferencesUI.py:6450 flatcamTools/ToolCalibration.py:182 msgid "" "The source of calibration points.\n" "It can be:\n" @@ -10513,135 +10513,135 @@ msgid "" "- Free -> click freely on canvas to acquire the calibration points" msgstr "" -#: flatcamGUI/PreferencesUI.py:6454 flatcamTools/ToolCalibration.py:187 +#: flatcamGUI/PreferencesUI.py:6455 flatcamTools/ToolCalibration.py:187 msgid "Free" msgstr "" -#: flatcamGUI/PreferencesUI.py:6468 flatcamTools/ToolCalibration.py:76 +#: flatcamGUI/PreferencesUI.py:6469 flatcamTools/ToolCalibration.py:76 msgid "Height (Z) for travelling between the points." msgstr "" -#: flatcamGUI/PreferencesUI.py:6480 flatcamTools/ToolCalibration.py:88 +#: flatcamGUI/PreferencesUI.py:6481 flatcamTools/ToolCalibration.py:88 msgid "Verification Z" msgstr "" -#: flatcamGUI/PreferencesUI.py:6482 flatcamTools/ToolCalibration.py:90 +#: flatcamGUI/PreferencesUI.py:6483 flatcamTools/ToolCalibration.py:90 msgid "Height (Z) for checking the point." msgstr "" -#: flatcamGUI/PreferencesUI.py:6494 flatcamTools/ToolCalibration.py:102 +#: flatcamGUI/PreferencesUI.py:6495 flatcamTools/ToolCalibration.py:102 msgid "Zero Z tool" msgstr "" -#: flatcamGUI/PreferencesUI.py:6496 flatcamTools/ToolCalibration.py:104 +#: flatcamGUI/PreferencesUI.py:6497 flatcamTools/ToolCalibration.py:104 msgid "" "Include a sequence to zero the height (Z)\n" "of the verification tool." msgstr "" -#: flatcamGUI/PreferencesUI.py:6505 flatcamTools/ToolCalibration.py:113 +#: flatcamGUI/PreferencesUI.py:6506 flatcamTools/ToolCalibration.py:113 msgid "Height (Z) for mounting the verification probe." msgstr "" -#: flatcamGUI/PreferencesUI.py:6519 flatcamTools/ToolCalibration.py:127 +#: flatcamGUI/PreferencesUI.py:6520 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 +#: flatcamGUI/PreferencesUI.py:6531 flatcamTools/ToolCalibration.py:153 msgid "Second point" msgstr "" -#: flatcamGUI/PreferencesUI.py:6532 flatcamTools/ToolCalibration.py:155 +#: flatcamGUI/PreferencesUI.py:6533 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 +#: flatcamGUI/PreferencesUI.py:6537 flatcamTools/ToolCalibration.py:159 msgid "Top-Left" msgstr "" -#: flatcamGUI/PreferencesUI.py:6537 flatcamTools/ToolCalibration.py:160 +#: flatcamGUI/PreferencesUI.py:6538 flatcamTools/ToolCalibration.py:160 msgid "Bottom-Right" msgstr "" -#: flatcamGUI/PreferencesUI.py:6551 +#: flatcamGUI/PreferencesUI.py:6552 msgid "Excellon File associations" msgstr "" -#: flatcamGUI/PreferencesUI.py:6564 flatcamGUI/PreferencesUI.py:6637 -#: flatcamGUI/PreferencesUI.py:6707 flatcamGUI/PreferencesUI.py:6777 +#: flatcamGUI/PreferencesUI.py:6565 flatcamGUI/PreferencesUI.py:6638 +#: flatcamGUI/PreferencesUI.py:6708 flatcamGUI/PreferencesUI.py:6778 msgid "Restore" msgstr "" -#: flatcamGUI/PreferencesUI.py:6565 flatcamGUI/PreferencesUI.py:6638 -#: flatcamGUI/PreferencesUI.py:6708 +#: flatcamGUI/PreferencesUI.py:6566 flatcamGUI/PreferencesUI.py:6639 +#: flatcamGUI/PreferencesUI.py:6709 msgid "Restore the extension list to the default state." msgstr "" -#: flatcamGUI/PreferencesUI.py:6566 flatcamGUI/PreferencesUI.py:6639 -#: flatcamGUI/PreferencesUI.py:6709 flatcamGUI/PreferencesUI.py:6779 +#: flatcamGUI/PreferencesUI.py:6567 flatcamGUI/PreferencesUI.py:6640 +#: flatcamGUI/PreferencesUI.py:6710 flatcamGUI/PreferencesUI.py:6780 msgid "Delete All" msgstr "" -#: flatcamGUI/PreferencesUI.py:6567 flatcamGUI/PreferencesUI.py:6640 -#: flatcamGUI/PreferencesUI.py:6710 +#: flatcamGUI/PreferencesUI.py:6568 flatcamGUI/PreferencesUI.py:6641 +#: flatcamGUI/PreferencesUI.py:6711 msgid "Delete all extensions from the list." msgstr "" -#: flatcamGUI/PreferencesUI.py:6575 flatcamGUI/PreferencesUI.py:6648 -#: flatcamGUI/PreferencesUI.py:6718 +#: flatcamGUI/PreferencesUI.py:6576 flatcamGUI/PreferencesUI.py:6649 +#: flatcamGUI/PreferencesUI.py:6719 msgid "Extensions list" msgstr "" -#: flatcamGUI/PreferencesUI.py:6577 flatcamGUI/PreferencesUI.py:6650 -#: flatcamGUI/PreferencesUI.py:6720 +#: flatcamGUI/PreferencesUI.py:6578 flatcamGUI/PreferencesUI.py:6651 +#: flatcamGUI/PreferencesUI.py:6721 msgid "" "List of file extensions to be\n" "associated with FlatCAM." msgstr "" -#: flatcamGUI/PreferencesUI.py:6597 flatcamGUI/PreferencesUI.py:6670 -#: flatcamGUI/PreferencesUI.py:6739 flatcamGUI/PreferencesUI.py:6811 +#: flatcamGUI/PreferencesUI.py:6598 flatcamGUI/PreferencesUI.py:6671 +#: flatcamGUI/PreferencesUI.py:6740 flatcamGUI/PreferencesUI.py:6812 msgid "Extension" msgstr "" -#: flatcamGUI/PreferencesUI.py:6598 flatcamGUI/PreferencesUI.py:6671 -#: flatcamGUI/PreferencesUI.py:6740 +#: flatcamGUI/PreferencesUI.py:6599 flatcamGUI/PreferencesUI.py:6672 +#: flatcamGUI/PreferencesUI.py:6741 msgid "A file extension to be added or deleted to the list." msgstr "" -#: flatcamGUI/PreferencesUI.py:6606 flatcamGUI/PreferencesUI.py:6679 -#: flatcamGUI/PreferencesUI.py:6748 -msgid "Add Extension" -msgstr "" - #: flatcamGUI/PreferencesUI.py:6607 flatcamGUI/PreferencesUI.py:6680 #: flatcamGUI/PreferencesUI.py:6749 -msgid "Add a file extension to the list" +msgid "Add Extension" msgstr "" #: flatcamGUI/PreferencesUI.py:6608 flatcamGUI/PreferencesUI.py:6681 #: flatcamGUI/PreferencesUI.py:6750 -msgid "Delete Extension" +msgid "Add a file extension to the list" msgstr "" #: flatcamGUI/PreferencesUI.py:6609 flatcamGUI/PreferencesUI.py:6682 #: flatcamGUI/PreferencesUI.py:6751 -msgid "Delete a file extension from the list" +msgid "Delete Extension" msgstr "" -#: flatcamGUI/PreferencesUI.py:6616 flatcamGUI/PreferencesUI.py:6689 -#: flatcamGUI/PreferencesUI.py:6758 -msgid "Apply Association" +#: flatcamGUI/PreferencesUI.py:6610 flatcamGUI/PreferencesUI.py:6683 +#: flatcamGUI/PreferencesUI.py:6752 +msgid "Delete a file extension from the list" msgstr "" #: flatcamGUI/PreferencesUI.py:6617 flatcamGUI/PreferencesUI.py:6690 #: flatcamGUI/PreferencesUI.py:6759 +msgid "Apply Association" +msgstr "" + +#: flatcamGUI/PreferencesUI.py:6618 flatcamGUI/PreferencesUI.py:6691 +#: flatcamGUI/PreferencesUI.py:6760 msgid "" "Apply the file associations between\n" "FlatCAM and the files with above extensions.\n" @@ -10649,31 +10649,31 @@ msgid "" "This work only in Windows." msgstr "" -#: flatcamGUI/PreferencesUI.py:6634 +#: flatcamGUI/PreferencesUI.py:6635 msgid "GCode File associations" msgstr "" -#: flatcamGUI/PreferencesUI.py:6704 +#: flatcamGUI/PreferencesUI.py:6705 msgid "Gerber File associations" msgstr "" -#: flatcamGUI/PreferencesUI.py:6774 +#: flatcamGUI/PreferencesUI.py:6775 msgid "Autocompleter Keywords" msgstr "" -#: flatcamGUI/PreferencesUI.py:6778 +#: flatcamGUI/PreferencesUI.py:6779 msgid "Restore the autocompleter keywords list to the default state." msgstr "" -#: flatcamGUI/PreferencesUI.py:6780 +#: flatcamGUI/PreferencesUI.py:6781 msgid "Delete all autocompleter keywords from the list." msgstr "" -#: flatcamGUI/PreferencesUI.py:6788 +#: flatcamGUI/PreferencesUI.py:6789 msgid "Keywords list" msgstr "" -#: flatcamGUI/PreferencesUI.py:6790 +#: flatcamGUI/PreferencesUI.py:6791 msgid "" "List of keywords used by\n" "the autocompleter in FlatCAM.\n" @@ -10681,23 +10681,23 @@ msgid "" "in the Code Editor and for the Tcl Shell." msgstr "" -#: flatcamGUI/PreferencesUI.py:6812 +#: flatcamGUI/PreferencesUI.py:6813 msgid "A keyword to be added or deleted to the list." msgstr "" -#: flatcamGUI/PreferencesUI.py:6820 +#: flatcamGUI/PreferencesUI.py:6821 msgid "Add keyword" msgstr "" -#: flatcamGUI/PreferencesUI.py:6821 +#: flatcamGUI/PreferencesUI.py:6822 msgid "Add a keyword to the list" msgstr "" -#: flatcamGUI/PreferencesUI.py:6822 +#: flatcamGUI/PreferencesUI.py:6823 msgid "Delete keyword" msgstr "" -#: flatcamGUI/PreferencesUI.py:6823 +#: flatcamGUI/PreferencesUI.py:6824 msgid "Delete a keyword from the list" msgstr "" @@ -11344,8 +11344,8 @@ msgstr "" #: flatcamTools/ToolCopperThieving.py:754 flatcamTools/ToolCopperThieving.py:787 #: flatcamTools/ToolCutOut.py:466 flatcamTools/ToolCutOut.py:640 -#: flatcamTools/ToolNonCopperClear.py:1156 flatcamTools/ToolNonCopperClear.py:1197 -#: flatcamTools/ToolNonCopperClear.py:1229 flatcamTools/ToolPaint.py:1079 +#: flatcamTools/ToolNonCopperClear.py:1157 flatcamTools/ToolNonCopperClear.py:1198 +#: flatcamTools/ToolNonCopperClear.py:1230 flatcamTools/ToolPaint.py:1080 #: flatcamTools/ToolPanelize.py:401 flatcamTools/ToolPanelize.py:416 #: flatcamTools/ToolSub.py:288 flatcamTools/ToolSub.py:301 flatcamTools/ToolSub.py:492 #: flatcamTools/ToolSub.py:507 tclCommands/TclCommandCopperClear.py:97 @@ -11353,7 +11353,7 @@ msgstr "" msgid "Could not retrieve object" msgstr "" -#: flatcamTools/ToolCopperThieving.py:764 flatcamTools/ToolNonCopperClear.py:1210 +#: flatcamTools/ToolCopperThieving.py:764 flatcamTools/ToolNonCopperClear.py:1211 msgid "Click the start point of the area." msgstr "" @@ -11361,8 +11361,8 @@ msgstr "" msgid "Click the end point of the filling area." msgstr "" -#: flatcamTools/ToolCopperThieving.py:821 flatcamTools/ToolNonCopperClear.py:1266 -#: flatcamTools/ToolPaint.py:1206 +#: flatcamTools/ToolCopperThieving.py:821 flatcamTools/ToolNonCopperClear.py:1267 +#: flatcamTools/ToolPaint.py:1207 msgid "Zone added. Click to start adding next zone or right click to finish." msgstr "" @@ -11392,12 +11392,12 @@ msgstr "" msgid "Geometry not supported for bounding box" msgstr "" -#: flatcamTools/ToolCopperThieving.py:1061 flatcamTools/ToolNonCopperClear.py:1517 -#: flatcamTools/ToolPaint.py:2571 +#: flatcamTools/ToolCopperThieving.py:1061 flatcamTools/ToolNonCopperClear.py:1518 +#: flatcamTools/ToolPaint.py:2572 msgid "No object available." msgstr "" -#: flatcamTools/ToolCopperThieving.py:1098 flatcamTools/ToolNonCopperClear.py:1559 +#: flatcamTools/ToolCopperThieving.py:1098 flatcamTools/ToolNonCopperClear.py:1560 msgid "The reference object type is not supported." msgstr "" @@ -11562,8 +11562,8 @@ msgstr "" msgid "Any form CutOut operation finished." msgstr "" -#: flatcamTools/ToolCutOut.py:644 flatcamTools/ToolNonCopperClear.py:1160 -#: flatcamTools/ToolPaint.py:999 flatcamTools/ToolPanelize.py:406 +#: flatcamTools/ToolCutOut.py:644 flatcamTools/ToolNonCopperClear.py:1161 +#: flatcamTools/ToolPaint.py:1000 flatcamTools/ToolPanelize.py:406 #: tclCommands/TclCommandBbox.py:70 tclCommands/TclCommandNregions.py:70 msgid "Object not found" msgstr "" @@ -12376,128 +12376,128 @@ msgstr "" msgid "Generate Geometry" msgstr "" -#: flatcamTools/ToolNonCopperClear.py:587 flatcamTools/ToolPaint.py:498 +#: flatcamTools/ToolNonCopperClear.py:588 flatcamTools/ToolPaint.py:499 #: flatcamTools/ToolSolderPaste.py:553 msgid "New Tool" msgstr "" -#: flatcamTools/ToolNonCopperClear.py:986 flatcamTools/ToolPaint.py:771 -#: flatcamTools/ToolSolderPaste.py:884 +#: flatcamTools/ToolNonCopperClear.py:987 flatcamTools/ToolPaint.py:772 +#: flatcamTools/ToolSolderPaste.py:887 msgid "Please enter a tool diameter to add, in Float format." msgstr "" -#: flatcamTools/ToolNonCopperClear.py:1017 flatcamTools/ToolPaint.py:796 +#: flatcamTools/ToolNonCopperClear.py:1018 flatcamTools/ToolPaint.py:797 msgid "Adding tool cancelled. Tool already in Tool Table." msgstr "" -#: flatcamTools/ToolNonCopperClear.py:1022 flatcamTools/ToolPaint.py:802 +#: flatcamTools/ToolNonCopperClear.py:1023 flatcamTools/ToolPaint.py:803 msgid "New tool added to Tool Table." msgstr "" -#: flatcamTools/ToolNonCopperClear.py:1066 flatcamTools/ToolPaint.py:848 +#: flatcamTools/ToolNonCopperClear.py:1067 flatcamTools/ToolPaint.py:849 msgid "Tool from Tool Table was edited." msgstr "" -#: flatcamTools/ToolNonCopperClear.py:1077 flatcamTools/ToolPaint.py:860 -#: flatcamTools/ToolSolderPaste.py:975 +#: flatcamTools/ToolNonCopperClear.py:1078 flatcamTools/ToolPaint.py:861 +#: flatcamTools/ToolSolderPaste.py:978 msgid "Edit cancelled. New diameter value is already in the Tool Table." msgstr "" -#: flatcamTools/ToolNonCopperClear.py:1124 flatcamTools/ToolPaint.py:958 +#: flatcamTools/ToolNonCopperClear.py:1125 flatcamTools/ToolPaint.py:959 msgid "Delete failed. Select a tool to delete." msgstr "" -#: flatcamTools/ToolNonCopperClear.py:1129 flatcamTools/ToolPaint.py:964 +#: flatcamTools/ToolNonCopperClear.py:1130 flatcamTools/ToolPaint.py:965 msgid "Tool(s) deleted from Tool Table." msgstr "" -#: flatcamTools/ToolNonCopperClear.py:1176 +#: flatcamTools/ToolNonCopperClear.py:1177 msgid "Wrong Tool Dia value format entered, use a number." msgstr "" -#: flatcamTools/ToolNonCopperClear.py:1185 flatcamTools/ToolPaint.py:1028 +#: flatcamTools/ToolNonCopperClear.py:1186 flatcamTools/ToolPaint.py:1029 msgid "No selected tools in Tool Table." msgstr "" -#: flatcamTools/ToolNonCopperClear.py:1260 flatcamTools/ToolPaint.py:1200 +#: flatcamTools/ToolNonCopperClear.py:1261 flatcamTools/ToolPaint.py:1201 msgid "Click the end point of the paint area." msgstr "" -#: flatcamTools/ToolNonCopperClear.py:1414 flatcamTools/ToolNonCopperClear.py:1416 +#: flatcamTools/ToolNonCopperClear.py:1415 flatcamTools/ToolNonCopperClear.py:1417 msgid "Non-Copper clearing ..." msgstr "" -#: flatcamTools/ToolNonCopperClear.py:1426 +#: flatcamTools/ToolNonCopperClear.py:1427 msgid "NCC Tool started. Reading parameters." msgstr "" -#: flatcamTools/ToolNonCopperClear.py:1489 +#: flatcamTools/ToolNonCopperClear.py:1490 msgid "NCC Tool. Preparing non-copper polygons." msgstr "" -#: flatcamTools/ToolNonCopperClear.py:1585 +#: flatcamTools/ToolNonCopperClear.py:1586 msgid "NCC Tool. Finished non-copper polygons. Normal copper clearing task started." msgstr "" -#: flatcamTools/ToolNonCopperClear.py:1617 +#: flatcamTools/ToolNonCopperClear.py:1618 msgid "NCC Tool. Calculate 'empty' area." msgstr "" -#: flatcamTools/ToolNonCopperClear.py:1630 flatcamTools/ToolNonCopperClear.py:1729 -#: flatcamTools/ToolNonCopperClear.py:1741 flatcamTools/ToolNonCopperClear.py:1990 -#: flatcamTools/ToolNonCopperClear.py:2086 flatcamTools/ToolNonCopperClear.py:2098 +#: flatcamTools/ToolNonCopperClear.py:1631 flatcamTools/ToolNonCopperClear.py:1730 +#: flatcamTools/ToolNonCopperClear.py:1742 flatcamTools/ToolNonCopperClear.py:1991 +#: flatcamTools/ToolNonCopperClear.py:2087 flatcamTools/ToolNonCopperClear.py:2099 msgid "Buffering finished" msgstr "" -#: flatcamTools/ToolNonCopperClear.py:1748 flatcamTools/ToolNonCopperClear.py:2104 +#: flatcamTools/ToolNonCopperClear.py:1749 flatcamTools/ToolNonCopperClear.py:2105 msgid "The selected object is not suitable for copper clearing." msgstr "" -#: flatcamTools/ToolNonCopperClear.py:1753 flatcamTools/ToolNonCopperClear.py:2109 +#: flatcamTools/ToolNonCopperClear.py:1754 flatcamTools/ToolNonCopperClear.py:2110 msgid "Could not get the extent of the area to be non copper cleared." msgstr "" -#: flatcamTools/ToolNonCopperClear.py:1760 +#: flatcamTools/ToolNonCopperClear.py:1761 msgid "NCC Tool. Finished calculation of 'empty' area." msgstr "" -#: flatcamTools/ToolNonCopperClear.py:1773 flatcamTools/ToolNonCopperClear.py:2134 +#: flatcamTools/ToolNonCopperClear.py:1774 flatcamTools/ToolNonCopperClear.py:2135 msgid "NCC Tool clearing with tool diameter = " msgstr "" -#: flatcamTools/ToolNonCopperClear.py:1776 flatcamTools/ToolNonCopperClear.py:2137 +#: flatcamTools/ToolNonCopperClear.py:1777 flatcamTools/ToolNonCopperClear.py:2138 msgid "started." msgstr "" -#: flatcamTools/ToolNonCopperClear.py:1919 +#: flatcamTools/ToolNonCopperClear.py:1920 msgid "" "There is no NCC Geometry in the file.\n" "Usually it means that the tool diameter is too big for the painted geometry.\n" "Change the painting parameters and try again." msgstr "" -#: flatcamTools/ToolNonCopperClear.py:1939 +#: flatcamTools/ToolNonCopperClear.py:1940 msgid "NCC Tool clear all done." msgstr "" -#: flatcamTools/ToolNonCopperClear.py:1941 +#: flatcamTools/ToolNonCopperClear.py:1942 msgid "NCC Tool clear all done but the copper features isolation is broken for" msgstr "" -#: flatcamTools/ToolNonCopperClear.py:1944 flatcamTools/ToolNonCopperClear.py:2310 +#: flatcamTools/ToolNonCopperClear.py:1945 flatcamTools/ToolNonCopperClear.py:2311 msgid "tools" msgstr "" -#: flatcamTools/ToolNonCopperClear.py:2306 +#: flatcamTools/ToolNonCopperClear.py:2307 msgid "NCC Tool Rest Machining clear all done." msgstr "" -#: flatcamTools/ToolNonCopperClear.py:2309 +#: flatcamTools/ToolNonCopperClear.py:2310 msgid "" "NCC Tool Rest Machining clear all done but the copper features isolation is broken for" msgstr "" -#: flatcamTools/ToolNonCopperClear.py:2756 +#: flatcamTools/ToolNonCopperClear.py:2757 msgid "" "Try to use the Buffering Type = Full in Preferences -> Gerber General. Reload the Gerber " "file after this change." @@ -12737,144 +12737,144 @@ msgid "" "specified by another object." msgstr "" -#: flatcamTools/ToolPaint.py:978 +#: flatcamTools/ToolPaint.py:979 msgid "Paint Tool. Reading parameters." msgstr "" -#: flatcamTools/ToolPaint.py:993 +#: flatcamTools/ToolPaint.py:994 #, python-format msgid "Could not retrieve object: %s" msgstr "" -#: flatcamTools/ToolPaint.py:1007 +#: flatcamTools/ToolPaint.py:1008 msgid "Can't do Paint on MultiGeo geometries" msgstr "" -#: flatcamTools/ToolPaint.py:1040 +#: flatcamTools/ToolPaint.py:1041 msgid "Click on a polygon to paint it." msgstr "" -#: flatcamTools/ToolPaint.py:1059 +#: flatcamTools/ToolPaint.py:1060 msgid "Click the start point of the paint area." msgstr "" -#: flatcamTools/ToolPaint.py:1127 +#: flatcamTools/ToolPaint.py:1128 msgid "Click to add next polygon or right click to start painting." msgstr "" -#: flatcamTools/ToolPaint.py:1140 +#: flatcamTools/ToolPaint.py:1141 msgid "Click to add/remove next polygon or right click to start painting." msgstr "" -#: 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 +#: flatcamTools/ToolPaint.py:1349 flatcamTools/ToolPaint.py:1352 +#: flatcamTools/ToolPaint.py:1354 flatcamTools/ToolPaint.py:1886 +#: flatcamTools/ToolPaint.py:1890 flatcamTools/ToolPaint.py:1893 +#: flatcamTools/ToolPaint.py:2175 flatcamTools/ToolPaint.py:2180 +#: flatcamTools/ToolPaint.py:2183 flatcamTools/ToolPaint.py:2357 +#: flatcamTools/ToolPaint.py:2364 msgid "Paint Tool." msgstr "" -#: flatcamTools/ToolPaint.py:1348 flatcamTools/ToolPaint.py:1351 -#: flatcamTools/ToolPaint.py:1353 +#: flatcamTools/ToolPaint.py:1349 flatcamTools/ToolPaint.py:1352 +#: flatcamTools/ToolPaint.py:1354 msgid "Normal painting polygon task started." msgstr "" -#: flatcamTools/ToolPaint.py:1349 flatcamTools/ToolPaint.py:1711 -#: flatcamTools/ToolPaint.py:1886 flatcamTools/ToolPaint.py:2176 -#: flatcamTools/ToolPaint.py:2358 +#: flatcamTools/ToolPaint.py:1350 flatcamTools/ToolPaint.py:1712 +#: flatcamTools/ToolPaint.py:1887 flatcamTools/ToolPaint.py:2177 +#: flatcamTools/ToolPaint.py:2359 msgid "Buffering geometry..." msgstr "" -#: flatcamTools/ToolPaint.py:1371 +#: flatcamTools/ToolPaint.py:1372 msgid "No polygon found." msgstr "" -#: flatcamTools/ToolPaint.py:1405 +#: flatcamTools/ToolPaint.py:1406 msgid "Painting polygon..." msgstr "" -#: flatcamTools/ToolPaint.py:1453 +#: flatcamTools/ToolPaint.py:1454 msgid "Geometry could not be painted completely" msgstr "" -#: flatcamTools/ToolPaint.py:1486 +#: flatcamTools/ToolPaint.py:1487 msgid "" "Could not do Paint. Try a different combination of parameters. Or a different strategy of " "paint" msgstr "" -#: flatcamTools/ToolPaint.py:1538 flatcamTools/ToolPaint.py:1865 -#: flatcamTools/ToolPaint.py:2015 flatcamTools/ToolPaint.py:2336 -#: flatcamTools/ToolPaint.py:2490 +#: flatcamTools/ToolPaint.py:1539 flatcamTools/ToolPaint.py:1866 +#: flatcamTools/ToolPaint.py:2016 flatcamTools/ToolPaint.py:2337 +#: flatcamTools/ToolPaint.py:2491 msgid "" "There is no Painting Geometry in the file.\n" "Usually it means that the tool diameter is too big for the painted geometry.\n" "Change the painting parameters and try again." msgstr "" -#: flatcamTools/ToolPaint.py:1544 +#: flatcamTools/ToolPaint.py:1545 msgid "Paint Single Done." msgstr "" -#: flatcamTools/ToolPaint.py:1576 flatcamTools/ToolPaint.py:2043 -#: flatcamTools/ToolPaint.py:2518 +#: flatcamTools/ToolPaint.py:1577 flatcamTools/ToolPaint.py:2044 +#: flatcamTools/ToolPaint.py:2519 msgid "Polygon Paint started ..." msgstr "" -#: flatcamTools/ToolPaint.py:1628 flatcamTools/ToolPaint.py:2105 +#: flatcamTools/ToolPaint.py:1629 flatcamTools/ToolPaint.py:2106 msgid "Painting polygons..." msgstr "" -#: flatcamTools/ToolPaint.py:1710 flatcamTools/ToolPaint.py:1713 -#: flatcamTools/ToolPaint.py:1715 +#: flatcamTools/ToolPaint.py:1711 flatcamTools/ToolPaint.py:1714 +#: flatcamTools/ToolPaint.py:1716 msgid "Paint Tool. Normal painting all task started." msgstr "" -#: flatcamTools/ToolPaint.py:1749 flatcamTools/ToolPaint.py:1921 -#: flatcamTools/ToolPaint.py:2223 flatcamTools/ToolPaint.py:2399 +#: flatcamTools/ToolPaint.py:1750 flatcamTools/ToolPaint.py:1922 +#: flatcamTools/ToolPaint.py:2224 flatcamTools/ToolPaint.py:2400 msgid "Painting with tool diameter = " msgstr "" -#: flatcamTools/ToolPaint.py:1752 flatcamTools/ToolPaint.py:1924 -#: flatcamTools/ToolPaint.py:2226 flatcamTools/ToolPaint.py:2402 +#: flatcamTools/ToolPaint.py:1753 flatcamTools/ToolPaint.py:1925 +#: flatcamTools/ToolPaint.py:2227 flatcamTools/ToolPaint.py:2403 msgid "started" msgstr "" -#: flatcamTools/ToolPaint.py:1814 flatcamTools/ToolPaint.py:1970 -#: flatcamTools/ToolPaint.py:2286 flatcamTools/ToolPaint.py:2446 +#: flatcamTools/ToolPaint.py:1815 flatcamTools/ToolPaint.py:1971 +#: flatcamTools/ToolPaint.py:2287 flatcamTools/ToolPaint.py:2447 msgid "" "Could not do Paint All. Try a different combination of parameters. Or a different Method " "of paint" msgstr "" -#: flatcamTools/ToolPaint.py:1874 +#: flatcamTools/ToolPaint.py:1875 msgid "Paint All Done." msgstr "" -#: flatcamTools/ToolPaint.py:1885 flatcamTools/ToolPaint.py:1889 -#: flatcamTools/ToolPaint.py:1892 +#: flatcamTools/ToolPaint.py:1886 flatcamTools/ToolPaint.py:1890 +#: flatcamTools/ToolPaint.py:1893 msgid "Rest machining painting all task started." msgstr "" -#: flatcamTools/ToolPaint.py:2024 flatcamTools/ToolPaint.py:2499 +#: flatcamTools/ToolPaint.py:2025 flatcamTools/ToolPaint.py:2500 msgid "Paint All with Rest-Machining done." msgstr "" -#: flatcamTools/ToolPaint.py:2175 flatcamTools/ToolPaint.py:2179 -#: flatcamTools/ToolPaint.py:2182 +#: flatcamTools/ToolPaint.py:2176 flatcamTools/ToolPaint.py:2180 +#: flatcamTools/ToolPaint.py:2183 msgid "Normal painting area task started." msgstr "" -#: flatcamTools/ToolPaint.py:2345 +#: flatcamTools/ToolPaint.py:2346 msgid "Paint Area Done." msgstr "" -#: flatcamTools/ToolPaint.py:2357 flatcamTools/ToolPaint.py:2363 +#: flatcamTools/ToolPaint.py:2358 flatcamTools/ToolPaint.py:2364 msgid "Rest machining painting area task started." msgstr "" -#: flatcamTools/ToolPaint.py:2360 +#: flatcamTools/ToolPaint.py:2361 msgid "Paint Tool. Rest machining painting area task started." msgstr "" @@ -13699,84 +13699,84 @@ msgid "" "a solder paste dispensing geometry, and then view/save it's GCode." msgstr "" -#: flatcamTools/ToolSolderPaste.py:914 +#: flatcamTools/ToolSolderPaste.py:917 msgid "Adding Nozzle tool cancelled. Tool already in Tool Table." msgstr "" -#: flatcamTools/ToolSolderPaste.py:920 +#: flatcamTools/ToolSolderPaste.py:923 msgid "New Nozzle tool added to Tool Table." msgstr "" -#: flatcamTools/ToolSolderPaste.py:963 +#: flatcamTools/ToolSolderPaste.py:966 msgid "Nozzle tool from Tool Table was edited." msgstr "" -#: flatcamTools/ToolSolderPaste.py:1021 +#: flatcamTools/ToolSolderPaste.py:1024 msgid "Delete failed. Select a Nozzle tool to delete." msgstr "" -#: flatcamTools/ToolSolderPaste.py:1027 +#: flatcamTools/ToolSolderPaste.py:1030 msgid "Nozzle tool(s) deleted from Tool Table." msgstr "" -#: flatcamTools/ToolSolderPaste.py:1083 +#: flatcamTools/ToolSolderPaste.py:1086 msgid "No SolderPaste mask Gerber object loaded." msgstr "" -#: flatcamTools/ToolSolderPaste.py:1101 +#: flatcamTools/ToolSolderPaste.py:1104 msgid "Creating Solder Paste dispensing geometry." msgstr "" -#: flatcamTools/ToolSolderPaste.py:1114 +#: flatcamTools/ToolSolderPaste.py:1117 msgid "No Nozzle tools in the tool table." msgstr "" -#: flatcamTools/ToolSolderPaste.py:1241 +#: flatcamTools/ToolSolderPaste.py:1244 msgid "Cancelled. Empty file, it has no geometry..." msgstr "" -#: flatcamTools/ToolSolderPaste.py:1245 +#: flatcamTools/ToolSolderPaste.py:1248 msgid "Solder Paste geometry generated successfully" msgstr "" -#: flatcamTools/ToolSolderPaste.py:1252 +#: flatcamTools/ToolSolderPaste.py:1255 msgid "Some or all pads have no solder due of inadequate nozzle diameters..." msgstr "" -#: flatcamTools/ToolSolderPaste.py:1266 +#: flatcamTools/ToolSolderPaste.py:1269 msgid "Generating Solder Paste dispensing geometry..." msgstr "" -#: flatcamTools/ToolSolderPaste.py:1286 +#: flatcamTools/ToolSolderPaste.py:1289 msgid "There is no Geometry object available." msgstr "" -#: flatcamTools/ToolSolderPaste.py:1291 +#: flatcamTools/ToolSolderPaste.py:1294 msgid "This Geometry can't be processed. NOT a solder_paste_tool geometry." msgstr "" -#: flatcamTools/ToolSolderPaste.py:1398 +#: flatcamTools/ToolSolderPaste.py:1401 msgid "ToolSolderPaste CNCjob created" msgstr "" -#: flatcamTools/ToolSolderPaste.py:1419 +#: flatcamTools/ToolSolderPaste.py:1422 msgid "SP GCode Editor" msgstr "" -#: flatcamTools/ToolSolderPaste.py:1431 flatcamTools/ToolSolderPaste.py:1436 -#: flatcamTools/ToolSolderPaste.py:1491 +#: flatcamTools/ToolSolderPaste.py:1434 flatcamTools/ToolSolderPaste.py:1439 +#: flatcamTools/ToolSolderPaste.py:1494 msgid "This CNCJob object can't be processed. NOT a solder_paste_tool CNCJob object." msgstr "" -#: flatcamTools/ToolSolderPaste.py:1461 +#: flatcamTools/ToolSolderPaste.py:1464 msgid "No Gcode in the object" msgstr "" -#: flatcamTools/ToolSolderPaste.py:1501 +#: flatcamTools/ToolSolderPaste.py:1504 msgid "Export GCode ..." msgstr "" -#: flatcamTools/ToolSolderPaste.py:1549 +#: flatcamTools/ToolSolderPaste.py:1552 msgid "Solder paste dispenser GCode file saved to" msgstr ""