- overloaded the context menu in the Tcl Shell and added key shortcuts; the menu entries are now translatable

This commit is contained in:
Marius Stanciu 2020-10-26 22:39:47 +02:00 committed by Marius
parent 296bed30f0
commit 967ab8a795
20 changed files with 706 additions and 641 deletions

View File

@ -21,6 +21,7 @@ CHANGELOG for FlatCAM beta
- fixed a small issue with using the shortcut key for toggling the display of Properties tab
- fixed issue with not updating the model view on the model used in the Project tab when using the shortcut keys 1, 2, 3 which made the color of the tree element not reflect the change in status
- minor string fix; removed the 'Close' menu entry on the context menu for the TCL Shell
- overloaded the context menu in the Tcl Shell and added key shortcuts; the menu entries are now translatable
25.10.2020

View File

@ -3069,15 +3069,31 @@ class _BrowserTextEdit(QTextEdit):
self.app = app
def contextMenuEvent(self, event):
self.menu = self.createStandardContextMenu(event.pos())
# self.menu = self.createStandardContextMenu(event.pos())
self.menu = QtWidgets.QMenu()
tcursor = self.textCursor()
txt = tcursor.selectedText()
copy_action = QAction('%s\t%s' % (_("Copy"), _('Ctrl+C')), self)
self.menu.addAction(copy_action)
copy_action.triggered.connect(self.copy_text)
if txt == '':
copy_action.setDisabled(True)
self.menu.addSeparator()
sel_all_action = QAction('%s\t%s' % (_("Select All"), _('Ctrl+A')), self)
self.menu.addAction(sel_all_action)
sel_all_action.triggered.connect(self.selectAll)
if self.app:
save_action = QAction(_("Save Log"), self)
save_action = QAction('%s\t%s' % (_("Save Log"), _('Ctrl+S')), self)
# save_action.setShortcut(QKeySequence(Qt.Key_S))
self.menu.addAction(save_action)
save_action.triggered.connect(lambda: self.save_log(app=self.app))
clear_action = QAction(_("Clear All"), self)
clear_action.setShortcut(QKeySequence(Qt.Key_Delete)) # it's not working, the shortcut
clear_action = QAction('%s\t%s' % (_("Clear All"), _('Del')), self)
# clear_action.setShortcut(QKeySequence(Qt.Key_Delete))
self.menu.addAction(clear_action)
clear_action.triggered.connect(self.clear)
@ -3088,6 +3104,34 @@ class _BrowserTextEdit(QTextEdit):
self.menu.exec_(event.globalPos())
def keyPressEvent(self, event) -> None:
modifiers = QtWidgets.QApplication.keyboardModifiers()
key = event.key()
if modifiers == QtCore.Qt.ControlModifier:
# Select All
if key == QtCore.Qt.Key_A:
self.selectAll()
# Copy Text
elif key == QtCore.Qt.Key_C:
self.copy_text()
# Copy Text
elif key == QtCore.Qt.Key_S:
if self.app:
self.save_log(app=self.app)
elif modifiers == QtCore.Qt.NoModifier:
if key == QtCore.Qt.Key_Delete:
self.clear()
def copy_text(self):
tcursor = self.textCursor()
clipboard = QtWidgets.QApplication.clipboard()
txt = tcursor.selectedText()
clipboard.clear()
clipboard.setText(txt)
def clear(self):
QTextEdit.clear(self)

Binary file not shown.

View File

@ -1,8 +1,8 @@
msgid ""
msgstr ""
"Project-Id-Version: \n"
"POT-Creation-Date: 2020-10-26 21:38+0200\n"
"PO-Revision-Date: 2020-10-26 21:38+0200\n"
"POT-Creation-Date: 2020-10-26 22:37+0200\n"
"PO-Revision-Date: 2020-10-26 22:37+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:3538 appGUI/MainGUI.py:475 appGUI/MainGUI.py:668
#: appGUI/GUIElements.py:3582 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:3545 appGUI/MainGUI.py:478 appGUI/MainGUI.py:4417
#: appGUI/GUIElements.py:3589 appGUI/MainGUI.py:478 appGUI/MainGUI.py:4417
#: appGUI/MainGUI.py:4683
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:93
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:188
@ -3909,7 +3909,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:3566
#: appEditors/AppTextEditor.py:106 appGUI/GUIElements.py:3610
#: appGUI/ObjectUI.py:1864 appGUI/preferences/cncjob/CNCJobOptPrefGroupUI.py:61
#: appGUI/preferences/tools/ToolsISOPrefGroupUI.py:295
#: appGUI/preferences/tools/ToolsPaintPrefGroupUI.py:278
@ -4101,81 +4101,117 @@ msgstr ""
"(x, y)\n"
"vom aktuellen Mausstandort aus."
#: appGUI/GUIElements.py:3075
#: appGUI/GUIElements.py:3077 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:3077 appGUI/MainGUI.py:414 appGUI/MainGUI.py:4423
msgid "Ctrl+C"
msgstr "Kopieren"
#: appGUI/GUIElements.py:3085 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:3085 appGUI/MainGUI.py:445 appGUI/MainGUI.py:4422
msgid "Ctrl+A"
msgstr "Strg+A"
#: appGUI/GUIElements.py:3090
msgid "Save Log"
msgstr "Protokoll speichern"
#: appGUI/GUIElements.py:3079
#: appGUI/GUIElements.py:3090 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:3095
#, fuzzy
#| msgid "Clear Plot"
msgid "Clear All"
msgstr "Plot klar löschen"
#: appGUI/GUIElements.py:3094 appTools/ToolShell.py:296
#: appGUI/GUIElements.py:3095 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:3138 appTools/ToolShell.py:296
msgid "Type >help< to get started"
msgstr "Geben Sie> help <ein, um zu beginnen"
#: appGUI/GUIElements.py:3461 appGUI/GUIElements.py:3478
#: appGUI/GUIElements.py:3505 appGUI/GUIElements.py:3522
msgid "Jog the Y axis."
msgstr ""
#: appGUI/GUIElements.py:3469
#: appGUI/GUIElements.py:3513
msgid "Move to Origin."
msgstr ""
#: appGUI/GUIElements.py:3486 appGUI/GUIElements.py:3494
#: appGUI/GUIElements.py:3530 appGUI/GUIElements.py:3538
msgid "Jog the X axis."
msgstr ""
#: appGUI/GUIElements.py:3504 appGUI/GUIElements.py:3514
#: appGUI/GUIElements.py:3548 appGUI/GUIElements.py:3558
msgid "Jog the Z axis."
msgstr ""
#: appGUI/GUIElements.py:3540
#: appGUI/GUIElements.py:3584
msgid "Zero the CNC X axes at current position."
msgstr ""
#: appGUI/GUIElements.py:3548
#: appGUI/GUIElements.py:3592
msgid "Zero the CNC Y axes at current position."
msgstr ""
#: appGUI/GUIElements.py:3553
#: appGUI/GUIElements.py:3597
msgid "Z"
msgstr "Z"
#: appGUI/GUIElements.py:3556
#: appGUI/GUIElements.py:3600
msgid "Zero the CNC Z axes at current position."
msgstr ""
#: appGUI/GUIElements.py:3560
#: appGUI/GUIElements.py:3604
msgid "Do Home"
msgstr ""
#: appGUI/GUIElements.py:3562
#: appGUI/GUIElements.py:3606
msgid "Perform a homing cycle on all axis."
msgstr ""
#: appGUI/GUIElements.py:3570
#: appGUI/GUIElements.py:3614
msgid "Zero all CNC axes at current position."
msgstr ""
#: appGUI/GUIElements.py:3725 appGUI/GUIElements.py:3734
#: appGUI/GUIElements.py:3769 appGUI/GUIElements.py:3778
msgid "Idle."
msgstr "Untätig."
#: appGUI/GUIElements.py:3767
#: appGUI/GUIElements.py:3811
msgid "Application started ..."
msgstr "Bewerbung gestartet ..."
#: appGUI/GUIElements.py:3768
#: appGUI/GUIElements.py:3812
msgid "Hello!"
msgstr "Hello!"
#: appGUI/GUIElements.py:3815 appGUI/MainGUI.py:1030 appGUI/MainGUI.py:2186
#: appGUI/GUIElements.py:3859 appGUI/MainGUI.py:1030 appGUI/MainGUI.py:2186
msgid "Run Script ..."
msgstr "Skript ausführen ..."
#: appGUI/GUIElements.py:3817 appGUI/MainGUI.py:196
#: appGUI/GUIElements.py:3861 appGUI/MainGUI.py:196
msgid ""
"Will run the opened Tcl Script thus\n"
"enabling the automation of certain\n"
@ -4185,28 +4221,28 @@ msgstr ""
"Ermöglichung der Automatisierung bestimmter\n"
"Funktionen von FlatCAM."
#: appGUI/GUIElements.py:3826 appGUI/MainGUI.py:118
#: appGUI/GUIElements.py:3870 appGUI/MainGUI.py:118
#: appTools/ToolPcbWizard.py:390 appTools/ToolPcbWizard.py:397
msgid "Open"
msgstr "Öffnen"
#: appGUI/GUIElements.py:3830
#: appGUI/GUIElements.py:3874
msgid "Open Project ..."
msgstr "Offenes Projekt ..."
#: appGUI/GUIElements.py:3836
#: appGUI/GUIElements.py:3880
msgid "Open &Gerber ...\tCtrl+G"
msgstr "&Gerber öffnen...\\STRG+G"
#: appGUI/GUIElements.py:3841
#: appGUI/GUIElements.py:3885
msgid "Open &Excellon ...\tCtrl+E"
msgstr "&Excellon öffnen...\\STRG+E"
#: appGUI/GUIElements.py:3846
#: appGUI/GUIElements.py:3890
msgid "Open G-&Code ..."
msgstr "G-&Code öffnen..."
#: appGUI/GUIElements.py:3856 appGUI/MainGUI.py:327
#: appGUI/GUIElements.py:3900 appGUI/MainGUI.py:327
msgid "Exit"
msgstr "Ausgang"
@ -4381,11 +4417,6 @@ msgstr "Speichern"
msgid "Save Project"
msgstr "Projekt speichern"
#: 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/MainGUI.py:167 appGUI/MainGUI.py:4483
msgid "Save Project As"
msgstr "Projekt speichern als"
@ -4620,20 +4651,6 @@ msgstr ""
"Mischen Sie eine Auswahl von Gerber-Objekten in ein neues Gerber-"
"Kombinationsobjekt."
#: 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/MainGUI.py:414 appGUI/MainGUI.py:4423
msgid "Ctrl+C"
msgstr "Kopieren"
#: appGUI/MainGUI.py:420 appGUI/MainGUI.py:676 appGUI/MainGUI.py:731
#: appGUI/MainGUI.py:790
msgid "DEL"
@ -4684,15 +4701,6 @@ msgstr "Einheiten wechseln"
msgid "Q"
msgstr "Q"
#: 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/MainGUI.py:445 appGUI/MainGUI.py:4422
msgid "Ctrl+A"
msgstr "Strg+A"
#: appGUI/MainGUI.py:451 appGUI/MainGUI.py:1260
#: appGUI/preferences/PreferencesUIManager.py:899
#: appGUI/preferences/PreferencesUIManager.py:992
@ -6178,12 +6186,6 @@ msgstr "Öffnen Sie Online-Tutorials"
msgid "Refresh Plots"
msgstr "Zeichnungen aktualisieren"
#: 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/MainGUI.py:4491 appTools/ToolSolderPaste.py:71
msgid "Delete Object"
msgstr "Objekt löschen"

Binary file not shown.

View File

@ -5,8 +5,8 @@
msgid ""
msgstr ""
"Project-Id-Version: \n"
"POT-Creation-Date: 2020-10-26 21:38+0200\n"
"PO-Revision-Date: 2020-10-26 21:38+0200\n"
"POT-Creation-Date: 2020-10-26 22:37+0200\n"
"PO-Revision-Date: 2020-10-26 22:37+0200\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: en\n"
@ -1945,7 +1945,7 @@ msgstr ""
#: appEditors/AppExcEditor.py:3908 appEditors/AppExcEditor.py:4030
#: appEditors/AppExcEditor.py:4123 appEditors/AppGerberEditor.py:2820
#: appGUI/GUIElements.py:3538 appGUI/MainGUI.py:475 appGUI/MainGUI.py:668
#: appGUI/GUIElements.py:3582 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
@ -1958,7 +1958,7 @@ msgstr "X"
#: appEditors/AppExcEditor.py:3909 appEditors/AppExcEditor.py:4031
#: appEditors/AppExcEditor.py:4124 appEditors/AppGerberEditor.py:2821
#: appGUI/GUIElements.py:3545 appGUI/MainGUI.py:478 appGUI/MainGUI.py:4417
#: appGUI/GUIElements.py:3589 appGUI/MainGUI.py:478 appGUI/MainGUI.py:4417
#: appGUI/MainGUI.py:4683
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:93
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:188
@ -3834,7 +3834,7 @@ msgstr ""
msgid "String to replace the one in the Find box throughout the text."
msgstr "String to replace the one in the Find box throughout the text."
#: appEditors/AppTextEditor.py:106 appGUI/GUIElements.py:3566
#: appEditors/AppTextEditor.py:106 appGUI/GUIElements.py:3610
#: appGUI/ObjectUI.py:1864 appGUI/preferences/cncjob/CNCJobOptPrefGroupUI.py:61
#: appGUI/preferences/tools/ToolsISOPrefGroupUI.py:295
#: appGUI/preferences/tools/ToolsPaintPrefGroupUI.py:278
@ -4018,79 +4018,115 @@ 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:3075
#: appGUI/GUIElements.py:3077 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 "Copy"
#: appGUI/GUIElements.py:3077 appGUI/MainGUI.py:414 appGUI/MainGUI.py:4423
msgid "Ctrl+C"
msgstr "Ctrl+C"
#: appGUI/GUIElements.py:3085 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:3085 appGUI/MainGUI.py:445 appGUI/MainGUI.py:4422
msgid "Ctrl+A"
msgstr "Ctrl+A"
#: appGUI/GUIElements.py:3090
msgid "Save Log"
msgstr "Save Log"
#: appGUI/GUIElements.py:3079
#: appGUI/GUIElements.py:3090 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:3095
msgid "Clear All"
msgstr "Clear All"
#: appGUI/GUIElements.py:3094 appTools/ToolShell.py:296
#: appGUI/GUIElements.py:3095 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:3138 appTools/ToolShell.py:296
msgid "Type >help< to get started"
msgstr "Type >help< to get started"
#: appGUI/GUIElements.py:3461 appGUI/GUIElements.py:3478
#: appGUI/GUIElements.py:3505 appGUI/GUIElements.py:3522
msgid "Jog the Y axis."
msgstr "Jog the Y axis."
#: appGUI/GUIElements.py:3469
#: appGUI/GUIElements.py:3513
msgid "Move to Origin."
msgstr "Move to Origin."
#: appGUI/GUIElements.py:3486 appGUI/GUIElements.py:3494
#: appGUI/GUIElements.py:3530 appGUI/GUIElements.py:3538
msgid "Jog the X axis."
msgstr "Jog the X axis."
#: appGUI/GUIElements.py:3504 appGUI/GUIElements.py:3514
#: appGUI/GUIElements.py:3548 appGUI/GUIElements.py:3558
msgid "Jog the Z axis."
msgstr "Jog the Z axis."
#: appGUI/GUIElements.py:3540
#: appGUI/GUIElements.py:3584
msgid "Zero the CNC X axes at current position."
msgstr "Zero the CNC X axes at current position."
#: appGUI/GUIElements.py:3548
#: appGUI/GUIElements.py:3592
msgid "Zero the CNC Y axes at current position."
msgstr "Zero the CNC Y axes at current position."
#: appGUI/GUIElements.py:3553
#: appGUI/GUIElements.py:3597
msgid "Z"
msgstr "Z"
#: appGUI/GUIElements.py:3556
#: appGUI/GUIElements.py:3600
msgid "Zero the CNC Z axes at current position."
msgstr "Zero the CNC Z axes at current position."
#: appGUI/GUIElements.py:3560
#: appGUI/GUIElements.py:3604
msgid "Do Home"
msgstr "Do Home"
#: appGUI/GUIElements.py:3562
#: appGUI/GUIElements.py:3606
msgid "Perform a homing cycle on all axis."
msgstr "Perform a homing cycle on all axis."
#: appGUI/GUIElements.py:3570
#: appGUI/GUIElements.py:3614
msgid "Zero all CNC axes at current position."
msgstr "Zero all CNC axes at current position."
#: appGUI/GUIElements.py:3725 appGUI/GUIElements.py:3734
#: appGUI/GUIElements.py:3769 appGUI/GUIElements.py:3778
msgid "Idle."
msgstr "Idle."
#: appGUI/GUIElements.py:3767
#: appGUI/GUIElements.py:3811
msgid "Application started ..."
msgstr "Application started ..."
#: appGUI/GUIElements.py:3768
#: appGUI/GUIElements.py:3812
msgid "Hello!"
msgstr "Hello!"
#: appGUI/GUIElements.py:3815 appGUI/MainGUI.py:1030 appGUI/MainGUI.py:2186
#: appGUI/GUIElements.py:3859 appGUI/MainGUI.py:1030 appGUI/MainGUI.py:2186
msgid "Run Script ..."
msgstr "Run Script ..."
#: appGUI/GUIElements.py:3817 appGUI/MainGUI.py:196
#: appGUI/GUIElements.py:3861 appGUI/MainGUI.py:196
msgid ""
"Will run the opened Tcl Script thus\n"
"enabling the automation of certain\n"
@ -4100,28 +4136,28 @@ msgstr ""
"enabling the automation of certain\n"
"functions of FlatCAM."
#: appGUI/GUIElements.py:3826 appGUI/MainGUI.py:118
#: appGUI/GUIElements.py:3870 appGUI/MainGUI.py:118
#: appTools/ToolPcbWizard.py:390 appTools/ToolPcbWizard.py:397
msgid "Open"
msgstr "Open"
#: appGUI/GUIElements.py:3830
#: appGUI/GUIElements.py:3874
msgid "Open Project ..."
msgstr "Open Project ..."
#: appGUI/GUIElements.py:3836
#: appGUI/GUIElements.py:3880
msgid "Open &Gerber ...\tCtrl+G"
msgstr "Open &Gerber ...\tCtrl+G"
#: appGUI/GUIElements.py:3841
#: appGUI/GUIElements.py:3885
msgid "Open &Excellon ...\tCtrl+E"
msgstr "Open &Excellon ...\tCtrl+E"
#: appGUI/GUIElements.py:3846
#: appGUI/GUIElements.py:3890
msgid "Open G-&Code ..."
msgstr "Open G-&Code ..."
#: appGUI/GUIElements.py:3856 appGUI/MainGUI.py:327
#: appGUI/GUIElements.py:3900 appGUI/MainGUI.py:327
msgid "Exit"
msgstr "Exit"
@ -4296,11 +4332,6 @@ msgstr "Save"
msgid "Save Project"
msgstr "Save Project"
#: 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/MainGUI.py:167 appGUI/MainGUI.py:4483
msgid "Save Project As"
msgstr "Save Project As"
@ -4532,20 +4563,6 @@ msgstr "Join Gerber(s) -> Gerber"
msgid "Merge a selection of Gerber objects into a new combo Gerber object."
msgstr "Merge a selection of Gerber objects into a new combo Gerber object."
#: 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 "Copy"
#: appGUI/MainGUI.py:414 appGUI/MainGUI.py:4423
msgid "Ctrl+C"
msgstr "Ctrl+C"
#: appGUI/MainGUI.py:420 appGUI/MainGUI.py:676 appGUI/MainGUI.py:731
#: appGUI/MainGUI.py:790
msgid "DEL"
@ -4596,15 +4613,6 @@ msgstr "Toggle Units"
msgid "Q"
msgstr "Q"
#: 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/MainGUI.py:445 appGUI/MainGUI.py:4422
msgid "Ctrl+A"
msgstr "Ctrl+A"
#: appGUI/MainGUI.py:451 appGUI/MainGUI.py:1260
#: appGUI/preferences/PreferencesUIManager.py:899
#: appGUI/preferences/PreferencesUIManager.py:992
@ -6085,12 +6093,6 @@ msgstr "Open Online Tutorials"
msgid "Refresh Plots"
msgstr "Refresh Plots"
#: 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/MainGUI.py:4491 appTools/ToolSolderPaste.py:71
msgid "Delete Object"
msgstr "Delete Object"

Binary file not shown.

View File

@ -5,8 +5,8 @@
msgid ""
msgstr ""
"Project-Id-Version: \n"
"POT-Creation-Date: 2020-10-26 21:38+0200\n"
"PO-Revision-Date: 2020-10-26 21:39+0200\n"
"POT-Creation-Date: 2020-10-26 22:37+0200\n"
"PO-Revision-Date: 2020-10-26 22:37+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:3538 appGUI/MainGUI.py:475 appGUI/MainGUI.py:668
#: appGUI/GUIElements.py:3582 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:3545 appGUI/MainGUI.py:478 appGUI/MainGUI.py:4417
#: appGUI/GUIElements.py:3589 appGUI/MainGUI.py:478 appGUI/MainGUI.py:4417
#: appGUI/MainGUI.py:4683
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:93
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:188
@ -3894,7 +3894,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:3566
#: appEditors/AppTextEditor.py:106 appGUI/GUIElements.py:3610
#: appGUI/ObjectUI.py:1864 appGUI/preferences/cncjob/CNCJobOptPrefGroupUI.py:61
#: appGUI/preferences/tools/ToolsISOPrefGroupUI.py:295
#: appGUI/preferences/tools/ToolsPaintPrefGroupUI.py:278
@ -4082,79 +4082,115 @@ msgstr ""
"y)\n"
"desde el punto de ubicación actual del mouse."
#: appGUI/GUIElements.py:3075
#: appGUI/GUIElements.py:3077 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:3077 appGUI/MainGUI.py:414 appGUI/MainGUI.py:4423
msgid "Ctrl+C"
msgstr "Copiar"
#: appGUI/GUIElements.py:3085 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:3085 appGUI/MainGUI.py:445 appGUI/MainGUI.py:4422
msgid "Ctrl+A"
msgstr "Ctrl+A"
#: appGUI/GUIElements.py:3090
msgid "Save Log"
msgstr "Guardar Registro"
#: appGUI/GUIElements.py:3079
#: appGUI/GUIElements.py:3090 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:3095
msgid "Clear All"
msgstr "Limpiar todo"
#: appGUI/GUIElements.py:3094 appTools/ToolShell.py:296
#: appGUI/GUIElements.py:3095 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:3138 appTools/ToolShell.py:296
msgid "Type >help< to get started"
msgstr "Escriba >help< para comenzar"
#: appGUI/GUIElements.py:3461 appGUI/GUIElements.py:3478
#: appGUI/GUIElements.py:3505 appGUI/GUIElements.py:3522
msgid "Jog the Y axis."
msgstr "Mueva el eje Y."
#: appGUI/GUIElements.py:3469
#: appGUI/GUIElements.py:3513
msgid "Move to Origin."
msgstr "Mover al origen."
#: appGUI/GUIElements.py:3486 appGUI/GUIElements.py:3494
#: appGUI/GUIElements.py:3530 appGUI/GUIElements.py:3538
msgid "Jog the X axis."
msgstr "Mueva el eje X."
#: appGUI/GUIElements.py:3504 appGUI/GUIElements.py:3514
#: appGUI/GUIElements.py:3548 appGUI/GUIElements.py:3558
msgid "Jog the Z axis."
msgstr "Mueva el eje Z."
#: appGUI/GUIElements.py:3540
#: appGUI/GUIElements.py:3584
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:3548
#: appGUI/GUIElements.py:3592
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:3553
#: appGUI/GUIElements.py:3597
msgid "Z"
msgstr "Z"
#: appGUI/GUIElements.py:3556
#: appGUI/GUIElements.py:3600
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:3560
#: appGUI/GUIElements.py:3604
msgid "Do Home"
msgstr "Hacer homing"
#: appGUI/GUIElements.py:3562
#: appGUI/GUIElements.py:3606
msgid "Perform a homing cycle on all axis."
msgstr "Realice un ciclo de referenciado en todos los ejes."
#: appGUI/GUIElements.py:3570
#: appGUI/GUIElements.py:3614
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:3725 appGUI/GUIElements.py:3734
#: appGUI/GUIElements.py:3769 appGUI/GUIElements.py:3778
msgid "Idle."
msgstr "Ocioso."
#: appGUI/GUIElements.py:3767
#: appGUI/GUIElements.py:3811
msgid "Application started ..."
msgstr "Aplicacion iniciada ..."
#: appGUI/GUIElements.py:3768
#: appGUI/GUIElements.py:3812
msgid "Hello!"
msgstr "¡Hola!"
#: appGUI/GUIElements.py:3815 appGUI/MainGUI.py:1030 appGUI/MainGUI.py:2186
#: appGUI/GUIElements.py:3859 appGUI/MainGUI.py:1030 appGUI/MainGUI.py:2186
msgid "Run Script ..."
msgstr "Ejecutar Script ..."
#: appGUI/GUIElements.py:3817 appGUI/MainGUI.py:196
#: appGUI/GUIElements.py:3861 appGUI/MainGUI.py:196
msgid ""
"Will run the opened Tcl Script thus\n"
"enabling the automation of certain\n"
@ -4164,28 +4200,28 @@ msgstr ""
"permitiendo la automatización de ciertos\n"
"Funciones de FlatCAM."
#: appGUI/GUIElements.py:3826 appGUI/MainGUI.py:118
#: appGUI/GUIElements.py:3870 appGUI/MainGUI.py:118
#: appTools/ToolPcbWizard.py:390 appTools/ToolPcbWizard.py:397
msgid "Open"
msgstr "Abierto"
#: appGUI/GUIElements.py:3830
#: appGUI/GUIElements.py:3874
msgid "Open Project ..."
msgstr "Proyecto abierto ...Abierto &Project ..."
#: appGUI/GUIElements.py:3836
#: appGUI/GUIElements.py:3880
msgid "Open &Gerber ...\tCtrl+G"
msgstr "Abierto &Gerber ...\tCtrl+G"
#: appGUI/GUIElements.py:3841
#: appGUI/GUIElements.py:3885
msgid "Open &Excellon ...\tCtrl+E"
msgstr "Abierto &Excellon ...\tCtrl+E"
#: appGUI/GUIElements.py:3846
#: appGUI/GUIElements.py:3890
msgid "Open G-&Code ..."
msgstr "Abierto G-&Code ..."
#: appGUI/GUIElements.py:3856 appGUI/MainGUI.py:327
#: appGUI/GUIElements.py:3900 appGUI/MainGUI.py:327
msgid "Exit"
msgstr "Salida"
@ -4360,11 +4396,6 @@ msgstr "Salvar"
msgid "Save Project"
msgstr "Guardar proyecto"
#: 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/MainGUI.py:167 appGUI/MainGUI.py:4483
msgid "Save Project As"
msgstr "Guardar proyecto como"
@ -4598,20 +4629,6 @@ msgid "Merge a selection of Gerber objects into a new combo Gerber object."
msgstr ""
"Combine una selección de objetos Gerber en un nuevo objeto combo Gerber."
#: 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/MainGUI.py:414 appGUI/MainGUI.py:4423
msgid "Ctrl+C"
msgstr "Copiar"
#: appGUI/MainGUI.py:420 appGUI/MainGUI.py:676 appGUI/MainGUI.py:731
#: appGUI/MainGUI.py:790
msgid "DEL"
@ -4662,15 +4679,6 @@ msgstr "(Escriba ayuda para empezar)"
msgid "Q"
msgstr "Q"
#: 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/MainGUI.py:445 appGUI/MainGUI.py:4422
msgid "Ctrl+A"
msgstr "Ctrl+A"
#: appGUI/MainGUI.py:451 appGUI/MainGUI.py:1260
#: appGUI/preferences/PreferencesUIManager.py:899
#: appGUI/preferences/PreferencesUIManager.py:992
@ -6152,12 +6160,6 @@ msgstr "Abrir tutoriales en online"
msgid "Refresh Plots"
msgstr "Actualizar parcelas"
#: 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/MainGUI.py:4491 appTools/ToolSolderPaste.py:71
msgid "Delete Object"
msgstr "Eliminar objeto"

Binary file not shown.

View File

@ -6,8 +6,8 @@
msgid ""
msgstr ""
"Project-Id-Version: \n"
"POT-Creation-Date: 2020-10-26 21:39+0200\n"
"PO-Revision-Date: 2020-10-26 21:39+0200\n"
"POT-Creation-Date: 2020-10-26 22:38+0200\n"
"PO-Revision-Date: 2020-10-26 22:38+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:3538 appGUI/MainGUI.py:475 appGUI/MainGUI.py:668
#: appGUI/GUIElements.py:3582 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:3545 appGUI/MainGUI.py:478 appGUI/MainGUI.py:4417
#: appGUI/GUIElements.py:3589 appGUI/MainGUI.py:478 appGUI/MainGUI.py:4417
#: appGUI/MainGUI.py:4683
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:93
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:188
@ -3934,7 +3934,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:3566
#: appEditors/AppTextEditor.py:106 appGUI/GUIElements.py:3610
#: appGUI/ObjectUI.py:1864 appGUI/preferences/cncjob/CNCJobOptPrefGroupUI.py:61
#: appGUI/preferences/tools/ToolsISOPrefGroupUI.py:295
#: appGUI/preferences/tools/ToolsPaintPrefGroupUI.py:278
@ -4140,81 +4140,117 @@ 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:3075
#: appGUI/GUIElements.py:3077 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:3077 appGUI/MainGUI.py:414 appGUI/MainGUI.py:4423
msgid "Ctrl+C"
msgstr "Ctrl+C"
#: appGUI/GUIElements.py:3085 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:3085 appGUI/MainGUI.py:445 appGUI/MainGUI.py:4422
msgid "Ctrl+A"
msgstr "Ctrl+A"
#: appGUI/GUIElements.py:3090
msgid "Save Log"
msgstr "Enregistrer le journal"
#: appGUI/GUIElements.py:3079
#: appGUI/GUIElements.py:3090 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:3095
#, fuzzy
#| msgid "&Clear plot"
msgid "Clear All"
msgstr "Effacer la Trace"
#: appGUI/GUIElements.py:3094 appTools/ToolShell.py:296
#: appGUI/GUIElements.py:3095 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:3138 appTools/ToolShell.py:296
msgid "Type >help< to get started"
msgstr "Tapez >help< pour commencer"
#: appGUI/GUIElements.py:3461 appGUI/GUIElements.py:3478
#: appGUI/GUIElements.py:3505 appGUI/GUIElements.py:3522
msgid "Jog the Y axis."
msgstr ""
#: appGUI/GUIElements.py:3469
#: appGUI/GUIElements.py:3513
msgid "Move to Origin."
msgstr ""
#: appGUI/GUIElements.py:3486 appGUI/GUIElements.py:3494
#: appGUI/GUIElements.py:3530 appGUI/GUIElements.py:3538
msgid "Jog the X axis."
msgstr ""
#: appGUI/GUIElements.py:3504 appGUI/GUIElements.py:3514
#: appGUI/GUIElements.py:3548 appGUI/GUIElements.py:3558
msgid "Jog the Z axis."
msgstr ""
#: appGUI/GUIElements.py:3540
#: appGUI/GUIElements.py:3584
msgid "Zero the CNC X axes at current position."
msgstr ""
#: appGUI/GUIElements.py:3548
#: appGUI/GUIElements.py:3592
msgid "Zero the CNC Y axes at current position."
msgstr ""
#: appGUI/GUIElements.py:3553
#: appGUI/GUIElements.py:3597
msgid "Z"
msgstr "Z"
#: appGUI/GUIElements.py:3556
#: appGUI/GUIElements.py:3600
msgid "Zero the CNC Z axes at current position."
msgstr ""
#: appGUI/GUIElements.py:3560
#: appGUI/GUIElements.py:3604
msgid "Do Home"
msgstr ""
#: appGUI/GUIElements.py:3562
#: appGUI/GUIElements.py:3606
msgid "Perform a homing cycle on all axis."
msgstr ""
#: appGUI/GUIElements.py:3570
#: appGUI/GUIElements.py:3614
msgid "Zero all CNC axes at current position."
msgstr ""
#: appGUI/GUIElements.py:3725 appGUI/GUIElements.py:3734
#: appGUI/GUIElements.py:3769 appGUI/GUIElements.py:3778
msgid "Idle."
msgstr "Au repos."
#: appGUI/GUIElements.py:3767
#: appGUI/GUIElements.py:3811
msgid "Application started ..."
msgstr "Bienvenu dans FlatCam ..."
#: appGUI/GUIElements.py:3768
#: appGUI/GUIElements.py:3812
msgid "Hello!"
msgstr "Bonjours !"
#: appGUI/GUIElements.py:3815 appGUI/MainGUI.py:1030 appGUI/MainGUI.py:2186
#: appGUI/GUIElements.py:3859 appGUI/MainGUI.py:1030 appGUI/MainGUI.py:2186
msgid "Run Script ..."
msgstr "Exécutez le script ..."
#: appGUI/GUIElements.py:3817 appGUI/MainGUI.py:196
#: appGUI/GUIElements.py:3861 appGUI/MainGUI.py:196
msgid ""
"Will run the opened Tcl Script thus\n"
"enabling the automation of certain\n"
@ -4224,28 +4260,28 @@ msgstr ""
"Permet lautomatisation de \n"
"fonctions dans FlatCAM."
#: appGUI/GUIElements.py:3826 appGUI/MainGUI.py:118
#: appGUI/GUIElements.py:3870 appGUI/MainGUI.py:118
#: appTools/ToolPcbWizard.py:390 appTools/ToolPcbWizard.py:397
msgid "Open"
msgstr "Ouvrir"
#: appGUI/GUIElements.py:3830
#: appGUI/GUIElements.py:3874
msgid "Open Project ..."
msgstr "Ouvrir Projet ..."
#: appGUI/GUIElements.py:3836
#: appGUI/GUIElements.py:3880
msgid "Open &Gerber ...\tCtrl+G"
msgstr "Ouvrir Gerber...\tCtrl+G"
#: appGUI/GUIElements.py:3841
#: appGUI/GUIElements.py:3885
msgid "Open &Excellon ...\tCtrl+E"
msgstr "Ouvrir Excellon ...\tCtrl+E"
#: appGUI/GUIElements.py:3846
#: appGUI/GUIElements.py:3890
msgid "Open G-&Code ..."
msgstr "Ouvrir G-Code ..."
#: appGUI/GUIElements.py:3856 appGUI/MainGUI.py:327
#: appGUI/GUIElements.py:3900 appGUI/MainGUI.py:327
msgid "Exit"
msgstr "Quitter"
@ -4420,11 +4456,6 @@ msgstr "Enregister"
msgid "Save Project"
msgstr "Sauvegarder le projet"
#: 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/MainGUI.py:167 appGUI/MainGUI.py:4483
msgid "Save Project As"
msgstr "Enregistrer le projet sous"
@ -4658,20 +4689,6 @@ msgid "Merge a selection of Gerber objects into a new combo Gerber object."
msgstr ""
"Fusionner une sélection d'objets Gerber dans un nouvel objet Gerber combiné."
#: 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/MainGUI.py:414 appGUI/MainGUI.py:4423
msgid "Ctrl+C"
msgstr "Ctrl+C"
#: appGUI/MainGUI.py:420 appGUI/MainGUI.py:676 appGUI/MainGUI.py:731
#: appGUI/MainGUI.py:790
msgid "DEL"
@ -4722,15 +4739,6 @@ msgstr "Changement d'unités"
msgid "Q"
msgstr "Q"
#: 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/MainGUI.py:445 appGUI/MainGUI.py:4422
msgid "Ctrl+A"
msgstr "Ctrl+A"
#: appGUI/MainGUI.py:451 appGUI/MainGUI.py:1260
#: appGUI/preferences/PreferencesUIManager.py:899
#: appGUI/preferences/PreferencesUIManager.py:992
@ -6217,12 +6225,6 @@ msgstr "Ouvrir des tutoriels en ligne"
msgid "Refresh Plots"
msgstr "Actualiser les Dessins"
#: 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/MainGUI.py:4491 appTools/ToolSolderPaste.py:71
msgid "Delete Object"
msgstr "Supprimer un objet"

Binary file not shown.

View File

@ -5,8 +5,8 @@
msgid ""
msgstr ""
"Project-Id-Version: \n"
"POT-Creation-Date: 2020-10-26 21:39+0200\n"
"PO-Revision-Date: 2020-10-26 21:39+0200\n"
"POT-Creation-Date: 2020-10-26 22:38+0200\n"
"PO-Revision-Date: 2020-10-26 22:38+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:3538 appGUI/MainGUI.py:475 appGUI/MainGUI.py:668
#: appGUI/GUIElements.py:3582 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:3545 appGUI/MainGUI.py:478 appGUI/MainGUI.py:4417
#: appGUI/GUIElements.py:3589 appGUI/MainGUI.py:478 appGUI/MainGUI.py:4417
#: appGUI/MainGUI.py:4683
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:93
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:188
@ -3869,7 +3869,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:3566
#: appEditors/AppTextEditor.py:106 appGUI/GUIElements.py:3610
#: appGUI/ObjectUI.py:1864 appGUI/preferences/cncjob/CNCJobOptPrefGroupUI.py:61
#: appGUI/preferences/tools/ToolsISOPrefGroupUI.py:295
#: appGUI/preferences/tools/ToolsPaintPrefGroupUI.py:278
@ -4055,79 +4055,115 @@ msgstr ""
"Se il riferimento è relativo, il salto sarà alla distanza (x,y)\n"
"dal punto di posizione attuale del mouse."
#: appGUI/GUIElements.py:3075
#: appGUI/GUIElements.py:3077 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:3077 appGUI/MainGUI.py:414 appGUI/MainGUI.py:4423
msgid "Ctrl+C"
msgstr "Ctrl+C"
#: appGUI/GUIElements.py:3085 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:3085 appGUI/MainGUI.py:445 appGUI/MainGUI.py:4422
msgid "Ctrl+A"
msgstr "Ctrl+A"
#: appGUI/GUIElements.py:3090
msgid "Save Log"
msgstr "Salva log"
#: appGUI/GUIElements.py:3079
#: appGUI/GUIElements.py:3090 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:3095
msgid "Clear All"
msgstr "Cancella tutto"
#: appGUI/GUIElements.py:3094 appTools/ToolShell.py:296
#: appGUI/GUIElements.py:3095 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:3138 appTools/ToolShell.py:296
msgid "Type >help< to get started"
msgstr "Digita >help< per iniziare"
#: appGUI/GUIElements.py:3461 appGUI/GUIElements.py:3478
#: appGUI/GUIElements.py:3505 appGUI/GUIElements.py:3522
msgid "Jog the Y axis."
msgstr "Jog asse Y."
#: appGUI/GUIElements.py:3469
#: appGUI/GUIElements.py:3513
msgid "Move to Origin."
msgstr "Sposta su origine."
#: appGUI/GUIElements.py:3486 appGUI/GUIElements.py:3494
#: appGUI/GUIElements.py:3530 appGUI/GUIElements.py:3538
msgid "Jog the X axis."
msgstr "Jog asse X."
#: appGUI/GUIElements.py:3504 appGUI/GUIElements.py:3514
#: appGUI/GUIElements.py:3548 appGUI/GUIElements.py:3558
msgid "Jog the Z axis."
msgstr "Jog asse Z."
#: appGUI/GUIElements.py:3540
#: appGUI/GUIElements.py:3584
msgid "Zero the CNC X axes at current position."
msgstr "Azzera l'asse X alla posizione corrente."
#: appGUI/GUIElements.py:3548
#: appGUI/GUIElements.py:3592
msgid "Zero the CNC Y axes at current position."
msgstr "Azzera l'asse Y alla posizione corrente."
#: appGUI/GUIElements.py:3553
#: appGUI/GUIElements.py:3597
msgid "Z"
msgstr "Z"
#: appGUI/GUIElements.py:3556
#: appGUI/GUIElements.py:3600
msgid "Zero the CNC Z axes at current position."
msgstr "Azzera l'asse Z alla posizione corrente."
#: appGUI/GUIElements.py:3560
#: appGUI/GUIElements.py:3604
msgid "Do Home"
msgstr "Effettua Home"
#: appGUI/GUIElements.py:3562
#: appGUI/GUIElements.py:3606
msgid "Perform a homing cycle on all axis."
msgstr "Esegue un ciclo di home su tutti gli assi."
#: appGUI/GUIElements.py:3570
#: appGUI/GUIElements.py:3614
msgid "Zero all CNC axes at current position."
msgstr "Azzera tutti gli assi alla posizione corrente."
#: appGUI/GUIElements.py:3725 appGUI/GUIElements.py:3734
#: appGUI/GUIElements.py:3769 appGUI/GUIElements.py:3778
msgid "Idle."
msgstr "Inattivo."
#: appGUI/GUIElements.py:3767
#: appGUI/GUIElements.py:3811
msgid "Application started ..."
msgstr "Applicazione avviata ..."
#: appGUI/GUIElements.py:3768
#: appGUI/GUIElements.py:3812
msgid "Hello!"
msgstr "Ciao!"
#: appGUI/GUIElements.py:3815 appGUI/MainGUI.py:1030 appGUI/MainGUI.py:2186
#: appGUI/GUIElements.py:3859 appGUI/MainGUI.py:1030 appGUI/MainGUI.py:2186
msgid "Run Script ..."
msgstr "Esegui Script ..."
#: appGUI/GUIElements.py:3817 appGUI/MainGUI.py:196
#: appGUI/GUIElements.py:3861 appGUI/MainGUI.py:196
msgid ""
"Will run the opened Tcl Script thus\n"
"enabling the automation of certain\n"
@ -4137,28 +4173,28 @@ msgstr ""
"consentire l'automazione di alcune\n"
"funzioni di FlatCAM."
#: appGUI/GUIElements.py:3826 appGUI/MainGUI.py:118
#: appGUI/GUIElements.py:3870 appGUI/MainGUI.py:118
#: appTools/ToolPcbWizard.py:390 appTools/ToolPcbWizard.py:397
msgid "Open"
msgstr "Apri"
#: appGUI/GUIElements.py:3830
#: appGUI/GUIElements.py:3874
msgid "Open Project ..."
msgstr "Apri progetto ..."
#: appGUI/GUIElements.py:3836
#: appGUI/GUIElements.py:3880
msgid "Open &Gerber ...\tCtrl+G"
msgstr "Apri &Gerber...\tCtrl+G"
#: appGUI/GUIElements.py:3841
#: appGUI/GUIElements.py:3885
msgid "Open &Excellon ...\tCtrl+E"
msgstr "Apri &Excellon ...\tCtrl+E"
#: appGUI/GUIElements.py:3846
#: appGUI/GUIElements.py:3890
msgid "Open G-&Code ..."
msgstr "Apri G-&Code ..."
#: appGUI/GUIElements.py:3856 appGUI/MainGUI.py:327
#: appGUI/GUIElements.py:3900 appGUI/MainGUI.py:327
msgid "Exit"
msgstr "Esci"
@ -4333,11 +4369,6 @@ msgstr "Salva"
msgid "Save Project"
msgstr "Salva progetto"
#: 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/MainGUI.py:167 appGUI/MainGUI.py:4483
msgid "Save Project As"
msgstr "Salva Progetto con nome"
@ -4571,20 +4602,6 @@ msgid "Merge a selection of Gerber objects into a new combo Gerber object."
msgstr ""
"Unisci una selezione di oggetti Gerber in un nuovo oggetto Gerber combinato."
#: 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/MainGUI.py:414 appGUI/MainGUI.py:4423
msgid "Ctrl+C"
msgstr "Ctrl+C"
#: appGUI/MainGUI.py:420 appGUI/MainGUI.py:676 appGUI/MainGUI.py:731
#: appGUI/MainGUI.py:790
msgid "DEL"
@ -4635,15 +4652,6 @@ msgstr "Camba unità"
msgid "Q"
msgstr "Q"
#: 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/MainGUI.py:445 appGUI/MainGUI.py:4422
msgid "Ctrl+A"
msgstr "Ctrl+A"
#: appGUI/MainGUI.py:451 appGUI/MainGUI.py:1260
#: appGUI/preferences/PreferencesUIManager.py:899
#: appGUI/preferences/PreferencesUIManager.py:992
@ -6124,12 +6132,6 @@ msgstr "Apri tutorial online"
msgid "Refresh Plots"
msgstr "Aggiorna plot"
#: 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/MainGUI.py:4491 appTools/ToolSolderPaste.py:71
msgid "Delete Object"
msgstr "Cancella oggetto"

Binary file not shown.

View File

@ -1,8 +1,8 @@
msgid ""
msgstr ""
"Project-Id-Version: \n"
"POT-Creation-Date: 2020-10-26 21:40+0200\n"
"PO-Revision-Date: 2020-10-26 21:40+0200\n"
"POT-Creation-Date: 2020-10-26 22:38+0200\n"
"PO-Revision-Date: 2020-10-26 22:38+0200\n"
"Last-Translator: Carlos Stein <carlos.stein@gmail.com>\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:3538 appGUI/MainGUI.py:475 appGUI/MainGUI.py:668
#: appGUI/GUIElements.py:3582 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:3545 appGUI/MainGUI.py:478 appGUI/MainGUI.py:4417
#: appGUI/GUIElements.py:3589 appGUI/MainGUI.py:478 appGUI/MainGUI.py:4417
#: appGUI/MainGUI.py:4683
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:93
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:188
@ -3900,7 +3900,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:3566
#: appEditors/AppTextEditor.py:106 appGUI/GUIElements.py:3610
#: appGUI/ObjectUI.py:1864 appGUI/preferences/cncjob/CNCJobOptPrefGroupUI.py:61
#: appGUI/preferences/tools/ToolsISOPrefGroupUI.py:295
#: appGUI/preferences/tools/ToolsPaintPrefGroupUI.py:278
@ -4102,89 +4102,125 @@ 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:3075
#: appGUI/GUIElements.py:3077 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:3077 appGUI/MainGUI.py:414 appGUI/MainGUI.py:4423
msgid "Ctrl+C"
msgstr "Copiar"
#: appGUI/GUIElements.py:3085 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:3085 appGUI/MainGUI.py:445 appGUI/MainGUI.py:4422
msgid "Ctrl+A"
msgstr "Ctrl+A"
#: appGUI/GUIElements.py:3090
msgid "Save Log"
msgstr "Salvar Log"
#: appGUI/GUIElements.py:3079
#: appGUI/GUIElements.py:3090 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:3095
#, fuzzy
#| msgid "Clear plot"
msgid "Clear All"
msgstr "Limpar gráfico"
#: appGUI/GUIElements.py:3094 appTools/ToolShell.py:296
#: appGUI/GUIElements.py:3095 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:3138 appTools/ToolShell.py:296
msgid "Type >help< to get started"
msgstr "Digite >help< para iniciar"
#: appGUI/GUIElements.py:3461 appGUI/GUIElements.py:3478
#: appGUI/GUIElements.py:3505 appGUI/GUIElements.py:3522
#, fuzzy
#| msgid "Toggle the axis"
msgid "Jog the Y axis."
msgstr "Alternar o Eixo"
#: appGUI/GUIElements.py:3469
#: appGUI/GUIElements.py:3513
#, fuzzy
#| msgid "Move to Origin"
msgid "Move to Origin."
msgstr "Mover para Origem"
#: appGUI/GUIElements.py:3486 appGUI/GUIElements.py:3494
#: appGUI/GUIElements.py:3530 appGUI/GUIElements.py:3538
#, fuzzy
#| msgid "Toggle the axis"
msgid "Jog the X axis."
msgstr "Alternar o Eixo"
#: appGUI/GUIElements.py:3504 appGUI/GUIElements.py:3514
#: appGUI/GUIElements.py:3548 appGUI/GUIElements.py:3558
#, fuzzy
#| msgid "Toggle the axis"
msgid "Jog the Z axis."
msgstr "Alternar o Eixo"
#: appGUI/GUIElements.py:3540
#: appGUI/GUIElements.py:3584
msgid "Zero the CNC X axes at current position."
msgstr ""
#: appGUI/GUIElements.py:3548
#: appGUI/GUIElements.py:3592
msgid "Zero the CNC Y axes at current position."
msgstr ""
#: appGUI/GUIElements.py:3553
#: appGUI/GUIElements.py:3597
msgid "Z"
msgstr "Z"
#: appGUI/GUIElements.py:3556
#: appGUI/GUIElements.py:3600
msgid "Zero the CNC Z axes at current position."
msgstr ""
#: appGUI/GUIElements.py:3560
#: appGUI/GUIElements.py:3604
msgid "Do Home"
msgstr ""
#: appGUI/GUIElements.py:3562
#: appGUI/GUIElements.py:3606
msgid "Perform a homing cycle on all axis."
msgstr ""
#: appGUI/GUIElements.py:3570
#: appGUI/GUIElements.py:3614
msgid "Zero all CNC axes at current position."
msgstr ""
#: appGUI/GUIElements.py:3725 appGUI/GUIElements.py:3734
#: appGUI/GUIElements.py:3769 appGUI/GUIElements.py:3778
msgid "Idle."
msgstr "Ocioso."
#: appGUI/GUIElements.py:3767
#: appGUI/GUIElements.py:3811
msgid "Application started ..."
msgstr "Aplicativo iniciado ..."
#: appGUI/GUIElements.py:3768
#: appGUI/GUIElements.py:3812
msgid "Hello!"
msgstr "Olá!"
#: appGUI/GUIElements.py:3815 appGUI/MainGUI.py:1030 appGUI/MainGUI.py:2186
#: appGUI/GUIElements.py:3859 appGUI/MainGUI.py:1030 appGUI/MainGUI.py:2186
msgid "Run Script ..."
msgstr "Executar Script ..."
#: appGUI/GUIElements.py:3817 appGUI/MainGUI.py:196
#: appGUI/GUIElements.py:3861 appGUI/MainGUI.py:196
msgid ""
"Will run the opened Tcl Script thus\n"
"enabling the automation of certain\n"
@ -4194,28 +4230,28 @@ msgstr ""
"ativando a automação de certas\n"
"funções do FlatCAM."
#: appGUI/GUIElements.py:3826 appGUI/MainGUI.py:118
#: appGUI/GUIElements.py:3870 appGUI/MainGUI.py:118
#: appTools/ToolPcbWizard.py:390 appTools/ToolPcbWizard.py:397
msgid "Open"
msgstr "Abrir"
#: appGUI/GUIElements.py:3830
#: appGUI/GUIElements.py:3874
msgid "Open Project ..."
msgstr "Abrir Projeto ..."
#: appGUI/GUIElements.py:3836
#: appGUI/GUIElements.py:3880
msgid "Open &Gerber ...\tCtrl+G"
msgstr "Abrir &Gerber ...\tCtrl+G"
#: appGUI/GUIElements.py:3841
#: appGUI/GUIElements.py:3885
msgid "Open &Excellon ...\tCtrl+E"
msgstr "Abrir &Excellon ...\tCtrl+E"
#: appGUI/GUIElements.py:3846
#: appGUI/GUIElements.py:3890
msgid "Open G-&Code ..."
msgstr "Abrir G-&Code ..."
#: appGUI/GUIElements.py:3856 appGUI/MainGUI.py:327
#: appGUI/GUIElements.py:3900 appGUI/MainGUI.py:327
msgid "Exit"
msgstr "Sair"
@ -4390,11 +4426,6 @@ msgstr "Salvar"
msgid "Save Project"
msgstr "Salvar Projeto"
#: 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/MainGUI.py:167 appGUI/MainGUI.py:4483
msgid "Save Project As"
msgstr "Salvar Projeto Como"
@ -4627,20 +4658,6 @@ msgstr "Unir Gerber(s) -> Gerber"
msgid "Merge a selection of Gerber objects into a new combo Gerber object."
msgstr "Mescla uma seleção de objetos Gerber em um novo objeto Gerber."
#: 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/MainGUI.py:414 appGUI/MainGUI.py:4423
msgid "Ctrl+C"
msgstr "Copiar"
#: appGUI/MainGUI.py:420 appGUI/MainGUI.py:676 appGUI/MainGUI.py:731
#: appGUI/MainGUI.py:790
msgid "DEL"
@ -4691,15 +4708,6 @@ msgstr "Alternar Unidades"
msgid "Q"
msgstr "Q"
#: 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/MainGUI.py:445 appGUI/MainGUI.py:4422
msgid "Ctrl+A"
msgstr "Ctrl+A"
#: appGUI/MainGUI.py:451 appGUI/MainGUI.py:1260
#: appGUI/preferences/PreferencesUIManager.py:899
#: appGUI/preferences/PreferencesUIManager.py:992
@ -6201,12 +6209,6 @@ msgstr "Abrir Tutoriais Online"
msgid "Refresh Plots"
msgstr "Atualizar Gráfico"
#: 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/MainGUI.py:4491 appTools/ToolSolderPaste.py:71
msgid "Delete Object"
msgstr "Excluir Objeto"

Binary file not shown.

View File

@ -5,8 +5,8 @@
msgid ""
msgstr ""
"Project-Id-Version: \n"
"POT-Creation-Date: 2020-10-26 21:40+0200\n"
"PO-Revision-Date: 2020-10-26 21:40+0200\n"
"POT-Creation-Date: 2020-10-26 22:38+0200\n"
"PO-Revision-Date: 2020-10-26 22:38+0200\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: ro\n"
@ -1986,7 +1986,7 @@ msgstr ""
#: appEditors/AppExcEditor.py:3908 appEditors/AppExcEditor.py:4030
#: appEditors/AppExcEditor.py:4123 appEditors/AppGerberEditor.py:2820
#: appGUI/GUIElements.py:3538 appGUI/MainGUI.py:475 appGUI/MainGUI.py:668
#: appGUI/GUIElements.py:3582 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:3545 appGUI/MainGUI.py:478 appGUI/MainGUI.py:4417
#: appGUI/GUIElements.py:3589 appGUI/MainGUI.py:478 appGUI/MainGUI.py:4417
#: appGUI/MainGUI.py:4683
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:93
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:188
@ -3911,7 +3911,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:3566
#: appEditors/AppTextEditor.py:106 appGUI/GUIElements.py:3610
#: appGUI/ObjectUI.py:1864 appGUI/preferences/cncjob/CNCJobOptPrefGroupUI.py:61
#: appGUI/preferences/tools/ToolsISOPrefGroupUI.py:295
#: appGUI/preferences/tools/ToolsPaintPrefGroupUI.py:278
@ -4098,79 +4098,115 @@ 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:3075
#: appGUI/GUIElements.py:3077 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:3077 appGUI/MainGUI.py:414 appGUI/MainGUI.py:4423
msgid "Ctrl+C"
msgstr "Ctrl+C"
#: appGUI/GUIElements.py:3085 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"
#: appGUI/GUIElements.py:3085 appGUI/MainGUI.py:445 appGUI/MainGUI.py:4422
msgid "Ctrl+A"
msgstr "Ctrl+A"
#: appGUI/GUIElements.py:3090
msgid "Save Log"
msgstr "Salvează Log"
#: appGUI/GUIElements.py:3079
#: appGUI/GUIElements.py:3090 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:3095
msgid "Clear All"
msgstr "Șterge Tot"
#: appGUI/GUIElements.py:3094 appTools/ToolShell.py:296
#: appGUI/GUIElements.py:3095 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:3138 appTools/ToolShell.py:296
msgid "Type >help< to get started"
msgstr "Tastați >help< pentru a începe"
#: appGUI/GUIElements.py:3461 appGUI/GUIElements.py:3478
#: appGUI/GUIElements.py:3505 appGUI/GUIElements.py:3522
msgid "Jog the Y axis."
msgstr "Miscați pe axa Y."
#: appGUI/GUIElements.py:3469
#: appGUI/GUIElements.py:3513
msgid "Move to Origin."
msgstr "Deplasează-te la Origine."
#: appGUI/GUIElements.py:3486 appGUI/GUIElements.py:3494
#: appGUI/GUIElements.py:3530 appGUI/GUIElements.py:3538
msgid "Jog the X axis."
msgstr "Miscați pe axa X."
#: appGUI/GUIElements.py:3504 appGUI/GUIElements.py:3514
#: appGUI/GUIElements.py:3548 appGUI/GUIElements.py:3558
msgid "Jog the Z axis."
msgstr "Miscați pe axa Z."
#: appGUI/GUIElements.py:3540
#: appGUI/GUIElements.py:3584
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:3548
#: appGUI/GUIElements.py:3592
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:3553
#: appGUI/GUIElements.py:3597
msgid "Z"
msgstr "Z"
#: appGUI/GUIElements.py:3556
#: appGUI/GUIElements.py:3600
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:3560
#: appGUI/GUIElements.py:3604
msgid "Do Home"
msgstr "Fă un ciclu de Homing"
#: appGUI/GUIElements.py:3562
#: appGUI/GUIElements.py:3606
msgid "Perform a homing cycle on all axis."
msgstr "Efectuați un ciclu Homing pe toate axele."
#: appGUI/GUIElements.py:3570
#: appGUI/GUIElements.py:3614
msgid "Zero all CNC axes at current position."
msgstr "Puneți la zero toate axele CNC în poziția curentă."
#: appGUI/GUIElements.py:3725 appGUI/GUIElements.py:3734
#: appGUI/GUIElements.py:3769 appGUI/GUIElements.py:3778
msgid "Idle."
msgstr "Inactiv."
#: appGUI/GUIElements.py:3767
#: appGUI/GUIElements.py:3811
msgid "Application started ..."
msgstr "Aplicaţia a pornit ..."
#: appGUI/GUIElements.py:3768
#: appGUI/GUIElements.py:3812
msgid "Hello!"
msgstr "Bună!"
#: appGUI/GUIElements.py:3815 appGUI/MainGUI.py:1030 appGUI/MainGUI.py:2186
#: appGUI/GUIElements.py:3859 appGUI/MainGUI.py:1030 appGUI/MainGUI.py:2186
msgid "Run Script ..."
msgstr "Rulează Script..."
#: appGUI/GUIElements.py:3817 appGUI/MainGUI.py:196
#: appGUI/GUIElements.py:3861 appGUI/MainGUI.py:196
msgid ""
"Will run the opened Tcl Script thus\n"
"enabling the automation of certain\n"
@ -4180,28 +4216,28 @@ msgstr ""
"o automatizare a anumitor functii\n"
"din FlatCAM."
#: appGUI/GUIElements.py:3826 appGUI/MainGUI.py:118
#: appGUI/GUIElements.py:3870 appGUI/MainGUI.py:118
#: appTools/ToolPcbWizard.py:390 appTools/ToolPcbWizard.py:397
msgid "Open"
msgstr "Încarcă"
#: appGUI/GUIElements.py:3830
#: appGUI/GUIElements.py:3874
msgid "Open Project ..."
msgstr "Încarcă Project ..."
#: appGUI/GUIElements.py:3836
#: appGUI/GUIElements.py:3880
msgid "Open &Gerber ...\tCtrl+G"
msgstr "Încarcă &Gerber ...\tCtrl+G"
#: appGUI/GUIElements.py:3841
#: appGUI/GUIElements.py:3885
msgid "Open &Excellon ...\tCtrl+E"
msgstr "Încarcă &Excellon ...\tCtrl+E"
#: appGUI/GUIElements.py:3846
#: appGUI/GUIElements.py:3890
msgid "Open G-&Code ..."
msgstr "Încarcă G-&Code ..."
#: appGUI/GUIElements.py:3856 appGUI/MainGUI.py:327
#: appGUI/GUIElements.py:3900 appGUI/MainGUI.py:327
msgid "Exit"
msgstr "Iesiere"
@ -4376,11 +4412,6 @@ msgstr "Salvează"
msgid "Save Project"
msgstr "Salvează Proiectul"
#: 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/MainGUI.py:167 appGUI/MainGUI.py:4483
msgid "Save Project As"
msgstr "Salvează Proiectul ca"
@ -4614,20 +4645,6 @@ msgid "Merge a selection of Gerber objects into a new combo Gerber object."
msgstr ""
"Fuzionează o selecţie de obiecte Gerber intr-un nou obiect Gerber >combo<."
#: 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/MainGUI.py:414 appGUI/MainGUI.py:4423
msgid "Ctrl+C"
msgstr "Ctrl+C"
#: appGUI/MainGUI.py:420 appGUI/MainGUI.py:676 appGUI/MainGUI.py:731
#: appGUI/MainGUI.py:790
msgid "DEL"
@ -4678,15 +4695,6 @@ msgstr "Comută Unitati"
msgid "Q"
msgstr "Q"
#: 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"
#: appGUI/MainGUI.py:445 appGUI/MainGUI.py:4422
msgid "Ctrl+A"
msgstr "Ctrl+A"
#: appGUI/MainGUI.py:451 appGUI/MainGUI.py:1260
#: appGUI/preferences/PreferencesUIManager.py:899
#: appGUI/preferences/PreferencesUIManager.py:992
@ -6167,12 +6175,6 @@ msgstr "Deschide Tutoriale Online"
msgid "Refresh Plots"
msgstr "Improspatare Afișare"
#: 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/MainGUI.py:4491 appTools/ToolSolderPaste.py:71
msgid "Delete Object"
msgstr "Șterge Obiectul"

View File

@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: \n"
"POT-Creation-Date: 2020-10-26 21:40+0200\n"
"POT-Creation-Date: 2020-10-26 22:38+0200\n"
"PO-Revision-Date: \n"
"Last-Translator: Andrey Kultyapov <camellan@yandex.ru>\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:3538 appGUI/MainGUI.py:475 appGUI/MainGUI.py:668
#: appGUI/GUIElements.py:3582 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:3545 appGUI/MainGUI.py:478 appGUI/MainGUI.py:4417
#: appGUI/GUIElements.py:3589 appGUI/MainGUI.py:478 appGUI/MainGUI.py:4417
#: appGUI/MainGUI.py:4683
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:93
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:188
@ -3901,7 +3901,7 @@ msgstr "Заменяет строку из поля «Найти» на стро
msgid "String to replace the one in the Find box throughout the text."
msgstr "Строка, заменяющая строку в поле поиска по всему тексту."
#: appEditors/AppTextEditor.py:106 appGUI/GUIElements.py:3566
#: appEditors/AppTextEditor.py:106 appGUI/GUIElements.py:3610
#: appGUI/ObjectUI.py:1864 appGUI/preferences/cncjob/CNCJobOptPrefGroupUI.py:61
#: appGUI/preferences/tools/ToolsISOPrefGroupUI.py:295
#: appGUI/preferences/tools/ToolsPaintPrefGroupUI.py:278
@ -4096,81 +4096,117 @@ msgstr ""
"Если ссылка является относительной, то переход будет на расстоянии (x, y)\n"
"от текущей точки расположения мыши."
#: appGUI/GUIElements.py:3075
#: appGUI/GUIElements.py:3077 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:3077 appGUI/MainGUI.py:414 appGUI/MainGUI.py:4423
msgid "Ctrl+C"
msgstr ""
#: appGUI/GUIElements.py:3085 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:3085 appGUI/MainGUI.py:445 appGUI/MainGUI.py:4422
msgid "Ctrl+A"
msgstr ""
#: appGUI/GUIElements.py:3090
msgid "Save Log"
msgstr "Сохранить журнал"
#: appGUI/GUIElements.py:3079
#: appGUI/GUIElements.py:3090 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:3095
#, fuzzy
#| msgid "Clear plot"
msgid "Clear All"
msgstr "Отключить все участки"
#: appGUI/GUIElements.py:3094 appTools/ToolShell.py:296
#: appGUI/GUIElements.py:3095 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:3138 appTools/ToolShell.py:296
msgid "Type >help< to get started"
msgstr "Введите >help< для начала работы"
#: appGUI/GUIElements.py:3461 appGUI/GUIElements.py:3478
#: appGUI/GUIElements.py:3505 appGUI/GUIElements.py:3522
msgid "Jog the Y axis."
msgstr ""
#: appGUI/GUIElements.py:3469
#: appGUI/GUIElements.py:3513
msgid "Move to Origin."
msgstr ""
#: appGUI/GUIElements.py:3486 appGUI/GUIElements.py:3494
#: appGUI/GUIElements.py:3530 appGUI/GUIElements.py:3538
msgid "Jog the X axis."
msgstr ""
#: appGUI/GUIElements.py:3504 appGUI/GUIElements.py:3514
#: appGUI/GUIElements.py:3548 appGUI/GUIElements.py:3558
msgid "Jog the Z axis."
msgstr ""
#: appGUI/GUIElements.py:3540
#: appGUI/GUIElements.py:3584
msgid "Zero the CNC X axes at current position."
msgstr ""
#: appGUI/GUIElements.py:3548
#: appGUI/GUIElements.py:3592
msgid "Zero the CNC Y axes at current position."
msgstr ""
#: appGUI/GUIElements.py:3553
#: appGUI/GUIElements.py:3597
msgid "Z"
msgstr ""
#: appGUI/GUIElements.py:3556
#: appGUI/GUIElements.py:3600
msgid "Zero the CNC Z axes at current position."
msgstr ""
#: appGUI/GUIElements.py:3560
#: appGUI/GUIElements.py:3604
msgid "Do Home"
msgstr ""
#: appGUI/GUIElements.py:3562
#: appGUI/GUIElements.py:3606
msgid "Perform a homing cycle on all axis."
msgstr ""
#: appGUI/GUIElements.py:3570
#: appGUI/GUIElements.py:3614
msgid "Zero all CNC axes at current position."
msgstr ""
#: appGUI/GUIElements.py:3725 appGUI/GUIElements.py:3734
#: appGUI/GUIElements.py:3769 appGUI/GUIElements.py:3778
msgid "Idle."
msgstr "Нет заданий."
#: appGUI/GUIElements.py:3767
#: appGUI/GUIElements.py:3811
msgid "Application started ..."
msgstr "Приложение запущено ..."
#: appGUI/GUIElements.py:3768
#: appGUI/GUIElements.py:3812
msgid "Hello!"
msgstr "Приветствую!"
#: appGUI/GUIElements.py:3815 appGUI/MainGUI.py:1030 appGUI/MainGUI.py:2186
#: appGUI/GUIElements.py:3859 appGUI/MainGUI.py:1030 appGUI/MainGUI.py:2186
msgid "Run Script ..."
msgstr "Выполнить сценарий ..."
#: appGUI/GUIElements.py:3817 appGUI/MainGUI.py:196
#: appGUI/GUIElements.py:3861 appGUI/MainGUI.py:196
msgid ""
"Will run the opened Tcl Script thus\n"
"enabling the automation of certain\n"
@ -4180,28 +4216,28 @@ msgstr ""
"включающий автоматизацию некоторых\n"
"функций FlatCAM."
#: appGUI/GUIElements.py:3826 appGUI/MainGUI.py:118
#: appGUI/GUIElements.py:3870 appGUI/MainGUI.py:118
#: appTools/ToolPcbWizard.py:390 appTools/ToolPcbWizard.py:397
msgid "Open"
msgstr "Открыть"
#: appGUI/GUIElements.py:3830
#: appGUI/GUIElements.py:3874
msgid "Open Project ..."
msgstr "Открыть проект..."
#: appGUI/GUIElements.py:3836
#: appGUI/GUIElements.py:3880
msgid "Open &Gerber ...\tCtrl+G"
msgstr "Открыть &Gerber...\tCtrl+G"
#: appGUI/GUIElements.py:3841
#: appGUI/GUIElements.py:3885
msgid "Open &Excellon ...\tCtrl+E"
msgstr "Открыть &Excellon ...\tCtrl+E"
#: appGUI/GUIElements.py:3846
#: appGUI/GUIElements.py:3890
msgid "Open G-&Code ..."
msgstr "Открыть G-&Code ..."
#: appGUI/GUIElements.py:3856 appGUI/MainGUI.py:327
#: appGUI/GUIElements.py:3900 appGUI/MainGUI.py:327
msgid "Exit"
msgstr "Выход"
@ -4378,11 +4414,6 @@ msgstr "Сохранить"
msgid "Save Project"
msgstr "Сохранить проект"
#: 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/MainGUI.py:167 appGUI/MainGUI.py:4483
msgid "Save Project As"
msgstr "Сохранить проект как"
@ -4622,20 +4653,6 @@ msgid "Merge a selection of Gerber objects into a new combo Gerber object."
msgstr ""
"Объединяет выбранные объекты Gerber в новый комбинированный объект Gerber."
#: 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/MainGUI.py:414 appGUI/MainGUI.py:4423
msgid "Ctrl+C"
msgstr ""
#: appGUI/MainGUI.py:420 appGUI/MainGUI.py:676 appGUI/MainGUI.py:731
#: appGUI/MainGUI.py:790
msgid "DEL"
@ -4686,15 +4703,6 @@ msgstr "Единицы измерения"
msgid "Q"
msgstr ""
#: 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/MainGUI.py:445 appGUI/MainGUI.py:4422
msgid "Ctrl+A"
msgstr ""
#: appGUI/MainGUI.py:451 appGUI/MainGUI.py:1260
#: appGUI/preferences/PreferencesUIManager.py:899
#: appGUI/preferences/PreferencesUIManager.py:992
@ -6176,12 +6184,6 @@ msgstr "Открыть онлайн-уроки"
msgid "Refresh Plots"
msgstr "Обновить участки"
#: 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/MainGUI.py:4491 appTools/ToolSolderPaste.py:71
msgid "Delete Object"
msgstr "Удалить объект"

Binary file not shown.

View File

@ -5,8 +5,8 @@
msgid ""
msgstr ""
"Project-Id-Version: \n"
"POT-Creation-Date: 2020-10-26 21:40+0200\n"
"PO-Revision-Date: 2020-10-26 21:40+0200\n"
"POT-Creation-Date: 2020-10-26 22:38+0200\n"
"PO-Revision-Date: 2020-10-26 22:38+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:3538 appGUI/MainGUI.py:475 appGUI/MainGUI.py:668
#: appGUI/GUIElements.py:3582 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:3545 appGUI/MainGUI.py:478 appGUI/MainGUI.py:4417
#: appGUI/GUIElements.py:3589 appGUI/MainGUI.py:478 appGUI/MainGUI.py:4417
#: appGUI/MainGUI.py:4683
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:93
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:188
@ -3858,7 +3858,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:3566
#: appEditors/AppTextEditor.py:106 appGUI/GUIElements.py:3610
#: appGUI/ObjectUI.py:1864 appGUI/preferences/cncjob/CNCJobOptPrefGroupUI.py:61
#: appGUI/preferences/tools/ToolsISOPrefGroupUI.py:295
#: appGUI/preferences/tools/ToolsPaintPrefGroupUI.py:278
@ -4042,81 +4042,117 @@ msgstr ""
"Referans Değişen ise, geçiş farenin geçerli \n"
"konumundan (x, y) mesafede olacaktır."
#: appGUI/GUIElements.py:3075
#: appGUI/GUIElements.py:3077 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:3077 appGUI/MainGUI.py:414 appGUI/MainGUI.py:4423
msgid "Ctrl+C"
msgstr "Ctrl+C"
#: appGUI/GUIElements.py:3085 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:3085 appGUI/MainGUI.py:445 appGUI/MainGUI.py:4422
msgid "Ctrl+A"
msgstr "Ctrl+A"
#: appGUI/GUIElements.py:3090
msgid "Save Log"
msgstr "Kayıt Dosyası"
#: appGUI/GUIElements.py:3079
#: appGUI/GUIElements.py:3090 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:3095
#, fuzzy
#| msgid "Clear plot"
msgid "Clear All"
msgstr "Nesneyi Temizle"
#: appGUI/GUIElements.py:3094 appTools/ToolShell.py:296
#: appGUI/GUIElements.py:3095 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:3138 appTools/ToolShell.py:296
msgid "Type >help< to get started"
msgstr "Başlamak için >yardım<yazın"
#: appGUI/GUIElements.py:3461 appGUI/GUIElements.py:3478
#: appGUI/GUIElements.py:3505 appGUI/GUIElements.py:3522
msgid "Jog the Y axis."
msgstr "Y eksenini ilerletin."
#: appGUI/GUIElements.py:3469
#: appGUI/GUIElements.py:3513
msgid "Move to Origin."
msgstr "Başlangıç Noktsına Git."
#: appGUI/GUIElements.py:3486 appGUI/GUIElements.py:3494
#: appGUI/GUIElements.py:3530 appGUI/GUIElements.py:3538
msgid "Jog the X axis."
msgstr "X eksenini ilerletin."
#: appGUI/GUIElements.py:3504 appGUI/GUIElements.py:3514
#: appGUI/GUIElements.py:3548 appGUI/GUIElements.py:3558
msgid "Jog the Z axis."
msgstr "Z eksenini ilerletin."
#: appGUI/GUIElements.py:3540
#: appGUI/GUIElements.py:3584
msgid "Zero the CNC X axes at current position."
msgstr "CNC X eksenlerini mevcut konumda sıfırlayın."
#: appGUI/GUIElements.py:3548
#: appGUI/GUIElements.py:3592
msgid "Zero the CNC Y axes at current position."
msgstr "CNC Y eksenlerini mevcut konumda sıfırlayın."
#: appGUI/GUIElements.py:3553
#: appGUI/GUIElements.py:3597
msgid "Z"
msgstr "Z"
#: appGUI/GUIElements.py:3556
#: appGUI/GUIElements.py:3600
msgid "Zero the CNC Z axes at current position."
msgstr "CNC Z eksenini mevcut konumda sıfırlayın."
#: appGUI/GUIElements.py:3560
#: appGUI/GUIElements.py:3604
msgid "Do Home"
msgstr "Başlangıç Yap"
#: appGUI/GUIElements.py:3562
#: appGUI/GUIElements.py:3606
msgid "Perform a homing cycle on all axis."
msgstr "Tüm CNC eksenlerini belirtilen başlangıca döndürün."
#: appGUI/GUIElements.py:3570
#: appGUI/GUIElements.py:3614
msgid "Zero all CNC axes at current position."
msgstr "Tüm CNC eksenlerini geçerli konumda sıfırlayın."
#: appGUI/GUIElements.py:3725 appGUI/GUIElements.py:3734
#: appGUI/GUIElements.py:3769 appGUI/GUIElements.py:3778
msgid "Idle."
msgstr "Boşta."
#: appGUI/GUIElements.py:3767
#: appGUI/GUIElements.py:3811
msgid "Application started ..."
msgstr "Uygulama başlatıldı ..."
#: appGUI/GUIElements.py:3768
#: appGUI/GUIElements.py:3812
msgid "Hello!"
msgstr "Merhaba!"
#: appGUI/GUIElements.py:3815 appGUI/MainGUI.py:1030 appGUI/MainGUI.py:2186
#: appGUI/GUIElements.py:3859 appGUI/MainGUI.py:1030 appGUI/MainGUI.py:2186
msgid "Run Script ..."
msgstr "Komut Dosyasını Çalıştır ..."
#: appGUI/GUIElements.py:3817 appGUI/MainGUI.py:196
#: appGUI/GUIElements.py:3861 appGUI/MainGUI.py:196
msgid ""
"Will run the opened Tcl Script thus\n"
"enabling the automation of certain\n"
@ -4125,28 +4161,28 @@ msgstr ""
"Bazı FlatCAM işlevlerinin otomasyonunu \n"
"içeren açık bir komut dosyası başlatılır."
#: appGUI/GUIElements.py:3826 appGUI/MainGUI.py:118
#: appGUI/GUIElements.py:3870 appGUI/MainGUI.py:118
#: appTools/ToolPcbWizard.py:390 appTools/ToolPcbWizard.py:397
msgid "Open"
msgstr "Aç"
#: appGUI/GUIElements.py:3830
#: appGUI/GUIElements.py:3874
msgid "Open Project ..."
msgstr "Proje Aç..."
#: appGUI/GUIElements.py:3836
#: appGUI/GUIElements.py:3880
msgid "Open &Gerber ...\tCtrl+G"
msgstr "Gerber'i Aç ...\tCTRL+G"
#: appGUI/GUIElements.py:3841
#: appGUI/GUIElements.py:3885
msgid "Open &Excellon ...\tCtrl+E"
msgstr "Excellon'u Aç ...\tCTRL+E"
#: appGUI/GUIElements.py:3846
#: appGUI/GUIElements.py:3890
msgid "Open G-&Code ..."
msgstr "G-Kodunu Aç ..."
#: appGUI/GUIElements.py:3856 appGUI/MainGUI.py:327
#: appGUI/GUIElements.py:3900 appGUI/MainGUI.py:327
msgid "Exit"
msgstr "Çıkış"
@ -4321,11 +4357,6 @@ msgstr "Kaydet"
msgid "Save Project"
msgstr "Projeyi Kaydet"
#: 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/MainGUI.py:167 appGUI/MainGUI.py:4483
msgid "Save Project As"
msgstr "Projeyi Farklı Kaydet"
@ -4554,20 +4585,6 @@ msgid "Merge a selection of Gerber objects into a new combo Gerber object."
msgstr ""
"Seçili Gerber nesnelerini yeni bir karma Gerber nesnesiyle birleştirir."
#: 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/MainGUI.py:414 appGUI/MainGUI.py:4423
msgid "Ctrl+C"
msgstr "Ctrl+C"
#: appGUI/MainGUI.py:420 appGUI/MainGUI.py:676 appGUI/MainGUI.py:731
#: appGUI/MainGUI.py:790
msgid "DEL"
@ -4618,15 +4635,6 @@ msgstr "Birimleri Değiştir"
msgid "Q"
msgstr "Q"
#: 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/MainGUI.py:445 appGUI/MainGUI.py:4422
msgid "Ctrl+A"
msgstr "Ctrl+A"
#: appGUI/MainGUI.py:451 appGUI/MainGUI.py:1260
#: appGUI/preferences/PreferencesUIManager.py:899
#: appGUI/preferences/PreferencesUIManager.py:992
@ -6109,12 +6117,6 @@ msgstr "Çevrimiçi Dersler Aç"
msgid "Refresh Plots"
msgstr "Şekilleri Yenile"
#: 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/MainGUI.py:4491 appTools/ToolSolderPaste.py:71
msgid "Delete Object"
msgstr "Nesneyi Sil"

View File

@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: \n"
"POT-Creation-Date: 2020-10-26 21:38+0200\n"
"POT-Creation-Date: 2020-10-26 22:39+0200\n"
"PO-Revision-Date: 2019-03-25 15:08+0200\n"
"Last-Translator: \n"
"Language-Team: \n"
@ -1679,7 +1679,7 @@ msgstr ""
#: appEditors/AppExcEditor.py:3908 appEditors/AppExcEditor.py:4030
#: appEditors/AppExcEditor.py:4123 appEditors/AppGerberEditor.py:2820
#: appGUI/GUIElements.py:3538 appGUI/MainGUI.py:475 appGUI/MainGUI.py:668
#: appGUI/GUIElements.py:3582 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
@ -1691,7 +1691,7 @@ msgstr ""
#: appEditors/AppExcEditor.py:3909 appEditors/AppExcEditor.py:4031
#: appEditors/AppExcEditor.py:4124 appEditors/AppGerberEditor.py:2821
#: appGUI/GUIElements.py:3545 appGUI/MainGUI.py:478 appGUI/MainGUI.py:4417
#: appGUI/GUIElements.py:3589 appGUI/MainGUI.py:478 appGUI/MainGUI.py:4417
#: appGUI/MainGUI.py:4683 appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:93
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:188
#: appGUI/preferences/excellon/ExcellonEditorPrefGroupUI.py:241
@ -3406,7 +3406,7 @@ msgstr ""
msgid "String to replace the one in the Find box throughout the text."
msgstr ""
#: appEditors/AppTextEditor.py:106 appGUI/GUIElements.py:3566 appGUI/ObjectUI.py:1864
#: appEditors/AppTextEditor.py:106 appGUI/GUIElements.py:3610 appGUI/ObjectUI.py:1864
#: appGUI/preferences/cncjob/CNCJobOptPrefGroupUI.py:61
#: appGUI/preferences/tools/ToolsISOPrefGroupUI.py:295
#: appGUI/preferences/tools/ToolsPaintPrefGroupUI.py:278 appTools/ToolIsolation.py:808
@ -3573,107 +3573,142 @@ msgid ""
"from the current mouse location point."
msgstr ""
#: appGUI/GUIElements.py:3075
#: appGUI/GUIElements.py:3077 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:3077 appGUI/MainGUI.py:414 appGUI/MainGUI.py:4423
msgid "Ctrl+C"
msgstr ""
#: appGUI/GUIElements.py:3085 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:3085 appGUI/MainGUI.py:445 appGUI/MainGUI.py:4422
msgid "Ctrl+A"
msgstr ""
#: appGUI/GUIElements.py:3090
msgid "Save Log"
msgstr ""
#: appGUI/GUIElements.py:3079
#: appGUI/GUIElements.py:3090 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:3095
msgid "Clear All"
msgstr ""
#: appGUI/GUIElements.py:3094 appTools/ToolShell.py:296
#: appGUI/GUIElements.py:3095 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:3138 appTools/ToolShell.py:296
msgid "Type >help< to get started"
msgstr ""
#: appGUI/GUIElements.py:3461 appGUI/GUIElements.py:3478
#: appGUI/GUIElements.py:3505 appGUI/GUIElements.py:3522
msgid "Jog the Y axis."
msgstr ""
#: appGUI/GUIElements.py:3469
#: appGUI/GUIElements.py:3513
msgid "Move to Origin."
msgstr ""
#: appGUI/GUIElements.py:3486 appGUI/GUIElements.py:3494
#: appGUI/GUIElements.py:3530 appGUI/GUIElements.py:3538
msgid "Jog the X axis."
msgstr ""
#: appGUI/GUIElements.py:3504 appGUI/GUIElements.py:3514
#: appGUI/GUIElements.py:3548 appGUI/GUIElements.py:3558
msgid "Jog the Z axis."
msgstr ""
#: appGUI/GUIElements.py:3540
#: appGUI/GUIElements.py:3584
msgid "Zero the CNC X axes at current position."
msgstr ""
#: appGUI/GUIElements.py:3548
#: appGUI/GUIElements.py:3592
msgid "Zero the CNC Y axes at current position."
msgstr ""
#: appGUI/GUIElements.py:3553
#: appGUI/GUIElements.py:3597
msgid "Z"
msgstr ""
#: appGUI/GUIElements.py:3556
#: appGUI/GUIElements.py:3600
msgid "Zero the CNC Z axes at current position."
msgstr ""
#: appGUI/GUIElements.py:3560
#: appGUI/GUIElements.py:3604
msgid "Do Home"
msgstr ""
#: appGUI/GUIElements.py:3562
#: appGUI/GUIElements.py:3606
msgid "Perform a homing cycle on all axis."
msgstr ""
#: appGUI/GUIElements.py:3570
#: appGUI/GUIElements.py:3614
msgid "Zero all CNC axes at current position."
msgstr ""
#: appGUI/GUIElements.py:3725 appGUI/GUIElements.py:3734
#: appGUI/GUIElements.py:3769 appGUI/GUIElements.py:3778
msgid "Idle."
msgstr ""
#: appGUI/GUIElements.py:3767
#: appGUI/GUIElements.py:3811
msgid "Application started ..."
msgstr ""
#: appGUI/GUIElements.py:3768
#: appGUI/GUIElements.py:3812
msgid "Hello!"
msgstr ""
#: appGUI/GUIElements.py:3815 appGUI/MainGUI.py:1030 appGUI/MainGUI.py:2186
#: appGUI/GUIElements.py:3859 appGUI/MainGUI.py:1030 appGUI/MainGUI.py:2186
msgid "Run Script ..."
msgstr ""
#: appGUI/GUIElements.py:3817 appGUI/MainGUI.py:196
#: appGUI/GUIElements.py:3861 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:3826 appGUI/MainGUI.py:118 appTools/ToolPcbWizard.py:390
#: appGUI/GUIElements.py:3870 appGUI/MainGUI.py:118 appTools/ToolPcbWizard.py:390
#: appTools/ToolPcbWizard.py:397
msgid "Open"
msgstr ""
#: appGUI/GUIElements.py:3830
#: appGUI/GUIElements.py:3874
msgid "Open Project ..."
msgstr ""
#: appGUI/GUIElements.py:3836
#: appGUI/GUIElements.py:3880
msgid "Open &Gerber ...\tCtrl+G"
msgstr ""
#: appGUI/GUIElements.py:3841
#: appGUI/GUIElements.py:3885
msgid "Open &Excellon ...\tCtrl+E"
msgstr ""
#: appGUI/GUIElements.py:3846
#: appGUI/GUIElements.py:3890
msgid "Open G-&Code ..."
msgstr ""
#: appGUI/GUIElements.py:3856 appGUI/MainGUI.py:327
#: appGUI/GUIElements.py:3900 appGUI/MainGUI.py:327
msgid "Exit"
msgstr ""
@ -3840,11 +3875,6 @@ msgstr ""
msgid "Save Project"
msgstr ""
#: 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/MainGUI.py:167 appGUI/MainGUI.py:4483
msgid "Save Project As"
msgstr ""
@ -4057,19 +4087,6 @@ msgstr ""
msgid "Merge a selection of Gerber objects into a new combo Gerber object."
msgstr ""
#: 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/MainGUI.py:414 appGUI/MainGUI.py:4423
msgid "Ctrl+C"
msgstr ""
#: appGUI/MainGUI.py:420 appGUI/MainGUI.py:676 appGUI/MainGUI.py:731 appGUI/MainGUI.py:790
msgid "DEL"
msgstr ""
@ -4116,15 +4133,6 @@ msgstr ""
msgid "Q"
msgstr ""
#: 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/MainGUI.py:445 appGUI/MainGUI.py:4422
msgid "Ctrl+A"
msgstr ""
#: appGUI/MainGUI.py:451 appGUI/MainGUI.py:1260
#: appGUI/preferences/PreferencesUIManager.py:899
#: appGUI/preferences/PreferencesUIManager.py:992
@ -5564,12 +5572,6 @@ msgstr ""
msgid "Refresh Plots"
msgstr ""
#: 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/MainGUI.py:4491 appTools/ToolSolderPaste.py:71
msgid "Delete Object"
msgstr ""