diff --git a/CHANGELOG.md b/CHANGELOG.md index 5ac94c3d..9bda74a0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -26,6 +26,8 @@ CHANGELOG for FlatCAM beta - fixed a formatting issue in the MainGUI.py file - updated the translations for the new strings that were added - another GUI element for which I've overloaded the context menu to make it translatable: _ExpandableTextEdit +- overloaded the context menu for FCSpinner and for FCDoubleSpinner +- added new strings and therefore updated the translation strings 25.10.2020 diff --git a/appGUI/GUIElements.py b/appGUI/GUIElements.py index 9d221081..817a4901 100644 --- a/appGUI/GUIElements.py +++ b/appGUI/GUIElements.py @@ -916,6 +916,8 @@ class FCSpinner(QtWidgets.QSpinBox): self.setAlignment(align_val) self.prev_readyToEdit = True + self.menu = None + sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Ignored, QtWidgets.QSizePolicy.Preferred) self.setSizePolicy(sizePolicy) @@ -961,6 +963,96 @@ class FCSpinner(QtWidgets.QSpinBox): self.readyToEdit = True self.prev_readyToEdit = True + def contextMenuEvent(self, event): + self.menu = QtWidgets.QMenu() + line_edit = self.lineEdit() + + # UNDO + undo_action = QAction('%s\t%s' % (_("Undo"), _('Ctrl+Z')), self) + self.menu.addAction(undo_action) + undo_action.triggered.connect(line_edit.undo) + if line_edit.isUndoAvailable() is False: + undo_action.setDisabled(True) + + # REDO + redo_action = QAction('%s\t%s' % (_("Redo"), _('Ctrl+Y')), self) + self.menu.addAction(redo_action) + redo_action.triggered.connect(line_edit.redo) + if line_edit.isRedoAvailable() is False: + redo_action.setDisabled(True) + + self.menu.addSeparator() + + # CUT + cut_action = QAction('%s\t%s' % (_("Cut"), _('Ctrl+X')), self) + self.menu.addAction(cut_action) + cut_action.triggered.connect(self.cut_text) + if not line_edit.hasSelectedText(): + cut_action.setDisabled(True) + + # COPY + copy_action = QAction('%s\t%s' % (_("Copy"), _('Ctrl+C')), self) + self.menu.addAction(copy_action) + copy_action.triggered.connect(self.copy_text) + if not line_edit.hasSelectedText(): + copy_action.setDisabled(True) + + # PASTE + paste_action = QAction('%s\t%s' % (_("Paste"), _('Ctrl+V')), self) + self.menu.addAction(paste_action) + paste_action.triggered.connect(self.paste_text) + + # DELETE + delete_action = QAction('%s\t%s' % (_("Delete"), _('Del')), self) + self.menu.addAction(delete_action) + delete_action.triggered.connect(line_edit.del_) + + self.menu.addSeparator() + + # SELECT ALL + sel_all_action = QAction('%s\t%s' % (_("Select All"), _('Ctrl+A')), self) + self.menu.addAction(sel_all_action) + sel_all_action.triggered.connect(line_edit.selectAll) + + self.menu.addSeparator() + + # STEP UP + step_up_action = QAction('%s\t%s' % (_("Step Up"), ''), self) + self.menu.addAction(step_up_action) + step_up_action.triggered.connect(self.stepUp) + + # STEP DOWN + step_down_action = QAction('%s\t%s' % (_("Step Down"), ''), self) + self.menu.addAction(step_down_action) + step_down_action.triggered.connect(self.stepDown) + + self.menu.exec_(event.globalPos()) + + def cut_text(self): + clipboard = QtWidgets.QApplication.clipboard() + line_edit = self.lineEdit() + + txt = line_edit.selectedText() + clipboard.clear() + clipboard.setText(txt) + + line_edit.del_() + + def copy_text(self): + clipboard = QtWidgets.QApplication.clipboard() + line_edit = self.lineEdit() + + txt = line_edit.selectedText() + clipboard.clear() + clipboard.setText(txt) + + def paste_text(self): + clipboard = QtWidgets.QApplication.clipboard() + line_edit = self.lineEdit() + + txt = clipboard.text() + line_edit.insert(txt) + def valueFromText(self, text): txt = text.strip('%%') try: @@ -1165,6 +1257,8 @@ class FCDoubleSpinner(QtWidgets.QDoubleSpinBox): self.setAlignment(align_val) self.prev_readyToEdit = True + self.menu = None + sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Ignored, QtWidgets.QSizePolicy.Preferred) self.setSizePolicy(sizePolicy) @@ -1205,6 +1299,96 @@ class FCDoubleSpinner(QtWidgets.QDoubleSpinBox): self.readyToEdit = True self.prev_readyToEdit = True + def contextMenuEvent(self, event): + self.menu = QtWidgets.QMenu() + line_edit = self.lineEdit() + + # UNDO + undo_action = QAction('%s\t%s' % (_("Undo"), _('Ctrl+Z')), self) + self.menu.addAction(undo_action) + undo_action.triggered.connect(line_edit.undo) + if line_edit.isUndoAvailable() is False: + undo_action.setDisabled(True) + + # REDO + redo_action = QAction('%s\t%s' % (_("Redo"), _('Ctrl+Y')), self) + self.menu.addAction(redo_action) + redo_action.triggered.connect(line_edit.redo) + if line_edit.isRedoAvailable() is False: + redo_action.setDisabled(True) + + self.menu.addSeparator() + + # CUT + cut_action = QAction('%s\t%s' % (_("Cut"), _('Ctrl+X')), self) + self.menu.addAction(cut_action) + cut_action.triggered.connect(self.cut_text) + if not line_edit.hasSelectedText(): + cut_action.setDisabled(True) + + # COPY + copy_action = QAction('%s\t%s' % (_("Copy"), _('Ctrl+C')), self) + self.menu.addAction(copy_action) + copy_action.triggered.connect(self.copy_text) + if not line_edit.hasSelectedText(): + copy_action.setDisabled(True) + + # PASTE + paste_action = QAction('%s\t%s' % (_("Paste"), _('Ctrl+V')), self) + self.menu.addAction(paste_action) + paste_action.triggered.connect(self.paste_text) + + # DELETE + delete_action = QAction('%s\t%s' % (_("Delete"), _('Del')), self) + self.menu.addAction(delete_action) + delete_action.triggered.connect(line_edit.del_) + + self.menu.addSeparator() + + # SELECT ALL + sel_all_action = QAction('%s\t%s' % (_("Select All"), _('Ctrl+A')), self) + self.menu.addAction(sel_all_action) + sel_all_action.triggered.connect(line_edit.selectAll) + + self.menu.addSeparator() + + # STEP UP + step_up_action = QAction('%s\t%s' % (_("Step Up"), ''), self) + self.menu.addAction(step_up_action) + step_up_action.triggered.connect(self.stepUp) + + # STEP DOWN + step_down_action = QAction('%s\t%s' % (_("Step Down"), ''), self) + self.menu.addAction(step_down_action) + step_down_action.triggered.connect(self.stepDown) + + self.menu.exec_(event.globalPos()) + + def cut_text(self): + clipboard = QtWidgets.QApplication.clipboard() + line_edit = self.lineEdit() + + txt = line_edit.selectedText() + clipboard.clear() + clipboard.setText(txt) + + line_edit.del_() + + def copy_text(self): + clipboard = QtWidgets.QApplication.clipboard() + line_edit = self.lineEdit() + + txt = line_edit.selectedText() + clipboard.clear() + clipboard.setText(txt) + + def paste_text(self): + clipboard = QtWidgets.QApplication.clipboard() + line_edit = self.lineEdit() + + txt = clipboard.text() + line_edit.insert(txt) + def valueFromText(self, p_str): text = p_str.replace(',', '.') text = text.strip('%%') diff --git a/locale/de/LC_MESSAGES/strings.mo b/locale/de/LC_MESSAGES/strings.mo index f91e664a..0d12d598 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 12386af4..eacbf118 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: 2020-10-27 00:01+0200\n" -"PO-Revision-Date: 2020-10-27 00:01+0200\n" +"POT-Creation-Date: 2020-10-27 01:17+0200\n" +"PO-Revision-Date: 2020-10-27 01:17+0200\n" "Last-Translator: \n" "Language-Team: \n" "Language: de\n" @@ -1981,7 +1981,7 @@ msgstr "" #: appEditors/AppExcEditor.py:3908 appEditors/AppExcEditor.py:4030 #: appEditors/AppExcEditor.py:4123 appEditors/AppGerberEditor.py:2820 -#: appGUI/GUIElements.py:3850 appGUI/MainGUI.py:475 appGUI/MainGUI.py:668 +#: appGUI/GUIElements.py:4130 appGUI/MainGUI.py:475 appGUI/MainGUI.py:668 #: appGUI/MainGUI.py:4416 appGUI/MainGUI.py:4682 #: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:92 #: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:187 @@ -1994,7 +1994,7 @@ msgstr "X" #: appEditors/AppExcEditor.py:3909 appEditors/AppExcEditor.py:4031 #: appEditors/AppExcEditor.py:4124 appEditors/AppGerberEditor.py:2821 -#: appGUI/GUIElements.py:3857 appGUI/MainGUI.py:478 appGUI/MainGUI.py:4417 +#: appGUI/GUIElements.py:4137 appGUI/MainGUI.py:478 appGUI/MainGUI.py:4417 #: appGUI/MainGUI.py:4683 #: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:93 #: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:188 @@ -2394,7 +2394,7 @@ msgid "Buffer" msgstr "Puffer" #: appEditors/AppGeoEditor.py:643 appEditors/AppGerberEditor.py:5353 -#: appGUI/GUIElements.py:3283 +#: appGUI/GUIElements.py:3467 #: appGUI/preferences/tools/ToolsFilmPrefGroupUI.py:169 #: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:44 #: appTools/ToolDblSided.py:683 appTools/ToolDblSided.py:857 @@ -3554,14 +3554,15 @@ msgid "Add a new aperture to the aperture list." msgstr "Fügen Sie der Blendenliste eine neue Blende hinzu." #: appEditors/AppGerberEditor.py:2595 appEditors/AppGerberEditor.py:2743 -#: appGUI/GUIElements.py:568 appGUI/GUIElements.py:1514 -#: appGUI/GUIElements.py:1690 appGUI/MainGUI.py:420 appGUI/MainGUI.py:731 -#: appGUI/MainGUI.py:790 appGUI/MainGUI.py:869 appGUI/MainGUI.py:988 -#: appGUI/MainGUI.py:1205 appGUI/MainGUI.py:1689 appGUI/MainGUI.py:2147 -#: appGUI/MainGUI.py:2360 appGUI/MainGUI.py:4922 appGUI/ObjectUI.py:1132 -#: appObjects/FlatCAMGeometry.py:561 appTools/ToolIsolation.py:70 -#: appTools/ToolIsolation.py:3150 appTools/ToolNCC.py:69 -#: appTools/ToolNCC.py:4024 appTools/ToolPaint.py:143 +#: appGUI/GUIElements.py:568 appGUI/GUIElements.py:1006 +#: appGUI/GUIElements.py:1342 appGUI/GUIElements.py:1698 +#: appGUI/GUIElements.py:1874 appGUI/GUIElements.py:3769 appGUI/MainGUI.py:420 +#: appGUI/MainGUI.py:731 appGUI/MainGUI.py:790 appGUI/MainGUI.py:869 +#: appGUI/MainGUI.py:988 appGUI/MainGUI.py:1205 appGUI/MainGUI.py:1689 +#: appGUI/MainGUI.py:2147 appGUI/MainGUI.py:2360 appGUI/MainGUI.py:4922 +#: appGUI/ObjectUI.py:1132 appObjects/FlatCAMGeometry.py:561 +#: appTools/ToolIsolation.py:70 appTools/ToolIsolation.py:3150 +#: appTools/ToolNCC.py:69 appTools/ToolNCC.py:4024 appTools/ToolPaint.py:143 #: appTools/ToolPaint.py:2926 appTools/ToolSolderPaste.py:163 #: appTools/ToolSolderPaste.py:1209 app_Main.py:6063 msgid "Delete" @@ -3910,7 +3911,7 @@ 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." -#: appEditors/AppTextEditor.py:106 appGUI/GUIElements.py:3878 +#: appEditors/AppTextEditor.py:106 appGUI/GUIElements.py:4158 #: appGUI/ObjectUI.py:1864 appGUI/preferences/cncjob/CNCJobOptPrefGroupUI.py:61 #: appGUI/preferences/tools/ToolsISOPrefGroupUI.py:295 #: appGUI/preferences/tools/ToolsPaintPrefGroupUI.py:278 @@ -4066,92 +4067,117 @@ msgstr "" msgid "Insert the code above at the cursor location." msgstr "" -#: appGUI/GUIElements.py:533 appGUI/GUIElements.py:1479 -#: appGUI/GUIElements.py:1655 +#: appGUI/GUIElements.py:533 appGUI/GUIElements.py:971 +#: appGUI/GUIElements.py:1307 appGUI/GUIElements.py:1663 +#: appGUI/GUIElements.py:1839 appGUI/GUIElements.py:3734 msgid "Undo" msgstr "" -#: appGUI/GUIElements.py:533 appGUI/GUIElements.py:1479 -#: appGUI/GUIElements.py:1655 +#: appGUI/GUIElements.py:533 appGUI/GUIElements.py:971 +#: appGUI/GUIElements.py:1307 appGUI/GUIElements.py:1663 +#: appGUI/GUIElements.py:1839 appGUI/GUIElements.py:3734 #, fuzzy #| msgid "Ctrl+C" msgid "Ctrl+Z" msgstr "Kopieren" -#: appGUI/GUIElements.py:540 appGUI/GUIElements.py:1486 -#: appGUI/GUIElements.py:1662 +#: appGUI/GUIElements.py:540 appGUI/GUIElements.py:978 +#: appGUI/GUIElements.py:1314 appGUI/GUIElements.py:1670 +#: appGUI/GUIElements.py:1846 appGUI/GUIElements.py:3741 msgid "Redo" msgstr "" -#: appGUI/GUIElements.py:540 appGUI/GUIElements.py:1486 -#: appGUI/GUIElements.py:1662 +#: appGUI/GUIElements.py:540 appGUI/GUIElements.py:978 +#: appGUI/GUIElements.py:1314 appGUI/GUIElements.py:1670 +#: appGUI/GUIElements.py:1846 appGUI/GUIElements.py:3741 #, fuzzy #| msgid "Ctrl+C" msgid "Ctrl+Y" msgstr "Kopieren" -#: appGUI/GUIElements.py:549 appGUI/GUIElements.py:1495 -#: appGUI/GUIElements.py:1671 appGUI/MainGUI.py:1630 appGUI/ObjectUI.py:1866 -#: appGUI/preferences/cncjob/CNCJobOptPrefGroupUI.py:63 +#: appGUI/GUIElements.py:549 appGUI/GUIElements.py:987 +#: appGUI/GUIElements.py:1323 appGUI/GUIElements.py:1679 +#: appGUI/GUIElements.py:1855 appGUI/GUIElements.py:3750 appGUI/MainGUI.py:1630 +#: appGUI/ObjectUI.py:1866 appGUI/preferences/cncjob/CNCJobOptPrefGroupUI.py:63 msgid "Cut" msgstr "Schnitt" -#: appGUI/GUIElements.py:549 appGUI/GUIElements.py:1495 -#: appGUI/GUIElements.py:1671 appGUI/MainGUI.py:4692 +#: appGUI/GUIElements.py:549 appGUI/GUIElements.py:987 +#: appGUI/GUIElements.py:1323 appGUI/GUIElements.py:1679 +#: appGUI/GUIElements.py:1855 appGUI/GUIElements.py:3750 appGUI/MainGUI.py:4692 msgid "Ctrl+X" msgstr "Strg+X" -#: appGUI/GUIElements.py:556 appGUI/GUIElements.py:1502 -#: appGUI/GUIElements.py:1678 appGUI/GUIElements.py:3345 appGUI/MainGUI.py:414 -#: appGUI/MainGUI.py:728 appGUI/MainGUI.py:787 appGUI/MainGUI.py:867 -#: appGUI/MainGUI.py:986 appGUI/MainGUI.py:1203 appGUI/MainGUI.py:1687 -#: appGUI/MainGUI.py:2145 appGUI/MainGUI.py:2358 appGUI/MainGUI.py:4911 -#: appGUI/ObjectUI.py:1125 appObjects/FlatCAMGeometry.py:558 -#: appTools/ToolPanelize.py:325 appTools/ToolPanelize.py:351 -#: appTools/ToolPanelize.py:448 appTools/ToolPanelize.py:477 -#: appTools/ToolPanelize.py:538 +#: appGUI/GUIElements.py:556 appGUI/GUIElements.py:994 +#: appGUI/GUIElements.py:1330 appGUI/GUIElements.py:1686 +#: appGUI/GUIElements.py:1862 appGUI/GUIElements.py:3529 +#: appGUI/GUIElements.py:3757 appGUI/MainGUI.py:414 appGUI/MainGUI.py:728 +#: appGUI/MainGUI.py:787 appGUI/MainGUI.py:867 appGUI/MainGUI.py:986 +#: appGUI/MainGUI.py:1203 appGUI/MainGUI.py:1687 appGUI/MainGUI.py:2145 +#: appGUI/MainGUI.py:2358 appGUI/MainGUI.py:4911 appGUI/ObjectUI.py:1125 +#: appObjects/FlatCAMGeometry.py:558 appTools/ToolPanelize.py:325 +#: appTools/ToolPanelize.py:351 appTools/ToolPanelize.py:448 +#: appTools/ToolPanelize.py:477 appTools/ToolPanelize.py:538 msgid "Copy" msgstr "Kopieren" -#: appGUI/GUIElements.py:556 appGUI/GUIElements.py:1502 -#: appGUI/GUIElements.py:1678 appGUI/GUIElements.py:3345 appGUI/MainGUI.py:414 -#: appGUI/MainGUI.py:4423 +#: appGUI/GUIElements.py:556 appGUI/GUIElements.py:994 +#: appGUI/GUIElements.py:1330 appGUI/GUIElements.py:1686 +#: appGUI/GUIElements.py:1862 appGUI/GUIElements.py:3529 +#: appGUI/GUIElements.py:3757 appGUI/MainGUI.py:414 appGUI/MainGUI.py:4423 msgid "Ctrl+C" msgstr "Kopieren" -#: appGUI/GUIElements.py:563 appGUI/GUIElements.py:1509 -#: appGUI/GUIElements.py:1685 +#: appGUI/GUIElements.py:563 appGUI/GUIElements.py:1001 +#: appGUI/GUIElements.py:1337 appGUI/GUIElements.py:1693 +#: appGUI/GUIElements.py:1869 appGUI/GUIElements.py:3764 msgid "Paste" msgstr "" -#: appGUI/GUIElements.py:563 appGUI/GUIElements.py:1509 -#: appGUI/GUIElements.py:1685 +#: appGUI/GUIElements.py:563 appGUI/GUIElements.py:1001 +#: appGUI/GUIElements.py:1337 appGUI/GUIElements.py:1693 +#: appGUI/GUIElements.py:1869 appGUI/GUIElements.py:3764 #, fuzzy #| msgid "Ctrl+C" msgid "Ctrl+V" msgstr "Kopieren" -#: appGUI/GUIElements.py:568 appGUI/GUIElements.py:1514 -#: appGUI/GUIElements.py:1690 appGUI/GUIElements.py:3363 appGUI/MainGUI.py:4491 -#: appGUI/MainGUI.py:4492 appGUI/MainGUI.py:4696 appGUI/MainGUI.py:4788 -#: appGUI/MainGUI.py:4789 appGUI/MainGUI.py:4922 appGUI/MainGUI.py:4923 +#: appGUI/GUIElements.py:568 appGUI/GUIElements.py:1006 +#: appGUI/GUIElements.py:1342 appGUI/GUIElements.py:1698 +#: appGUI/GUIElements.py:1874 appGUI/GUIElements.py:3547 +#: appGUI/GUIElements.py:3769 appGUI/MainGUI.py:4491 appGUI/MainGUI.py:4492 +#: appGUI/MainGUI.py:4696 appGUI/MainGUI.py:4788 appGUI/MainGUI.py:4789 +#: appGUI/MainGUI.py:4922 appGUI/MainGUI.py:4923 msgid "Del" msgstr "Del" -#: appGUI/GUIElements.py:575 appGUI/GUIElements.py:1521 -#: appGUI/GUIElements.py:1697 appGUI/GUIElements.py:3353 appGUI/MainGUI.py:445 -#: appGUI/MainGUI.py:565 appGUI/MainGUI.py:4422 -#: appObjects/ObjectCollection.py:1128 appObjects/ObjectCollection.py:1175 +#: appGUI/GUIElements.py:575 appGUI/GUIElements.py:1013 +#: appGUI/GUIElements.py:1349 appGUI/GUIElements.py:1705 +#: appGUI/GUIElements.py:1881 appGUI/GUIElements.py:3537 +#: appGUI/GUIElements.py:3776 appGUI/MainGUI.py:445 appGUI/MainGUI.py:565 +#: appGUI/MainGUI.py:4422 appObjects/ObjectCollection.py:1128 +#: appObjects/ObjectCollection.py:1175 msgid "Select All" msgstr "Select All" -#: appGUI/GUIElements.py:575 appGUI/GUIElements.py:1521 -#: appGUI/GUIElements.py:1697 appGUI/GUIElements.py:3353 appGUI/MainGUI.py:445 -#: appGUI/MainGUI.py:4422 +#: appGUI/GUIElements.py:575 appGUI/GUIElements.py:1013 +#: appGUI/GUIElements.py:1349 appGUI/GUIElements.py:1705 +#: appGUI/GUIElements.py:1881 appGUI/GUIElements.py:3537 +#: appGUI/GUIElements.py:3776 appGUI/MainGUI.py:445 appGUI/MainGUI.py:4422 msgid "Ctrl+A" msgstr "Strg+A" -#: appGUI/GUIElements.py:3285 +#: appGUI/GUIElements.py:1020 appGUI/GUIElements.py:1356 +msgid "Step Up" +msgstr "" + +#: appGUI/GUIElements.py:1025 appGUI/GUIElements.py:1361 +#, fuzzy +#| msgid "Down" +msgid "Step Down" +msgstr "Runter" + +#: appGUI/GUIElements.py:3469 msgid "" "The reference can be:\n" "- Absolute -> the reference point is point (0,0)\n" @@ -4161,19 +4187,19 @@ msgstr "" "- Absolut -> Der Bezugspunkt ist Punkt (0,0)\n" "- Relativ -> Der Referenzpunkt ist die Mausposition vor dem Sprung" -#: appGUI/GUIElements.py:3290 +#: appGUI/GUIElements.py:3474 msgid "Abs" msgstr "Abs" -#: appGUI/GUIElements.py:3291 +#: appGUI/GUIElements.py:3475 msgid "Relative" msgstr "Relativ" -#: appGUI/GUIElements.py:3301 +#: appGUI/GUIElements.py:3485 msgid "Location" msgstr "Ort" -#: appGUI/GUIElements.py:3303 +#: appGUI/GUIElements.py:3487 msgid "" "The Location value is a tuple (x,y).\n" "If the reference is Absolute then the Jump will be at the position (x,y).\n" @@ -4187,87 +4213,87 @@ msgstr "" "(x, y)\n" "vom aktuellen Mausstandort aus." -#: appGUI/GUIElements.py:3358 +#: appGUI/GUIElements.py:3542 msgid "Save Log" msgstr "Protokoll speichern" -#: appGUI/GUIElements.py:3358 appGUI/MainGUI.py:161 appGUI/MainGUI.py:343 +#: appGUI/GUIElements.py:3542 appGUI/MainGUI.py:161 appGUI/MainGUI.py:343 #: appGUI/MainGUI.py:4432 appGUI/MainGUI.py:4691 appGUI/MainGUI.py:4791 #: appGUI/MainGUI.py:4927 msgid "Ctrl+S" msgstr "Strg+S" -#: appGUI/GUIElements.py:3363 +#: appGUI/GUIElements.py:3547 #, fuzzy #| msgid "Clear Plot" msgid "Clear All" msgstr "Plot klar löschen" -#: appGUI/GUIElements.py:3406 appTools/ToolShell.py:296 +#: appGUI/GUIElements.py:3590 appTools/ToolShell.py:296 msgid "Type >help< to get started" msgstr "Geben Sie> help the reference point is point (0,0)\n" @@ -4077,19 +4100,19 @@ msgstr "" "- Absolute -> the reference point is point (0,0)\n" "- Relative -> the reference point is the mouse position before Jump" -#: appGUI/GUIElements.py:3290 +#: appGUI/GUIElements.py:3474 msgid "Abs" msgstr "Abs" -#: appGUI/GUIElements.py:3291 +#: appGUI/GUIElements.py:3475 msgid "Relative" msgstr "Relative" -#: appGUI/GUIElements.py:3301 +#: appGUI/GUIElements.py:3485 msgid "Location" msgstr "Location" -#: appGUI/GUIElements.py:3303 +#: appGUI/GUIElements.py:3487 msgid "" "The Location value is a tuple (x,y).\n" "If the reference is Absolute then the Jump will be at the position (x,y).\n" @@ -4101,85 +4124,85 @@ msgstr "" "If the reference is Relative then the Jump will be at the (x,y) distance\n" "from the current mouse location point." -#: appGUI/GUIElements.py:3358 +#: appGUI/GUIElements.py:3542 msgid "Save Log" msgstr "Save Log" -#: appGUI/GUIElements.py:3358 appGUI/MainGUI.py:161 appGUI/MainGUI.py:343 +#: appGUI/GUIElements.py:3542 appGUI/MainGUI.py:161 appGUI/MainGUI.py:343 #: appGUI/MainGUI.py:4432 appGUI/MainGUI.py:4691 appGUI/MainGUI.py:4791 #: appGUI/MainGUI.py:4927 msgid "Ctrl+S" msgstr "Ctrl+S" -#: appGUI/GUIElements.py:3363 +#: appGUI/GUIElements.py:3547 msgid "Clear All" msgstr "Clear All" -#: appGUI/GUIElements.py:3406 appTools/ToolShell.py:296 +#: appGUI/GUIElements.py:3590 appTools/ToolShell.py:296 msgid "Type >help< to get started" msgstr "Type >help< to get started" -#: appGUI/GUIElements.py:3773 appGUI/GUIElements.py:3790 +#: appGUI/GUIElements.py:4053 appGUI/GUIElements.py:4070 msgid "Jog the Y axis." msgstr "Jog the Y axis." -#: appGUI/GUIElements.py:3781 +#: appGUI/GUIElements.py:4061 msgid "Move to Origin." msgstr "Move to Origin." -#: appGUI/GUIElements.py:3798 appGUI/GUIElements.py:3806 +#: appGUI/GUIElements.py:4078 appGUI/GUIElements.py:4086 msgid "Jog the X axis." msgstr "Jog the X axis." -#: appGUI/GUIElements.py:3816 appGUI/GUIElements.py:3826 +#: appGUI/GUIElements.py:4096 appGUI/GUIElements.py:4106 msgid "Jog the Z axis." msgstr "Jog the Z axis." -#: appGUI/GUIElements.py:3852 +#: appGUI/GUIElements.py:4132 msgid "Zero the CNC X axes at current position." msgstr "Zero the CNC X axes at current position." -#: appGUI/GUIElements.py:3860 +#: appGUI/GUIElements.py:4140 msgid "Zero the CNC Y axes at current position." msgstr "Zero the CNC Y axes at current position." -#: appGUI/GUIElements.py:3865 +#: appGUI/GUIElements.py:4145 msgid "Z" msgstr "Z" -#: appGUI/GUIElements.py:3868 +#: appGUI/GUIElements.py:4148 msgid "Zero the CNC Z axes at current position." msgstr "Zero the CNC Z axes at current position." -#: appGUI/GUIElements.py:3872 +#: appGUI/GUIElements.py:4152 msgid "Do Home" msgstr "Do Home" -#: appGUI/GUIElements.py:3874 +#: appGUI/GUIElements.py:4154 msgid "Perform a homing cycle on all axis." msgstr "Perform a homing cycle on all axis." -#: appGUI/GUIElements.py:3882 +#: appGUI/GUIElements.py:4162 msgid "Zero all CNC axes at current position." msgstr "Zero all CNC axes at current position." -#: appGUI/GUIElements.py:4037 appGUI/GUIElements.py:4046 +#: appGUI/GUIElements.py:4317 appGUI/GUIElements.py:4326 msgid "Idle." msgstr "Idle." -#: appGUI/GUIElements.py:4079 +#: appGUI/GUIElements.py:4359 msgid "Application started ..." msgstr "Application started ..." -#: appGUI/GUIElements.py:4080 +#: appGUI/GUIElements.py:4360 msgid "Hello!" msgstr "Hello!" -#: appGUI/GUIElements.py:4127 appGUI/MainGUI.py:1030 appGUI/MainGUI.py:2186 +#: appGUI/GUIElements.py:4407 appGUI/MainGUI.py:1030 appGUI/MainGUI.py:2186 msgid "Run Script ..." msgstr "Run Script ..." -#: appGUI/GUIElements.py:4129 appGUI/MainGUI.py:196 +#: appGUI/GUIElements.py:4409 appGUI/MainGUI.py:196 msgid "" "Will run the opened Tcl Script thus\n" "enabling the automation of certain\n" @@ -4189,28 +4212,28 @@ msgstr "" "enabling the automation of certain\n" "functions of FlatCAM." -#: appGUI/GUIElements.py:4138 appGUI/MainGUI.py:118 +#: appGUI/GUIElements.py:4418 appGUI/MainGUI.py:118 #: appTools/ToolPcbWizard.py:390 appTools/ToolPcbWizard.py:397 msgid "Open" msgstr "Open" -#: appGUI/GUIElements.py:4142 +#: appGUI/GUIElements.py:4422 msgid "Open Project ..." msgstr "Open Project ..." -#: appGUI/GUIElements.py:4148 +#: appGUI/GUIElements.py:4428 msgid "Open &Gerber ...\tCtrl+G" msgstr "Open &Gerber ...\tCtrl+G" -#: appGUI/GUIElements.py:4153 +#: appGUI/GUIElements.py:4433 msgid "Open &Excellon ...\tCtrl+E" msgstr "Open &Excellon ...\tCtrl+E" -#: appGUI/GUIElements.py:4158 +#: appGUI/GUIElements.py:4438 msgid "Open G-&Code ..." msgstr "Open G-&Code ..." -#: appGUI/GUIElements.py:4168 appGUI/MainGUI.py:327 +#: appGUI/GUIElements.py:4448 appGUI/MainGUI.py:327 msgid "Exit" msgstr "Exit" diff --git a/locale/es/LC_MESSAGES/strings.mo b/locale/es/LC_MESSAGES/strings.mo index 34529b20..0c7d2f8c 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 bfed47cc..dbc406c6 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: 2020-10-27 00:01+0200\n" -"PO-Revision-Date: 2020-10-27 00:03+0200\n" +"POT-Creation-Date: 2020-10-27 01:17+0200\n" +"PO-Revision-Date: 2020-10-27 01:18+0200\n" "Last-Translator: Marius Stanciu - Google Translate\n" "Language-Team: \n" "Language: es\n" @@ -1981,7 +1981,7 @@ msgstr "" #: appEditors/AppExcEditor.py:3908 appEditors/AppExcEditor.py:4030 #: appEditors/AppExcEditor.py:4123 appEditors/AppGerberEditor.py:2820 -#: appGUI/GUIElements.py:3850 appGUI/MainGUI.py:475 appGUI/MainGUI.py:668 +#: appGUI/GUIElements.py:4130 appGUI/MainGUI.py:475 appGUI/MainGUI.py:668 #: appGUI/MainGUI.py:4416 appGUI/MainGUI.py:4682 #: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:92 #: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:187 @@ -1994,7 +1994,7 @@ msgstr "X" #: appEditors/AppExcEditor.py:3909 appEditors/AppExcEditor.py:4031 #: appEditors/AppExcEditor.py:4124 appEditors/AppGerberEditor.py:2821 -#: appGUI/GUIElements.py:3857 appGUI/MainGUI.py:478 appGUI/MainGUI.py:4417 +#: appGUI/GUIElements.py:4137 appGUI/MainGUI.py:478 appGUI/MainGUI.py:4417 #: appGUI/MainGUI.py:4683 #: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:93 #: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:188 @@ -2392,7 +2392,7 @@ msgid "Buffer" msgstr "Buffer" #: appEditors/AppGeoEditor.py:643 appEditors/AppGerberEditor.py:5353 -#: appGUI/GUIElements.py:3283 +#: appGUI/GUIElements.py:3467 #: appGUI/preferences/tools/ToolsFilmPrefGroupUI.py:169 #: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:44 #: appTools/ToolDblSided.py:683 appTools/ToolDblSided.py:857 @@ -3545,14 +3545,15 @@ msgid "Add a new aperture to the aperture list." msgstr "Agregar una nueva apertura a la lista de apertura." #: appEditors/AppGerberEditor.py:2595 appEditors/AppGerberEditor.py:2743 -#: appGUI/GUIElements.py:568 appGUI/GUIElements.py:1514 -#: appGUI/GUIElements.py:1690 appGUI/MainGUI.py:420 appGUI/MainGUI.py:731 -#: appGUI/MainGUI.py:790 appGUI/MainGUI.py:869 appGUI/MainGUI.py:988 -#: appGUI/MainGUI.py:1205 appGUI/MainGUI.py:1689 appGUI/MainGUI.py:2147 -#: appGUI/MainGUI.py:2360 appGUI/MainGUI.py:4922 appGUI/ObjectUI.py:1132 -#: appObjects/FlatCAMGeometry.py:561 appTools/ToolIsolation.py:70 -#: appTools/ToolIsolation.py:3150 appTools/ToolNCC.py:69 -#: appTools/ToolNCC.py:4024 appTools/ToolPaint.py:143 +#: appGUI/GUIElements.py:568 appGUI/GUIElements.py:1006 +#: appGUI/GUIElements.py:1342 appGUI/GUIElements.py:1698 +#: appGUI/GUIElements.py:1874 appGUI/GUIElements.py:3769 appGUI/MainGUI.py:420 +#: appGUI/MainGUI.py:731 appGUI/MainGUI.py:790 appGUI/MainGUI.py:869 +#: appGUI/MainGUI.py:988 appGUI/MainGUI.py:1205 appGUI/MainGUI.py:1689 +#: appGUI/MainGUI.py:2147 appGUI/MainGUI.py:2360 appGUI/MainGUI.py:4922 +#: appGUI/ObjectUI.py:1132 appObjects/FlatCAMGeometry.py:561 +#: appTools/ToolIsolation.py:70 appTools/ToolIsolation.py:3150 +#: appTools/ToolNCC.py:69 appTools/ToolNCC.py:4024 appTools/ToolPaint.py:143 #: appTools/ToolPaint.py:2926 appTools/ToolSolderPaste.py:163 #: appTools/ToolSolderPaste.py:1209 app_Main.py:6063 msgid "Delete" @@ -3895,7 +3896,7 @@ 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." -#: appEditors/AppTextEditor.py:106 appGUI/GUIElements.py:3878 +#: appEditors/AppTextEditor.py:106 appGUI/GUIElements.py:4158 #: appGUI/ObjectUI.py:1864 appGUI/preferences/cncjob/CNCJobOptPrefGroupUI.py:61 #: appGUI/preferences/tools/ToolsISOPrefGroupUI.py:295 #: appGUI/preferences/tools/ToolsPaintPrefGroupUI.py:278 @@ -4047,89 +4048,109 @@ msgstr "Insertar codigo" msgid "Insert the code above at the cursor location." msgstr "Inserte el código de arriba en la ubicación del cursor." -#: appGUI/GUIElements.py:533 appGUI/GUIElements.py:1479 -#: appGUI/GUIElements.py:1655 +#: appGUI/GUIElements.py:533 appGUI/GUIElements.py:971 +#: appGUI/GUIElements.py:1307 appGUI/GUIElements.py:1663 +#: appGUI/GUIElements.py:1839 appGUI/GUIElements.py:3734 msgid "Undo" msgstr "Deshacer" -#: appGUI/GUIElements.py:533 appGUI/GUIElements.py:1479 -#: appGUI/GUIElements.py:1655 -#| msgid "Ctrl+C" +#: appGUI/GUIElements.py:533 appGUI/GUIElements.py:971 +#: appGUI/GUIElements.py:1307 appGUI/GUIElements.py:1663 +#: appGUI/GUIElements.py:1839 appGUI/GUIElements.py:3734 msgid "Ctrl+Z" msgstr "Ctrl+Z" -#: appGUI/GUIElements.py:540 appGUI/GUIElements.py:1486 -#: appGUI/GUIElements.py:1662 +#: appGUI/GUIElements.py:540 appGUI/GUIElements.py:978 +#: appGUI/GUIElements.py:1314 appGUI/GUIElements.py:1670 +#: appGUI/GUIElements.py:1846 appGUI/GUIElements.py:3741 msgid "Redo" msgstr "Rehacer" -#: appGUI/GUIElements.py:540 appGUI/GUIElements.py:1486 -#: appGUI/GUIElements.py:1662 -#| msgid "Ctrl+C" +#: appGUI/GUIElements.py:540 appGUI/GUIElements.py:978 +#: appGUI/GUIElements.py:1314 appGUI/GUIElements.py:1670 +#: appGUI/GUIElements.py:1846 appGUI/GUIElements.py:3741 msgid "Ctrl+Y" msgstr "Ctrl+Y" -#: appGUI/GUIElements.py:549 appGUI/GUIElements.py:1495 -#: appGUI/GUIElements.py:1671 appGUI/MainGUI.py:1630 appGUI/ObjectUI.py:1866 -#: appGUI/preferences/cncjob/CNCJobOptPrefGroupUI.py:63 +#: appGUI/GUIElements.py:549 appGUI/GUIElements.py:987 +#: appGUI/GUIElements.py:1323 appGUI/GUIElements.py:1679 +#: appGUI/GUIElements.py:1855 appGUI/GUIElements.py:3750 appGUI/MainGUI.py:1630 +#: appGUI/ObjectUI.py:1866 appGUI/preferences/cncjob/CNCJobOptPrefGroupUI.py:63 msgid "Cut" msgstr "Cortar" -#: appGUI/GUIElements.py:549 appGUI/GUIElements.py:1495 -#: appGUI/GUIElements.py:1671 appGUI/MainGUI.py:4692 +#: appGUI/GUIElements.py:549 appGUI/GUIElements.py:987 +#: appGUI/GUIElements.py:1323 appGUI/GUIElements.py:1679 +#: appGUI/GUIElements.py:1855 appGUI/GUIElements.py:3750 appGUI/MainGUI.py:4692 msgid "Ctrl+X" msgstr "Ctrl+X" -#: appGUI/GUIElements.py:556 appGUI/GUIElements.py:1502 -#: appGUI/GUIElements.py:1678 appGUI/GUIElements.py:3345 appGUI/MainGUI.py:414 -#: appGUI/MainGUI.py:728 appGUI/MainGUI.py:787 appGUI/MainGUI.py:867 -#: appGUI/MainGUI.py:986 appGUI/MainGUI.py:1203 appGUI/MainGUI.py:1687 -#: appGUI/MainGUI.py:2145 appGUI/MainGUI.py:2358 appGUI/MainGUI.py:4911 -#: appGUI/ObjectUI.py:1125 appObjects/FlatCAMGeometry.py:558 -#: appTools/ToolPanelize.py:325 appTools/ToolPanelize.py:351 -#: appTools/ToolPanelize.py:448 appTools/ToolPanelize.py:477 -#: appTools/ToolPanelize.py:538 +#: appGUI/GUIElements.py:556 appGUI/GUIElements.py:994 +#: appGUI/GUIElements.py:1330 appGUI/GUIElements.py:1686 +#: appGUI/GUIElements.py:1862 appGUI/GUIElements.py:3529 +#: appGUI/GUIElements.py:3757 appGUI/MainGUI.py:414 appGUI/MainGUI.py:728 +#: appGUI/MainGUI.py:787 appGUI/MainGUI.py:867 appGUI/MainGUI.py:986 +#: appGUI/MainGUI.py:1203 appGUI/MainGUI.py:1687 appGUI/MainGUI.py:2145 +#: appGUI/MainGUI.py:2358 appGUI/MainGUI.py:4911 appGUI/ObjectUI.py:1125 +#: appObjects/FlatCAMGeometry.py:558 appTools/ToolPanelize.py:325 +#: appTools/ToolPanelize.py:351 appTools/ToolPanelize.py:448 +#: appTools/ToolPanelize.py:477 appTools/ToolPanelize.py:538 msgid "Copy" msgstr "Dupdo" -#: appGUI/GUIElements.py:556 appGUI/GUIElements.py:1502 -#: appGUI/GUIElements.py:1678 appGUI/GUIElements.py:3345 appGUI/MainGUI.py:414 -#: appGUI/MainGUI.py:4423 +#: appGUI/GUIElements.py:556 appGUI/GUIElements.py:994 +#: appGUI/GUIElements.py:1330 appGUI/GUIElements.py:1686 +#: appGUI/GUIElements.py:1862 appGUI/GUIElements.py:3529 +#: appGUI/GUIElements.py:3757 appGUI/MainGUI.py:414 appGUI/MainGUI.py:4423 msgid "Ctrl+C" msgstr "Copiar" -#: appGUI/GUIElements.py:563 appGUI/GUIElements.py:1509 -#: appGUI/GUIElements.py:1685 +#: appGUI/GUIElements.py:563 appGUI/GUIElements.py:1001 +#: appGUI/GUIElements.py:1337 appGUI/GUIElements.py:1693 +#: appGUI/GUIElements.py:1869 appGUI/GUIElements.py:3764 msgid "Paste" msgstr "Pega" -#: appGUI/GUIElements.py:563 appGUI/GUIElements.py:1509 -#: appGUI/GUIElements.py:1685 -#| msgid "Ctrl+C" +#: appGUI/GUIElements.py:563 appGUI/GUIElements.py:1001 +#: appGUI/GUIElements.py:1337 appGUI/GUIElements.py:1693 +#: appGUI/GUIElements.py:1869 appGUI/GUIElements.py:3764 msgid "Ctrl+V" msgstr "Ctrl+V" -#: appGUI/GUIElements.py:568 appGUI/GUIElements.py:1514 -#: appGUI/GUIElements.py:1690 appGUI/GUIElements.py:3363 appGUI/MainGUI.py:4491 -#: appGUI/MainGUI.py:4492 appGUI/MainGUI.py:4696 appGUI/MainGUI.py:4788 -#: appGUI/MainGUI.py:4789 appGUI/MainGUI.py:4922 appGUI/MainGUI.py:4923 +#: appGUI/GUIElements.py:568 appGUI/GUIElements.py:1006 +#: appGUI/GUIElements.py:1342 appGUI/GUIElements.py:1698 +#: appGUI/GUIElements.py:1874 appGUI/GUIElements.py:3547 +#: appGUI/GUIElements.py:3769 appGUI/MainGUI.py:4491 appGUI/MainGUI.py:4492 +#: appGUI/MainGUI.py:4696 appGUI/MainGUI.py:4788 appGUI/MainGUI.py:4789 +#: appGUI/MainGUI.py:4922 appGUI/MainGUI.py:4923 msgid "Del" msgstr "Del" -#: appGUI/GUIElements.py:575 appGUI/GUIElements.py:1521 -#: appGUI/GUIElements.py:1697 appGUI/GUIElements.py:3353 appGUI/MainGUI.py:445 -#: appGUI/MainGUI.py:565 appGUI/MainGUI.py:4422 -#: appObjects/ObjectCollection.py:1128 appObjects/ObjectCollection.py:1175 +#: appGUI/GUIElements.py:575 appGUI/GUIElements.py:1013 +#: appGUI/GUIElements.py:1349 appGUI/GUIElements.py:1705 +#: appGUI/GUIElements.py:1881 appGUI/GUIElements.py:3537 +#: appGUI/GUIElements.py:3776 appGUI/MainGUI.py:445 appGUI/MainGUI.py:565 +#: appGUI/MainGUI.py:4422 appObjects/ObjectCollection.py:1128 +#: appObjects/ObjectCollection.py:1175 msgid "Select All" msgstr "Seleccionar todo" -#: appGUI/GUIElements.py:575 appGUI/GUIElements.py:1521 -#: appGUI/GUIElements.py:1697 appGUI/GUIElements.py:3353 appGUI/MainGUI.py:445 -#: appGUI/MainGUI.py:4422 +#: appGUI/GUIElements.py:575 appGUI/GUIElements.py:1013 +#: appGUI/GUIElements.py:1349 appGUI/GUIElements.py:1705 +#: appGUI/GUIElements.py:1881 appGUI/GUIElements.py:3537 +#: appGUI/GUIElements.py:3776 appGUI/MainGUI.py:445 appGUI/MainGUI.py:4422 msgid "Ctrl+A" msgstr "Ctrl+A" -#: appGUI/GUIElements.py:3285 +#: appGUI/GUIElements.py:1020 appGUI/GUIElements.py:1356 +msgid "Step Up" +msgstr "Aumentar" + +#: appGUI/GUIElements.py:1025 appGUI/GUIElements.py:1361 +msgid "Step Down" +msgstr "Reducir" + +#: appGUI/GUIElements.py:3469 msgid "" "The reference can be:\n" "- Absolute -> the reference point is point (0,0)\n" @@ -4139,19 +4160,19 @@ msgstr "" "- Absoluto -> el punto de referencia es el punto (0,0)\n" "- Relativo -> el punto de referencia es la posición del mouse antes de Jump" -#: appGUI/GUIElements.py:3290 +#: appGUI/GUIElements.py:3474 msgid "Abs" msgstr "Abs" -#: appGUI/GUIElements.py:3291 +#: appGUI/GUIElements.py:3475 msgid "Relative" msgstr "Relativo" -#: appGUI/GUIElements.py:3301 +#: appGUI/GUIElements.py:3485 msgid "Location" msgstr "Ubicación" -#: appGUI/GUIElements.py:3303 +#: appGUI/GUIElements.py:3487 msgid "" "The Location value is a tuple (x,y).\n" "If the reference is Absolute then the Jump will be at the position (x,y).\n" @@ -4165,85 +4186,85 @@ msgstr "" "y)\n" "desde el punto de ubicación actual del mouse." -#: appGUI/GUIElements.py:3358 +#: appGUI/GUIElements.py:3542 msgid "Save Log" msgstr "Guardar Registro" -#: appGUI/GUIElements.py:3358 appGUI/MainGUI.py:161 appGUI/MainGUI.py:343 +#: appGUI/GUIElements.py:3542 appGUI/MainGUI.py:161 appGUI/MainGUI.py:343 #: appGUI/MainGUI.py:4432 appGUI/MainGUI.py:4691 appGUI/MainGUI.py:4791 #: appGUI/MainGUI.py:4927 msgid "Ctrl+S" msgstr "Ctrl+S" -#: appGUI/GUIElements.py:3363 +#: appGUI/GUIElements.py:3547 msgid "Clear All" msgstr "Limpiar todo" -#: appGUI/GUIElements.py:3406 appTools/ToolShell.py:296 +#: appGUI/GUIElements.py:3590 appTools/ToolShell.py:296 msgid "Type >help< to get started" msgstr "Escriba >help< para comenzar" -#: appGUI/GUIElements.py:3773 appGUI/GUIElements.py:3790 +#: appGUI/GUIElements.py:4053 appGUI/GUIElements.py:4070 msgid "Jog the Y axis." msgstr "Mueva el eje Y." -#: appGUI/GUIElements.py:3781 +#: appGUI/GUIElements.py:4061 msgid "Move to Origin." msgstr "Mover al origen." -#: appGUI/GUIElements.py:3798 appGUI/GUIElements.py:3806 +#: appGUI/GUIElements.py:4078 appGUI/GUIElements.py:4086 msgid "Jog the X axis." msgstr "Mueva el eje X." -#: appGUI/GUIElements.py:3816 appGUI/GUIElements.py:3826 +#: appGUI/GUIElements.py:4096 appGUI/GUIElements.py:4106 msgid "Jog the Z axis." msgstr "Mueva el eje Z." -#: appGUI/GUIElements.py:3852 +#: appGUI/GUIElements.py:4132 msgid "Zero the CNC X axes at current position." msgstr "Ponga a cero el eje X del CNC en la posición actual." -#: appGUI/GUIElements.py:3860 +#: appGUI/GUIElements.py:4140 msgid "Zero the CNC Y axes at current position." msgstr "Ponga a cero el eje Y del CNC en la posición actual." -#: appGUI/GUIElements.py:3865 +#: appGUI/GUIElements.py:4145 msgid "Z" msgstr "Z" -#: appGUI/GUIElements.py:3868 +#: appGUI/GUIElements.py:4148 msgid "Zero the CNC Z axes at current position." msgstr "Ponga a cero el eje Z del CNC en la posición actual." -#: appGUI/GUIElements.py:3872 +#: appGUI/GUIElements.py:4152 msgid "Do Home" msgstr "Hacer homing" -#: appGUI/GUIElements.py:3874 +#: appGUI/GUIElements.py:4154 msgid "Perform a homing cycle on all axis." msgstr "Realice un ciclo de referenciado en todos los ejes." -#: appGUI/GUIElements.py:3882 +#: appGUI/GUIElements.py:4162 msgid "Zero all CNC axes at current position." msgstr "Ponga a cero todos los ejes del CNC en la posición actual." -#: appGUI/GUIElements.py:4037 appGUI/GUIElements.py:4046 +#: appGUI/GUIElements.py:4317 appGUI/GUIElements.py:4326 msgid "Idle." msgstr "Ocioso." -#: appGUI/GUIElements.py:4079 +#: appGUI/GUIElements.py:4359 msgid "Application started ..." msgstr "Aplicacion iniciada ..." -#: appGUI/GUIElements.py:4080 +#: appGUI/GUIElements.py:4360 msgid "Hello!" msgstr "¡Hola!" -#: appGUI/GUIElements.py:4127 appGUI/MainGUI.py:1030 appGUI/MainGUI.py:2186 +#: appGUI/GUIElements.py:4407 appGUI/MainGUI.py:1030 appGUI/MainGUI.py:2186 msgid "Run Script ..." msgstr "Ejecutar Script ..." -#: appGUI/GUIElements.py:4129 appGUI/MainGUI.py:196 +#: appGUI/GUIElements.py:4409 appGUI/MainGUI.py:196 msgid "" "Will run the opened Tcl Script thus\n" "enabling the automation of certain\n" @@ -4253,28 +4274,28 @@ msgstr "" "permitiendo la automatización de ciertos\n" "Funciones de FlatCAM." -#: appGUI/GUIElements.py:4138 appGUI/MainGUI.py:118 +#: appGUI/GUIElements.py:4418 appGUI/MainGUI.py:118 #: appTools/ToolPcbWizard.py:390 appTools/ToolPcbWizard.py:397 msgid "Open" msgstr "Abierto" -#: appGUI/GUIElements.py:4142 +#: appGUI/GUIElements.py:4422 msgid "Open Project ..." msgstr "Proyecto abierto ...Abierto &Project ..." -#: appGUI/GUIElements.py:4148 +#: appGUI/GUIElements.py:4428 msgid "Open &Gerber ...\tCtrl+G" msgstr "Abierto &Gerber ...\tCtrl+G" -#: appGUI/GUIElements.py:4153 +#: appGUI/GUIElements.py:4433 msgid "Open &Excellon ...\tCtrl+E" msgstr "Abierto &Excellon ...\tCtrl+E" -#: appGUI/GUIElements.py:4158 +#: appGUI/GUIElements.py:4438 msgid "Open G-&Code ..." msgstr "Abierto G-&Code ..." -#: appGUI/GUIElements.py:4168 appGUI/MainGUI.py:327 +#: appGUI/GUIElements.py:4448 appGUI/MainGUI.py:327 msgid "Exit" msgstr "Salida" diff --git a/locale/fr/LC_MESSAGES/strings.mo b/locale/fr/LC_MESSAGES/strings.mo index 02fb26cf..fc2b5ba2 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 c831724b..4049d5af 100644 --- a/locale/fr/LC_MESSAGES/strings.po +++ b/locale/fr/LC_MESSAGES/strings.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"POT-Creation-Date: 2020-10-27 00:03+0200\n" -"PO-Revision-Date: 2020-10-27 00:04+0200\n" +"POT-Creation-Date: 2020-10-27 01:18+0200\n" +"PO-Revision-Date: 2020-10-27 01:18+0200\n" "Last-Translator: \n" "Language-Team: \n" "Language: fr\n" @@ -2002,7 +2002,7 @@ msgstr "" #: appEditors/AppExcEditor.py:3908 appEditors/AppExcEditor.py:4030 #: appEditors/AppExcEditor.py:4123 appEditors/AppGerberEditor.py:2820 -#: appGUI/GUIElements.py:3850 appGUI/MainGUI.py:475 appGUI/MainGUI.py:668 +#: appGUI/GUIElements.py:4130 appGUI/MainGUI.py:475 appGUI/MainGUI.py:668 #: appGUI/MainGUI.py:4416 appGUI/MainGUI.py:4682 #: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:92 #: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:187 @@ -2015,7 +2015,7 @@ msgstr "X" #: appEditors/AppExcEditor.py:3909 appEditors/AppExcEditor.py:4031 #: appEditors/AppExcEditor.py:4124 appEditors/AppGerberEditor.py:2821 -#: appGUI/GUIElements.py:3857 appGUI/MainGUI.py:478 appGUI/MainGUI.py:4417 +#: appGUI/GUIElements.py:4137 appGUI/MainGUI.py:478 appGUI/MainGUI.py:4417 #: appGUI/MainGUI.py:4683 #: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:93 #: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:188 @@ -2420,7 +2420,7 @@ msgid "Buffer" msgstr "Tampon" #: appEditors/AppGeoEditor.py:643 appEditors/AppGerberEditor.py:5353 -#: appGUI/GUIElements.py:3283 +#: appGUI/GUIElements.py:3467 #: appGUI/preferences/tools/ToolsFilmPrefGroupUI.py:169 #: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:44 #: appTools/ToolDblSided.py:683 appTools/ToolDblSided.py:857 @@ -3582,14 +3582,15 @@ msgid "Add a new aperture to the aperture list." msgstr "Ajoutez une nouvelle ouverture à la liste des ouvertures." #: appEditors/AppGerberEditor.py:2595 appEditors/AppGerberEditor.py:2743 -#: appGUI/GUIElements.py:568 appGUI/GUIElements.py:1514 -#: appGUI/GUIElements.py:1690 appGUI/MainGUI.py:420 appGUI/MainGUI.py:731 -#: appGUI/MainGUI.py:790 appGUI/MainGUI.py:869 appGUI/MainGUI.py:988 -#: appGUI/MainGUI.py:1205 appGUI/MainGUI.py:1689 appGUI/MainGUI.py:2147 -#: appGUI/MainGUI.py:2360 appGUI/MainGUI.py:4922 appGUI/ObjectUI.py:1132 -#: appObjects/FlatCAMGeometry.py:561 appTools/ToolIsolation.py:70 -#: appTools/ToolIsolation.py:3150 appTools/ToolNCC.py:69 -#: appTools/ToolNCC.py:4024 appTools/ToolPaint.py:143 +#: appGUI/GUIElements.py:568 appGUI/GUIElements.py:1006 +#: appGUI/GUIElements.py:1342 appGUI/GUIElements.py:1698 +#: appGUI/GUIElements.py:1874 appGUI/GUIElements.py:3769 appGUI/MainGUI.py:420 +#: appGUI/MainGUI.py:731 appGUI/MainGUI.py:790 appGUI/MainGUI.py:869 +#: appGUI/MainGUI.py:988 appGUI/MainGUI.py:1205 appGUI/MainGUI.py:1689 +#: appGUI/MainGUI.py:2147 appGUI/MainGUI.py:2360 appGUI/MainGUI.py:4922 +#: appGUI/ObjectUI.py:1132 appObjects/FlatCAMGeometry.py:561 +#: appTools/ToolIsolation.py:70 appTools/ToolIsolation.py:3150 +#: appTools/ToolNCC.py:69 appTools/ToolNCC.py:4024 appTools/ToolPaint.py:143 #: appTools/ToolPaint.py:2926 appTools/ToolSolderPaste.py:163 #: appTools/ToolSolderPaste.py:1209 app_Main.py:6063 msgid "Delete" @@ -3935,7 +3936,7 @@ 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." -#: appEditors/AppTextEditor.py:106 appGUI/GUIElements.py:3878 +#: appEditors/AppTextEditor.py:106 appGUI/GUIElements.py:4158 #: appGUI/ObjectUI.py:1864 appGUI/preferences/cncjob/CNCJobOptPrefGroupUI.py:61 #: appGUI/preferences/tools/ToolsISOPrefGroupUI.py:295 #: appGUI/preferences/tools/ToolsPaintPrefGroupUI.py:278 @@ -4107,89 +4108,111 @@ msgstr "Insérez QRCode" msgid "Insert the code above at the cursor location." msgstr "" -#: appGUI/GUIElements.py:533 appGUI/GUIElements.py:1479 -#: appGUI/GUIElements.py:1655 +#: appGUI/GUIElements.py:533 appGUI/GUIElements.py:971 +#: appGUI/GUIElements.py:1307 appGUI/GUIElements.py:1663 +#: appGUI/GUIElements.py:1839 appGUI/GUIElements.py:3734 msgid "Undo" msgstr "" -#: appGUI/GUIElements.py:533 appGUI/GUIElements.py:1479 -#: appGUI/GUIElements.py:1655 -#| msgid "Ctrl+C" +#: appGUI/GUIElements.py:533 appGUI/GUIElements.py:971 +#: appGUI/GUIElements.py:1307 appGUI/GUIElements.py:1663 +#: appGUI/GUIElements.py:1839 appGUI/GUIElements.py:3734 msgid "Ctrl+Z" msgstr "Ctrl+Z" -#: appGUI/GUIElements.py:540 appGUI/GUIElements.py:1486 -#: appGUI/GUIElements.py:1662 +#: appGUI/GUIElements.py:540 appGUI/GUIElements.py:978 +#: appGUI/GUIElements.py:1314 appGUI/GUIElements.py:1670 +#: appGUI/GUIElements.py:1846 appGUI/GUIElements.py:3741 msgid "Redo" msgstr "" -#: appGUI/GUIElements.py:540 appGUI/GUIElements.py:1486 -#: appGUI/GUIElements.py:1662 -#| msgid "Ctrl+C" +#: appGUI/GUIElements.py:540 appGUI/GUIElements.py:978 +#: appGUI/GUIElements.py:1314 appGUI/GUIElements.py:1670 +#: appGUI/GUIElements.py:1846 appGUI/GUIElements.py:3741 msgid "Ctrl+Y" msgstr "Ctrl+Y" -#: appGUI/GUIElements.py:549 appGUI/GUIElements.py:1495 -#: appGUI/GUIElements.py:1671 appGUI/MainGUI.py:1630 appGUI/ObjectUI.py:1866 -#: appGUI/preferences/cncjob/CNCJobOptPrefGroupUI.py:63 +#: appGUI/GUIElements.py:549 appGUI/GUIElements.py:987 +#: appGUI/GUIElements.py:1323 appGUI/GUIElements.py:1679 +#: appGUI/GUIElements.py:1855 appGUI/GUIElements.py:3750 appGUI/MainGUI.py:1630 +#: appGUI/ObjectUI.py:1866 appGUI/preferences/cncjob/CNCJobOptPrefGroupUI.py:63 msgid "Cut" msgstr "Couper" -#: appGUI/GUIElements.py:549 appGUI/GUIElements.py:1495 -#: appGUI/GUIElements.py:1671 appGUI/MainGUI.py:4692 +#: appGUI/GUIElements.py:549 appGUI/GUIElements.py:987 +#: appGUI/GUIElements.py:1323 appGUI/GUIElements.py:1679 +#: appGUI/GUIElements.py:1855 appGUI/GUIElements.py:3750 appGUI/MainGUI.py:4692 msgid "Ctrl+X" msgstr "Ctrl+X" -#: appGUI/GUIElements.py:556 appGUI/GUIElements.py:1502 -#: appGUI/GUIElements.py:1678 appGUI/GUIElements.py:3345 appGUI/MainGUI.py:414 -#: appGUI/MainGUI.py:728 appGUI/MainGUI.py:787 appGUI/MainGUI.py:867 -#: appGUI/MainGUI.py:986 appGUI/MainGUI.py:1203 appGUI/MainGUI.py:1687 -#: appGUI/MainGUI.py:2145 appGUI/MainGUI.py:2358 appGUI/MainGUI.py:4911 -#: appGUI/ObjectUI.py:1125 appObjects/FlatCAMGeometry.py:558 -#: appTools/ToolPanelize.py:325 appTools/ToolPanelize.py:351 -#: appTools/ToolPanelize.py:448 appTools/ToolPanelize.py:477 -#: appTools/ToolPanelize.py:538 +#: appGUI/GUIElements.py:556 appGUI/GUIElements.py:994 +#: appGUI/GUIElements.py:1330 appGUI/GUIElements.py:1686 +#: appGUI/GUIElements.py:1862 appGUI/GUIElements.py:3529 +#: appGUI/GUIElements.py:3757 appGUI/MainGUI.py:414 appGUI/MainGUI.py:728 +#: appGUI/MainGUI.py:787 appGUI/MainGUI.py:867 appGUI/MainGUI.py:986 +#: appGUI/MainGUI.py:1203 appGUI/MainGUI.py:1687 appGUI/MainGUI.py:2145 +#: appGUI/MainGUI.py:2358 appGUI/MainGUI.py:4911 appGUI/ObjectUI.py:1125 +#: appObjects/FlatCAMGeometry.py:558 appTools/ToolPanelize.py:325 +#: appTools/ToolPanelize.py:351 appTools/ToolPanelize.py:448 +#: appTools/ToolPanelize.py:477 appTools/ToolPanelize.py:538 msgid "Copy" msgstr "Copie" -#: appGUI/GUIElements.py:556 appGUI/GUIElements.py:1502 -#: appGUI/GUIElements.py:1678 appGUI/GUIElements.py:3345 appGUI/MainGUI.py:414 -#: appGUI/MainGUI.py:4423 +#: appGUI/GUIElements.py:556 appGUI/GUIElements.py:994 +#: appGUI/GUIElements.py:1330 appGUI/GUIElements.py:1686 +#: appGUI/GUIElements.py:1862 appGUI/GUIElements.py:3529 +#: appGUI/GUIElements.py:3757 appGUI/MainGUI.py:414 appGUI/MainGUI.py:4423 msgid "Ctrl+C" msgstr "Ctrl+C" -#: appGUI/GUIElements.py:563 appGUI/GUIElements.py:1509 -#: appGUI/GUIElements.py:1685 +#: appGUI/GUIElements.py:563 appGUI/GUIElements.py:1001 +#: appGUI/GUIElements.py:1337 appGUI/GUIElements.py:1693 +#: appGUI/GUIElements.py:1869 appGUI/GUIElements.py:3764 msgid "Paste" msgstr "" -#: appGUI/GUIElements.py:563 appGUI/GUIElements.py:1509 -#: appGUI/GUIElements.py:1685 -#| msgid "Ctrl+C" +#: appGUI/GUIElements.py:563 appGUI/GUIElements.py:1001 +#: appGUI/GUIElements.py:1337 appGUI/GUIElements.py:1693 +#: appGUI/GUIElements.py:1869 appGUI/GUIElements.py:3764 msgid "Ctrl+V" msgstr "Ctrl+V" -#: appGUI/GUIElements.py:568 appGUI/GUIElements.py:1514 -#: appGUI/GUIElements.py:1690 appGUI/GUIElements.py:3363 appGUI/MainGUI.py:4491 -#: appGUI/MainGUI.py:4492 appGUI/MainGUI.py:4696 appGUI/MainGUI.py:4788 -#: appGUI/MainGUI.py:4789 appGUI/MainGUI.py:4922 appGUI/MainGUI.py:4923 +#: appGUI/GUIElements.py:568 appGUI/GUIElements.py:1006 +#: appGUI/GUIElements.py:1342 appGUI/GUIElements.py:1698 +#: appGUI/GUIElements.py:1874 appGUI/GUIElements.py:3547 +#: appGUI/GUIElements.py:3769 appGUI/MainGUI.py:4491 appGUI/MainGUI.py:4492 +#: appGUI/MainGUI.py:4696 appGUI/MainGUI.py:4788 appGUI/MainGUI.py:4789 +#: appGUI/MainGUI.py:4922 appGUI/MainGUI.py:4923 msgid "Del" msgstr "Del" -#: appGUI/GUIElements.py:575 appGUI/GUIElements.py:1521 -#: appGUI/GUIElements.py:1697 appGUI/GUIElements.py:3353 appGUI/MainGUI.py:445 -#: appGUI/MainGUI.py:565 appGUI/MainGUI.py:4422 -#: appObjects/ObjectCollection.py:1128 appObjects/ObjectCollection.py:1175 +#: appGUI/GUIElements.py:575 appGUI/GUIElements.py:1013 +#: appGUI/GUIElements.py:1349 appGUI/GUIElements.py:1705 +#: appGUI/GUIElements.py:1881 appGUI/GUIElements.py:3537 +#: appGUI/GUIElements.py:3776 appGUI/MainGUI.py:445 appGUI/MainGUI.py:565 +#: appGUI/MainGUI.py:4422 appObjects/ObjectCollection.py:1128 +#: appObjects/ObjectCollection.py:1175 msgid "Select All" msgstr "Tout sélectionner" -#: appGUI/GUIElements.py:575 appGUI/GUIElements.py:1521 -#: appGUI/GUIElements.py:1697 appGUI/GUIElements.py:3353 appGUI/MainGUI.py:445 -#: appGUI/MainGUI.py:4422 +#: appGUI/GUIElements.py:575 appGUI/GUIElements.py:1013 +#: appGUI/GUIElements.py:1349 appGUI/GUIElements.py:1705 +#: appGUI/GUIElements.py:1881 appGUI/GUIElements.py:3537 +#: appGUI/GUIElements.py:3776 appGUI/MainGUI.py:445 appGUI/MainGUI.py:4422 msgid "Ctrl+A" msgstr "Ctrl+A" -#: appGUI/GUIElements.py:3285 +#: appGUI/GUIElements.py:1020 appGUI/GUIElements.py:1356 +msgid "Step Up" +msgstr "" + +#: appGUI/GUIElements.py:1025 appGUI/GUIElements.py:1361 +#, fuzzy +#| msgid "Down" +msgid "Step Down" +msgstr "Bas" + +#: appGUI/GUIElements.py:3469 msgid "" "The reference can be:\n" "- Absolute -> the reference point is point (0,0)\n" @@ -4199,19 +4222,19 @@ msgstr "" "- Absolue -> le point de référence est le point (0,0)\n" "- Relatif -> le point de référence est la position de la souris avant le saut" -#: appGUI/GUIElements.py:3290 +#: appGUI/GUIElements.py:3474 msgid "Abs" msgstr "Abs" -#: appGUI/GUIElements.py:3291 +#: appGUI/GUIElements.py:3475 msgid "Relative" msgstr "Relatif" -#: appGUI/GUIElements.py:3301 +#: appGUI/GUIElements.py:3485 msgid "Location" msgstr "Emplacement" -#: appGUI/GUIElements.py:3303 +#: appGUI/GUIElements.py:3487 msgid "" "The Location value is a tuple (x,y).\n" "If the reference is Absolute then the Jump will be at the position (x,y).\n" @@ -4223,87 +4246,87 @@ msgstr "" "Si la référence est relative, le saut sera à la distance (x, y)\n" "à partir du point d'emplacement actuel de la souris." -#: appGUI/GUIElements.py:3358 +#: appGUI/GUIElements.py:3542 msgid "Save Log" msgstr "Enregistrer le journal" -#: appGUI/GUIElements.py:3358 appGUI/MainGUI.py:161 appGUI/MainGUI.py:343 +#: appGUI/GUIElements.py:3542 appGUI/MainGUI.py:161 appGUI/MainGUI.py:343 #: appGUI/MainGUI.py:4432 appGUI/MainGUI.py:4691 appGUI/MainGUI.py:4791 #: appGUI/MainGUI.py:4927 msgid "Ctrl+S" msgstr "Ctrl+S" -#: appGUI/GUIElements.py:3363 +#: appGUI/GUIElements.py:3547 #, fuzzy #| msgid "&Clear plot" msgid "Clear All" msgstr "Effacer la Trace" -#: appGUI/GUIElements.py:3406 appTools/ToolShell.py:296 +#: appGUI/GUIElements.py:3590 appTools/ToolShell.py:296 msgid "Type >help< to get started" msgstr "Tapez >help< pour commencer" -#: appGUI/GUIElements.py:3773 appGUI/GUIElements.py:3790 +#: appGUI/GUIElements.py:4053 appGUI/GUIElements.py:4070 msgid "Jog the Y axis." msgstr "" -#: appGUI/GUIElements.py:3781 +#: appGUI/GUIElements.py:4061 msgid "Move to Origin." msgstr "" -#: appGUI/GUIElements.py:3798 appGUI/GUIElements.py:3806 +#: appGUI/GUIElements.py:4078 appGUI/GUIElements.py:4086 msgid "Jog the X axis." msgstr "" -#: appGUI/GUIElements.py:3816 appGUI/GUIElements.py:3826 +#: appGUI/GUIElements.py:4096 appGUI/GUIElements.py:4106 msgid "Jog the Z axis." msgstr "" -#: appGUI/GUIElements.py:3852 +#: appGUI/GUIElements.py:4132 msgid "Zero the CNC X axes at current position." msgstr "" -#: appGUI/GUIElements.py:3860 +#: appGUI/GUIElements.py:4140 msgid "Zero the CNC Y axes at current position." msgstr "" -#: appGUI/GUIElements.py:3865 +#: appGUI/GUIElements.py:4145 msgid "Z" msgstr "Z" -#: appGUI/GUIElements.py:3868 +#: appGUI/GUIElements.py:4148 msgid "Zero the CNC Z axes at current position." msgstr "" -#: appGUI/GUIElements.py:3872 +#: appGUI/GUIElements.py:4152 msgid "Do Home" msgstr "" -#: appGUI/GUIElements.py:3874 +#: appGUI/GUIElements.py:4154 msgid "Perform a homing cycle on all axis." msgstr "" -#: appGUI/GUIElements.py:3882 +#: appGUI/GUIElements.py:4162 msgid "Zero all CNC axes at current position." msgstr "" -#: appGUI/GUIElements.py:4037 appGUI/GUIElements.py:4046 +#: appGUI/GUIElements.py:4317 appGUI/GUIElements.py:4326 msgid "Idle." msgstr "Au repos." -#: appGUI/GUIElements.py:4079 +#: appGUI/GUIElements.py:4359 msgid "Application started ..." msgstr "Bienvenu dans FlatCam ..." -#: appGUI/GUIElements.py:4080 +#: appGUI/GUIElements.py:4360 msgid "Hello!" msgstr "Bonjours !" -#: appGUI/GUIElements.py:4127 appGUI/MainGUI.py:1030 appGUI/MainGUI.py:2186 +#: appGUI/GUIElements.py:4407 appGUI/MainGUI.py:1030 appGUI/MainGUI.py:2186 msgid "Run Script ..." msgstr "Exécutez le script ..." -#: appGUI/GUIElements.py:4129 appGUI/MainGUI.py:196 +#: appGUI/GUIElements.py:4409 appGUI/MainGUI.py:196 msgid "" "Will run the opened Tcl Script thus\n" "enabling the automation of certain\n" @@ -4313,28 +4336,28 @@ msgstr "" "Permet l’automatisation de \n" "fonctions dans FlatCAM." -#: appGUI/GUIElements.py:4138 appGUI/MainGUI.py:118 +#: appGUI/GUIElements.py:4418 appGUI/MainGUI.py:118 #: appTools/ToolPcbWizard.py:390 appTools/ToolPcbWizard.py:397 msgid "Open" msgstr "Ouvrir" -#: appGUI/GUIElements.py:4142 +#: appGUI/GUIElements.py:4422 msgid "Open Project ..." msgstr "Ouvrir Projet ..." -#: appGUI/GUIElements.py:4148 +#: appGUI/GUIElements.py:4428 msgid "Open &Gerber ...\tCtrl+G" msgstr "Ouvrir Gerber...\tCtrl+G" -#: appGUI/GUIElements.py:4153 +#: appGUI/GUIElements.py:4433 msgid "Open &Excellon ...\tCtrl+E" msgstr "Ouvrir Excellon ...\tCtrl+E" -#: appGUI/GUIElements.py:4158 +#: appGUI/GUIElements.py:4438 msgid "Open G-&Code ..." msgstr "Ouvrir G-Code ..." -#: appGUI/GUIElements.py:4168 appGUI/MainGUI.py:327 +#: appGUI/GUIElements.py:4448 appGUI/MainGUI.py:327 msgid "Exit" msgstr "Quitter" diff --git a/locale/it/LC_MESSAGES/strings.mo b/locale/it/LC_MESSAGES/strings.mo index 5b65a1a4..1d7dcada 100644 Binary files a/locale/it/LC_MESSAGES/strings.mo and b/locale/it/LC_MESSAGES/strings.mo differ diff --git a/locale/it/LC_MESSAGES/strings.po b/locale/it/LC_MESSAGES/strings.po index fe3f9446..cf924fb1 100644 --- a/locale/it/LC_MESSAGES/strings.po +++ b/locale/it/LC_MESSAGES/strings.po @@ -5,8 +5,8 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"POT-Creation-Date: 2020-10-27 00:04+0200\n" -"PO-Revision-Date: 2020-10-27 00:05+0200\n" +"POT-Creation-Date: 2020-10-27 01:19+0200\n" +"PO-Revision-Date: 2020-10-27 01:19+0200\n" "Last-Translator: \n" "Language-Team: \n" "Language: it\n" @@ -1958,7 +1958,7 @@ msgstr "" #: appEditors/AppExcEditor.py:3908 appEditors/AppExcEditor.py:4030 #: appEditors/AppExcEditor.py:4123 appEditors/AppGerberEditor.py:2820 -#: appGUI/GUIElements.py:3850 appGUI/MainGUI.py:475 appGUI/MainGUI.py:668 +#: appGUI/GUIElements.py:4130 appGUI/MainGUI.py:475 appGUI/MainGUI.py:668 #: appGUI/MainGUI.py:4416 appGUI/MainGUI.py:4682 #: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:92 #: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:187 @@ -1971,7 +1971,7 @@ msgstr "X" #: appEditors/AppExcEditor.py:3909 appEditors/AppExcEditor.py:4031 #: appEditors/AppExcEditor.py:4124 appEditors/AppGerberEditor.py:2821 -#: appGUI/GUIElements.py:3857 appGUI/MainGUI.py:478 appGUI/MainGUI.py:4417 +#: appGUI/GUIElements.py:4137 appGUI/MainGUI.py:478 appGUI/MainGUI.py:4417 #: appGUI/MainGUI.py:4683 #: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:93 #: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:188 @@ -2367,7 +2367,7 @@ msgid "Buffer" msgstr "Buffer" #: appEditors/AppGeoEditor.py:643 appEditors/AppGerberEditor.py:5353 -#: appGUI/GUIElements.py:3283 +#: appGUI/GUIElements.py:3467 #: appGUI/preferences/tools/ToolsFilmPrefGroupUI.py:169 #: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:44 #: appTools/ToolDblSided.py:683 appTools/ToolDblSided.py:857 @@ -3521,14 +3521,15 @@ msgid "Add a new aperture to the aperture list." msgstr "Aggiungi una apertura nella lista aperture." #: appEditors/AppGerberEditor.py:2595 appEditors/AppGerberEditor.py:2743 -#: appGUI/GUIElements.py:568 appGUI/GUIElements.py:1514 -#: appGUI/GUIElements.py:1690 appGUI/MainGUI.py:420 appGUI/MainGUI.py:731 -#: appGUI/MainGUI.py:790 appGUI/MainGUI.py:869 appGUI/MainGUI.py:988 -#: appGUI/MainGUI.py:1205 appGUI/MainGUI.py:1689 appGUI/MainGUI.py:2147 -#: appGUI/MainGUI.py:2360 appGUI/MainGUI.py:4922 appGUI/ObjectUI.py:1132 -#: appObjects/FlatCAMGeometry.py:561 appTools/ToolIsolation.py:70 -#: appTools/ToolIsolation.py:3150 appTools/ToolNCC.py:69 -#: appTools/ToolNCC.py:4024 appTools/ToolPaint.py:143 +#: appGUI/GUIElements.py:568 appGUI/GUIElements.py:1006 +#: appGUI/GUIElements.py:1342 appGUI/GUIElements.py:1698 +#: appGUI/GUIElements.py:1874 appGUI/GUIElements.py:3769 appGUI/MainGUI.py:420 +#: appGUI/MainGUI.py:731 appGUI/MainGUI.py:790 appGUI/MainGUI.py:869 +#: appGUI/MainGUI.py:988 appGUI/MainGUI.py:1205 appGUI/MainGUI.py:1689 +#: appGUI/MainGUI.py:2147 appGUI/MainGUI.py:2360 appGUI/MainGUI.py:4922 +#: appGUI/ObjectUI.py:1132 appObjects/FlatCAMGeometry.py:561 +#: appTools/ToolIsolation.py:70 appTools/ToolIsolation.py:3150 +#: appTools/ToolNCC.py:69 appTools/ToolNCC.py:4024 appTools/ToolPaint.py:143 #: appTools/ToolPaint.py:2926 appTools/ToolSolderPaste.py:163 #: appTools/ToolSolderPaste.py:1209 app_Main.py:6063 msgid "Delete" @@ -3870,7 +3871,7 @@ msgstr "" msgid "String to replace the one in the Find box throughout the text." msgstr "Stringa per sostituire quella nella casella Trova in tutto il testo." -#: appEditors/AppTextEditor.py:106 appGUI/GUIElements.py:3878 +#: appEditors/AppTextEditor.py:106 appGUI/GUIElements.py:4158 #: appGUI/ObjectUI.py:1864 appGUI/preferences/cncjob/CNCJobOptPrefGroupUI.py:61 #: appGUI/preferences/tools/ToolsISOPrefGroupUI.py:295 #: appGUI/preferences/tools/ToolsPaintPrefGroupUI.py:278 @@ -4021,89 +4022,109 @@ msgstr "Inserisci Codice" msgid "Insert the code above at the cursor location." msgstr "Inserisci codice sopra la posizione del cursore." -#: appGUI/GUIElements.py:533 appGUI/GUIElements.py:1479 -#: appGUI/GUIElements.py:1655 +#: appGUI/GUIElements.py:533 appGUI/GUIElements.py:971 +#: appGUI/GUIElements.py:1307 appGUI/GUIElements.py:1663 +#: appGUI/GUIElements.py:1839 appGUI/GUIElements.py:3734 msgid "Undo" msgstr "Disfare" -#: appGUI/GUIElements.py:533 appGUI/GUIElements.py:1479 -#: appGUI/GUIElements.py:1655 -#| msgid "Ctrl+C" +#: appGUI/GUIElements.py:533 appGUI/GUIElements.py:971 +#: appGUI/GUIElements.py:1307 appGUI/GUIElements.py:1663 +#: appGUI/GUIElements.py:1839 appGUI/GUIElements.py:3734 msgid "Ctrl+Z" msgstr "Ctrl+Z" -#: appGUI/GUIElements.py:540 appGUI/GUIElements.py:1486 -#: appGUI/GUIElements.py:1662 +#: appGUI/GUIElements.py:540 appGUI/GUIElements.py:978 +#: appGUI/GUIElements.py:1314 appGUI/GUIElements.py:1670 +#: appGUI/GUIElements.py:1846 appGUI/GUIElements.py:3741 msgid "Redo" msgstr "Rifare" -#: appGUI/GUIElements.py:540 appGUI/GUIElements.py:1486 -#: appGUI/GUIElements.py:1662 -#| msgid "Ctrl+C" +#: appGUI/GUIElements.py:540 appGUI/GUIElements.py:978 +#: appGUI/GUIElements.py:1314 appGUI/GUIElements.py:1670 +#: appGUI/GUIElements.py:1846 appGUI/GUIElements.py:3741 msgid "Ctrl+Y" msgstr "Ctrl+Y" -#: appGUI/GUIElements.py:549 appGUI/GUIElements.py:1495 -#: appGUI/GUIElements.py:1671 appGUI/MainGUI.py:1630 appGUI/ObjectUI.py:1866 -#: appGUI/preferences/cncjob/CNCJobOptPrefGroupUI.py:63 +#: appGUI/GUIElements.py:549 appGUI/GUIElements.py:987 +#: appGUI/GUIElements.py:1323 appGUI/GUIElements.py:1679 +#: appGUI/GUIElements.py:1855 appGUI/GUIElements.py:3750 appGUI/MainGUI.py:1630 +#: appGUI/ObjectUI.py:1866 appGUI/preferences/cncjob/CNCJobOptPrefGroupUI.py:63 msgid "Cut" msgstr "Taglia" -#: appGUI/GUIElements.py:549 appGUI/GUIElements.py:1495 -#: appGUI/GUIElements.py:1671 appGUI/MainGUI.py:4692 +#: appGUI/GUIElements.py:549 appGUI/GUIElements.py:987 +#: appGUI/GUIElements.py:1323 appGUI/GUIElements.py:1679 +#: appGUI/GUIElements.py:1855 appGUI/GUIElements.py:3750 appGUI/MainGUI.py:4692 msgid "Ctrl+X" msgstr "Ctrl+X" -#: appGUI/GUIElements.py:556 appGUI/GUIElements.py:1502 -#: appGUI/GUIElements.py:1678 appGUI/GUIElements.py:3345 appGUI/MainGUI.py:414 -#: appGUI/MainGUI.py:728 appGUI/MainGUI.py:787 appGUI/MainGUI.py:867 -#: appGUI/MainGUI.py:986 appGUI/MainGUI.py:1203 appGUI/MainGUI.py:1687 -#: appGUI/MainGUI.py:2145 appGUI/MainGUI.py:2358 appGUI/MainGUI.py:4911 -#: appGUI/ObjectUI.py:1125 appObjects/FlatCAMGeometry.py:558 -#: appTools/ToolPanelize.py:325 appTools/ToolPanelize.py:351 -#: appTools/ToolPanelize.py:448 appTools/ToolPanelize.py:477 -#: appTools/ToolPanelize.py:538 +#: appGUI/GUIElements.py:556 appGUI/GUIElements.py:994 +#: appGUI/GUIElements.py:1330 appGUI/GUIElements.py:1686 +#: appGUI/GUIElements.py:1862 appGUI/GUIElements.py:3529 +#: appGUI/GUIElements.py:3757 appGUI/MainGUI.py:414 appGUI/MainGUI.py:728 +#: appGUI/MainGUI.py:787 appGUI/MainGUI.py:867 appGUI/MainGUI.py:986 +#: appGUI/MainGUI.py:1203 appGUI/MainGUI.py:1687 appGUI/MainGUI.py:2145 +#: appGUI/MainGUI.py:2358 appGUI/MainGUI.py:4911 appGUI/ObjectUI.py:1125 +#: appObjects/FlatCAMGeometry.py:558 appTools/ToolPanelize.py:325 +#: appTools/ToolPanelize.py:351 appTools/ToolPanelize.py:448 +#: appTools/ToolPanelize.py:477 appTools/ToolPanelize.py:538 msgid "Copy" msgstr "Copia" -#: appGUI/GUIElements.py:556 appGUI/GUIElements.py:1502 -#: appGUI/GUIElements.py:1678 appGUI/GUIElements.py:3345 appGUI/MainGUI.py:414 -#: appGUI/MainGUI.py:4423 +#: appGUI/GUIElements.py:556 appGUI/GUIElements.py:994 +#: appGUI/GUIElements.py:1330 appGUI/GUIElements.py:1686 +#: appGUI/GUIElements.py:1862 appGUI/GUIElements.py:3529 +#: appGUI/GUIElements.py:3757 appGUI/MainGUI.py:414 appGUI/MainGUI.py:4423 msgid "Ctrl+C" msgstr "Ctrl+C" -#: appGUI/GUIElements.py:563 appGUI/GUIElements.py:1509 -#: appGUI/GUIElements.py:1685 +#: appGUI/GUIElements.py:563 appGUI/GUIElements.py:1001 +#: appGUI/GUIElements.py:1337 appGUI/GUIElements.py:1693 +#: appGUI/GUIElements.py:1869 appGUI/GUIElements.py:3764 msgid "Paste" msgstr "Incolla" -#: appGUI/GUIElements.py:563 appGUI/GUIElements.py:1509 -#: appGUI/GUIElements.py:1685 -#| msgid "Ctrl+C" +#: appGUI/GUIElements.py:563 appGUI/GUIElements.py:1001 +#: appGUI/GUIElements.py:1337 appGUI/GUIElements.py:1693 +#: appGUI/GUIElements.py:1869 appGUI/GUIElements.py:3764 msgid "Ctrl+V" msgstr "Ctrl+V" -#: appGUI/GUIElements.py:568 appGUI/GUIElements.py:1514 -#: appGUI/GUIElements.py:1690 appGUI/GUIElements.py:3363 appGUI/MainGUI.py:4491 -#: appGUI/MainGUI.py:4492 appGUI/MainGUI.py:4696 appGUI/MainGUI.py:4788 -#: appGUI/MainGUI.py:4789 appGUI/MainGUI.py:4922 appGUI/MainGUI.py:4923 +#: appGUI/GUIElements.py:568 appGUI/GUIElements.py:1006 +#: appGUI/GUIElements.py:1342 appGUI/GUIElements.py:1698 +#: appGUI/GUIElements.py:1874 appGUI/GUIElements.py:3547 +#: appGUI/GUIElements.py:3769 appGUI/MainGUI.py:4491 appGUI/MainGUI.py:4492 +#: appGUI/MainGUI.py:4696 appGUI/MainGUI.py:4788 appGUI/MainGUI.py:4789 +#: appGUI/MainGUI.py:4922 appGUI/MainGUI.py:4923 msgid "Del" msgstr "Del" -#: appGUI/GUIElements.py:575 appGUI/GUIElements.py:1521 -#: appGUI/GUIElements.py:1697 appGUI/GUIElements.py:3353 appGUI/MainGUI.py:445 -#: appGUI/MainGUI.py:565 appGUI/MainGUI.py:4422 -#: appObjects/ObjectCollection.py:1128 appObjects/ObjectCollection.py:1175 +#: appGUI/GUIElements.py:575 appGUI/GUIElements.py:1013 +#: appGUI/GUIElements.py:1349 appGUI/GUIElements.py:1705 +#: appGUI/GUIElements.py:1881 appGUI/GUIElements.py:3537 +#: appGUI/GUIElements.py:3776 appGUI/MainGUI.py:445 appGUI/MainGUI.py:565 +#: appGUI/MainGUI.py:4422 appObjects/ObjectCollection.py:1128 +#: appObjects/ObjectCollection.py:1175 msgid "Select All" msgstr "Seleziona tutto" -#: appGUI/GUIElements.py:575 appGUI/GUIElements.py:1521 -#: appGUI/GUIElements.py:1697 appGUI/GUIElements.py:3353 appGUI/MainGUI.py:445 -#: appGUI/MainGUI.py:4422 +#: appGUI/GUIElements.py:575 appGUI/GUIElements.py:1013 +#: appGUI/GUIElements.py:1349 appGUI/GUIElements.py:1705 +#: appGUI/GUIElements.py:1881 appGUI/GUIElements.py:3537 +#: appGUI/GUIElements.py:3776 appGUI/MainGUI.py:445 appGUI/MainGUI.py:4422 msgid "Ctrl+A" msgstr "Ctrl+A" -#: appGUI/GUIElements.py:3285 +#: appGUI/GUIElements.py:1020 appGUI/GUIElements.py:1356 +msgid "Step Up" +msgstr "Aumentare" + +#: appGUI/GUIElements.py:1025 appGUI/GUIElements.py:1361 +msgid "Step Down" +msgstr "Scendere" + +#: appGUI/GUIElements.py:3469 msgid "" "The reference can be:\n" "- Absolute -> the reference point is point (0,0)\n" @@ -4114,19 +4135,19 @@ msgstr "" "- Relativo -> il punto di riferimento è la posizione del mouse prima del " "salto" -#: appGUI/GUIElements.py:3290 +#: appGUI/GUIElements.py:3474 msgid "Abs" msgstr "Assoluto" -#: appGUI/GUIElements.py:3291 +#: appGUI/GUIElements.py:3475 msgid "Relative" msgstr "Relativo" -#: appGUI/GUIElements.py:3301 +#: appGUI/GUIElements.py:3485 msgid "Location" msgstr "Locazione" -#: appGUI/GUIElements.py:3303 +#: appGUI/GUIElements.py:3487 msgid "" "The Location value is a tuple (x,y).\n" "If the reference is Absolute then the Jump will be at the position (x,y).\n" @@ -4138,85 +4159,85 @@ msgstr "" "Se il riferimento è relativo, il salto sarà alla distanza (x,y)\n" "dal punto di posizione attuale del mouse." -#: appGUI/GUIElements.py:3358 +#: appGUI/GUIElements.py:3542 msgid "Save Log" msgstr "Salva log" -#: appGUI/GUIElements.py:3358 appGUI/MainGUI.py:161 appGUI/MainGUI.py:343 +#: appGUI/GUIElements.py:3542 appGUI/MainGUI.py:161 appGUI/MainGUI.py:343 #: appGUI/MainGUI.py:4432 appGUI/MainGUI.py:4691 appGUI/MainGUI.py:4791 #: appGUI/MainGUI.py:4927 msgid "Ctrl+S" msgstr "Ctrl+S" -#: appGUI/GUIElements.py:3363 +#: appGUI/GUIElements.py:3547 msgid "Clear All" msgstr "Cancella tutto" -#: appGUI/GUIElements.py:3406 appTools/ToolShell.py:296 +#: appGUI/GUIElements.py:3590 appTools/ToolShell.py:296 msgid "Type >help< to get started" msgstr "Digita >help< per iniziare" -#: appGUI/GUIElements.py:3773 appGUI/GUIElements.py:3790 +#: appGUI/GUIElements.py:4053 appGUI/GUIElements.py:4070 msgid "Jog the Y axis." msgstr "Jog asse Y." -#: appGUI/GUIElements.py:3781 +#: appGUI/GUIElements.py:4061 msgid "Move to Origin." msgstr "Sposta su origine." -#: appGUI/GUIElements.py:3798 appGUI/GUIElements.py:3806 +#: appGUI/GUIElements.py:4078 appGUI/GUIElements.py:4086 msgid "Jog the X axis." msgstr "Jog asse X." -#: appGUI/GUIElements.py:3816 appGUI/GUIElements.py:3826 +#: appGUI/GUIElements.py:4096 appGUI/GUIElements.py:4106 msgid "Jog the Z axis." msgstr "Jog asse Z." -#: appGUI/GUIElements.py:3852 +#: appGUI/GUIElements.py:4132 msgid "Zero the CNC X axes at current position." msgstr "Azzera l'asse X alla posizione corrente." -#: appGUI/GUIElements.py:3860 +#: appGUI/GUIElements.py:4140 msgid "Zero the CNC Y axes at current position." msgstr "Azzera l'asse Y alla posizione corrente." -#: appGUI/GUIElements.py:3865 +#: appGUI/GUIElements.py:4145 msgid "Z" msgstr "Z" -#: appGUI/GUIElements.py:3868 +#: appGUI/GUIElements.py:4148 msgid "Zero the CNC Z axes at current position." msgstr "Azzera l'asse Z alla posizione corrente." -#: appGUI/GUIElements.py:3872 +#: appGUI/GUIElements.py:4152 msgid "Do Home" msgstr "Effettua Home" -#: appGUI/GUIElements.py:3874 +#: appGUI/GUIElements.py:4154 msgid "Perform a homing cycle on all axis." msgstr "Esegue un ciclo di home su tutti gli assi." -#: appGUI/GUIElements.py:3882 +#: appGUI/GUIElements.py:4162 msgid "Zero all CNC axes at current position." msgstr "Azzera tutti gli assi alla posizione corrente." -#: appGUI/GUIElements.py:4037 appGUI/GUIElements.py:4046 +#: appGUI/GUIElements.py:4317 appGUI/GUIElements.py:4326 msgid "Idle." msgstr "Inattivo." -#: appGUI/GUIElements.py:4079 +#: appGUI/GUIElements.py:4359 msgid "Application started ..." msgstr "Applicazione avviata ..." -#: appGUI/GUIElements.py:4080 +#: appGUI/GUIElements.py:4360 msgid "Hello!" msgstr "Ciao!" -#: appGUI/GUIElements.py:4127 appGUI/MainGUI.py:1030 appGUI/MainGUI.py:2186 +#: appGUI/GUIElements.py:4407 appGUI/MainGUI.py:1030 appGUI/MainGUI.py:2186 msgid "Run Script ..." msgstr "Esegui Script ..." -#: appGUI/GUIElements.py:4129 appGUI/MainGUI.py:196 +#: appGUI/GUIElements.py:4409 appGUI/MainGUI.py:196 msgid "" "Will run the opened Tcl Script thus\n" "enabling the automation of certain\n" @@ -4226,28 +4247,28 @@ msgstr "" "consentire l'automazione di alcune\n" "funzioni di FlatCAM." -#: appGUI/GUIElements.py:4138 appGUI/MainGUI.py:118 +#: appGUI/GUIElements.py:4418 appGUI/MainGUI.py:118 #: appTools/ToolPcbWizard.py:390 appTools/ToolPcbWizard.py:397 msgid "Open" msgstr "Apri" -#: appGUI/GUIElements.py:4142 +#: appGUI/GUIElements.py:4422 msgid "Open Project ..." msgstr "Apri progetto ..." -#: appGUI/GUIElements.py:4148 +#: appGUI/GUIElements.py:4428 msgid "Open &Gerber ...\tCtrl+G" msgstr "Apri &Gerber...\tCtrl+G" -#: appGUI/GUIElements.py:4153 +#: appGUI/GUIElements.py:4433 msgid "Open &Excellon ...\tCtrl+E" msgstr "Apri &Excellon ...\tCtrl+E" -#: appGUI/GUIElements.py:4158 +#: appGUI/GUIElements.py:4438 msgid "Open G-&Code ..." msgstr "Apri G-&Code ..." -#: appGUI/GUIElements.py:4168 appGUI/MainGUI.py:327 +#: appGUI/GUIElements.py:4448 appGUI/MainGUI.py:327 msgid "Exit" msgstr "Esci" diff --git a/locale/pt_BR/LC_MESSAGES/strings.mo b/locale/pt_BR/LC_MESSAGES/strings.mo index 873b5861..5cc45fef 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 fff72bd8..017302b8 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: 2020-10-27 00:05+0200\n" -"PO-Revision-Date: 2020-10-27 00:06+0200\n" +"POT-Creation-Date: 2020-10-27 01:19+0200\n" +"PO-Revision-Date: 2020-10-27 01:19+0200\n" "Last-Translator: Carlos Stein \n" "Language-Team: \n" "Language: pt_BR\n" @@ -1982,7 +1982,7 @@ msgstr "" #: appEditors/AppExcEditor.py:3908 appEditors/AppExcEditor.py:4030 #: appEditors/AppExcEditor.py:4123 appEditors/AppGerberEditor.py:2820 -#: appGUI/GUIElements.py:3850 appGUI/MainGUI.py:475 appGUI/MainGUI.py:668 +#: appGUI/GUIElements.py:4130 appGUI/MainGUI.py:475 appGUI/MainGUI.py:668 #: appGUI/MainGUI.py:4416 appGUI/MainGUI.py:4682 #: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:92 #: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:187 @@ -1995,7 +1995,7 @@ msgstr "X" #: appEditors/AppExcEditor.py:3909 appEditors/AppExcEditor.py:4031 #: appEditors/AppExcEditor.py:4124 appEditors/AppGerberEditor.py:2821 -#: appGUI/GUIElements.py:3857 appGUI/MainGUI.py:478 appGUI/MainGUI.py:4417 +#: appGUI/GUIElements.py:4137 appGUI/MainGUI.py:478 appGUI/MainGUI.py:4417 #: appGUI/MainGUI.py:4683 #: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:93 #: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:188 @@ -2399,7 +2399,7 @@ msgid "Buffer" msgstr "Buffer" #: appEditors/AppGeoEditor.py:643 appEditors/AppGerberEditor.py:5353 -#: appGUI/GUIElements.py:3283 +#: appGUI/GUIElements.py:3467 #: appGUI/preferences/tools/ToolsFilmPrefGroupUI.py:169 #: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:44 #: appTools/ToolDblSided.py:683 appTools/ToolDblSided.py:857 @@ -3550,14 +3550,15 @@ msgid "Add a new aperture to the aperture list." msgstr "Adiciona uma nova abertura à lista de aberturas." #: appEditors/AppGerberEditor.py:2595 appEditors/AppGerberEditor.py:2743 -#: appGUI/GUIElements.py:568 appGUI/GUIElements.py:1514 -#: appGUI/GUIElements.py:1690 appGUI/MainGUI.py:420 appGUI/MainGUI.py:731 -#: appGUI/MainGUI.py:790 appGUI/MainGUI.py:869 appGUI/MainGUI.py:988 -#: appGUI/MainGUI.py:1205 appGUI/MainGUI.py:1689 appGUI/MainGUI.py:2147 -#: appGUI/MainGUI.py:2360 appGUI/MainGUI.py:4922 appGUI/ObjectUI.py:1132 -#: appObjects/FlatCAMGeometry.py:561 appTools/ToolIsolation.py:70 -#: appTools/ToolIsolation.py:3150 appTools/ToolNCC.py:69 -#: appTools/ToolNCC.py:4024 appTools/ToolPaint.py:143 +#: appGUI/GUIElements.py:568 appGUI/GUIElements.py:1006 +#: appGUI/GUIElements.py:1342 appGUI/GUIElements.py:1698 +#: appGUI/GUIElements.py:1874 appGUI/GUIElements.py:3769 appGUI/MainGUI.py:420 +#: appGUI/MainGUI.py:731 appGUI/MainGUI.py:790 appGUI/MainGUI.py:869 +#: appGUI/MainGUI.py:988 appGUI/MainGUI.py:1205 appGUI/MainGUI.py:1689 +#: appGUI/MainGUI.py:2147 appGUI/MainGUI.py:2360 appGUI/MainGUI.py:4922 +#: appGUI/ObjectUI.py:1132 appObjects/FlatCAMGeometry.py:561 +#: appTools/ToolIsolation.py:70 appTools/ToolIsolation.py:3150 +#: appTools/ToolNCC.py:69 appTools/ToolNCC.py:4024 appTools/ToolPaint.py:143 #: appTools/ToolPaint.py:2926 appTools/ToolSolderPaste.py:163 #: appTools/ToolSolderPaste.py:1209 app_Main.py:6063 msgid "Delete" @@ -3901,7 +3902,7 @@ 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." -#: appEditors/AppTextEditor.py:106 appGUI/GUIElements.py:3878 +#: appEditors/AppTextEditor.py:106 appGUI/GUIElements.py:4158 #: appGUI/ObjectUI.py:1864 appGUI/preferences/cncjob/CNCJobOptPrefGroupUI.py:61 #: appGUI/preferences/tools/ToolsISOPrefGroupUI.py:295 #: appGUI/preferences/tools/ToolsPaintPrefGroupUI.py:278 @@ -4069,89 +4070,111 @@ msgstr "Inserir QRCode" msgid "Insert the code above at the cursor location." msgstr "" -#: appGUI/GUIElements.py:533 appGUI/GUIElements.py:1479 -#: appGUI/GUIElements.py:1655 +#: appGUI/GUIElements.py:533 appGUI/GUIElements.py:971 +#: appGUI/GUIElements.py:1307 appGUI/GUIElements.py:1663 +#: appGUI/GUIElements.py:1839 appGUI/GUIElements.py:3734 msgid "Undo" msgstr "" -#: appGUI/GUIElements.py:533 appGUI/GUIElements.py:1479 -#: appGUI/GUIElements.py:1655 -#| msgid "Ctrl+C" +#: appGUI/GUIElements.py:533 appGUI/GUIElements.py:971 +#: appGUI/GUIElements.py:1307 appGUI/GUIElements.py:1663 +#: appGUI/GUIElements.py:1839 appGUI/GUIElements.py:3734 msgid "Ctrl+Z" msgstr "Ctrl+Z" -#: appGUI/GUIElements.py:540 appGUI/GUIElements.py:1486 -#: appGUI/GUIElements.py:1662 +#: appGUI/GUIElements.py:540 appGUI/GUIElements.py:978 +#: appGUI/GUIElements.py:1314 appGUI/GUIElements.py:1670 +#: appGUI/GUIElements.py:1846 appGUI/GUIElements.py:3741 msgid "Redo" msgstr "" -#: appGUI/GUIElements.py:540 appGUI/GUIElements.py:1486 -#: appGUI/GUIElements.py:1662 -#| msgid "Ctrl+C" +#: appGUI/GUIElements.py:540 appGUI/GUIElements.py:978 +#: appGUI/GUIElements.py:1314 appGUI/GUIElements.py:1670 +#: appGUI/GUIElements.py:1846 appGUI/GUIElements.py:3741 msgid "Ctrl+Y" msgstr "Ctrl+Y" -#: appGUI/GUIElements.py:549 appGUI/GUIElements.py:1495 -#: appGUI/GUIElements.py:1671 appGUI/MainGUI.py:1630 appGUI/ObjectUI.py:1866 -#: appGUI/preferences/cncjob/CNCJobOptPrefGroupUI.py:63 +#: appGUI/GUIElements.py:549 appGUI/GUIElements.py:987 +#: appGUI/GUIElements.py:1323 appGUI/GUIElements.py:1679 +#: appGUI/GUIElements.py:1855 appGUI/GUIElements.py:3750 appGUI/MainGUI.py:1630 +#: appGUI/ObjectUI.py:1866 appGUI/preferences/cncjob/CNCJobOptPrefGroupUI.py:63 msgid "Cut" msgstr "Cortar" -#: appGUI/GUIElements.py:549 appGUI/GUIElements.py:1495 -#: appGUI/GUIElements.py:1671 appGUI/MainGUI.py:4692 +#: appGUI/GUIElements.py:549 appGUI/GUIElements.py:987 +#: appGUI/GUIElements.py:1323 appGUI/GUIElements.py:1679 +#: appGUI/GUIElements.py:1855 appGUI/GUIElements.py:3750 appGUI/MainGUI.py:4692 msgid "Ctrl+X" msgstr "Ctrl+X" -#: appGUI/GUIElements.py:556 appGUI/GUIElements.py:1502 -#: appGUI/GUIElements.py:1678 appGUI/GUIElements.py:3345 appGUI/MainGUI.py:414 -#: appGUI/MainGUI.py:728 appGUI/MainGUI.py:787 appGUI/MainGUI.py:867 -#: appGUI/MainGUI.py:986 appGUI/MainGUI.py:1203 appGUI/MainGUI.py:1687 -#: appGUI/MainGUI.py:2145 appGUI/MainGUI.py:2358 appGUI/MainGUI.py:4911 -#: appGUI/ObjectUI.py:1125 appObjects/FlatCAMGeometry.py:558 -#: appTools/ToolPanelize.py:325 appTools/ToolPanelize.py:351 -#: appTools/ToolPanelize.py:448 appTools/ToolPanelize.py:477 -#: appTools/ToolPanelize.py:538 +#: appGUI/GUIElements.py:556 appGUI/GUIElements.py:994 +#: appGUI/GUIElements.py:1330 appGUI/GUIElements.py:1686 +#: appGUI/GUIElements.py:1862 appGUI/GUIElements.py:3529 +#: appGUI/GUIElements.py:3757 appGUI/MainGUI.py:414 appGUI/MainGUI.py:728 +#: appGUI/MainGUI.py:787 appGUI/MainGUI.py:867 appGUI/MainGUI.py:986 +#: appGUI/MainGUI.py:1203 appGUI/MainGUI.py:1687 appGUI/MainGUI.py:2145 +#: appGUI/MainGUI.py:2358 appGUI/MainGUI.py:4911 appGUI/ObjectUI.py:1125 +#: appObjects/FlatCAMGeometry.py:558 appTools/ToolPanelize.py:325 +#: appTools/ToolPanelize.py:351 appTools/ToolPanelize.py:448 +#: appTools/ToolPanelize.py:477 appTools/ToolPanelize.py:538 msgid "Copy" msgstr "Copiar" -#: appGUI/GUIElements.py:556 appGUI/GUIElements.py:1502 -#: appGUI/GUIElements.py:1678 appGUI/GUIElements.py:3345 appGUI/MainGUI.py:414 -#: appGUI/MainGUI.py:4423 +#: appGUI/GUIElements.py:556 appGUI/GUIElements.py:994 +#: appGUI/GUIElements.py:1330 appGUI/GUIElements.py:1686 +#: appGUI/GUIElements.py:1862 appGUI/GUIElements.py:3529 +#: appGUI/GUIElements.py:3757 appGUI/MainGUI.py:414 appGUI/MainGUI.py:4423 msgid "Ctrl+C" msgstr "Copiar" -#: appGUI/GUIElements.py:563 appGUI/GUIElements.py:1509 -#: appGUI/GUIElements.py:1685 +#: appGUI/GUIElements.py:563 appGUI/GUIElements.py:1001 +#: appGUI/GUIElements.py:1337 appGUI/GUIElements.py:1693 +#: appGUI/GUIElements.py:1869 appGUI/GUIElements.py:3764 msgid "Paste" msgstr "" -#: appGUI/GUIElements.py:563 appGUI/GUIElements.py:1509 -#: appGUI/GUIElements.py:1685 -#| msgid "Ctrl+C" +#: appGUI/GUIElements.py:563 appGUI/GUIElements.py:1001 +#: appGUI/GUIElements.py:1337 appGUI/GUIElements.py:1693 +#: appGUI/GUIElements.py:1869 appGUI/GUIElements.py:3764 msgid "Ctrl+V" msgstr "Ctrl+V" -#: appGUI/GUIElements.py:568 appGUI/GUIElements.py:1514 -#: appGUI/GUIElements.py:1690 appGUI/GUIElements.py:3363 appGUI/MainGUI.py:4491 -#: appGUI/MainGUI.py:4492 appGUI/MainGUI.py:4696 appGUI/MainGUI.py:4788 -#: appGUI/MainGUI.py:4789 appGUI/MainGUI.py:4922 appGUI/MainGUI.py:4923 +#: appGUI/GUIElements.py:568 appGUI/GUIElements.py:1006 +#: appGUI/GUIElements.py:1342 appGUI/GUIElements.py:1698 +#: appGUI/GUIElements.py:1874 appGUI/GUIElements.py:3547 +#: appGUI/GUIElements.py:3769 appGUI/MainGUI.py:4491 appGUI/MainGUI.py:4492 +#: appGUI/MainGUI.py:4696 appGUI/MainGUI.py:4788 appGUI/MainGUI.py:4789 +#: appGUI/MainGUI.py:4922 appGUI/MainGUI.py:4923 msgid "Del" msgstr "Del" -#: appGUI/GUIElements.py:575 appGUI/GUIElements.py:1521 -#: appGUI/GUIElements.py:1697 appGUI/GUIElements.py:3353 appGUI/MainGUI.py:445 -#: appGUI/MainGUI.py:565 appGUI/MainGUI.py:4422 -#: appObjects/ObjectCollection.py:1128 appObjects/ObjectCollection.py:1175 +#: appGUI/GUIElements.py:575 appGUI/GUIElements.py:1013 +#: appGUI/GUIElements.py:1349 appGUI/GUIElements.py:1705 +#: appGUI/GUIElements.py:1881 appGUI/GUIElements.py:3537 +#: appGUI/GUIElements.py:3776 appGUI/MainGUI.py:445 appGUI/MainGUI.py:565 +#: appGUI/MainGUI.py:4422 appObjects/ObjectCollection.py:1128 +#: appObjects/ObjectCollection.py:1175 msgid "Select All" msgstr "Selecionar Todos" -#: appGUI/GUIElements.py:575 appGUI/GUIElements.py:1521 -#: appGUI/GUIElements.py:1697 appGUI/GUIElements.py:3353 appGUI/MainGUI.py:445 -#: appGUI/MainGUI.py:4422 +#: appGUI/GUIElements.py:575 appGUI/GUIElements.py:1013 +#: appGUI/GUIElements.py:1349 appGUI/GUIElements.py:1705 +#: appGUI/GUIElements.py:1881 appGUI/GUIElements.py:3537 +#: appGUI/GUIElements.py:3776 appGUI/MainGUI.py:445 appGUI/MainGUI.py:4422 msgid "Ctrl+A" msgstr "Ctrl+A" -#: appGUI/GUIElements.py:3285 +#: appGUI/GUIElements.py:1020 appGUI/GUIElements.py:1356 +msgid "Step Up" +msgstr "" + +#: appGUI/GUIElements.py:1025 appGUI/GUIElements.py:1361 +#, fuzzy +#| msgid "Down" +msgid "Step Down" +msgstr "Abaixo" + +#: appGUI/GUIElements.py:3469 msgid "" "The reference can be:\n" "- Absolute -> the reference point is point (0,0)\n" @@ -4161,19 +4184,19 @@ msgstr "" "- Absoluto -> o ponto de referência é o ponto (0,0)\n" "- Relativo -> o ponto de referência é a posição do mouse antes de Jump" -#: appGUI/GUIElements.py:3290 +#: appGUI/GUIElements.py:3474 msgid "Abs" msgstr "Abs" -#: appGUI/GUIElements.py:3291 +#: appGUI/GUIElements.py:3475 msgid "Relative" msgstr "Relativo" -#: appGUI/GUIElements.py:3301 +#: appGUI/GUIElements.py:3485 msgid "Location" msgstr "Localização" -#: appGUI/GUIElements.py:3303 +#: appGUI/GUIElements.py:3487 msgid "" "The Location value is a tuple (x,y).\n" "If the reference is Absolute then the Jump will be at the position (x,y).\n" @@ -4185,95 +4208,95 @@ msgstr "" "Se a referência for Relativa, o salto estará na distância (x, y)\n" "a partir do ponto de localização atual do mouse." -#: appGUI/GUIElements.py:3358 +#: appGUI/GUIElements.py:3542 msgid "Save Log" msgstr "Salvar Log" -#: appGUI/GUIElements.py:3358 appGUI/MainGUI.py:161 appGUI/MainGUI.py:343 +#: appGUI/GUIElements.py:3542 appGUI/MainGUI.py:161 appGUI/MainGUI.py:343 #: appGUI/MainGUI.py:4432 appGUI/MainGUI.py:4691 appGUI/MainGUI.py:4791 #: appGUI/MainGUI.py:4927 msgid "Ctrl+S" msgstr "Ctrl+S" -#: appGUI/GUIElements.py:3363 +#: appGUI/GUIElements.py:3547 #, fuzzy #| msgid "Clear plot" msgid "Clear All" msgstr "Limpar gráfico" -#: appGUI/GUIElements.py:3406 appTools/ToolShell.py:296 +#: appGUI/GUIElements.py:3590 appTools/ToolShell.py:296 msgid "Type >help< to get started" msgstr "Digite >help< para iniciar" -#: appGUI/GUIElements.py:3773 appGUI/GUIElements.py:3790 +#: appGUI/GUIElements.py:4053 appGUI/GUIElements.py:4070 #, fuzzy #| msgid "Toggle the axis" msgid "Jog the Y axis." msgstr "Alternar o Eixo" -#: appGUI/GUIElements.py:3781 +#: appGUI/GUIElements.py:4061 #, fuzzy #| msgid "Move to Origin" msgid "Move to Origin." msgstr "Mover para Origem" -#: appGUI/GUIElements.py:3798 appGUI/GUIElements.py:3806 +#: appGUI/GUIElements.py:4078 appGUI/GUIElements.py:4086 #, fuzzy #| msgid "Toggle the axis" msgid "Jog the X axis." msgstr "Alternar o Eixo" -#: appGUI/GUIElements.py:3816 appGUI/GUIElements.py:3826 +#: appGUI/GUIElements.py:4096 appGUI/GUIElements.py:4106 #, fuzzy #| msgid "Toggle the axis" msgid "Jog the Z axis." msgstr "Alternar o Eixo" -#: appGUI/GUIElements.py:3852 +#: appGUI/GUIElements.py:4132 msgid "Zero the CNC X axes at current position." msgstr "" -#: appGUI/GUIElements.py:3860 +#: appGUI/GUIElements.py:4140 msgid "Zero the CNC Y axes at current position." msgstr "" -#: appGUI/GUIElements.py:3865 +#: appGUI/GUIElements.py:4145 msgid "Z" msgstr "Z" -#: appGUI/GUIElements.py:3868 +#: appGUI/GUIElements.py:4148 msgid "Zero the CNC Z axes at current position." msgstr "" -#: appGUI/GUIElements.py:3872 +#: appGUI/GUIElements.py:4152 msgid "Do Home" msgstr "" -#: appGUI/GUIElements.py:3874 +#: appGUI/GUIElements.py:4154 msgid "Perform a homing cycle on all axis." msgstr "" -#: appGUI/GUIElements.py:3882 +#: appGUI/GUIElements.py:4162 msgid "Zero all CNC axes at current position." msgstr "" -#: appGUI/GUIElements.py:4037 appGUI/GUIElements.py:4046 +#: appGUI/GUIElements.py:4317 appGUI/GUIElements.py:4326 msgid "Idle." msgstr "Ocioso." -#: appGUI/GUIElements.py:4079 +#: appGUI/GUIElements.py:4359 msgid "Application started ..." msgstr "Aplicativo iniciado ..." -#: appGUI/GUIElements.py:4080 +#: appGUI/GUIElements.py:4360 msgid "Hello!" msgstr "Olá!" -#: appGUI/GUIElements.py:4127 appGUI/MainGUI.py:1030 appGUI/MainGUI.py:2186 +#: appGUI/GUIElements.py:4407 appGUI/MainGUI.py:1030 appGUI/MainGUI.py:2186 msgid "Run Script ..." msgstr "Executar Script ..." -#: appGUI/GUIElements.py:4129 appGUI/MainGUI.py:196 +#: appGUI/GUIElements.py:4409 appGUI/MainGUI.py:196 msgid "" "Will run the opened Tcl Script thus\n" "enabling the automation of certain\n" @@ -4283,28 +4306,28 @@ msgstr "" "ativando a automação de certas\n" "funções do FlatCAM." -#: appGUI/GUIElements.py:4138 appGUI/MainGUI.py:118 +#: appGUI/GUIElements.py:4418 appGUI/MainGUI.py:118 #: appTools/ToolPcbWizard.py:390 appTools/ToolPcbWizard.py:397 msgid "Open" msgstr "Abrir" -#: appGUI/GUIElements.py:4142 +#: appGUI/GUIElements.py:4422 msgid "Open Project ..." msgstr "Abrir Projeto ..." -#: appGUI/GUIElements.py:4148 +#: appGUI/GUIElements.py:4428 msgid "Open &Gerber ...\tCtrl+G" msgstr "Abrir &Gerber ...\tCtrl+G" -#: appGUI/GUIElements.py:4153 +#: appGUI/GUIElements.py:4433 msgid "Open &Excellon ...\tCtrl+E" msgstr "Abrir &Excellon ...\tCtrl+E" -#: appGUI/GUIElements.py:4158 +#: appGUI/GUIElements.py:4438 msgid "Open G-&Code ..." msgstr "Abrir G-&Code ..." -#: appGUI/GUIElements.py:4168 appGUI/MainGUI.py:327 +#: appGUI/GUIElements.py:4448 appGUI/MainGUI.py:327 msgid "Exit" msgstr "Sair" diff --git a/locale/ro/LC_MESSAGES/strings.mo b/locale/ro/LC_MESSAGES/strings.mo index e55036fc..28160604 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 3c0d94cf..3be20884 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: 2020-10-27 00:06+0200\n" -"PO-Revision-Date: 2020-10-27 00:07+0200\n" +"POT-Creation-Date: 2020-10-27 01:13+0200\n" +"PO-Revision-Date: 2020-10-27 01:17+0200\n" "Last-Translator: \n" "Language-Team: \n" "Language: ro\n" @@ -742,7 +742,7 @@ msgstr "Convenţional" #: appTools/ToolDrilling.py:2312 appTools/ToolIsolation.py:3189 #: appTools/ToolNCC.py:4091 appTools/ToolPaint.py:2955 msgid "Overlap" -msgstr "Rată suprapunere" +msgstr "Suprapunere" #: appDatabase.py:627 appGUI/preferences/tools/ToolsNCCPrefGroupUI.py:184 #: appTools/ToolNCC.py:4093 @@ -1986,7 +1986,7 @@ msgstr "" #: appEditors/AppExcEditor.py:3908 appEditors/AppExcEditor.py:4030 #: appEditors/AppExcEditor.py:4123 appEditors/AppGerberEditor.py:2820 -#: appGUI/GUIElements.py:3850 appGUI/MainGUI.py:475 appGUI/MainGUI.py:668 +#: appGUI/GUIElements.py:4130 appGUI/MainGUI.py:475 appGUI/MainGUI.py:668 #: appGUI/MainGUI.py:4416 appGUI/MainGUI.py:4682 #: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:92 #: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:187 @@ -1999,7 +1999,7 @@ msgstr "X" #: appEditors/AppExcEditor.py:3909 appEditors/AppExcEditor.py:4031 #: appEditors/AppExcEditor.py:4124 appEditors/AppGerberEditor.py:2821 -#: appGUI/GUIElements.py:3857 appGUI/MainGUI.py:478 appGUI/MainGUI.py:4417 +#: appGUI/GUIElements.py:4137 appGUI/MainGUI.py:478 appGUI/MainGUI.py:4417 #: appGUI/MainGUI.py:4683 #: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:93 #: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:188 @@ -2398,7 +2398,7 @@ msgid "Buffer" msgstr "Bufer" #: appEditors/AppGeoEditor.py:643 appEditors/AppGerberEditor.py:5353 -#: appGUI/GUIElements.py:3283 +#: appGUI/GUIElements.py:3467 #: appGUI/preferences/tools/ToolsFilmPrefGroupUI.py:169 #: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:44 #: appTools/ToolDblSided.py:683 appTools/ToolDblSided.py:857 @@ -3556,14 +3556,15 @@ msgid "Add a new aperture to the aperture list." msgstr "Adaugă o nouă apertură in lista de aperturi." #: appEditors/AppGerberEditor.py:2595 appEditors/AppGerberEditor.py:2743 -#: appGUI/GUIElements.py:568 appGUI/GUIElements.py:1514 -#: appGUI/GUIElements.py:1690 appGUI/MainGUI.py:420 appGUI/MainGUI.py:731 -#: appGUI/MainGUI.py:790 appGUI/MainGUI.py:869 appGUI/MainGUI.py:988 -#: appGUI/MainGUI.py:1205 appGUI/MainGUI.py:1689 appGUI/MainGUI.py:2147 -#: appGUI/MainGUI.py:2360 appGUI/MainGUI.py:4922 appGUI/ObjectUI.py:1132 -#: appObjects/FlatCAMGeometry.py:561 appTools/ToolIsolation.py:70 -#: appTools/ToolIsolation.py:3150 appTools/ToolNCC.py:69 -#: appTools/ToolNCC.py:4024 appTools/ToolPaint.py:143 +#: appGUI/GUIElements.py:568 appGUI/GUIElements.py:1006 +#: appGUI/GUIElements.py:1342 appGUI/GUIElements.py:1698 +#: appGUI/GUIElements.py:1874 appGUI/GUIElements.py:3769 appGUI/MainGUI.py:420 +#: appGUI/MainGUI.py:731 appGUI/MainGUI.py:790 appGUI/MainGUI.py:869 +#: appGUI/MainGUI.py:988 appGUI/MainGUI.py:1205 appGUI/MainGUI.py:1689 +#: appGUI/MainGUI.py:2147 appGUI/MainGUI.py:2360 appGUI/MainGUI.py:4922 +#: appGUI/ObjectUI.py:1132 appObjects/FlatCAMGeometry.py:561 +#: appTools/ToolIsolation.py:70 appTools/ToolIsolation.py:3150 +#: appTools/ToolNCC.py:69 appTools/ToolNCC.py:4024 appTools/ToolPaint.py:143 #: appTools/ToolPaint.py:2926 appTools/ToolSolderPaste.py:163 #: appTools/ToolSolderPaste.py:1209 app_Main.py:6063 msgid "Delete" @@ -3912,7 +3913,7 @@ 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." -#: appEditors/AppTextEditor.py:106 appGUI/GUIElements.py:3878 +#: appEditors/AppTextEditor.py:106 appGUI/GUIElements.py:4158 #: appGUI/ObjectUI.py:1864 appGUI/preferences/cncjob/CNCJobOptPrefGroupUI.py:61 #: appGUI/preferences/tools/ToolsISOPrefGroupUI.py:295 #: appGUI/preferences/tools/ToolsPaintPrefGroupUI.py:278 @@ -4065,89 +4066,109 @@ msgstr "Inserați Codul" msgid "Insert the code above at the cursor location." msgstr "Introduceți codul de mai sus la locația cursorului." -#: appGUI/GUIElements.py:533 appGUI/GUIElements.py:1479 -#: appGUI/GUIElements.py:1655 +#: appGUI/GUIElements.py:533 appGUI/GUIElements.py:971 +#: appGUI/GUIElements.py:1307 appGUI/GUIElements.py:1663 +#: appGUI/GUIElements.py:1839 appGUI/GUIElements.py:3734 msgid "Undo" msgstr "Revino" -#: appGUI/GUIElements.py:533 appGUI/GUIElements.py:1479 -#: appGUI/GUIElements.py:1655 -#| msgid "Ctrl+C" +#: appGUI/GUIElements.py:533 appGUI/GUIElements.py:971 +#: appGUI/GUIElements.py:1307 appGUI/GUIElements.py:1663 +#: appGUI/GUIElements.py:1839 appGUI/GUIElements.py:3734 msgid "Ctrl+Z" msgstr "Ctrl+Z" -#: appGUI/GUIElements.py:540 appGUI/GUIElements.py:1486 -#: appGUI/GUIElements.py:1662 +#: appGUI/GUIElements.py:540 appGUI/GUIElements.py:978 +#: appGUI/GUIElements.py:1314 appGUI/GUIElements.py:1670 +#: appGUI/GUIElements.py:1846 appGUI/GUIElements.py:3741 msgid "Redo" msgstr "Refa" -#: appGUI/GUIElements.py:540 appGUI/GUIElements.py:1486 -#: appGUI/GUIElements.py:1662 -#| msgid "Ctrl+C" +#: appGUI/GUIElements.py:540 appGUI/GUIElements.py:978 +#: appGUI/GUIElements.py:1314 appGUI/GUIElements.py:1670 +#: appGUI/GUIElements.py:1846 appGUI/GUIElements.py:3741 msgid "Ctrl+Y" msgstr "Ctrl+Y" -#: appGUI/GUIElements.py:549 appGUI/GUIElements.py:1495 -#: appGUI/GUIElements.py:1671 appGUI/MainGUI.py:1630 appGUI/ObjectUI.py:1866 -#: appGUI/preferences/cncjob/CNCJobOptPrefGroupUI.py:63 +#: appGUI/GUIElements.py:549 appGUI/GUIElements.py:987 +#: appGUI/GUIElements.py:1323 appGUI/GUIElements.py:1679 +#: appGUI/GUIElements.py:1855 appGUI/GUIElements.py:3750 appGUI/MainGUI.py:1630 +#: appGUI/ObjectUI.py:1866 appGUI/preferences/cncjob/CNCJobOptPrefGroupUI.py:63 msgid "Cut" msgstr "Tăiere" -#: appGUI/GUIElements.py:549 appGUI/GUIElements.py:1495 -#: appGUI/GUIElements.py:1671 appGUI/MainGUI.py:4692 +#: appGUI/GUIElements.py:549 appGUI/GUIElements.py:987 +#: appGUI/GUIElements.py:1323 appGUI/GUIElements.py:1679 +#: appGUI/GUIElements.py:1855 appGUI/GUIElements.py:3750 appGUI/MainGUI.py:4692 msgid "Ctrl+X" msgstr "Ctrl+X" -#: appGUI/GUIElements.py:556 appGUI/GUIElements.py:1502 -#: appGUI/GUIElements.py:1678 appGUI/GUIElements.py:3345 appGUI/MainGUI.py:414 -#: appGUI/MainGUI.py:728 appGUI/MainGUI.py:787 appGUI/MainGUI.py:867 -#: appGUI/MainGUI.py:986 appGUI/MainGUI.py:1203 appGUI/MainGUI.py:1687 -#: appGUI/MainGUI.py:2145 appGUI/MainGUI.py:2358 appGUI/MainGUI.py:4911 -#: appGUI/ObjectUI.py:1125 appObjects/FlatCAMGeometry.py:558 -#: appTools/ToolPanelize.py:325 appTools/ToolPanelize.py:351 -#: appTools/ToolPanelize.py:448 appTools/ToolPanelize.py:477 -#: appTools/ToolPanelize.py:538 +#: appGUI/GUIElements.py:556 appGUI/GUIElements.py:994 +#: appGUI/GUIElements.py:1330 appGUI/GUIElements.py:1686 +#: appGUI/GUIElements.py:1862 appGUI/GUIElements.py:3529 +#: appGUI/GUIElements.py:3757 appGUI/MainGUI.py:414 appGUI/MainGUI.py:728 +#: appGUI/MainGUI.py:787 appGUI/MainGUI.py:867 appGUI/MainGUI.py:986 +#: appGUI/MainGUI.py:1203 appGUI/MainGUI.py:1687 appGUI/MainGUI.py:2145 +#: appGUI/MainGUI.py:2358 appGUI/MainGUI.py:4911 appGUI/ObjectUI.py:1125 +#: appObjects/FlatCAMGeometry.py:558 appTools/ToolPanelize.py:325 +#: appTools/ToolPanelize.py:351 appTools/ToolPanelize.py:448 +#: appTools/ToolPanelize.py:477 appTools/ToolPanelize.py:538 msgid "Copy" msgstr "Copiază" -#: appGUI/GUIElements.py:556 appGUI/GUIElements.py:1502 -#: appGUI/GUIElements.py:1678 appGUI/GUIElements.py:3345 appGUI/MainGUI.py:414 -#: appGUI/MainGUI.py:4423 +#: appGUI/GUIElements.py:556 appGUI/GUIElements.py:994 +#: appGUI/GUIElements.py:1330 appGUI/GUIElements.py:1686 +#: appGUI/GUIElements.py:1862 appGUI/GUIElements.py:3529 +#: appGUI/GUIElements.py:3757 appGUI/MainGUI.py:414 appGUI/MainGUI.py:4423 msgid "Ctrl+C" msgstr "Ctrl+C" -#: appGUI/GUIElements.py:563 appGUI/GUIElements.py:1509 -#: appGUI/GUIElements.py:1685 +#: appGUI/GUIElements.py:563 appGUI/GUIElements.py:1001 +#: appGUI/GUIElements.py:1337 appGUI/GUIElements.py:1693 +#: appGUI/GUIElements.py:1869 appGUI/GUIElements.py:3764 msgid "Paste" msgstr "Lipire" -#: appGUI/GUIElements.py:563 appGUI/GUIElements.py:1509 -#: appGUI/GUIElements.py:1685 -#| msgid "Ctrl+C" +#: appGUI/GUIElements.py:563 appGUI/GUIElements.py:1001 +#: appGUI/GUIElements.py:1337 appGUI/GUIElements.py:1693 +#: appGUI/GUIElements.py:1869 appGUI/GUIElements.py:3764 msgid "Ctrl+V" msgstr "Ctrl+V" -#: appGUI/GUIElements.py:568 appGUI/GUIElements.py:1514 -#: appGUI/GUIElements.py:1690 appGUI/GUIElements.py:3363 appGUI/MainGUI.py:4491 -#: appGUI/MainGUI.py:4492 appGUI/MainGUI.py:4696 appGUI/MainGUI.py:4788 -#: appGUI/MainGUI.py:4789 appGUI/MainGUI.py:4922 appGUI/MainGUI.py:4923 +#: appGUI/GUIElements.py:568 appGUI/GUIElements.py:1006 +#: appGUI/GUIElements.py:1342 appGUI/GUIElements.py:1698 +#: appGUI/GUIElements.py:1874 appGUI/GUIElements.py:3547 +#: appGUI/GUIElements.py:3769 appGUI/MainGUI.py:4491 appGUI/MainGUI.py:4492 +#: appGUI/MainGUI.py:4696 appGUI/MainGUI.py:4788 appGUI/MainGUI.py:4789 +#: appGUI/MainGUI.py:4922 appGUI/MainGUI.py:4923 msgid "Del" msgstr "Del" -#: appGUI/GUIElements.py:575 appGUI/GUIElements.py:1521 -#: appGUI/GUIElements.py:1697 appGUI/GUIElements.py:3353 appGUI/MainGUI.py:445 -#: appGUI/MainGUI.py:565 appGUI/MainGUI.py:4422 -#: appObjects/ObjectCollection.py:1128 appObjects/ObjectCollection.py:1175 +#: appGUI/GUIElements.py:575 appGUI/GUIElements.py:1013 +#: appGUI/GUIElements.py:1349 appGUI/GUIElements.py:1705 +#: appGUI/GUIElements.py:1881 appGUI/GUIElements.py:3537 +#: appGUI/GUIElements.py:3776 appGUI/MainGUI.py:445 appGUI/MainGUI.py:565 +#: appGUI/MainGUI.py:4422 appObjects/ObjectCollection.py:1128 +#: appObjects/ObjectCollection.py:1175 msgid "Select All" -msgstr "Selectează toate" +msgstr "Selectează Tot" -#: appGUI/GUIElements.py:575 appGUI/GUIElements.py:1521 -#: appGUI/GUIElements.py:1697 appGUI/GUIElements.py:3353 appGUI/MainGUI.py:445 -#: appGUI/MainGUI.py:4422 +#: appGUI/GUIElements.py:575 appGUI/GUIElements.py:1013 +#: appGUI/GUIElements.py:1349 appGUI/GUIElements.py:1705 +#: appGUI/GUIElements.py:1881 appGUI/GUIElements.py:3537 +#: appGUI/GUIElements.py:3776 appGUI/MainGUI.py:445 appGUI/MainGUI.py:4422 msgid "Ctrl+A" msgstr "Ctrl+A" -#: appGUI/GUIElements.py:3285 +#: appGUI/GUIElements.py:1020 appGUI/GUIElements.py:1356 +msgid "Step Up" +msgstr "Adauga" + +#: appGUI/GUIElements.py:1025 appGUI/GUIElements.py:1361 +msgid "Step Down" +msgstr "Scade" + +#: appGUI/GUIElements.py:3469 msgid "" "The reference can be:\n" "- Absolute -> the reference point is point (0,0)\n" @@ -4157,19 +4178,19 @@ msgstr "" "- Absolut -> punctul de referință este punctul (0,0)\n" "- Relativ -> punctul de referință este poziția mouse-ului înainte de Salt" -#: appGUI/GUIElements.py:3290 +#: appGUI/GUIElements.py:3474 msgid "Abs" msgstr "Abs" -#: appGUI/GUIElements.py:3291 +#: appGUI/GUIElements.py:3475 msgid "Relative" msgstr "Relativ" -#: appGUI/GUIElements.py:3301 +#: appGUI/GUIElements.py:3485 msgid "Location" msgstr "Locaţie" -#: appGUI/GUIElements.py:3303 +#: appGUI/GUIElements.py:3487 msgid "" "The Location value is a tuple (x,y).\n" "If the reference is Absolute then the Jump will be at the position (x,y).\n" @@ -4181,85 +4202,85 @@ msgstr "" "Dacă referința este Relativă, Saltul se va face la distanța (x, y)\n" "din punctul de locație al mouse-ului curent." -#: appGUI/GUIElements.py:3358 +#: appGUI/GUIElements.py:3542 msgid "Save Log" msgstr "Salvează Log" -#: appGUI/GUIElements.py:3358 appGUI/MainGUI.py:161 appGUI/MainGUI.py:343 +#: appGUI/GUIElements.py:3542 appGUI/MainGUI.py:161 appGUI/MainGUI.py:343 #: appGUI/MainGUI.py:4432 appGUI/MainGUI.py:4691 appGUI/MainGUI.py:4791 #: appGUI/MainGUI.py:4927 msgid "Ctrl+S" msgstr "Ctrl+S" -#: appGUI/GUIElements.py:3363 +#: appGUI/GUIElements.py:3547 msgid "Clear All" msgstr "Șterge Tot" -#: appGUI/GUIElements.py:3406 appTools/ToolShell.py:296 +#: appGUI/GUIElements.py:3590 appTools/ToolShell.py:296 msgid "Type >help< to get started" msgstr "Tastați >help< pentru a începe" -#: appGUI/GUIElements.py:3773 appGUI/GUIElements.py:3790 +#: appGUI/GUIElements.py:4053 appGUI/GUIElements.py:4070 msgid "Jog the Y axis." msgstr "Miscați pe axa Y." -#: appGUI/GUIElements.py:3781 +#: appGUI/GUIElements.py:4061 msgid "Move to Origin." msgstr "Deplasează-te la Origine." -#: appGUI/GUIElements.py:3798 appGUI/GUIElements.py:3806 +#: appGUI/GUIElements.py:4078 appGUI/GUIElements.py:4086 msgid "Jog the X axis." msgstr "Miscați pe axa X." -#: appGUI/GUIElements.py:3816 appGUI/GUIElements.py:3826 +#: appGUI/GUIElements.py:4096 appGUI/GUIElements.py:4106 msgid "Jog the Z axis." msgstr "Miscați pe axa Z." -#: appGUI/GUIElements.py:3852 +#: appGUI/GUIElements.py:4132 msgid "Zero the CNC X axes at current position." msgstr "Puneți la zero axa X a CNC în poziția curentă." -#: appGUI/GUIElements.py:3860 +#: appGUI/GUIElements.py:4140 msgid "Zero the CNC Y axes at current position." msgstr "Puneți la zero axa Y a CNC în poziția curentă." -#: appGUI/GUIElements.py:3865 +#: appGUI/GUIElements.py:4145 msgid "Z" msgstr "Z" -#: appGUI/GUIElements.py:3868 +#: appGUI/GUIElements.py:4148 msgid "Zero the CNC Z axes at current position." msgstr "Puneți la zero axa Z a CNC în poziția curentă." -#: appGUI/GUIElements.py:3872 +#: appGUI/GUIElements.py:4152 msgid "Do Home" msgstr "Fă un ciclu de Homing" -#: appGUI/GUIElements.py:3874 +#: appGUI/GUIElements.py:4154 msgid "Perform a homing cycle on all axis." msgstr "Efectuați un ciclu Homing pe toate axele." -#: appGUI/GUIElements.py:3882 +#: appGUI/GUIElements.py:4162 msgid "Zero all CNC axes at current position." msgstr "Puneți la zero toate axele CNC în poziția curentă." -#: appGUI/GUIElements.py:4037 appGUI/GUIElements.py:4046 +#: appGUI/GUIElements.py:4317 appGUI/GUIElements.py:4326 msgid "Idle." msgstr "Inactiv." -#: appGUI/GUIElements.py:4079 +#: appGUI/GUIElements.py:4359 msgid "Application started ..." msgstr "Aplicaţia a pornit ..." -#: appGUI/GUIElements.py:4080 +#: appGUI/GUIElements.py:4360 msgid "Hello!" msgstr "Bună!" -#: appGUI/GUIElements.py:4127 appGUI/MainGUI.py:1030 appGUI/MainGUI.py:2186 +#: appGUI/GUIElements.py:4407 appGUI/MainGUI.py:1030 appGUI/MainGUI.py:2186 msgid "Run Script ..." msgstr "Rulează Script..." -#: appGUI/GUIElements.py:4129 appGUI/MainGUI.py:196 +#: appGUI/GUIElements.py:4409 appGUI/MainGUI.py:196 msgid "" "Will run the opened Tcl Script thus\n" "enabling the automation of certain\n" @@ -4269,28 +4290,28 @@ msgstr "" "o automatizare a anumitor functii\n" "din FlatCAM." -#: appGUI/GUIElements.py:4138 appGUI/MainGUI.py:118 +#: appGUI/GUIElements.py:4418 appGUI/MainGUI.py:118 #: appTools/ToolPcbWizard.py:390 appTools/ToolPcbWizard.py:397 msgid "Open" msgstr "Încarcă" -#: appGUI/GUIElements.py:4142 +#: appGUI/GUIElements.py:4422 msgid "Open Project ..." msgstr "Încarcă Project ..." -#: appGUI/GUIElements.py:4148 +#: appGUI/GUIElements.py:4428 msgid "Open &Gerber ...\tCtrl+G" msgstr "Încarcă &Gerber ...\tCtrl+G" -#: appGUI/GUIElements.py:4153 +#: appGUI/GUIElements.py:4433 msgid "Open &Excellon ...\tCtrl+E" msgstr "Încarcă &Excellon ...\tCtrl+E" -#: appGUI/GUIElements.py:4158 +#: appGUI/GUIElements.py:4438 msgid "Open G-&Code ..." msgstr "Încarcă G-&Code ..." -#: appGUI/GUIElements.py:4168 appGUI/MainGUI.py:327 +#: appGUI/GUIElements.py:4448 appGUI/MainGUI.py:327 msgid "Exit" msgstr "Iesiere" diff --git a/locale/ru/LC_MESSAGES/strings.po b/locale/ru/LC_MESSAGES/strings.po index 55e872c5..1dc74b73 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: 2020-10-27 00:07+0200\n" +"POT-Creation-Date: 2020-10-27 01:20+0200\n" "PO-Revision-Date: \n" "Last-Translator: Andrey Kultyapov \n" "Language-Team: \n" @@ -1994,7 +1994,7 @@ msgstr "" #: appEditors/AppExcEditor.py:3908 appEditors/AppExcEditor.py:4030 #: appEditors/AppExcEditor.py:4123 appEditors/AppGerberEditor.py:2820 -#: appGUI/GUIElements.py:3850 appGUI/MainGUI.py:475 appGUI/MainGUI.py:668 +#: appGUI/GUIElements.py:4130 appGUI/MainGUI.py:475 appGUI/MainGUI.py:668 #: appGUI/MainGUI.py:4416 appGUI/MainGUI.py:4682 #: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:92 #: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:187 @@ -2007,7 +2007,7 @@ msgstr "X" #: appEditors/AppExcEditor.py:3909 appEditors/AppExcEditor.py:4031 #: appEditors/AppExcEditor.py:4124 appEditors/AppGerberEditor.py:2821 -#: appGUI/GUIElements.py:3857 appGUI/MainGUI.py:478 appGUI/MainGUI.py:4417 +#: appGUI/GUIElements.py:4137 appGUI/MainGUI.py:478 appGUI/MainGUI.py:4417 #: appGUI/MainGUI.py:4683 #: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:93 #: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:188 @@ -2403,7 +2403,7 @@ msgid "Buffer" msgstr "Буфер" #: appEditors/AppGeoEditor.py:643 appEditors/AppGerberEditor.py:5353 -#: appGUI/GUIElements.py:3283 +#: appGUI/GUIElements.py:3467 #: appGUI/preferences/tools/ToolsFilmPrefGroupUI.py:169 #: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:44 #: appTools/ToolDblSided.py:683 appTools/ToolDblSided.py:857 @@ -3550,14 +3550,15 @@ msgid "Add a new aperture to the aperture list." msgstr "Добавляет новое отверстие в список отверстий." #: appEditors/AppGerberEditor.py:2595 appEditors/AppGerberEditor.py:2743 -#: appGUI/GUIElements.py:568 appGUI/GUIElements.py:1514 -#: appGUI/GUIElements.py:1690 appGUI/MainGUI.py:420 appGUI/MainGUI.py:731 -#: appGUI/MainGUI.py:790 appGUI/MainGUI.py:869 appGUI/MainGUI.py:988 -#: appGUI/MainGUI.py:1205 appGUI/MainGUI.py:1689 appGUI/MainGUI.py:2147 -#: appGUI/MainGUI.py:2360 appGUI/MainGUI.py:4922 appGUI/ObjectUI.py:1132 -#: appObjects/FlatCAMGeometry.py:561 appTools/ToolIsolation.py:70 -#: appTools/ToolIsolation.py:3150 appTools/ToolNCC.py:69 -#: appTools/ToolNCC.py:4024 appTools/ToolPaint.py:143 +#: appGUI/GUIElements.py:568 appGUI/GUIElements.py:1006 +#: appGUI/GUIElements.py:1342 appGUI/GUIElements.py:1698 +#: appGUI/GUIElements.py:1874 appGUI/GUIElements.py:3769 appGUI/MainGUI.py:420 +#: appGUI/MainGUI.py:731 appGUI/MainGUI.py:790 appGUI/MainGUI.py:869 +#: appGUI/MainGUI.py:988 appGUI/MainGUI.py:1205 appGUI/MainGUI.py:1689 +#: appGUI/MainGUI.py:2147 appGUI/MainGUI.py:2360 appGUI/MainGUI.py:4922 +#: appGUI/ObjectUI.py:1132 appObjects/FlatCAMGeometry.py:561 +#: appTools/ToolIsolation.py:70 appTools/ToolIsolation.py:3150 +#: appTools/ToolNCC.py:69 appTools/ToolNCC.py:4024 appTools/ToolPaint.py:143 #: appTools/ToolPaint.py:2926 appTools/ToolSolderPaste.py:163 #: appTools/ToolSolderPaste.py:1209 app_Main.py:6063 msgid "Delete" @@ -3902,7 +3903,7 @@ msgstr "Заменяет строку из поля «Найти» на стро msgid "String to replace the one in the Find box throughout the text." msgstr "Строка, заменяющая строку в поле поиска по всему тексту." -#: appEditors/AppTextEditor.py:106 appGUI/GUIElements.py:3878 +#: appEditors/AppTextEditor.py:106 appGUI/GUIElements.py:4158 #: appGUI/ObjectUI.py:1864 appGUI/preferences/cncjob/CNCJobOptPrefGroupUI.py:61 #: appGUI/preferences/tools/ToolsISOPrefGroupUI.py:295 #: appGUI/preferences/tools/ToolsPaintPrefGroupUI.py:278 @@ -4063,86 +4064,111 @@ msgstr "Вставить QR-код" msgid "Insert the code above at the cursor location." msgstr "" -#: appGUI/GUIElements.py:533 appGUI/GUIElements.py:1479 -#: appGUI/GUIElements.py:1655 +#: appGUI/GUIElements.py:533 appGUI/GUIElements.py:971 +#: appGUI/GUIElements.py:1307 appGUI/GUIElements.py:1663 +#: appGUI/GUIElements.py:1839 appGUI/GUIElements.py:3734 msgid "Undo" msgstr "" -#: appGUI/GUIElements.py:533 appGUI/GUIElements.py:1479 -#: appGUI/GUIElements.py:1655 +#: appGUI/GUIElements.py:533 appGUI/GUIElements.py:971 +#: appGUI/GUIElements.py:1307 appGUI/GUIElements.py:1663 +#: appGUI/GUIElements.py:1839 appGUI/GUIElements.py:3734 msgid "Ctrl+Z" msgstr "" -#: appGUI/GUIElements.py:540 appGUI/GUIElements.py:1486 -#: appGUI/GUIElements.py:1662 +#: appGUI/GUIElements.py:540 appGUI/GUIElements.py:978 +#: appGUI/GUIElements.py:1314 appGUI/GUIElements.py:1670 +#: appGUI/GUIElements.py:1846 appGUI/GUIElements.py:3741 msgid "Redo" msgstr "" -#: appGUI/GUIElements.py:540 appGUI/GUIElements.py:1486 -#: appGUI/GUIElements.py:1662 +#: appGUI/GUIElements.py:540 appGUI/GUIElements.py:978 +#: appGUI/GUIElements.py:1314 appGUI/GUIElements.py:1670 +#: appGUI/GUIElements.py:1846 appGUI/GUIElements.py:3741 msgid "Ctrl+Y" msgstr "" -#: appGUI/GUIElements.py:549 appGUI/GUIElements.py:1495 -#: appGUI/GUIElements.py:1671 appGUI/MainGUI.py:1630 appGUI/ObjectUI.py:1866 -#: appGUI/preferences/cncjob/CNCJobOptPrefGroupUI.py:63 +#: appGUI/GUIElements.py:549 appGUI/GUIElements.py:987 +#: appGUI/GUIElements.py:1323 appGUI/GUIElements.py:1679 +#: appGUI/GUIElements.py:1855 appGUI/GUIElements.py:3750 appGUI/MainGUI.py:1630 +#: appGUI/ObjectUI.py:1866 appGUI/preferences/cncjob/CNCJobOptPrefGroupUI.py:63 msgid "Cut" msgstr "Вырезы" -#: appGUI/GUIElements.py:549 appGUI/GUIElements.py:1495 -#: appGUI/GUIElements.py:1671 appGUI/MainGUI.py:4692 +#: appGUI/GUIElements.py:549 appGUI/GUIElements.py:987 +#: appGUI/GUIElements.py:1323 appGUI/GUIElements.py:1679 +#: appGUI/GUIElements.py:1855 appGUI/GUIElements.py:3750 appGUI/MainGUI.py:4692 msgid "Ctrl+X" msgstr "" -#: appGUI/GUIElements.py:556 appGUI/GUIElements.py:1502 -#: appGUI/GUIElements.py:1678 appGUI/GUIElements.py:3345 appGUI/MainGUI.py:414 -#: appGUI/MainGUI.py:728 appGUI/MainGUI.py:787 appGUI/MainGUI.py:867 -#: appGUI/MainGUI.py:986 appGUI/MainGUI.py:1203 appGUI/MainGUI.py:1687 -#: appGUI/MainGUI.py:2145 appGUI/MainGUI.py:2358 appGUI/MainGUI.py:4911 -#: appGUI/ObjectUI.py:1125 appObjects/FlatCAMGeometry.py:558 -#: appTools/ToolPanelize.py:325 appTools/ToolPanelize.py:351 -#: appTools/ToolPanelize.py:448 appTools/ToolPanelize.py:477 -#: appTools/ToolPanelize.py:538 +#: appGUI/GUIElements.py:556 appGUI/GUIElements.py:994 +#: appGUI/GUIElements.py:1330 appGUI/GUIElements.py:1686 +#: appGUI/GUIElements.py:1862 appGUI/GUIElements.py:3529 +#: appGUI/GUIElements.py:3757 appGUI/MainGUI.py:414 appGUI/MainGUI.py:728 +#: appGUI/MainGUI.py:787 appGUI/MainGUI.py:867 appGUI/MainGUI.py:986 +#: appGUI/MainGUI.py:1203 appGUI/MainGUI.py:1687 appGUI/MainGUI.py:2145 +#: appGUI/MainGUI.py:2358 appGUI/MainGUI.py:4911 appGUI/ObjectUI.py:1125 +#: appObjects/FlatCAMGeometry.py:558 appTools/ToolPanelize.py:325 +#: appTools/ToolPanelize.py:351 appTools/ToolPanelize.py:448 +#: appTools/ToolPanelize.py:477 appTools/ToolPanelize.py:538 msgid "Copy" msgstr "Копировать" -#: appGUI/GUIElements.py:556 appGUI/GUIElements.py:1502 -#: appGUI/GUIElements.py:1678 appGUI/GUIElements.py:3345 appGUI/MainGUI.py:414 -#: appGUI/MainGUI.py:4423 +#: appGUI/GUIElements.py:556 appGUI/GUIElements.py:994 +#: appGUI/GUIElements.py:1330 appGUI/GUIElements.py:1686 +#: appGUI/GUIElements.py:1862 appGUI/GUIElements.py:3529 +#: appGUI/GUIElements.py:3757 appGUI/MainGUI.py:414 appGUI/MainGUI.py:4423 msgid "Ctrl+C" msgstr "" -#: appGUI/GUIElements.py:563 appGUI/GUIElements.py:1509 -#: appGUI/GUIElements.py:1685 +#: appGUI/GUIElements.py:563 appGUI/GUIElements.py:1001 +#: appGUI/GUIElements.py:1337 appGUI/GUIElements.py:1693 +#: appGUI/GUIElements.py:1869 appGUI/GUIElements.py:3764 msgid "Paste" msgstr "" -#: appGUI/GUIElements.py:563 appGUI/GUIElements.py:1509 -#: appGUI/GUIElements.py:1685 +#: appGUI/GUIElements.py:563 appGUI/GUIElements.py:1001 +#: appGUI/GUIElements.py:1337 appGUI/GUIElements.py:1693 +#: appGUI/GUIElements.py:1869 appGUI/GUIElements.py:3764 msgid "Ctrl+V" msgstr "" -#: appGUI/GUIElements.py:568 appGUI/GUIElements.py:1514 -#: appGUI/GUIElements.py:1690 appGUI/GUIElements.py:3363 appGUI/MainGUI.py:4491 -#: appGUI/MainGUI.py:4492 appGUI/MainGUI.py:4696 appGUI/MainGUI.py:4788 -#: appGUI/MainGUI.py:4789 appGUI/MainGUI.py:4922 appGUI/MainGUI.py:4923 +#: appGUI/GUIElements.py:568 appGUI/GUIElements.py:1006 +#: appGUI/GUIElements.py:1342 appGUI/GUIElements.py:1698 +#: appGUI/GUIElements.py:1874 appGUI/GUIElements.py:3547 +#: appGUI/GUIElements.py:3769 appGUI/MainGUI.py:4491 appGUI/MainGUI.py:4492 +#: appGUI/MainGUI.py:4696 appGUI/MainGUI.py:4788 appGUI/MainGUI.py:4789 +#: appGUI/MainGUI.py:4922 appGUI/MainGUI.py:4923 msgid "Del" msgstr "" -#: appGUI/GUIElements.py:575 appGUI/GUIElements.py:1521 -#: appGUI/GUIElements.py:1697 appGUI/GUIElements.py:3353 appGUI/MainGUI.py:445 -#: appGUI/MainGUI.py:565 appGUI/MainGUI.py:4422 -#: appObjects/ObjectCollection.py:1128 appObjects/ObjectCollection.py:1175 +#: appGUI/GUIElements.py:575 appGUI/GUIElements.py:1013 +#: appGUI/GUIElements.py:1349 appGUI/GUIElements.py:1705 +#: appGUI/GUIElements.py:1881 appGUI/GUIElements.py:3537 +#: appGUI/GUIElements.py:3776 appGUI/MainGUI.py:445 appGUI/MainGUI.py:565 +#: appGUI/MainGUI.py:4422 appObjects/ObjectCollection.py:1128 +#: appObjects/ObjectCollection.py:1175 msgid "Select All" msgstr "Выбрать все" -#: appGUI/GUIElements.py:575 appGUI/GUIElements.py:1521 -#: appGUI/GUIElements.py:1697 appGUI/GUIElements.py:3353 appGUI/MainGUI.py:445 -#: appGUI/MainGUI.py:4422 +#: appGUI/GUIElements.py:575 appGUI/GUIElements.py:1013 +#: appGUI/GUIElements.py:1349 appGUI/GUIElements.py:1705 +#: appGUI/GUIElements.py:1881 appGUI/GUIElements.py:3537 +#: appGUI/GUIElements.py:3776 appGUI/MainGUI.py:445 appGUI/MainGUI.py:4422 msgid "Ctrl+A" msgstr "" -#: appGUI/GUIElements.py:3285 +#: appGUI/GUIElements.py:1020 appGUI/GUIElements.py:1356 +msgid "Step Up" +msgstr "" + +#: appGUI/GUIElements.py:1025 appGUI/GUIElements.py:1361 +#, fuzzy +#| msgid "Down" +msgid "Step Down" +msgstr "Внизу" + +#: appGUI/GUIElements.py:3469 msgid "" "The reference can be:\n" "- Absolute -> the reference point is point (0,0)\n" @@ -4152,19 +4178,19 @@ msgstr "" "- Абсолютный -> точка отсчета - это точка (0,0)\n" "- Относительный -> опорной точкой является положение мыши перед перемещением" -#: appGUI/GUIElements.py:3290 +#: appGUI/GUIElements.py:3474 msgid "Abs" msgstr "Абс" -#: appGUI/GUIElements.py:3291 +#: appGUI/GUIElements.py:3475 msgid "Relative" msgstr "Относительный" -#: appGUI/GUIElements.py:3301 +#: appGUI/GUIElements.py:3485 msgid "Location" msgstr "Местоположение" -#: appGUI/GUIElements.py:3303 +#: appGUI/GUIElements.py:3487 msgid "" "The Location value is a tuple (x,y).\n" "If the reference is Absolute then the Jump will be at the position (x,y).\n" @@ -4176,87 +4202,87 @@ msgstr "" "Если ссылка является относительной, то переход будет на расстоянии (x, y)\n" "от текущей точки расположения мыши." -#: appGUI/GUIElements.py:3358 +#: appGUI/GUIElements.py:3542 msgid "Save Log" msgstr "Сохранить журнал" -#: appGUI/GUIElements.py:3358 appGUI/MainGUI.py:161 appGUI/MainGUI.py:343 +#: appGUI/GUIElements.py:3542 appGUI/MainGUI.py:161 appGUI/MainGUI.py:343 #: appGUI/MainGUI.py:4432 appGUI/MainGUI.py:4691 appGUI/MainGUI.py:4791 #: appGUI/MainGUI.py:4927 msgid "Ctrl+S" msgstr "" -#: appGUI/GUIElements.py:3363 +#: appGUI/GUIElements.py:3547 #, fuzzy #| msgid "Clear plot" msgid "Clear All" msgstr "Отключить все участки" -#: appGUI/GUIElements.py:3406 appTools/ToolShell.py:296 +#: appGUI/GUIElements.py:3590 appTools/ToolShell.py:296 msgid "Type >help< to get started" msgstr "Введите >help< для начала работы" -#: appGUI/GUIElements.py:3773 appGUI/GUIElements.py:3790 +#: appGUI/GUIElements.py:4053 appGUI/GUIElements.py:4070 msgid "Jog the Y axis." msgstr "" -#: appGUI/GUIElements.py:3781 +#: appGUI/GUIElements.py:4061 msgid "Move to Origin." msgstr "" -#: appGUI/GUIElements.py:3798 appGUI/GUIElements.py:3806 +#: appGUI/GUIElements.py:4078 appGUI/GUIElements.py:4086 msgid "Jog the X axis." msgstr "" -#: appGUI/GUIElements.py:3816 appGUI/GUIElements.py:3826 +#: appGUI/GUIElements.py:4096 appGUI/GUIElements.py:4106 msgid "Jog the Z axis." msgstr "" -#: appGUI/GUIElements.py:3852 +#: appGUI/GUIElements.py:4132 msgid "Zero the CNC X axes at current position." msgstr "" -#: appGUI/GUIElements.py:3860 +#: appGUI/GUIElements.py:4140 msgid "Zero the CNC Y axes at current position." msgstr "" -#: appGUI/GUIElements.py:3865 +#: appGUI/GUIElements.py:4145 msgid "Z" msgstr "" -#: appGUI/GUIElements.py:3868 +#: appGUI/GUIElements.py:4148 msgid "Zero the CNC Z axes at current position." msgstr "" -#: appGUI/GUIElements.py:3872 +#: appGUI/GUIElements.py:4152 msgid "Do Home" msgstr "" -#: appGUI/GUIElements.py:3874 +#: appGUI/GUIElements.py:4154 msgid "Perform a homing cycle on all axis." msgstr "" -#: appGUI/GUIElements.py:3882 +#: appGUI/GUIElements.py:4162 msgid "Zero all CNC axes at current position." msgstr "" -#: appGUI/GUIElements.py:4037 appGUI/GUIElements.py:4046 +#: appGUI/GUIElements.py:4317 appGUI/GUIElements.py:4326 msgid "Idle." msgstr "Нет заданий." -#: appGUI/GUIElements.py:4079 +#: appGUI/GUIElements.py:4359 msgid "Application started ..." msgstr "Приложение запущено ..." -#: appGUI/GUIElements.py:4080 +#: appGUI/GUIElements.py:4360 msgid "Hello!" msgstr "Приветствую!" -#: appGUI/GUIElements.py:4127 appGUI/MainGUI.py:1030 appGUI/MainGUI.py:2186 +#: appGUI/GUIElements.py:4407 appGUI/MainGUI.py:1030 appGUI/MainGUI.py:2186 msgid "Run Script ..." msgstr "Выполнить сценарий ..." -#: appGUI/GUIElements.py:4129 appGUI/MainGUI.py:196 +#: appGUI/GUIElements.py:4409 appGUI/MainGUI.py:196 msgid "" "Will run the opened Tcl Script thus\n" "enabling the automation of certain\n" @@ -4266,28 +4292,28 @@ msgstr "" "включающий автоматизацию некоторых\n" "функций FlatCAM." -#: appGUI/GUIElements.py:4138 appGUI/MainGUI.py:118 +#: appGUI/GUIElements.py:4418 appGUI/MainGUI.py:118 #: appTools/ToolPcbWizard.py:390 appTools/ToolPcbWizard.py:397 msgid "Open" msgstr "Открыть" -#: appGUI/GUIElements.py:4142 +#: appGUI/GUIElements.py:4422 msgid "Open Project ..." msgstr "Открыть проект..." -#: appGUI/GUIElements.py:4148 +#: appGUI/GUIElements.py:4428 msgid "Open &Gerber ...\tCtrl+G" msgstr "Открыть &Gerber...\tCtrl+G" -#: appGUI/GUIElements.py:4153 +#: appGUI/GUIElements.py:4433 msgid "Open &Excellon ...\tCtrl+E" msgstr "Открыть &Excellon ...\tCtrl+E" -#: appGUI/GUIElements.py:4158 +#: appGUI/GUIElements.py:4438 msgid "Open G-&Code ..." msgstr "Открыть G-&Code ..." -#: appGUI/GUIElements.py:4168 appGUI/MainGUI.py:327 +#: appGUI/GUIElements.py:4448 appGUI/MainGUI.py:327 msgid "Exit" msgstr "Выход" diff --git a/locale/tr/LC_MESSAGES/strings.mo b/locale/tr/LC_MESSAGES/strings.mo index af2593a1..61a68278 100644 Binary files a/locale/tr/LC_MESSAGES/strings.mo and b/locale/tr/LC_MESSAGES/strings.mo differ diff --git a/locale/tr/LC_MESSAGES/strings.po b/locale/tr/LC_MESSAGES/strings.po index 9c2cae88..8ef6310a 100644 --- a/locale/tr/LC_MESSAGES/strings.po +++ b/locale/tr/LC_MESSAGES/strings.po @@ -5,8 +5,8 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"POT-Creation-Date: 2020-10-27 00:07+0200\n" -"PO-Revision-Date: 2020-10-27 00:07+0200\n" +"POT-Creation-Date: 2020-10-27 01:20+0200\n" +"PO-Revision-Date: 2020-10-27 01:20+0200\n" "Last-Translator: \n" "Language-Team: \n" "Language: tr_TR\n" @@ -1952,7 +1952,7 @@ msgstr "" #: appEditors/AppExcEditor.py:3908 appEditors/AppExcEditor.py:4030 #: appEditors/AppExcEditor.py:4123 appEditors/AppGerberEditor.py:2820 -#: appGUI/GUIElements.py:3850 appGUI/MainGUI.py:475 appGUI/MainGUI.py:668 +#: appGUI/GUIElements.py:4130 appGUI/MainGUI.py:475 appGUI/MainGUI.py:668 #: appGUI/MainGUI.py:4416 appGUI/MainGUI.py:4682 #: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:92 #: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:187 @@ -1965,7 +1965,7 @@ msgstr "X" #: appEditors/AppExcEditor.py:3909 appEditors/AppExcEditor.py:4031 #: appEditors/AppExcEditor.py:4124 appEditors/AppGerberEditor.py:2821 -#: appGUI/GUIElements.py:3857 appGUI/MainGUI.py:478 appGUI/MainGUI.py:4417 +#: appGUI/GUIElements.py:4137 appGUI/MainGUI.py:478 appGUI/MainGUI.py:4417 #: appGUI/MainGUI.py:4683 #: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:93 #: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:188 @@ -2361,7 +2361,7 @@ msgid "Buffer" msgstr "Tampon" #: appEditors/AppGeoEditor.py:643 appEditors/AppGerberEditor.py:5353 -#: appGUI/GUIElements.py:3283 +#: appGUI/GUIElements.py:3467 #: appGUI/preferences/tools/ToolsFilmPrefGroupUI.py:169 #: appGUI/preferences/tools/ToolsTransformPrefGroupUI.py:44 #: appTools/ToolDblSided.py:683 appTools/ToolDblSided.py:857 @@ -3516,14 +3516,15 @@ msgid "Add a new aperture to the aperture list." msgstr "Şekil Tablosuna yeni bir şekil ekler." #: appEditors/AppGerberEditor.py:2595 appEditors/AppGerberEditor.py:2743 -#: appGUI/GUIElements.py:568 appGUI/GUIElements.py:1514 -#: appGUI/GUIElements.py:1690 appGUI/MainGUI.py:420 appGUI/MainGUI.py:731 -#: appGUI/MainGUI.py:790 appGUI/MainGUI.py:869 appGUI/MainGUI.py:988 -#: appGUI/MainGUI.py:1205 appGUI/MainGUI.py:1689 appGUI/MainGUI.py:2147 -#: appGUI/MainGUI.py:2360 appGUI/MainGUI.py:4922 appGUI/ObjectUI.py:1132 -#: appObjects/FlatCAMGeometry.py:561 appTools/ToolIsolation.py:70 -#: appTools/ToolIsolation.py:3150 appTools/ToolNCC.py:69 -#: appTools/ToolNCC.py:4024 appTools/ToolPaint.py:143 +#: appGUI/GUIElements.py:568 appGUI/GUIElements.py:1006 +#: appGUI/GUIElements.py:1342 appGUI/GUIElements.py:1698 +#: appGUI/GUIElements.py:1874 appGUI/GUIElements.py:3769 appGUI/MainGUI.py:420 +#: appGUI/MainGUI.py:731 appGUI/MainGUI.py:790 appGUI/MainGUI.py:869 +#: appGUI/MainGUI.py:988 appGUI/MainGUI.py:1205 appGUI/MainGUI.py:1689 +#: appGUI/MainGUI.py:2147 appGUI/MainGUI.py:2360 appGUI/MainGUI.py:4922 +#: appGUI/ObjectUI.py:1132 appObjects/FlatCAMGeometry.py:561 +#: appTools/ToolIsolation.py:70 appTools/ToolIsolation.py:3150 +#: appTools/ToolNCC.py:69 appTools/ToolNCC.py:4024 appTools/ToolPaint.py:143 #: appTools/ToolPaint.py:2926 appTools/ToolSolderPaste.py:163 #: appTools/ToolSolderPaste.py:1209 app_Main.py:6063 msgid "Delete" @@ -3859,7 +3860,7 @@ msgstr "Bul kutusundaki dizeyle Değiştir kutusundaki dizeleri değiştirir." msgid "String to replace the one in the Find box throughout the text." msgstr "Metin boyunca Bul kutusundaki ile değiştirilecek dize." -#: appEditors/AppTextEditor.py:106 appGUI/GUIElements.py:3878 +#: appEditors/AppTextEditor.py:106 appGUI/GUIElements.py:4158 #: appGUI/ObjectUI.py:1864 appGUI/preferences/cncjob/CNCJobOptPrefGroupUI.py:61 #: appGUI/preferences/tools/ToolsISOPrefGroupUI.py:295 #: appGUI/preferences/tools/ToolsPaintPrefGroupUI.py:278 @@ -4009,89 +4010,113 @@ msgstr "Kodu Ekle" msgid "Insert the code above at the cursor location." msgstr "Yukarıdaki Kodu imleç konumuna ekleyin." -#: appGUI/GUIElements.py:533 appGUI/GUIElements.py:1479 -#: appGUI/GUIElements.py:1655 +#: appGUI/GUIElements.py:533 appGUI/GUIElements.py:971 +#: appGUI/GUIElements.py:1307 appGUI/GUIElements.py:1663 +#: appGUI/GUIElements.py:1839 appGUI/GUIElements.py:3734 msgid "Undo" msgstr "" -#: appGUI/GUIElements.py:533 appGUI/GUIElements.py:1479 -#: appGUI/GUIElements.py:1655 -#| msgid "Ctrl+C" +#: appGUI/GUIElements.py:533 appGUI/GUIElements.py:971 +#: appGUI/GUIElements.py:1307 appGUI/GUIElements.py:1663 +#: appGUI/GUIElements.py:1839 appGUI/GUIElements.py:3734 msgid "Ctrl+Z" msgstr "Ctrl+Z" -#: appGUI/GUIElements.py:540 appGUI/GUIElements.py:1486 -#: appGUI/GUIElements.py:1662 +#: appGUI/GUIElements.py:540 appGUI/GUIElements.py:978 +#: appGUI/GUIElements.py:1314 appGUI/GUIElements.py:1670 +#: appGUI/GUIElements.py:1846 appGUI/GUIElements.py:3741 msgid "Redo" msgstr "" -#: appGUI/GUIElements.py:540 appGUI/GUIElements.py:1486 -#: appGUI/GUIElements.py:1662 -#| msgid "Ctrl+C" +#: appGUI/GUIElements.py:540 appGUI/GUIElements.py:978 +#: appGUI/GUIElements.py:1314 appGUI/GUIElements.py:1670 +#: appGUI/GUIElements.py:1846 appGUI/GUIElements.py:3741 msgid "Ctrl+Y" msgstr "Ctrl+Y" -#: appGUI/GUIElements.py:549 appGUI/GUIElements.py:1495 -#: appGUI/GUIElements.py:1671 appGUI/MainGUI.py:1630 appGUI/ObjectUI.py:1866 -#: appGUI/preferences/cncjob/CNCJobOptPrefGroupUI.py:63 +#: appGUI/GUIElements.py:549 appGUI/GUIElements.py:987 +#: appGUI/GUIElements.py:1323 appGUI/GUIElements.py:1679 +#: appGUI/GUIElements.py:1855 appGUI/GUIElements.py:3750 appGUI/MainGUI.py:1630 +#: appGUI/ObjectUI.py:1866 appGUI/preferences/cncjob/CNCJobOptPrefGroupUI.py:63 msgid "Cut" msgstr "Kesim" -#: appGUI/GUIElements.py:549 appGUI/GUIElements.py:1495 -#: appGUI/GUIElements.py:1671 appGUI/MainGUI.py:4692 +#: appGUI/GUIElements.py:549 appGUI/GUIElements.py:987 +#: appGUI/GUIElements.py:1323 appGUI/GUIElements.py:1679 +#: appGUI/GUIElements.py:1855 appGUI/GUIElements.py:3750 appGUI/MainGUI.py:4692 msgid "Ctrl+X" msgstr "" -#: appGUI/GUIElements.py:556 appGUI/GUIElements.py:1502 -#: appGUI/GUIElements.py:1678 appGUI/GUIElements.py:3345 appGUI/MainGUI.py:414 -#: appGUI/MainGUI.py:728 appGUI/MainGUI.py:787 appGUI/MainGUI.py:867 -#: appGUI/MainGUI.py:986 appGUI/MainGUI.py:1203 appGUI/MainGUI.py:1687 -#: appGUI/MainGUI.py:2145 appGUI/MainGUI.py:2358 appGUI/MainGUI.py:4911 -#: appGUI/ObjectUI.py:1125 appObjects/FlatCAMGeometry.py:558 -#: appTools/ToolPanelize.py:325 appTools/ToolPanelize.py:351 -#: appTools/ToolPanelize.py:448 appTools/ToolPanelize.py:477 -#: appTools/ToolPanelize.py:538 +#: appGUI/GUIElements.py:556 appGUI/GUIElements.py:994 +#: appGUI/GUIElements.py:1330 appGUI/GUIElements.py:1686 +#: appGUI/GUIElements.py:1862 appGUI/GUIElements.py:3529 +#: appGUI/GUIElements.py:3757 appGUI/MainGUI.py:414 appGUI/MainGUI.py:728 +#: appGUI/MainGUI.py:787 appGUI/MainGUI.py:867 appGUI/MainGUI.py:986 +#: appGUI/MainGUI.py:1203 appGUI/MainGUI.py:1687 appGUI/MainGUI.py:2145 +#: appGUI/MainGUI.py:2358 appGUI/MainGUI.py:4911 appGUI/ObjectUI.py:1125 +#: appObjects/FlatCAMGeometry.py:558 appTools/ToolPanelize.py:325 +#: appTools/ToolPanelize.py:351 appTools/ToolPanelize.py:448 +#: appTools/ToolPanelize.py:477 appTools/ToolPanelize.py:538 msgid "Copy" msgstr "Kopyala" -#: appGUI/GUIElements.py:556 appGUI/GUIElements.py:1502 -#: appGUI/GUIElements.py:1678 appGUI/GUIElements.py:3345 appGUI/MainGUI.py:414 -#: appGUI/MainGUI.py:4423 +#: appGUI/GUIElements.py:556 appGUI/GUIElements.py:994 +#: appGUI/GUIElements.py:1330 appGUI/GUIElements.py:1686 +#: appGUI/GUIElements.py:1862 appGUI/GUIElements.py:3529 +#: appGUI/GUIElements.py:3757 appGUI/MainGUI.py:414 appGUI/MainGUI.py:4423 msgid "Ctrl+C" msgstr "Ctrl+C" -#: appGUI/GUIElements.py:563 appGUI/GUIElements.py:1509 -#: appGUI/GUIElements.py:1685 +#: appGUI/GUIElements.py:563 appGUI/GUIElements.py:1001 +#: appGUI/GUIElements.py:1337 appGUI/GUIElements.py:1693 +#: appGUI/GUIElements.py:1869 appGUI/GUIElements.py:3764 msgid "Paste" msgstr "" -#: appGUI/GUIElements.py:563 appGUI/GUIElements.py:1509 -#: appGUI/GUIElements.py:1685 -#| msgid "Ctrl+C" +#: appGUI/GUIElements.py:563 appGUI/GUIElements.py:1001 +#: appGUI/GUIElements.py:1337 appGUI/GUIElements.py:1693 +#: appGUI/GUIElements.py:1869 appGUI/GUIElements.py:3764 msgid "Ctrl+V" msgstr "Ctrl+V" -#: appGUI/GUIElements.py:568 appGUI/GUIElements.py:1514 -#: appGUI/GUIElements.py:1690 appGUI/GUIElements.py:3363 appGUI/MainGUI.py:4491 -#: appGUI/MainGUI.py:4492 appGUI/MainGUI.py:4696 appGUI/MainGUI.py:4788 -#: appGUI/MainGUI.py:4789 appGUI/MainGUI.py:4922 appGUI/MainGUI.py:4923 +#: appGUI/GUIElements.py:568 appGUI/GUIElements.py:1006 +#: appGUI/GUIElements.py:1342 appGUI/GUIElements.py:1698 +#: appGUI/GUIElements.py:1874 appGUI/GUIElements.py:3547 +#: appGUI/GUIElements.py:3769 appGUI/MainGUI.py:4491 appGUI/MainGUI.py:4492 +#: appGUI/MainGUI.py:4696 appGUI/MainGUI.py:4788 appGUI/MainGUI.py:4789 +#: appGUI/MainGUI.py:4922 appGUI/MainGUI.py:4923 msgid "Del" msgstr "" -#: appGUI/GUIElements.py:575 appGUI/GUIElements.py:1521 -#: appGUI/GUIElements.py:1697 appGUI/GUIElements.py:3353 appGUI/MainGUI.py:445 -#: appGUI/MainGUI.py:565 appGUI/MainGUI.py:4422 -#: appObjects/ObjectCollection.py:1128 appObjects/ObjectCollection.py:1175 +#: appGUI/GUIElements.py:575 appGUI/GUIElements.py:1013 +#: appGUI/GUIElements.py:1349 appGUI/GUIElements.py:1705 +#: appGUI/GUIElements.py:1881 appGUI/GUIElements.py:3537 +#: appGUI/GUIElements.py:3776 appGUI/MainGUI.py:445 appGUI/MainGUI.py:565 +#: appGUI/MainGUI.py:4422 appObjects/ObjectCollection.py:1128 +#: appObjects/ObjectCollection.py:1175 msgid "Select All" msgstr "Tümünü Seç" -#: appGUI/GUIElements.py:575 appGUI/GUIElements.py:1521 -#: appGUI/GUIElements.py:1697 appGUI/GUIElements.py:3353 appGUI/MainGUI.py:445 -#: appGUI/MainGUI.py:4422 +#: appGUI/GUIElements.py:575 appGUI/GUIElements.py:1013 +#: appGUI/GUIElements.py:1349 appGUI/GUIElements.py:1705 +#: appGUI/GUIElements.py:1881 appGUI/GUIElements.py:3537 +#: appGUI/GUIElements.py:3776 appGUI/MainGUI.py:445 appGUI/MainGUI.py:4422 msgid "Ctrl+A" msgstr "Ctrl+A" -#: appGUI/GUIElements.py:3285 +#: appGUI/GUIElements.py:1020 appGUI/GUIElements.py:1356 +#, fuzzy +#| msgid "Step" +msgid "Step Up" +msgstr "Adım" + +#: appGUI/GUIElements.py:1025 appGUI/GUIElements.py:1361 +#, fuzzy +#| msgid "Step" +msgid "Step Down" +msgstr "Adım" + +#: appGUI/GUIElements.py:3469 msgid "" "The reference can be:\n" "- Absolute -> the reference point is point (0,0)\n" @@ -4101,19 +4126,19 @@ msgstr "" "- Kesin -> Referans noktası bir noktadır (0,0)\n" "- Değişen -> Referans noktası farenin atlamadan önceki konumudur" -#: appGUI/GUIElements.py:3290 +#: appGUI/GUIElements.py:3474 msgid "Abs" msgstr "Kesin" -#: appGUI/GUIElements.py:3291 +#: appGUI/GUIElements.py:3475 msgid "Relative" msgstr "Değişen" -#: appGUI/GUIElements.py:3301 +#: appGUI/GUIElements.py:3485 msgid "Location" msgstr "Konum" -#: appGUI/GUIElements.py:3303 +#: appGUI/GUIElements.py:3487 msgid "" "The Location value is a tuple (x,y).\n" "If the reference is Absolute then the Jump will be at the position (x,y).\n" @@ -4125,87 +4150,87 @@ msgstr "" "Referans Değişen ise, geçiş farenin geçerli \n" "konumundan (x, y) mesafede olacaktır." -#: appGUI/GUIElements.py:3358 +#: appGUI/GUIElements.py:3542 msgid "Save Log" msgstr "Kayıt Dosyası" -#: appGUI/GUIElements.py:3358 appGUI/MainGUI.py:161 appGUI/MainGUI.py:343 +#: appGUI/GUIElements.py:3542 appGUI/MainGUI.py:161 appGUI/MainGUI.py:343 #: appGUI/MainGUI.py:4432 appGUI/MainGUI.py:4691 appGUI/MainGUI.py:4791 #: appGUI/MainGUI.py:4927 msgid "Ctrl+S" msgstr "Ctrl+S" -#: appGUI/GUIElements.py:3363 +#: appGUI/GUIElements.py:3547 #, fuzzy #| msgid "Clear plot" msgid "Clear All" msgstr "Nesneyi Temizle" -#: appGUI/GUIElements.py:3406 appTools/ToolShell.py:296 +#: appGUI/GUIElements.py:3590 appTools/ToolShell.py:296 msgid "Type >help< to get started" msgstr "Başlamak için >yardım the reference point is point (0,0)\n" "- Relative -> the reference point is the mouse position before Jump" msgstr "" -#: appGUI/GUIElements.py:3290 +#: appGUI/GUIElements.py:3474 msgid "Abs" msgstr "" -#: appGUI/GUIElements.py:3291 +#: appGUI/GUIElements.py:3475 msgid "Relative" msgstr "" -#: appGUI/GUIElements.py:3301 +#: appGUI/GUIElements.py:3485 msgid "Location" msgstr "" -#: appGUI/GUIElements.py:3303 +#: appGUI/GUIElements.py:3487 msgid "" "The Location value is a tuple (x,y).\n" "If the reference is Absolute then the Jump will be at the position (x,y).\n" @@ -3643,113 +3665,113 @@ msgid "" "from the current mouse location point." msgstr "" -#: appGUI/GUIElements.py:3358 +#: appGUI/GUIElements.py:3542 msgid "Save Log" msgstr "" -#: appGUI/GUIElements.py:3358 appGUI/MainGUI.py:161 appGUI/MainGUI.py:343 +#: appGUI/GUIElements.py:3542 appGUI/MainGUI.py:161 appGUI/MainGUI.py:343 #: appGUI/MainGUI.py:4432 appGUI/MainGUI.py:4691 appGUI/MainGUI.py:4791 #: appGUI/MainGUI.py:4927 msgid "Ctrl+S" msgstr "" -#: appGUI/GUIElements.py:3363 +#: appGUI/GUIElements.py:3547 msgid "Clear All" msgstr "" -#: appGUI/GUIElements.py:3406 appTools/ToolShell.py:296 +#: appGUI/GUIElements.py:3590 appTools/ToolShell.py:296 msgid "Type >help< to get started" msgstr "" -#: appGUI/GUIElements.py:3773 appGUI/GUIElements.py:3790 +#: appGUI/GUIElements.py:4053 appGUI/GUIElements.py:4070 msgid "Jog the Y axis." msgstr "" -#: appGUI/GUIElements.py:3781 +#: appGUI/GUIElements.py:4061 msgid "Move to Origin." msgstr "" -#: appGUI/GUIElements.py:3798 appGUI/GUIElements.py:3806 +#: appGUI/GUIElements.py:4078 appGUI/GUIElements.py:4086 msgid "Jog the X axis." msgstr "" -#: appGUI/GUIElements.py:3816 appGUI/GUIElements.py:3826 +#: appGUI/GUIElements.py:4096 appGUI/GUIElements.py:4106 msgid "Jog the Z axis." msgstr "" -#: appGUI/GUIElements.py:3852 +#: appGUI/GUIElements.py:4132 msgid "Zero the CNC X axes at current position." msgstr "" -#: appGUI/GUIElements.py:3860 +#: appGUI/GUIElements.py:4140 msgid "Zero the CNC Y axes at current position." msgstr "" -#: appGUI/GUIElements.py:3865 +#: appGUI/GUIElements.py:4145 msgid "Z" msgstr "" -#: appGUI/GUIElements.py:3868 +#: appGUI/GUIElements.py:4148 msgid "Zero the CNC Z axes at current position." msgstr "" -#: appGUI/GUIElements.py:3872 +#: appGUI/GUIElements.py:4152 msgid "Do Home" msgstr "" -#: appGUI/GUIElements.py:3874 +#: appGUI/GUIElements.py:4154 msgid "Perform a homing cycle on all axis." msgstr "" -#: appGUI/GUIElements.py:3882 +#: appGUI/GUIElements.py:4162 msgid "Zero all CNC axes at current position." msgstr "" -#: appGUI/GUIElements.py:4037 appGUI/GUIElements.py:4046 +#: appGUI/GUIElements.py:4317 appGUI/GUIElements.py:4326 msgid "Idle." msgstr "" -#: appGUI/GUIElements.py:4079 +#: appGUI/GUIElements.py:4359 msgid "Application started ..." msgstr "" -#: appGUI/GUIElements.py:4080 +#: appGUI/GUIElements.py:4360 msgid "Hello!" msgstr "" -#: appGUI/GUIElements.py:4127 appGUI/MainGUI.py:1030 appGUI/MainGUI.py:2186 +#: appGUI/GUIElements.py:4407 appGUI/MainGUI.py:1030 appGUI/MainGUI.py:2186 msgid "Run Script ..." msgstr "" -#: appGUI/GUIElements.py:4129 appGUI/MainGUI.py:196 +#: appGUI/GUIElements.py:4409 appGUI/MainGUI.py:196 msgid "" "Will run the opened Tcl Script thus\n" "enabling the automation of certain\n" "functions of FlatCAM." msgstr "" -#: appGUI/GUIElements.py:4138 appGUI/MainGUI.py:118 appTools/ToolPcbWizard.py:390 +#: appGUI/GUIElements.py:4418 appGUI/MainGUI.py:118 appTools/ToolPcbWizard.py:390 #: appTools/ToolPcbWizard.py:397 msgid "Open" msgstr "" -#: appGUI/GUIElements.py:4142 +#: appGUI/GUIElements.py:4422 msgid "Open Project ..." msgstr "" -#: appGUI/GUIElements.py:4148 +#: appGUI/GUIElements.py:4428 msgid "Open &Gerber ...\tCtrl+G" msgstr "" -#: appGUI/GUIElements.py:4153 +#: appGUI/GUIElements.py:4433 msgid "Open &Excellon ...\tCtrl+E" msgstr "" -#: appGUI/GUIElements.py:4158 +#: appGUI/GUIElements.py:4438 msgid "Open G-&Code ..." msgstr "" -#: appGUI/GUIElements.py:4168 appGUI/MainGUI.py:327 +#: appGUI/GUIElements.py:4448 appGUI/MainGUI.py:327 msgid "Exit" msgstr ""